*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}
 body{
    background-color: #eceaea;
} 
.interface{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}
h2.titulo {
    text-align: center;
    padding: 35px 0;
    color: #fff;
    font-size: 50px;
}

h2.titulo span {
    color:#fba314 ;
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 600;
}

/* Estilo do header */
header{
    width: 100%;
    padding: 20px 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000; /* fica no topo, mas abaixo de elementos com z-index maior */
    background-color: transparent;
    transition: 0.8s;
}

header .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
    max-width: 200px;
}
header .menu-desktop{
    visibility: hidden;
}

/* estilo do menu dinamico */

header .logo img.logo-rolagem{
    display: none;
}

header.rolar{
    background-color: #023992; /* cor quando rolar */
    width: 100%;
    height: 170px;
  }
header.rolar .menu-desktop nav ul{
    list-style-type: none;
    visibility: visible;

}
header.rolar .menu-desktop nav ul li{
    display: inline-block;
    margin: 0 40px;
}
header.rolar .menu-desktop nav ul li a{
    color: aliceblue;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    position: relative; /* ESSENCIAL */
    font-size: 15px;
}
header.rolar .menu-desktop nav ul li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #fba314; /* Cor da linha */
    transition: width 0.3s ease;
}
header.rolar .menu-desktop a:hover:after{
    width: 100%;
}
header.rolar .menu-desktop nav a:hover{
    transform: scale(1.05);
}

/* -------------------------- */

header .btn-whatsapp button{
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.5s;
    transition: all 0.3s ease;
}
header .btn-whatsapp button img:hover{
    border-radius: 100px;
    transform: translateY(-6px);
    
}


/* Estilo do hero-site */
section.hero-site{
    position: relative;
    height: 100vh;
    background-image: url(../imagens/imagemdefundo2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: aliceblue;
}

.hero-site .interface{
    display: flex;
    align-items: center;
    height: 100%;
}
.hero-site .botao-posicionado button{
    position: relative;
    top: -86px;   /* ajuste conforme a posição da logo */
    left: 106px;  /* ajuste horizontal conforme o local da logo */
    width: 300px;
    height: 45px;
    border: transparent;
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    background-color: #fba314;
    color:  #023992;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.botao-posicionado button:hover {
    background-position: right center; 
    transform: scale(1.05); 
    background-color: #eceaea;
  }

/* Estilos Beneficios 1 */
section.beneficios1{
    padding: 80px 0;
    text-align:justify;
}
section.beneficios1 .interface h2{
    text-align: center;
    padding: 35px 0;
    color: #023992;
    font-size: 40px;
}
section.beneficios1 .interface h2 span{
    background-color:#fba314;
    color:#023992 ;
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 600;
}
.beneficios1 .itens-container {
    margin: 40px auto;           /* centraliza horizontalmente */
    max-width: 900px;           /* largura máxima */
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px ;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 60px;
    background-color: #023992;

}
.beneficios1 .itens-container:hover {
    transform: translateY(-6px);
    box-shadow: 4px 6px 30px rgba(0, 0, 0, 0.2);
  }
.beneficios1 .icone-itens i {
    color: aliceblue;
    font-size: 120px;
    margin-bottom: 20px;
    transition: transform 0.4s ease, filter 0.3s ease;
  }

.beneficios1 .itens-container:hover .icone-itens i {
    transform: rotate(360deg);
    filter: drop-shadow(0 4px 8px #fba214c5);
  }
.itens-container .txt-itens h3{
    font-size: 2.5em;
    line-height: 50px;
    margin-bottom: 20px;
    color:  #fba314;

}
.itens-container .txt-itens h3 span{
    font-weight: 300;
    color:#f4f4f4 ;
}
.itens-container .txt-itens p{
    font-size: 1.4em;
    color:#f4f4f4;
}
.cta {
    text-align: center;
  }
  
  .cta p {
    font-size: 1.6rem;
    padding: 60px;
    margin-bottom: -20px;
    color: #fba314;
  }
  
  .cta .destaque {
    background-color:#fba314;
    color:#023992 ;
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 600;
  }
  
  .btn-conexao {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #023992;
    color:  #fff;
    padding: 16px 32px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .btn-conexao:hover {
    background-color: #fba314;
    transform: scale(1.05);
  }

/*ESTILO SOBRE*/
section.quero {
    padding: 150px 10%;
    height: 116vh;
    background-image: url(../imagens/imagemdefundo3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.quero .flex {
    align-items: center;
    display: flex;
    gap: 60px;
}

.quero .txt-quero {
    color: #023992;
}

.quero .txt-quero h2 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
}

.quero .txt-quero h2 span {
    color: #fba314;
    display: flex;
    font-size: 50px;
}

.quero .txt-quero p {
    margin: 20px 0;
    text-align: justify;
    font-size: 20px;
}

.img-quero {
    position: relative;
    width: 300px;
    height: 500px;
    border-radius: 30px;
  }
.img-quero .fundo {
    width: 300px;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}
.img-quero .mulher {
    position: absolute;
    bottom: 26px;
    left: 38px;
    width: 100%;
    z-index: 2;
    transform: scale(1.1);
    filter: drop-shadow(0px 8px 12px rgba(0,0,0,0.3));
  }

/*ESTILO DAS ESPECIALIDADES*/
section.sou {
    padding: 40px 4%;
    display: flex;
    flex-wrap: wrap; /* Para garantir que os itens se ajustem conforme a tela */
    background-color:#023992;
}

section.sou .flex {
    gap: 60px;
    display: flex;
    flex-wrap: wrap; /* Para garantir que, em telas menores, os itens se movam para a próxima linha se necessário */
    justify-content: center; /* Alinha os itens horizontalmente ao centro */
}

.sou .sou-box {
    padding: 60px 0px;
    background-color:#eceaea;
    margin-top: 45px;
    transition: .2s;
    border-radius: 1000px;
    flex: 1 1 100px; /* Flexível, com tamanho mínimo de 200px por item */
    text-align: center;
    overflow: hidden; /* Garante que a borda arredondada seja respeitada */
}

.sou .sou-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #fba314;
}

.sou .sou-box i {
   color:#fba314;
   font-size: 60px;
}

.sou .sou-box h3 {
    font-size: 21px;
    padding: 0 15px;
    color: #023992;
}

/* duvidas */
.contato-faq {
    background-color: #020691;
    padding: 80px 4%;
    color: white;
    background-image: url(/imagens/imagemdefundo4.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment:fixed ;
    position: relative;
    
  }
  .contato-faq::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 40px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .contato-faq .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  
  .col-esquerda {
    flex: 1 1 55%;
    padding: 20px 10px;
  }
  
  .col-direita {
    flex: 1 1 40%;
    text-align: center;
  }
  .col-direita p{
    color: #eceaea;
    font-size: 1.8rem;
    font-weight: 400;
    padding: 30px;
  }
  .col-direita p span{
    color: #023992;
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 800;
  }
  
  .col-esquerda h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #023992;
    padding: 10px;
  }
  
  .col-esquerda p {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
.col-esquerda .info-contato {
    color: #023992;
}
  
  .faq details {
    background-color:#023992;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .faq summary {
    font-weight: bold;
    color: aliceblue;
    cursor: pointer;
    font-size: 1.3rem;
    list-style: none;
  }
  .faq summary i{
    color: #fba314;
  }
  
  .faq p {
    margin-top: 8px;
    color:#fba314;
  }
  .faq2 p{
    margin-top: 8px;
    color: #023992;
  }
  
  .card-mapa {
    background-color: #fff;
    border-radius: 20px;
    padding: 0px;
    position: relative;
    overflow: visible; /* precisa permitir o botão sair */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);

  }
  
  .card-mapa iframe{
    border-radius: 15px;
    width: 100%;
    height: 500px;
    display: block;
  }
  

  .btn-whatsapp2 {
    display: inline-block;
    background: linear-gradient(90deg,#023992);
    color: #eceaea;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 30px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }
  .btn-whatsapp2:hover{
    background: linear-gradient(30deg,#eceaea );
    transform: scale(1.05);
    color:  #020691;
  }

/* estilo footer */
.bottom-footer{
  text-align: center;
  background-color: #023992;
}
.bottom-footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    transform: skewY(20deg); /* ângulo da inclinação */
    transform-origin: top left;
    z-index: -1;

  }

.bottom-footer p{
    color: #fff;
    font-size: 1.2rem;
    padding: 10px;
    margin: 0;
}
.logo-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -60px;
    background-color: #023992;
  }
  
  .logo-footer img {
    max-width: 250px;
    width: 100%;
    height: auto;
  }
