
/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --navy:       #062b45;
  --blue:       #0795d2;
  --blue-dark:  #0577ad;
  --blue-soft:  #eaf8fe;
  --green:      #20a447;
  --green-dark: #168438;
  --ink:        #102330;
  --muted:      #5f707b;
  --line:       #dbe8ee;
  --soft:       #f5f9fb;
  --white:      #fff;
  --yellow:     #ffcd45;
  --shadow:     0 24px 70px rgba(7,53,79,.12);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, summary { font: inherit; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: 108px 0; }

/* ─── Topbar ─────────────────────────────────────────────────── */
.topbar { background: var(--navy); color: #dff5ff; }

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.topbar p { display: flex; gap: 9px; margin: 0; }
.topbar strong { color: var(--white); }
.topbar a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219,232,238,.9);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand            { width: 190px; flex: 0 0 auto; }
.brand img        { width: 100%; max-height: 56px; object-fit: contain; object-position: left center; }

.desktop-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.desktop-nav a {
  color: #354b58;
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--blue); }

/* ─── Buttons ────────────────────────────────────────────────── */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 14px 24px;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(32,164,71,.2);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 18px 38px rgba(32,164,71,.26);
}

.button-small  { min-height: 44px; padding: 11px 20px; font-size: 13px; }
.button-large  { min-height: 58px; padding: 16px 30px; font-size: 15px; }
.button-full   { width: 100%; }

/* CTA do header — texto curto só aparece em telas estreitas */
.header-cta-full  { display: inline; }
.header-cta-short { display: none; }

.button-outline {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(7,149,210,.18);
}
.button-outline:hover { border-color: var(--blue-dark); background: var(--blue-dark); }

.button-white {
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0,41,65,.18);
  color: var(--blue-dark);
}
.button-white:hover { border-color: #effaff; background: #effaff; color: var(--blue-dark); }

/* ─── Mobile nav ─────────────────────────────────────────────── */
.mobile-nav { display: none; }

/* ─── Eyebrow / Kicker ───────────────────────────────────────── */
.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}
.kicker::before,
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 76px;
  background:
    radial-gradient(circle at 88% 15%, rgba(7,149,210,.19), transparent 29%),
    radial-gradient(circle at 10% 100%, rgba(32,164,71,.07), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f7fcff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -365px;
  top: -330px;
  border: 1px solid rgba(7,149,210,.16);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 36px;
  /* garante que a coluna da imagem não expanda além do texto */
  align-content: center;
}

/* Wrappers internos do hero-copy — usados para reordenar no mobile.
   No desktop são transparentes (display: contents não é usado para
   preservar o fluxo normal do bloco). */
.hero-copy-top,
.hero-copy-actions {
  display: block;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.05;
  letter-spacing: -.048em;
}
.hero h1 em { color: var(--blue); font-style: normal; }

.hero-lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.67;
}

/* Wrapper que alinha botões e âncora de preço na mesma largura */
.hero-offer-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 27px;
  gap: 0;
  max-width: 100%;
}

/* Botões do hero — principal + WhatsApp secundário */
.hero-offer {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

/* Botão WhatsApp secundário — mesma altura do principal, menos peso visual */
.button-wa {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1.5px solid #b8dfc1;
  border-radius: 10px;
  padding: 16px 22px;
  background: #f2fbf4;
  color: #168438;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.button-wa:hover {
  background: #e4f7e9;
  border-color: #8fcba0;
  transform: translateY(-1px);
}
.button-wa svg {
  width: 18px;
  height: 18px;
  fill: #25d366;
  stroke: none;
  flex-shrink: 0;
}

/* Âncora de preço — mesma largura total da linha de botões acima */
.hero-offer {
  max-width: 100%;
}
.hero-price-anchor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fcff;
  flex-wrap: nowrap;
}
.hero-price-from {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.hero-price-val {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  white-space: nowrap;
}
.hero-price-sep {
  width: 1px;
  height: 18px;
  background: var(--line);
  flex-shrink: 0;
}
.hero-price-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 10px;
  margin: 25px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #40535f;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.check {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e8f8ed;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

/* ─── Hero visual ────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.product-stage { position: relative; z-index: 2; width: 100%; margin: 56px 0; }
.product-stage > img { width: 100%; object-fit: contain; filter: drop-shadow(0 28px 32px rgba(2,73,110,.16)); }

.hero-halo {
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7,149,210,.2), rgba(7,149,210,.02) 60%, transparent 70%);
}

.floating-proof {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(213,230,238,.95);
  border-radius: 13px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 42px rgba(5,73,106,.15);
  backdrop-filter: blur(10px);
}
.proof-validity {
  top: 0; right: 5%;
  display: flex; flex-direction: column;
  padding: 14px 18px;
  transform: translateY(-50%);
}
.proof-validity span   { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .11em; }
.proof-validity strong { margin-top: 4px; color: var(--ink); font-size: 12px; }

.proof-qr {
  left: 4%; bottom: 0;
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px;
  transform: translateY(50%);
}
.proof-qr b {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
}
.proof-qr span  { display: flex; flex-direction: column; color: var(--muted); font-size: 9px; }
.proof-qr strong { margin-bottom: 3px; color: var(--ink); font-size: 11px; }



/* ─── Trust strip ────────────────────────────────────────────── */
.trust-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid #e6eff3;
  border-bottom: 1px solid #dce9ef;
  background: var(--white);
}

.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }

.trust-grid > div {
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:first-child { border-left: 1px solid var(--line); }

.trust-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  flex: 0 0 auto;
  border: 1px solid #cdeaf6;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
}
.trust-icon svg {
  display: block; width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.trust-grid > div > span:not(.trust-icon) {
  min-height: 34px;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--muted);
  font-size: 12px; line-height: 1.45;
}
.trust-grid strong { color: var(--ink); font-size: 13px; }

/* ─── Section copy & heading shared styles ───────────────────── */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 82px;
}

.section-copy h2,
.section-heading h2,
.faq-intro h2,
.final-cta h2,
.law-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -.043em;
}
.section-copy > p,
.section-heading > p,
.faq-intro > p,
.law-card p {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

/* ─── Intro / vantagens ──────────────────────────────────────── */
.intro { background: var(--white); }

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}
.photo-frame > img { width: 100%; min-height: 520px; object-fit: cover; }

.photo-label {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 15px;
  padding: 17px 19px;
  background: rgba(6,43,69,.89);
  backdrop-filter: blur(10px);
  color: var(--white);
}
.photo-label span   { color: #aee8ff; font-size: 9px; font-weight: 900; letter-spacing: .11em; }
.photo-label strong { margin-top: 6px; font-size: 15px; line-height: 1.4; }

/* ─── Saving card ────────────────────────────────────────────── */
.saving-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  border-radius: 18px;
}
.saving-option {
  min-height: 78px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid; border-radius: 15px; padding: 15px 17px;
}
.saving-option > span:last-child { display: flex; flex-direction: column; }

.saving-original { border-color: #f4c5c5; background: #fff5f5; }
.saving-result   { border-color: #bce6c7; background: #f1fbf4; text-align: left; }

.saving-signal {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 14px; font-weight: 900;
}
.saving-original .saving-signal { background: #ffe1e1; color: #cf3434; }
.saving-result   .saving-signal { background: #d8f3df; color: var(--green); }

.saving-card small          { font-size: 10px; font-weight: 800; }
.saving-card del,
.saving-card strong         { margin-top: 4px; font-size: 20px; }
.saving-original small,
.saving-original del        { color: #b83232; }
.saving-arrow               { color: var(--blue); font-size: 22px; font-weight: 800; }
.saving-result small        { color: var(--green-dark); }
.saving-result strong       { color: var(--green); }

/* ─── Clean list ─────────────────────────────────────────────── */
.clean-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.clean-list li {
  display: flex; align-items: center; gap: 8px;
  min-height: 42px;
  border: 1px solid #d5eddc;
  border-radius: 11px;
  padding: 9px 11px;
  background: #f6fcf8;
  color: var(--green-dark);
  font-size: 13px; font-weight: 700;
}
.clean-list .check { background: #dff5e5; color: var(--green); }

/* ─── Text link ──────────────────────────────────────────────── */
.text-link {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--blue-dark);
  font-size: 13px; font-weight: 800;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ─── Steps ──────────────────────────────────────────────────── */
.steps { background: var(--soft); }

.section-heading { max-width: 790px; margin: 0 auto 48px; text-align: center; }
.section-heading .eyebrow { justify-content: center; }

.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.steps-grid article {
  position: relative;
  min-height: 225px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 25px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6,56,84,.05);
}
.steps-grid article:not(:last-child)::after {
  content: "→";
  position: absolute; z-index: 2;
  right: -20px; top: 38px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 14px; font-weight: 900;
}
.step-number {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px; font-weight: 900;
}
.steps-grid h3 { margin: 22px 0 9px; color: var(--ink); font-size: 18px; }
.steps-grid p  { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

/* ─── Video card ─────────────────────────────────────────────── */
.video-card {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 44px;
  margin-top: 62px;
  overflow: hidden;
  border-radius: 24px;
  padding: 42px;
  background: radial-gradient(circle at 0% 100%, rgba(7,149,210,.34), transparent 34%), var(--navy);
  box-shadow: var(--shadow);
}
.video-copy .eyebrow { color: #91ddfb; }
.video-copy h3 { margin: 0; color: var(--white); font-size: 27px; line-height: 1.16; letter-spacing: -.035em; }
.video-copy p  { margin: 14px 0 0; color: #bad0dc; font-size: 13px; line-height: 1.65; }

.video-shell {
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.96);
  border-radius: 17px;
  background: #03151f;
  box-shadow: 0 24px 50px rgba(0,16,25,.3);
  aspect-ratio: 16/9;
}
.video-shell iframe { width: 100%; height: 100%; border: 0; }

/* ─── Pricing ────────────────────────────────────────────────── */
.pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(7,149,210,.25), transparent 26%),
    radial-gradient(circle at 90% 80%, rgba(32,164,71,.12), transparent 22%),
    var(--navy);
}

.heading-light h2      { color: var(--white); }
.heading-light p       { color: #b9cfdb; }
.heading-light .eyebrow { color: #8bdfff; }

.price-grid {
  max-width: 950px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0,21,33,.28);
}
.price-card.featured { border: 3px solid var(--yellow); }

.card-ribbon {
  position: absolute;
  top: -15px; right: 26px;
  border-radius: 999px;
  padding: 9px 15px;
  background: var(--yellow);
  color: #4e3a00;
  font-size: 10px; font-weight: 900; letter-spacing: .1em;
}

.price-title > span  { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.price-title h3      { margin: 7px 0 5px; color: var(--ink); font-size: 27px; letter-spacing: -.035em; }
.price-title p       { margin: 0; color: var(--muted); font-size: 13px; }

.product-visual {
  height: 244px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin: 18px 0 8px;
  padding: 14px;
  border-radius: 16px;
  background: var(--blue-soft);
}
.product-visual img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(6,70,100,.13));
}
/* O card digital mostra apenas o celular (imagem alta e estreita).
   O max-height: 100% herdado já a mantém contida — sem regra extra
   para evitar percentuais com base de cálculo ambígua. */

.price { display: flex; flex-direction: column; padding: 19px 0; border-bottom: 1px solid var(--line); }
.price small  { color: var(--muted); font-size: 11px; }
.price strong { color: var(--navy); font-size: 48px; line-height: 1; letter-spacing: -.05em; }
.price sup    { font-size: .38em; vertical-align: .72em; }

.price-card ul { display: grid; gap: 12px; margin: 22px 0 25px; padding: 0; list-style: none; }
.price-card li { display: flex; align-items: center; gap: 9px; color: #334955; font-size: 13px; font-weight: 700; }

/* Rodapé de confiança dos cards — substitui secure-note */
.price-footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 13px;
  color: #81909a;
  font-size: 11px;
  font-weight: 600;
}
.price-footer-trust span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.payment-bar {
  max-width: 950px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 13px 25px;
  margin: 26px auto 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  padding: 18px 22px;
  background: rgba(255,255,255,.07);
}
.payment-bar span { color: #d9edf5; font-size: 12px; font-weight: 700; }

.pricing-disclaimer { margin: 14px 0 0; color: #8eabb9; font-size: 11px; text-align: center; }

/* ─── Places / Onde usar ─────────────────────────────────────── */
.places { background: var(--white); }
.places-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 270px;
  gap: 16px;
}
.places-grid article { position: relative; overflow: hidden; border-radius: 18px; background: var(--navy); }
.places-grid article::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(3,29,45,.9));
}
.places-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.places-grid article:hover img { transform: scale(1.04); }
.places-grid article > div { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; }
.places-grid span { color: #9be1fb; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.places-grid h3   { margin: 6px 0 0; color: var(--white); font-size: 19px; }

/* ─── Use card ───────────────────────────────────────────────── */
.use-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: .72fr 1.28fr;
  align-items: center; gap: 34px;
  margin-top: 28px;
  border: 1px solid #cbe7f3;
  border-radius: 22px;
  padding: 34px 38px 34px 44px;
  background:
    radial-gradient(circle at 95% 0%, rgba(7,149,210,.12), transparent 30%),
    linear-gradient(135deg, #f7fcff 0%, #edf8fd 100%);
  box-shadow: 0 18px 45px rgba(7,53,79,.08);
}
.use-card::before {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 6px;
  background: var(--blue);
}
.use-card .eyebrow { margin-bottom: 11px; }
.use-card h3 { margin: 0; color: var(--ink); font-size: 27px; line-height: 1.15; letter-spacing: -.035em; }
.use-card ol { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.use-card li {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  min-height: 118px;
  border: 1px solid #d5eaf3;
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,.88);
  color: #334b58;
  font-size: 13px; font-weight: 700; line-height: 1.45;
  box-shadow: 0 10px 25px rgba(7,53,79,.06);
}
.use-card li b {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
}

/* ─── Eligibility ────────────────────────────────────────────── */
.eligibility {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 5%, rgba(255,255,255,.14), transparent 27%),
    var(--blue);
}
.eligibility-grid { grid-template-columns: 1.05fr .95fr; }

.light-copy .eyebrow { color: #daf5ff; }
.light-copy h2       { color: var(--white); }
.light-copy > p      { color: rgba(255,255,255,.82); font-size: 16px; }

.eligibility-action-card {
  margin-top: 27px;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(6,43,69,.24), rgba(6,43,69,.1));
  box-shadow: 0 20px 45px rgba(0,64,96,.18), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.eligibility-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 14px; }
.eligibility-list > span {
  display: flex; align-items: center; gap: 9px;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 13px; font-weight: 700; line-height: 1.35;
}
.eligibility-list .check { background: var(--white); color: var(--green); }
.eligibility-button {
  width: 100%; min-height: 54px;
  background: var(--green); border-color: var(--green);
  box-shadow: 0 16px 34px rgba(0,80,37,.26);
}
.eligibility-button:hover { background: var(--green-dark); border-color: var(--green-dark); }

.eligibility-photo {
  position: relative; overflow: hidden;
  border: 8px solid rgba(255,255,255,.19);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 28px 70px rgba(0,50,76,.23);
}
.eligibility-photo > img   { width: 100%; min-height: 490px; object-fit: cover; }
.eligibility-photo > div   {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  display: flex; flex-direction: column;
  border-radius: 14px; padding: 15px 17px;
  background: rgba(6,43,69,.9);
  color: var(--white);
}
.eligibility-photo strong  { font-size: 14px; }
.eligibility-photo span    { margin-top: 4px; color: #c9e4ef; font-size: 11px; }

/* ─── Proof / Depoimentos ────────────────────────────────────── */
.proof { overflow: hidden; background: var(--soft); }

.testimonial-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: -15px 0 28px;
}
.testimonial-summary > span,
.testimonial-stars  { color: #d59000; letter-spacing: .08em; }
.testimonial-summary > span { font-size: 18px; }
.testimonial-summary p { margin: 0; color: #425660; font-size: 13px; font-weight: 700; }

.testimonial-carousel {
  position: relative; overflow: hidden;
  margin-inline: calc(50% - 50vw);
  padding: 4px 0 14px;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonial-track {
  width: max-content;
  display: flex;
  animation: testimonial-scroll 48s linear infinite;
}
.testimonial-carousel:hover .testimonial-track { animation-play-state: paused; }

.testimonial-set { display: flex; gap: 18px; padding-right: 18px; }

.testimonial-card {
  width: clamp(300px, 31vw, 370px);
  min-height: 225px;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 25px;
  background: var(--white);
  box-shadow: 0 15px 36px rgba(7,53,79,.08);
}
.testimonial-stars { font-size: 13px; }
.testimonial-card blockquote { flex: 1; margin: 15px 0 22px; color: var(--ink); font-size: 14px; line-height: 1.65; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  color: var(--white);
  font-size: 12px; font-weight: 900;
}
.testimonial-card footer > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.testimonial-card footer strong { color: var(--ink); font-size: 13px; }
.testimonial-card footer small  { color: var(--muted); font-size: 11px; }

@keyframes testimonial-scroll { to { transform: translateX(-50%); } }

/* ─── Reputation row ─────────────────────────────────────────── */
.reputation-row {
  display: grid;
  grid-template-columns: 105px 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 23px;
  background: var(--white);
}
.reputation-row img     { max-height: 44px; object-fit: contain; }
.reputation-row p       { display: flex; flex-direction: column; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.reputation-row strong  { color: var(--ink); font-size: 13px; }

/* ─── Security ───────────────────────────────────────────────── */
.security { background: var(--white); }
.security-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 75px; }

.security-photo { position: relative; overflow: hidden; border-radius: 24px; background: var(--blue-soft); box-shadow: var(--shadow); }
.security-photo img     { width: 100%; min-height: 520px; object-fit: cover; }
.security-photo > span  {
  position: absolute; left: 18px; bottom: 18px;
  border-radius: 999px; padding: 10px 13px;
  background: var(--navy); color: var(--white);
  font-size: 10px; font-weight: 900; letter-spacing: .1em;
}

.security-list { display: grid; gap: 12px; margin: 27px 0 18px; }
.security-list article {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--line);
  border-radius: 15px; padding: 15px 17px;
  background: linear-gradient(135deg, var(--white), #f8fcfe);
  box-shadow: 0 10px 24px rgba(7,53,79,.05);
}
.security-icon {
  width: 46px; height: 46px;
  aspect-ratio: 1;
  display: grid; place-items: center;
  flex: 0 0 auto;
  border: 1px solid #cce9f5;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
  line-height: 0;
}
.security-icon svg { display: block; width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.security-list article > span:not(.security-icon) { display: flex; flex-direction: column; color: var(--muted); font-size: 12px; line-height: 1.5; }
.security-list strong { color: var(--ink); font-size: 14px; }

.security-assurance {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid #c8e8d1;
  border-radius: 15px; padding: 15px 17px;
  background: #f2fbf5;
}
.security-assurance .security-icon { width: 42px; height: 42px; border-color: #c8e8d1; background: #dff5e5; color: var(--green); }
.security-assurance .security-icon svg { width: 21px; height: 21px; }
.security-assurance > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.security-assurance strong { color: var(--green-dark); font-size: 13px; }
.security-assurance small  { color: #547161; font-size: 11px; line-height: 1.45; }

.security-actions { display: flex; align-items: center; gap: 22px; margin-top: 18px; }
.security-actions .button { min-width: 230px; }

/* ─── Law ────────────────────────────────────────────────────── */
.law { padding-top: 0; background: var(--white); }
.law-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 60px;
  border: 1px solid #cee6f1;
  border-radius: 25px;
  padding: 54px 58px;
  background: radial-gradient(circle at 100% 0%, rgba(7,149,210,.13), transparent 32%), var(--blue-soft);
}
.law-card h2 { font-size: clamp(30px, 3vw, 43px); }
.law-logos { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.law-logos img {
  width: 100%; height: 100px;
  object-fit: contain;
  border: 1px solid rgba(205,226,236,.9);
  border-radius: 13px; padding: 12px;
  background: rgba(255,255,255,.84);
}

/* ─── Courses ────────────────────────────────────────────────── */
.courses { background: var(--soft); }
.courses-grid { grid-template-columns: 1.05fr .95fr; }

.notice {
  margin: 25px 0;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 15px 17px;
  background: var(--blue-soft);
  color: var(--muted);
  font-size: 12px; line-height: 1.6;
}
.notice strong { color: var(--ink); }
.courses-photo > img { min-height: 440px; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--navy); color: var(--white); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 75px; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro .eyebrow { color: #88defd; }
.faq-intro h2       { color: var(--white); }
.faq-intro > p      { color: #b5ceda; }

.help-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  margin-top: 30px;
  border: 1px solid rgba(91,224,137,.4);
  border-radius: 18px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(37,211,102,.18), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.help-card::before { position: absolute; inset: 0 auto 0 0; width: 4px; background: #25d366; content: ""; }
.help-card-icon {
  display: grid; width: 46px; height: 46px; place-items: center;
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 14px;
  background: rgba(37,211,102,.18);
  color: #25d366;
}
.help-card-icon svg { width: 24px; height: 24px; fill: currentColor; stroke: none; }

.help-card-copy { display: flex; min-width: 0; flex-direction: column; }
.help-card-copy > span  { color: #7ce49b; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.help-card-copy strong  { margin-top: 6px; color: var(--white); font-size: 15px; line-height: 1.3; }
.help-card-copy p       { margin: 6px 0 0; color: #b5ceda; font-size: 12px; line-height: 1.55; }

.help-card .help-card-button {
  grid-column: 1/-1;
  display: inline-flex; min-height: 48px;
  align-items: center; justify-content: center;
  gap: 9px; margin-top: 18px;
  border: 1px solid #55e28a;
  border-radius: 11px;
  background: #25d366;
  box-shadow: 0 12px 28px rgba(37,211,102,.24);
  color: #06351b;
  font-size: 13px; font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.help-card .help-card-button:hover { background: #4ae17f; box-shadow: 0 15px 32px rgba(37,211,102,.32); transform: translateY(-2px); }
.help-card .help-card-button:focus-visible { outline: 3px solid rgba(255,255,255,.9); outline-offset: 3px; }
.help-card-button svg { width: 18px; height: 18px; fill: currentColor; stroke: none; flex-shrink: 0; }
.help-card-button > span { margin-left: 2px; }

.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.06); }
.faq-list summary {
  min-height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 17px 20px;
  color: var(--white); cursor: pointer;
  font-size: 14px; font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary b {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: #8de3ff;
  font-size: 16px;
}
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details > p { margin: 0; padding: 0 20px 20px; color: #bdd2dc; font-size: 13px; line-height: 1.75; }

/* ─── Final CTA ──────────────────────────────────────────────── */
.final-cta {
  overflow: hidden; padding: 73px 0;
  background: radial-gradient(circle at 15% 100%, rgba(255,255,255,.14), transparent 30%), var(--blue);
}
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta-inner > div > span { color: #daf6ff; font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.final-cta h2  { margin-top: 9px; color: var(--white); font-size: clamp(32px, 4vw, 50px); }
.final-cta p   { margin: 10px 0 0; color: #d4f1fb; font-size: 15px; }
.final-cta .button { flex: 0 0 auto; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { padding: 68px 0 24px; background: #031e30; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .9fr 1.15fr .9fr; gap: 58px; }

.footer-brand img { width: 190px; max-height: 58px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.footer-brand p   { max-width: 270px; margin: 18px 0 10px; color: #94b1c0; font-size: 13px; line-height: 1.65; }
.footer-brand strong { color: #ccdee7; font-size: 11px; }

.footer h3 { margin: 0 0 20px; color: var(--white); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.footer-links, .footer-apps { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links a { margin-bottom: 12px; color: #91adbb; font-size: 13px; line-height: 1.45; }
.footer-links a:hover { color: var(--white); }

/* Badges das lojas — o badge do Google tem margem transparente embutida
   na própria imagem, então recebe escala e offset para alinhar
   visualmente com o da Apple, que não tem essa margem. */
.store-badge {
  display: block;
  width: 160px;
  height: 48px;
  margin-bottom: 10px;
  transition: transform 180ms ease;
}
.store-badge:hover { transform: translateY(-1px); }
.store-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
/* Compensa a moldura transparente do badge oficial do Google Play */
.store-badge-google img {
  transform: scale(1.12);
  transform-origin: left center;
}

.footer-bottom {
  display: flex; justify-content: space-between; gap: 30px;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  color: #7593a3; font-size: 11px;
  /* Espaço reservado pro botão flutuante do WhatsApp não cobrir
     o texto de copyright/CNPJ ao rolar até o fim da página. */
  padding-bottom: 76px;
}

/* WhatsApp flutuante removido — gerenciado pelo plugin WPCode no WordPress */

/* ─── Breakpoint 1050px ──────────────────────────────────────── */
@media (max-width: 1050px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: 12px; }
  .hero-grid { grid-template-columns: 1fr .95fr; }
  .hero h1   { font-size: 48px; }
  .hero-offer { align-items: flex-start; }
  .hero-offer .button { width: 100%; }
}

/* ─── Breakpoint 820px — tablet / small desktop ──────────────── */
@media (max-width: 820px) {
  html { scroll-padding-top: 82px; }

  .container { width: min(calc(100% - 32px), 680px); }
  .section   { padding: 76px 0; }

  /* Topbar */
  .topbar-inner { min-height: 34px; justify-content: center; font-size: 12px; }
  .topbar a { display: none; }

  /* Header */
  .header-inner { min-height: 70px; gap: 12px; }
  .brand { width: 150px; }
  .desktop-nav { display: none; }

  /* CTA fica sempre visível, empurrado para a direita */
  .header-cta { margin-left: auto; padding: 11px 16px; font-size: 12px; }

  .mobile-nav { position: relative; display: block; margin-left: 0; flex: 0 0 auto; }
  .mobile-nav summary {
    width: 44px; height: 44px;
    display: grid; align-content: center; gap: 5px;
    border: 1px solid var(--line); border-radius: 10px; padding: 11px;
    cursor: pointer; list-style: none;
  }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { height: 2px; border-radius: 2px; background: var(--navy); }
  .mobile-nav nav {
    position: absolute; right: 0; top: 52px;
    width: min(285px, calc(100vw - 32px));
    display: flex; flex-direction: column;
    border: 1px solid var(--line); border-radius: 14px; padding: 10px;
    background: var(--white); box-shadow: var(--shadow);
    z-index: 200;
  }
  .mobile-nav nav a { border-bottom: 1px solid var(--line); padding: 14px; color: var(--ink); font-size: 14px; font-weight: 700; }
  .mobile-nav nav a:last-child { border: 0; }

  /* Hero */
  .hero { padding: 53px 0 38px; }
  .hero-grid,
  .split,
  .video-card,
  .use-card,
  .security-grid,
  .law-card,
  .faq-grid { grid-template-columns: 1fr; }

  .hero-grid { gap: 14px; }

  /* Reordenação mobile: o .hero-copy é dissolvido com display:contents,
     tornando .hero-copy-top e .hero-copy-actions irmãos diretos do
     .hero-visual dentro do grid. Assim a imagem pode ser inserida
     entre o subtítulo e os botões. */
  .hero-copy { display: contents; }
  .hero-copy-top     { order: 1; text-align: center; }
  .hero-visual       { order: 2; }
  .hero-copy-actions { order: 3; text-align: center; }

  .kicker,
  .hero-copy .eyebrow { justify-content: center; }
  .hero h1 { margin: 0 auto; font-size: clamp(36px, 11vw, 52px); }
  .hero-lead { margin-right: auto; margin-left: auto; font-size: 16px; }
  .hero-offer-wrap { display: flex; align-items: center; }
  .hero-offer { flex-direction: column; align-items: center; }
  .hero-offer .button,
  .hero-offer .button-wa { max-width: 360px; width: 100%; }
  .hero-price-anchor { margin: 12px auto 0; flex-wrap: wrap; }
  .hero-points { justify-content: center; }

  /* Imagem intercalada — margens reduzidas para não afastar demais
     o subtítulo dos botões */
  .hero-visual { min-height: 0; margin: 6px 0 2px; }
  .product-stage { width: 96%; margin: 34px 0; }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div { min-height: 88px; padding: 16px; }

  /* Grade 2x2: reconstrói as divisórias.
     Padrão: cada card tem borda esquerda + inferior. Os cards da
     última linha perdem a inferior e a coluna direita fecha com uma
     borda própria — sem duplicar linhas nas interseções. */
  .trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }
  /* Fecha a lateral direita da grade */
  .trust-grid > div:nth-child(2),
  .trust-grid > div:nth-child(4) { border-right: 1px solid var(--line); }
  /* Última linha não precisa de divisória inferior */
  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) { border-bottom: 0; }

  /* Split */
  .split { gap: 45px; }
  .photo-frame { max-width: 550px; margin: 0 auto; }
  .photo-frame > img { min-height: 430px; }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid article:not(:last-child)::after { display: none; }

  /* Video */
  .video-card { gap: 28px; padding: 28px; }

  /* Pricing */
  .price-grid { max-width: 570px; grid-template-columns: 1fr; }

  /* Places */
  .places-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 240px; }

  /* Use card */
  .use-card { grid-template-columns: 1fr; gap: 26px; }
  .use-card ol { grid-template-columns: repeat(3,1fr); }

  /* Eligibility */
  .eligibility-grid { gap: 50px; }
  .eligibility-photo { max-width: 550px; margin: 0 auto; }

  /* Security */
  .security-grid { gap: 46px; }
  .security-photo { max-width: 520px; margin: 0 auto; }
  .security-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .security-actions .button { width: 100%; min-width: 0; }
  .security-actions .text-link { justify-content: center; }

  /* Law */
  .law-card { gap: 35px; padding: 38px; }

  /* Courses */
  .courses-grid { gap: 45px; }

  /* FAQ */
  .faq-grid { gap: 42px; }
  .faq-intro { position: static; }

  /* Final CTA */
  .final-cta-inner { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
}

/* ─── Breakpoint 560px — mobile ──────────────────────────────── */
@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), 470px); }
  .section   { padding: 64px 0; }

  .topbar-inner { font-size: 11px; }

  /* Header compacto — logo menor e CTA com texto curto */
  .header-inner { gap: 8px; }
  .brand { width: 120px; }
  .header-cta { padding: 10px 14px; font-size: 12px; }
  .header-cta-full  { display: none; }
  .header-cta-short { display: inline; }

  /* Hero */
  .hero { padding-top: 43px; }
  .hero h1 { font-size: clamp(34px, 10vw, 40px); }
  .hero-lead { font-size: 15px; }
  .hero-offer { width: 100%; }
  .hero-points {
    align-items: flex-start;
    grid-template-columns: 1fr;
    width: fit-content;
    margin-right: auto; margin-left: auto;
    padding-left: 0;
  }
  .hero-visual { min-height: 0; margin: 4px 0 0; }
  .product-stage { width: 100%; margin: 30px 0; }
  .proof-validity { right: -4px; transform: translateY(-50%) scale(.86); transform-origin: top right; }
  .proof-qr       { left: -4px;  transform: translateY(50%) scale(.86);  transform-origin: bottom left; }

  /* Trust */
  .trust-grid { width: 100%; }
  .trust-grid > div { min-height: 95px; padding: 14px 12px; }
  .trust-icon       { width: 36px; height: 36px; }
  .trust-icon svg   { width: 19px; height: 19px; }

  /* Section headings */
  .section-copy h2,
  .section-heading h2,
  .faq-intro h2,
  .law-card h2 { font-size: clamp(28px, 9vw, 34px); }

  .section-copy > p,
  .section-heading > p,
  .faq-intro > p,
  .law-card p { font-size: 14px; }

  .photo-frame > img { min-height: 360px; }

  /* Saving card */
  .saving-card { grid-template-columns: 1fr; }
  .saving-arrow { justify-self: center; line-height: 1; transform: rotate(90deg); }

  /* Clean list */
  .clean-list,
  .eligibility-list { grid-template-columns: 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article { min-height: auto; padding: 22px; }

  /* Video */
  .video-card { padding: 22px; }
  .video-copy h3 { font-size: 22px; }

  /* Pricing */
  .price-card { padding: 28px 22px; }
  .product-visual { height: 224px; padding: 12px; }

  /* Places */
  .places-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }

  /* Use card */
  .use-card { gap: 25px; padding: 28px 22px 28px 28px; }
  .use-card ol { grid-template-columns: 1fr; }
  .use-card li { min-height: 0; flex-direction: row; align-items: center; }

  /* Eligibility / Security photo */
  .eligibility-photo > img,
  .security-photo img { min-height: 390px; }

  /* Testimonials */
  .testimonial-summary { flex-direction: column; gap: 6px; text-align: center; }
  .testimonial-card    { width: min(84vw, 330px); min-height: 220px; }

  /* Reputation */
  .reputation-row { grid-template-columns: 75px 1fr; }
  .reputation-row .text-link { grid-column: span 2; }

  /* Law */
  .law-card   { padding: 28px 22px; }
  .law-logos  { grid-template-columns: 1fr; }
  .law-logos img { height: 82px; }

  /* Courses */
  .courses-photo > img { min-height: 350px; }

  /* FAQ */
  .faq-list summary { font-size: 13px; padding: 15px 16px; }

  /* Final CTA */
  .final-cta { padding: 58px 0; }
  .final-cta-inner { align-items: stretch; gap: 28px; }
  .final-cta h2    { font-size: clamp(28px, 9vw, 35px); }
  .final-cta .button { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 33px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-bottom: 84px; }

  /* âncora de preço — esconde separador em telas muito pequenas */
  .hero-price-sep { display: none; }
  .hero-price-anchor { width: 100%; max-width: 360px; justify-content: center; }
}

/* ─── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .testimonial-carousel { overflow-x: auto; mask-image: none; }
  .testimonial-track    { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }

  /* Reveals: tudo visível imediatamente, sem transição. */
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─── Scroll reveal ──────────────────────────────────────────────
   Progressive enhancement: o conteúdo é visível por padrão. Só depois
   que o ScrollReveal monta e adiciona `.reveal-ready` no <html> os
   alvos passam a começar escondidos. Se o JS falhar, nada some. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 550ms cubic-bezier(.22, .61, .36, 1),
              transform 550ms cubic-bezier(.22, .61, .36, 1);
}

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* Elementos já visíveis no primeiro paint: aparecem sem animar. */
.reveal-ready [data-reveal].reveal-instant {
  transition: none;
}

/* Fade puro — usado onde movimento causaria shift (vídeo, payment bar). */
.reveal-ready [data-reveal="fade"] {
  transform: none;
  transition: opacity 500ms cubic-bezier(.22, .61, .36, 1);
}

/* Variante rápida e curta — seção de preços. */
.reveal-ready [data-reveal="fast"] {
  transform: translateY(12px);
  transition: opacity 380ms cubic-bezier(.22, .61, .36, 1),
              transform 380ms cubic-bezier(.22, .61, .36, 1);
}

/* Stagger — atraso aplicado por posição dentro do grupo. */
.reveal-ready [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms cubic-bezier(.22, .61, .36, 1),
              transform 520ms cubic-bezier(.22, .61, .36, 1);
}
.reveal-ready [data-reveal-stagger].is-revealed > * {
  opacity: 1;
  transform: none;
}
.reveal-ready [data-reveal-stagger].reveal-instant > * {
  transition: none;
}

.reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0ms; }
.reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: 80ms; }
.reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: 160ms; }
.reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: 240ms; }
.reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: 320ms; }
.reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0ms !important;
  }
}

/* Mobile: deslocamento e stagger menores. */
@media (max-width: 560px) {
  .reveal-ready [data-reveal],
  .reveal-ready [data-reveal-stagger] > * {
    transform: translateY(14px);
  }
  .reveal-ready [data-reveal="fast"] {
    transform: translateY(10px);
  }
  .reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0ms; }
  .reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: 55ms; }
  .reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: 110ms; }
  .reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: 165ms; }
  .reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: 220ms; }
  .reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: 275ms; }
}

/* ─── Foco visível — links, botões e summary ─────────────────── */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Sobre fundos escuros o azul tem pouco contraste: usa branco. */
.pricing a:focus-visible,
.faq a:focus-visible,
.faq summary:focus-visible,
.footer a:focus-visible,
.eligibility a:focus-visible,
.final-cta a:focus-visible,
.topbar a:focus-visible {
  outline-color: var(--white);
}

/* ─── Feedback de clique — apenas botões e CTAs reais ────────── */
.button:active,
.button-wa:active,
.help-card-button:active {
  transform: translateY(0) scale(.985);
  transition-duration: 90ms;
}

/* ─── FAQ: rotação suave do ícone ────────────────────────────── */
.faq-list summary b {
  transition: transform 200ms cubic-bezier(.22, .61, .36, 1);
}

/* ─── Botão flutuante do WhatsApp ────────────────────────────── */
.whatsapp-float {
  position: fixed;
  z-index: 90;
  /* env(safe-area-inset-*) respeita a área segura de celulares com
     notch/gestos (iPhone). O max() garante espaçamento mínimo mesmo
     em aparelhos sem essas variáveis. */
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 10px 26px rgba(9, 73, 36, .28);
  color: #fff;
  animation: whatsapp-float-in 320ms cubic-bezier(.22, .61, .36, 1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(9, 73, 36, .34);
}
.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}
.whatsapp-float-label {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes whatsapp-float-in {
  from { opacity: 0; transform: translateY(10px) scale(.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Aprovado: no celular, só o ícone — sem o texto "Fale conosco",
   pra não ocupar espaço na tela. */
@media (max-width: 560px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-float-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
}
