/* ============================================================
   MANUAL ANTI-GOLPE DA FAMÍLIA — SITE DE VENDAS
   Identidade visual: Planner Prosperar
   Fraunces (display) · Outfit (corpo) · Caveat (acento)
   Paleta: floresta · papel · sálvia · âmbar · vermelho
   ============================================================ */

:root {
  --bg:         #F8F5EE;
  --white:      #FFFFFF;
  --forest:     #0F2318;
  --forest-mid: #1A3322;
  --paper:      #F8F5EE;
  --sage:       #E8EFE3;
  --cream:      #FAF0DC;
  --ink:        #0F2318;
  --muted:      #3A5A42;
  --quiet:      #6B8A72;
  --line:       rgba(15, 35, 24, 0.10);
  --red:        #C93A3F;
  --red-dark:   #9E2A2E;
  --green:      #2B5F3A;
  --green-dark: #1F4A2D;
  --amber:      #C4963A;
  --soft:       #E8EFE3;
  --dark:       #0F2318;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --font-hand:    'Caveat', cursive;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body { margin: 0; overflow-x: hidden; }
a { color: inherit; }
button { font: inherit; }

/* ── HEADER ─────────────────────────────────────────────── */

.sales-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: 66px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 245, 238, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.logo {
  display: grid;
  text-decoration: none;
  line-height: .9;
}
.logo b {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo span {
  color: var(--red);
  font-size: 10px;
  letter-spacing: .15em;
  font-weight: 700;
  font-family: var(--font-body);
}

.header-cta {
  padding: 11px 18px;
  border-radius: 4px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.14s;
}
.header-cta:hover { background: var(--green-dark); }

/* ── CONTAINERS ──────────────────────────────────────────── */

.sales-container {
  max-width: 1080px;
  margin: auto;
  padding: 64px 24px;
}
.narrow  { max-width: 860px; }
.center  { text-align: center; }

/* ── LABELS & TYPE ───────────────────────────────────────── */

.section-label {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.pain h2, .agitation h2, .solution h2, .benefits h2,
.inside h2, .deliverables h2, .for-you h2, .proof h2,
.offer h2, .objections h2, .faq h2, .closing h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}

/* ── MAIN CTA BUTTON ─────────────────────────────────────── */

.main-cta {
  max-width: 580px;
  min-height: 72px;
  margin: auto;
  padding: 14px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(43, 95, 58, .26);
  transition: transform 0.14s, box-shadow 0.14s;
}
.main-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(43, 95, 58, .32); }
.main-cta:active { transform: none; }
.main-cta span { font-size: 16px; font-weight: 700; letter-spacing: 0.04em; }
.main-cta small { margin-top: 5px; color: rgba(255,255,255,.72); font-size: 13px; }

.secure { margin: 13px 0 0; color: var(--quiet); font-size: 11px; }

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 80px 24px 72px;
  background-color: var(--paper);
  text-align: center;
  overflow: hidden;
}

/* Notebook ruled lines — signature from Planner Prosperar */
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom, transparent 0, transparent 39px,
    rgba(43, 95, 58, .09) 39px, rgba(43, 95, 58, .09) 40px
  );
  pointer-events: none;
}
/* Margin line */
.hero-lines::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: clamp(40px, 8vw, 110px);
  width: 1px;
  background: rgba(196, 150, 58, .18);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: auto;
}

.attention {
  display: inline-block;
  margin: 0 0 24px;
  padding: 9px 16px;
  border-radius: 3px;
  background: rgba(201, 58, 63, .09);
  border: 1px solid rgba(201, 58, 63, .2);
  color: var(--red-dark);
  font-size: 11px;
  letter-spacing: .07em;
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
}

.hero-lead {
  max-width: 700px;
  margin: 22px auto 32px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}
.hero-lead strong { color: var(--ink); font-weight: 700; }

/* Product mockup SVG */
.hero-product {
  margin: 8px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mockup-svg {
  width: min(760px, 100%);
  height: auto;
  display: block;
}

.hero-checks {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* ── PAIN ────────────────────────────────────────────────── */

.pain {
  background: var(--forest);
  color: #fff;
}

.phone-message {
  max-width: 520px;
  margin: 38px auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  background: #1A2F1F;
}
.phone-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.phone-contact span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-weight: 700;
  font-size: 15px;
}
.phone-contact b { font-size: 14px; color: rgba(255,255,255,.8); }
.phone-message > p {
  width: max-content;
  max-width: 82%;
  margin: 14px 0 0 auto;
  padding: 11px 14px;
  border-radius: 15px 15px 4px 15px;
  background: #2B3F30;
  font-size: 14px;
  color: rgba(255,255,255,.88);
}
.phone-message > p.urgent {
  background: rgba(201, 58, 63, .18);
  border: 1px solid rgba(201, 58, 63, .38);
}

.big-copy {
  margin: 38px 0 12px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}
.body-copy { color: var(--muted); font-size: 17px; line-height: 1.7; }
.pain .body-copy { color: rgba(255,255,255,.5); text-align: center; }

.red-box {
  margin-top: 35px;
  padding: 24px 28px;
  border-left: 4px solid var(--red);
  background: rgba(201, 58, 63, .10);
  border-radius: 0 4px 4px 0;
  display: grid;
  gap: 7px;
}
.red-box strong { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #fff; }
.red-box span { color: rgba(255,255,255,.5); font-size: 15px; }

/* ── AGITATION ───────────────────────────────────────────── */

.agitation { background: var(--white); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.copy-stack p { margin: 0 0 20px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.copy-stack p:last-child { margin: 0; }
.copy-stack strong { color: var(--ink); font-weight: 700; }

.story-image {
  margin: 56px 0 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(15, 35, 24, .14);
}
.story-image svg { display: block; width: 100%; height: auto; }
.story-image figcaption {
  padding: 14px 20px;
  background: var(--sage);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-top: 1px solid rgba(43, 95, 58, .12);
}

/* ── AGITATION split ─────────────────────────────────────── */

.agitation-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: center;
}

.agitation-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.agitation-copy .body-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.agitation-copy .body-copy strong { color: var(--ink); }
.agitation-copy .body-copy:last-child { margin: 0; }

.agitation-figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 35, 24, .13);
}
.agitation-figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── SOLUTION ────────────────────────────────────────────── */

.solution { background: var(--sage); }

.lead-copy {
  max-width: 720px;
  margin: 22px auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 44px 0;
  padding: 28px;
  border-top: 1px solid rgba(43, 95, 58, .18);
  border-bottom: 1px solid rgba(43, 95, 58, .18);
}
.rule span {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.rule i { color: var(--red); font-style: normal; font-size: 24px; }

/* ── EASE (facilidade / praticidade) ─────────────────────── */

.ease { background: var(--cream); }

.ease-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ease-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.ease-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.ease-copy > p strong { color: var(--ink); font-weight: 700; }

.ease-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 20px;
}
.ease-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ease-list li > span {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ease-list li b {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.ease-list li small {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Slot de imagem com placeholder visual */
.ease-image-slot {
  border-radius: 10px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}
.ease-image-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(15, 35, 24, .13);
}

.image-placeholder {
  width: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed rgba(43, 95, 58, .25);
  border-radius: 10px;
  background: rgba(43, 95, 58, .04);
  color: var(--quiet);
}
.image-placeholder span { font-size: 40px; opacity: .45; }
.image-placeholder p { margin: 0; font-size: 13px; font-weight: 600; letter-spacing: .05em; opacity: .5; }

@media (max-width: 800px) {
  .ease-grid { grid-template-columns: 1fr; gap: 40px; }
  .ease-image-slot { min-height: 280px; }
  .image-placeholder { min-height: 280px; }
}

/* ── BENEFITS ────────────────────────────────────────────── */

.benefits { background: var(--white); }
.title-limit { max-width: 820px; margin-left: auto !important; margin-right: auto !important; }

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 55px;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}
.benefit-list article {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.benefit-list article > span {
  color: var(--red);
  font: 700 13px ui-monospace, "SF Mono", Menlo;
  padding-top: 3px;
  flex-shrink: 0;
}
.benefit-list h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.benefit-list p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

.cta-mid { margin-top: 48px; }

/* ── MERCHANT ────────────────────────────────────────────── */

.merchant-section { background: var(--sage); }

.merchant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.merchant-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(15, 35, 24, .14);
  background: #F0EBE2;
}
.merchant-figure svg { display: block; width: 100%; height: auto; }

.merchant-grid h2 {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.merchant-grid > div > p:not(.section-label) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 16px 0 0;
}
.merchant-grid ul { padding: 0; margin: 24px 0 0; list-style: none; }
.merchant-grid li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(43, 95, 58, .15);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.merchant-grid li::before { content: '✓'; margin-right: 10px; color: var(--green); }

/* ── INSIDE ──────────────────────────────────────────────── */

.inside { background: var(--white); }

.inside-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.inside-header .section-label { color: var(--red); }
.inside-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 18px;
}
.inside-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

/* ── FEAT LIST (dentro do manual) ───────────────────────── */

.feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
/* alternância verde → branco → vermelho por item individual */
.feat-list li:nth-child(3n+1) { background: var(--sage); }
.feat-list li:nth-child(3n+2) { background: var(--white); }
.feat-list li:nth-child(3n+3) { background: rgba(201,58,63,.08); }

/* número acompanha a cor de cada seção */
.feat-list li:nth-child(3n+2) .feat-num { background: var(--forest); }
.feat-list li:nth-child(3n+3) .feat-num { background: var(--red); }

.feat-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feat-body { display: flex; flex-direction: column; gap: 6px; }

.feat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--quiet);
  margin-bottom: 2px;
}

.feat-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.feat-body p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.inside-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ── BENTO RESPONSIVO ────────────────────────────────────── */

/* ── FOR YOU ─────────────────────────────────────────────── */

.for-you { background: var(--forest); color: #fff; }
.for-you .section-label { color: var(--amber); }
.for-you h2 { color: #fff; }

.yes-list { margin-top: 38px; text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; }
.yes-list p {
  margin: 0;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,.9);
}
.yes-list p::first-letter { color: #55c88a; }

/* ── PROOF ───────────────────────────────────────────────── */

.proof { background: var(--white); }

.secondary-link {
  display: inline-block;
  margin: 18px 0 40px;
  color: var(--green-dark);
  font-weight: 700;
  text-underline-offset: 5px;
  text-decoration: underline;
}
.honesty-note {
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--sage);
  border-radius: 4px;
  display: grid;
  gap: 8px;
  text-align: left;
}
.honesty-note strong { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.honesty-note span { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ── OFFER ───────────────────────────────────────────────── */

.offer {
  background: linear-gradient(180deg, var(--sage) 0%, var(--cream) 100%);
}
.offer-card {
  padding: 56px;
  border: 1px solid rgba(43, 95, 58, .16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 35, 24, .10);
  text-align: center;
}
.offer-items { margin: 35px 0; border-top: 1px solid var(--line); text-align: left; }
.offer-items p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.offer-items b { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }

.offer-price { display: grid; justify-items: center; margin: 8px 0 0; }
.offer-price small { font-weight: 700; letter-spacing: 0.08em; font-size: 11px; color: var(--muted); }
.offer-price strong {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 88px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.offer-price sup { font-size: 32px; vertical-align: 32px; }
.offer-price span { color: var(--muted); font-size: 13px; margin-top: 2px; }
.offer-card .main-cta { margin-top: 28px; }

.offer-reassurance {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 22px 0;
  color: var(--quiet);
  font-size: 12px;
}

.guarantee {
  max-width: 520px;
  margin: 32px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}
.guarantee > div {
  flex: 0 0 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
}
.guarantee p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.guarantee strong { display: block; color: var(--ink); font-size: 16px; margin-bottom: 4px; }

/* ── OBJECTIONS ──────────────────────────────────────────── */

.objections { background: var(--white); }

.objection-list { margin-top: 40px; }
.objection-list article { padding: 26px 0; border-bottom: 1px solid var(--line); }
.objection-list h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.objection-list p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 15px; }

/* ── SOCIAL PROOF ───────────────────────────────────────── */

.social-proof { background: var(--sage); }

.sp-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.social-proof .section-label { color: var(--green); }

.sp-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

.sp-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.sp-inner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(15,35,24,.13);
}

@media (max-width: 600px) {
  .sp-inner {
    padding-left: 0;
    padding-right: 0;
  }
  .sp-inner > *:not(img) {
    padding-left: 24px;
    padding-right: 24px;
  }
  .sp-inner img {
    align-self: stretch;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ── FAQ ─────────────────────────────────────────────────── */

.faq { background: var(--paper); }

.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }

.faq summary {
  padding: 22px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--green);
  font-family: var(--font-display);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.18s;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 2px 22px; color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ── RECOGNITION ─────────────────────────────────────────── */

.recognition { background: var(--white); }

.scam-bubbles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
  text-align: left;
}
.bubble-card {
  padding: 24px;
  border-radius: 8px;
}
.bubble-card.danger {
  background: rgba(201, 58, 63, .05);
  border: 1px solid rgba(201, 58, 63, .18);
  border-left: 4px solid var(--red);
}
.bubble-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--red);
  margin-bottom: 10px;
}
.bubble-card p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--muted); font-style: italic; }
.recognition-note {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--muted);
}

/* ── PAIN (dark) ─────────────────────────────────────────── */

.pain { background: var(--forest); color: #fff; }

.pain-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 64px;
}
.pain-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin: 0 0 20px;
}
.pain-copy p { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.7; margin: 0 0 16px; }
.pain-copy p strong { color: rgba(255,255,255,.9); font-weight: 700; }
.pain-copy p:last-of-type { margin-bottom: 0; }

.pain-image { margin: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.pain-image img { display: block; width: 100%; height: auto; }

.pain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin: 32px 0 10px;
}
.pain-stats > div {
  padding: 22px 18px;
  background: rgba(201, 58, 63, .10);
  border: 1px solid rgba(201, 58, 63, .20);
  border-radius: 4px;
}
.pain-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pain-stats span { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.45; }
.pain-source { font-size: 11px; color: rgba(255,255,255,.25); margin: 0; }

.golpe-types {
  padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.golpe-types-header {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}
.types-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--amber);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.golpe-types-header h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.golpe-types-header h3 em {
  font-style: normal;
  color: var(--amber);
}
.types-sub {
  color: rgba(255,255,255,.5);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.type-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  transition: background 0.15s, transform 0.15s;
}
.type-item:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.type-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  opacity: .7;
}
.type-body { display: flex; flex-direction: column; gap: 5px; }
.type-body b {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  line-height: 1.3;
}
.type-body small {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.golpe-types-footer {
  margin-top: 48px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,.10);
  text-align: center;
}
.gtf-title {
  margin: 0 auto;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--amber);
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.golpe-types-footer p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.6;
}

/* ── MERCHANT (image override) ───────────────────────────── */

.merchant-figure { margin: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 20px 50px rgba(15,35,24,.14); }
.merchant-figure img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ── INSIDE (chapters) ───────────────────────────────────── */

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.chapter-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  border-top: 3px solid var(--green);
}
.chap-num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.chapter-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.chapter-card p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── CLOSING (real image) ────────────────────────────────── */

.closing {
  background: var(--forest);
  color: #fff;
}
.closing-content {
  width: 100%;
  padding-top: 64px;
  padding-bottom: 64px;
}
.closing h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.08;
}
.closing .lead-copy { color: rgba(255,255,255,.6); margin: 20px auto 36px; }
.closing .secure { color: rgba(255,255,255,.4); }

/* ── PRICE ANCHOR ────────────────────────────────────────── */

.price-anchor {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}
.price-anchor em { color: var(--red); font-style: normal; font-weight: 700; }

/* ── FOOTER ──────────────────────────────────────────────── */

footer {
  padding: 40px 24px;
  text-align: center;
  background: #080F0B;
  color: rgba(255,255,255,.4);
  font-size: 13px;
}
footer b { color: rgba(255,255,255,.8); font-family: var(--font-display); font-size: 15px; font-weight: 700; display: block; margin-bottom: 8px; }
footer p { margin: 8px 0; line-height: 1.65; }
footer a { color: rgba(255,255,255,.6); text-underline-offset: 3px; }

/* ── STICKY BUY BAR (MOBILE) ─────────────────────────────── */

.sticky-buy { display: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 800px) {
  body { padding-bottom: 72px; }

  .sales-header { height: 58px; padding: 0 16px; }
  .header-cta { font-size: 10px; padding: 10px 13px; }

  .hero { padding: 52px 16px 60px; }
  .attention { font-size: 10px; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 17px; }
  .hero-checks { flex-wrap: wrap; gap: 8px; justify-content: center; }

  .sales-container { padding: 48px 18px; }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .agitation-split { grid-template-columns: 1fr; gap: 32px; }
  .benefit-list { grid-template-columns: 1fr; gap: 0; }

  .rule { gap: 12px; padding: 22px 8px; }
  .rule span { font-size: 22px; }
  .rule i { font-size: 18px; }

  .scam-bubbles { grid-template-columns: 1fr; }
  .pain-split { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
  .pain-stats { grid-template-columns: 1fr; gap: 12px; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-list { grid-template-columns: 1fr; border-left: none; }
  .feat-list li { border-left: none; border-right: none; padding: 28px 4px; gap: 16px; }

  .merchant-grid { grid-template-columns: 1fr; gap: 36px; }

  .offer-card { padding: 36px 20px; }
  .offer-reassurance { display: grid; gap: 10px; }

  .closing { min-height: auto; }

  .sticky-buy {
    position: fixed;
    z-index: 40;
    left: 0; right: 0; bottom: 0;
    height: 72px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(0,0,0,.10);
  }
  .sticky-buy > div { display: grid; gap: 1px; }
  .sticky-buy small { font-size: 11px; color: var(--quiet); font-weight: 600; }
  .sticky-buy a {
    padding: 14px 16px;
    border-radius: 4px;
    background: var(--green);
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.3;
  }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 28px; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-body h3 { font-size: 17px; }
  .feat-body p  { font-size: 15px; }
  .offer-price strong { font-size: 70px; }
  .yes-list p { font-size: 15px; }
  .benefit-list article { flex-direction: column; gap: 8px; }
  .scam-bubbles { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
