:root {
  --navy: #061f49;
  --navy-dark: #03173a;
  --teal: #0a6868;
  --emerald: #1b9f58;
  --gold: #c59c2c;
  --gold-light: #e0b94a;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --text: #0b1f33;
  --muted: #5b677a;
  --line: #d8e1e8;
  --surface: #f6f8fa;
  --cream: #faf7f0;
  --red: #c0392b;
  --mint: #6fe0b8;

  --display: "Sora", "Inter", sans-serif;
  --body: "Inter", Arial, sans-serif;
  --wn: 720px;
  --w: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--display); margin: 0; line-height: 1.15; }
p { margin: 0; }

.container { max-width: var(--w); margin: 0 auto; padding: 88px 24px; }
.container.narrow { max-width: var(--wn); }
.container.center { text-align: center; }
.container.tight { padding-top: 64px; padding-bottom: 64px; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.label::before { content: ''; width: 18px; height: 2px; background: var(--gold); border-radius: 2px; }
.label.light { color: var(--gold-light); }
.label.light::before { background: var(--mint); }
.label.center { justify-content: center; }

h2 { font-size: clamp(28px, 4.2vw, 44px); font-weight: 800; color: var(--navy); letter-spacing: -.015em; }
h2.white { color: var(--white); }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-logo img { height: 30px; width: auto; }
.nav-cta {
  background: var(--emerald);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: transform .15s, background .15s;
}
.nav-cta:hover { background: #178a4b; transform: translateY(-1px); }

/* ── Buttons ── */
.btn-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--emerald);
  color: #fff;
  font-family: var(--body);
  font-size: 17px;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(27,159,88,.32);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(27,159,88,.42); background: #178a4b; }
.btn-primary span { font-size: 12.5px; font-weight: 500; opacity: .9; }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,.3); box-shadow: none; }
.btn-ghost:hover { background: rgba(255,255,255,.08); box-shadow: none; }

/* ── Diagonal accent (brand texture, echoes book cover) ── */
.accent-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.accent-lines::before, .accent-lines::after {
  content: '';
  position: absolute;
  width: 200%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--mint) 60%, transparent);
  opacity: .35;
  transform: rotate(-18deg);
}
.accent-lines::before { top: 12%; left: -50%; }
.accent-lines::after { bottom: 8%; left: -30%; opacity: .2; }

/* ── Hero ── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 64px 24px;
  overflow: hidden;
}
.hero-left { max-width: 560px; margin: 0 auto; padding: 24px 0; position: relative; z-index: 1; }
.hero .label { color: var(--gold-light); }
.hero .label::before { background: var(--mint); }
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  color: #fff;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: normal; color: var(--mint); }
.hero-desc {
  font-size: 17.5px;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin: 20px 0 24px;
}
.hero-checks { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; }
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}
.hero-checks li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(111,224,184,.15);
  color: var(--mint);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.hero-right { position: relative; z-index: 1; }
.hero-right img { border-radius: 16px; }

/* ── Ícones (badge circular com SVG) ── */
.icon-badge {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-badge svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-badge.gold { background: linear-gradient(135deg, var(--gold), #a97f1e); }
.icon-badge.sm { width: 36px; height: 36px; border-radius: 10px; }
.icon-badge.sm svg { width: 17px; height: 17px; }

/* ── Dor / Intensificação ── */
.pain {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.pain-header { max-width: 620px; margin: 0 auto 40px; text-align: center; position: relative; z-index: 1; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pain-quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-left: 3px solid var(--gold);
  border-radius: 4px 12px 12px 4px;
  padding: 22px 24px;
  font-size: 15.5px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  font-style: italic;
}

/* ── Por dentro / Demonstrativo (marquee) ── */
.inside { background: var(--off-white); position: relative; overflow: hidden; }
.inside-header { max-width: 640px; margin: 0 auto 44px; position: relative; z-index: 1; }
.inside-sub { color: var(--muted); font-size: 15.5px; margin-top: 12px; }
.inside-marquee { display: flex; flex-direction: column; gap: 18px; position: relative; z-index: 1; }
.inside-row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.inside-track { display: flex; gap: 16px; width: max-content; animation: marquee 46s linear infinite; }
.inside-track-reverse { animation-direction: reverse; }
.inside-track img {
  width: 190px; height: 285px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(6,31,73,.16);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.inside-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 32px; position: relative; z-index: 1; }
.inside-note strong { color: var(--navy); }

/* ── Benefícios ── */
.benefits { background: var(--white); }
.benefits-header { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.benefit-card { display: flex; gap: 16px; }
.benefit-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ── Urgência ── */
.urgency {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  text-align: center;
  padding: 52px 24px;
  position: relative;
  overflow: hidden;
}
.urgency h2 { color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.urgency p { color: rgba(255,255,255,.82); font-size: 15.5px; margin-bottom: 26px; position: relative; z-index: 1; }
.urgency .countdown-timer { font-variant-numeric: tabular-nums; color: var(--gold-light); font-weight: 800; }
.urgency .btn-primary { position: relative; z-index: 1; margin: 0 auto; width: fit-content; }

/* ── Ideal para você ── */
.for-you { background: var(--surface); }
.for-you-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 44px auto 0;
}
.fy-item {
  display: flex;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
}
.fy-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--emerald);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
}
.fy-item p { font-size: 14.5px; color: var(--text); line-height: 1.55; }

/* ── Comparativo ── */
.compare { background: var(--white); }
.compare-header { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.compare-table {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(6,31,73,.08);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.head { background: var(--navy); }
.compare-row.head span { color: #fff; font-weight: 700; font-size: 13px; text-align: center; padding: 16px 8px; }
.compare-row.head span:first-child { text-align: left; }
.compare-cell { padding: 15px 16px; font-size: 14px; color: var(--text); }
.compare-mark { text-align: center; padding: 15px 8px; font-size: 16px; }
.compare-mark.yes { color: var(--emerald); font-weight: 900; }
.compare-mark.no { color: #c9d2da; font-weight: 900; }
.compare-row.pronto { background: rgba(27,159,88,.05); }

/* ── Produto principal ── */
.product { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); position: relative; overflow: hidden; }
.product-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-img { position: relative; }
.product-img img { border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.product .label { color: var(--gold-light); }
.product .label::before { background: var(--mint); }
.product h2.white { margin-bottom: 8px; }
.product-lead { color: rgba(255,255,255,.7); font-size: 15.5px; }
.product-list { display: flex; flex-direction: column; gap: 13px; margin-top: 22px; }
.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
}
.product-list .ck {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  font-size: 10px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.product-modules {
  margin-top: 26px;
  padding: 20px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}
.product-modules strong { color: var(--mint); }

/* ── Bônus ── */
.bonuses { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); position: relative; overflow: hidden; }
.bonuses-header { max-width: 640px; margin: 0 auto 44px; text-align: center; position: relative; z-index: 1; }
.bonuses .label { color: var(--gold-light); }
.bonuses .label::before { background: var(--mint); }
.bonuses-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197,156,44,.18);
  color: var(--gold-light);
  border: 1px solid rgba(197,156,44,.35);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 7px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}
.bonus-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.35); background: rgba(255,255,255,.08); }
.bonus-preview {
  position: relative;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.18);
  border-bottom: 2px solid var(--gold);
}
.bonus-preview img { width: auto; height: 100%; max-width: 100%; object-fit: contain; border-radius: 6px; box-shadow: 0 10px 24px rgba(0,0,0,.4); }
.bonus-num {
  position: absolute; top: 10px; left: 10px;
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,.35);
  z-index: 1;
}
.bonus-body { padding: 18px 18px 22px; text-align: center; }
.bonus-card h4 { font-size: 15px; color: #fff; margin-bottom: 6px; }
.bonus-card p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ── Oferta ── */
.offer { background: var(--cream); position: relative; }
.offer-header { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.plans {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.plan-card.full {
  border: 2px solid var(--emerald);
  box-shadow: 0 24px 56px rgba(27,159,88,.18);
  position: relative;
}
.plan-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--emerald);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.plan-name.full { color: var(--emerald); }
.plan-list { display: flex; flex-direction: column; gap: 10px; }
.plan-list li { display: flex; gap: 8px; font-size: 14px; color: var(--text); align-items: flex-start; }
.plan-list li::before { content: '✓'; color: var(--emerald); font-weight: 900; flex-shrink: 0; }
.plan-list li.bonus::before { content: '✓'; color: var(--gold); }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-top: auto; }
.plan-price .curr { font-family: var(--display); font-size: 18px; font-weight: 700; color: var(--muted); }
.plan-price .val { font-family: var(--display); font-size: 46px; font-weight: 800; color: var(--navy); }
.plan-sub { font-size: 12.5px; color: var(--muted); }
.plan-old { font-size: 13px; color: #a9b3bd; text-decoration: line-through; }

/* ── Garantia ── */
.guarantee-block {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  margin: 44px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 26px;
}
.guarantee-icon { font-size: 36px; flex-shrink: 0; }
.guarantee-block p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.guarantee-block strong { color: var(--navy); }

/* ── Como é o acesso ── */
.access { background: var(--surface); }
.access-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 40px auto 0;
  position: relative;
}
.access-steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 16%; right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.access-step { text-align: center; position: relative; z-index: 1; }
.access-num {
  width: 42px; height: 42px;
  margin: 0 auto 14px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--surface);
}
.access-step h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.access-step p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-title { text-align: center; margin-bottom: 32px; }
details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 20px; color: var(--emerald); flex-shrink: 0; }
details[open] summary::after { content: '–'; }
details p { margin-top: 12px; font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ── Fechamento ── */
.closing {
  background: linear-gradient(160deg, var(--navy), var(--navy-dark));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-sub { color: rgba(255,255,255,.75); font-size: 15.5px; margin: 16px 0 30px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.closing h2 { position: relative; z-index: 1; }
.closing .btn-primary { position: relative; z-index: 1; }
.closing-lock { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 18px; position: relative; z-index: 1; }

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
  line-height: 1.8;
}
footer b { color: #fff; }

/* ── Sticky mobile ── */
.sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--navy-dark);
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.2);
}
.sticky span { color: #fff; font-size: 13px; }
.sticky span b { color: var(--mint); }
.sticky a {
  background: var(--emerald);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { order: -1; max-width: 380px; margin: 0 auto; }
  .for-you-grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .pain-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.2fr .7fr .7fr; }
  .access-steps { grid-template-columns: 1fr; }
  .access-steps::before { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 64px 18px; }
  .nav { padding: 12px 16px; }
  .nav-cta { font-size: 12.5px; padding: 8px 14px; }
  .inside-track img { width: 150px; height: 225px; }
  .sticky { display: flex; }
  body { padding-bottom: 68px; }
}
