/* Self-Study Map — design tokens & base styles */

:root {
  /* Brand colors (light, default "Cream" palette) */
  --bg: #FAF5EC;
  --bg-2: #F2E9D2;
  --bg-3: #E8DCBF;
  --ink: #1A1814;
  --ink-2: #4A453B;
  --ink-3: #756F62;
  --line: rgba(26, 24, 20, 0.12);
  --line-2: rgba(26, 24, 20, 0.06);

  --orange: #E25C2A;
  --orange-deep: #BE4A1F;
  --yellow: #F4C84A;
  --yellow-2: #EAB72A;
  --blue: #2E6BA8;
  --blue-deep: #20507F;
  --red: #C8412E;
  --green: #4D8B5A;

  /* Roles (these get swapped by palette tweak) */
  --primary: var(--orange);
  --primary-deep: var(--orange-deep);
  --accent: var(--yellow);
  --secondary: var(--blue);

  /* Type */
  --f-serif: "Newsreader", "Source Serif 4", Georgia, serif;
  --f-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --f-hand: "Caveat", "Kalam", cursive;

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(26, 24, 20, 0.06), 0 1px 0 rgba(26, 24, 20, 0.04);
  --sh-md: 0 6px 24px -8px rgba(26, 24, 20, 0.12), 0 2px 8px -4px rgba(26, 24, 20, 0.08);
  --sh-lg: 0 24px 60px -20px rgba(26, 24, 20, 0.25), 0 8px 24px -12px rgba(26, 24, 20, 0.12);
  --sh-cta: 0 6px 0 var(--primary-deep), 0 14px 28px -10px rgba(226, 92, 42, 0.45);
}

/* Palette: Sunset (yellow-led) */
[data-palette="sunset"] {
  --primary: #EAB72A;
  --primary-deep: #BD8F12;
  --accent: #E25C2A;
  --secondary: #2E6BA8;
  --sh-cta: 0 6px 0 var(--primary-deep), 0 14px 28px -10px rgba(234, 183, 42, 0.45);
}

/* Palette: Indigo (blue-led, cooler) */
[data-palette="indigo"] {
  --primary: #2E6BA8;
  --primary-deep: #20507F;
  --accent: #F4C84A;
  --secondary: #E25C2A;
  --sh-cta: 0 6px 0 var(--primary-deep), 0 14px 28px -10px rgba(46, 107, 168, 0.45);
}

/* Palette: Olive (calm, intellectual) */
[data-palette="olive"] {
  --primary: #4D6B3B;
  --primary-deep: #344E25;
  --accent: #F4C84A;
  --secondary: #C8412E;
  --bg-2: #ECE5D2;
  --sh-cta: 0 6px 0 var(--primary-deep), 0 14px 28px -10px rgba(77, 107, 59, 0.45);
}

/* Dark mode */
[data-dark="1"] {
  --bg: #15130F;
  --bg-2: #1F1C16;
  --bg-3: #2A261D;
  --ink: #F5EFE0;
  --ink-2: #C9C2B0;
  --ink-3: #8A8474;
  --line: rgba(245, 239, 224, 0.12);
  --line-2: rgba(245, 239, 224, 0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  /* Soft brand backdrop visible on wide screens */
  background:
    radial-gradient(ellipse 800px 600px at 20% 0%, rgba(244, 200, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 600px 800px at 100% 50%, rgba(226, 92, 42, 0.08), transparent 60%),
    var(--bg);
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* The phone-width content column */
.lp-frame {
  max-width: 440px;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
  min-height: 100vh;
  box-shadow: 0 0 0 1px var(--line-2), 0 30px 80px -30px rgba(26, 24, 20, 0.25);
  overflow: hidden;
}

@media (max-width: 460px) {
  .lp-frame { box-shadow: none; max-width: 100%; }
  body { background: var(--bg); }
}

/* Typography helpers */
.serif { font-family: var(--f-serif); font-weight: 500; letter-spacing: -0.012em; }
.hand { font-family: var(--f-hand); }
.eyebrow {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* CTA */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 18px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  box-shadow: var(--sh-cta);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  text-decoration: none;
  position: relative;
}
.cta:hover { transform: translateY(-1px); }
.cta:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--primary-deep), 0 6px 14px -6px rgba(226, 92, 42, 0.35); }

.cta-meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cta-meta span { display: inline-flex; align-items: center; gap: 5px; }
.cta-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }

/* Section base */
.section {
  padding: 56px 24px;
  position: relative;
}
.section.alt { background: var(--bg-2); }
.section.dark { background: var(--ink); color: var(--bg); }
.section.dark .eyebrow { color: rgba(245, 239, 224, 0.55); }

.section h2.serif {
  font-size: 34px;
  line-height: 1.05;
  margin: 14px 0 0;
  letter-spacing: -0.02em;
}

.section p.lede {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 18px 0 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* Doodle helpers */
.doodle { position: absolute; pointer-events: none; }

/* Highlight (yellow marker behind word) */
.hl {
  background: linear-gradient(to top, color-mix(in oklch, var(--accent) 75%, transparent) 0%, color-mix(in oklch, var(--accent) 75%, transparent) 40%, transparent 41%);
  padding: 0 2px;
}

/* Circled word — yellow doodle circle behind text.
   isolation:isolate forces .circled to always own its stacking context,
   so the svg's z-index:-1 stays scoped here and doesn't escape behind the
   section background when parent transforms (reveal animation) resolve. */
.circled {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  isolation: isolate;
}
.circled svg {
  position: absolute;
  inset: -8% -8% -6% -8%;
  width: 116%;
  height: 115%;
  z-index: -1;
  pointer-events: none;
}

/* Underline squiggle */
.squiggle {
  display: inline-block;
  position: relative;
}
.squiggle svg {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -8px;
  width: 104%;
  height: 10px;
}

/* Tag pill */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
}
.section.alt .tag { background: var(--bg); }
.section.dark .tag { background: rgba(255,255,255,0.08); color: var(--bg); border-color: rgba(255,255,255,0.12); }

/* Cards */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
}
.section.alt .card { background: var(--bg); }

/* Lists */
.dor-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.dor-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
}
.dor-item .num {
  flex: 0 0 auto;
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  font-style: italic;
  line-height: 1;
  width: 26px;
}

/* Benefit cards */
.benefit {
  padding: 22px 20px;
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.benefit h3 {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  margin: 14px 0 8px;
  letter-spacing: -0.012em;
}
.benefit p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}
.benefit .b-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.04em;
}

/* Pricing box */
.offer {
  background: var(--bg);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
  position: relative;
}
.offer .seal {
  position: absolute;
  top: -22px; right: -10px;
  width: 86px; height: 86px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-hand);
  font-size: 18px;
  color: var(--ink);
  text-align: center;
  line-height: 1.05;
  transform: rotate(8deg);
}
.offer-row { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.offer-row:last-of-type { border-bottom: 0; }
.offer-row .ck {
  flex: 0 0 24px; height: 24px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--ink); font-size: 13px;
  margin-top: 2px;
}
.offer-row h4 {
  margin: 0 0 4px;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.offer-row p { margin: 0; font-size: 13px; color: var(--ink-3); line-height: 1.45; }
.offer-row .vl { font-size: 12px; font-weight: 600; color: var(--ink-2); display: block; margin-top: 4px; }

.offer-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed var(--line);
}
.offer-total .ot-l { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--ink-3); }
.offer-total .ot-l s { color: var(--ink-3); }
.offer-total .big {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 6px;
}
.offer-total .big .num {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.offer-total .big .lbl { font-size: 14px; color: var(--ink-2); font-weight: 500; }
.offer-total .parc { font-size: 13px; color: var(--ink-3); margin-top: 6px; }

/* Accordion */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 20px 0;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.3;
}
.acc-q .pl {
  flex: 0 0 24px; width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  transition: transform 0.25s ease, background 0.25s ease;
}
.acc-item[data-open="1"] .acc-q .pl { background: var(--primary); color: white; transform: rotate(45deg); }
.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc-a-inner {
  padding: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.acc-a-inner p { margin: 0 0 10px; }
.acc-a-inner p:last-child { margin: 0; }
.section.dark .acc { border-color: rgba(255,255,255,0.12); }
.section.dark .acc-item { border-color: rgba(255,255,255,0.12); }
.section.dark .acc-q { color: var(--bg); }
.section.dark .acc-q .pl { background: rgba(255,255,255,0.08); color: var(--bg); }
.section.dark .acc-a-inner { color: rgba(245, 239, 224, 0.75); }

/* Testimonial card */
.testi {
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 22px;
  position: relative;
}
.testi .quote {
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 16px;
}
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--f-serif);
  color: var(--ink);
  font-size: 15px;
}
.testi .name { font-weight: 600; font-size: 13px; color: var(--ink); }
.testi .loc { font-size: 12px; color: var(--ink-3); }
.testi .stars { color: var(--accent); font-size: 14px; letter-spacing: 1px; margin-bottom: 8px; }

/* Stat row */
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.stat {
  text-align: left;
}
.stat .num {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: block;
}
.section.dark .stat .num { color: var(--bg); }
.stat .lbl { font-size: 13px; color: var(--ink-3); margin-top: 6px; line-height: 1.3; }
.section.dark .stat .lbl { color: rgba(245, 239, 224, 0.6); }

/* Guarantee block */
.guarantee {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}
.guarantee .badge {
  width: 88px; height: 88px;
  margin: -50px auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--ink);
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  color: var(--ink);
}
.guarantee .badge .d { font-size: 32px; display: block; line-height: 1; }

/* Urgência */
.urgencia {
  background: linear-gradient(135deg, color-mix(in oklch, var(--primary) 12%, var(--bg)), var(--bg-2));
  border: 1px dashed var(--primary);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  margin-top: 28px;
}
.urgencia strong { color: var(--ink); font-weight: 700; }

/* Footer */
.lp-footer {
  padding: 36px 24px 56px;
  text-align: center;
  color: var(--ink-3);
  font-size: 12px;
  border-top: 1px solid var(--line);
}
.lp-footer img { width: 64px; margin: 0 auto 14px; opacity: 0.85; }

/* ─────────────────────────────────────────────────────────────────────────
 * DESKTOP LAYOUT (>= 900px)
 * Mobile-first stays as default; desktop expands sections to 2/3 columns,
 * scales typography up, and tightens the rhythm.
 * ───────────────────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
  body {
    background:
      radial-gradient(ellipse 1200px 900px at 15% 0%, rgba(244, 200, 74, 0.12), transparent 60%),
      radial-gradient(ellipse 900px 1200px at 100% 30%, rgba(226, 92, 42, 0.08), transparent 60%),
      var(--bg);
  }

  .lp-frame {
    max-width: 1180px;
    box-shadow: 0 0 0 1px var(--line-2), 0 40px 100px -30px rgba(26, 24, 20, 0.18);
  }

  .section {
    padding: 110px 80px;
  }

  .section h2.serif {
    font-size: 52px;
    max-width: 780px;
    margin-top: 18px;
  }
  .section p.lede {
    font-size: 19px;
    max-width: 620px;
    margin-top: 22px;
  }

  /* ── HERO ── 2-column: text/CTA left, visual right ───────────────────── */
  .hero {
    padding: 56px 80px 110px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    column-gap: 72px;
    row-gap: 0;
    align-items: start;
  }
  .hero .hero-brand { grid-column: 1 / -1; margin-bottom: 56px !important; }
  .hero .hero-title { grid-column: 1; font-size: 64px !important; line-height: 1.02 !important; }
  .hero .hero-title-suffix { font-size: 21px !important; margin-top: 18px !important; max-width: 480px; }
  .hero .hero-sub { grid-column: 1; font-size: 17px !important; max-width: 480px; margin: 24px 0 32px !important; }
  .hero .hero-visual { grid-column: 2; grid-row: 2 / 7; align-self: center; margin: 0 !important; max-width: 460px; justify-self: center; width: 100%; }
  .hero .cta { grid-column: 1; max-width: 400px; justify-self: start; }
  .hero .cta-meta { grid-column: 1; justify-content: flex-start; max-width: 400px; margin: 14px 0 0 !important; }
  .hero .hero-microproof { grid-column: 1; max-width: 400px; margin-top: 28px !important; }

  /* Hero brand bigger on desktop */
  .hero-brand-mark { width: 54px !important; height: 54px !important; }
  .hero-brand-mark svg { width: 44px !important; height: 44px !important; }
  .hero-brand-title { font-size: 20px !important; }
  .hero-brand-sub { font-size: 14px !important; }

  /* Hero visuals — scale up */
  .hero-visual-split { gap: 18px !important; }
  .hero-card { padding: 22px 20px !important; }
  .hero-visual-centered { height: 400px !important; }
  .hero-visual-centered .ring.r1 { width: 320px !important; height: 320px !important; }
  .hero-visual-centered .ring.r2 { width: 260px !important; height: 260px !important; }
  .hero-visual-centered .ring.r3 { width: 200px !important; height: 200px !important; }
  .hero-visual-centered svg[viewBox="0 0 120 130"] { width: 180px !important; height: 195px !important; }

  /* ── ABERTURA ── ─────────────────────────────────────────────────────── */
  .opening-body { max-width: 720px; font-size: 19px !important; }
  .opening-body p { margin-bottom: 22px !important; }
  .opening-pull { font-size: 32px !important; margin: 32px 0 !important; max-width: 700px; }

  /* ── DOR ── grid layout for items ────────────────────────────────────── */
  .dor-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 18px !important;
    margin-top: 48px !important;
    max-width: 1020px;
  }
  .dor-item { padding: 22px 24px !important; font-size: 16.5px !important; }
  .dor-item .num { font-size: 26px !important; width: 32px !important; }
  .dor-conclusion {
    margin-top: 48px !important;
    padding: 36px 40px !important;
    max-width: 820px;
  }
  .dor-conclusion p { font-size: 28px !important; }

  /* ── SOLUÇÃO ── 3-col steps ──────────────────────────────────────────── */
  .solucao-body { max-width: 720px; font-size: 19px !important; }
  .solucao-three {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px !important;
    margin-top: 48px !important;
  }
  .solucao-three::before { display: none; }
  .solucao-step { padding: 32px 28px 28px !important; padding-left: 28px !important; }
  .solucao-step-num {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 16px;
    font-size: 16px !important;
  }
  .solucao-step h3 { font-size: 22px !important; margin-bottom: 10px !important; }
  .solucao-step p { font-size: 15px !important; }
  .solucao-result {
    margin-top: 48px !important;
    padding: 32px 40px !important;
    font-size: 22px !important;
    max-width: 820px;
  }

  /* ── BENEFÍCIOS ── 3-col grid ────────────────────────────────────────── */
  .benefits-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px !important;
    margin-top: 48px !important;
  }
  .benefit { padding: 28px 26px !important; }
  .benefit h3 { font-size: 21px !important; margin: 18px 0 10px !important; }
  .benefit p { font-size: 15px !important; }

  /* ── ROADMAP ── side-by-side path + detail ───────────────────────────── */
  .roadmap {
    display: grid !important;
    grid-template-columns: minmax(320px, 380px) 1fr;
    gap: 64px !important;
    align-items: center;
    margin-top: 48px !important;
  }
  .roadmap-svg-wrap { margin-bottom: 0 !important; max-width: 380px; }
  .roadmap-detail { padding: 32px 32px !important; position: sticky; top: 24px; }
  .roadmap-detail h3 { font-size: 32px !important; }
  .roadmap-detail p { font-size: 16px !important; }
  .roadmap-callout {
    margin-top: 48px !important;
    padding: 24px 32px !important;
    font-size: 16px !important;
    max-width: 820px;
  }

  /* ── PROVA SOCIAL ── 3-col testimonials ─────────────────────────────── */
  .stat-row {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 32px !important;
    margin-top: 48px !important;
    max-width: 820px;
  }
  .stat .num { font-size: 56px !important; }
  .stat .lbl { font-size: 14px !important; }
  .testi-stack {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px !important;
    margin-top: 48px !important;
  }
  .testi { padding: 28px !important; }
  .testi .quote { font-size: 18px !important; }
  .testi-note { max-width: 720px; margin: 40px auto 0 !important; text-align: center; }

  /* ── OFERTA ── center the card, give it air ──────────────────────────── */
  .section.alt .offer, .offer {
    max-width: 620px;
    margin: 48px auto 0 !important;
    padding: 40px 40px !important;
  }
  .offer .seal { width: 110px; height: 110px; top: -30px; right: -20px; font-size: 22px; }
  .offer-row { padding: 18px 0 !important; }
  .offer-row h4 { font-size: 17px !important; }
  .offer-row p { font-size: 14.5px !important; }
  .offer-total .big .num { font-size: 72px !important; }

  /* ── OBJEÇÕES & FAQ ── center accordion ──────────────────────────────── */
  .acc { max-width: 820px; margin: 40px auto 0; }
  .acc-q { padding: 26px 0 !important; font-size: 18px !important; }
  .acc-q .pl { width: 30px !important; height: 30px !important; font-size: 18px !important; }
  .acc-a-inner { font-size: 16px !important; padding-bottom: 28px !important; max-width: 720px; }

  /* ── GARANTIA ── centered, framed ────────────────────────────────────── */
  .guarantee {
    max-width: 640px;
    margin: 60px auto 0;
    padding: 48px 48px !important;
  }
  .guarantee .badge { width: 110px; height: 110px; margin: -68px auto 24px; }
  .guarantee .badge .d { font-size: 40px; }
  .guarantee h2.serif { font-size: 38px !important; margin-top: 14px !important; }
  .guarantee p { font-size: 17px !important; max-width: 480px; margin-left: auto !important; margin-right: auto !important; }

  /* ── URGÊNCIA ── ─────────────────────────────────────────────────────── */
  .urg-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 48px !important;
  }
  .urg-card h3 { font-size: 28px !important; max-width: 540px; margin: 14px auto 16px !important; }
  .urg-card p { font-size: 16px !important; max-width: 540px; margin: 0 auto !important; }

  /* ── CTA FINAL ── center column, bigger price ────────────────────────── */
  .final-cta { padding: 110px 80px !important; }
  .final-cta > .reveal:first-child h2.serif { font-size: 64px !important; max-width: 820px; margin: 0 auto; text-align: center; }
  .final-cta .eyebrow { display: block; text-align: center; }
  .final-bullets {
    max-width: 720px;
    margin: 56px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px 32px;
  }
  .final-bullet { font-size: 16px !important; }
  .final-price {
    max-width: 480px;
    margin: 56px auto 32px !important;
    padding: 32px 40px !important;
  }
  .final-price-big { font-size: 88px !important; }
  .final-cta .cta { max-width: 420px; margin: 0 auto; display: flex; }
  .final-cta .cta-meta { justify-content: center; }
  .ps-block {
    max-width: 640px;
    margin: 60px auto 0 !important;
    padding-top: 36px !important;
    text-align: center;
  }
  .ps-block p { font-size: 16px !important; margin-bottom: 28px !important; }
  .ps-block .cta-secondary { max-width: 360px; margin: 0 auto; display: block; }

  /* Sticky CTA — match desktop frame width */
  .sticky-cta .sticky-inner { max-width: 1180px !important; padding: 0 80px; }
  .sticky-cta .sticky-info { flex: 0 0 auto; }
  .sticky-cta .sticky-btn { max-width: 320px; flex: 0 1 320px; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * WIDE DESKTOP (>= 1240px) — minor refinements
 * ───────────────────────────────────────────────────────────────────────── */
@media (min-width: 1240px) {
  .section { padding: 130px 96px; }
  .hero { padding: 64px 96px 130px !important; }
  .final-cta { padding: 130px 96px !important; }
}
