/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink:        #E91E8C;
  --pink-dark:   #C2157A;
  --pink-light:  #FCE4F3;
  --pink-pale:   #FEF0FA;

  --purple:      #7C3AED;
  --purple-light:#EDE9FF;

  --teal:        #0891B2;
  --teal-light:  #E0F7FA;

  --yellow:      #F59E0B;
  --yellow-light:#FFF8E1;

  --green-wa:    #25D366;
  --green-wa-dk: #1DA851;

  /* Textos e fundos — TODOS CLAROS */
  --ink:         #1E1B2E;
  --body-text:   #3D3A50;
  --muted:       #6B6880;
  --white:       #FFFFFF;
  --bg:          #FFFFFF;
  --bg-soft:     #F9F7FF;
  --bg-pink:     #FEF0FA;
  --bg-purple:   #F3F0FF;
  --border:      #EDE9F5;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(124,58,237,0.07);
  --shadow:    0 6px 28px rgba(124,58,237,0.12);
  --shadow-lg: 0 16px 56px rgba(30,27,46,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--body-text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img{ max-width: 100%; display: block; }

/* =============================================
   TOP BAR — colorida mas texto legível
   ============================================= */
.top-bar {
  background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.top-bar-line {
  display: block;
  height: 1px;
  width: 48px;
  background: rgba(255,255,255,0.45);
}

/* =============================================
   HERO — fundo claro com gradiente suave
   ============================================= */
.hero {
  position: relative;
  background: linear-gradient(150deg, #FEF0FA 0%, #F3F0FF 50%, #E0F7FA 100%);
  overflow: hidden;
  padding-top: 0;
}

.hero-deco { position: absolute; pointer-events: none; border-radius: 50%; }

.hero-deco--circle {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,30,140,0.08) 0%, transparent 70%);
  top: -100px; right: -80px;
}

.hero-deco--lines {
  width: 350px; height: 350px;
  bottom: 40px; left: -100px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
}

.hero-deco--dot-grid {
  width: 160px; height: 160px;
  top: 60px; right: 370px;
  background-image: radial-gradient(circle, rgba(233,30,140,0.15) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  border-radius: 0;
}

/* Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 40px 1fr 310px;
  min-height: 84vh;
  align-items: center;
  padding: 80px 24px 44px;
  position: relative;
  z-index: 1;
}

.hero-col-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-vertical-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}

.hero-col-main { padding: 0 44px 0 8px; }

.hero-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-headline--italic {
  display: block;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--body-text);
  font-weight: 400;
}

.hero-headline--big {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 0.93;
  color: var(--ink);
}

.hero-headline--big span {
  /* Gradiente na palavra VENDAS */
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-rule span:first-child { display:block; width:40px; height:2px; background:var(--pink); border-radius:2px; opacity:.4; }
.hero-rule span:last-child  { display:block; width:40px; height:2px; background:var(--purple); border-radius:2px; opacity:.4; }
.hero-rule-diamond { color: var(--pink); font-size: 0.5rem; }

.hero-subheadline {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--body-text);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-cta-note {
  font-size: 0.76rem;
  color: var(--muted);
}

/* ── BOTÃO PRINCIPAL ── */
.btn-fashion {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(233,30,140,0.35);
}

.btn-fashion:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(233,30,140,0.5);
}

.btn-fashion i { font-size: 1.15rem; }

@keyframes pulse-pink {
  0%,100% { box-shadow: 0 8px 28px rgba(233,30,140,0.35); }
  50%      { box-shadow: 0 10px 44px rgba(233,30,140,0.6); }
}
.pulse { animation: pulse-pink 2.2s ease-in-out infinite; }

/* ── LIVRO ── */
.hero-col-book {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-book-wrap { position: relative; }
.hero-book { display: flex; filter: drop-shadow(0 24px 48px rgba(124,58,237,0.25)); }

.book-spine {
  width: 22px;
  min-height: 340px;
  background: linear-gradient(180deg, var(--pink-dark) 0%, var(--purple) 100%);
  border-radius: 4px 0 0 4px;
}

.book-face {
  width: 200px;
  min-height: 340px;
  background: linear-gradient(150deg, #fff 0%, var(--bg-pink) 50%, var(--bg-purple) 100%);
  border-radius: 0 6px 6px 0;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  position: relative;
  border: 1px solid var(--border);
  border-left: none;
}

.book-face::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--teal));
  border-radius: 0 6px 0 0;
}

.book-face-kicker {
  font-size: 0.5rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.book-face-icon { color: var(--pink); font-size: 0.9rem; }

.book-face-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.book-face-subtitle {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6;
}

.book-face-rule {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 2px;
  opacity: 0.5;
}

.book-face-author {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
}

.book-shadow {
  position: absolute;
  bottom: -16px; left: 10px; right: -10px;
  height: 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.18), transparent 70%);
  filter: blur(6px);
}

.book-tag {
  position: absolute;
  top: 16px; right: -12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 10px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(233,30,140,0.35);
}

/* Stats */
.hero-stats {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-num sup {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  vertical-align: super;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.stat-sep { color: var(--pink-light); font-size: 0.55rem; }

/* =============================================
   COMPARTILHADOS
   ============================================= */
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-eyebrow.light { color: #fff; }
.section-eyebrow.light::before { background: #fff; }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-heading em {
  font-style: italic;
  color: var(--pink);
}

.section-heading.light { color: #fff; }
.section-heading.light em { color: #FFD600; }
.section-heading.left-align { text-align: left; }

.heading-ornament { font-size: 0.45rem; letter-spacing: 8px; color: var(--pink); opacity: 0.4; }
.heading-ornament.light { color: #fff; opacity: 0.4; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-eyebrow { justify-content: center; }
.section-header .section-eyebrow::before { display: none; }

.section-subtext {
  font-size: 0.97rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 14px auto 0;
  line-height: 1.8;
}

/* =============================================
   PAIN — fundo branco, cards com borda colorida
   ============================================= */
.section-pain {
  background: var(--bg);
  padding: 92px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.pain-card:hover {
  border-color: var(--pink);
  box-shadow: 0 8px 32px rgba(233,30,140,0.1);
  transform: translateY(-4px);
}

.pain-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--pink-light);
  line-height: 1;
}

.pain-card:hover .pain-number { color: var(--pink); opacity: 0.4; }

.pain-card p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.75;
}

.pain-card p strong {
  font-weight: 700;
  color: var(--ink);
}

.pain-close {
  background: linear-gradient(135deg, var(--bg-pink), var(--bg-purple));
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--border);
}

.pain-close-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.25;
}

.pain-close p {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.75;
  text-align: center;
  max-width: 480px;
  flex-shrink: 0;
}

.pain-close p strong { color: var(--pink); font-weight: 700; }
.pain-close p em { font-style: italic; color: var(--purple); }

/* =============================================
   QUOTE — gradiente colorido COM texto branco grande
   ============================================= */
.section-quote {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  padding: 80px 0;
  text-align: center;
}

.fashion-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.55;
  max-width: 660px;
  margin: 0 auto;
}

.fashion-quote em { color: #FFD600; font-style: italic; }

.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(255,255,255,0.22);
  line-height: 0;
  vertical-align: -0.44em;
  margin: 0 3px;
}

/* =============================================
   PRODUCT — fundo suave rosa/roxo
   ============================================= */
.section-product {
  background: linear-gradient(160deg, var(--bg-pink) 0%, var(--bg-purple) 100%);
  padding: 92px 0;
}

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

.product-frame {
  position: relative;
  width: 100%;
  max-width: 290px;
  aspect-ratio: 3/4;
  background: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(233,30,140,0.2), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
}

.product-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--teal));
}

.product-frame-inner {
  text-align: center;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.frame-label-top {
  font-size: 0.52rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.frame-icon { color: var(--pink); font-size: 0.85rem; }

.frame-title-big {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.frame-title-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

.frame-divider {
  width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 2px;
}

.frame-author {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--muted);
}

.frame-tag-bottom {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
}

.frame-corner {
  position: absolute;
  font-size: 0.5rem;
  color: var(--pink);
  opacity: 0.2;
}

.frame-corner--tl { top: 14px; left: 14px; }
.frame-corner--tr { top: 14px; right: 14px; }
.frame-corner--bl { bottom: 14px; left: 14px; }
.frame-corner--br { bottom: 14px; right: 14px; }

.product-desc {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.8;
  margin: 16px 0 26px;
}

.product-desc strong { color: var(--ink); font-weight: 700; }

.feature-list { display: flex; flex-direction: column; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.65;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child { border-bottom: none; }

.feat-dot {
  width: 8px; height: 8px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0; /* oculta o ✦ do HTML */
}

/* =============================================
   CHAPTERS — fundo roxo escuro (única seção escura)
   ============================================= */
.section-chapters {
  background: linear-gradient(135deg, #1E1B2E 0%, #2D1B4E 100%);
  padding: 92px 0;
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.chapter-item {
  display: flex;
  gap: 18px;
  padding: 28px 24px;
  background: rgba(30,27,46,0.85);
  transition: background 0.25s;
}

.chapter-item:hover { background: rgba(233,30,140,0.12); }

.chapter-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(233,30,140,0.18);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
  transition: color 0.25s;
}

.chapter-item:hover .chapter-num { color: rgba(233,30,140,0.5); }

.chapter-content h3 {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.35;
}

.chapter-content p {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* =============================================
   FOR WHOM — branco com cards coloridos
   ============================================= */
.section-forwhom {
  background: var(--bg);
  padding: 92px 0;
}

.forwhom-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.forwhom-yes {
  background: linear-gradient(150deg, var(--bg-pink), #fff);
  border: 2px solid #F4ADDB;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.forwhom-no {
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.forwhom-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid;
}

.forwhom-label.yes { color: var(--pink); border-color: #F4ADDB; }
.forwhom-label.no  { color: var(--muted); border-color: var(--border); }

.forwhom-yes ul, .forwhom-no ul {
  display: flex; flex-direction: column; gap: 13px;
}

.forwhom-yes li, .forwhom-no li {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.65;
  padding-left: 22px;
  position: relative;
}

.forwhom-yes li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--pink); font-weight: 700; font-size: 0.8rem;
}

.forwhom-no li::before {
  content: '✕';
  position: absolute; left: 0;
  color: var(--muted); font-size: 0.74rem;
}

/* =============================================
   AUTHOR — fundo suave, texto escuro legível
   ============================================= */
.section-author {
  background: var(--bg-soft);
  padding: 92px 0;
}

.author-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}

.author-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.portrait-photo-wrap {
  position: relative;
  width: 220px;
  height: 260px;
  flex-shrink: 0;
}

.portrait-photo {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 56px rgba(233,30,140,0.2), 0 4px 16px rgba(0,0,0,0.1);
}

.portrait-photo-ring {
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--teal));
  z-index: 0;
  opacity: 0.35;
}

/* mantém o frame legado oculto caso ainda exista */
.portrait-frame { display: none; }
.portrait-initials { display: none; }

.portrait-label {
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  max-width: 120px;
  line-height: 1.7;
}

.author-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 16px;
}

.author-name em { font-style: italic; color: var(--pink); }

.author-text p {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.82;
  margin-bottom: 12px;
  max-width: 520px;
}

.author-text p strong { color: var(--ink); font-weight: 700; }

/* =============================================
   OFFER — fundo claro com card branco
   ============================================= */
.section-offer {
  background: linear-gradient(150deg, var(--bg-purple) 0%, var(--bg-pink) 100%);
  padding: 92px 0;
  text-align: center;
}

.offer-wrap { max-width: 700px; }

.offer-editorial-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.offer-editorial-tag::before,
.offer-editorial-tag::after {
  content: '';
  display: block;
  height: 1px; width: 32px;
  background: var(--pink);
  opacity: 0.35;
}

.offer-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 40px;
}

.offer-headline em { font-style: italic; color: var(--pink); }

.offer-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: stretch;
  margin-bottom: 32px;
  text-align: left;
  box-shadow: 0 8px 40px rgba(233,30,140,0.1);
  overflow: hidden;
}

.offer-price-block {
  padding: 36px 32px;
  flex-shrink: 0;
  text-align: center;
  border-right: 1.5px solid var(--border);
  background: linear-gradient(160deg, var(--bg-pink), #fff);
}

.offer-de {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.offer-de s { text-decoration: line-through; }

.offer-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.offer-currency {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
}

.offer-value {
  font-family: var(--font-serif);
  font-size: 5.2rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.offer-cents {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 14px;
}

.offer-installment {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 7px;
}

.offer-divider-v { display: none; }

.offer-includes {
  padding: 30px 28px;
  flex: 1;
}

.offer-includes-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.offer-includes ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-includes li {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--body-text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.inc-dot {
  width: 7px; height: 7px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  font-size: 0;
}

/* Botão de compra */
.btn-fashion-buy {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 18px 46px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(233,30,140,0.4);
}

.btn-fashion-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(233,30,140,0.55);
}

.btn-fashion-buy i { font-size: 1.25rem; }

/* Garantia */
.offer-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.offer-guarantee i {
  font-size: 1.8rem;
  color: var(--yellow);
  flex-shrink: 0;
}

.offer-guarantee strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.offer-guarantee span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}

/* Pagamentos */
.offer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.offer-payments span {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* =============================================
   FAQ — branco, totalmente legível
   ============================================= */
.section-faq {
  background: var(--bg);
  padding: 92px 0;
}

.faq-wrap { max-width: 690px; }

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--pink); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.open { max-height: 300px; }

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--body-text);
  line-height: 1.8;
}

/* =============================================
   FINAL CTA — gradiente colorido, texto branco
   ============================================= */
.section-final-cta {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 60%, var(--teal) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-deco {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.final-cta-inner { position: relative; z-index: 1; max-width: 660px; }

.final-ornament { font-size: 0.45rem; letter-spacing: 10px; color: rgba(255,255,255,0.3); margin-bottom: 24px; }

.final-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
}

.final-headline em { font-style: italic; color: #FFD600; }

.final-sub {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin-bottom: 42px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.final-note { font-size: 0.76rem; color: rgba(255,255,255,0.55); margin-top: 16px; }

/* Botão branco sobre gradiente colorido */
.section-final-cta .btn-fashion-buy {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.section-final-cta .btn-fashion-buy i { color: var(--green-wa); }

.section-final-cta .btn-fashion-buy:hover {
  background: #fff;
  box-shadow: 0 14px 48px rgba(0,0,0,0.25);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--ink);
  padding: 40px 0;
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; gap: 8px; }

.footer-brand {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--pink), #FFD600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.footer p {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 64px 24px 0;
    text-align: center;
    gap: 44px;
  }

  .hero-col-side { display: none; }
  .hero-col-main { padding: 0; }
  .hero-kicker { justify-content: center; }
  .hero-kicker::before { display: none; }
  .hero-subheadline { margin: 0 auto 36px; }
  .hero-cta-wrap { align-items: center; }
  .hero-col-book { justify-content: center; }
  .hero-book-wrap { transform: scale(0.85); transform-origin: center; }

  .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-frame { max-width: 220px; margin: 0 auto; }

  .author-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .author-portrait { margin: 0 auto; }
  .author-text p { max-width: 100%; }

  .section-eyebrow { justify-content: center; }
  .section-eyebrow::before { display: none; }

  .offer-card { flex-direction: column; text-align: center; }
  .offer-price-block { border-right: none; border-bottom: 1.5px solid var(--border); }

  .forwhom-grid { grid-template-columns: 1fr; }
  .chapters-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-headline--big { letter-spacing: -1px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-close { flex-direction: column; gap: 10px; padding: 24px 18px; }
  .pain-close-line { width: 48px; flex: none; }
  .stat-item { padding: 0 16px; }
  .offer-guarantee { flex-direction: column; text-align: center; }
  .hero-book-wrap { transform: scale(0.72); transform-origin: center; }
}
