/* ============================================================
   El Ritual de Reconexión de 20 Minutos
   Landing simplificada — Mobile-first · v2.0
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ── Variables ── */
:root {
  --cream:       #F4ECDD;
  --soft-cream:  #FAF6EE;
  --sand:        #E7D8BD;
  --sage:        #879775;
  --deep-sage:   #657652;
  --petrol:      #284C4A;
  --terracotta:  #C77C54;
  --charcoal:    #27302E;
  --muted:       #6D675F;
  --white:       #FFFDF9;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Manrope', system-ui, sans-serif;

  /* Layout — columna central estrecha */
  --px:           1.25rem;  /* 20px lateral mobile */
  --max:          520px;    /* columna principal angosta */
  --max-wide:     620px;    /* solo secciones que lo necesiten */
  --radius:       18px;
  --radius-sm:    10px;
  --radius-full:  999px;

  /* Gaps compactos */
  --section-gap:    3.5rem;   /* 56px */
  --section-gap-sm: 2.5rem;   /* 40px */
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--soft-cream);
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ── Eyebrow ── */
.eyebrow {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .6rem;
}
.eyebrow--light { color: rgba(231,216,189,.8); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   TOP BAR — ticker premium contenido en el layout
   ============================================================ */
.topbar {
  color: rgba(255,253,249,.95);
  padding-block: 0;          /* sin espacio fuera del verde */
  display: flex;
  justify-content: center;
}

.topbar-inner {
  width: 100%;
  max-width: 680px;
  background: var(--deep-sage);
  border-radius: 0;          /* sin esquinas — se pega al header */
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.topbar-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: topbar-marquee 32s linear infinite;
  padding-block: .75rem;     /* barra más gruesa */
}

.topbar-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  line-height: 1;
  gap: 0;
  padding-right: 3rem;
  color: rgba(255,253,249,.92);
}

@keyframes topbar-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .topbar-track { animation: none; }
  .topbar-content:last-child { display: none; }
  .topbar-inner { mask-image: none; -webkit-mask-image: none; text-align: center; }
}

/* ============================================================
   STICKY GROUP — topbar + header pegados al scroll
   ============================================================ */
.sticky-group {
  position: sticky;
  top: 0;
  z-index: 90;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: rgba(250,246,238,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .55rem;
}

/* Logo: nombre como protagonista, "20:00" como marca pequeña */
.site-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}

/* "20:00" — marca editorial pequeña en fondo petrol */
.logo-mark {
  font-family: var(--serif);
  font-size: .75rem;
  font-weight: 600;
  color: var(--white);
  background: var(--petrol);
  letter-spacing: .04em;
  line-height: 1;
  padding: .28rem .55rem;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Nombre: más protagonismo, siempre visible */
.logo-name {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .01em;
  line-height: 1.2;
  display: block;       /* siempre visible, no solo desktop */
}

/* header CTA — desktop only */
.btn-header {
  display: none;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  border: none;
  border-radius: var(--radius-full);
  padding: .48rem 1.15rem;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(199,124,84,.3);
}
.btn-header:hover { background: #b56844; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--sand);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: .85rem var(--px);
  border-bottom: 1px solid var(--sand);
  transition: background .15s;
}
.mobile-menu a:last-child { border: none; color: var(--terracotta); }
.mobile-menu a:hover { background: var(--soft-cream); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 1rem 1.5rem;
  transition: transform .15s, box-shadow .2s, background .2s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid currentColor; outline-offset: 3px; }

.btn--primary {
  color: var(--white);
  background: var(--terracotta);
  box-shadow: 0 4px 20px rgba(199,124,84,.35);
  border: none;
}
.btn--primary:hover {
  background: #b56844;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(199,124,84,.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  color: var(--petrol);
  background: transparent;
  border: 1.5px solid var(--petrol);
}
.btn--outline:hover { background: var(--petrol); color: var(--white); }

.btn--white {
  color: var(--petrol);
  background: var(--white);
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.btn--white:hover { background: var(--soft-cream); transform: translateY(-1px); }

/* inline width reset */
.btn--auto { width: auto; }

/* ============================================================
   PRICE
   ============================================================ */
.price-row {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  flex-wrap: wrap;
}
.price-old {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 2px;
}
.price-now {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}

/* ============================================================
   FADE-IN (scroll)
   ============================================================ */
.fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade.in { opacity: 1; transform: translateY(0); }
.fade-d1 { transition-delay: .1s; }
.fade-d2 { transition-delay: .2s; }
.fade-d3 { transition-delay: .3s; }

/* ============================================================
   1. HERO — editorial premium
   ============================================================ */
.hero {
  background: var(--soft-cream);
  padding-top: 1.75rem;
  padding-bottom: 2.75rem;
  position: relative;
}

/* Sutil textura de fondo para dar profundidad */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(135,151,117,.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 30% at 100% 80%, rgba(199,124,84,.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  position: relative; /* sobre el ::before */
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* Badge editorial — más refinado */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--deep-sage);
  background: transparent;
  border: 1px solid rgba(101,118,82,.35);
  padding: .32rem .85rem;
  border-radius: var(--radius-full);
  width: fit-content;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Título — jerarquía fuerte, líneas equilibradas */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 7.5vw, 2.85rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -.025em;
}
.hero-title em {
  font-style: italic;
  color: var(--petrol);
  display: block;          /* salto elegante en la em */
  margin-top: .08em;
}

.hero-sub {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 38ch;         /* limita el ancho de lectura */
}

/* Imagen — más protagonismo, sombra más rica */
.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand);
  width: 92%;
  max-width: 420px;
  margin-inline: auto;
  position: relative;
  box-shadow:
    0 2px 4px rgba(39,48,46,.06),
    0 12px 36px rgba(39,48,46,.14),
    0 24px 60px rgba(39,48,46,.08);
  transform: translateY(0);
  transition: transform .4s ease, box-shadow .4s ease;
}
.hero-img-wrap:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(39,48,46,.06),
    0 18px 48px rgba(39,48,46,.18),
    0 32px 72px rgba(39,48,46,.1);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Bloque precio + CTA — integrado, premium */
.hero-buy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  box-shadow: 0 2px 12px rgba(39,48,46,.05);
}

/* Precio dentro del hero — más sofisticado */
.hero-buy .price-row {
  gap: .5rem;
  align-items: baseline;
}
.hero-buy .price-old {
  font-size: .88rem;
  text-decoration-thickness: 1.5px;
  opacity: .7;
}
.hero-buy .price-now {
  font-size: 2.65rem;
  letter-spacing: -.02em;
}

/* Etiqueta de descuento junto al precio */
.hero-buy .price-row::after {
  content: '50% OFF';
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--white);
  background: var(--terracotta);
  padding: .22rem .55rem;
  border-radius: var(--radius-full);
  margin-left: .1rem;
  align-self: center;
}

.hero-buy .btn {
  padding: 1rem 1.4rem;
  font-size: .78rem;
  letter-spacing: .1em;
  box-shadow:
    0 4px 12px rgba(199,124,84,.3),
    0 8px 28px rgba(199,124,84,.2);
}
.hero-buy .btn:hover {
  box-shadow:
    0 6px 18px rgba(199,124,84,.4),
    0 12px 36px rgba(199,124,84,.25);
}

.hero-microcopy {
  font-size: .67rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .03em;
  text-align: center;
  margin-top: -.2rem;
}

/* img placeholder generic */
.img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 500;
  text-align: center;
  padding: 2rem;
  background: var(--sand);
}
.img-ph svg { opacity: .3; }

/* ============================================================
   2. BENEFICIOS — carrusel automático
   ============================================================ */
.benefits {
  padding-block: var(--section-gap-sm);
  background: var(--white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

/* Ventana del carrusel — contenida dentro del .wrap */
.benefits-carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Track animado — 6 tarjetas (3 + 3 duplicadas) */
.benefits-track {
  display: flex;
  gap: .85rem;
  width: max-content;
  will-change: transform;
  animation: benefits-scroll 18s linear infinite;
}

/* Pausa al hover para poder leer */
.benefits-carousel:hover .benefits-track {
  animation-play-state: paused;
}

@keyframes benefits-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Tarjeta */
.benefit-card {
  flex-shrink: 0;
  width: 180px;
  background: var(--soft-cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  transition: box-shadow .25s, transform .25s;
}
.benefit-card:hover {
  box-shadow: 0 4px 20px rgba(39,48,46,.08);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .benefits-track { animation: none; }
}

.bc-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--petrol);
  line-height: 1;
}
.bc-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
}
.bc-text {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   3. VIDEO
   ============================================================ */
.video-section {
  background: var(--cream);
  padding-block: var(--section-gap-sm) var(--section-gap);
}

.video-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.video-heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}
.video-sub {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Video stage */
.video-stage { display: flex; justify-content: center; }
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 8px 40px rgba(39,48,46,.12), 0 2px 8px rgba(39,48,46,.06);
}

.ritual-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay placeholder */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity .3s;
}
.video-wrap.playing .video-overlay { opacity: 0; pointer-events: none; }

.video-poster-bg {
  position: absolute;
  inset: 0;
  background: url('images/video-poster.jpg') center/cover no-repeat;
  z-index: 0;
}
.video-poster-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(39, 48, 46, 0.22);
}

/* Play btn */
.video-play-btn {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  transition: transform .2s;
}
.video-play-btn:hover { transform: scale(1.05); }
.video-play-btn:focus-visible { outline: 3px solid var(--white); outline-offset: 6px; border-radius: var(--radius-full); }

.play-icon {
  display: block;
  width: 68px; height: 68px;
  filter: drop-shadow(0 4px 16px rgba(40,76,74,.5));
  animation: pulse-play 2.8s ease-in-out infinite;
}
.play-icon svg { width: 100%; height: 100%; }

.play-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,253,249,.92);
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
  background: rgba(40,76,74,.6);
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

@keyframes pulse-play {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) { .play-icon { animation: none; } }

/* Video controls */
.video-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(39,48,46,.75) 0%, transparent 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.video-wrap.playing .video-controls { opacity: 1; pointer-events: auto; }
.video-wrap.playing:hover .video-controls { opacity: 1; }

.vc-btn {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: rgba(255,253,249,.12);
  border: 1px solid rgba(255,253,249,.2);
  border-radius: var(--radius-full);
  color: var(--white);
  flex-shrink: 0;
  transition: background .15s;
}
.vc-btn:hover { background: rgba(255,253,249,.25); }
.vc-btn:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.vc-btn svg { width: 12px; height: 12px; }

.vc-progress-wrap {
  flex: 1;
  height: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.vc-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,253,249,.25);
  border-radius: 3px;
  overflow: hidden;
}
.vc-progress-fill {
  height: 100%;
  background: var(--white);
  border-radius: 3px;
  width: 0%;
  transition: width .1s linear;
}

/* Video endscreen / CTA al terminar */
.video-endscreen {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(39, 48, 46, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.video-wrap.ended .video-endscreen {
  opacity: 1;
  pointer-events: auto;
}

.ve-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  width: 100%;
  max-width: 320px;
}

.ve-tag {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(255, 253, 249, 0.12);
  padding: .25rem .7rem;
  border-radius: var(--radius-full);
}

.ve-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -.01em;
}

.ve-text {
  font-size: .85rem;
  line-height: 1.5;
  color: rgba(255, 253, 249, 0.85);
}

.ve-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-top: .15rem;
}

.ve-price-old {
  font-size: .9rem;
  color: rgba(255, 253, 249, 0.5);
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
}

.ve-price-now {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: #f19f75;
  line-height: 1;
}

.ve-cta {
  width: 100%;
  padding: .85rem 1.25rem;
  font-size: .75rem;
  margin-top: .25rem;
}

.ve-microcopy {
  font-size: .65rem;
  color: rgba(255, 253, 249, 0.65);
  letter-spacing: .03em;
}

.ve-replay-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 253, 249, 0.75);
  background: none;
  border: none;
  cursor: pointer;
  padding: .35rem .6rem;
  margin-top: .2rem;
  transition: color .2s;
}

.ve-replay-btn:hover {
  color: var(--white);
}

.ve-replay-btn svg {
  flex-shrink: 0;
}

/* ============================================================
   4. PROBLEMA + SOLUCIÓN
   ============================================================ */
.problem-section {
  background: var(--soft-cream);
  padding-block: var(--section-gap);
}

.problem-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 6vw, 2.8rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
}

.problem-bullets {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem;
}
.problem-bullet {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  color: var(--charcoal);
  line-height: 1.45;
  padding: .65rem .9rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--terracotta);
}
.problem-bullet::before {
  content: '•';
  color: var(--terracotta);
  font-weight: 800;
  flex-shrink: 0;
}

/* Problem image — conectado al flujo problema -> solución */
.problem-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
  margin-bottom: 1.1rem;
}
.problem-img img { width: 100%; height: 100%; object-fit: cover; }

/* Solution block (green) — compacto, con excelente contraste */
.solution-block {
  background: var(--petrol);
  border-radius: var(--radius);
  padding: 1.6rem 1.35rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution-title {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 4.8vw, 1.7rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.22;
}

.solution-checks {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.solution-check {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,253,249,.92);
  font-weight: 500;
}
.solution-check::before {
  content: '';
  display: inline-flex;
  width: 18px; height: 18px;
  background: rgba(255,253,249,.16);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.5L5 9l4.5-5.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ============================================================
   5. MÉTODO + QUÉ INCLUYE
   ============================================================ */
.method-section {
  background: var(--cream);
  padding-block: var(--section-gap);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5.2vw, 2.3rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 1.35rem;
}

/* Timeline compacto */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.25rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--sand);
}

.tl-item {
  display: flex;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.25rem;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--white);
  border: 2px solid var(--sand);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.tl-dot span:first-child {
  font-size: .46rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .03em;
}
.tl-dot span:last-child {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--petrol);
  line-height: 1;
}

.tl-body { padding-top: .5rem; flex: 1; }
.tl-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .25rem;
}
.tl-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Checklist de contenidos */
.includes-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.includes-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.25rem;
}
.include-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--charcoal);
  font-weight: 500;
}
.include-item::before {
  content: '';
  display: inline-flex;
  width: 18px; height: 18px;
  background: var(--sage);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.5L5 9l4.5-5.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* Ebook preview carousel — se mueve solo en loop continuo infinito */
.ebook-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-block: .75rem;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ebook-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ebook-marquee 18s linear infinite;
}

.ebook-group {
  display: flex;
  gap: .85rem;
  padding-right: .85rem;
  flex-shrink: 0;
}

@keyframes ebook-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ebook-slide {
  flex-shrink: 0;
  width: 155px;
}
.ebook-slide img, .ebook-slide .img-ph {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(39,48,46,.12);
  transition: transform .25s ease;
}
.ebook-slide:hover img {
  transform: translateY(-3px) scale(1.02);
}

/* ============================================================
   6. OFERTA + FAQ + CTA FINAL
   ============================================================ */
.offer-section {
  background: var(--soft-cream);
  padding-block: var(--section-gap);
}

/* Offer card */
.offer-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.85rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  box-shadow: 0 2px 8px rgba(39,48,46,.04), 0 8px 32px rgba(39,48,46,.07);
  margin-bottom: 2.25rem;
}

.offer-product-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.offer-product-sub {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.offer-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--petrol);
  background: var(--soft-cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-full);
  padding: .3rem .7rem;
}

.offer-note {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .02em;
}

.offer-checks {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.offer-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--charcoal);
}
.offer-check::before {
  content: '';
  display: inline-flex;
  width: 16px; height: 16px;
  background: var(--deep-sage);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.5L5 9l4.5-5.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* FAQ — limpio y compacto */
.faq-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: .85rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 2.25rem;
}

details.faq {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}
details.faq[open] { border-color: var(--sage); }

summary.faq-q {
  padding: .85rem 1rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  transition: color .15s;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%236D675F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform .25s;
}
details.faq[open] summary.faq-q::after { transform: rotate(180deg); }
details.faq[open] summary.faq-q { color: var(--petrol); }

.faq-a {
  padding: 0 1rem .85rem;
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Final CTA block — equilibrado y jerárquico */
.final-cta {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.35rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.final-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4.8vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.3;
  letter-spacing: -.01em;
  max-width: 440px;
}
.final-cta-sub {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .03em;
}
.final-cta .btn {
  max-width: 360px;
  padding: .85rem 1.4rem;
}

/* ============================================================
   DISCLAIMER / FOOTER — sobrio y de baja jerarquía
   ============================================================ */
.disclaimer {
  padding-block: 1.4rem;
  border-top: 1px solid var(--sand);
}
.disclaimer p {
  font-size: .68rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.site-footer {
  background: var(--charcoal);
  padding-block: 1.6rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
}
.footer-logo small {
  display: block;
  font-family: var(--sans);
  font-size: .62rem;
  color: rgba(255,253,249,.4);
  letter-spacing: .06em;
  margin-top: .15rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.1rem;
  justify-content: center;
}
.footer-links a {
  font-size: .68rem;
  color: rgba(255,253,249,.45);
  transition: color .15s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: .62rem;
  color: rgba(255,253,249,.25);
}

/* ============================================================
   STICKY CTA — mobile
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  padding: .75rem var(--px);
  background: rgba(250,246,238,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 -4px 20px rgba(39,48,46,.06);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-left { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sticky-label { font-size: .72rem; font-weight: 600; color: var(--charcoal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-price { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--terracotta); }
.sticky-btn {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--terracotta);
  border-radius: var(--radius-full);
  padding: .65rem 1.1rem;
  white-space: nowrap;
  transition: background .15s;
}
.sticky-btn:hover { background: #b56844; }
.sticky-dismiss {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  transition: background .15s;
}
.sticky-dismiss:hover { background: var(--sand); }

/* ============================================================
   DESKTOP — 760px+
   Todo sigue en columna central. Solo ajustes de nav y fuente.
   ============================================================ */
@media (min-width: 760px) {
  /* logo-name ya es siempre visible; solo mostrar CTA y ocultar hamburger */
  .btn-header { display: inline-flex; }
  .hamburger  { display: none; }

  /* Tarjetas un poco más anchas en desktop */
  .benefit-card { width: 220px; }

  /* Ebook slides un poco más grandes */
  .ebook-slide { max-width: 160px; }

  /* Ocultar sticky en desktop */
  .sticky-cta { display: none; }
}
