﻿html, body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    scroll-behavior: smooth !important;
    height: auto !important;
    overflow-y: auto !important;    
}


.alinhamentoVH {
    display:flex;
    flex-direction: column;	
    align-items:center;
	justify-content:center;	
}

.ft { 
	font-size: clamp(40px, 4.5vw, 2.9vw); /* min, fluido, max */
	line-height: 1 !important; 
    white-space: normal;
    display: block;    
}
.ftBold { 
	font-weight:bold; 
}
.ftIco {
    font-size: 12pt; 
    line-height: 1.2 !important; 
}

.backGroundFull {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.secao90 {
    min-height: 90vh; 
    min-height: 90dvh;
}
.secao80 {
    min-height: 80vh; 
    min-height: 80dvh;
}
.secao70 {
    min-height: 70vh; 
    min-height: 70dvh;
}





/* HEADER */
.banner-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 10;
}
.header-row {
    align-items: center;
}

/* MENU CENTRAL */
.menu-list {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;    
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.menu-list li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}
.menu-list li a:hover {
    color: #fff;
}

/* ICONES DIREITA */
.header-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}
.header-icons img {
    width: 25px;
}

/* SWIPER */
.bannerSwiper {
    height: 100%;
}
.bannerSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;  
}
.bannerSwiper .swiper-wrapper,
.bannerSwiper .swiper-slide {
    height: 100%;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    color: #ffffff;
    font-size: 30px;
}
.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

.btn-quadrado {
    width: auto; /* 150px; */
    height: 50px;
    padding: 0 10px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}
/* efeito hover opcional */
.btn-quadrado:hover {
    background: #ffffff;
    color: #000000;
}


.whatsapp-fixo {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    /* background-color: #25D366; */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}
.whatsapp-fixo:hover {
    transform: scale(1.3);
}


/* MOBILE */
@media (max-width: 768px) {

    .bannerSwiper {
        height: 800px;
    }
    .menu-list {
        flex-direction: column;
        gap: 10px;
    }
    .header-icons {
        justify-content: center;
        margin-top: 10px;
    }
    .bn1 {
        margin-left: 10%;
    } 
    .mapa {
        width: 100%;
        height: 200px;
    }

    .dropdown-menu {
        background-color: rgba(0,0,0,0.9);
        border: none;
    }
    .dropdown-item {
        color: #fff;
    }
    .dropdown-item:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }

}
/* tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .bn1 {
        margin-left: 100px;
    }    


}
/* desktop */
@media (min-width: 992px) {
    .bn1 {
        /* margin-left: 200px; */
        margin-left: 13%;
    }
    .bn2 {
        /* margin-left: 600px; */
        margin-left: 36%;
    }
    .txtAte {
        min-width: 500px;
    }
    .mapa {
        width: 600px;
        height: 450px;
    }
}


