/* =============================================================================
   Pronto Já — Landing Page
   Usa o design system Ricky (../ricky/design-system/tokens.css) como base.
   Estilize tudo pelas variáveis do DS; nada de hex solto.
   ============================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-1);
  background: var(--ground-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before { /* glow ambiente do DS */
  content: ""; position: fixed; inset: 0; z-index: -2; background: var(--grad-ground);
}
body::after { /* dot-grid do DS, esmaecendo pro topo */
  content: ""; position: fixed; inset: 0; z-index: -1;
  background-image: radial-gradient(rgba(53,230,168,0.12) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(120% 85% at 18% 100%, #000 0%, transparent 60%);
  mask-image: radial-gradient(120% 85% at 18% 100%, #000 0%, transparent 60%);
  opacity: 0.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; text-wrap: balance; line-height: 1.08; }
p { margin: 0; }
.mono { font-family: var(--font-mono); }
.hl { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tnum { font-variant-numeric: tabular-nums; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; border-top: 1px solid var(--hairline); }
@media (max-width: 640px) { .section { padding: 64px 0; } }

.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brand-300);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--brand-500); opacity: .7; }

.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.sec-head h2 { font-size: clamp(28px, 4vw, 44px); }
.sec-head p { color: var(--text-2); font-size: 18px; }

/* --------------------------------------------------------------- buttons */
.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 15px; cursor: pointer;
  border-radius: var(--r-sm); padding: 13px 24px; border: 1px solid transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:focus-visible { outline: 2px solid var(--brand-300); outline-offset: 3px; }
.btn-primary { background: var(--grad-brand); color: #052018; box-shadow: var(--glow-brand); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(53,230,168,.4), 0 16px 52px -10px rgba(53,230,168,.8); }
.btn-secondary { background: rgba(255,255,255,0.02); color: var(--text-1); border-color: var(--hairline-strong); }
.btn-secondary:hover { border-color: var(--brand-500); color: var(--brand-100); }
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { color: var(--text-1); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* --------------------------------------------------------------- announce */
.announce {
  background: linear-gradient(90deg, rgba(53,230,168,.12), rgba(20,185,138,.06));
  border-bottom: 1px solid var(--hairline);
  font-size: 14px; text-align: center; padding: 10px 16px; color: var(--text-1);
}
.announce a { color: var(--brand-300); font-weight: 600; }
.announce a:hover { text-decoration: underline; }

/* --------------------------------------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(var(--ground-0), rgba(4,16,12,.5));
  border-bottom: 1px solid var(--hairline);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brandmark { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.brand-ico {
  width: 38px; height: 38px; border-radius: var(--r-md); flex: none;
  background: linear-gradient(150deg, var(--ground-3), var(--ground-1));
  border: 1px solid var(--hairline-strong); display: grid; place-items: center;
  box-shadow: var(--glow-brand);
}
.nav-links { display: flex; gap: 30px; font-size: 14px; color: var(--text-2); }
.nav-links a:hover { color: var(--text-1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 860px) { .nav-links { display: none; } }
@media (max-width: 480px) { .nav-cta .btn-ghost { display: none; } }

/* --------------------------------------------------------------- hero */
.hero { padding: 90px 0 80px; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; gap: 56px; } }
.hero h1 { font-size: clamp(38px, 6vw, 66px); font-weight: 600; margin-top: 22px; }
.hero-sub { color: var(--text-2); font-size: clamp(17px, 2.2vw, 20px); max-width: 44ch; margin-top: 22px; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.proof-chip {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; line-height: 1.45; color: var(--brand-100);
  background: rgba(53,230,168,.07); border: 1px solid rgba(53,230,168,.25);
  border-radius: var(--r-lg); padding: 10px 18px; max-width: 100%;
}
.proof-chip strong { color: var(--brand-100); white-space: nowrap; }
.trust-row { margin-top: 26px; display: flex; align-items: center; gap: 14px; color: var(--text-3); font-size: 13px; }
.trust-row b { color: var(--text-2); }
.hero-note { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 13px; }
.hero-note .icon { width: 15px; height: 15px; color: var(--safe); }

/* pilha de cards (DS status-card adaptado à história do Pronto Já) */
.stack { position: relative; display: flex; flex-direction: column; gap: 16px; }
.scard {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  border-radius: var(--r-lg); background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--hairline);
}
.scard .ico { width: 46px; height: 46px; border-radius: var(--r-md); display: grid; place-items: center; flex: none; border: 1px solid var(--hairline-strong); }
.scard .t strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.scard .t span { font-size: 13px; color: var(--text-2); }
.scard em { font-style: normal; font-weight: 700; }
.scard.brand { box-shadow: var(--glow-brand); border-color: rgba(53,230,168,.28); }
.scard.brand .ico { color: var(--brand-500); background: rgba(53,230,168,.10); border-color: rgba(53,230,168,.38); }
.scard.brand strong { color: var(--brand-100); }
.scard.safe { box-shadow: var(--glow-safe); border-color: rgba(47,212,110,.3); transform: scale(1.03); }
.scard.safe .ico { color: var(--safe); background: rgba(47,212,110,.10); border-color: rgba(47,212,110,.38); }
.scard.safe strong { color: var(--safe-100); font-size: 17px; }

@media (prefers-reduced-motion: no-preference) {
  .f1 { animation: fl 6s ease-in-out infinite; }
  .f2 { animation: fls 6s ease-in-out infinite 1.3s; }
  .f3 { animation: fl 6s ease-in-out infinite 2.5s; }
  @keyframes fl { 50% { transform: translateY(-9px); } }
  @keyframes fls { 0%,100% { transform: scale(1.03) translateY(0); } 50% { transform: scale(1.03) translateY(-9px); } }
  .reveal { opacity: 0; transform: translateY(14px); animation: rise .7s ease forwards; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* --------------------------------------------------------------- pain */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px;
  border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--ground-1);
}
.pain-item .p-ico { font-size: 20px; line-height: 1.4; }
.pain-item p { color: var(--text-2); font-size: 15px; }
.pain-item b { color: var(--text-1); font-weight: 600; }

/* --------------------------------------------------------------- steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step { border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 28px 26px; background: var(--ground-1); position: relative; }
.step .n {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--brand-300);
  width: 34px; height: 34px; border-radius: var(--r-full); display: grid; place-items: center;
  border: 1px solid rgba(53,230,168,.3); background: rgba(53,230,168,.06); margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 15px; }
.steps-note { text-align: center; color: var(--text-2); margin-top: 32px; font-size: 16px; }
.steps-note b { color: var(--brand-100); }

/* --------------------------------------------------------------- proof */
.proof-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
@media (max-width: 860px) { .proof-cols { grid-template-columns: 1fr; } }
.metric-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.metric {
  border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 22px; background: var(--ground-1);
  display: flex; flex-direction: column; gap: 6px;
}
.metric .num { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: var(--brand-100); letter-spacing: -0.02em; }
.metric .num.safe { color: var(--safe-100); }
.metric .cap { font-size: 13px; color: var(--text-2); }
.metric.wide { grid-column: 1 / -1; }

.order-card {
  border: 1px solid var(--hairline); border-radius: var(--r-lg); background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)); backdrop-filter: blur(var(--glass-blur));
  padding: 22px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 14px;
}
.order-head { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--text-2); border-bottom: 1px solid var(--hairline); padding-bottom: 12px; }
.order-head .id { font-family: var(--font-mono); color: var(--text-1); }
.order-line { display: flex; align-items: center; justify-content: space-between; font-size: 15px; }
.order-line .muted { color: var(--text-3); }
.ready-badge {
  margin-top: 4px; display: flex; align-items: center; gap: 12px; padding: 16px;
  border-radius: var(--r-md); border: 1px solid rgba(47,212,110,.35); background: rgba(47,212,110,.07);
  box-shadow: var(--glow-safe);
}
.ready-badge .big { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--safe-100); }
.ready-badge .sub { font-size: 13px; color: var(--text-2); }
.ready-badge .sub b { color: var(--safe); }

.testimonial {
  border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 30px; background: var(--ground-1);
  display: flex; flex-direction: column; gap: 18px; justify-content: center;
}
.testimonial blockquote { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(19px, 2.4vw, 24px); line-height: 1.4; color: var(--text-1); }
.testimonial blockquote em { font-style: normal; color: var(--brand-100); }
.testimonial .who { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-2); }
.testimonial .who .av { width: 40px; height: 40px; border-radius: var(--r-full); background: linear-gradient(140deg, var(--brand-700), var(--brand-900)); display: grid; place-items: center; font-weight: 700; color: #052018; }

/* --------------------------------------------------------------- diferenciais */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 26px; background: var(--ground-1); }
.feat .f-ico { width: 44px; height: 44px; border-radius: var(--r-md); display: grid; place-items: center; font-size: 20px; margin-bottom: 16px; border: 1px solid var(--hairline-strong); background: rgba(53,230,168,.06); }
.feat h3 { font-size: 17px; margin-bottom: 8px; }
.feat p { color: var(--text-2); font-size: 14px; }

/* --------------------------------------------------------------- trial band */
.band {
  border: 1px solid rgba(53,230,168,.3); border-radius: var(--r-xl);
  background: radial-gradient(120% 140% at 50% 0%, rgba(53,230,168,.10), transparent 60%), var(--ground-1);
  padding: 56px 40px; text-align: center; box-shadow: var(--glow-brand);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.band h2 { font-size: clamp(26px, 3.6vw, 40px); }
.band p { color: var(--text-2); font-size: 18px; max-width: 52ch; }
.band-bullets { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; color: var(--text-1); font-size: 15px; margin-top: 4px; }
.band-bullets span { display: inline-flex; align-items: center; gap: 8px; }
.microcopy { font-size: 13px; color: var(--text-3); margin-top: 2px; }

/* --------------------------------------------------------------- plans */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.plan {
  border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 30px 28px; background: var(--ground-1);
  display: flex; flex-direction: column; gap: 18px;
}
.plan.featured { border-color: rgba(53,230,168,.5); box-shadow: var(--glow-brand); background: radial-gradient(120% 100% at 50% 0%, rgba(53,230,168,.08), transparent 55%), var(--ground-2); position: relative; }
.plan .tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #052018; background: var(--grad-brand); padding: 5px 14px; border-radius: var(--r-full); box-shadow: var(--glow-brand); }
.plan .pname { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.plan .price { font-family: var(--font-display); font-weight: 700; font-size: 38px; letter-spacing: -0.02em; }
.plan .price small { font-family: var(--font-body); font-weight: 400; font-size: 15px; color: var(--text-3); }
.plan .forwho { color: var(--text-2); font-size: 14px; margin-top: -8px; }
.plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-1); }
.plan li::before { content: "✓"; color: var(--safe); font-weight: 700; }
.plan li .off { color: var(--text-3); }
.plan .guarantee { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 6px; }
.plan .btn { margin-top: auto; }
.plans-note { text-align: center; margin-top: 22px; font-size: 13px; color: var(--text-3); }

/* --------------------------------------------------------------- faq */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--ground-1); padding: 4px 20px; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 0; font-family: var(--font-display); font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand-300); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-2); font-size: 15px; padding: 0 0 18px; }

/* --------------------------------------------------------------- guarantee -*/
.guarantee-band {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; text-align: left;
  border: 1px solid rgba(47,212,110,.3); border-radius: var(--r-xl); background: var(--ground-1);
  padding: 36px 40px; box-shadow: var(--glow-safe);
}
.seal { width: 92px; height: 92px; border-radius: var(--r-full); flex: none; display: grid; place-items: center; color: var(--safe); border: 2px solid rgba(47,212,110,.4); background: rgba(47,212,110,.08); box-shadow: var(--glow-safe); }
.guarantee-band .g-txt { max-width: 560px; display: flex; flex-direction: column; gap: 8px; }
.guarantee-band h3 { font-size: 24px; }
.guarantee-band p { color: var(--text-2); font-size: 16px; }
.guarantee-band .g-txt b { color: var(--safe-100); }

/* --------------------------------------------------------------- final cta */
.final { text-align: center; }
.final .box {
  border: 1px solid var(--hairline); border-radius: var(--r-xl);
  background: radial-gradient(120% 160% at 50% 0%, rgba(53,230,168,.12), transparent 55%), var(--ground-1);
  padding: 72px 40px; display: flex; flex-direction: column; align-items: center; gap: 20px; box-shadow: var(--shadow-card);
}
.final h2 { font-size: clamp(28px, 4.4vw, 46px); max-width: 16ch; }
.final p { color: var(--text-2); font-size: 18px; max-width: 46ch; }
.final .risk { font-size: 13px; color: var(--text-3); }

/* --------------------------------------------------------------- footer */
.footer { border-top: 1px solid var(--hairline); padding: 56px 0 40px; }
.footer .wrap { display: flex; flex-direction: column; gap: 26px; }
.footer .top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer .pos { max-width: 42ch; color: var(--text-2); font-size: 14px; margin-top: 12px; }
.footer .cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer .col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-2); }
.footer .col b { color: var(--text-1); font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.footer .col a:hover { color: var(--brand-300); }
.footer .legal { border-top: 1px solid var(--hairline); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--text-3); }

/* --------------------------------------------------------------- legal pages */
.legal-topbar { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--hairline);
  background: linear-gradient(var(--ground-0), rgba(4,16,12,.55)); backdrop-filter: blur(12px); }
.legal-topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.legal-topbar .back { font-size: 14px; color: var(--text-2); }
.legal-topbar .back:hover { color: var(--brand-300); }
.legal-doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 96px; }
.legal-doc h1 { font-size: clamp(30px, 5vw, 42px); }
.legal-doc .legal-updated { color: var(--text-3); font-size: 13px; margin: 12px 0 8px; font-family: var(--font-mono); }
.legal-doc .legal-intro { color: var(--text-2); font-size: 16px; margin: 8px 0 36px; line-height: 1.7; }
.legal-doc h2 { font-size: 22px; margin: 42px 0 12px; scroll-margin-top: 80px; }
.legal-doc h3 { font-size: 16px; margin: 22px 0 8px; color: var(--text-1); }
.legal-doc p, .legal-doc li { color: var(--text-2); font-size: 15.5px; line-height: 1.75; }
.legal-doc p { margin: 0 0 14px; }
.legal-doc ul, .legal-doc ol { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 7px; }
.legal-doc strong { color: var(--text-1); }
.legal-doc a { color: var(--brand-300); }
.legal-doc a:hover { text-decoration: underline; }
.legal-doc .ph { color: var(--warn); font-family: var(--font-mono); font-size: 0.9em; }
.legal-doc .toc { border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 18px 22px; background: var(--ground-1); margin-bottom: 44px; }
.legal-doc .toc b { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.legal-doc .toc ul { margin: 0; padding: 0; list-style: none; columns: 2; gap: 4px; }
.legal-doc .toc a { color: var(--text-2); font-size: 14px; }
@media (max-width: 560px) { .legal-doc .toc ul { columns: 1; } }

/* --------------------------------------------------------------- icons */
.icon { width: 20px; height: 20px; flex: none; vertical-align: -0.18em; }
.proof-chip .icon { width: 17px; height: 17px; color: var(--brand-300); }
.pain-item .p-ico { color: var(--brand-300); display: flex; align-items: center; }
.pain-item .p-ico .icon { width: 22px; height: 22px; }
.feat .f-ico .icon { width: 22px; height: 22px; color: var(--brand-500); }
.band-bullets .icon { width: 17px; height: 17px; color: var(--safe); }
.plan .guarantee .icon { width: 15px; height: 15px; color: var(--safe); }
.plan .tag .icon { width: 12px; height: 12px; vertical-align: -0.1em; }
.final .risk .icon { width: 15px; height: 15px; color: var(--safe); }
.announce .icon { width: 15px; height: 15px; color: var(--brand-300); }
