/* ═══════════════════════════════════════════════════════════════════════════
   YOU INDICA — Landing Page
   Design system copiado dos computed styles de yourh.com.br em produção:

     container ....... 1140px
     fundo base ...... #F6F1EC (creme)   seções brancas .... #FFFFFF
     seções cor ...... verde #61DD75 · laranja #FB8357 · roxo #550F9C
     texto ........... corpo #4C4C51 · títulos #0C0C0E
     display ......... owners 500 · 42px (lh 1.1) e 28px
     corpo ........... Plus Jakarta Sans 400 · 17–19px (lh ~1.35)
     números ......... Plus Jakarta Sans 700 · 64px · verde #61DD75
     botões .......... radius 30px · Plus Jakarta Sans 600 · 18px
     raio de card .... 15px (imagens/cards) · 20px · 30px
     padding seção ... 90px
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Fonte display oficial ─────────────────────────────────────────────────
   O site usa "owners" (Lineto, licenciada). Não está no Google Fonts.
   Ao publicar, hospede os arquivos e descomente — o stack já a usa primeiro
   e cai em Outfit se ela não existir.

@font-face {
  font-family: 'owners';
  src: url('../fonts/owners-medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'owners';
  src: url('../fonts/owners-bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
──────────────────────────────────────────────────────────────────────────── */

/* ══════════════════════════ 1 · TOKENS ══════════════════════════ */
:root {
  /* Superfícies — as mesmas do site */
  --cream:      #F6F1EC;
  --white:      #FFFFFF;
  --cream-deep: #EFE7DE;

  /* Marca */
  --purple:      #6212B3;
  --purple-deep: #550F9C;
  --purple-dark: #3D0B71;
  --lavender:    #BA82FF;
  --green:       #61DD75;
  --green-vivid: #00DF6E;
  --green-deep:  #2E8B48;
  --orange:      #FB8357;
  --amber:       #EAA53F;

  /* Texto */
  --ink:      #0C0C0E;   /* títulos          19:1 sobre creme */
  --body:     #4C4C51;   /* corpo             7,5:1 sobre creme */
  --muted:    #6E6E75;   /* apoio             5,1:1 sobre creme */
  --on-dark:      #FFFFFF;
  --on-dark-soft: #E4D7F5;   /* 8,5:1 sobre roxo #550F9C */
  --on-dark-mute: #C3ADE3;   /* 5,4:1 sobre roxo #550F9C */

  /* Linhas */
  --line:        #E2D8CD;
  --line-strong: #CFC2B4;
  --line-dark:   rgba(255, 255, 255, .22);

  /* Tipografia */
  --font-display: 'owners', 'Outfit', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Escala — teto igual ao do site (42px h2 / 28px h3 / 64px número) */
  --fs-h1:   clamp(2.125rem, 1.45rem + 2.9vw, 3.25rem);   /* 34 → 52 */
  --fs-h2:   clamp(1.75rem, 1.28rem + 2vw, 2.625rem);     /* 28 → 42 */
  --fs-h3:   clamp(1.3125rem, 1.15rem + .7vw, 1.75rem);   /* 21 → 28 */
  --fs-num:  clamp(2.5rem, 1.55rem + 4vw, 4rem);          /* 40 → 64 */
  --fs-lead: clamp(1.0625rem, 1rem + .35vw, 1.1875rem);   /* 17 → 19 */
  --fs-body: 1.125rem;                                     /* 18 */
  --fs-sm:   1rem;                                         /* 16 */
  --fs-xs:   .9375rem;                                     /* 15 — o menor corpo do site */
  --fs-2xs:  .8125rem;                                     /* 13 — só rótulos, nunca texto corrido */

  /* Medida de linha. Em rem, não em ch: o glifo "0" desta fonte é largo
     (0,73em), então 58ch renderizavam 80 caracteres reais — quase o dobro
     do confortável. Estes valores foram medidos no navegador. */
  --measure:       40rem;   /* 640px ≈ 64 caracteres a 19px */
  --measure-tight: 34rem;   /* 544px ≈ 64 caracteres a 16px */

  /* Espaço */
  --sp-1: .5rem;  --sp-2: .75rem; --sp-3: 1rem;   --sp-4: 1.5rem;
  --sp-5: 2rem;   --sp-6: 3rem;   --sp-7: 4rem;
  --section-y: clamp(3.5rem, 2rem + 5vw, 5.625rem);   /* teto 90px, igual ao site */

  /* Raios do site */
  --r-btn:  30px;
  --r-card: 20px;
  --r-img:  15px;
  --r-in:   12px;

  /* Motion — curvas fortes; as nativas do CSS são fracas demais */
  --ease-out:    cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --d-press:  140ms;
  --d-micro:  200ms;
  --d-ui:     280ms;
  --d-reveal: 620ms;

  --shadow-sm: 0 2px 10px -4px rgba(12, 12, 14, .12);
  --shadow-md: 0 14px 34px -18px rgba(12, 12, 14, .22);
  --shadow-lg: 0 30px 64px -28px rgba(61, 11, 113, .38);
}

/* ══════════════════════════ 2 · RESET ══════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html:focus-within { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.45;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
/* <picture> é inline por padrão e introduz espaço de linha-base dentro dos
   containers de imagem. Como wrapper, ele deve ser transparente ao layout. */
picture { display: block; width: 100%; height: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--purple); text-decoration-thickness: 1px; text-underline-offset: 3px; }
ul, ol { list-style: none; padding: 0; }

:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 4px; }
.band--purple :focus-visible, .formcard :focus-visible { outline-color: var(--green); }

.skip-link {
  position: absolute; left: var(--sp-3); top: -100px; z-index: 999;
  background: var(--purple-deep); color: #fff;
  padding: .75rem 1.25rem; border-radius: var(--r-btn);
  font-weight: 600; text-decoration: none;
  transition: top var(--d-micro) var(--ease-out);
}
.skip-link:focus { top: var(--sp-3); }

.ico {
  width: 20px; height: 20px; flex: 0 0 auto;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico--ok { width: 19px; height: 19px; color: var(--green-deep); }
.ico--flip { transform: rotate(180deg); }

/* ══════════════════════════ 3 · LAYOUT ══════════════════════════ */
.wrap {
  width: 100%; max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(1.125rem, .5rem + 2.2vw, 1.5rem);
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); position: relative; }
.section--white { background: var(--white); }

/* Seções coloridas full-bleed — o site usa exatamente este recurso */
.band { padding-block: var(--section-y); position: relative; }
.band--purple { background: var(--purple-deep); color: var(--on-dark-soft); }
.band--green  { background: var(--green); color: var(--ink); }

.section__head { max-width: 44rem; margin-bottom: var(--sp-6); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head .lead { margin-top: var(--sp-3); }

/* ─── Títulos: owners 500, line-height 1.1 (igual ao site) ─── */
.h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink);
  text-wrap: balance;
}
.h1 { font-size: var(--fs-h1); letter-spacing: -.022em; margin-bottom: var(--sp-3); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); }

.band--purple .h1, .band--purple .h2, .band--purple .h3 { color: var(--on-dark); }

/* Destaque nos títulos: roxo sobre claro, verde sobre roxo */
.h1 em, .h2 em, .h3 em { font-style: normal; color: var(--purple); }
.band--purple .h2 em, .band--purple .h1 em { color: var(--green); }

.lead { font-size: var(--fs-lead); color: var(--body); max-width: var(--measure); }
.section__head--center .lead { margin-inline: auto; }
.lead strong { color: var(--ink); font-weight: 600; }
.band--purple .lead { color: var(--on-dark-soft); }
.band--purple .lead strong { color: var(--on-dark); }

/* Rótulo de seção. Sem bolinha, sem pulso, sem caixa-alta espaçada:
   é uma linha de texto normal, do jeito que a comunicação de RH escreve. */
.kicker {
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--purple);
  margin-bottom: .5rem;
}
.band--purple .kicker { color: var(--green); }
.band--green .kicker  { color: #1B4A28; }

/* Lista de checks reaproveitada em vários blocos */
.checklist { display: grid; gap: .65rem; }
.checklist li { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--fs-sm); }
.checklist strong { color: var(--ink); font-weight: 600; }

/* ══════════════════════════ 4 · BOTÕES ══════════════════════════ */
/* radius 30px · peso 600 · 18px · padding 13px 32px — medidos no site */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 13px 32px 15px;
  min-height: 50px;
  font-family: var(--font-body);
  font-size: 1.125rem; font-weight: 600; line-height: 1.2;
  text-decoration: none; white-space: nowrap;
  border: 0; border-radius: var(--r-btn);
  transition: transform var(--d-press) var(--ease-out),
              box-shadow var(--d-micro) var(--ease-out),
              background-color var(--d-micro) ease,
              border-color var(--d-micro) ease,
              color var(--d-micro) ease;
}
.btn .ico { transition: transform var(--d-micro) var(--ease-out); }

.btn--purple { background: var(--purple); color: #fff; box-shadow: var(--shadow-sm); }
.btn--green  { background: var(--green);  color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--outline-light {
  background: transparent; color: var(--on-dark);
  border: 1.5px solid var(--line-dark);
}
.btn--sm { padding: 10px 22px 11px; font-size: var(--fs-sm); min-height: 44px; }
.btn--lg { padding: 16px 38px 18px; font-size: 1.1875rem; min-height: 56px; }
.btn--block { width: 100%; }

@media (hover: hover) and (pointer: fine) {
  .btn--purple:hover { background: var(--purple-deep); box-shadow: var(--shadow-md); }
  .btn--green:hover  { background: var(--green-vivid); box-shadow: var(--shadow-md); }
  .btn--outline-light:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255,255,255,.5); }
  .btn:hover .ico { transform: translateX(3px); }
  .btn:hover .ico--flip { transform: rotate(180deg) translateX(3px); }
}
/* Press: feedback instantâneo, o detalhe que faz o botão parecer "ouvir" */
.btn:active { transform: scale(.97); }

.btn[disabled], .btn[aria-busy="true"] { opacity: .65; pointer-events: none; }
.btn__spinner { display: none; }
.btn[aria-busy="true"] .btn__label { opacity: .5; }
.btn[aria-busy="true"] .btn__spinner {
  display: block; width: 17px; height: 17px;
  border: 2px solid currentColor; border-top-color: transparent;
  border-radius: 50%; animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════ 5 · NAV ══════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 60;
  padding-block: var(--sp-3);
  background: var(--cream);
  transition: box-shadow var(--d-ui) ease, padding var(--d-ui) var(--ease-out),
              background-color var(--d-ui) ease;
}
.nav.is-stuck {
  padding-block: .5rem;
  background: rgba(246, 241, 236, .93);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav__inner { display: flex; align-items: center; gap: var(--sp-4); }
.nav__logo {
  flex: 0 0 auto; display: inline-flex; align-items: center;
  min-height: 44px; line-height: 0;
}
.nav__logo img { width: 128px; height: auto; }

.nav__links {
  display: none; gap: var(--sp-4); margin-inline-start: auto;
  font-size: var(--fs-sm); font-weight: 500;
}
.nav__links a {
  display: inline-flex; align-items: center; min-height: 44px;
  position: relative;
  color: var(--body); text-decoration: none;
  transition: color var(--d-micro) ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 10px;
  height: 2px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--d-ui) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .nav__links a:hover { color: var(--ink); }
  .nav__links a:hover::after { transform: scaleX(1); }
}
.nav__cta { margin-inline-start: auto; }
@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__cta { margin-inline-start: 0; }
}
@media (max-width: 480px) { .nav__cta { display: none; } }

/* ══════════════════════════ 6 · HERO ══════════════════════════ */
.hero { padding-block: clamp(1.5rem, 1rem + 2vw, 2.75rem) var(--section-y); }
.hero__grid { display: grid; gap: clamp(2rem, 1rem + 3.5vw, 3.5rem); align-items: start; }

/* Formulário na coluna direita, acima da dobra. No mobile a ordem do DOM
   garante que a proposta de valor venha antes dos campos. */
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr minmax(410px, 452px); }
  .hero__form { position: sticky; top: 84px; }
}

.hero__copy > .lead { margin-bottom: var(--sp-4); }

/* ─── Cartão de valor: o número é o herói ─── */
.payout {
  display: grid; gap: var(--sp-3);
  padding: var(--sp-4);
  border-radius: var(--r-card);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-4);
}
@media (min-width: 560px) {
  .payout { grid-template-columns: auto 1fr; align-items: center; gap: var(--sp-5); }
}
.payout__label {
  display: block; font-size: var(--fs-2xs); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
/* Plus Jakarta Sans 700 — o site usa a fonte de corpo nos números, não a display */
.payout__value {
  display: flex; align-items: baseline; gap: .08em;
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(2.5rem, 1.7rem + 3.2vw, 3.5rem);
  line-height: 1; letter-spacing: -.03em;
  color: var(--purple);
  margin-block: .15rem .25rem;
  font-variant-numeric: tabular-nums;
}
.payout__currency { font-size: .45em; font-weight: 600; }
.payout__unit { font-size: var(--fs-xs); color: var(--muted); }

.payout__facts { display: grid; gap: .5rem; font-size: var(--fs-xs); }
.payout__facts li { display: flex; align-items: center; gap: .45rem; }
.payout__facts strong { color: var(--ink); font-weight: 600; }
@media (min-width: 560px) {
  .payout__facts { border-inline-start: 1px solid var(--line); padding-inline-start: var(--sp-4); }
}

/* ══════════════════════════ 7 · FORMULÁRIO ══════════════════════════ */
/* Card ROXO #550F9C — a mesma cor da seção de formulário do site.
   Contraste branco/roxo = 10,8:1 (AAA). */
.hero__form { scroll-margin-top: 92px; }

.formcard {
  padding: clamp(1.25rem, .85rem + 1.4vw, 1.75rem);
  border-radius: var(--r-card);
  background:
    radial-gradient(120% 90% at 100% 0%, var(--purple) 0%, transparent 58%),
    var(--purple-deep);
  box-shadow: var(--shadow-lg);
  color: var(--on-dark-soft);
}

.formcard__head { margin-bottom: var(--sp-3); }
.formcard__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.75rem; line-height: 1; letter-spacing: -.02em;
  color: var(--on-dark);
}
.formcard__sub { font-size: var(--fs-xs); color: var(--on-dark-mute); margin-top: .3rem; }
.formcard__sub strong { color: var(--on-dark); font-weight: 700; }

/* ─── Trilha de etapas: nomeia as duas, sempre ───
   Os nomes nunca são escondidos — eles são o que comunica que existem duas
   etapas e o que vai em cada uma. Em tela estreita a trilha vira coluna
   em vez de perder texto. */
.track {
  display: flex; align-items: center; gap: .6rem;
  padding: .6rem .75rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, .18);
  margin-bottom: var(--sp-4);
}
.track__item {
  display: flex; align-items: center; gap: .45rem;
  font-size: var(--fs-2xs); font-weight: 600;
  color: var(--on-dark-mute);
  transition: color var(--d-ui) ease;
}
@media (max-width: 430px) {
  .track { flex-direction: column; align-items: stretch; gap: .35rem; }
  .track__item { gap: .5rem; }
  .track__line { display: none; }
}
.track__item.is-current, .track__item.is-done { color: var(--on-dark); }
.track__num {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 12px; font-weight: 700; line-height: 1;
  background: rgba(255, 255, 255, .16); color: var(--on-dark);
  transition: background-color var(--d-ui) ease, color var(--d-ui) ease,
              transform var(--d-ui) var(--ease-out);
}
.track__item.is-current .track__num,
.track__item.is-done .track__num {
  background: var(--green); color: var(--ink); transform: scale(1.08);
}
.track__label { white-space: nowrap; }
.track__line { flex: 1; height: 2px; background: rgba(255, 255, 255, .16); border-radius: 2px; }
.track__line span {
  display: block; height: 100%; width: var(--p, 0%);
  background: var(--green); border-radius: 2px;
  transition: width 420ms var(--ease-out);
}

/* ─── Etapas ─── */
.fstep { border: 0; padding: 0; margin: 0; min-inline-size: 0; }
.fstep[hidden] { display: none; }
.fstep.is-active { animation: step-in 360ms var(--ease-out) both; }
.fstep.is-active-back { animation: step-in-back 360ms var(--ease-out) both; }
@keyframes step-in      { from { opacity: 0; transform: translate3d(16px, 0, 0); } }
@keyframes step-in-back { from { opacity: 0; transform: translate3d(-16px, 0, 0); } }

.fstep__legend {
  display: block; width: 100%; padding: 0;
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--fs-sm); line-height: 1.3; color: var(--on-dark);
  margin-bottom: var(--sp-3);
}
.fstep__kicker {
  display: block; font-size: var(--fs-2xs); font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--green); margin-bottom: .2rem;
}
.fstep__actions { display: flex; gap: .6rem; margin-top: var(--sp-3); }
.fstep__actions .btn:last-child { flex: 1; }
.fstep > .btn { margin-top: var(--sp-3); }

/* ─── Campos ─── */
.field { margin-bottom: .875rem; }
.field-row { display: grid; gap: .875rem; }
@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field > label {
  display: block; font-size: var(--fs-2xs); font-weight: 600;
  color: var(--on-dark); margin-bottom: .3rem;
}
.field abbr { color: var(--green); text-decoration: none; margin-inline-start: 2px; }

.field input:not([type=checkbox]), .field select {
  width: 100%; min-height: 48px;
  padding: .7rem .9rem;
  font-size: var(--fs-sm);
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: var(--r-in);
  transition: border-color var(--d-micro) ease, box-shadow var(--d-micro) ease;
}
.field input::placeholder { color: #9A9AA1; }
.field input:hover, .field select:hover { border-color: rgba(97, 221, 117, .55); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(97, 221, 117, .3);
}
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234C4C51' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 18px;
  padding-inline-end: 2.6rem;
}
.field select:invalid { color: #9A9AA1; }

/* Telefone com bandeira BR, como no formulário atual */
.phonewrap { display: flex; align-items: stretch; background: var(--white); border-radius: var(--r-in); }
.phonewrap__flag {
  display: flex; align-items: center; padding-inline: .7rem .5rem;
  flex: 0 0 auto;
}
.phonewrap__flag svg { width: 24px; height: 17px; border-radius: 3px; }
.phonewrap input {
  border-radius: 0 var(--r-in) var(--r-in) 0 !important;
  padding-inline-start: .35rem !important;
}

.field__error {
  display: none;
  font-size: var(--fs-2xs); font-weight: 600; color: #FFC9B8;
  margin-top: .3rem;
}
.field.has-error .field__error { display: block; animation: shake 320ms var(--ease-out); }
.field.has-error input, .field.has-error select {
  border-color: #FF7A55;
  box-shadow: 0 0 0 4px rgba(255, 122, 85, .3);
}
.field.has-error .phonewrap { box-shadow: 0 0 0 1.5px #FF7A55; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ─── Aceite ─── */
.field--check { margin-top: var(--sp-3); margin-bottom: 0; }
.check {
  display: grid; grid-template-columns: auto 1fr; gap: .6rem;
  align-items: start; cursor: pointer; position: relative;
  font-size: var(--fs-2xs); line-height: 1.5; color: var(--on-dark-mute);
}
.check a { color: var(--green); font-weight: 600; }
.check__text strong { color: var(--on-dark); font-weight: 700; }
.check input { position: absolute; opacity: 0; width: 22px; height: 22px; margin: 0; }
.check__box {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 6px; margin-top: 1px;
  border: 1.5px solid rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .1);
  transition: background-color var(--d-micro) var(--ease-out),
              border-color var(--d-micro) ease,
              transform var(--d-press) var(--ease-out);
}
.check__box svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--purple-deep); stroke-width: 3.2;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: scale(.6);
  transition: opacity var(--d-micro) var(--ease-out), transform var(--d-micro) var(--ease-out);
}
.check input:checked ~ .check__box { background: var(--green); border-color: var(--green); }
.check input:checked ~ .check__box svg { opacity: 1; transform: scale(1); }
.check input:focus-visible ~ .check__box { outline: 2px solid var(--green); outline-offset: 3px; }
.check input:active ~ .check__box { transform: scale(.92); }
.field--check.has-error .check__box { border-color: #FF7A55; }

/* Honeypots do RD Station: fora da tela, nunca display:none */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.formcard__foot {
  font-size: var(--fs-2xs); color: var(--on-dark-mute);
  text-align: center; margin-top: var(--sp-3);
}

/* ─── Sucesso ─── */
.fdone { text-align: center; padding-block: var(--sp-3); }
.fdone__icon {
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  margin: 0 auto var(--sp-3);
  background: var(--green);
  animation: pop-in 480ms var(--ease-out) both;
}
.fdone__icon svg {
  width: 28px; height: 28px;
  fill: none; stroke: var(--purple-deep); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
}
@keyframes pop-in { from { opacity: 0; transform: scale(.9); } }
.fdone__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.5rem; color: var(--on-dark); margin-bottom: .5rem;
}
.fdone__text { font-size: var(--fs-xs); color: var(--on-dark-soft); max-width: 40ch; margin: 0 auto var(--sp-3); }

/* ══════════════════════════ 8 · NÚMEROS ══════════════════════════ */
.band__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -.015em;
  color: var(--on-dark); text-align: center; text-wrap: balance;
  margin-bottom: var(--sp-6);
}
.band__title em { font-style: normal; color: var(--green); }

/* Cada número ganha sua própria célula, separada por filete: os quatro
   deixam de flutuar soltos e passam a ler como um painel de indicadores. */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5) 0;
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat { text-align: center; padding-inline: var(--sp-3); position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 8%; bottom: 8%;
  width: 1px; background: rgba(255, 255, 255, .18);
}
@media (max-width: 899px) {
  .stat:nth-child(odd) + .stat::before { top: 4%; bottom: 4%; }
  .stat:nth-child(3)::before { display: none; }
}

/* Peso 800 e escala até 92px: o número é o argumento, precisa gritar.
   O site usa 700/64px; aqui a LP sobe um degrau porque estes quatro
   números SÃO a prova social da página. */
.stat__value {
  display: flex; align-items: baseline; justify-content: center;
  font-family: var(--font-body); font-weight: 800;
  font-size: clamp(3.25rem, 1.9rem + 5.4vw, 5.75rem);   /* 52 → 92px */
  line-height: .9; letter-spacing: -.05em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
/* Na mesma baseline do número, no mesmo tamanho dos sufixos "mil"/"mi":
   os quatro números passam a ter a mesma estrutura visual. */
.stat__pre {
  font-size: .38em; font-weight: 800; letter-spacing: -.01em;
  margin-inline-end: .03em;
}
.stat__suffix {
  font-size: .38em; font-weight: 800; letter-spacing: -.01em;
  margin-inline-start: .04em;
}
.stat__label {
  font-size: var(--fs-xs); font-weight: 500; line-height: 1.35;
  color: var(--on-dark-soft);
  margin-top: .75rem;
}

/* ══════════════════════════ 9 · CARDS ══════════════════════════ */
/* Três cards: 1 → 2 → 3 colunas. No passo de 2 colunas o terceiro card
   ocupa a linha inteira — órfão sozinho numa coluna fica torto. */
.cards { display: grid; gap: var(--sp-4); }
@media (min-width: 620px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards > :nth-child(3) { grid-column: span 2; }
}
@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards > :nth-child(3) { grid-column: auto; }
}

/* Blocos de cor sólida da marca, não caixas bege. É o mesmo recurso que o
   site usa nas faixas full-bleed dele, aplicado em escala de card. */
.card {
  padding: var(--sp-5) var(--sp-4);
  border-radius: var(--r-card);
  border: 0;
  transition: transform var(--d-ui) var(--ease-out), box-shadow var(--d-ui) ease;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
}

.card--green  { background: var(--green);       color: #143A1E; }
.card--purple { background: var(--purple-deep); color: var(--on-dark-soft); }
.card--orange { background: var(--orange);      color: #5C2410; }

.card--green  .card__title { color: #0B2A12; }
.card--purple .card__title { color: #fff; }
.card--orange .card__title { color: #47190A; }

/* Ícone em cápsula translúcida: funciona sobre qualquer uma das três cores */
.card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: var(--r-img);
  margin-bottom: var(--sp-3);
  background: rgba(255, 255, 255, .3);
  color: currentColor;
}
.card--purple .card__icon { background: rgba(255, 255, 255, .16); color: var(--green); }

.card__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-h3); line-height: 1.15; letter-spacing: -.012em;
  margin-bottom: .5rem;
}
.card__text { font-size: var(--fs-sm); color: inherit; }

/* ══════════════════════════ 10 · SIMULADOR ══════════════════════════ */
.sim { display: grid; gap: clamp(2rem, 1rem + 3.5vw, 3.5rem); align-items: center; }
@media (min-width: 940px) { .sim { grid-template-columns: 1fr 1fr; } }
.sim__copy .lead { margin-bottom: var(--sp-4); }

.sim__panel {
  position: relative; overflow: hidden;
  border-radius: var(--r-card);
  background:
    radial-gradient(130% 100% at 0% 0%, var(--purple) 0%, transparent 60%),
    var(--purple-deep);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.sim__inner { position: relative; z-index: 2; padding: clamp(1.5rem, 1rem + 2vw, 2.25rem); }

/* ─── Chuva de notas de R$ 100 ─────────────────────────────────────────
   Decorativa, atrás do conteúdo, `pointer-events: none`.
   Opacidade máxima 0,5 e fade nas duas pontas: as notas nunca competem
   com a leitura do valor. Só transform/opacity — roda na GPU. */
.rain {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden; pointer-events: none;
}
.note {
  position: absolute; top: 0; left: var(--x, 50%);
  width: 54px; height: 25px;
  border-radius: 3px;
  background: linear-gradient(150deg, #3D7FA6 0%, #2A5F80 55%, #1F4A66 100%);
  box-shadow: inset 0 0 0 1px rgba(190, 231, 247, .38), 0 2px 5px rgba(0,0,0,.3);
  display: grid; place-items: center;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  color: #E8F5FB; letter-spacing: .02em;
  opacity: 0;
  will-change: transform, opacity;
}
.note::before {                       /* selo circular da nota */
  content: ''; position: absolute; left: 5px; top: 50%;
  width: 13px; height: 13px; border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(190, 231, 247, .3);
}
.note.is-on {
  animation: fall var(--dur, 4s) linear var(--delay, 0s) infinite;
}
@keyframes fall {
  0%   { opacity: 0;   transform: translate3d(0, -14%, 0) rotate(var(--r0, -12deg)); }
  12%  { opacity: .5; }
  82%  { opacity: .5; }
  100% { opacity: 0;   transform: translate3d(var(--dx, 14px), 780px, 0) rotate(var(--r1, 22deg)); }
}

.sim__readout { text-align: center; margin-bottom: var(--sp-4); }
.sim__readout-label {
  font-size: var(--fs-2xs); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-mute);
}
/* Mesmo tratamento dos números do site: corpo 700, verde */
.sim__readout-value {
  display: flex; align-items: baseline; justify-content: center; gap: .06em;
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--fs-num);
  line-height: 1; letter-spacing: -.035em;
  color: var(--green);
  margin-block: .3rem .4rem;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 20px rgba(85, 15, 156, .8);
}
.sim__currency { font-size: .4em; font-weight: 700; }
.sim__readout-sub { font-size: var(--fs-xs); color: var(--on-dark-soft); }

.sim__control { margin-bottom: var(--sp-4); }
.sim__label {
  display: block; font-size: var(--fs-xs); font-weight: 600;
  color: var(--on-dark); margin-bottom: var(--sp-2);
}

.sim__range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 48px; background: none; cursor: grab;
  display: block; touch-action: pan-y;
}
.sim__range:active { cursor: grabbing; }
.sim__range::-webkit-slider-runnable-track {
  height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--green) var(--fill, 12%), rgba(255,255,255,.2) var(--fill, 12%));
}
.sim__range::-moz-range-track { height: 8px; border-radius: 999px; background: rgba(255,255,255,.2); }
.sim__range::-moz-range-progress { height: 8px; border-radius: 999px; background: var(--green); }
.sim__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; margin-top: -10px;
  border-radius: 50%; border: 3px solid var(--purple-deep);
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(97, 221, 117, .26);
  transition: transform var(--d-press) var(--ease-out), box-shadow var(--d-micro) ease;
}
.sim__range::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid var(--purple-deep); background: var(--green);
  box-shadow: 0 0 0 5px rgba(97, 221, 117, .26);
}
.sim__range:hover::-webkit-slider-thumb  { transform: scale(1.08); }
.sim__range:active::-webkit-slider-thumb { transform: scale(1.16); box-shadow: 0 0 0 9px rgba(97,221,117,.3); }

.sim__scale {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--on-dark-mute);
  font-variant-numeric: tabular-nums; margin-top: -.4rem;
}

/* ══════════════════════════ 11 · PASSOS ══════════════════════════ */
.steps { display: grid; gap: var(--sp-4); }
@media (min-width: 640px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* Roxo sólido nos três primeiros, verde no quarto: a cor conta que o
   passo 4 é o único em que você recebe. */
.step {
  position: relative;
  padding: var(--sp-4);
  border-radius: var(--r-card);
  border: 0;
  background: var(--purple-deep);
  color: var(--on-dark-soft);
  transition: transform var(--d-ui) var(--ease-out), box-shadow var(--d-ui) ease;
}
.step--pay { background: var(--green); color: #143A1E; }

@media (hover: hover) and (pointer: fine) {
  .step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
}
.step__num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: var(--r-img);
  font-family: var(--font-body); font-weight: 800; font-size: 1.0625rem;
  background: rgba(255, 255, 255, .16); color: #fff;
  margin-bottom: var(--sp-3);
  font-variant-numeric: tabular-nums;
}
.step--pay .step__num { background: rgba(11, 30, 16, .16); color: #0B2A12; }

.step__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.25rem; line-height: 1.15; color: #fff; margin-bottom: .4rem;
}
.step--pay .step__title { color: #0B2A12; }
.step__text { font-size: var(--fs-xs); color: inherit; }

/* ══════════ 11b · HANDOFF (faixa verde) ══════════
   A foto tem cantos transparentes e interior escuro: sobre o verde da
   marca ela ganha recorte natural, sem precisar de moldura. */
.handoff__grid { display: grid; gap: var(--sp-5); align-items: center; }
/* Empilhado, o texto vem primeiro: uma foto de 330px abrindo a seção
   deixaria o leitor sem contexto do que está vendo. */
.handoff__media { order: 2; justify-self: center; }
.handoff__copy  { order: 1; }
@media (min-width: 820px) {
  .handoff__grid { grid-template-columns: minmax(240px, 330px) 1fr; gap: clamp(2rem, 1rem + 3vw, 3.5rem); }
  .handoff__media { order: 0; }
  .handoff__copy  { order: 0; }
}
.handoff__media img { width: min(100%, 330px); height: auto; }

.handoff__copy { display: grid; gap: var(--sp-3); justify-items: start; }
.handoff .kicker { margin-bottom: 0; }
.handoff .lead { color: #2A3F30; }

/* Nota em cartão branco: sobre verde, um destaque verde não destacaria nada */
.handoff__note {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-in);
  background: var(--white);
  border-inline-start: 4px solid var(--purple);
  font-size: var(--fs-sm); color: var(--body);
  box-shadow: var(--shadow-sm);
}
.handoff__note strong { color: var(--ink); font-weight: 700; }

/* ══════════════════════════ 12 · DEPOIMENTOS ══════════════════════════ */
/* Dois cards em colunas iguais. Em coluna única a linha de texto passava de
   100 caracteres — o dobro do confortável. Aqui fica em ~60–65. */
.quotes { display: grid; gap: var(--sp-4); align-items: stretch; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(2, 1fr); } }

.quote {
  display: grid; grid-template-rows: auto 1fr auto;
  gap: var(--sp-3);
  margin: 0;
  padding: var(--sp-4);
  border-radius: var(--r-card);
  /* A cor sólida vem depois do gradiente de propósito: sem ela, uma falha de
     renderização do gradiente deixaria texto branco sobre seção branca. */
  background:
    radial-gradient(110% 90% at 100% 0%, var(--purple) 0%, var(--purple-deep) 70%),
    var(--purple-deep);
  box-shadow: var(--shadow-md);
  transition: transform var(--d-ui) var(--ease-out), box-shadow var(--d-ui) ease;
}
@media (min-width: 760px) { .quote { padding: var(--sp-5); } }
@media (hover: hover) and (pointer: fine) {
  .quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}

.quote__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-3);
}

/* Tela branca para o logo: os arquivos dos clientes são JPG com fundo branco */
.quote__logo {
  width: 148px; aspect-ratio: 320 / 207; flex: 0 0 auto;
  border-radius: var(--r-img);
  background: var(--white);
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px -10px rgba(0, 0, 0, .5);
}
.quote__logo img { width: 100%; height: 100%; object-fit: contain; }

.quote__mark { width: 44px; height: 33px; flex: 0 0 auto; color: #fff; opacity: .22; }
.quote__mark svg { width: 100%; height: 100%; fill: currentColor; }

.quote__text {
  margin: 0;
  font-size: var(--fs-sm); line-height: 1.6;
  color: #fff;
  max-width: 46ch;
}
.quote__text::before { content: '\201C'; }
.quote__text::after  { content: '\201D'; }

.quote__meta {
  display: grid; gap: .1rem;
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, .2);
}
.quote__meta strong {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.125rem; color: #fff;
}
.quote__meta span { font-size: var(--fs-2xs); color: #DCC7F7; }

/* Colagem do time fechando a seção. Fundo BRANCO na seção é obrigatório:
   os recortes de foto são quase brancos (rgb 251,252,250). */
/* ─── Foto do time dentro de um container com contexto ───
   Solta no meio da seção ela não comunicava nada. Agora vive num bloco
   creme com título e legenda, e a colagem tem uma razão de estar ali. */
.teamshot {
  display: grid; gap: var(--sp-4);
  align-items: center;
  margin-top: var(--sp-6);
  padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-5);
  border-radius: var(--r-card);
  background: var(--cream);
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--green);
}
/* Duas colunas só a partir de 1040px. Entre 700 e 1040 o bloco empilha, e a
   imagem ganha a largura toda: em 900px, lado a lado, a coluna de texto caía
   para 34 caracteres por linha — estreito demais para ler. */
@media (min-width: 700px) {
  .teamshot { padding: var(--sp-5); }
}
@media (min-width: 1040px) {
  .teamshot {
    grid-template-columns: minmax(0, .62fr) minmax(0, 1fr);
    gap: clamp(1.25rem, .5rem + 1.5vw, 2rem);
    border-inline-start-width: 1px;
    border-inline-start-color: var(--line);
  }
}
.teamshot__copy { display: grid; gap: .6rem; }
.teamshot__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-h3); line-height: 1.15; letter-spacing: -.012em;
  color: var(--ink);
}
.teamshot__text { font-size: var(--fs-sm); color: var(--body); max-width: 34ch; }
.teamshot__where {
  font-size: var(--fs-2xs); font-weight: 600; color: var(--purple);
  padding-top: .35rem;
}
/* Sem moldura: a colagem já tem recortes com raio próprio e fundo
   transparente, então ela flutua direto sobre o creme do bloco. Uma caixa
   branca em volta só criava uma segunda borda competindo com a primeira.
   Abaixo de 820px a foto sai: é uma colagem de 3 fotos e a menos de 300px
   as pessoas ficam ilegíveis. O bloco continua fazendo sentido como texto,
   com o filete verde marcando o destaque. */
/* Abaixo de 700px a foto sai: é uma colagem de 3 fotos e a menos de ~600px
   as pessoas ficam ilegíveis. O bloco continua fazendo sentido como texto,
   com o filete verde marcando o destaque. */
.teamshot__media { display: none; }
@media (min-width: 700px) {
  .teamshot__media { display: block; line-height: 0; }
  /* Largura plena. A presença vem da coluna, não de margem negativa
     sangrando para fora do bloco. */
  .teamshot__media img { width: 100%; height: auto; }
}

/* ══════════════════════════ 13 · REGRAS ══════════════════════════ */
.rules { display: grid; gap: var(--sp-3); }
@media (min-width: 700px)  { .rules { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .rules { grid-template-columns: repeat(3, 1fr); } }

/* Regras vivem em seção creme → card branco, para o cartão existir */
.rule {
  padding: var(--sp-4);
  border-radius: var(--r-card);
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow var(--d-ui) ease;
}
@media (hover: hover) and (pointer: fine) { .rule:hover { box-shadow: var(--shadow-md); } }
.rule__q {
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.1875rem; line-height: 1.2; color: var(--ink); margin-bottom: .4rem;
}
.rule__a { font-size: var(--fs-xs); color: var(--body); }
.rule__a strong { color: var(--purple); font-weight: 700; }

.rule--cta {
  background: var(--purple-deep); border-color: var(--purple-deep);
  display: grid; align-content: start; gap: .35rem;
}
.rule--cta .rule__q { color: #fff; }
.rule--cta .rule__a { color: var(--on-dark-soft); }
.rule--cta .rule__a strong { color: var(--green); }
.rule--cta .btn { margin-top: var(--sp-2); justify-self: start; }

/* ══════════════════════════ 14 · ACORDEÃO ══════════════════════════ */
/* FAQ vive em seção branca → item creme, para haver separação visual.
   Largura limitada e centralizada: o texto da pergunta não precisa de
   1092px, mas a borda esquerda continua coerente com o resto da página. */
.acc { display: grid; gap: .625rem; max-width: 46rem; margin-inline: auto; }
.acc__item {
  border-radius: var(--r-img);
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow var(--d-ui) ease, border-color var(--d-ui) ease;
}
.acc__item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
@media (hover: hover) and (pointer: fine) { .acc__item:hover { border-color: var(--line-strong); } }

.acc__head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  min-height: 56px;
  cursor: pointer; list-style: none;
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--fs-sm); color: var(--ink);
}
.acc__head::-webkit-details-marker { display: none; }
.acc__chev {
  display: grid; place-items: center; flex: 0 0 auto;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(98, 18, 179, .1); color: var(--purple);
  transition: transform var(--d-ui) var(--ease-out), background-color var(--d-micro) ease;
}
.acc__chev svg {
  width: 17px; height: 17px;
  fill: none; stroke: currentColor; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}
.acc__item[open] .acc__chev { transform: rotate(180deg); background: rgba(98, 18, 179, .18); }

/* grid-template-rows é animável; height:auto não é */
.acc__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 340ms var(--ease-out); }
.acc__item[open] .acc__body { grid-template-rows: 1fr; }
.acc__body > * {
  overflow: hidden; padding-inline: var(--sp-4);
  font-size: var(--fs-sm); color: var(--body);
  max-width: calc(var(--measure-tight) + var(--sp-4) * 2);
}
.acc__item[open] .acc__body > * { padding-bottom: var(--sp-4); }

.reglist {
  display: grid; gap: var(--sp-3); counter-reset: reg;
  max-width: calc(var(--measure-tight) + var(--sp-4) * 2);
}
.reglist li {
  counter-increment: reg;
  display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start;
}
.reglist li::before {
  content: counter(reg);
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  background: rgba(98, 18, 179, .1); color: var(--purple);
  margin-top: 2px;
}

/* ══════════════════════════ 15 · CTA FINAL ══════════════════════════ */
/* É o fecho da página: o título sobe acima da escala das outras seções e a
   foto cresce, porque antes o texto ocupava só 43% da altura da faixa e o
   conjunto ficava pequeno dentro de um container de 1140px. */
.final__grid { display: grid; gap: var(--sp-5); align-items: center; }
/* Proporção, não largura fixa: com 460px travados, em 900px a imagem ficava
   MAIOR que a coluna de texto (460 contra 339) e invertia a hierarquia.
   Em .72fr a foto acompanha a tela e o texto sempre manda. */
@media (min-width: 900px) {
  .final__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .78fr);
    gap: clamp(2rem, 1rem + 2.5vw, 3rem);
  }
}
.final__copy { display: grid; gap: var(--sp-4); justify-items: start; }

/* Único título da página maior que os 42px do site: 34 → 60px. */
.final__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.125rem, 1.3rem + 3.4vw, 3.75rem);
  line-height: 1.04; letter-spacing: -.025em;
  color: var(--on-dark);
  /* sem `balance`: a quebra é controlada por <br> no HTML */
  text-wrap: initial;
}
.final__title em { font-style: normal; color: var(--green); }

.final__lead {
  font-size: clamp(1.0625rem, 1rem + .4vw, 1.25rem);
  line-height: 1.5; font-weight: 400;
  color: var(--on-dark-soft);
  max-width: 34rem;
}

/* Bloco de valor: número grande + condições, separado por filete vertical */
.final__value {
  display: flex; align-items: center; gap: var(--sp-4);
  padding-block: var(--sp-2);
}
.final__amount {
  display: flex; align-items: baseline;
  font-family: var(--font-body); font-weight: 800;
  font-size: clamp(2.75rem, 1.8rem + 3.4vw, 4.25rem);
  line-height: .9; letter-spacing: -.045em;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.final__currency { font-size: .4em; font-weight: 800; margin-inline-end: .06em; }
.final__amount-note {
  font-size: var(--fs-xs); line-height: 1.45;
  color: var(--on-dark-mute);
  padding-inline-start: var(--sp-4);
  border-inline-start: 1px solid rgba(255, 255, 255, .24);
}
.final__amount-note strong { color: var(--on-dark); font-weight: 600; }

.final__actions {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--sp-3) var(--sp-4);
}
.final__micro { font-size: var(--fs-2xs); color: var(--on-dark-mute); max-width: 22ch; }

/* A foto só existe quando há coluna para ela. Empilhada abaixo do texto
   ficava solta, ocupando altura sem função. */
.final__media { display: none; }
@media (min-width: 860px) {
  .final__media { display: block; justify-self: center; line-height: 0; }
  .final__media img { width: min(100%, 460px); height: auto; display: block; }
}

/* ══════════════════ 15b · THANK YOU PAGE (obrigado.html) ══════════════════ */

/* ─── Confirmação ─── */
.ty { text-align: center; }
.ty__inner { display: grid; justify-items: center; gap: var(--sp-3); }

.ty__check {
  display: grid; place-items: center;
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--green);
  margin-bottom: var(--sp-2);
  animation: ty-pop 560ms var(--ease-out) both;
}
.ty__check svg {
  width: 38px; height: 38px;
  fill: none; stroke: var(--purple-deep); stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
  /* O traço se desenha: a confirmação é vista uma vez só, pode ter capricho. */
  stroke-dasharray: 30; stroke-dashoffset: 30;
  animation: ty-draw 520ms var(--ease-out) 220ms both;
}
@keyframes ty-pop  { from { opacity: 0; transform: scale(.9); } }
@keyframes ty-draw { to { stroke-dashoffset: 0; } }

.ty__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem);
  line-height: 1.06; letter-spacing: -.025em;
  color: var(--on-dark);
}
.ty__lead {
  font-size: var(--fs-lead); line-height: 1.5;
  color: var(--on-dark-soft);
  max-width: 46ch;
}
.ty__lead strong { color: var(--green); font-weight: 700; }
.ty__protocol {
  font-size: var(--fs-2xs); color: var(--on-dark-mute);
  padding: .5rem 1rem; border-radius: var(--r-btn);
  background: rgba(0, 0, 0, .2);
}
.ty__protocol strong { color: var(--on-dark); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ─── Recorrência: o bloco mais importante da página ─── */
.again {
  display: grid; gap: var(--sp-5);
  align-items: center;
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border-radius: var(--r-card);
  background: var(--white);
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--green);
  box-shadow: var(--shadow-md);
}
@media (min-width: 880px) {
  .again { grid-template-columns: minmax(0, 1fr) minmax(240px, 300px); gap: var(--sp-6); }
}
.again__copy { display: grid; gap: var(--sp-3); justify-items: start; }
.again__copy .h2 { max-width: 24ch; }
.again__actions { margin-top: var(--sp-1); }

/* Escadinha do valor: mostra a recorrência em vez de descrevê-la */
.again__math {
  display: grid;
  padding: var(--sp-4);
  border-radius: var(--r-img);
  background: var(--cream);
}
.again__math-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-3);
  font-size: var(--fs-xs); color: var(--body);
  padding-block: .55rem;
  border-bottom: 1px solid var(--line);
}
.again__math-row:last-child { border-bottom: 0; padding-bottom: 0; }
.again__math-row strong {
  font-family: var(--font-body); font-weight: 800;
  font-size: 1.25rem; letter-spacing: -.02em; color: var(--purple);
  font-variant-numeric: tabular-nums;
}
.again__math-row--hl strong { font-size: 1.625rem; color: var(--green-deep); }

/* ─── Compartilhar ─── */
.share { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-2); }
.share__btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 12px 22px; min-height: 48px;
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600;
  text-decoration: none; cursor: pointer;
  border-radius: var(--r-btn);
  border: 1.5px solid var(--line-strong);
  background: var(--cream); color: var(--ink);
  transition: transform var(--d-press) var(--ease-out),
              border-color var(--d-micro) ease,
              background-color var(--d-micro) ease;
}
@media (hover: hover) and (pointer: fine) {
  .share__btn:hover { border-color: var(--purple); background: var(--white); }
}
.share__btn:active { transform: scale(.97); }
.share__btn .ico { color: var(--purple); }
.share__btn--wa .ico { color: #0F7A40; }
.share__btn--li .ico { color: #0A66C2; }
.share__btn.is-ok { border-color: var(--green-deep); background: rgba(97, 221, 117, .2); }

.share__status {
  min-height: 1.4em; margin-top: var(--sp-3);
  text-align: center; font-size: var(--fs-2xs); font-weight: 600;
  color: var(--green-deep);
}

/* ─── Caixa de ajuda ─── */
.helpbox {
  display: grid; gap: var(--sp-4);
  padding: clamp(1.35rem, 1rem + 1.4vw, 2rem);
  border-radius: var(--r-card);
  background: var(--white);
  border: 1px solid var(--line);
}
@media (min-width: 780px) {
  .helpbox { grid-template-columns: 1fr auto; align-items: center; gap: var(--sp-5); }
}
.helpbox__text { font-size: var(--fs-xs); color: var(--body); margin-top: .5rem; max-width: 52ch; }
.helpbox__links { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.btn--outline-dark {
  background: transparent; color: var(--purple);
  border: 1.5px solid var(--line-strong);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline-dark:hover { border-color: var(--purple); background: rgba(98, 18, 179, .06); }
}

/* Movimento reduzido: o check aparece pronto, sem desenhar nem escalar */
@media (prefers-reduced-motion: reduce) {
  .ty__check { animation: none !important; }
  .ty__check svg { animation: none !important; stroke-dashoffset: 0 !important; }
}

/* ══════════════════════ 16 · FECHAMENTO (só a marca) ══════════════════════ */
.endmark {
  display: grid; place-items: center;
  padding-block: var(--sp-6) var(--sp-7);
  background: var(--cream);
}
.endmark a {
  display: grid; place-items: center; min-height: 44px;
  opacity: .8;
  transition: opacity var(--d-ui) ease, transform var(--d-ui) var(--ease-out);
}
.endmark img { width: clamp(132px, 16vw, 172px); height: auto; }
@media (hover: hover) and (pointer: fine) {
  .endmark a:hover { opacity: 1; transform: translateY(-2px); }
}

/* ══════════════════════ 17 · STICKY CTA (mobile) ══════════════════════ */
.stickybar {
  position: fixed; z-index: 70;
  left: var(--sp-3); right: var(--sp-3);
  bottom: max(var(--sp-3), env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding: .5rem .5rem .5rem 1.1rem;
  border-radius: var(--r-btn);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px -14px rgba(12, 12, 14, .34);
  opacity: 0; transform: translate3d(0, 130%, 0);
  pointer-events: none; visibility: hidden;
  transition: opacity var(--d-ui) var(--ease-out),
              transform var(--d-ui) var(--ease-out),
              visibility var(--d-ui);
}
.stickybar.is-visible {
  opacity: 1; transform: translate3d(0, 0, 0);
  pointer-events: auto; visibility: visible;
}
.stickybar__info { display: grid; line-height: 1.2; }
.stickybar__info strong {
  font-family: var(--font-body); font-weight: 700;
  font-size: 1.125rem; color: var(--purple);
}
.stickybar__info span { font-size: 11px; color: var(--muted); }
@media (min-width: 940px) { .stickybar { display: none; } }

/* ══════════════════════════ 18 · SCROLL REVEAL ══════════════════════════ */
/* O estado inicial só existe sob `.js`: sem JS todo o conteúdo é visível. */
.js .reveal { opacity: 0; transform: translate3d(0, 16px, 0); will-change: opacity, transform; }
.js .reveal.is-in {
  opacity: 1; transform: none; will-change: auto;
  transition: opacity var(--d-reveal) var(--ease-out) var(--delay, 0ms),
              transform var(--d-reveal) var(--ease-out) var(--delay, 0ms);
}
.js .word { display: inline-block; opacity: 0; transform: translate3d(0, .45em, 0); }
.js .reveal.is-in .word {
  opacity: 1; transform: none;
  transition: opacity 540ms var(--ease-out) var(--wd, 0ms),
              transform 540ms var(--ease-out) var(--wd, 0ms);
}

/* ══════════════════════════ 19 · REDUCED MOTION ══════════════════════════ */
/* Movimento reduzido ≠ zero animação: opacidade e cor (que ajudam a
   compreensão) ficam; deslocamento, chuva de notas e loops saem. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal, .js .word { opacity: 1 !important; transform: none !important; }
  .rain { display: none !important; }
  .stickybar { transform: none; }
  .btn:active { transform: none; }
  .card:hover, .step:hover, .quote:hover { transform: none; }
}

/* ══════════════════════════ 20 · PRINT ══════════════════════════ */
@media print {
  .nav, .stickybar, .rain { display: none !important; }
  body { background: #fff; }
  .acc__body { grid-template-rows: 1fr !important; }
}
