/* ═══════════════════════════════════════════════════════════════════
   TEMA — TROQUE AS CORES AQUI
   ═══════════════════════════════════════════════════════════════════
   O sistema tem 2 camadas:

   ► CAMADA 1 (paleta bruta): os códigos de cor ficam SÓ aqui.
     Trocar um valor aqui muda a cor em todos os lugares que a usam.

   ► CAMADA 2 (variáveis por LOCAL): cada área da página tem as suas
     próprias variáveis. Quer mudar a cor de UM lugar só? Troque a
     variável daquele local — pode apontar para a paleta
     (var(--cor-...)) ou receber qualquer cor direta (ex.: #0A2A43).

     Exemplo: para deixar só o hero azul-marinho:
     --hero-bg: #0A2A43;
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ── CAMADA 1: PALETA BRUTA ─────────────────────────────────────── */
  --cor-azul-escuro: #212D3D;   /* azul-marinho principal (hero/seções escuras) */
  --cor-azul-var:    #202B3B;   /* variação do azul-marinho escuro */
  --cor-azul-preto:  #131A25;   /* azul quase-preto (resultados) */
  --cor-azul-btn:    #18202C;   /* azul-marinho profundo (botão escuro) */
  --cor-bege:         #D2C9B8;   /* bege/dourado (destaques, números) */
  --cor-branco:       #FFFFFF;
  --cor-cinza-claro:  #F4F4F4;   /* fundos internos alternados */
  --cor-texto:        #333333;   /* texto padrão sobre claro */
  --cor-preto:        #000000;   /* títulos sobre claro */
  --cor-whatsapp:     #25D366;   /* verde oficial WhatsApp */
  --cor-play:         #1E88E5;   /* azul do botão play dos vídeos */
  --cor-estrela:      #FBBC04;   /* amarelo das estrelas Google */

  /* ── CAMADA 2: VARIÁVEIS POR LOCAL ──────────────────────────────── */

  /* Header / menu */
  --header-bg:            var(--cor-azul-escuro); /* fundo ao rolar a página */
  --header-link-cor:      var(--cor-branco);
  --header-link-destaque: var(--cor-bege);         /* sublinhado do item ativo */
  --header-btn-borda:     var(--cor-branco);       /* botão "Fale Conosco" */
  --header-btn-texto:     var(--cor-branco);

  /* Botões (CTAs) */
  --btn-claro-bg:     var(--cor-branco);       /* botão claro sobre seção escura */
  --btn-claro-texto:  var(--cor-azul-escuro);
  --btn-escuro-bg:    var(--cor-azul-btn);    /* botão escuro sobre seção clara */
  --btn-escuro-texto: var(--cor-branco);

  /* 2. Hero */
  --hero-bg:            var(--cor-azul-escuro);
  --hero-sobretitulo:   var(--cor-bege);
  --hero-titulo-cor:    var(--cor-branco);
  --hero-texto-cor:     var(--cor-branco);
  --hero-check-bg:      var(--cor-bege);        /* bolinha do ✔ */
  --hero-check-cor:     var(--cor-azul-escuro);/* o ✔ em si */
  --hero-badge-bg:      rgba(255, 255, 255, 0.10); /* card "Evite Perder..." */
  --hero-badge-texto:   var(--cor-branco);
  --hero-badge-icone:   var(--cor-bege);
  --hero-onda-fundo:    var(--cor-branco);      /* cor revelada pela onda — deve bater com o fundo da seção seguinte */

  /* 3. Logos de clientes */
  --logos-bg:         var(--cor-branco);
  --logos-titulo-cor: var(--cor-preto);
  --logos-faixa-bg:   var(--cor-cinza-claro);   /* container arredondado */

  /* 4. Garantia */
  --garantia-bg:           var(--cor-branco);
  --garantia-titulo-cor:   var(--cor-preto);
  --garantia-destaque-cor: var(--cor-azul-escuro); /* trecho "90 dias" */
  --garantia-texto-cor:    var(--cor-texto);

  /* 5. Resultados / números */
  --resultados-bg:          var(--cor-azul-preto);
  --resultados-titulo-cor:  var(--cor-branco);
  --resultados-numero-cor:  var(--cor-bege);    /* números gigantes */
  --resultados-texto-cor:   rgba(255, 255, 255, 0.78);
  --resultados-card-bg:     rgba(255, 255, 255, 0.04);
  --resultados-card-borda:  rgba(210, 201, 184, 0.22);

  /* 6. Sobre a empresa */
  --sobre-bg:         var(--cor-azul-escuro);
  --sobre-titulo-cor: var(--cor-branco);
  --sobre-texto-cor:  rgba(255, 255, 255, 0.85);
  --sobre-frase-cor:  var(--cor-bege);          /* frase de efeito */

  /* 7. Ecossistema / fluxo */
  --ecossistema-bg:         var(--cor-branco);
  --ecossistema-titulo-cor: var(--cor-preto);
  --ecossistema-quadro-bg:  var(--cor-cinza-claro); /* fundo do diagrama */

  /* 8. Serviços (grid 3×3) */
  --servicos-bg:              var(--cor-azul-escuro);
  --servicos-titulo-cor:      var(--cor-branco);
  --servicos-card-bg:         var(--cor-branco);
  --servicos-card-titulo-cor: var(--cor-preto);
  --servicos-card-texto-cor:  var(--cor-texto);
  --servicos-icone-cor:       var(--cor-azul-escuro);
  --servicos-icone-bg:        rgba(33, 45, 61,0.08); /* bolinha atrás do ícone */

  /* 9. Cases de sucesso (vídeos) */
  --cases-bg:         var(--cor-branco);
  --cases-titulo-cor: var(--cor-preto);
  --video-play-cor:   var(--cor-play);

  /* 10. Depoimentos Google */
  --reviews-bg:          var(--cor-branco);
  --reviews-titulo-cor:  var(--cor-preto);
  --reviews-card-bg:     var(--cor-branco);
  --reviews-card-borda:  #ECECEC;
  --reviews-texto-cor:   var(--cor-texto);
  --reviews-estrela-cor: var(--cor-estrela);
  --reviews-link-cor:    #1A73E8;               /* "Consulte mais informação" */

  /* Setas dos carrosséis */
  --seta-bg:        var(--cor-branco);
  --seta-cor:       var(--cor-azul-escuro);
  --seta-hover-bg:  var(--cor-azul-escuro);
  --seta-hover-cor: var(--cor-branco);

  /* 11. FAQ */
  --faq-bg:          var(--cor-azul-escuro);
  --faq-titulo-cor:  var(--cor-branco);
  --faq-item-bg:     rgba(255, 255, 255, 0.05);
  --faq-item-borda:  rgba(210, 201, 184, 0.28);
  --faq-pergunta-cor: var(--cor-branco);
  --faq-icone-cor:   var(--cor-bege);           /* o "+" do accordion */
  --faq-texto-cor:   rgba(255, 255, 255, 0.85);

  /* 12. Footer */
  --footer-bg:         var(--cor-branco);
  --footer-titulo-cor: var(--cor-preto);
  --footer-texto-cor:  var(--cor-texto);
  --footer-icone-bg:   rgba(33, 45, 61,0.10);  /* bolinha dos ícones de contato */
  --footer-icone-cor:  var(--cor-azul-escuro);
  --footer-rede-bg:    var(--cor-azul-escuro);  /* quadrado do Instagram */
  --footer-rede-cor:   var(--cor-branco);
  --footer-barra-cor:  #666666;                  /* barra do copyright */

  /* Botão flutuante WhatsApp */
  --whats-btn-bg:     var(--cor-whatsapp);
  --whats-btn-cor:    var(--cor-branco);
  --whats-balao-bg:   var(--cor-branco);
  --whats-balao-cor:  var(--cor-azul-escuro);

  /* Layout geral */
  --container:    1200px;
  --radius-secao: 48px;   /* curvatura das transições entre seções */
  --fonte: "Open Sans", "Segoe UI", sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════
   RESET E BASE
   ═══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cor-texto);
  background: var(--cor-branco);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

::selection { background: var(--cor-bege); color: var(--cor-azul-preto); }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

section[id] { scroll-margin-top: 92px; }

/* Curvas suaves na transição entre seções */
.curva-topo { border-top-left-radius: var(--radius-secao); border-top-right-radius: var(--radius-secao); }
.curva-base { border-bottom-left-radius: var(--radius-secao); border-bottom-right-radius: var(--radius-secao); }

.centralizado { display: flex; justify-content: center; margin-top: 48px; }

/* Título padrão de seção (uppercase, espaçado) */
.secao-titulo {
  font-size: clamp(22px, 2.6vw, 26px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
}

/* ═══ Botões (pill) ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px) scale(1.02); opacity: 0.92; }
.btn:active { transform: translateY(0) scale(0.99); }

.btn--claro  { background: var(--btn-claro-bg);  color: var(--btn-claro-texto); }
.btn--escuro { background: var(--btn-escuro-bg); color: var(--btn-escuro-texto); }
.btn--outline {
  background: transparent;
  border: 2px solid var(--header-btn-borda);
  color: var(--header-btn-texto);
  padding: 11px 26px;
  font-size: 15px;
}
.btn--outline:hover { background: var(--header-btn-borda); color: var(--cor-azul-escuro); opacity: 1; }

/* Animação de entrada ao rolar */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visivel { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════════
   1. HEADER
   ═══════════════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.header.rolou {
  background: var(--header-bg);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  padding: 12px 0;
}

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--header-link-cor);
}

.header__logo-icone { width: 34px; height: 34px; flex: none; }

.header__lista { display: flex; align-items: center; gap: 34px; }

.header__link {
  position: relative;
  color: var(--header-link-cor);
  font-size: 15.5px;
  font-weight: 600;
  padding: 6px 0;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--header-link-destaque);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header__link:hover::after, .header__link.ativo::after { transform: scaleX(1); }

.header__cta-mobile { display: none; }

/* Hambúrguer */
.header__hamburguer { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1002; }
.header__hamburguer span {
  width: 26px; height: 2.5px;
  border-radius: 2px;
  background: var(--header-link-cor);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__hamburguer.aberto span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__hamburguer.aberto span:nth-child(2) { opacity: 0; }
.header__hamburguer.aberto span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 991px) {
  .header__cta { display: none; }
  .header__hamburguer { display: flex; }

  .header__nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(78vw, 320px);
    background: var(--header-bg);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px 34px;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.3, 1);
  }
  .header__nav.aberto { transform: translateX(0); }

  .header__lista { flex-direction: column; align-items: flex-start; gap: 26px; }
  .header__link { font-size: 19px; }
  .header__cta-mobile { display: inline-flex; }
}

/* ═══════════════════════════════════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  background: var(--hero-bg);
  color: var(--hero-texto-cor);
  padding: 88px 0 clamp(56px, 9vw, 96px);
  position: relative;
  overflow: hidden;
}

.hero__onda {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: clamp(34px, 6vw, 72px);
  background: var(--hero-onda-fundo);
  display: block;
}
.hero__onda path { fill: var(--hero-bg); }

.hero__grid { display: grid; grid-template-columns: 1fr; gap: 14px; align-items: center; }

.hero__titulo-grupo { display: block; font-weight: 400; }

.hero__sobretitulo {
  display: block;
  color: var(--hero-sobretitulo);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.hero__titulo {
  display: block;
  color: var(--hero-titulo-cor);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.28;
}
.hero__titulo strong { font-weight: 800; }

.hero__subtitulo { margin-top: 8px; font-size: 13.5px; opacity: 0.88; max-width: 380px; }

.hero__lista { margin: 12px 0 18px; display: grid; gap: 7px; }
.hero__lista li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; }

.hero__nota { margin-top: 10px; font-size: 11.5px; opacity: 0.65; }

.hero__check {
  flex: none;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--hero-check-bg);
  color: var(--hero-check-cor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__imagem { position: relative; max-width: 150px; margin-inline: auto; width: 100%; }

.hero__pessoa { position: relative; z-index: 1; width: 100%; }

.hero__badge {
  position: absolute;
  z-index: 2;
  left: 0; bottom: 12%;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--hero-badge-bg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 9px 13px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  animation: badge-flutua 4.5s ease-in-out infinite;
}
.hero__badge p { font-size: 11.5px; line-height: 1.35; color: var(--hero-badge-texto); }
.hero__badge strong { font-weight: 800; }
.hero__badge-icone { color: var(--hero-badge-icone); display: inline-flex; }

@keyframes badge-flutua {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (min-width: 992px) {
  .hero { padding: 100px 0 clamp(56px, 9vw, 96px); }
  .hero__grid { grid-template-columns: 1fr 0.62fr; gap: 40px; max-width: 940px; }
  .hero__imagem {
    max-width: 260px;
    align-self: end;
    margin-bottom: -32px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   3. CLIENTES / LOGOS
   ═══════════════════════════════════════════════════════════════════ */
.logos { background: var(--logos-bg); padding: 80px 0; }

.logos__titulo {
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 400;
  color: var(--logos-titulo-cor);
  text-align: center;
  margin-bottom: 42px;
}
.logos__titulo strong { font-weight: 800; }

.logos__faixa {
  display: flex;
  overflow: hidden;
  background: var(--logos-faixa-bg);
  border-radius: 24px;
  padding: 30px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logos__trilho {
  flex: none;
  display: flex;
  align-items: center;
  gap: 70px;
  padding-right: 70px;
  animation: logos-rolar 30s linear infinite;
}
.logos__faixa:hover .logos__trilho { animation-play-state: paused; }

.logos__trilho img {
  height: 46px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.logos__trilho img:hover { opacity: 1; filter: grayscale(0.3); }

@keyframes logos-rolar {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ═══════════════════════════════════════════════════════════════════
   4. GARANTIA
   ═══════════════════════════════════════════════════════════════════ */
.garantia { background: var(--garantia-bg); padding: 60px 0 80px; }

.garantia__grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }

.garantia__imagem { max-width: 400px; margin-inline: auto; width: 100%; }

.garantia__titulo {
  font-size: clamp(25px, 3.2vw, 34px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--garantia-titulo-cor);
  margin-bottom: 20px;
}
.garantia__titulo strong { color: var(--garantia-destaque-cor); font-weight: 800; }

.garantia__conteudo p { color: var(--garantia-texto-cor); margin-bottom: 30px; }

@media (min-width: 992px) {
  .garantia__grid { grid-template-columns: 0.9fr 1.1fr; gap: 70px; }
}

/* ═══════════════════════════════════════════════════════════════════
   5. RESULTADOS / NÚMEROS
   ═══════════════════════════════════════════════════════════════════ */
.resultados {
  background: var(--resultados-bg);
  color: var(--resultados-texto-cor);
  padding: 90px 0;
}

.resultados__titulo { color: var(--resultados-titulo-cor); }

.resultados__subtitulo {
  text-align: center;
  max-width: 620px;
  margin: 16px auto 0;
  font-size: 16.5px;
}

.resultados__principal { text-align: center; margin: 56px 0 50px; }

.resultados__numerao {
  display: block;
  font-size: clamp(38px, 7.4vw, 74px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--resultados-numero-cor);
  letter-spacing: -1px;
}

.resultados__legenda { margin-top: 12px; font-size: 17px; }

.resultados__grid { display: grid; grid-template-columns: 1fr; gap: 22px; }

.resultados__card {
  background: var(--resultados-card-bg);
  border: 1px solid var(--resultados-card-borda);
  border-radius: 20px;
  padding: 38px 22px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.resultados__card:hover { transform: translateY(-6px); border-color: var(--resultados-numero-cor); }

.resultados__numero {
  display: block;
  font-size: clamp(38px, 4.6vw, 50px);
  font-weight: 800;
  color: var(--resultados-numero-cor);
  line-height: 1.15;
}
.resultados__card p { margin-top: 6px; font-size: 16px; }

@media (min-width: 768px) {
  .resultados__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════════
   6. SOBRE A EMPRESA
   ═══════════════════════════════════════════════════════════════════ */
.sobre {
  background: var(--sobre-bg);
  color: var(--sobre-texto-cor);
  padding: 90px 0 60px;
}

.sobre__grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: end; }

.sobre__titulo { color: var(--sobre-titulo-cor); text-align: left; margin-bottom: 28px; }

.sobre__conteudo { padding-bottom: 40px; }
.sobre__conteudo p { margin-bottom: 16px; }
.sobre__conteudo strong { color: var(--sobre-titulo-cor); }

.sobre__frase {
  color: var(--sobre-frase-cor);
  font-size: 18px;
  font-weight: 800;
  margin: 24px 0 30px;
}

.sobre__imagem { max-width: 480px; margin-inline: auto; width: 100%; }

@media (min-width: 992px) {
  .sobre__grid { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
}

/* ═══════════════════════════════════════════════════════════════════
   7. ECOSSISTEMA / FLUXO
   ═══════════════════════════════════════════════════════════════════ */
.ecossistema { background: var(--ecossistema-bg); padding: 80px 0; }

.ecossistema__titulo {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ecossistema-titulo-cor);
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}
.ecossistema__titulo strong { font-weight: 800; }

.ecossistema__diagrama {
  width: min(100%, 760px);
  margin-inline: auto;
  background: var(--ecossistema-quadro-bg);
  border-radius: 28px;
  padding: clamp(16px, 3vw, 40px);
}

/* ═══════════════════════════════════════════════════════════════════
   8. SERVIÇOS (grid 3×3)
   ═══════════════════════════════════════════════════════════════════ */
.servicos { background: var(--servicos-bg); padding: 90px 0; }

.servicos__titulo { color: var(--servicos-titulo-cor); margin-bottom: 50px; }

.servicos__grid { display: grid; grid-template-columns: 1fr; gap: 22px; }

.servico {
  background: var(--servicos-card-bg);
  border-radius: 20px;
  padding: 36px 26px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.servico:hover { transform: translateY(-7px); box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22); }

.servico__icone {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--servicos-icone-bg);
  color: var(--servicos-icone-cor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.servico:hover .servico__icone { transform: scale(1.1) rotate(-4deg); }

.servico__titulo {
  font-size: 17px;
  font-weight: 700;
  color: var(--servicos-card-titulo-cor);
  margin-bottom: 10px;
}

.servico p { font-size: 15px; color: var(--servicos-card-texto-cor); }

@media (min-width: 640px)  { .servicos__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px)  { .servicos__grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════════════════════════════
   CARROSSEL (base compartilhada: cases e reviews)
   ═══════════════════════════════════════════════════════════════════ */
.carrossel { position: relative; }

.carrossel__trilho {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px 22px;
  scrollbar-width: none; /* Firefox */
}
.carrossel__trilho::-webkit-scrollbar { display: none; }
.carrossel__trilho > * { scroll-snap-align: center; }

.carrossel__seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--seta-bg);
  color: var(--seta-cor);
  border: 1px solid #E3E3E3;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.carrossel__seta:hover { background: var(--seta-hover-bg); color: var(--seta-hover-cor); transform: translateY(-50%) scale(1.08); }
.carrossel__seta--esq { left: -8px; }
.carrossel__seta--dir { right: -8px; }
.carrossel__seta.oculta { display: none; }

@media (min-width: 1280px) {
  .carrossel__seta--esq { left: -23px; }
  .carrossel__seta--dir { right: -23px; }
}

/* ═══════════════════════════════════════════════════════════════════
   9. CASES DE SUCESSO (vídeos verticais)
   ═══════════════════════════════════════════════════════════════════ */
.cases { background: var(--cases-bg); padding: 80px 0 60px; }

.cases__titulo { color: var(--cases-titulo-cor); margin-bottom: 46px; }

.video {
  position: relative;
  flex: none;
  width: min(290px, 76vw);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}
.video img { width: 100%; height: 100%; object-fit: cover; }

.video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--video-play-cor);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}
.video__play::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--video-play-cor);
  opacity: 0.6;
  animation: play-pulso 2s ease-out infinite;
}
.video__play:hover { transform: scale(1.1); }

@keyframes play-pulso {
  from { transform: scale(0.85); opacity: 0.7; }
  to   { transform: scale(1.35); opacity: 0; }
}

@media (min-width: 1024px) {
  /* 3 vídeos cabem no container → centraliza */
  .cases__trilho { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   10. DEPOIMENTOS GOOGLE
   ═══════════════════════════════════════════════════════════════════ */
.reviews { background: var(--reviews-bg); padding: 60px 0 80px; }

.reviews__titulo { color: var(--reviews-titulo-cor); margin-bottom: 46px; }
.reviews__titulo strong { font-weight: 800; }

.review {
  flex: none;
  width: min(340px, 82vw);
  background: var(--reviews-card-bg);
  border: 1px solid var(--reviews-card-borda);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
}

.review__topo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; }
.review__quem { display: flex; flex-direction: column; line-height: 1.3; }
.review__quem strong { font-size: 15px; color: var(--reviews-texto-cor); }
.review__quem time { font-size: 13px; color: #808080; }
.review__google { margin-left: auto; }

.review__estrelas {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--reviews-estrela-cor);
  margin-bottom: 12px;
}
.review__selo { margin-left: 6px; }

.review__texto { font-size: 15px; color: var(--reviews-texto-cor); flex: 1; }

.review__mais {
  margin-top: 14px;
  font-size: 14px;
  color: var(--reviews-link-cor);
}
.review__mais:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   11. FAQ (accordion)
   ═══════════════════════════════════════════════════════════════════ */
.faq { background: var(--faq-bg); padding: 90px 0; }

.faq__container { max-width: 840px; }

.faq__titulo {
  font-size: clamp(25px, 3vw, 30px);
  font-weight: 700;
  color: var(--faq-titulo-cor);
  text-align: center;
  margin-bottom: 42px;
}

.faq__item {
  background: var(--faq-item-bg);
  border: 1px solid var(--faq-item-borda);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq__item.aberto { border-color: var(--faq-icone-cor); background: rgba(255, 255, 255, 0.08); }

.faq__pergunta {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--faq-pergunta-cor);
}

/* Ícone + (vira −  quando aberto) */
.faq__icone { position: relative; flex: none; width: 18px; height: 18px; }
.faq__icone::before, .faq__icone::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--faq-icone-cor);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq__icone::before { width: 18px; height: 2.5px; }
.faq__icone::after  { width: 2.5px; height: 18px; }
.faq__item.aberto .faq__icone::after { transform: rotate(90deg); opacity: 0; }

/* Animação de altura (grid-rows: 0fr → 1fr) */
.faq__resposta {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq__item.aberto .faq__resposta { grid-template-rows: 1fr; }
.faq__resposta-inner { overflow: hidden; }
.faq__resposta-inner p {
  padding: 0 22px 20px 56px;
  font-size: 15.5px;
  color: var(--faq-texto-cor);
}

/* ═══════════════════════════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer { background: var(--footer-bg); color: var(--footer-texto-cor); padding-top: 70px; }

.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }

.footer__logo {
  display: inline-block;
  margin-bottom: 14px;
}
.footer__logo img { width: 150px; height: auto; }
.footer__marca p { font-size: 14.5px; color: #777; max-width: 280px; }

.footer__titulo { font-size: 17px; font-weight: 700; color: var(--footer-titulo-cor); margin-bottom: 18px; }

.footer__contatos li { margin-bottom: 14px; }
.footer__contatos a, .footer__endereco {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  transition: color 0.25s ease;
}
.footer__contatos a:hover { color: var(--footer-icone-cor); font-weight: 600; }

.footer__icone {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--footer-icone-bg);
  color: var(--footer-icone-cor);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__rede {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--footer-rede-bg);
  color: var(--footer-rede-cor);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.footer__rede:hover { transform: translateY(-3px) scale(1.05); opacity: 0.9; }

.footer__barra { border-top: 1px solid #ECECEC; margin-top: 54px; padding: 20px 0; }
.footer__barra-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--footer-barra-cor);
  text-align: center;
}
.footer__barra-inner a { font-weight: 600; }
.footer__barra-inner a:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.1fr 1.2fr 0.7fr; }
  .footer__barra-inner { flex-direction: row; text-align: left; }
}

/* ═══════════════════════════════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
   ═══════════════════════════════════════════════════════════════════ */
.whats { position: fixed; right: 22px; bottom: 22px; z-index: 990; }

.whats__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whats-btn-bg);
  color: var(--whats-btn-cor);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}
.whats__btn:hover { transform: scale(1.1); }
.whats__btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--whats-btn-bg);
  animation: play-pulso 2.2s ease-out infinite;
}

.whats__balao {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 232px;
  background: var(--whats-balao-bg);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.whats__balao.visivel { opacity: 1; transform: none; pointer-events: auto; }
.whats__balao::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -7px;
  width: 14px; height: 14px;
  background: var(--whats-balao-bg);
  transform: rotate(45deg);
  border-radius: 3px;
}

.whats__fechar {
  position: absolute;
  top: 6px; right: 10px;
  font-size: 18px;
  color: #999;
  line-height: 1;
}
.whats__fechar:hover { color: #333; }

.whats__status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #6d6d6d;
  margin-bottom: 3px;
}
.whats__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--whats-btn-bg);
  animation: dot-pisca 1.6s ease-in-out infinite;
}
@keyframes dot-pisca { 50% { opacity: 0.35; } }

.whats__msg { font-size: 14.5px; font-weight: 700; color: var(--whats-balao-cor); }

/* ═══════════════════════════════════════════════════════════════════
   ACESSIBILIDADE: reduz movimento se o usuário preferir
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
