/* ==========================================================
   ALMA DE TERAPEUTA — Landing Page
   Palette: cream + ivory backgrounds, antique gold accents
   Typography: Playfair Display (titles), Manrope (body)
   ========================================================== */

:root {
  --cream: #faf6ee;
  --ivory: #f4ecdd;
  --warm-white: #fbf8f2;
  --gold: #b89759;
  --gold-deep: #9a7c43;
  --gold-light: #d4b67a;
  --gold-soft: #e6d3a8;
  --ink: #2b2419;
  --ink-soft: #5a4f3f;
  --line: rgba(184, 151, 89, 0.28);
  --shadow: 0 24px 60px -28px rgba(154, 124, 67, 0.45);
  --shadow-soft: 0 12px 30px -16px rgba(154, 124, 67, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Subtle vertical-line texture across whole page background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent 59px,
    rgba(154, 124, 67, 0.04) 59px,
    rgba(154, 124, 67, 0.04) 60px
  );
}

/* Apply same vertical-line wash on top of opaque section backgrounds so the texture
   carries through every section, not just the body. */
.section::after,
.bio-section::after,
.trust::after,
.guarantee::after,
.hero::after,
.faq-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent 59px,
    rgba(154, 124, 67, 0.025) 59px,
    rgba(154, 124, 67, 0.025) 60px
  );
}
.section > *,
.bio-section > *,
.trust > *,
.guarantee > *,
.hero > *,
.faq-section > * { position: relative; z-index: 1; }
/* Keep all section content above the texture */
body > * { position: relative; z-index: 1; }

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

/* ----- Typography ----- */
.serif { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; letter-spacing: -0.01em; }
.script {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-weight: 400;
  font-style: normal;
  color: var(--gold);
}
.smallcaps {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-deep);
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 500; color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -0.015em; }
p { margin: 0; }

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 880px; }

.section { padding: 110px 0; position: relative; }
.section-tight { padding: 80px 0; }

/* ----- Decorative divider ----- */
.divider-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 22px 0;
}
.divider-ornament::before, .divider-ornament::after {
  content: ''; flex: 1; max-width: 110px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
}
.divider-ornament .diamond {
  width: 8px; height: 8px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}

.gold-line {
  width: 64px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 18px auto;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 18px 38px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(135deg, #c9a868 0%, #b89759 50%, #9a7c43 100%);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 rgba(0,0,0,0.12) inset,
    0 14px 30px -10px rgba(154, 124, 67, 0.55);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  position: relative;
  outline: none;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 -1px 0 rgba(0,0,0,0.12) inset, 0 18px 36px -10px rgba(154,124,67,0.65); }
.btn:active { transform: translateY(1px); }
.btn .arrow { font-size: 18px; letter-spacing: 0; }

.btn-outline {
  background: transparent;
  color: var(--gold-deep);
  border: 1px solid var(--gold);
  box-shadow: none;
}
.btn-outline:hover { background: var(--gold); color: var(--cream); }

.btn-lg { padding: 22px 48px; font-size: 14px; }

/* ----- Card ----- */
.card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }

/* ----- Icon circles (line-art gold) ----- */
.icon-circle {
  width: 54px; height: 54px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
  background: rgba(255,255,255,0.4);
}
.icon-circle.lg { width: 72px; height: 72px; }
.icon-circle svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.icon-circle.lg svg { width: 34px; height: 34px; }

/* ----- Photo placeholder (BG simulating Ana's photo) -----
   Soft cream/ivory gradients with golden particles + sparkle to evoke
   the reference ad backdrop. */
.ana-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 78% 55%, rgba(212,182,122,0.32) 0%, rgba(212,182,122,0) 60%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(184,151,89,0.22) 0%, rgba(184,151,89,0) 70%),
    radial-gradient(ellipse 50% 40% at 75% 30%, rgba(255,250,230,0.6) 0%, rgba(255,250,230,0) 70%),
    linear-gradient(135deg, #fbf8f2 0%, #f4ecdd 45%, #e9dcc1 100%);
  overflow: hidden;
}
.ana-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 25%, rgba(255,240,200,0.9) 0%, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255,240,200,0.7) 0%, transparent 1.5px),
    radial-gradient(circle at 65% 75%, rgba(255,240,200,0.8) 0%, transparent 1px),
    radial-gradient(circle at 90% 35%, rgba(255,240,200,0.6) 0%, transparent 1px),
    radial-gradient(circle at 60% 50%, rgba(255,240,200,0.5) 0%, transparent 1px),
    radial-gradient(circle at 78% 90%, rgba(255,240,200,0.7) 0%, transparent 1.5px);
  background-size: 100% 100%;
  pointer-events: none;
}
.ana-bg::after {
  /* silhouette suggesting the figure on the right side */
  content: '';
  position: absolute;
  right: -5%;
  bottom: 0;
  width: 55%;
  height: 95%;
  background:
    radial-gradient(ellipse 45% 55% at 55% 40%, rgba(255,245,225,0.55) 0%, rgba(255,245,225,0) 70%),
    radial-gradient(ellipse 35% 70% at 50% 70%, rgba(255,250,235,0.7) 0%, rgba(255,250,235,0) 70%);
  filter: blur(4px);
  pointer-events: none;
}

/* Sparkle particles overlay */
.sparkles {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(212,182,122,0.6) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(212,182,122,0.4) 1px, transparent 1.5px);
  background-size: 60px 60px, 110px 110px;
  background-position: 12px 24px, 50px 80px;
  opacity: 0.4;
}

/* Gold shimmer ribbon */
.ribbon {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 0%, rgba(212,182,122,0.4) 40%, rgba(255,235,190,0.7) 50%, rgba(212,182,122,0.4) 60%, transparent 100%);
  filter: blur(8px);
}

/* ----- Reveal animation ----- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ----- Scrollbar ----- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 10px; }

/* ----- Top promo bar ----- */
.promo-bar {
  background: linear-gradient(90deg, #2b2419 0%, #3a311f 50%, #2b2419 100%);
  color: var(--gold-light);
  text-align: center;
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.promo-bar .pulse-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-right: 10px; vertical-align: middle;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* ----- Nav ----- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: 1180px; margin: 0 auto;
}
.nav-logo img { height: 42px; }
.nav-cta { font-size: 11px; padding: 12px 22px; }

/* ----- Hero ----- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  padding: 60px 0 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero .container { width: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 2;
  height: 100%;
}
.hero-text { padding-bottom: 60px; align-self: center; }
.hero-photo-wrap { height: 100%; display: flex; align-items: flex-end; justify-content: center; }
.hero-photo-wrap img { max-height: calc(100vh - 100px); width: auto !important; }
.hero h1 {
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 1.05;
  margin: 22px 0;
}
.hero h1 .script { font-size: 1.05em; line-height: 0.9; display: block; margin-top: 4px; color: var(--gold); }
.hero-list { list-style: none; padding: 0; margin: 36px 0 44px; display: grid; gap: 16px; }
.hero-list li { display: flex; align-items: center; gap: 18px; }
.hero-list .line { flex: 1; height: 1px; background: var(--line); position: relative; max-width: 80px; }
.hero-list .line::after { content: ''; position: absolute; right: -4px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 6px; height: 6px; background: var(--gold); }
.hero-list span.label { font-size: 17px; color: var(--ink-soft); font-weight: 500; }

.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(154,124,67,0.5);
}

/* ----- Trust strip ----- */
.trust {
  position: relative;
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.trust-item:last-child { border-right: none; }
.trust-item .label { font-size: 13px; color: var(--ink-soft); line-height: 1.3; }

/* ----- Section header ----- */
.section-head { text-align: center; margin-bottom: 70px; }
.section-head h2 { font-size: clamp(34px, 4.2vw, 56px); margin-top: 12px; }
.section-head h2 .script { display: block; line-height: 0.9; margin-top: 2px; }
.section-head p { color: var(--ink-soft); max-width: 640px; margin: 22px auto 0; font-size: 17px; }

/* ----- Pains grid ----- */
.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: 36px 28px;
  border-radius: 4px;
  position: relative;
  transition: all .3s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.pain-card .icon-circle { margin-bottom: 22px; }
.pain-card h3 { font-size: 22px; margin-bottom: 12px; line-height: 1.25; }
.pain-card p { color: var(--ink-soft); font-size: 15px; }

/* ----- Benefits ----- */
.benefits-section { background: var(--cream); position: relative; }
.benefits-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(184,151,89,0.06), transparent 60%);
  pointer-events: none;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.benefit-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  padding: 36px 28px;
  text-align: left;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--gold);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.benefit-card .icon-circle { margin-bottom: 22px; }
.benefit-card h3 { font-size: 21px; margin-bottom: 10px; line-height: 1.25; color: var(--ink); }
.benefit-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* ----- VSL ----- */
.vsl-wrap {
  max-width: 920px; margin: 0 auto;
  position: relative;
}
.vsl-frame {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2b2419, #3a311f);
  border: 1px solid var(--gold);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.vsl-frame::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(184,151,89,0.18) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(184,151,89,0.05) 30px, rgba(184,151,89,0.05) 31px);
}
.vsl-play {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(184,151,89,0.95);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 12px rgba(184,151,89,0.15), 0 0 0 24px rgba(184,151,89,0.08);
  transition: transform .3s;
}
.vsl-frame:hover .vsl-play { transform: scale(1.06); }
.vsl-play::after {
  content: ''; width: 0; height: 0;
  border-left: 22px solid var(--cream);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.vsl-caption { position: absolute; bottom: 24px; left: 24px; color: var(--gold-light); font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; }

/* ----- Bio section with BG ----- */
.bio-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
}
.bio-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 22% 60%, rgba(212,182,122,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(184,151,89,0.2) 0%, transparent 70%),
    linear-gradient(135deg, #f4ecdd 0%, #fbf8f2 50%, #ede0c5 100%);
}
.bio-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.bio-photo {
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(154,124,67,0.55);
}
.bio-photo .ana-bg::after {
  right: 10%;
  width: 70%;
}
.bio-text h2 { font-size: clamp(38px, 4.5vw, 60px); margin: 18px 0 28px; }
.bio-text h2 .script { font-size: 1.15em; display: block; line-height: 0.9; margin-top: 4px; }
.bio-text p { color: var(--ink-soft); font-size: 17px; margin-bottom: 20px; line-height: 1.75; }
.bio-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 44px;
  padding-top: 36px; border-top: 1px solid var(--line);
}
.bio-stat .num { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--gold-deep); line-height: 1; }
.bio-stat .label { font-size: 13px; color: var(--ink-soft); margin-top: 8px; letter-spacing: 0.05em; }

/* ----- Journey timeline ----- */
.journey {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute;
  left: 38px; top: 30px; bottom: 30px;
  width: 1px; background: var(--gold-soft);
}
.timeline-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  position: relative;
}
.timeline-day {
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--warm-white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--gold-deep);
  position: relative; z-index: 2;
}
.timeline-day .num { font-size: 30px; line-height: 1; }
.timeline-day .label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.timeline-content h3 { font-size: 26px; margin-bottom: 8px; }
.timeline-content p { color: var(--ink-soft); font-size: 16px; }

/* ----- Includes / What you receive ----- */
.includes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.include-item {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  padding: 24px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  align-items: start;
}
.include-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.include-item h4 { font-size: 19px; margin-bottom: 6px; }
.include-item p { color: var(--ink-soft); font-size: 14px; }

/* ----- Bonus grid ----- */
.bonus-section { background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%); }
.bonus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.bonus-card {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 26px;
  position: relative;
  transition: all .3s ease;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--gold-light); }
.bonus-tag {
  position: absolute; top: 0; right: 24px;
  background: var(--gold);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 0 0 4px 4px;
}
.bonus-card .icon-circle { margin-bottom: 20px; }
.bonus-card h4 { font-size: 20px; margin-bottom: 10px; line-height: 1.25; }
.bonus-card p { color: var(--ink-soft); font-size: 14px; }
.bonus-value { display: inline-block; margin-top: 14px; color: var(--gold-deep); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; }

/* ----- Testimonials carousel ----- */
.testi-carousel {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 20px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.testi-viewport {
  overflow: hidden;
  width: 100%;
}
.testi-track {
  display: flex;
  transition: transform .6s cubic-bezier(.6,.05,.2,1);
  width: 100%;
}
.testi-slide {
  padding: 0 12px;
  box-sizing: border-box;
}
.testi-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--warm-white);
  color: var(--gold-deep);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, transform .2s;
  padding: 0;
}
.testi-arrow:hover { background: var(--gold); color: var(--cream); transform: scale(1.05); }
.testi-arrow:active { transform: scale(0.96); }

.testi-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 36px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .25s;
}
.testi-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

@media (max-width: 700px) {
  .testi-carousel { grid-template-columns: 40px 1fr 40px; gap: 8px; }
  .testi-arrow { width: 40px; height: 40px; }
  .testi-slide { padding: 0 6px; }
}
.testimonials-section { background: var(--cream); }
.testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.testi {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px;
  position: relative;
}
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--gold-soft);
  position: absolute;
  top: 14px; right: 28px;
  line-height: 1;
}
.testi-stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 16px; font-size: 14px; }
.testi-text { color: var(--ink-soft); font-style: italic; font-size: 15px; line-height: 1.7; }
.testi-author {
  display: flex; align-items: center; gap: 14px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}
.testi-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.testi-loc { font-size: 12px; color: var(--ink-soft); }

/* ----- Pricing ----- */
.pricing-section {
  background:
    linear-gradient(180deg, rgba(244,236,221,0.92) 0%, rgba(237,224,197,0.96) 100%),
    url('assets/oferta-bg.png') center/cover no-repeat;
  background-attachment: scroll, scroll;
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(251,248,242,0.5) 0%, rgba(251,248,242,0) 70%);
  pointer-events: none;
}
.pricing-card {
  max-width: 560px; margin: 0 auto;
  background: var(--warm-white);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(154,124,67,0.4);
  position: relative;
}
.pricing-card::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  pointer-events: none;
}
.pricing-list {
  list-style: none; padding: 0; margin: 28px 0 36px;
  text-align: left; display: grid; gap: 14px;
}
.pricing-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: start;
  font-size: 15px; color: var(--ink-soft);
}
.pricing-check { color: var(--gold); font-weight: 700; }
.pricing-check strong { color: var(--ink); font-weight: 600; }

.price {
  margin: 32px 0;
  display: flex; flex-direction: column; align-items: center;
}
.price .label { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.15em; text-transform: uppercase; }
.price .install { font-family: 'Playfair Display', serif; font-size: 56px; color: var(--gold-deep); line-height: 1; margin: 8px 0; }
.price .install .currency { font-size: 30px; vertical-align: top; margin-right: 4px; }
.price .install .x { font-size: 24px; color: var(--ink-soft); margin-right: 6px; }
.price .or { color: var(--ink-soft); font-size: 14px; margin-top: 6px; font-style: italic; }
.price .or strong { color: var(--ink); font-weight: 600; }

.pay-icons {
  display: flex; justify-content: center; gap: 14px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-soft);
}

/* ----- Guarantee ----- */
.guarantee {
  position: relative;
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guarantee-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 50px; align-items: center;
  max-width: 920px; margin: 0 auto;
}
.guarantee-seal {
  width: 220px; height: auto;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  color: var(--gold-deep);
  text-align: center;
  position: relative;
  filter: drop-shadow(0 18px 30px rgba(154,124,67,0.25));
}
.guarantee-seal .num { font-family: 'Playfair Display', serif; font-size: 40px; line-height: 1; }
.guarantee-seal .txt { font-size: 11px; letter-spacing: 0.18em; margin-top: 4px; }
.guarantee-text h3 { font-size: 32px; margin-bottom: 18px; }
.guarantee-text p { color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.guarantee-text em { color: var(--gold-deep); font-style: italic; }

/* ----- FAQ ----- */
.faq-section { position: relative; background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
  user-select: none;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-toggle {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s, background .3s, color .3s;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--cream); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  color: var(--ink-soft);
  font-size: 15px; line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 400px; padding: 0 0 24px;
}

/* ----- Final CTA ----- */
.final-cta {
  background:
    linear-gradient(180deg, rgba(43,36,25,0.93) 0%, rgba(58,49,31,0.96) 100%),
    url('assets/final-cta-bg.png') center/cover no-repeat;
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,89,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta::before { top: -200px; left: -100px; }
.final-cta::after { bottom: -200px; right: -100px; }
.final-cta h2 { color: var(--cream); font-size: clamp(36px, 4.5vw, 60px); }
.final-cta h2 .script { color: var(--gold-light); font-size: 1.1em; display: block; }
.final-cta p { color: rgba(250, 246, 238, 0.75); font-size: 18px; max-width: 600px; margin: 24px auto 40px; }

/* ----- Footer ----- */
.footer {
  background: #1f1a13;
  color: rgba(250, 246, 238, 0.55);
  padding: 50px 0 30px;
  text-align: center;
  font-size: 13px;
}
.footer a { color: var(--gold-light); text-decoration: none; }
.footer-links { margin: 16px 0; }
.footer-links a { margin: 0 14px; }
.footer-disclaimer { max-width: 760px; margin: 24px auto 0; font-size: 12px; line-height: 1.7; opacity: 0.75; }

/* ----- Floating petals ----- */
.petal {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  filter: drop-shadow(0 6px 12px rgba(154,124,67,0.18));
  transition: transform 0.1s linear;
  will-change: transform;
}
.petal img { width: 100%; height: auto; display: block; }
.petal.float { animation: petalFloat 9s ease-in-out infinite; }
.petal.float-slow { animation: petalFloat 14s ease-in-out infinite; }
.petal.float-rev { animation: petalFloatRev 11s ease-in-out infinite; }
@keyframes petalFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-18px) rotate(calc(var(--rot, 0deg) + 6deg)); }
}
@keyframes petalFloatRev {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(14px) rotate(calc(var(--rot, 0deg) - 6deg)); }
}

/* ----- Sticky mobile CTA ----- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--warm-white);
  border-top: 1px solid var(--gold-soft);
  padding: 12px 16px;
  display: none;
  z-index: 60;
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.15);
}
.sticky-cta .btn { width: 100%; padding: 14px; font-size: 12px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero { height: auto; min-height: auto; padding: 50px 0 0; }
  .hero .container { padding-bottom: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; height: auto; }
  .hero-text { padding-bottom: 0; }
  .hero-photo-wrap { aspect-ratio: auto; max-width: 420px; margin: 0 auto; }
  .hero-photo-wrap img { max-height: 70vh; margin-left: 0 !important; width: 100% !important; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .pains-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-item { border-right: none; padding-right: 0; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .guarantee-seal { margin: 0 auto; }
  .section { padding: 70px 0; }
  .bio-section { padding: 80px 0; }
  .nav-cta { display: none; }
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
  .pricing-card { padding: 36px 24px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero { padding: 50px 0 70px; min-height: auto; }
  .hero h1 { font-size: 44px; }
  .timeline-item { grid-template-columns: 64px 1fr; gap: 20px; }
  .timeline-day { width: 64px; height: 64px; }
  .timeline-day .num { font-size: 24px; }
  .timeline::before { left: 31px; }
  .promo-bar { font-size: 10px; letter-spacing: 0.08em; }
}

