/* =================================================================
   AGUAZUL — Landing Page (mobile-first)
   Paleta da marca: azul royal (primária) + amarelo/laranja (apoio)
   PLACEHOLDER: ajustar os HEX abaixo para os tons EXATOS do logotipo.
   Verde WhatsApp (#25D366) é exclusivo do CTA — Von Restorff.
   ================================================================= */

:root {
  /* Marca — ajustar ao logo */
  --azul: #0B5FBF;          /* azul royal primário */
  --azul-escuro: #063E80;   /* variação para contraste */
  --azul-claro: #E8F1FB;    /* fundo tintado */
  --amarelo: #FDB515;       /* apoio / energia */
  --laranja: #F5872E;       /* apoio / energia */

  /* WhatsApp — NUNCA usar este tom em outro lugar */
  --wa: #25D366;
  --wa-escuro: #1EBE59;

  /* Neutros */
  --tinta: #14243A;         /* texto principal */
  --tinta-2: #4A5A6E;       /* texto secundário */
  --cinza: #7A8899;         /* microcopy */
  --linha: #E2E8F0;
  --branco: #FFFFFF;
  --fundo: #FFFFFF;

  --raio: 14px;
  --raio-sm: 10px;
  --sombra: 0 6px 24px rgba(11, 95, 191, .10);
  --sombra-2: 0 12px 40px rgba(11, 95, 191, .16);
  --wrap: 1120px;
  --toque: 48px;            /* alvo mínimo de toque */

  --f-display: "Poppins", system-ui, sans-serif;
  --f-texto: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-texto);
  font-size: 16px;              /* corpo mínimo mobile */
  line-height: 1.6;
  color: var(--tinta);
  background: var(--fundo);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--f-display); line-height: 1.18; margin: 0; }
p { margin: 0; }
button { font-family: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--azul); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--laranja); outline-offset: 2px; border-radius: 6px; }

/* =================================================================
   BOTÕES
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--toque);
  padding: 13px 22px;
  border: 0; border-radius: 999px;
  font-family: var(--f-display); font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }

/* CTA primário — verde WhatsApp exclusivo (Von Restorff) */
.btn--wa { background: var(--wa); color: #073B1E; box-shadow: 0 6px 18px rgba(37,211,102,.35); }
.btn--wa:hover { background: var(--wa-escuro); box-shadow: 0 8px 24px rgba(37,211,102,.45); }
.btn__icon { display: inline-flex; }

/* CTA secundário — sempre subordinado (outline/ghost) */
.btn--ghost { background: transparent; color: var(--azul); border: 2px solid var(--azul); }
.btn--ghost:hover { background: var(--azul-claro); }
.hero .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.hero .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.btn--lg { min-height: 56px; padding: 16px 26px; font-size: 1.08rem; }
.btn--sm { min-height: 44px; padding: 10px 16px; font-size: .95rem; }

/* =================================================================
   PROMO BAR (CROSS-SELL)
   ================================================================= */
.promo-bar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; background: var(--azul); color: #fff; padding: 24px 20px; font-size: 1.05rem; text-decoration: none; text-align: center; }
.promo-bar:hover { background: var(--azul-claro); }
.promo-bar__tag { background: var(--amarelo); color: #000; font-weight: 700; font-size: .85rem; padding: 4px 12px; border-radius: 99px; text-transform: uppercase; }
.promo-bar__text { font-family: var(--f-display); }
.promo-bar__text strong { font-weight: 600; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); text-underline-offset: 3px; }

/* =================================================================
   MENU FIXO
   ================================================================= */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--linha);
}
.topbar.is-scrolled { box-shadow: 0 6px 22px rgba(11,95,191,.12); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 60px; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.brand__logo { font-family: var(--f-display); font-weight: 700; font-size: 1.4rem; color: var(--azul); letter-spacing: -.5px; }
.nav { display: none; gap: 26px; }
.nav a { font-family: var(--f-display); font-weight: 500; font-size: .98rem; color: var(--tinta); text-decoration: none; }
.nav a:hover { color: var(--azul); }

/* =================================================================
   SEÇÕES — base
   ================================================================= */
.section { padding: 56px 0; }
.section--tint { background: var(--azul-claro); }
.section__title { font-size: 1.6rem; font-weight: 700; color: var(--tinta); }
.section__lead { margin-top: 12px; color: var(--tinta-2); max-width: 60ch; }
.section__cta { margin-top: 28px; display: flex; justify-content: center; }
.section__foot { margin-top: 24px; color: var(--tinta-2); }
.link-strong { color: var(--azul); font-weight: 600; text-decoration: underline; }

/* =================================================================
   S1 · HERO full-bleed (cena imersiva, é o LCP)
   ================================================================= */
.hero { position: relative; min-height: 90vh; min-height: 90svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
/* Overlay azul da marca (não é dark mode) — garante contraste AA do texto branco */
.hero__overlay { position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(to top, rgba(6,34,72,.94) 0%, rgba(6,34,72,.72) 40%, rgba(8,40,90,.30) 72%, rgba(8,40,90,.08) 100%); }
/* Luz de água (cáusticas) — sutil, roda no GPU, some com prefers-reduced-motion */
.hero__caustics { position: absolute; inset: -8%; z-index: -1; pointer-events: none; opacity: .4; mix-blend-mode: screen;
  background:
    radial-gradient(38% 26% at 22% 18%, rgba(120,205,255,.40), transparent 62%),
    radial-gradient(30% 22% at 78% 26%, rgba(165,235,255,.32), transparent 62%),
    radial-gradient(26% 20% at 60% 70%, rgba(120,205,255,.22), transparent 60%);
  animation: caustics 9s ease-in-out infinite alternate; }
@keyframes caustics { from { transform: translate3d(-1.5%, -1%, 0) scale(1.03); } to { transform: translate3d(2%, 2%, 0) scale(1.09); } }

.hero__content { position: relative; width: 100%; padding-top: 96px; padding-bottom: 104px; }
.hero__text { max-width: 640px; }
.eyebrow { font-family: var(--f-display); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #9FD4FF; }
.hero h1 { font-size: clamp(2rem, 8.4vw, 2.7rem); font-weight: 700; margin-top: 10px; color: #fff; letter-spacing: -.02em; text-shadow: 0 2px 20px rgba(0,18,45,.35); }
.hero h1 strong { color: var(--amarelo); }
.hero__sub { margin-top: 16px; font-size: 1.08rem; color: rgba(255,255,255,.92); max-width: 48ch; }

.hero__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.risk-reducer { margin-top: 12px; font-size: .86rem; color: rgba(255,255,255,.82); }
.trust-line { margin-top: 16px; font-size: .92rem; color: rgba(255,255,255,.9); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.trust-line strong { color: #fff; }
.trust-line__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,.28); flex: none; }

/* Onda de água na base do herói */
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1; line-height: 0; pointer-events: none; }
.hero__wave svg { display: block; width: 100%; height: 56px; }
.hero__wave path { fill: var(--fundo); }

/* Indicador de rolagem */
.hero__scroll { position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 999px; display: none; z-index: 2; }
.hero__scroll span { position: absolute; left: 50%; top: 9px; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 12px); } }

/* =================================================================
   ANTES/DEPOIS (S2)
   ================================================================= */
.ba { position: relative; margin: 26px 0 6px; border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra-2); aspect-ratio: 16/10; touch-action: pan-y; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__top { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }  /* mostra o "antes" à esquerda */
.ba__divider { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 12px rgba(0,0,0,.35); pointer-events: none; }
.ba__divider::after { content: "⇆"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--azul); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: var(--sombra); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba__tag { position: absolute; top: 12px; padding: 5px 12px; border-radius: 999px; font-family: var(--f-display); font-weight: 600; font-size: .8rem; color: #fff; }
.ba__tag--before { left: 12px; background: rgba(6,34,72,.72); }
.ba__tag--after { right: 12px; background: rgba(37,211,102,.9); color: #073B1E; }
.ba__cap { text-align: center; font-size: .9rem; color: var(--cinza); margin-top: 10px; }

/* =================================================================
   MOVIMENTO — reveal no scroll + pulso do CTA (só com motion permitido)
   ================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
  .reveal.is-visible { opacity: 1; transform: none; }

  /* Só o CTA verde "respira" — Von Restorff */
  .btn--wa.btn--lg { animation: waPulse 2.8s ease-in-out infinite; }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 18px rgba(37,211,102,.35); }
    50% { box-shadow: 0 10px 30px rgba(37,211,102,.6); }
  }

  /* Ken Burns — a foto do herói "respira" (vida cinematográfica, roda no GPU) */
  .hero__bg { animation: kenburns 24s ease-in-out infinite alternate; transform-origin: 60% 40%; }
  @keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.09); } }

  /* Brilho deslizante nos CTAs verdes grandes + barra fixa (guia o olho pra ação) */
  .btn--wa.btn--lg, .wa-bar { position: relative; overflow: hidden; }
  .btn--wa.btn--lg::after, .wa-bar::after {
    content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-20deg); animation: sheen 5.5s ease-in-out infinite;
  }
  @keyframes sheen { 0%, 55% { left: -70%; } 78%, 100% { left: 130%; } }

  /* Bolhas subindo na chamada final */
  .final__bubbles span { animation: rise 7s ease-in infinite; }
  .final__bubbles span:nth-child(2) { animation-duration: 9s; animation-delay: 1.4s; }
  .final__bubbles span:nth-child(3) { animation-duration: 6s; animation-delay: .6s; }
  .final__bubbles span:nth-child(4) { animation-duration: 10s; animation-delay: 2.2s; }
  .final__bubbles span:nth-child(5) { animation-duration: 7.5s; animation-delay: 3.1s; }
  .final__bubbles span:nth-child(6) { animation-duration: 8.5s; animation-delay: 1.9s; }
  .final__bubbles span:nth-child(7) { animation-duration: 6.5s; animation-delay: 4s; }
  @keyframes rise {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    12% { opacity: .8; }
    80% { opacity: .5; }
    100% { transform: translateY(-88vh) translateX(16px); opacity: 0; }
  }
}
.hero__scroll { display: block; }

/* =================================================================
   S2 · PROVA SOCIAL
   ================================================================= */
.cards { display: grid; gap: 18px; margin-top: 26px; }
.cards--3 { grid-template-columns: 1fr; }

.testimonial { margin: 0; background: var(--branco); border: 1px solid var(--linha); border-radius: var(--raio); padding: 20px; box-shadow: var(--sombra); }
.stars { color: var(--amarelo); font-size: 1.05rem; letter-spacing: 2px; }
.testimonial blockquote { margin: 10px 0 14px; font-size: 1.02rem; color: var(--tinta); }
.testimonial figcaption { display: flex; flex-direction: column; font-size: .9rem; color: var(--tinta-2); }
.testimonial figcaption strong { color: var(--tinta); }

.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.proof-grid img { border-radius: var(--raio-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* =================================================================
   S3 · ESCOLHA POR OBJETIVO
   ================================================================= */
.goals { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
.goals a {
  display: flex; align-items: center; gap: 14px;
  min-height: var(--toque);
  background: var(--branco); border: 1px solid var(--linha); border-radius: var(--raio);
  padding: 16px 18px; text-decoration: none; box-shadow: var(--sombra);
  transition: border-color .12s, transform .12s;
}
.goals a:hover { border-color: var(--azul); transform: translateY(-2px); }
.goals__ico { font-size: 1.6rem; flex: none; }
.goals__t { font-family: var(--f-display); font-weight: 600; color: var(--tinta); display: block; }
.goals__d { font-size: .88rem; color: var(--cinza); display: block; }
.goals a > span:not(.goals__ico) { display: flex; flex-direction: column; }

/* =================================================================
   S4 · MODELOS
   ================================================================= */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  min-height: 44px; padding: 8px 16px;
  border: 2px solid var(--linha); background: var(--branco); color: var(--tinta-2);
  border-radius: 999px; font-family: var(--f-display); font-weight: 500; font-size: .92rem; cursor: pointer;
  transition: all .12s;
}
.chip.is-active { background: var(--azul); border-color: var(--azul); color: #fff; }

.model { background: var(--branco); border: 1px solid var(--linha); border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra); display: flex; flex-direction: column; }
.model__img { width: 100%; aspect-ratio: 10/7; object-fit: cover; }
.model__img--spa { aspect-ratio: 1 / 1; object-fit: cover; }  /* foto de produto quadrada, sem corte */
.model__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.model__name { font-size: 1.25rem; font-weight: 700; color: var(--azul); }
.model__spec { font-size: .96rem; color: var(--tinta); }
.model__diff { font-size: .9rem; color: var(--tinta-2); flex: 1; }
.model .btn { margin-top: 6px; }
.model.is-hidden { display: none; }

/* ---------- Cartões de categoria de produtos (produtos.html) ---------- */
.prod-ico { font-size: 2rem; line-height: 1; display: block; }
.prod-list { list-style: none; margin: 2px 0 4px; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.prod-list li { background: var(--azul-claro); color: var(--azul-escuro); font-size: .82rem; font-weight: 500; padding: 5px 11px; border-radius: 999px; }

/* =================================================================
   S5 · TIMELINE
   ================================================================= */
.timeline { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 16px; counter-reset: step; }
.timeline__step { position: relative; background: var(--branco); border: 1px solid var(--linha); border-radius: var(--raio); padding: 20px 20px 20px 66px; box-shadow: var(--sombra); }
.timeline__num {
  position: absolute; left: 18px; top: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--azul); color: #fff; font-family: var(--f-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.timeline__step h3 { font-size: 1.08rem; color: var(--tinta); }
.timeline__step p { margin-top: 6px; color: var(--tinta-2); font-size: .96rem; }

/* =================================================================
   S7 · GALERIA + LIGHTBOX
   ================================================================= */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.gallery__item { position: relative; border: 0; padding: 0; background: none; cursor: pointer; border-radius: var(--raio-sm); overflow: hidden; box-shadow: var(--sombra); }
.gallery__item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .25s; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 12px 10px; font-size: .82rem; color: #fff; text-align: left; background: linear-gradient(transparent, rgba(6,62,128,.85)); }
.gallery__meta strong { display: block; font-family: var(--f-display); }

.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(6,20,40,.92); display: flex; align-items: center; justify-content: center; padding: 20px; }
.lightbox[hidden] { display: none; }   /* [hidden] precisa vencer o display:flex */
.lightbox__close { position: absolute; top: 14px; right: 16px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.15); color: #fff; font-size: 1.2rem; cursor: pointer; }
.lightbox__stage { max-width: 680px; width: 100%; text-align: center; }
.lightbox__stage > img { width: 100%; max-height: 62vh; object-fit: contain; border-radius: var(--raio); background: #000; }
.lightbox__thumbs { display: flex; gap: 8px; justify-content: center; margin-top: 12px; flex-wrap: wrap; }
.lightbox__thumbs img { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: .6; }
.lightbox__thumbs img.is-active { opacity: 1; outline: 2px solid var(--wa); }
.lightbox__caption { color: #fff; margin: 14px 0; font-size: .98rem; }
.lightbox__caption strong { font-family: var(--f-display); }

/* =================================================================
   S8 · DIFERENCIAIS + FAQ
   ================================================================= */
.diff-band { background: linear-gradient(135deg, var(--azul) 0%, var(--azul-escuro) 100%); color: #fff; border-radius: var(--raio); padding: 30px 24px; }
.diff-band .section__title { color: #fff; }
.diff-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.diff-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.diff-list span { font-size: 1.3rem; }

.faq-title { font-family: var(--f-display); font-size: 1.3rem; margin: 40px 0 16px; color: var(--tinta); }
.faq { display: grid; gap: 10px; }
.faq__item { background: var(--branco); border: 1px solid var(--linha); border-radius: var(--raio-sm); overflow: hidden; }
.faq__item summary { cursor: pointer; list-style: none; padding: 16px 44px 16px 18px; font-family: var(--f-display); font-weight: 500; color: var(--tinta); position: relative; min-height: var(--toque); display: flex; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 18px; font-size: 1.4rem; color: var(--azul); transition: transform .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 18px 18px; color: var(--tinta-2); }

/* =================================================================
   S9 · LOJA
   ================================================================= */
.loja { display: grid; gap: 24px; }
.loja__photos { display: grid; grid-template-columns: 1fr; gap: 12px; }
.loja__photos img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--raio); box-shadow: var(--sombra); }
.loja__info p { margin-top: 10px; color: var(--tinta-2); }
.loja__addr { font-size: 1.05rem; }
.loja__contacts { display: flex; flex-direction: column; gap: 10px; margin-top: 16px !important; }
.loja__link { display: inline-flex; align-items: center; min-height: 44px; font-family: var(--f-display); font-weight: 600; color: var(--azul); text-decoration: none; }
.loja__cities { font-size: .94rem; }
.loja__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }

.map-lazy { position: relative; aspect-ratio: 4/3; border-radius: var(--raio); background: var(--azul-claro) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" fill="%230B5FBF" opacity="0.25"><circle cx="30" cy="24" r="10"/></svg>') center/60px no-repeat; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 1px dashed var(--azul); }
.map-lazy__label { background: #fff; padding: 10px 16px; border-radius: 999px; font-family: var(--f-display); font-weight: 600; color: var(--azul); box-shadow: var(--sombra); }
.map-lazy iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: var(--raio); }

/* =================================================================
   S10 · CHAMADA FINAL
   ================================================================= */
.final { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--azul) 0%, var(--azul-escuro) 100%); color: #fff; padding: 60px 0 96px; }
.final__inner { position: relative; z-index: 1; text-align: center; max-width: 640px; }

/* Bolhas subindo (decorativas) */
.final__bubbles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.final__bubbles span { position: absolute; bottom: -20px; width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.5), rgba(255,255,255,.06)); opacity: 0; }
.final__bubbles span:nth-child(1) { left: 8%;  width: 10px; height: 10px; }
.final__bubbles span:nth-child(2) { left: 22%; width: 18px; height: 18px; }
.final__bubbles span:nth-child(3) { left: 38%; width: 8px;  height: 8px; }
.final__bubbles span:nth-child(4) { left: 55%; width: 22px; height: 22px; }
.final__bubbles span:nth-child(5) { left: 70%; width: 12px; height: 12px; }
.final__bubbles span:nth-child(6) { left: 84%; width: 16px; height: 16px; }
.final__bubbles span:nth-child(7) { left: 93%; width: 9px;  height: 9px; }
.final__title { font-size: 1.9rem; font-weight: 700; color: #fff; }
.final__text { margin-top: 16px; font-size: 1.08rem; color: rgba(255,255,255,.92); }
.final__reinforce { margin-top: 16px; font-size: .9rem; color: rgba(255,255,255,.75); }
.final .btn--wa { margin-top: 26px; }
.final__or { margin-top: 20px; font-size: .9rem; color: rgba(255,255,255,.7); }

/* Formulário */
.form { margin-top: 18px; background: var(--branco); border-radius: var(--raio); padding: 22px; text-align: left; box-shadow: var(--sombra-2); }
.form__row { display: flex; flex-direction: column; margin-bottom: 14px; }
.form__row label { font-family: var(--f-display); font-weight: 500; font-size: .9rem; color: var(--tinta); margin-bottom: 6px; }
.form input, .form select {
  min-height: var(--toque); padding: 12px 14px; font-size: 16px; font-family: var(--f-texto);
  border: 1.5px solid var(--linha); border-radius: var(--raio-sm); color: var(--tinta); background: #fff;
}
.form input:focus, .form select:focus { border-color: var(--azul); outline: none; }
.form .is-invalid { border-color: #E0393E; background: #FFF5F5; }
.form__err { color: #C0292E; font-size: .82rem; margin-top: 5px; min-height: 1em; }
.form__submit { width: 100%; margin-top: 6px; }
.form__ok { margin-top: 14px; padding: 14px; background: #E9F9EF; color: #0F7A3D; border-radius: var(--raio-sm); font-weight: 500; text-align: center; }

/* =================================================================
   RODAPÉ
   ================================================================= */
.footer { background: #0A1B2E; color: rgba(255,255,255,.75); padding: 34px 0 92px; font-size: .9rem; }
.footer__inner { display: grid; gap: 8px; text-align: center; }
.footer__brand { font-family: var(--f-display); font-weight: 600; color: #fff; }
.footer a { color: #9EC5F0; text-decoration: none; }
.footer__products { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer__legal { font-size: .82rem; margin-top: 6px; }

/* =================================================================
   BARRA FIXA DE WHATSAPP (mobile)
   ================================================================= */
.wa-widget {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: var(--wa); color: #fff;
  border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform 0.3s ease, background 0.3s ease;
}
.wa-widget svg { width: 30px; height: 30px; display: block; }
.wa-widget:hover { transform: scale(1.08); background: var(--wa-escuro); }
.wa-widget:active { transform: scale(0.95); }
/* Pulso sutil (anel) — some com prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .wa-widget { animation: waRing 2.8s ease-in-out infinite; }
  @keyframes waRing {
    0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.45); }
    50%      { box-shadow: 0 6px 20px rgba(0,0,0,.28), 0 0 0 12px rgba(37,211,102,0); }
  }
}

/* =================================================================
   CONSENTIMENTO LGPD
   ================================================================= */
.consent {
  position: fixed; left: 12px; right: 12px; bottom: 74px; z-index: 70;
  background: #fff; border: 1px solid var(--linha); border-radius: var(--raio); padding: 16px;
  box-shadow: var(--sombra-2); font-size: .88rem; color: var(--tinta-2);
}
.consent p { margin-bottom: 12px; }
.consent a { color: var(--azul); }
.consent__btns { display: flex; gap: 10px; justify-content: flex-end; }

/* =================================================================
   RESPONSIVO — tablet / desktop
   ================================================================= */
@media (min-width: 720px) {
  .section__title { font-size: 2rem; }
  .ba { aspect-ratio: 16/9; }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .goals { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .timeline { grid-template-columns: repeat(5, 1fr); }
  .timeline__step { padding: 56px 16px 18px; text-align: center; }
  .timeline__num { left: 50%; transform: translateX(-50%); }
  .diff-list { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .loja { grid-template-columns: 1fr 1fr; align-items: start; }
  .loja__photos { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .loja__cta { flex-direction: row; }
  .final__title { font-size: 2.4rem; }

  /* Barra fixa vira flutuante centralizada no desktop */
  /* O widget já é fixo na direita no mobile, mantemos igual no desktop */
  .consent { left: auto; right: 20px; bottom: 90px; max-width: 420px; }
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .hero { min-height: 86vh; align-items: center; }
  /* No desktop o overlay puxa para a esquerda, deixando a cena respirar à direita */
  .hero__overlay { background: linear-gradient(to right, rgba(6,34,72,.92) 0%, rgba(6,34,72,.6) 42%, rgba(8,40,90,.18) 78%, transparent 100%); }
  .hero__content { padding-top: 40px; padding-bottom: 40px; }
  .hero h1 { font-size: clamp(2.6rem, 4.6vw, 3.6rem); }
  .hero__cta { flex-direction: row; }
  .goals { grid-template-columns: repeat(5, 1fr); }
  .goals a { flex-direction: column; text-align: center; align-items: center; }
  .section { padding: 72px 0; }
}

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
