:root {
 --laranja: #A99255;
  --amarelo: #f1f114;
  --azul: #0E1E54;
  --cinzaEscuro: #647884;
  --cinzaClaro: #b3bdc1;
  --preto: #000;
  --branco: #ffffff;
  --dourado: #A99255 ;
  --azulBic: #0E1E54;
  --azulClaro: #F7FBFE;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--azulClaro);
  color: var(--preto);
   font-family: "Poppins", sans-serif;
}



/* ===== Header ===== */
.header {
  background: var(--azulBic);
  color: var(--branco);
  padding: 1px 0;
  position: sticky;
      top: 0;
      width: 100%; 
      z-index: 100; 
  }

.header .container {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
   
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;   
  justify-content: flex-start;
  text-decoration: none;
}

.logo img {
  height: 50px;
  margin-right: 6px;
}  

.logo-text {
  font-size: 1.4rem;
  font-weight: 1000;
  color: var(--laranja);
  margin: 0;        
}

/* ===== NAV ===== */
.nav a {
  color: var(--branco);
  margin-left: 50px;
  font-weight: 700;
  text-decoration: none; 
  position: relative;
  transition: color 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--laranja);
  transition: width 0.3s;
}

.nav a:hover {
  color: var(--laranja);
}

.nav a:hover::after {
  width: 100%;
}


/* ===== Hero ===== */
.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  position: relative;
  flex-wrap: wrap;
}


.hero-content {
   font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1px;
    font-size: 1.5rem;
    flex: 1 1 500px;
  text-align: center;
  color: var(--branco);
  z-index: 2;
   padding: 10px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--dourado);
}

.hero-content h2 {
  font-size: 2.9rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 2.5rem;
  color: var(--laranja);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.simulador-box {
  flex: 1 1 400px;
  max-width: 400px;
  z-index: 2;
}

.hero {
  background: linear-gradient(rgba(19,55,70,0.4), rgba(19,55,70,0.4)), 
              url('images/banner.jpg') center/cover no-repeat;
  color: var(--branco);
  position: relative;
  padding: 20px 0;
}

@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    padding: 30px 15px;
  }

  .hero-content, 
  .simulador-box {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}

/* ===== Simulador ===== */
.simulador-box {
  background: var(--cinzaClaro);
  color: var(--preto);
  padding: 10px;
  border-radius: 16px;
  max-width: 500px;
  margin: auto;
  text-align: left;
  font-size: 1.1rem;
   font-weight: 300;

}
.simulador-box > p:first-of-type {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--azul);
  text-align: center;
  text-shadow: 1px 1px 3px var(--azulBic);
  margin-bottom: 10px;
  line-height: 1.5;
 font-family: "Poppins", sans-serif;
}

.simulador-box select,
.simulador-box input[type="text"],
.simulador-box input[type="tel"],
.simulador-box input[type="range"] {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  border-radius: 10px;
  border: 1.2px solid var(--dourado);
  font-size: 1.2rem;
  background: var(--branco);
  text-align: center;
}

.simulador-box .btn-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
.simulador-box .btn-group button {
  flex: 1;
  padding: 10px;
  border: 2px solid var(--branco);
  border-radius: 8px;
  background: var(--branco);
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.simulador-box .btn-group button.active,
.simulador-box .btn-group button:hover {
  background: var(--dourado);
  border-color: var(--dourado);
  color: var(--preto);
}

#valorDisplay {
  text-align: center;
  font-size: 1.7rem;
  color: var(--azul);
  margin-top: 10px;
  margin-bottom: 20px;
}

.simulador-box button#simularBtn {
  background: var(--laranja);
  color: var(--branco);
  border: var(--azul);
  padding: 15px;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.simulador-box button#simularBtn:hover {
  background: var(--azulBic);
  color: var(--branco);
}
/* ===== Footer ===== */
.footer {
  background: var(--azulBic);
  color: var(--branco);
  padding: 10px 200px 10px 200px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.footer-info h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--dourado);
    
}

.footer-info p {
  margin: 0px 0;
  color: var(--dourado);
}

.footer-info i {
  color: var(--branco);
  margin-right: 0px;
}

.footer-info a {
  color: var(--branco);
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}
.footer-horario {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-horario h4 {
  font-size: 1.3rem;
  color: var(--dourado);
  margin-bottom: 10px;
}

.footer-horario p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.footer-horario i {
  color: var(--dourado);
  font-size: 1rem;
}

.footer-social {
  flex: 1;
  min-width: 200px;
  text-align:center;
}

.footer-social h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--dourado);
}

.social-links a {
  font-size: 2.6rem;
  margin-left: 15px;
  color: var(--branco);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--laranja);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: var(--branco);
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-info,
  .footer-social {
    text-align: center;
  }

  .social-links a {
    margin: 0 10px;
  }
}


 /* === Overlay === */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 55, 70, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(5px);
}

.overlay.show {
  opacity: 1;
  pointer-events: all;
}

.overlay-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: #133746;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

.overlay.show .overlay-card {
  transform: translateY(0);
  opacity: 1;
}

.overlay-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.overlay-card p {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
}

.overlay-card input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 14px;
}

.whatsapp-btn {
  background-color: #25D366;
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background-color: var(--verde);
}

.whats-icon {
  width: 20px;
  height: 20px;
}

.close-overlay {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--azul);
  cursor: pointer;
}


/*********** FAQ **************/

html {
  scroll-behavior: smooth; 
text-align: center;  
}
/* ===== FAQ ===== */
.faq {
  background: var(--branco);
  padding: 80px 20px;
  color: var(--azul);
  text-align: center;
  width: 90%;
  max-width: 900px;
  margin: 80px auto;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq h2 {
  font-size: 2.1rem;
  margin-bottom: 40px;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Container das perguntas */
.faq-item {
  background: var(--azul);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Botão da pergunta */
.faq-question {
  background: var(--cinzaEscuro);
  color: var(--branco);
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 18px 22px;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--dourado);
  color: var(--branco);
}

/* Ícone de seta (usa pseudo-elemento) */
.faq-question::after {
  content: "▾";
  font-size: 20px;
  transition: transform 0.3s;
}

/* Gira a seta quando aberto */
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

/* Resposta oculta/mostrando */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--branco);
  color: var(--preto);
  text-align: left;
  padding: 0 22px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px; /* altura suficiente p/ textos longos */
  padding: 18px 22px 25px;
}

/* ===== Responsividade ===== */
@media (max-width: 768px) {
  .faq {
    width: 95%;
    padding: 60px 15px;
  }

  .faq h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px 18px;
  }
}

/* ---- Bloco de Vantagens ---- */

.vantagens-container {
  text-align: center;
  padding-top: 60px;
}

.vantagens-container h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--azul);
}

.vantagens-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.vantagem-item {
  background: var(--amarelo);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  width: 20px;
  padding: 30px 20px;
  transition: 0.3s;
}

.vantagem-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vantagem-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.vantagem-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--azul);
}

.vantagem-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}


/* expertise */

.expert-section.invert .container {
  flex-direction: row-reverse;
}

.expert-section.invert {
   background: var(--amarelo); 
}



/* Comparador */

:root {
  
  --verde: #1ebe57;
  --vermelho: #d71500;
  --sombra: rgba(95, 150, 238, 0.08);
  --transicao: all 0.5s ease;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--azulClaro);
  margin: 0;
  color: var(--preto);
}
.comparador .header {
      padding: 0;
  position: static;
  text-align: center;
}

.comparador .header h3 {
  color: var(--azul);
  font-size: 1.9rem;
}

.comparador {
  padding: 10px 20px;
  text-align: left;
}

.comparador h2 {
  font-size: 2.5rem;
  color: var(--azul);
  margin-bottom: 10px;
 text-align: center;
}

.comparador h2 span {
  color: var(--azul);
  text-decoration: double underline;
  text-decoration-color: var(--dourado);
}

.subtitulo {
  color: var(--azul);
  margin-bottom: 50px;
  text-align: center;
}

.opcoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.opcao {
  background: var(--branco);
  border-radius: 20px;
  box-shadow: 0 8px 18px var(--sombra);
  flex: 1 1 320px;
  max-width: 350px;
  padding: 30px;
  cursor: pointer;
  transition: var(--transicao);
  transform: scale(0.96);
  opacity: 0.8;
  position: relative;
  overflow: hidden;
}

.opcao:hover {
  transform: scale(0.98);
}

.opcao.ativa {
  background:  var(--azul);
  color: var(--branco);
  transform: scale(1.05);
  opacity: 1;

}

.opcao.ativa h3 {
  color: var(--branco);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  font-size: 0.75rem;
  background: var(--verde);
  color: var(--branco);
  padding: 6px 10px;
  border-radius: 100px;

}

ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

ul li {
  margin-bottom: 10px;
}

.barras {
  margin-top: 20px;
}

.bar {
  margin-bottom: 15px;
  text-align: left;
}

.bar label {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 6px;
}

.bar-inner {
  height: 10px;
  border-radius: 10px;
  background: var(--laranja);
  transition: width 0.8s ease-in-out;
}

.verde { background: var(--verde); }
.vermelho { background: var(--vermelho); }
.amarelo { background: var(--amarelo); }

.opcao.ativa .bar-inner {
  filter: brightness(1.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .opcoes {
    flex-direction: row;
  }
}
/* Fim Comparador */

/* EXPERT SECTION */
.expert-section {
  background: var(--azulClaro);
  padding: 80px 20px;
  text-align: center;
}

.expert-section .subtitle {
  color: var(--azul);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.expert-section .title {
  color: var(--azul);
  font-size: 3rem;
  margin-top: 8px;
  font-weight: 700;
}

.expert-carousel {
  display: flex;
  align-items: center;
  margin-top: 50px;
  position: relative;
}

.expert-items {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 0 10px;
}

.expert-items::-webkit-scrollbar {
  display: none;
}

.expert-card {
  background: var(--azul);
  border-radius: 20px;
  padding: 32px 24px;
  min-width: 280px;
  max-width: 320px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(19, 55, 70, 0.2);
}

.expert-card i {
  font-size: rem;
  color: var(--dourado);
  margin-bottom: 1px;
}

.expert-card h3 {
  font-size: 1.99rem;
  color: var(--dourado);
  margin-bottom: 1px;
}

.expert-card p {
  font-size: 1.0rem;
  color: var(--branco);
  margin-bottom: 50px;
  line-height: 1.5;
}
/* SAIBA MAIS*/
.expert-card a {
  color: var(--dourado);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}

.expert-card a:hover {
  text-decoration: underline;
}

.nav-btn {
  background: var(--dourado);
  border: none;
  border-radius: 50%;
  width: 72px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:  0.3s;
}

.nav-btn:hover {
  background: var(--laranja);
}

.nav-btn.prev {
  margin-right: 0px;
}

.nav-btn.next {
  margin-left: 10px;
}
/* FIM EXPERT SECTION */

/* ===== SOBRE NÓS ===== */
.sobre-container {
  background-color: var(--azulClaro);
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 50px 100px 50px 100px ;
  
}

.sobre-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.sobre-texto {
  flex: 1;
  min-width: 320px;
  text-align: left;
  
}

.sobre-texto .tag {
  color: var(--azul);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 1px;
    font-size: 1.9rem;
 

}

.sobre-texto h2,
.porque h3 {
   color: var(--azul);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 1rem 0;
  font-size: 1.5rem;

}

.sobre-texto p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--preto);
}

/* ===== POR QUE ESCOLHER ===== */
.porque {
  margin-top: 1.5rem;
}

.porque-lista {
  list-style: disc;  padding: 0;
  margin-top: 1rem;
}

.porque-lista li {
  margin: 0.5rem 0;
  color: var(--amarelo);
  font-weight: 500;
}

/* Botão flutuante do WhatsApp */
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 30px;
  background: #25d366; /* fundo */
  border: 1px solid #25d366; /* cor oficial do WhatsApp */
  border-radius: 50%; /* formato totalmente circular */
  padding: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp img {
  width: 60px;
  height: 60px;
}

/* Efeito ao passar o mouse */
.whatsapp:hover {
  transform: scale(1.20);
}
