/* ============================================================================
   PRICEPOINT — Design System  (styles.css)
   ----------------------------------------------------------------------------
   "Uber da pesquisa de precos". Visual: clean, premium, muito respiro,
   cards brancos com sombra suave, azul vibrante nos CTAs, gradientes da marca.
   Mobile-first. Acessivel (contraste AA, foco visivel).

   ORDEM DO ARQUIVO
   01. Fonts
   02. Tokens (CSS custom properties)
   03. Reset & base
   04. Tipografia responsiva
   05. Layout (container, section, grids)
   06. Utilitarios (eyebrow, lead, center, muted, pill, badge, sr-only...)
   07. Botoes (.btn + variantes)
   08. Cards (.card, .card__icon, variantes)
   09. Navbar (CANONICA — copie do _kit.html)
   10. Hero + phone mock
   11. Steps (como funciona)
   12. Audience cards
   13. Stats
   14. Store badges
   15. FAQ accordion
   16. CTA band
   17. Footer (CANONICO — copie do _kit.html)
   18. Animacoes de entrada (reveal)
   19. Acessibilidade / motion / responsivo final
   ========================================================================== */

/* ===== 01. FONTS ========================================================== */
@import url('fonts/albert-sans.css');

/* ===== 02. TOKENS ========================================================= */
:root {
  /* -- Marca ------------------------------------------------------------- */
  --primary:        #001EBA;   /* azul profundo — splash, icone, marca         */
  --primary-deep:   #00148C;   /* hover/escuro do primary                      */
  --action:         #0B42FF;   /* azul vibrante — CTAs, links, destaques       */
  --action-hover:   #0935D6;   /* hover do action                              */
  --action-active:  #082CB0;   /* pressed                                      */
  --gold:           #E8B007;   /* "oferta exclusiva" (estrela dourada do app)  */
  --gold-soft:      #FBF3D6;

  /* -- Tints de acao (fundos suaves, como pills/icones do app) ----------- */
  --action-50:      #EEF2FF;
  --action-100:     #E1E9FF;
  --action-200:     #C9D6FF;

  /* -- Neutros claros ---------------------------------------------------- */
  --bg:             #F4F6FB;   /* fundo de pagina / secao --soft               */
  --surface:        #FFFFFF;   /* cards, navbar                                */
  --surface-2:      #FBFCFE;   /* card sutil alternativo                       */
  --ink:            #0C1324;   /* texto principal (quase-preto navy)           */
  --ink-soft:       #3A4660;   /* texto secundario                             */
  --muted:          #5B6678;   /* texto auxiliar (AA em branco)                */
  --line:           #E6EAF3;   /* bordas / divisores                           */
  --line-strong:    #D5DCEA;

  /* -- Navy (modo escuro / secoes dark) ---------------------------------- */
  --navy:           #0A1124;   /* fundo escuro                                 */
  --navy-2:         #0E1730;   /* fundo escuro alternativo                     */
  --navy-surface:   #131D3A;   /* cards sobre navy                             */
  --navy-line:      rgba(255,255,255,.10);
  --on-dark:        #EAEEF8;   /* texto sobre fundo escuro/azul                */
  --on-dark-soft:   #A9B4CE;   /* texto secundario sobre escuro                */

  /* -- Gradientes -------------------------------------------------------- */
  --grad-brand:  linear-gradient(135deg, #001EBA 0%, #0B42FF 100%);
  --grad-brand-soft: linear-gradient(135deg, #0B42FF 0%, #3D6BFF 100%);
  --grad-hero:   radial-gradient(120% 120% at 85% -10%, #E6ECFF 0%, rgba(244,246,251,0) 55%),
                 radial-gradient(90% 90% at -10% 110%, #EAF0FF 0%, rgba(244,246,251,0) 50%);
  --grad-mesh:   radial-gradient(80% 120% at 0% 0%, #0B42FF 0%, rgba(11,66,255,0) 55%),
                 radial-gradient(90% 120% at 100% 0%, #2E5BFF 0%, rgba(46,91,255,0) 50%),
                 linear-gradient(135deg, #001EBA 0%, #00148C 100%);

  /* -- Raios ------------------------------------------------------------- */
  --r-xs:  8px;
  --r-sm:  12px;
  --r:     16px;   /* padrao dos cards (espelha o app ~16px)                  */
  --r-lg:  22px;
  --r-xl:  28px;
  --r-pill: 999px;

  /* -- Sombras (suaves, como o app) -------------------------------------- */
  --shadow-xs: 0 1px 2px rgba(12,19,36,.06);
  --shadow-sm: 0 2px 4px rgba(12,19,36,.05), 0 1px 2px rgba(12,19,36,.04);
  --shadow:    0 10px 30px -12px rgba(12,19,36,.18), 0 4px 10px -6px rgba(12,19,36,.08);
  --shadow-lg: 0 30px 70px -28px rgba(0,30,186,.32), 0 10px 24px -14px rgba(12,19,36,.18);
  --shadow-action: 0 12px 26px -10px rgba(11,66,255,.55);

  /* -- Layout ------------------------------------------------------------ */
  --container:   1160px;
  --container-narrow: 760px;   /* paginas de texto (privacidade/termos)        */
  --gutter:      clamp(20px, 5vw, 32px);
  --nav-h:       70px;
  --section-y:   clamp(56px, 8vw, 112px);

  /* -- Tipografia -------------------------------------------------------- */
  --font: 'Albert Sans', system-ui, -apple-system, 'Segoe UI', Roboto,
          Helvetica, Arial, sans-serif;

  /* -- Transicoes -------------------------------------------------------- */
  --t-fast: 120ms cubic-bezier(.4,0,.2,1);
  --t:      200ms cubic-bezier(.4,0,.2,1);
  --t-slow: 420ms cubic-bezier(.16,1,.3,1);

  --focus: 0 0 0 3px #fff, 0 0 0 5px var(--action);

  color-scheme: light;
}

/* ===== 03. RESET & BASE =================================================== */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px); /* ancoras nao escondem sob navbar */
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, canvas, picture { display: block; max-width: 100%; height: auto; }

a { color: var(--action); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--action-hover); }

ul, ol { list-style: none; padding: 0; }

button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }

strong, b { font-weight: 700; }

::selection { background: var(--action); color: #fff; }

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: var(--r-xs);
}

hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
  background: var(--action-50);
  color: var(--primary-deep);
  padding: .12em .4em;
  border-radius: 6px;
}

/* ===== 04. TIPOGRAFIA RESPONSIVA ========================================== */
h1, h2, h3, h4 {
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.35rem + 3.4vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.7rem); }
h3 { font-size: clamp(1.18rem, 1.05rem + .55vw, 1.45rem); line-height: 1.25; letter-spacing: -.01em; }
h4 { font-size: 1rem; line-height: 1.3; letter-spacing: 0; }

p { color: var(--ink-soft); }
p + p { margin-top: 1em; }

/* ===== 05. LAYOUT ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--soft     { background: var(--bg); }
.section--tint     { background: var(--action-50); }
.section--white    { background: var(--surface); }
.section--blue     { background: var(--primary); }
.section--dark     { background: var(--navy); }
.section--gradient { background: var(--grad-mesh); }

/* Tratamento de texto para secoes de fundo escuro/azul */
.section--blue,
.section--dark,
.section--gradient { color: var(--on-dark); }
.section--blue  h1, .section--blue  h2, .section--blue  h3, .section--blue  h4,
.section--dark  h1, .section--dark  h2, .section--dark  h3, .section--dark  h4,
.section--gradient h1, .section--gradient h2, .section--gradient h3, .section--gradient h4 { color: #fff; }
.section--blue  p, .section--dark  p, .section--gradient p { color: var(--on-dark-soft); }
.section--blue  a:not(.btn):not(.store-badge),
.section--dark  a:not(.btn):not(.store-badge),
.section--gradient a:not(.btn):not(.store-badge) { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Cabecalho de secao */
.section__head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head.center { text-align: center; }
.section__head > * + * { margin-top: 14px; }

/* Grids */
.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ===== 06. UTILITARIOS ==================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--action);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.section--blue .eyebrow,
.section--dark .eyebrow,
.section--gradient .eyebrow { color: #9FB6FF; }

.lead {
  font-size: clamp(1.05rem, 1rem + .45vw, 1.28rem);
  line-height: 1.6;
  color: var(--muted);
}
.section--blue .lead,
.section--dark .lead,
.section--gradient .lead { color: var(--on-dark-soft); }

.center  { text-align: center; }
.muted   { color: var(--muted); }
.text-sm { font-size: .9rem; }
.text-xs { font-size: .8rem; }
.mt-0 { margin-top: 0; }
.measure { max-width: 60ch; }
.center.measure { margin-inline: auto; }

.stack > * + * { margin-top: 1rem; }
.stack--lg > * + * { margin-top: 1.5rem; }

/* Pill / badge */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  font-size: .8rem; font-weight: 600;
  border-radius: var(--r-pill);
  background: var(--action-50);
  color: var(--action);
  border: 1px solid var(--action-100);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--action); }
.pill--gold { background: var(--gold-soft); color: #8A6A00; border-color: #F0E2A8; }

.badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 7px;
  font-size: .78rem; font-weight: 700; color: #fff;
  background: var(--action); border-radius: var(--r-pill);
}

/* Placeholder (conteudo a preencher pelos builders) — sutil e discreto */
.ph {
  color: #8a93a6; font-style: italic;
  background: none; box-shadow: none;
  border-bottom: 1px dotted #cdd3df; border-radius: 0; padding: 0;
}

/* sr-only / skip link */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  background: var(--action); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); font-weight: 600;
  transform: translateY(-150%); transition: transform var(--t);
}
.skip-link:focus { transform: translateY(0); color: #fff; }

/* ===== 07. BOTOES ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px;
  font-size: .98rem; font-weight: 600; line-height: 1;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), background var(--t), box-shadow var(--t), border-color var(--t), color var(--t);
  white-space: nowrap; cursor: pointer; user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* primario — azul vibrante de acao */
.btn--primary {
  background: var(--action); color: #fff;
  box-shadow: var(--shadow-action);
}
.btn--primary:hover { background: var(--action-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(11,66,255,.6); }
.btn--primary:active { background: var(--action-active); transform: translateY(0); }

/* outline — sobre fundo claro */
.btn--outline {
  background: transparent; color: var(--action);
  border-color: var(--action-200);
}
.btn--outline:hover { background: var(--action-50); color: var(--action-hover); border-color: var(--action); }

/* ghost — texto, sem caixa */
.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: transparent;
}
.btn--ghost:hover { background: var(--action-50); color: var(--action); }

/* ghost-light — sobre fundos escuros/azuis */
.btn--ghost-light {
  background: rgba(255,255,255,.10); color: #fff;
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-2px); }

/* branco solido (CTA sobre fundo escuro) */
.btn--white { background: #fff; color: var(--primary); }
.btn--white:hover { background: #fff; color: var(--action-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* tamanhos / modificadores */
.btn--lg    { padding: 16px 30px; font-size: 1.06rem; border-radius: var(--r-pill); }
.btn--sm    { padding: 9px 16px; font-size: .88rem; }
.btn--block { display: flex; width: 100%; }

.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }

/* link com seta */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 600;
}
.link-arrow svg { width: 1em; height: 1em; transition: transform var(--t); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ===== 08. CARDS ========================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card > * + * { margin-top: 12px; }
.card--hover:hover,
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }

.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--action-50); color: var(--action);
  font-size: 1.5rem; margin-bottom: 6px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 2px; }
.card p { color: var(--muted); font-size: .98rem; }

/* card destaque (nod a "oferta exclusiva" dourada do app) */
.card--exclusive { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-sm); }
.card--exclusive .card__icon { background: var(--gold-soft); color: #B8890A; }

/* cards sobre fundo escuro */
.section--dark .card,
.section--blue .card.card--ondark {
  background: var(--navy-surface); border-color: var(--navy-line); box-shadow: none; color: var(--on-dark);
}
.section--dark .card h3 { color: #fff; }
.section--dark .card p  { color: var(--on-dark-soft); }
.section--dark .card__icon { background: rgba(11,66,255,.18); color: #9FB6FF; }

/* ===== 09. NAVBAR (CANONICA) ============================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t), background var(--t);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(12,19,36,.3);
}
.nav__inner {
  display: flex; align-items: center; gap: 18px;
  height: var(--nav-h);
}
.nav__logo { display: inline-flex; align-items: center; flex: none; }
.nav__logo img { height: 30px; width: auto; }

.nav__links {
  display: none;       /* mobile-first: escondido, abre no toggle */
  gap: 4px;
}
.nav__links a {
  display: inline-block; padding: 9px 14px; border-radius: var(--r-sm);
  color: var(--ink-soft); font-weight: 600; font-size: .97rem;
}
.nav__links a:hover { color: var(--action); background: var(--action-50); }
.nav__links a[aria-current="page"] { color: var(--action); }

.nav__cta { display: none; gap: 10px; margin-left: auto; align-items: center; }

.nav__toggle {
  margin-left: auto;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  border: 1px solid var(--line);
}
.nav__toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; margin-inline: auto; transition: transform var(--t), opacity var(--t); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* painel mobile */
.nav__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-slow);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.nav.is-open .nav__panel { grid-template-rows: 1fr; }
.nav__panel-inner { overflow: hidden; }
.nav.is-open .nav__panel-inner { box-shadow: var(--shadow); }
.nav__panel .container { padding-block: 14px 22px; display: grid; gap: 6px; }
.nav__panel a:not(.btn) {
  padding: 12px 8px; border-radius: var(--r-sm);
  color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line);
}
.nav__panel a:not(.btn):hover { color: var(--action); }
.nav__panel .nav__panel-cta { display: grid; gap: 10px; margin-top: 12px; }

@media (min-width: 920px) {
  .nav__links { display: flex; margin-left: 8px; }
  .nav__cta   { display: flex; }
  .nav__toggle { display: none; }
  .nav__panel  { display: none; }
}

/* ===== 10. HERO =========================================================== */
.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 92px);
  background: var(--grad-hero), var(--bg);
  overflow: hidden;
}
.hero__grid {
  display: grid; gap: clamp(36px, 5vw, 56px);
  align-items: center;
}
.hero h1 { margin-top: 16px; }
.hero h1 span { color: var(--action); }    /* palavra destacada */
.hero .lead { margin-top: 20px; max-width: 56ch; }
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px;
}
.hero__trust > * {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; color: var(--ink-soft);
}
.hero__trust svg { width: 18px; height: 18px; color: var(--action); flex: none; }
.hero__art { justify-self: center; }

@media (min-width: 920px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .hero__actions .btn { min-width: 190px; }
}

/* Phone mock — moldura p/ os screenshots reais do app */
.phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 9 / 19.5;
  margin-inline: auto;
  padding: 10px;
  border-radius: 44px;
  background: linear-gradient(160deg, #1a2138, #0a1124);
  box-shadow: var(--shadow-lg);
}
.phone::before {     /* notch */
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 42%; height: 22px; background: #0a1124; border-radius: var(--r-pill); z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: var(--surface); object-fit: cover;
}
.phone--float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* duo de telas (claro + escuro) */
.phone-duo { position: relative; display: grid; place-items: center; min-height: 520px; }
.phone-duo .phone:first-child { transform: rotate(-5deg) translateX(-12%); z-index: 1; }
.phone-duo .phone:last-child  { transform: rotate(5deg) translateX(12%); position: absolute; }

/* ===== 11. STEPS (como funciona) ========================================= */
.steps { display: grid; gap: clamp(20px, 3vw, 32px); grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 8px; }
.step__num {
  counter-increment: step;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-brand); color: #fff;
  font-weight: 800; font-size: 1.25rem; margin-bottom: 18px;
  box-shadow: var(--shadow-action);
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); }

/* ===== 12. AUDIENCE CARDS ================================================= */
.audience { display: grid; gap: clamp(20px, 3vw, 28px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .audience { grid-template-columns: repeat(2, 1fr); } }

.audience__card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column; gap: 14px;
}
.audience__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.audience__card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; }
.audience__card--biz::before { background: var(--grad-brand); }
.audience__card--res::before { background: linear-gradient(135deg, #0B42FF, #00C2FF); }
.audience__card h3 { font-size: 1.5rem; }
.audience__card > p { color: var(--muted); }
.audience__card ul { display: grid; gap: 10px; margin: 4px 0 8px; }
.audience__card li {
  position: relative; padding-left: 30px; color: var(--ink-soft); font-weight: 500;
}
.audience__card li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--action-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B42FF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.audience__card .btn { margin-top: auto; align-self: flex-start; }

/* ===== 13. STATS ========================================================== */
.stats {
  display: grid; gap: clamp(20px, 3vw, 32px);
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat__num {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1;
  color: #fff;
}
.section--soft .stat__num,
.section--white .stat__num,
.section--tint .stat__num { color: var(--primary); }
.stat__label { margin-top: 8px; font-size: .95rem; color: var(--on-dark-soft); }
.section--soft .stat__label,
.section--white .stat__label,
.section--tint .stat__label { color: var(--muted); }

/* ===== 14. STORE BADGES =================================================== */
.store-badges { display: flex; flex-wrap: wrap; gap: 14px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px; min-width: 200px;
  background: var(--ink); color: #fff; border-radius: 14px;
  border: 1px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.store-badge:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.store-badge__icon { font-size: 1.7rem; line-height: 1; flex: none; }
.store-badge__icon svg { width: 26px; height: 26px; }
.store-badge span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge small { font-size: .72rem; opacity: .8; font-weight: 500; }
.store-badge strong { font-size: 1.06rem; font-weight: 700; }
/* variante clara, p/ usar sobre fundo escuro/azul */
.store-badge--light { background: #fff; color: var(--ink); }
.store-badge--light:hover { color: var(--ink); }

/* ===== 15. FAQ ACCORDION ================================================== */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow-xs);
  overflow: hidden; transition: border-color var(--t), box-shadow var(--t);
}
.faq__item.is-open { border-color: var(--action-200); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left;
  padding: 18px 20px; font-size: 1.04rem; font-weight: 600; color: var(--ink);
}
.faq__q:hover { color: var(--action); }
.faq__icon { flex: none; width: 22px; height: 22px; position: relative; transition: transform var(--t); color: var(--action); }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 2.5px; background: currentColor; border-radius: 2px; transform: translateY(-50%);
}
.faq__icon::after { transform: translateY(-50%) rotate(90deg); transition: transform var(--t); }
.faq__item.is-open .faq__icon::after { transform: translateY(-50%) rotate(0); }
/* corpo: animacao de altura com grid 0fr -> 1fr */
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-slow); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p { padding: 0 20px 20px; color: var(--muted); margin: 0; }

/* ===== 16. CTA BAND ======================================================= */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--grad-mesh); color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 56ch; margin-inline: auto; margin-top: 12px; }
.cta-band .hero__actions { justify-content: center; }

/* ===== 17. FOOTER (CANONICO) ============================================== */
.footer {
  background: var(--navy); color: var(--on-dark-soft);
  padding-top: clamp(48px, 7vw, 80px);
}
.footer__grid {
  display: grid; gap: 40px 32px;
  grid-template-columns: 1fr;
  padding-bottom: 44px;
}
@media (min-width: 640px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer__brand { max-width: 360px; }
.footer__brand img { height: 30px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--on-dark-soft); font-size: .95rem; }
.footer .company-line { font-size: .85rem; line-height: 1.7; color: #8794B2; margin-top: 18px; }

.footer h4 { color: #fff; margin-bottom: 16px; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: var(--on-dark-soft); font-size: .95rem; }
.footer__links a:hover { color: #fff; }

.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); color: var(--on-dark);
  border: 1px solid var(--navy-line); transition: background var(--t), color var(--t), transform var(--t);
}
.footer__social a:hover { background: var(--action); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__legal {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  padding-block: 24px; margin-top: 4px;
  border-top: 1px solid var(--navy-line);
  font-size: .85rem; color: #8794B2;
}
.footer__legal a { color: #8794B2; }
.footer__legal a:hover { color: #fff; }

/* ===== 18. ANIMACOES DE ENTRADA (reveal) ================================== */
/* Hidden somente quando JS esta ativo (html.js) — sem JS, conteudo aparece. */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--t-slow), transform var(--t-slow); will-change: opacity, transform; }
html.js .reveal.is-visible { opacity: 1; transform: none; }
/* stagger opcional: data-delay via inline style --d, ou classes */
html.js .reveal[style*="--d"] { transition-delay: var(--d); }
.reveal--2 { transition-delay: 80ms; }
.reveal--3 { transition-delay: 160ms; }
.reveal--4 { transition-delay: 240ms; }

/* ===== 19. ACESSIBILIDADE / MOTION / RESPONSIVO =========================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .phone--float { animation: none; }
}

/* ===== MODO ESCURO opcional (respeita preferencia do SO) ================== */
/* Habilite adicionando class="theme-dark" no <html>. Mantemos light como padrao
   p/ o site institucional; o navy fica nas secoes --dark/--blue/--gradient. */
.theme-dark {
  --bg: var(--navy);
  --surface: var(--navy-surface);
  --surface-2: var(--navy-2);
  --ink: #F2F5FC;
  --ink-soft: #C2CBE0;
  --muted: var(--on-dark-soft);
  --line: var(--navy-line);
  --line-strong: rgba(255,255,255,.16);
  color-scheme: dark;
}
