﻿:root {
  --bg: #fdfbf7;
  --bg-alt: #f4ecf7;
  --bg-deep: #1a0f2e;
  --bg-ink: #0f0818;
  --ink: #1a0f2e;
  --ink-soft: #4a3f55;
  --ink-mute: #8a7f95;
  --line: #e8dff0;
  --line-soft: #f2ebf5;
  --purple: #6b2fa0;
  --purple-dark: #4a1d7a;
  --purple-light: #f3e9f9;
  --purple-accent: #9b4dd8;
  --purple-soft: #d4b5ed;
  --red: #c5304a;
  --green: #1a6b47;
  --gold: #d4a017;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }

/* ============ LAYOUT ============ */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.container-wide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 56px 0; }

/* ============ TIPOGRAFIA ============ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.4rem, 5.8vw, 4rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.028em;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.55rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
h4 {
  font-size: 1.1rem;
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 8px;
}
p { margin-bottom: 20px; }
p:last-child { margin-bottom: 0; }
em, i {
  font-style: italic;
  font-family: var(--serif);
  color: var(--purple);
}
strong, b { font-weight: 700; color: var(--ink); }

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
  display: inline-block;
}
.kicker::before, .kicker::after {
  content: '—';
  display: inline-block;
  margin: 0 10px;
  opacity: 0.5;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--bg-ink);
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 100;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
}
.topbar strong { color: #e8b84d; font-weight: 700; }
body.scrolled .topbar {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}
body.scrolled .header { top: 0; }

/* ============ HEADER ============ */
.header {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(253, 251, 247, 0.96);
  position: sticky;
  top: 40px;
  z-index: 90;
  backdrop-filter: blur(8px);
  transition: top 0.35s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.header-brand img {
  width: 44px; height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(107, 47, 160, 0.15));
}
.header-text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.1;
  text-align: left;
}
.header-text span {
  font-style: italic;
  color: var(--purple);
  font-weight: 500;
  display: block;
  font-size: 14.5px;
  margin-top: 3px;
  letter-spacing: 0;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(107, 47, 160, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(107, 47, 160, 0.35);
}
.header-cta .arrow {
  transition: transform 0.3s;
}
.header-cta:hover .arrow {
  transform: translateX(3px);
}

/* ============ HERO ============ */
.hero {
  padding: 44px 0 56px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(155, 77, 216, 0.08) 0%, transparent 55%),
    var(--bg);
}
.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(107, 47, 160, 0.25));
  animation: gentleFloat 6s ease-in-out infinite;
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-tag {
  display: inline-block;
  padding: 7px 18px;
  background: var(--purple-light);
  color: var(--purple-dark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 26px;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { color: var(--purple); font-weight: 800; }
.hero-sub {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 auto 36px;
  max-width: 620px;
}

/* ============ CTA ============ */
.cta-wrap { text-align: center; margin: 32px auto 12px; }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(107, 47, 160, 0.28), 0 0 0 1px rgba(255,255,255,0.06) inset;
  font-family: var(--sans);
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.6s ease;
}
.cta:hover::before { left: 100%; }
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(107, 47, 160, 0.4), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.cta.big {
  padding: 18px 38px;
  font-size: 18px;
}
.cta.green {
  background: linear-gradient(135deg, #1f8558 0%, #156440 100%);
  box-shadow: 0 6px 18px rgba(26, 107, 71, 0.35);
}
.cta.green:hover { box-shadow: 0 10px 28px rgba(26, 107, 71, 0.5); }
.cta .arrow { transition: transform 0.3s; }
.cta:hover .arrow { transform: translateX(4px); }
.cta-sub {
  display: block;
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-mute);
}
.cta-sub strong { color: var(--ink); }
.cta-sub .sep { margin: 0 10px; opacity: 0.5; }

/* ============ HERO IMAGE ============ */
.hero-image {
  max-width: 500px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 15, 46, 0.25);
  position: relative;
}
.hero-image.hero-image-horiz {
  max-width: 780px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(26, 15, 46, 0.3);
}
.hero-image.hero-image-horiz img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-image img { width: 100%; display: block; }
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  border-radius: 16px;
  pointer-events: none;
}

/* ============ STATS ============ */
.stats-section {
  background: linear-gradient(135deg, var(--bg-deep) 0%, #2a1649 100%);
  padding: 60px 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(155, 77, 216, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-val {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: #e8b84d;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  max-width: 230px;
  margin: 0 auto;
}
.stat-lbl small { opacity: 0.65; font-size: 12px; display: block; margin-top: 2px; }

/* ============ LETTER ============ */
.letter-body {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.letter-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 22px;
}
.letter-body p.lead {
  font-size: 21px;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--ink);
  text-align: center;
}

/* ============ LISTS ============ */
.x-list, .check-list {
  list-style: none;
  padding: 0;
  margin: 28px auto;
  max-width: 580px;
  text-align: left;
}
.x-list li, .check-list li {
  padding: 14px 0 14px 38px;
  position: relative;
  font-size: 17.5px;
  line-height: 1.55;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.x-list li:last-child, .check-list li:last-child { border-bottom: none; }
.x-list li::before {
  content: '×';
  position: absolute;
  left: 0; top: 13px;
  width: 22px; height: 22px;
  background: #fde5e9;
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============ HIGHLIGHT BOX ============ */
.highlight-box {
  background: var(--purple-light);
  border-left: 4px solid var(--purple);
  padding: 26px 30px;
  margin: 36px auto;
  max-width: 620px;
  text-align: left;
  border-radius: 0 10px 10px 0;
}
.highlight-box p {
  margin-bottom: 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink);
}

/* ============ PULLQUOTE ============ */
.pullquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.8vw, 2.3rem);
  line-height: 1.3;
  color: var(--ink);
  padding: 32px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin: 36px auto;
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: 620px;
  text-align: center;
}
.pullquote em { color: var(--purple); font-style: italic; }

/* ============ VISUAL TRANSFORMATION SECTION ============ */
.transformation {
  background: linear-gradient(180deg, var(--bg) 0%, var(--purple-light) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
}
.transform-image {
  max-width: 540px;
  margin: 40px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(26, 15, 46, 0.3);
  position: relative;
}
.transform-image img { width: 100%; display: block; }
.transform-caption {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ ALT BG ============ */
.alt-bg { background: var(--bg-alt); }

/* ============ CHART SECTION ============ */
.chart-section {
  padding: 58px 0;
  background: #fff;
  text-align: center;
}
.chart-wrap {
  max-width: 760px;
  margin: 40px auto 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 32px 32px;
  box-shadow: 0 4px 20px rgba(107, 47, 160, 0.06);
}
.chart-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.chart-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.chart-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.legend-dot {
  width: 14px; height: 14px; border-radius: 50%;
  display: inline-block;
}
.legend-dot.red { background: var(--red); }
.legend-dot.purple { background: var(--purple-accent); }

/* ============ MODULES ============ */
.module {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 38px;
  margin-bottom: 20px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}
.module:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(107, 47, 160, 0.1);
  border-color: var(--purple-soft);
}
.module-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.module-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--purple);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.module h3 { margin: 0; flex: 1; }
.module p.desc {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.module ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.module ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.55;
}
.module ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* ============ VISUAL WARM SECTION ============ */
.warm-section {
  padding: 58px 0;
  text-align: center;
  background: linear-gradient(135deg, #fff9f2 0%, #f9f0e6 100%);
}
.warm-image {
  max-width: 520px;
  margin: 36px auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 15, 46, 0.22);
}
.warm-image img { width: 100%; display: block; }

/* ============ PRICE BOX ============ */
.price-section {
  padding: 68px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--purple-light) 100%);
  text-align: center;
}
.price-box {
  max-width: 580px;
  margin: 30px auto 0;
  background: #fff;
  border: 2px solid var(--purple);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(107, 47, 160, 0.18);
  text-align: center;
}
.price-head {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.price-body { padding: 42px 36px; }
.price-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.price-desc {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 28px;
}
.price-old {
  font-size: 17px;
  color: var(--ink-mute);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-main {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px 0;
  letter-spacing: -0.03em;
}
.price-main sup {
  font-size: 24px;
  top: -30px;
  font-weight: 500;
}
.price-installment {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.price-installment strong { color: var(--ink); }

.price-includes {
  background: var(--bg);
  border-radius: 10px;
  padding: 24px 26px;
  margin-bottom: 28px;
  text-align: left;
}
.price-includes h5 {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
  font-weight: 700;
  font-family: var(--sans);
  text-align: center;
}
.price-includes ul { list-style: none; padding: 0; margin: 0; }
.price-includes li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}
.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 7px;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
}

.cta-full {
  width: 100%;
  justify-content: center;
  display: flex;
}

/* ============ GUARANTEE ============ */
.guarantee {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px;
  margin: 28px auto 0;
  max-width: 580px;
  display: flex;
  gap: 22px;
  align-items: center;
  text-align: left;
}
.guarantee-seal {
  width: 82px; height: 82px;
  background: linear-gradient(135deg, #1f8558 0%, #156440 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(26, 107, 71, 0.3);
}
.guarantee-seal .num { font-size: 30px; margin-bottom: 3px; }
.guarantee-seal .txt { font-size: 10px; letter-spacing: 0.15em; font-weight: 700; font-family: var(--sans); }
.guarantee h4 { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; margin-bottom: 6px; }
.guarantee p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ============ FAQ ============ */
.faq-wrap { max-width: 720px; margin: 40px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  font-family: var(--sans);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--purple);
  transition: transform 0.3s;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--purple); }
.faq-item-body {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.final {
  background: linear-gradient(135deg, var(--bg-deep) 0%, #2a1649 100%);
  color: #fff;
  padding: 68px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(155, 77, 216, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.final-inner { position: relative; z-index: 2; }
.final-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(1.2);
}
.final h2 { color: #fff; margin-bottom: 24px; }
.final h2 em { color: #e0b4f5; }
.final p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  margin: 0 auto 36px;
  max-width: 580px;
}
.final .cta {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 6px 18px rgba(255,255,255,0.15);
}
.final .cta:hover {
  background: #f8f0ff;
  color: var(--purple-dark);
  box-shadow: 0 10px 28px rgba(255,255,255,0.25);
}
.final-trust {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

/* ============ DISCLAIMER ============ */
.disclaimer {
  background: #fdf6e3;
  padding: 32px 0;
  border-top: 3px solid #d4a017;
  text-align: center;
}
.disclaimer p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 720px;
  padding: 0 16px;
}
.disclaimer p strong { color: var(--ink); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg-ink);
  color: rgba(255,255,255,0.88);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  border-top: 1px solid rgba(155,77,216,0.3);
  font-size: 14px;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; flex: 1; min-width: 220px; }
.cookie-banner a { color: var(--purple-soft); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--sans);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
}
.cookie-btn-accept:hover { opacity: 0.9; }
.cookie-btn-essential {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-btn-essential:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ============ FOOTER ============ */
.foot {
  padding: 42px 0;
  text-align: center;
  background: var(--bg-ink);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.7;
}
.foot .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
}
.foot .brand img { width: 36px; height: 36px; object-fit: contain; }
.foot p { margin-bottom: 8px; max-width: 680px; margin-left: auto; margin-right: auto; padding: 0 20px; }
.foot .fine { font-size: 11.5px; opacity: 0.75; }
.foot a { color: #c89ef0; text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 700px) {
  body { font-size: 17px; }
  section { padding: 56px 0; }
  .container, .container-wide { padding: 0 18px; }
  .header { top: 36px; padding: 10px 0; }
  .header-brand img { width: 52px; height: 52px; }
  .header-text { font-size: 15px; }
  .header-text span { font-size: 12px; }
  .header-cta { padding: 10px 16px; font-size: 13px; }
  .header-cta .arrow { display: none; }
  .letter-body p { font-size: 17px; line-height: 1.7; }
  .letter-body p.lead { font-size: 19px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .module { padding: 28px 24px; }
  .module-header { flex-direction: column; gap: 8px; align-items: flex-start; }
  .price-body { padding: 32px 22px; }
  .price-main { font-size: 58px; }
  .guarantee { flex-direction: column; text-align: center; padding: 28px 22px; }
  .pullquote { font-size: 1.5rem; padding: 34px 0; margin: 36px auto; }
  .hero-logo { width: 100px; height: 100px; }
  .header img { width: 44px; height: 44px; }
}


/* ============ BONUSES SECTION (MODERNO) ============ */
.bonuses-section {
  background: linear-gradient(180deg, #fffaf0 0%, #fdf3e0 100%);
  padding: 68px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bonuses-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(212, 160, 23, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.bonuses-section .kicker::before,
.bonuses-section .kicker::after { opacity: 0.4; }
.bonuses-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.modern-bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.modern-bonus-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(107, 47, 160, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
}
.modern-bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(107, 47, 160, 0.1);
  border-color: var(--purple-soft);
}
.mb-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--bg-alt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.mb-content {
  flex: 1;
}
.mb-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mb-content h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  line-height: 1.2;
}
.mb-content p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.mb-value {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding-left: 20px;
  border-left: 1px dashed var(--line);
}
.mb-old {
  text-decoration: line-through;
  color: var(--ink-mute);
  font-size: 14px;
}
.mb-free {
  background: linear-gradient(135deg, var(--green) 0%, #0f5238 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(26, 107, 71, 0.2);
}

.bonuses-total {
  max-width: 640px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  box-shadow: 0 12px 40px rgba(26, 15, 46, 0.1);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}
.bonuses-total-inner { text-align: left; }
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
}
.total-label { color: var(--ink); }
.total-value { color: var(--ink-soft); font-weight: 600; white-space: nowrap; }
.total-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0;
}
.total-sum .total-label { font-weight: 700; font-size: 16px; }
.total-striked { text-decoration: line-through; color: var(--ink-mute); }
.total-final {
  margin-top: 18px;
  padding: 22px;
  background: linear-gradient(135deg, var(--purple-light) 0%, #fff5e0 100%);
  border-radius: 12px;
  text-align: center;
  border: 1px dashed var(--purple);
}
.total-final-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.total-final-value {
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 800;
  color: var(--purple-dark);
  line-height: 1;
  letter-spacing: -0.03em;
  display: inline-block;
}
.total-final-value sup {
  font-size: 20px;
  top: -24px;
  font-weight: 500;
}
.total-final-save {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .modern-bonus-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
  .mb-value {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    border-left: none;
    border-top: 1px dashed var(--line);
    padding-top: 16px;
  }
  .mb-value span { text-align: left; }
}

@media (max-width: 820px) {
  .bonuses-total { padding: 26px 22px; }
  .total-row { font-size: 14px; }
  .total-final-value { font-size: 54px; }
}

/* ============ LEGAL PAGES ============ */
.page-header {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(253,251,247,0.96);
  backdrop-filter: blur(8px);
}
.page-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.page-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
}
.page-header-brand img { width: 36px; height: 36px; object-fit: contain; }
.page-back {
  font-size: 13.5px;
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
}
.page-back:hover { text-decoration: underline; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 52px 28px 72px;
}
.legal-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
}
.legal-date {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 40px;
  display: block;
}
.legal-content h2 {
  font-size: 1.25rem;
  margin: 40px 0 12px;
  color: var(--purple-dark);
}
.legal-content p, .legal-content li {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 14px;
  text-align: left;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--purple); }

/* === Performance & SEO === */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-image img,
.transform-image img {
  width: 100%;
  object-fit: cover;
}

/* Core Web Vitals: reduce layout shift */
.hero-image img   { aspect-ratio: 16/9; }
.transform-image img { aspect-ratio: 4/3; }