/* ============================================================
   MANUEL LIZARAZO — Sistema de diseño de la página pública
   ============================================================
   Dirección: editorial impresa, no "app tech". Papel marfil cálido,
   tinta azul-noche, latón como acento tipográfico, serifa Fraunces
   para titulares. Hairlines en lugar de sombras; numeración de
   secciones como una revista.

   Este archivo es AUTOCONTENIDO: las páginas públicas NO cargan
   style.css (ese queda solo para el panel admin). No mezclar.
============================================================ */

/* ---------- Reset breve ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  --paper:   #F6F1E7;   /* marfil cálido, fondo general */
  --paper-2: #EFE7D8;   /* marfil hundido, bandas alternas */
  --card:    #FFFDF8;   /* casi blanco, tarjetas */
  --ink:     #151D33;   /* tinta azul-noche */
  --ink-2:   #3D4763;   /* tinta secundaria */
  --muted:   #79809A;   /* gris azulado, notas */
  --accent:  #202B5F;   /* índigo medianoche, botones y énfasis */
  --brass:   #A8813F;   /* latón, labels y numeración */
  --line:    rgba(21, 29, 51, 0.16);
  --line-soft: rgba(21, 29, 51, 0.09);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, 'Segoe UI', sans-serif;
  --r-img: 18px;
  --r-btn: 999px;
  --shadow-card: 0 1px 2px rgba(21,29,51,.05), 0 12px 40px -18px rgba(21,29,51,.18);
  --w: 1120px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: var(--paper); }

.lz-wrap { max-width: var(--w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ============================================================
   TIPOGRAFÍA
============================================================ */
.lz-display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.06;
}
.lz-display em { font-style: italic; color: var(--accent); }

.lz-h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); }
.lz-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  max-width: 17em;
}
.lz-h2 em { font-style: italic; color: var(--accent); }
.lz-h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.3;
}

.lz-lead { font-size: 1.09rem; color: var(--ink-2); max-width: 34em; }
.lz-note { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }

/* Label editorial: "01 — El problema" */
.lz-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.lz-label::after { content: ''; height: 1px; width: 56px; background: var(--brass); opacity: .5; }

/* ============================================================
   BOTONES Y ENLACES
============================================================ */
.lz-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--accent); color: var(--paper);
  border: 1.5px solid var(--accent);
  border-radius: var(--r-btn);
  padding: 15px 30px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease, border-color .18s;
}
.lz-btn:hover { background: #2B3979; border-color: #2B3979; transform: translateY(-1px); }
.lz-btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.lz-btn--ghost:hover { background: rgba(21,29,51,.05); border-color: var(--ink); }
.lz-btn--paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.lz-btn--paper:hover { background: #fff; border-color: #fff; }
.lz-btn svg { flex: 0 0 auto; }

.lz-link {
  color: var(--accent); font-weight: 600; text-decoration: none;
  border-bottom: 1.5px solid rgba(32,43,95,.3);
  transition: border-color .15s;
}
.lz-link:hover { border-color: var(--accent); }

/* ============================================================
   HEADER
============================================================ */
.lz-topstrip {
  background: var(--ink); color: rgba(246,241,231,.85);
  font-size: 0.78rem; letter-spacing: 0.06em;
  text-align: center; padding: 8px 16px;
}
.lz-topstrip strong { color: #fff; font-weight: 600; }

.lz-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,241,231,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.lz-header__in {
  max-width: var(--w); margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 40px);
  display: flex; align-items: center; gap: 28px;
}
.lz-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.lz-logo svg { display: block; }
.lz-logo__name {
  font-family: var(--serif); font-size: 1.22rem; color: var(--ink);
  line-height: 1.05; white-space: nowrap;
}
.lz-logo__name em { font-style: italic; color: var(--accent); }
.lz-logo__tag {
  display: block; font-family: var(--sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.28em; color: var(--brass); margin-top: 3px;
}
.lz-nav { display: flex; gap: 26px; margin-left: auto; }
.lz-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink-2);
  text-decoration: none; transition: color .15s;
}
.lz-nav a:hover { color: var(--accent); }
.lz-header .lz-btn { padding: 11px 22px; font-size: 0.88rem; }
@media (max-width: 860px) { .lz-nav { display: none; } .lz-header .lz-btn { margin-left: auto; } }

/* ============================================================
   HERO
============================================================ */
.lz-hero { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 80px); }
.lz-hero__grid {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.lz-hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: var(--r-btn);
  padding: 7px 16px; margin-bottom: 26px; background: var(--card);
}
.lz-hero__kicker::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }
.lz-hero p.lz-lead { margin: 24px 0 34px; }
.lz-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.lz-hero__trust {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  font-size: 0.82rem; color: var(--muted);
}
.lz-hero__trust span { display: flex; align-items: center; gap: 8px; }
.lz-hero__trust svg { color: var(--brass); }

/* Marco de imagen editorial: borde fino + esquina desplazada */
.lz-frame { position: relative; }
.lz-frame__media {
  border-radius: var(--r-img); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  background: var(--ink);
}
.lz-frame__media video, .lz-frame__media img { width: 100%; height: auto; display: block; }
.lz-frame::after {
  content: ''; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--brass); border-radius: var(--r-img);
  opacity: .45; z-index: -1;
}
.lz-frame__cap {
  margin-top: 26px; font-size: 0.8rem; color: var(--muted);
  display: flex; gap: 10px; align-items: baseline;
}
.lz-frame__cap::before { content: '—'; color: var(--brass); }

@media (max-width: 900px) {
  .lz-hero__grid { grid-template-columns: 1fr; }
  .lz-frame { max-width: 520px; }
}

/* ============================================================
   SECCIONES
============================================================ */
.lz-sec { padding: clamp(56px, 9vw, 110px) 0; }
.lz-sec--sunken { background: var(--paper-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.lz-sec--ink { background: var(--ink); color: var(--paper); }
.lz-sec--ink .lz-h2 em { color: #B9C4F2; }
.lz-sec--ink .lz-label { color: #C9A96A; }
.lz-sec--ink .lz-label::after { background: #C9A96A; }
.lz-sec--ink .lz-lead { color: rgba(246,241,231,.78); }
.lz-sec--ink .lz-note { color: rgba(246,241,231,.55); }

.lz-cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(28px, 4vw, 64px); align-items: center; }
@media (max-width: 900px) { .lz-cols-2 { grid-template-columns: 1fr; } }

/* Lista numerada editorial */
.lz-points { list-style: none; margin-top: 34px; }
.lz-points li {
  display: grid; grid-template-columns: 58px 1fr; gap: 18px;
  padding: 22px 0; border-top: 1px solid var(--line-soft);
}
.lz-points li:last-child { border-bottom: 1px solid var(--line-soft); }
.lz-points .n {
  font-family: var(--serif); font-style: italic; font-size: 1.6rem;
  color: var(--brass); line-height: 1;
}
.lz-points h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.lz-points p { font-size: 0.92rem; color: var(--ink-2); }

/* ============================================================
   PRODUCTO — dos piezas
============================================================ */
.lz-duo { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(24px, 3vw, 44px); margin-top: 48px; }
@media (max-width: 860px) { .lz-duo { grid-template-columns: 1fr; } }
.lz-piece {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-img); padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-card);
}
.lz-piece__tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 12px;
}
.lz-piece .lz-h3 { margin-bottom: 12px; font-size: 1.35rem; }
.lz-piece > p { font-size: 0.94rem; color: var(--ink-2); margin-bottom: 20px; }
.lz-spec { list-style: none; }
.lz-spec li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 10px 0; border-top: 1px solid var(--line-soft);
  font-size: 0.88rem;
}
.lz-spec .k { color: var(--muted); }
.lz-spec .v { font-weight: 600; text-align: right; }

/* ============================================================
   EVIDENCIA — numerales grandes
============================================================ */
.lz-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  margin-top: 44px;
}
.lz-stat {
  padding: clamp(22px, 3vw, 36px);
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.lz-stat .big {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1;
  color: var(--accent);
}
.lz-stat .big sup { font-size: 0.45em; color: var(--brass); }
.lz-stat .vs { font-size: 0.86rem; color: var(--muted); margin-top: 2px; }
.lz-stat p { font-size: 0.84rem; color: var(--ink-2); margin-top: 10px; line-height: 1.5; }
@media (max-width: 860px) { .lz-stats { grid-template-columns: repeat(2, 1fr); } }

.lz-disclaimer {
  margin-top: 30px; padding: 18px 22px;
  border-left: 2px solid var(--brass);
  background: var(--paper-2);
  border-radius: 0 10px 10px 0;
  font-size: 0.8rem; color: var(--ink-2); line-height: 1.7;
  max-width: 760px;
}

/* ============================================================
   QUIÉN SOY
============================================================ */
.lz-bio { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .lz-bio { grid-template-columns: 1fr; } .lz-bio .lz-frame { max-width: 420px; } }
.lz-bio__text p { color: var(--ink-2); margin-bottom: 18px; max-width: 36em; }
.lz-bio__text p strong { color: var(--ink); }
.lz-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.lz-chip {
  font-size: 0.82rem; font-weight: 500; color: var(--ink);
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-btn); padding: 8px 16px;
}
.lz-sig {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--accent); margin-top: 8px;
}

/* ============================================================
   CÓMO COMPRAR + PRECIO
============================================================ */
.lz-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 44px; border-top: 1px solid rgba(246,241,231,.2); }
@media (max-width: 820px) { .lz-steps { grid-template-columns: 1fr; } }
.lz-step { padding: 30px clamp(4px, 2vw, 28px) 8px 0; }
.lz-step .n {
  font-family: var(--serif); font-style: italic; font-size: 2.1rem;
  color: #C9A96A; line-height: 1; display: block; margin-bottom: 14px;
}
.lz-step h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; color: #fff; }
.lz-step p { font-size: 0.9rem; color: rgba(246,241,231,.75); }

.lz-price {
  background: var(--card); color: var(--ink);
  border-radius: var(--r-img); border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 4vw, 46px);
  margin-top: 52px;
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
@media (max-width: 860px) { .lz-price { grid-template-columns: 1fr; } }
.lz-price__amount {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--ink);
}
.lz-price__amount small { font-size: 0.38em; font-family: var(--sans); font-weight: 500; color: var(--muted); letter-spacing: .04em; }
.lz-price__inc { list-style: none; margin-top: 22px; }
.lz-price__inc li {
  padding: 9px 0 9px 26px; position: relative;
  font-size: 0.92rem; color: var(--ink-2);
  border-top: 1px solid var(--line-soft);
}
.lz-price__inc li::before {
  content: '·'; position: absolute; left: 6px; top: 4px;
  font-family: var(--serif); font-size: 1.6rem; color: var(--brass); line-height: 1;
}
.lz-price__cta { display: flex; flex-direction: column; gap: 12px; }
.lz-price__cta .lz-note { text-align: center; }

/* ============================================================
   SESIONES
============================================================ */
.lz-services { list-style: none; margin-top: 44px; }
.lz-services li {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr) auto;
  gap: 20px; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--line);
}
.lz-services li:last-child { border-bottom: 1px solid var(--line); }
.lz-services .t { font-family: var(--serif); font-size: 1.25rem; font-weight: 550; }
.lz-services .d { font-size: 0.9rem; color: var(--ink-2); }
.lz-services .lz-link { white-space: nowrap; font-size: 0.9rem; }
@media (max-width: 820px) {
  .lz-services li { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
}

/* ============================================================
   AGENDA
============================================================ */
.lz-agenda {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-img); box-shadow: var(--shadow-card);
  padding: clamp(26px, 4vw, 42px);
  max-width: 720px; margin-top: 44px;
}
.lz-agenda label.step {
  display: block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass);
  margin: 26px 0 12px;
}
.lz-agenda label.step:first-of-type { margin-top: 0; }
.lz-days { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; }
.lz-day, .lz-slot {
  border: 1px solid var(--line); background: var(--paper);
  color: var(--ink-2); border-radius: 12px;
  padding: 10px 15px; font-size: 0.86rem; font-weight: 550;
  white-space: nowrap; transition: all .14s;
}
.lz-day:hover, .lz-slot:hover { border-color: var(--accent); color: var(--ink); }
.lz-day[aria-pressed="true"], .lz-slot[aria-pressed="true"] {
  background: var(--accent); border-color: var(--accent); color: var(--paper);
}
.lz-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.lz-input {
  width: 100%; background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 16px;
  font: inherit; font-size: 0.94rem; color: var(--ink);
  transition: border-color .15s;
}
.lz-input:focus { outline: none; border-color: var(--accent); }
.lz-input::placeholder { color: var(--muted); }
.lz-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .lz-form-grid { grid-template-columns: 1fr; } }
.lz-agenda .lz-btn { width: 100%; margin-top: 22px; }
.lz-agenda-ok { text-align: center; padding: 34px 10px; }
.lz-agenda-ok .lz-h3 { margin: 14px 0 8px; }

/* ============================================================
   FAQ
============================================================ */
.lz-faq { max-width: 760px; margin-top: 40px; }
.lz-faq details { border-top: 1px solid var(--line); }
.lz-faq details:last-child { border-bottom: 1px solid var(--line); }
.lz-faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 4px; font-weight: 600; font-size: 1rem;
}
.lz-faq summary::-webkit-details-marker { display: none; }
.lz-faq summary::after {
  content: '+'; font-family: var(--serif); font-size: 1.5rem;
  color: var(--brass); transition: transform .2s; line-height: 1;
}
.lz-faq details[open] summary::after { transform: rotate(45deg); }
.lz-faq details p { padding: 0 4px 22px; font-size: 0.93rem; color: var(--ink-2); max-width: 60ch; }

/* ============================================================
   PROSA (legales)
============================================================ */
.lz-prose { max-width: 720px; padding: clamp(40px, 6vw, 70px) 0; }
.lz-prose h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 20px; }
.lz-prose h2 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; margin: 34px 0 10px; }
.lz-prose p, .lz-prose li { font-size: 0.95rem; color: var(--ink-2); margin-bottom: 12px; }
.lz-prose ul { padding-left: 22px; }

/* ============================================================
   FOOTER
============================================================ */
.lz-footer { background: var(--ink); color: rgba(246,241,231,.75); padding: clamp(44px, 6vw, 70px) 0 30px; }
.lz-footer__grid { display: grid; grid-template-columns: minmax(0,6fr) minmax(0,3fr) minmax(0,3fr); gap: 36px; }
@media (max-width: 820px) { .lz-footer__grid { grid-template-columns: 1fr; } }
.lz-footer .lz-logo__name { color: var(--paper); }
.lz-footer .lz-logo__name em { color: #B9C4F2; }
.lz-footer p { font-size: 0.86rem; max-width: 34em; margin-top: 14px; }
.lz-footer h5 {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #C9A96A; margin-bottom: 14px;
}
.lz-footer a { color: rgba(246,241,231,.75); text-decoration: none; font-size: 0.88rem; }
.lz-footer a:hover { color: #fff; }
.lz-footer li { list-style: none; padding: 5px 0; }
.lz-footer__base {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(246,241,231,.14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.76rem; color: rgba(246,241,231,.45);
}

/* ============================================================
   REVEAL sutil (una sola animación en toda la página)
============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .lz-reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .lz-reveal.is-in { opacity: 1; transform: none; }
}

/* ============================================================
   V2 — Hero con video de fondo + secciones "pro"
   (pedido de William 20-jul noche: recuperar el video full-bleed,
   video con sonido, y transiciones de producto más profesionales)
============================================================ */

/* ---------- HERO con video de fondo ---------- */
.lz-hero--video {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
  padding: clamp(56px, 8vw, 104px) 0;
}
.lz-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .42;   /* fondo sutil: el texto manda, el video acompaña */
  background: url('../images/producto-antifaz.jpg') center/cover no-repeat;
}
.lz-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(13,18,36,.82) 0%, rgba(13,18,36,.66) 50%, rgba(13,18,36,.45) 100%);
}
.lz-hero--video .lz-wrap { position: relative; z-index: 2; }
.lz-hero--video .lz-hero__content { max-width: 700px; }
.lz-hero--video .lz-hero__kicker {
  background: rgba(246,241,231,.07); border-color: rgba(246,241,231,.28);
  color: rgba(246,241,231,.88);
}
.lz-hero--video .lz-display em { color: #B9C4F2; }
.lz-hero--video .lz-lead { color: rgba(246,241,231,.84); }
.lz-hero--video .lz-hero__trust { border-top-color: rgba(246,241,231,.16); color: rgba(246,241,231,.62); }
.lz-hero--video .lz-hero__trust svg { color: #C9A96A; }

.lz-btn--ghostdark { background: transparent; color: var(--paper); border-color: rgba(246,241,231,.45); }
.lz-btn--ghostdark:hover { background: rgba(246,241,231,.1); border-color: #fff; }

/* ---------- Header con sombra al hacer scroll ---------- */
.lz-header { transition: box-shadow .25s ease; }
.lz-header.is-scrolled { box-shadow: 0 8px 28px -14px rgba(21,29,51,.25); }

/* ---------- Scrollytelling del producto ---------- */
.lz-scrolly {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px); align-items: start; margin-top: 48px;
}
.lz-scrolly__media {
  position: sticky; top: 110px;
  border-radius: var(--r-img); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3; background: var(--ink);
}
.lz-scrolly__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.07);
  transition: opacity .75s ease, transform 1.4s cubic-bezier(.2,.6,.2,1);
}
.lz-scrolly__media img.is-active { opacity: 1; transform: scale(1); }
.lz-scrolly__step {
  min-height: 58vh; display: flex; flex-direction: column; justify-content: center;
}
.lz-scrolly__step .n {
  font-family: var(--serif); font-style: italic; font-size: 2rem;
  color: var(--brass); line-height: 1; margin-bottom: 16px;
}
.lz-scrolly__step h3 { margin-bottom: 12px; }
.lz-scrolly__step p { color: var(--ink-2); font-size: 0.97rem; max-width: 30em; }
.lz-scrolly__step .lz-spec { margin-top: 18px; max-width: 26em; }
@media (max-width: 880px) {
  .lz-scrolly { grid-template-columns: 1fr; }
  .lz-scrolly__media { top: 76px; aspect-ratio: 16 / 10; z-index: 5; }
  .lz-scrolly__step { min-height: 52vh; }
}

/* ---------- Video con sonido: sin overlay, solo clic ---------- */
.lz-player {
  position: relative; max-width: 340px; margin: 0 auto;
  aspect-ratio: 9 / 16; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  background: var(--ink); cursor: pointer;
}
.lz-player video { width: 100%; height: 100%; object-fit: cover; display: block; }
.lz-player.is-playing { cursor: default; }
@media (max-width: 640px) { .lz-player { max-width: 280px; } }

/* ---------- Reveal escalonado ---------- */
.lz-stats .lz-stat:nth-child(2) { transition-delay: .1s; }
.lz-stats .lz-stat:nth-child(3) { transition-delay: .2s; }
.lz-stats .lz-stat:nth-child(4) { transition-delay: .3s; }
.lz-duo .lz-piece:nth-child(2)  { transition-delay: .12s; }
.lz-steps .lz-step:nth-child(2) { transition-delay: .12s; }
.lz-steps .lz-step:nth-child(3) { transition-delay: .24s; }

/* ---------- Ajustes móviles v3 ---------- */
@media (max-width: 640px) {
  .lz-hero--video { padding: 44px 0 52px; }
  .lz-hero__trust { gap: 12px; font-size: 0.76rem; }
  .lz-hero__ctas .lz-btn { width: 100%; }
  .lz-topstrip { font-size: 0.68rem; }
  .lz-logo__name { font-size: 1.05rem; }
  .lz-scrolly__step { min-height: 44vh; }
  .lz-price { padding: 22px; }
  .lz-stat .big { font-size: 2.1rem; }
}
