/* ═══════════════════════════════════════════════════════════
   thqv.css — Tu Historia que Vende
   Solo estilos específicos de esta landing.
   Requiere brand-reporter.css cargado antes.
   ═══════════════════════════════════════════════════════════ */

/* ── BODY OVERRIDES PARA LANDING VERTICAL ──
   brand-reporter.css fuerza overflow:hidden en desktop
   para el scroll horizontal. Lo revertimos aquí.        */
html, body {
  overflow: auto !important;
  height: auto !important;
}
body {
  overflow-x: hidden;
}

footer { display: block !important; }

/* ── SIDEBAR: en landing no ocupa espacio vertical ── */
@media (min-width: 992px) {
  body { margin-left: 80px; }
}
@media (max-width: 991px) {
  body { margin-left: 0; margin-top: 70px; }
}

#cortos,
#pain-points,
#etapas,
#testimonios,
#propuesta,
#contacto {
  scroll-margin-top: 50px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
}
.hero-video-bg video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,11,9,0.6) 0%, transparent 25%, transparent 60%, rgba(12,11,9,0.95) 100%),
    linear-gradient(to right, rgba(12,11,9,0.5) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 860px;
}

.hero-edition {
  top: 150px;
  left: 48px;
}
.hero-edition::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}

.hero-sub {
  /* font-style: italic; */
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(242,237,227,0.6);
  line-height: 1.55;
  max-width: 620px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeIn 1s 0.8s ease forwards;
  border-left: 2px solid rgba(196,150,42,0.5);
  padding-left: 18px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeIn 1s 1s ease forwards;
}

.scroll-cue {
  position: absolute;
  bottom: 32px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}
.scroll-cue span {
  font-size: 0.52rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.3);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, rgba(196,150,42,0.6), transparent);
  animation: scrollLine 2s 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}


@media (max-width: 768px) {
  .hero-actions {
    display: block;
  }
}

.mobile-cta-bar { display: none; }

@media (max-width: 991px) {

  .hero {
  height: calc(100vh - 70px);
  min-height: unset;
  }

  .mobile-cta-bar {
    margin: 0 auto;
    max-width: 90%;
    display: block;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 98;
    background: transparent;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid rgba(196, 150, 42, 0.15);
  }
}

/* ── TICKER ── */
.ticker {
  background: var(--carbon);
  border-top: 1px solid rgba(196,150,42,0.15);
  border-bottom: 1px solid rgba(196,150,42,0.08);
  padding: 16px 0;
  overflow: hidden !important;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  animation: tickerScroll 25s linear infinite;
  flex-shrink: 0;
  padding-left: 32px;
}
.ticker-item {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.18);
  white-space: nowrap;
  padding: 0 32px;
}
.ticker-sep {
  color: rgba(196,150,42,0.3);
  padding: 0 8px;
  font-size: 0.9rem;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── DATOS ── */
#datos {
  background: var(--black);
  padding: 100px 48px;
}
.datos-header {
  text-align: center;
  margin-bottom: 72px;
}
.datos-inner {
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid rgba(196,150,42,0.1);
}
.dato-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--coal);
  border-bottom: 1px solid rgba(196,150,42,0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.dato-row:last-child { border-bottom: none; }
.dato-row:hover { background: var(--carbon); }
.dato-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}
.dato-row:hover::before { transform: scaleX(1); }
.dato-row.reverse { direction: rtl; }
.dato-row.reverse > * { direction: ltr; }
.dato-text {
  padding: 48px 56px;
}
.dato-text h3 {
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}
.dato-text h3 b { font-weight: 800; }
.dato-text p { margin: 0; }
.dato-text a {
  font-size: 0.72rem;
  color: var(--mid);
  text-decoration: none;
}
.dato-text a:hover { color: var(--gold); }
.dato-highlight {
  font-size: 1.6em;
  color: var(--gold);
  font-weight: 800;
}
.dato-video video {
  width: 100%;
  display: block;
}

/* ── MID STATEMENT ── */
.mid-statement {
  background: var(--paper);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}
.mid-statement::before {
  content: '"';
  position: absolute;
  top: -60px; left: 16px;
  font-size: 22rem;
  color: rgba(10,9,6,0.04);
  line-height: 1;
  pointer-events: none;
}
.mid-inner {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mid-inner p {
  font-size: clamp(1.2rem, 3.5vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 24px;
}
.mid-inner p strong { font-weight: 700; font-style: normal; }
.mid-inner cite {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,9,6,0.35);
  font-style: normal;
}

@media (orientation: landscape) and (min-width: 769px) and (max-width: 1179px) {
  .mid-inner p  {
    font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  }
}

/* ── PAIN POINTS ── */
#pain-points {
  background: var(--black);
  padding: 100px 48px;
}
.pain-header {
  text-align: center;
  margin-bottom: 72px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(196,150,42,0.1);
  max-width: 1300px;
  margin: 0 auto;
}
.pain-card {
  background: var(--coal);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.pain-card:hover { background: var(--carbon); }
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pain-card:hover::before { transform: scaleX(1); }
.pain-num {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(196,150,42,0.5);
  line-height: 1;
  margin-bottom: 12px;
}
.pain-card h3 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}

.pain-card p {
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,247,242,0.55);
  line-height: 1.65;
  margin-top: auto;
}
.pain-subtitle {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-style: normal !important;
}
.pain-card video {
  width: 100%;
  margin: 16px 0;
  display: block;
}


/* ── VÍDEOS CLIENTES (cortos) ── */
.cortos-section {
  padding: 100px 48px;
  max-width: 1300px;
  margin: 0 auto;
}
.cortos-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196,150,42,0.2);
}
.cortos-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
}
.cortos-intro {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--mid);
  max-width: 340px;
  text-align: right;
  line-height: 1.5;
}
.cortos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.corto-card {
  background: var(--carbon);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.corto-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196,150,42,0);
  transition: border-color 0.3s;
  pointer-events: none;
  z-index: 2;
}
.corto-card:hover::after { border-color: rgba(196,150,42,0.45); }
.corto-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.5s;
}
.corto-card:hover .corto-img {
  opacity: 0.88;
  transform: scale(1.03);
}
.corto-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12,11,9,0.4);
  backdrop-filter: blur(6px);
  z-index: 3;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.corto-card:hover .corto-play-btn {
  border-color: var(--gold);
  background: rgba(12,11,9,0.65);
  transform: translate(-50%, -50%) scale(1.1);
}
.play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  border-color: transparent transparent transparent rgba(255,255,255,0.8);
  margin-left: 3px;
  transition: border-color 0.3s;
}
.corto-card:hover .play-icon {
  border-color: transparent transparent transparent var(--gold);
}
.corto-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.95) 0%, rgba(12,11,9,0.3) 60%, transparent 100%);
  padding: 28px 16px 14px;
  z-index: 3;
}
.corto-tag {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.corto-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.corto-sector {
  font-size: 0.6rem;
  color: var(--mid);
  margin-top: 2px;
}

.corto-card { position: relative; } /* probablemente ya lo tiene */
.corto-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}
.corto-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* ── LIGHTBOX YOUTUBE ── */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,11,9,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lb-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lb-inner {
  position: relative;
  width: 90%;
  max-width: 960px;
}
.lb-frame-wrap {
  position: relative;
  padding-top: 56.25%;
  background: var(--coal);
  border: 1px solid rgba(196,150,42,0.2);
}
.lb-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.lb-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px 0 0;
}
.lb-info .lb-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.lb-info .lb-sector {
  font-size: 0.6rem;
  color: var(--mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lb-close {
  background: none;
  border: 1px solid rgba(196,150,42,0.35);
  color: rgba(242,237,227,0.6);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }
.lb-nav-prev,
.lb-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.lb-nav-prev { left: -56px; }
.lb-nav-next { right: -56px; }
.lb-nav-btn {
  background: none;
  border: 1px solid rgba(196,150,42,0.2);
  color: rgba(242,237,227,0.5);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: border-color 0.2s, color 0.2s;
}
.lb-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.lb-counter-wrap {
  position: absolute;
  top: -32px; right: 0;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--mid);
  text-transform: uppercase;
}

/* ── PRODUCT PAGE (frases + vídeos) ── */
#product-page {
  background: var(--coal);
  padding: 100px 48px;
}
.product-header {
  text-align: center;
  margin-bottom: 72px;
}
.product-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;  /* quita el border, el gap lo sustituye */
}
.frase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;  /* separa texto y vídeo dentro de la fila */
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.frase-row:last-child { border-bottom: none; }
.frase-row.reverse { direction: rtl; }
.frase-row.reverse > * { direction: ltr; }
.frase-text {
  padding: 48px 56px;
  background: var(--carbon);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  text-align: center;
}
.frase-text h3 {
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}
.frase-text h3 b { font-weight: 800; }
.frase-video video {
  width: 100%;
  display: block;
}

/* ── ETAPAS ── */
.etapas-section {
  padding: 100px 48px;
}
.page-trqm .etapas-section {
  background-color: var(--black);
}
.etapas-header {
  text-align: center;
  margin-bottom: 72px;
}
.etapas-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.etapas-eyebrow::before,
.etapas-eyebrow::after { content: ''; width: 22px; height: 1px; background: var(--gold); }
.etapas-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
}
.etapas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(196,150,42,0.1);
  max-width: 1300px;
  margin: 0 auto;
}
.etapa {
  padding: 40px 28px;
  border-right: 1px solid rgba(196,150,42,0.08);
  position: relative;
  transition: background 0.3s;
  background: var(--coal);
  display: flex;
  flex-direction: column;
  margin: 0.3rem;
}
.etapa:last-child { border-right: none; }
.etapa:hover { background: var(--carbon); }
.etapa-num {
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(196,150,42,0.5);
  line-height: 1;
  margin-bottom: 16px;
}
.etapa-title {
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 6px;
}
.etapa-sub {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.etapa ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.etapa ul li {
  font-size: 0.78rem;
  color: rgba(242,237,227,0.75);
  line-height: 1.5;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  min-height: 35px;
}
.etapa ul li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.etapa-nota {
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(242,237,227,0.45);
  line-height: 1.55;
  border-top: 1px solid rgba(196,150,42,0.1);
  padding-top: 16px;
  margin-top: auto;
  min-height: 80px;
}

/* ── PROPUESTA / PRECIO ── */
#propuesta {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image:
  linear-gradient(to bottom, rgba(12,11,9,0.88), rgba(12,11,9,0.88)),
  url(../img/backgrounds/web-thqv-background-colorchecker.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 48px;
}
.propuesta-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
h2.propuesta-left {
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 8px;
}
.sub {
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,247,242,0.5);
  margin-bottom: 32px;
  line-height: 1.6;
}
.propuesta-lead {
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(250,247,242,0.65);
  line-height: 1.65;
  margin-bottom: 36px;
}
.precio-val {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.precio-val span {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
}
.entregable {
  padding: 18px 0;
  border-bottom: 1px solid rgba(250,247,242,0.12);
  max-width: 450px;
}
.entregables-header {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.entregable:first-child { border-top: 1px solid rgba(250,247,242,0.18); }
.entregable-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.entregable-desc {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(250,247,242,0.5);
  /* padding-left: 22px; */
}
.entregable-desc::before {
  content: '✓';
  color: var(--gold);
  margin-right: 10px;
  font-weight: 400;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-lt); color: var(--black); }

/* ── LOGOS CLIENTES ── */
.logos-section {
  background: var(--paper);
  padding: 60px 48px;
}
.logos-section h2 {
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--black);
  text-align: center;
  margin-bottom: 40px;
}
.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.logos-grid img {
  height: 36px;
  filter: grayscale(30%) brightness(1);
  opacity: 0.8;
  transition: opacity 0.3s, filter 0.3s;
  max-height: 35px;
}
.logos-grid img:hover { opacity: 0.9; filter: none; }

/* ── TESTIMONIOS ── */
.testi-section {
  background: var(--coal);
  border-top: 1px solid rgba(196,150,42,0.1);
  padding: 100px 48px;
}
.testi-inner { max-width: 1300px; margin: 0 auto; }
.testi-header { margin-bottom: 56px; }
.testi-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--carbon);
  padding: 36px;
  border-top: 1px solid rgba(196,150,42,0.2);
  position: relative;
  overflow: hidden;
  transition: border-top-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testi-card:hover { border-top-color: var(--gold); }

.testi-photo-lnds {
  width: 14rem; height: 14rem;
  border-radius: 50%;
  background: var(--coal);
  border: 1px solid rgba(196,150,42,0.2);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.testi-photo-lnds img { width: 100%; height: 100%; object-fit: cover; }

.testi-photo-lnds video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: none;
  margin: 0 auto;
  left: 0; right: 0;
  /* top: 35px; */
}
.testi-photo-lnds.playing video { display: block; }

.testi-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
}

.testi-card .corto-play-btn {
  position: absolute;
  top: calc(15rem - 7px);
  left: 50%;
  transform: translateX(-50%);
}

.testi-text {
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(242,237,227,0.65);
  line-height: 1.7;
  flex-grow: 1;
  padding-top: 1rem;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.62rem;
  color: var(--mid);
}
.testi-bg-q {
  position: absolute;
  bottom: -20px; right: 12px;
  font-size: 7rem;
  color: rgba(196,150,42,0.04);
  line-height: 1;
  pointer-events: none;
}

/* ── CTA FINAL ── */
.cta-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196,150,42,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-inner h2 span { color: var(--gold); font-weight: 300; }
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(242,237,227,0.7);
  margin-bottom: 44px;
  line-height: 1.6;
}


/* ── SECTION EYEBROW (variante de landing) ── */
.section-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { 
  opacity: 1;
  transform: translateY(0);
  align-items: center;
 }

#propuesta .reveal.visible p{ max-width: 450px; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */

@media (orientation: portrait) {
  .hero {
  height: 80vh;
  min-height: auto;
  }
  .hero-edition {
  top: 50px;
  }
  #propuesta,
  .cta-section {
  min-height: auto;
  }
}
@media (orientation: landscape) and (min-width: 1200px) and (hover: hover) and (pointer: fine) {
  #propuesta .reveal {
    min-width: 620px;
  }
}

@media (orientation: portrait) and (max-width: 1023px) {
  .propuesta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}



@media (max-width: 960px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px 40px; }
  .hero-edition { left: 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .cortos-grid { grid-template-columns: 1fr 1fr; }
  .frase-row { grid-template-columns: 1fr; }
  .frase-row.reverse { direction: ltr; }
  .dato-row { grid-template-columns: 1fr; }
  .dato-row.reverse { direction: ltr; }
  .etapas-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .cortos-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cortos-intro { text-align: left; }
  .lb-nav-prev { left: -44px; }
  .lb-nav-next { right: -44px; }
  .cta-section .section-eyebrow { font-size: 0.5rem; }
}

@media (orientation: portrait) and (min-width: 768px) {
  #propuesta .reveal.visible p {
    max-width: 100%;
  }
  .propuesta-inner {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  #pain-points,
  .cortos-section,
  .etapas-section,
  .cta-section { padding: 60px 15px; }
  .testi-section,
  #propuesta { padding: 60px 24px; }
  .etapas-grid { grid-template-columns: 1fr; }
  .cortos-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .lb-nav-prev,
  .lb-nav-next { display: none; }
  .lb-inner { width: 95%; }
  .hero-sub { margin-bottom: 15px; }
  .btn-ghost { margin-top: 15px; }
  .dato-video { padding: 10px 0; }
  .pain-card { padding: 40px 15px; }
  #datos { padding: 60px 24px; }
  #product-page { padding: 60px 24px; }
  .dato-text { padding: 32px 24px; }
  .frase-text { padding: 32px 24px; }
  .reveal.visible { justify-content: center; }
  .etapa ul li { font-size: 0.90rem; }
  .testi-card { padding: 36px 20px; }
}

@media (max-width: 375px) {
  .hero { height: 70vh; }
}