/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

:root {
  --navy: #0f2a5c;
  --navy-dark: #081a3d;
  --red: #d31027;
  --red-dark: #a30d1f;
  --gold: #ffb800;
  --gold-dark: #e6a400;
  --cream: #fff8ee;
  --gray: #5a6472;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(15, 42, 92, 0.15);
  --shadow-strong: 0 14px 40px rgba(211, 16, 39, 0.25);
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy-dark);
  background: var(--cream);
  line-height: 1.55;
  padding-bottom: 74px; /* espaço pra sticky bar */
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; }

ul { list-style: none; }

.section {
  padding: 52px 20px;
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow, .eyebrow-light {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.eyebrow { background: rgba(211,16,39,0.1); color: var(--red); }
.eyebrow-light { background: rgba(255,255,255,0.15); color: #fff; }

.section h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

/* ===== TOP URGENCY BAR ===== */
.top-bar {
  background: var(--navy-dark);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.countdown {
  background: var(--red);
  padding: 3px 10px;
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 55%, var(--navy-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 34px 20px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 15%, rgba(255,255,255,0.12) 0, transparent 40%),
                     radial-gradient(circle at 85% 80%, rgba(255,184,0,0.15) 0, transparent 45%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  max-width: 92%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 18px;
  position: relative;
}
.hero h1 {
  font-size: 30px;
  font-weight: 800;
  max-width: 480px;
  margin: 0 auto 14px;
  position: relative;
}
.hero h1 .highlight { color: var(--gold); }
.hero-sub {
  font-size: 15.5px;
  opacity: 0.92;
  max-width: 420px;
  margin: 0 auto 28px;
  position: relative;
}

/* Book mockup */
.hero-cover {
  position: relative;
  max-width: 240px;
  margin: 0 auto 30px;
}
.book-mockup {
  position: relative;
  transform: perspective(900px) rotateY(-18deg) rotateX(2deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 25px 30px rgba(0,0,0,0.45));
}
.book-mockup img {
  border-radius: 4px 8px 8px 4px;
  position: relative;
  z-index: 2;
}
.book-pages {
  position: absolute;
  top: 3%;
  right: -8px;
  width: 12px;
  height: 94%;
  background: repeating-linear-gradient(#f1f1f1, #f1f1f1 2px, #dcdcdc 2px, #dcdcdc 3px);
  transform: translateZ(-5px) skewY(0.5deg);
  border-radius: 0 4px 4px 0;
  z-index: 1;
}
.book-spine {
  position: absolute;
  left: 0;
  top: 2%;
  width: 8px;
  height: 96%;
  background: rgba(0,0,0,0.25);
  z-index: 3;
  border-radius: 4px 0 0 4px;
}
.floating-tag {
  position: absolute;
  background: #fff;
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 30px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  white-space: nowrap;
}
.tag-pages { top: 8%; left: -14px; transform: rotate(-6deg); }
.tag-cert { bottom: 6%; right: -18px; transform: rotate(5deg); }

/* Hero CTA box */
.hero-cta-box {
  background: #fff;
  color: var(--navy-dark);
  border-radius: var(--radius);
  padding: 22px 20px 26px;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: var(--shadow-strong);
  position: relative;
}
.price-anchor {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 2px;
}
.price-anchor s { color: #b0392f; }
.price-now {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.price-now span { font-size: 20px; font-weight: 700; }
.price-note {
  font-size: 12.5px;
  color: var(--gray);
  margin-bottom: 16px;
}
.trust-mini {
  font-size: 12px;
  color: var(--gray);
  margin-top: 12px;
}

/* ===== CTA BUTTON ===== */
.btn-cta {
  display: inline-block;
  width: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  padding: 17px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(255,184,0,0.4);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.btn-cta:active { transform: scale(0.97); }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 10px 24px rgba(255,184,0,0.4); }
  50% { box-shadow: 0 10px 30px rgba(255,184,0,0.7); }
  100% { box-shadow: 0 10px 24px rgba(255,184,0,0.4); }
}

/* ===== PROBLEM ===== */
.problem { text-align: center; }
.problem h2 { font-size: 23px; }
.problem-list {
  text-align: left;
  max-width: 420px;
  margin: 24px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-list li {
  background: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-left: 4px solid var(--red);
}
.problem-solution {
  font-weight: 700;
  color: var(--navy);
  font-size: 16.5px;
  max-width: 440px;
  margin: 0 auto;
}

/* ===== METHOD / REFRAME ===== */
.method { text-align: center; }
.method-intro {
  max-width: 480px;
  margin: 0 auto 26px;
  color: var(--gray);
  font-size: 15px;
}
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.method-step {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px 20px 60px;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.method-num {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-step h3 { font-size: 15.5px; color: var(--navy-dark); margin-bottom: 6px; }
.method-step p { font-size: 13.5px; color: var(--gray); margin: 0; }

/* ===== IMAGINE / DESEJO ===== */
.imagine {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  border-radius: 24px;
  max-width: 680px;
  margin: 30px auto;
  padding: 44px 22px;
}
.imagine h2 { color: #fff; }
.imagine .eyebrow { background: rgba(255,255,255,0.15); color: var(--gold); }
.imagine-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin: 24px 0 20px;
}
.imagine-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  line-height: 1.5;
}
.imagine-close {
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
}

/* ===== ABOUT ===== */
.about { text-align: center; }
.about p { max-width: 480px; margin: 0 auto 26px; color: var(--gray); font-size: 15px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}
.about-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.about-card .ico { font-size: 26px; }
.about-card h3 { font-size: 15px; margin: 10px 0 6px; color: var(--navy-dark); }
.about-card p { font-size: 12.5px; color: var(--gray); margin: 0; }

/* ===== AUDIENCE (PARA QUEM É) ===== */
.audience { text-align: center; }
.audience-cols {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.audience-col {
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.audience-col.yes { background: #f0fbf3; border: 1.5px solid #b8e6c4; }
.audience-col h3 { font-size: 17px; margin-bottom: 14px; color: var(--navy-dark); }
.audience-col li {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--navy-dark);
  padding-left: 22px;
  position: relative;
}
.audience-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2e9e52;
  font-weight: 800;
}

/* ===== COMPARE ===== */
.compare { text-align: center; }
.compare-intro {
  max-width: 480px;
  margin: 0 auto 24px;
  color: var(--gray);
  font-size: 14.5px;
}
.compare-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}
.compare-col {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.compare-col h3 { font-size: 16px; margin-bottom: 12px; color: var(--navy-dark); }
.compare-col li { font-size: 13.5px; margin-bottom: 8px; color: var(--gray); }
.highlight-col {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  position: relative;
  transform: scale(1.03);
  box-shadow: var(--shadow-strong);
}
.highlight-col h3 { color: #fff; }
.highlight-col li { color: rgba(255,255,255,0.92); }
.best-tag {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ===== TOC ===== */
.toc { text-align: center; }
.toc-intro { color: var(--gray); max-width: 460px; margin: 0 auto 26px; font-size: 15px; }
.toc-parts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 34px;
}
.toc-part {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  border-top: 3px solid var(--navy);
}
.toc-part-num {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.toc-part h3 { font-size: 17px; margin-bottom: 10px; color: var(--navy-dark); }
.toc-part li {
  font-size: 13.5px;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.toc-part li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.bonus-stack {
  background: linear-gradient(135deg, #fff4d9, #ffe6b3);
  border: 2px dashed var(--gold-dark);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: left;
}
.bonus-stack h3 {
  text-align: center;
  font-size: 17px;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.bonus-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.bonus-item span { font-size: 22px; }
.bonus-item strong { font-size: 14.5px; color: var(--navy-dark); }
.bonus-item p { font-size: 13px; color: var(--gray); margin: 2px 0 0; }

/* ===== STORY / AUTHENTICITY ===== */
.story { text-align: center; }
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 22px;
}
.story-step {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px 20px 62px;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.story-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -18px;
  width: 2px;
  height: 18px;
  background: repeating-linear-gradient(to bottom, var(--red) 0, var(--red) 4px, transparent 4px, transparent 8px);
}
.story-num {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-step h3 { font-size: 15.5px; color: var(--navy-dark); margin-bottom: 6px; }
.story-step p { font-size: 13.5px; color: var(--gray); margin: 0; }

.authenticity-compare {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  margin-bottom: 20px;
}
.auth-col {
  border-radius: 16px;
  padding: 20px 22px;
}
.auth-col.bad { background: #fdf1f1; border: 1.5px solid #f0c6c6; }
.auth-col.good { background: #f0fbf3; border: 1.5px solid #b8e6c4; }
.auth-col h3 { font-size: 15.5px; margin-bottom: 12px; color: var(--navy-dark); }
.auth-col li {
  font-size: 13.5px;
  margin-bottom: 9px;
  color: var(--gray);
  padding-left: 4px;
}
.fomo-line {
  background: #fff4d9;
  border: 1.5px dashed var(--gold-dark);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--navy-dark);
  font-weight: 600;
  text-align: left;
}

/* ===== TESTIMONIALS ===== */
.testimonials { text-align: center; }
.testimonial-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
  margin-top: 10px;
}
.testimonial-card {
  flex: 0 0 82%;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  text-align: left;
  scroll-snap-align: center;
}
.stars { color: var(--gold-dark); font-size: 15px; margin-bottom: 8px; }
.testimonial-card p { font-size: 14px; color: var(--navy-dark); margin-bottom: 12px; }
.testimonial-author { font-size: 13px; font-weight: 700; color: var(--red); }

/* ===== OFFER ===== */
.offer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  text-align: center;
  max-width: 100%;
  border-radius: 28px 28px 0 0;
  margin-top: 10px;
}
.offer h2 { color: #fff; font-size: 26px; }
.offer-sub { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 26px; }
.offer-card {
  background: #fff;
  color: var(--navy-dark);
  border-radius: 20px;
  padding: 26px 22px;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: var(--shadow-strong);
}
.offer-cover { max-width: 130px; margin: 0 auto 18px; border-radius: 6px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.25); }
.offer-includes { text-align: left; margin-bottom: 20px; }
.offer-includes p { font-size: 14px; margin-bottom: 8px; color: var(--navy-dark); }
.offer-price { margin-bottom: 18px; }
.offer-de { color: var(--gray); font-size: 14px; }
.offer-de s { color: #c33; }
.offer-por { font-size: 13px; color: var(--gray); margin-bottom: 2px; }
.offer-valor {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.offer-valor span { font-size: 18px; font-weight: 700; margin-left: 4px; }
.offer-parcelamento { font-size: 12px; color: var(--gray); margin-top: 4px; }
.payment-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}
.pay-badge {
  background: var(--cream);
  border: 1px solid #e6d9c2;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-dark);
}
.loss-line {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.scarcity {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  padding-bottom: 12px;
}

/* ===== FAQ ===== */
.faq { text-align: center; }
.faq-list { text-align: left; margin-top: 10px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.faq-item summary {
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  color: var(--navy-dark);
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 20px;
  color: var(--red);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 13.5px; color: var(--gray); margin-top: 10px; }

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border-radius: 24px;
  max-width: 680px;
  margin: 20px auto;
  padding: 40px 24px;
}
.final-cta h2 { color: #fff; font-size: 23px; margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.9); font-size: 14.5px; margin-bottom: 22px; }

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 26px 20px 40px;
  font-size: 12.5px;
  color: var(--gray);
}
.footer-note { margin-top: 6px; opacity: 0.8; }

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 100;
}
.sticky-price {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.2;
  white-space: nowrap;
}
.sticky-price s { color: #c33; }
.sticky-price strong { display: block; font-size: 17px; color: var(--red); font-family: 'Poppins', sans-serif; }
.btn-sticky {
  flex: 1;
  padding: 13px 10px;
  font-size: 13.5px;
}

/* ===== DESKTOP ENHANCEMENTS ===== */
@media (min-width: 760px) {
  .about-grid { grid-template-columns: repeat(4, 1fr); }
  .compare-table { flex-direction: row; align-items: stretch; }
  .compare-col { flex: 1; }
  .toc-parts { flex-direction: row; flex-wrap: wrap; }
  .toc-part { flex: 1 1 45%; }
  .method-steps { flex-direction: row; }
  .method-step { flex: 1; }
  .authenticity-compare { flex-direction: row; }
  .auth-col { flex: 1; }
  .story-timeline { flex-direction: row; flex-wrap: wrap; }
  .story-step { flex: 1 1 45%; }
  .story-step::after { display: none; }
  .hero h1 { font-size: 38px; max-width: 620px; }
  .hero-sub { max-width: 560px; font-size: 17px; }
  .section h2 { font-size: 30px; }
  .testimonial-card { flex: 0 0 32%; }
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}
