*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*====================================
COOKIES
====================================*/

.cookies{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transform:translateY(30px);
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
}

.cookies.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.cookies-container{
    width: 70%;
    max-width:1200px;
    margin:0 auto;
    padding:22px 25px;
    margin-left: 0;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap:30px;

    background:rgba(2,15,37,.96);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;

    box-shadow:0 15px 50px rgba(0,0,0,.45);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.cookies-texto{
    flex:1;
}

.cookies-texto h2{
    margin-bottom:7px;
    color:var(--branco);
    font-size:17px;
}

.cookies-texto p{
    max-width:750px;
    margin:0;
    color:#c8c8c8;
    font-size:13px;
    line-height:1.6;
}

.cookies-botoes{
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}

.cookies-botoes button,
.cookies-politica{
    padding:10px 17px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;
    transition:.2s ease;
}

.cookies-politica{
    color:var(--branco);
    border:1px solid rgba(255,255,255,.15);
}

.cookies-politica:hover{
    border-color:var(--dourado);
    color:var(--dourado);
}

.cookies-recusar{
    color:var(--branco);
    background:transparent;
    border:1px solid rgba(255,255,255,.15);
}

.cookies-recusar:hover{
    border-color:var(--branco);
}

.cookies-aceitar{
    color:var(--preto);
    background:linear-gradient(
        90deg,
        #d4b800 0%,
        #fef07a 50%,
        #d4b800 100%
    );
    border:1px solid transparent;
}

.cookies-aceitar:hover{
    transform:translateY(-2px);
}

/*====================================
COOKIES RESPONSIVO
====================================*/

@media(max-width:768px){

    .cookies{
        left:12px;
        right:12px;
        bottom:12px;
    }

    .cookies-container{
        padding:20px;
        flex-direction:column;
        align-items:stretch;
        gap:18px;
        border-radius:16px;
    }

    .cookies-texto h2{
        font-size:16px;
    }

    .cookies-texto p{
        font-size:12px;
    }

    .cookies-botoes{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .cookies-politica{
        grid-column:1 / -1;
        text-align:center;
    }

    .cookies-botoes button,
    .cookies-politica{
        padding:11px 12px;
    }

}

:root{

    /* ==========================
       PALETA DE CORES
    ========================== */

    --dourado: #FEE201;
    --azul: #1E3A6B;
    --preto: #0D0E0B;
    --branco: #FFFFFF;

}

html{
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body{
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--preto);
}

[id]{
    scroll-margin-top: 90px;
}

/* PADRÃO CONTAINER */
.container{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

span {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--branco);
    font-size: 18px;
    font-weight: bold;
}

strong {
    color: var(--dourado);
}


span::before,
span::after{
    content: "";
    width: 60px;
    height: 2px;
}


span::before{
    background: linear-gradient(to left, var(--dourado), transparent);
}

.span::before{
    background: linear-gradient(to left, var(--preto), transparent);
}

span::after{
    background: linear-gradient(to right, var(--dourado), transparent);
}

.span::after{
    background: linear-gradient(to right, var(--preto), transparent);
}


/* FIM PADRÃO CONTAINER */

/* HEADER */
header{
    position: fixed;
    top: 10px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 999;
}

.header-container{
    width: 85%;
    padding: 0 15px;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    background: rgba(56, 56, 57, 0.218);
     backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 9999;
}

.header-container.scrolled{

    background: rgba(0, 1, 3, 0.782);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(254, 226, 1, .15);
    box-shadow:
    0 10px 30px rgba(0,0,0,.35);
}

.logo img {
    padding: 2px 0;
}

nav ul{
    display: flex;
    gap: 30px;
}

nav ul li{
    list-style: none;
}

nav ul li a{
    color: var(--branco);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover{
    color: var(--dourado);
}

.header-botoes {
    display: flex;
    gap: 20px;
}

.header-botoes-responsivlo {
    display: none;
}

.btn-whatsapp {
    background: linear-gradient(
        90deg,
        #d4b800 0%,
        #fef07a 50%,
        #d4b800 100%
    );

    color: var(--preto);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease-in-out;
    border: 1px solid transparent;
    box-shadow: 0px 0px 30px 0px rgba(104, 200, 14, 0.829);
}

.btn-whatsapp:hover {
    background: transparent;
    color: var(--branco);
    border: 1px solid var(--branco);
    box-shadow: 0px 0px 0px 0px rgba(104, 200, 14, 0.829);
}

.btn-instagram {
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.btn-instagram:hover {
    background: transparent;
    color: var(--branco);
    border: 1px solid var(--branco);
}

/* body.menu-open{
    overflow:hidden;
} */


/* MENU MOBILE */
.menu-mobile{
    width:40px;
    height:30px;
    display:none;
    cursor:pointer;
    justify-content:center;
    flex-direction:column;
    gap:7px;
    position:relative;
    z-index:1001;
}

.menu-mobile span{
    width:100%;
    height:3px;
    background:var(--branco);
    border-radius:20px;
    transition:.35s;
}

.menu-mobile.active span:nth-child(1){
    transform:translateY(10px) rotate(45deg);
}

.menu-mobile.active span:nth-child(2){
    opacity:0;
}

.menu-mobile.active span:nth-child(3){
    transform:translateY(-10px) rotate(-45deg);
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

/* .overlay.active{
    opacity:1;
    visibility:visible;
} */
/* FIM MENU MOBILE */
/* FIM HEADER */

/* PÁGINA PRINCIPAL */
.principal{
    background: url('/assets/img/principal/principal-escuro.webp') no-repeat center/cover;
    background-position: 100% 10%;
    height: 700px;
}

.principal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 560px;
}

.principal-texto {
    flex: 1 1 400px;
    color: var(--branco);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

.principal-texto h1 {
    font-size: 31px;
    letter-spacing: 0px;
    line-height: 45px;
    font-weight: bold;
    color: var(--branco);
}

.principal-texto p {
    font-size: 20px;
    font-weight: 400;
    color: #ece7b9;
    line-height: 1.5;
}

.principal-vazio {
    flex: 1 1 300px;
}

.principal-btn {
    display: flex;
    gap: 20px;
}

/* FIM PÁGINA PRINCIPAL */

/* CARD INFORMATIV */
.card-informativo{
    background:
        radial-gradient(circle at center, rgba(30, 58, 107, .35) 0%, transparent 45%),
        #020f25;

    box-shadow: 0 -40px 150px 120px #000000;
    /* box-shadow: 0 -40px 150px 120px #030E23; */
    background: url(../img/fundo/fundo-escuro-teste.webp) no-repeat center center/cover;
}

.card-informativo-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    top: -200px;
}

.card-infor-box {
    flex: 1 1 300px;
    max-width: 350px;
    background: rgba(56, 56, 57, 0.218);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 20px;
}

.card-infor-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.card-infor-box h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--branco);
    margin-bottom: 10px;
}

.card-infor-box p {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.5;
}

.card-info-img {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.card-info-img img {
    width: 30px;
    height: auto;
}

/* PARA DEPOIS ATIVAR NOVAMENTE */
/* .card-infor-box a {
    display: inline-block;
    margin-top: 10px;
    color: var(--branco);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    width: 100%;
    text-align: end;
}

.card-infor-box a:hover {
    color: var(--dourado);
} */
 /* PARA DEPOIS ATIVAR NOVAMENTE */


 /* Container que segura o botão e o submenu */
.card-saiba-mais-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: end;
  margin-top: 10px;
}

/* O texto Saiba Mais... */
.card-saiba-mais-wrapper .btn-saiba-mais {
  color: var(--branco);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  padding-bottom: 5px; /* Cria uma área para a transição suave */
}

.card-saiba-mais-wrapper:hover .btn-saiba-mais {
  color: var(--dourado);
}

/* Menu Suspenso (Escondido por padrão) */
.card-saiba-mais-menu {
  display: none;
  position: absolute;
  right: 0;
  top: -100%;
  background-color: #1a1a1a; /* Ajuste a cor de fundo desejada */
  border: 1px solid var(--dourado);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-width: 180px;
  z-index: 100;
  overflow: hidden;
}

/* Links das cidades dentro do submenu */
.card-saiba-mais-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--branco);
  text-decoration: none;
  font-size: 0.9rem;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-saiba-mais-menu a:last-child {
  border-bottom: none;
}

/* Efeito ao passar o mouse nas opções da cidade */
.card-saiba-mais-menu a:hover {
  background-color: var(--dourado);
  color: #000; /* Cor do texto no hover */
}

/* Exibe o submenu quando passar o mouse sobre o wrapper */
.card-saiba-mais-wrapper:hover .card-saiba-mais-menu {
  display: block;
}




/* FIM CARD INFORMATIVO */

/* SERVIÇOS */
.servico {
    margin-top: -100px;
    padding-bottom: 40px;
    /* background-color: red; */
}
/* FIM SERVIÇOS */

/* SERVIÇOS */
.servico-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.servico-img,
.servico-texto {
    flex: 1 1 300px;
}

.servico-texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.servico-img img {
    width: 80%;
    height: auto;
    border-radius: 17px;
}

.servico-texto h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--branco);
    margin-bottom: 10px;
}

.servico-texto p {
    font-size: 16px;
    color: var(--branco);
    line-height: 1.5;
}

.servico-texto-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.servico-texto-box {
    flex: 1 1 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(56, 56, 57, 0.218);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 17px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.servico-texto-item img {
    width: 60px;
    height: 60px;
}

.servico-texto-texto {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.servico-texto-texto h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--branco);
}

.servico-texto-texto p {
    font-size: 14px;
    color: var(--branco);
    line-height: 1.5;
}
/* FIM SERVIÇOS */

/* SERVIÇO PRODUTO */

.servico-produto {
    text-align: center;
    background-color: #F7F7F7;
    padding: 80px 0;
}

.servico-produto span {
    color: var(--preto);
    font-size: 18px;
    font-weight: bold;
}

.servico-produto h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--preto);
    padding: 20px 0;
}

.servico-produto-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.servico-produto-box{
    flex: 1 1 300px;
    border-bottom: 5px solid var(--dourado);
    border-radius: 20px;
}


.servico-produto-item {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.item-img{
    position:relative;
    overflow:hidden;
    width:100%;
    cursor:zoom-in;
    border-radius:17px 17px 0 0;
}

.item-img-1{
    width:100%;
    height: auto;
    display:block;
    user-select:none;
}

.magnifier{
    position:absolute;
    width:180px;    
    height:180px;
    border-radius:50%;
    border:3px solid var(--dourado);
    box-shadow:
        0 0 20px rgba(0,0,0,.35);
    pointer-events:none;
    display:none;
    background-repeat:no-repeat;
    background-color:#fff;
    z-index:99;
}

.servico-produto-texto {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    text-align: center;
}

.servico-produto-texto h3 {
    font-size: 18px;
    font-weight: bold;
    color: var(--preto);
}

.servico-produto-texto p {
    font-size: 14px;
    color: var(--preto);
    line-height: 1.5;
}

.servico-produto-texto a {
    display: inline-block;
    margin: 10px auto;
    color: var(--azul);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid var(--azul);
    width: fit-content;
    padding-bottom: 2px;
}

.servico-produto-texto a:hover {
    color: var(--preto);
}

/* FIM SERVIÇO PRODUTO */

/* CONTADOR */
.contador{
    padding: 80px 0;
    /* background: var(--preto); */
    background: url(../img/fundo/fundo-escuro.webp) no-repeat center center/cover;
}

.contador-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.contador-box{
    flex: 1 1 300px;
    max-width: 250px;
    padding: 35px 20px;
    text-align: center;
    border-radius: 15px;

    background: rgba(255,255,255,.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(254,226,1,.08);

    transition: .3s ease;
}

.contador-box:hover{
    transform: translateY(-8px);
    border-color: rgba(254,226,1,.35);
    box-shadow: 0 15px 40px rgba(0,0,0,.35);
}

.contador-box h2{
    margin-bottom: 10px;

    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;

    background: linear-gradient(
        90deg,
        #d4b800 0%,
        #fef07a 50%,
        #d4b800 100%
    );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;
}

.contador-box p{
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--branco);
}


/* BENEFÍCIOS */
.beneficios{
    padding: 80px 0;
    background-color: #F7F7F7;
}

.beneficio-container {
    text-align: center;
}

.beneficio-container span {
    color: var(--preto);
    font-size: 18px;
    font-weight: bold;
}

.beneficio-container h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--preto);
    padding: 20px 0;
}

.beneficio-container p {
    font-size: 16px;
    color: var(--preto);
    line-height: 1.5;
    margin-bottom: 40px;
}

.beneficio-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.beneficio-item {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border-bottom: 4px solid var(--dourado);
}

.beneficio-item h3 {
    padding: 20px 0;
    font-size: 22px;
}
/* FIM BENEFÍCIOS */
/*====================================
AVALIAÇÕES
====================================*/

.avaliacoes{
    padding:100px 0;
    background:var(--branco);
    text-align:center;
}

.avaliacoes .btn-whatsapp {
    position: relative;
    top: 50px;
}

.avaliacoes .btn-whatsapp:hover {
    background-color: black;
}

.avaliacoes-container{
    margin-top:50px;
    /* display:grid;
    grid-template-columns:repeat(3,1fr); */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:25px;
}

.avaliacao-card{
    flex: 1 1 300px;
    max-width: 400px;
    padding:30px;
    /* background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08); */
    border-radius:20px;
    transition:.3s ease;
    border: 1px solid #6666667b;
}

.avaliacao-card:hover{
    transform:translateY(-5px);
    border-color:rgba(254,226,1,.3);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.avaliacao-topo{
    display:flex;
    align-items:center;
    gap:15px;
}

.avaliacao-avatar{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:50%;
    background:var(--dourado);
    color:var(--azul);
    font-size:20px;
    font-weight:700;
}

.avaliacao-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.avaliacao-topo h3{
    margin-bottom:4px;
    color:var(--azul);
    font-size:17px;
}

.avaliacao-topo span{
    color:#999;
    font-size:13px;
}

/* .avaliacao-estrelas{
    margin:22px 0 15px;
} */

.avaliacao-estrelas p{
    color:var(--dourado);
    font-size:20px;
    letter-spacing:2px;
}

.avaliacao-card blockquote{
    margin:0;
    color:var(--preto);
    font-size:15px;
    line-height:1.8;
}

.avaliacao-card footer{
    margin-top:20px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,.07);
}

.avaliacao-card cite{
    color:#3d3030;
    font-size:12px;
    font-style:normal;
}


/* AVALIAÇÃO */
.avaliacao {
    padding: 80px 0;
    text-align: center;
    /* background-color: #F7F7F7; */
}

.avaliacao span {
    color: var(--preto);
    font-size: 18px;
    font-weight: bold;
}

.avaliacao h2 {
    font-size: 24px;
    font-weight: bold;
    color: var(--preto);
    padding: 20px 0;

 }

 

 .avaliacao-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
 }

/* FIM AVALIAÇÃO */


/*==================================
FAQ
==================================*/

.faq{
    padding:100px 0;
    background-color: var(--branco);
}

.faq-container{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.titulo {
    text-align: center;
}

.titulo span {
    color: var(--preto);
    padding-bottom: 20px;
}

.faq-item{
    border:1px solid rgba(3, 2, 2, 0.08);
    border-radius:15px;
    overflow:hidden;
    background:rgba(12, 10, 10, 0.03);
    transition:.3s;
}

.faq-item:hover{
    border-color:rgba(254,226,1,.35);
}

.faq-pergunta{
    width:100%;
    padding:22px 30px;
    background:none;
    border:none;
    color:var(--preto);
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:1.05rem;
    font-weight:600;
    text-align:left;
}

.faq-pergunta p {
    color: var(--preto);
}

.icone{
    font-size:2rem;
    color:var(--dourado);
    min-width:30px;
    text-align:center;
    transition:.3s;
}

.faq-resposta{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-resposta p{
    padding:0 30px 25px;
    color: var(--preto);
    line-height:1.8;
}

.faq-item.active{
    border-color: var(--dourado);
    box-shadow: 0 10px 30px rgba(254,226,1,.08);
}

.faq-item.active .faq-resposta{
    max-height:300px;
}
/* FIM FAQ */


/*==================================
MAPAS
==================================*/

.mapas{
    padding:100px 0;
    background-color: var(--branco);
}

.mapas-container{
    margin-top:60px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.mapa-box{
    flex: 1 1 300px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    overflow:hidden;
    transition:.3s;
}

.mapa-box:hover{
    transform:translateY(-5px);
    border-color:rgba(254,226,1,.35);
}

.mapa-texto{
    padding:30px;
}

.mapa-texto h3{
    color:var(--preto);
    margin-bottom:15px;
    font-size:1.5rem;
}

.mapa-texto p{
    color:#1f1111;
    line-height:1.8;
    margin-bottom:25px;
}

.mapa-texto a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 28px;
    background:var(--dourado);
    color:var(--preto);
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.mapa-texto a:hover{
    transform:translateY(-3px);
}

.mapa-box iframe{
    width: 100%;
    height:350px;
    border:none;
    display:block;
}



/*====================================
FOOTER
====================================*/

.footer{
    padding:80px 0 30px;
    background:url(../img/fundo/fundo-escuro-1.webp);
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-container{
    display:flex;
    flex-wrap: wrap;
    justify-content:center;
    gap:10px;
    text-align:center;
}

.footer-box{
    flex:1 1 300px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* .footer-box img{
    margin-bottom:25px;
} */

.footer-box h3{
    margin-bottom:20px;
    color:var(--dourado);
    font-size:1.3rem;
}

.footer-box p{
    color:#d6d6d6;
    line-height:1.9;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:18px;
    color:#d6d6d6;
    line-height:1.7;
}

.footer-box a{
    color:var(--dourado);
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.footer-box a:hover{
    color:var(--branco);
}

.footer-bottom{
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    color:#bcbcbc;
    font-size:.95rem;
}

.footer-links{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-links span{
    color:#666;
}

.footer-links a{
    color:#bcbcbc;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--dourado);
}
/*====================================
WHATSAPP WIDGET
====================================*/

.whatsapp-widget{
    position:fixed;
    right:25px;
    bottom:30px;
    z-index:9999;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

/* .whatsapp-mensagem{
    position:relative;
    width:260px;
    margin-bottom:14px;
    padding:18px 40px 18px 18px;

    display:flex;
    flex-direction:column;
    gap:4px;

    background:#25d36543;
    color:#fff;

    border-radius:16px;

    box-shadow:0 12px 35px rgba(0,0,0,.25);

    animation:whatsappMensagem .5s ease both;
}


.whatsapp-mensagem strong{
    font-size:16px;
    font-weight:700;
}

.whatsapp-mensagem span{
    font-size:14px;
    line-height:1.4;
} */

.whatsapp-mensagem small{
    margin-top:3px;
    font-size:12px;
    opacity:.9;
}

.whatsapp-fechar{
    position:absolute;
    top:7px;
    right:9px;

    width:24px;
    height:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:0;
    border-radius:50%;

    background:rgba(0,0,0,.15);
    color:#fff;

    font-size:18px;
    line-height:1;

    cursor:pointer;

    transition:.2s ease;
}

.whatsapp-fechar:hover{
    background:rgba(0,0,0,.3);
}


/* .whatsapp-fixo{
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 20px;
    background:#25d36529;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    box-shadow:0 10px 35px rgba(37,211,102,.35);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
    animation:whatsapp 2.5s infinite;
}

.whatsapp-fixo img{
    display:block;
    width:26px;
    height:26px;
}

.whatsapp-fixo:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 40px rgba(37,211,102,.5);
}


@keyframes whatsappMensagem{
    from{
        opacity:0;
        transform:translateY(15px) scale(.95);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
} */


/* PULSO DO BOTÃO */

/* @keyframes whatsapp{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.55);
    }

    70%{
        box-shadow:0 0 0 14px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
} */



/* Container Pai */
.whatsapp-wrapper {
  position: relative; /* Necessário para posicionar o menu */
  display: inline-block;
}

/* O seu estilo do botão principal (MANTIDO) */
.whatsapp-fixo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: #000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 35px rgba(37,211,102,.35);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}

.whatsapp-fixo img {
  display: block;
  width: 26px;
  height: 26px;
}

.whatsapp-fixo p {
  margin: 0;
}

/* Menu de Opções (Escondido por padrão) */
.whatsapp-menu {
  position: absolute;
  bottom: 100%; /* Surge acima do botão principal */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none; /* Evita cliques indesejados enquanto invisível */
}

/* Animação e Exibição no HOVER */
.whatsapp-wrapper:hover .whatsapp-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0); /* Sobe suavemente */
}

.whatsapp-wrapper:hover .whatsapp-fixo {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(37,211,102,.5);
}

/* Estilo dos Botões Secundários das Cidades */
.whatsapp-opção {
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-opção:hover {
  background: #1EBE57;
  transform: scale(1.03);
}

/*====================================
RESPONSIVO
====================================*/

@media(max-width:768px){

    .whatsapp-widget{
        right:15px;
        bottom:20px;
    }

    .whatsapp-mensagem{
        width:240px;
        padding:16px 38px 16px 16px;
    }

    .whatsapp-fixo{
        padding:12px 17px;
        font-size:13px;
    }

    .whatsapp-fixo img{
        width:24px;
        height:24px;
    }

}