/* ================================================================
   DEKEVA — verano.css · Landing "Ofertas de Verano 2026"
   Concepto: "Mediodía en la Costa". Sistema editorial DeKeVa
   (Cormorant Garamond + Inter + JetBrains Mono, blanco/azul #032FD4)
   con capa de verano: arena, sol que desciende con el scroll,
   horizontes como separadores, sombras duras de mediodía (45°),
   acento terracota solo en tags/precios de oferta, calima en CTAs.

   Bare landing: standalone, sin header/footer del tema, sticky CTA
   de WhatsApp. Sin GSAP, reveals vanilla (IntersectionObserver).

   Todo namespaced bajo #dkv-ver para no colisionar con WP/plugins.
================================================================ */

/* ── Tokens ── */
#dkv-ver {
  /* Base editorial DeKeVa */
  --bg:           #ffffff;
  --bg-dark:      #0d0d0b;
  --text:         #0d0d0b;
  --muted:        #6f6e6a;
  --faint:        #999894;
  --border:       rgba(13,13,11,0.10);
  --border-soft:  rgba(13,13,11,0.06);
  --blue:         #032FD4;
  --blue-on-dark: #3451F0;
  --blue-dim:     rgba(3,47,212,0.06);
  --blue-glow:    rgba(3,47,212,0.14);

  /* Capa verano · Mediodía en la Costa */
  --sand:         #f4ecdd;                   /* arena: crema DeKeVa calentada */
  --sand-deep:    #ecdfc6;                   /* arena mojada */
  --terra:        #c2491d;                   /* terracota: SOLO tags de oferta y precios tachados */
  --terra-soft:   rgba(194,73,29,0.08);
  --sun-core:     #f7d9a8;                   /* centro del sol */
  --sun-halo:     rgba(247,217,168,0.0);
  --shadow-hard:  rgba(13,13,11,0.12);       /* sombra dura 45°, sin blur */

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-italic:  'Cormorant', Georgia, serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --ease:     cubic-bezier(.19,1,.22,1);
  --ease-lux: cubic-bezier(0.76,0,0.24,1);

  --pad:  clamp(90px, 12vw, 170px);
  /* El tercer término evita que el contenedor supere el hueco interior de la
     sección (padding lateral) en móviles estrechos — si no, desborda a la derecha. */
  --cont: min(1180px, 92vw, 100vw - 48px);
  --cont-narrow: min(820px, 92vw, 100vw - 48px);

  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Reset scoped */
#dkv-ver *, #dkv-ver *::before, #dkv-ver *::after { margin: 0; padding: 0; box-sizing: border-box; }
#dkv-ver img, #dkv-ver video, #dkv-ver svg { display: block; max-width: 100%; }
#dkv-ver a { color: inherit; text-decoration: none; }
#dkv-ver button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
#dkv-ver .defs { position: absolute; width: 0; height: 0; overflow: hidden; }
body.dkv-verano { margin: 0; background: var(--bg); overflow-x: hidden; }

/* Cursor del sistema siempre visible */
body.dkv-verano, body.dkv-verano * { cursor: auto !important; }
body.dkv-verano a,
body.dkv-verano button,
body.dkv-verano .btn,
body.dkv-verano .faq-head,
body.dkv-verano [role="button"] { cursor: pointer !important; }

/* ── Utilidades ── */
#dkv-ver .cont { width: var(--cont); margin-inline: auto; }
#dkv-ver .cont-narrow { width: var(--cont-narrow); margin-inline: auto; }
#dkv-ver section { padding: var(--pad) 24px; position: relative; overflow: hidden; }

/* Grain cálido de foto sobreexpuesta */
#dkv-ver .grain {
  position: fixed; inset: -50%; z-index: 9999; pointer-events: none;
  width: 200%; height: 200vh; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.76 0 0 0 0 0.66 0 0 0 0 0.5 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: ver-grain 1.2s steps(3) infinite;
}

/* Eyebrow mono */
#dkv-ver .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
#dkv-ver .eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--blue); opacity: .6;
}

/* Section title */
#dkv-ver .stitle {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.08; letter-spacing: -0.01em;
  color: var(--text);
}
#dkv-ver .stitle em { font-family: var(--f-italic); font-style: italic; color: var(--blue); }
#dkv-ver .head-block { margin-bottom: clamp(48px, 6vw, 80px); }

/* ── CTA buttons ── */
#dkv-ver .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 18px 34px; border-radius: 2px;
  background: var(--blue); color: #fff;
  transition: background .4s var(--ease-lux), box-shadow .4s var(--ease-lux), transform .4s var(--ease-lux);
  will-change: transform;
  position: relative;
}
#dkv-ver .btn svg { width: 16px; height: 16px; flex-shrink: 0; }
#dkv-ver .btn:hover { background: #0220a8; box-shadow: 0 16px 40px -12px var(--blue-glow); }
#dkv-ver .btn--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
#dkv-ver .btn--ghost:hover { background: var(--text); color: #fff; box-shadow: none; }
#dkv-ver .btn--on-dark { background: #fff; color: var(--bg-dark); }
#dkv-ver .btn--on-dark:hover { background: var(--blue-on-dark); color: #fff; }

/* Calima (heat shimmer): el texto del botón tiembla con el filtro SVG.
   Solo desktop con hover real; en móvil ni se aplica. */
@media (hover: hover) and (pointer: fine) {
  #dkv-ver .btn--heat:hover span { filter: url(#dkv-heat); }
}

/* ── Reveals ── */
#dkv-ver .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
#dkv-ver .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  #dkv-ver .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  #dkv-ver .grain { animation: none; }
  #dkv-ver .hero-sun { transform: none !important; }
  #dkv-ver .waves-track { animation: none !important; }
}

/* ── Secciones oscuras: blueprint DeKeVa ── */
#dkv-ver .is-dark { background: var(--bg-dark); color: #f2ede4; }
#dkv-ver .is-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(52,81,240,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,81,240,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 35%, transparent 85%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 35%, transparent 85%);
}
#dkv-ver .is-dark > * { position: relative; z-index: 1; }
#dkv-ver .is-dark .eyebrow { color: var(--blue-on-dark); }
#dkv-ver .is-dark .eyebrow::before { background: var(--blue-on-dark); }
#dkv-ver .is-dark .stitle { color: #fff; }
#dkv-ver .is-dark .stitle em { color: var(--blue-on-dark); }

/* ── Scroll progress ── */
#dkv-ver .scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--blue);
  transform-origin: left center; transform: scaleX(0);
  z-index: 10001; pointer-events: none;
}

/* ── Horizonte: separador de secciones ── */
#dkv-ver .horizon {
  position: relative; height: 1px; background: var(--border);
  width: var(--cont); margin-inline: auto;
}
#dkv-ver .horizon-sun {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--blue); background: var(--bg);
}

/* ════════════════════════════════════════════════════════════
   HERO · mediodía
═══════════════════════════════════════════════════════════ */
#dkv-ver .hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: clamp(110px, 14vh, 160px) 24px clamp(140px, 18vh, 220px);
  background: var(--bg);
}

/* El sol: desciende lentamente con el scroll (JS mueve --sun-y) */
#dkv-ver .hero-sun {
  position: absolute; z-index: 0;
  top: clamp(60px, 10vh, 120px); right: clamp(4%, 8vw, 12%);
  width: clamp(180px, 26vw, 380px); height: clamp(180px, 26vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--sun-core) 0%, #f9e6c4 55%, var(--sun-halo) 72%);
  transform: translateY(calc(var(--sun-y, 0) * 1px));
  will-change: transform;
  pointer-events: none;
}
/* Anillo editorial alrededor del sol */
#dkv-ver .hero-sun::after {
  content: ''; position: absolute; inset: -12%;
  border: 1px solid rgba(3,47,212,0.18); border-radius: 50%;
}

/* Línea de horizonte del hero + franja de arena */
#dkv-ver .hero-horizon {
  position: absolute; left: 0; right: 0; bottom: clamp(90px, 14vh, 170px);
  height: 1px; background: var(--border); z-index: 0;
}
#dkv-ver .hero-sand {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: clamp(90px, 14vh, 170px); z-index: 0;
  background: var(--sand);
}

#dkv-ver .hero-inner {
  position: relative; z-index: 1;
  width: var(--cont); margin-inline: auto;
  max-width: 920px;
}

/* Parte meteorológico */
#dkv-ver .weather {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(28px, 4vw, 44px);
}
#dkv-ver .weather i { width: 3px; height: 3px; border-radius: 50%; background: var(--terra); }

#dkv-ver .hero h1 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.7rem, 7vw, 5.8rem); line-height: 1.02; letter-spacing: -0.015em;
  color: var(--text); margin-bottom: clamp(24px, 3vw, 36px);
  max-width: 18ch;
}
#dkv-ver .hero h1 em { font-family: var(--f-italic); font-style: italic; color: var(--blue); }

#dkv-ver .hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem); color: var(--muted); font-weight: 300;
  max-width: 56ch; margin-bottom: clamp(36px, 5vw, 56px); line-height: 1.85;
}

#dkv-ver .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   OLAS · marquee
═══════════════════════════════════════════════════════════ */
#dkv-ver .waves {
  overflow: hidden; position: relative; z-index: 5;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--sand);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
#dkv-ver .waves-track { display: flex; width: max-content; animation: ver-marquee 32s linear infinite; }
#dkv-ver .waves-item { display: flex; align-items: center; padding: 18px 0; white-space: nowrap; }
#dkv-ver .waves-word {
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  padding: 0 22px;
}
#dkv-ver .waves-sep { width: 40px; height: 12px; color: var(--blue); opacity: .5; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   AGITACIÓN (dark)
═══════════════════════════════════════════════════════════ */
#dkv-ver .dolor-list { display: grid; gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); max-width: 880px; }
#dkv-ver .dolor-item {
  display: flex; align-items: baseline; gap: 26px;
  padding: 28px 34px; background: var(--bg-dark);
  transition: background .4s var(--ease);
}
#dkv-ver .dolor-item:hover { background: #131310; }
#dkv-ver .dolor-idx {
  font-family: var(--f-mono); font-size: 12px; color: var(--blue-on-dark);
  flex-shrink: 0; letter-spacing: .1em;
}
#dkv-ver .dolor-item p {
  color: rgba(242,237,228,.65);
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.4;
}
#dkv-ver .dolor-item p strong { color: #fff; font-weight: 400; }
#dkv-ver .dolor-item p em { font-family: var(--f-italic); font-style: italic; color: rgba(242,237,228,.85); }

#dkv-ver .dolor-cierre { margin-top: clamp(48px, 6vw, 72px); max-width: 880px; }
#dkv-ver .dolor-cierre p:first-child {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; color: #fff;
}
#dkv-ver .dolor-cierre p:last-child {
  margin-top: 14px; color: rgba(242,237,228,.5);
  font-size: 1.05rem;
}

/* ════════════════════════════════════════════════════════════
   GIRO
═══════════════════════════════════════════════════════════ */
#dkv-ver .giro { background: var(--bg); }
#dkv-ver .giro .stitle { margin-bottom: clamp(28px, 4vw, 40px); }
#dkv-ver .giro-text {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem); color: var(--muted);
  line-height: 1.85; max-width: 60ch;
}
#dkv-ver .giro-text + .giro-text { margin-top: 18px; color: var(--text); font-weight: 400; }

/* ════════════════════════════════════════════════════════════
   ESCALERA (arena) · 4 niveles con riel vertical + nodos
   El bucle Zeigarnik macro: estás en el cero, cada escalón abre el
   siguiente. Riel conecta los nodos, "tú estás aquí" marca el inicio.
═══════════════════════════════════════════════════════════ */
#dkv-ver .escalera { background: var(--sand); }
#dkv-ver .esc-intro {
  margin-top: 22px; max-width: 58ch;
  color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.8;
}

/* Marcador "tú estás aquí · nivel 0" */
#dkv-ver .esc-here {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: clamp(40px, 5vw, 60px);
  padding-left: 8px;
}
#dkv-ver .esc-here-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 5px var(--terra-soft);
  animation: ver-here 2.4s ease-in-out infinite;
}
#dkv-ver .esc-here-label {
  font-family: var(--f-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--terra);
}

/* Riel: la línea vertical que conecta los nodos */
#dkv-ver .esc-rail { position: relative; }
#dkv-ver .esc-rail::before {
  content: ''; position: absolute;
  left: clamp(26px, 4vw, 36px); top: 30px; bottom: 30px; width: 2px;
  background: linear-gradient(to bottom, var(--terra) 0%, var(--blue) 12%, var(--blue) 100%);
  transform-origin: top; transform: scaleY(0);
  transition: transform 1.8s var(--ease-lux);
}
#dkv-ver .esc-rail.drawn::before { transform: scaleY(1); }
@media (prefers-reduced-motion: reduce) {
  #dkv-ver .esc-rail::before { transform: scaleY(1); }
}

/* Cada escalón */
#dkv-ver .step {
  position: relative;
  display: grid; grid-template-columns: clamp(56px, 8vw, 76px) 1fr;
  gap: clamp(20px, 4vw, 44px);
  padding: clamp(34px, 5vw, 56px) 0;
}
#dkv-ver .step + .step { border-top: 1px solid rgba(13,13,11,0.12); }

/* Nodo numerado sobre el riel */
#dkv-ver .step-node {
  position: relative; z-index: 1;
  width: clamp(56px, 8vw, 76px); height: clamp(56px, 8vw, 76px);
  border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s var(--ease-lux), box-shadow .5s var(--ease-lux);
}
#dkv-ver .step:hover .step-node { transform: scale(1.06); box-shadow: 0 0 0 7px var(--blue-dim); }
#dkv-ver .step-num {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--blue); line-height: 1;
}
/* El último escalón (sistema completo) destaca el nodo en azul sólido */
#dkv-ver .step--tag:last-child .step-node { background: var(--blue); border-color: var(--blue); }
#dkv-ver .step--tag:last-child .step-num { color: #fff; }

/* Cuerpo del escalón */
#dkv-ver .step-body { padding-top: 6px; max-width: 680px; }
#dkv-ver .step-tag {
  display: inline-block; margin-bottom: 16px;
  font-family: var(--f-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--terra); color: #fff; padding: 7px 16px;
}
#dkv-ver .step-frase {
  display: block; margin-bottom: 10px;
  font-family: var(--f-italic); font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--terra);
}
#dkv-ver .step-body h3 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.12;
  color: var(--text); margin-bottom: 24px;
}
#dkv-ver .step-body h3 em { font-family: var(--f-italic); font-style: italic; color: var(--blue); }

/* Lista de "qué incluye" con check */
#dkv-ver .step-incluye { list-style: none; margin-bottom: 26px; }
#dkv-ver .step-incluye li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 9px 0; color: var(--text); font-size: 1rem; line-height: 1.6;
}
#dkv-ver .step-incluye svg {
  flex-shrink: 0; width: 18px; height: 18px; color: var(--blue); margin-top: 3px;
}

/* Bloque de precio · caja con sombra dura de mediodía */
#dkv-ver .step-precio {
  margin-bottom: 26px; padding: 22px 26px;
  background: var(--bg); border: 1px solid var(--border);
  box-shadow: 14px 14px 0 0 var(--shadow-hard);
  max-width: 600px;
}
#dkv-ver .step-precio-line { display: block; font-size: 1.02rem; color: var(--text); line-height: 1.6; }
#dkv-ver .step-precio-line + .step-precio-line { margin-top: 8px; }
#dkv-ver .step-precio-line s { color: var(--faint); text-decoration-color: var(--terra); text-decoration-thickness: 2px; }
#dkv-ver .step-precio-line strong { color: var(--terra); font-weight: 600; }
#dkv-ver .step-precio-line b { font-weight: 500; }
#dkv-ver .step-precio-line i {
  font-family: var(--f-mono); font-style: normal; font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
#dkv-ver .step-regalo strong { color: var(--blue); }
/* Niveles 2-4: precio oculto, fondo arena (no caja blanca con sombra) */
#dkv-ver .step-precio--oculto {
  background: transparent; border: 1px dashed rgba(13,13,11,0.2);
  box-shadow: none;
}
#dkv-ver .step-precio--oculto .step-precio-line { color: var(--muted); font-size: .98rem; }
#dkv-ver .step-precio--oculto .step-precio-line b { color: var(--text); }

/* Propuesta de valor Zeigarnik */
#dkv-ver .step-zeig {
  margin-bottom: 28px; max-width: 56ch;
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem); line-height: 1.5; color: var(--text);
}

/* Puente al siguiente nivel (el encadenamiento Zeigarnik) */
#dkv-ver .step-puente {
  margin-top: 30px; padding-top: 22px;
  border-top: 1px solid rgba(13,13,11,0.12);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-italic); font-style: italic;
  font-size: clamp(1rem, 1.7vw, 1.2rem); color: var(--muted);
}
#dkv-ver .step-puente::before {
  content: '↓'; font-style: normal; font-family: var(--f-mono);
  color: var(--blue); font-size: 1.1rem; flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   URGENCIA · countdown (dark)
═══════════════════════════════════════════════════════════ */
#dkv-ver .urgencia { text-align: center; }
#dkv-ver .urgencia .head-block { margin-bottom: clamp(40px, 5vw, 64px); }

#dkv-ver .countdown {
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(10px, 2.5vw, 28px);
  margin-bottom: clamp(48px, 6vw, 72px);
}
#dkv-ver .cd-unit { display: flex; flex-direction: column; align-items: center; gap: 10px; }
#dkv-ver .cd-num {
  font-family: var(--f-display); font-weight: 300; font-variant-numeric: tabular-nums;
  font-size: clamp(3.2rem, 10vw, 7.5rem); line-height: 1; color: #fff;
  min-width: 2ch; text-align: center;
}
#dkv-ver .cd-label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(242,237,228,.45);
}
#dkv-ver .cd-sep {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.4rem, 8vw, 6rem); line-height: 1; color: var(--blue-on-dark);
  padding-top: clamp(2px, 1vw, 10px);
}

/* Timeline JUL — AGO — FIN */
#dkv-ver .timeline {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 2.5vw, 26px);
  margin-bottom: clamp(40px, 5vw, 60px);
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
#dkv-ver .tl-mes { color: rgba(242,237,228,.5); }
#dkv-ver .tl-line { width: clamp(40px, 8vw, 120px); height: 1px; background: rgba(242,237,228,.2); position: relative; }
#dkv-ver .tl-line::after {
  content: ''; position: absolute; left: 0; top: 0; height: 100%; width: var(--tl-fill, 0%);
  background: var(--blue-on-dark); transition: width 1.4s var(--ease-lux);
}
#dkv-ver .tl-fin { color: var(--terra); font-weight: 600; }

#dkv-ver .urgencia-text {
  max-width: 60ch; margin-inline: auto;
  color: rgba(242,237,228,.6); font-size: 1.02rem; line-height: 1.85;
}

/* ════════════════════════════════════════════════════════════
   FAQ (arena)
═══════════════════════════════════════════════════════════ */
#dkv-ver .objeciones { background: var(--sand); }
#dkv-ver .faq-list { max-width: 800px; }
#dkv-ver .faq-item { border-top: 1px solid rgba(13,13,11,0.14); }
#dkv-ver .faq-item:last-child { border-bottom: 1px solid rgba(13,13,11,0.14); }
#dkv-ver .faq-head {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 28px 4px; cursor: pointer; transition: padding-left .35s var(--ease);
}
#dkv-ver .faq-head:hover { padding-left: 12px; }
#dkv-ver .faq-q {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem); color: var(--text);
}
#dkv-ver .faq-plus {
  flex-shrink: 0; font-size: 22px; font-weight: 300; color: var(--blue);
  line-height: 1; transition: transform .35s var(--ease-lux);
}
#dkv-ver .faq-item.open .faq-plus { transform: rotate(45deg); }
#dkv-ver .faq-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-lux); }
#dkv-ver .faq-answer { color: var(--muted); font-size: 1rem; line-height: 1.8; padding: 0 4px 28px; max-width: 680px; }

/* ════════════════════════════════════════════════════════════
   CTA FINAL · atardecer (dark)
═══════════════════════════════════════════════════════════ */
#dkv-ver .final {
  text-align: center;
  padding-bottom: 0; overflow: hidden;
}
#dkv-ver .final .cont { padding-bottom: clamp(160px, 22vh, 280px); }

/* El sol se pone en el horizonte inferior de la página */
#dkv-ver .final-sunset {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%) translateY(50%);
  width: clamp(280px, 42vw, 620px); height: clamp(280px, 42vw, 620px);
  border-radius: 50%; z-index: 0;
  background: radial-gradient(circle at 50% 50%, var(--sun-core) 0%, rgba(247,217,168,.4) 45%, rgba(247,217,168,0) 70%);
  pointer-events: none;
}
#dkv-ver .final-sunset::after {
  content: ''; position: absolute; inset: -10%;
  border: 1px solid rgba(52,81,240,0.25); border-radius: 50%;
}

#dkv-ver .final-pre {
  font-family: var(--f-italic); font-style: italic; font-weight: 300;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem); color: rgba(242,237,228,.55);
  margin-bottom: clamp(24px, 3vw, 36px);
}
#dkv-ver .final-title {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 1.04; letter-spacing: -0.015em;
  color: #fff; margin-bottom: clamp(20px, 3vw, 32px);
}
#dkv-ver .final-title em { font-family: var(--f-italic); font-style: italic; color: var(--blue-on-dark); }
#dkv-ver .final-y {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem); color: rgba(242,237,228,.8);
  margin-bottom: clamp(40px, 6vw, 64px);
}

#dkv-ver .final-cta { display: flex; flex-direction: column; align-items: center; gap: 22px; }
#dkv-ver .final-nota {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .08em;
  color: rgba(242,237,228,.45);
}

/* ════════════════════════════════════════════════════════════
   STICKY CTA
═══════════════════════════════════════════════════════════ */
#dkv-ver .sticky-cta {
  position: fixed; bottom: 22px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9990; opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease-lux);
}
#dkv-ver .sticky-cta.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
#dkv-ver .sticky-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 10px 10px 22px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 999px;
  box-shadow: 0 18px 50px -16px rgba(13,13,11,.35);
}
#dkv-ver .sticky-label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--terra); white-space: nowrap;
}
#dkv-ver .sticky-label strong {
  display: block; font-family: var(--f-body); font-size: .9rem; letter-spacing: 0;
  text-transform: none; color: var(--text); font-weight: 500;
}
#dkv-ver .sticky-cta .btn { padding: 13px 24px; border-radius: 999px; }

/* ════════════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════════ */
@keyframes ver-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ver-here { 0%,100% { box-shadow: 0 0 0 5px var(--terra-soft); } 50% { box-shadow: 0 0 0 9px rgba(194,73,29,0.04); } }
@keyframes ver-grain {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-2%, 1%); }
  66% { transform: translate(1%, -2%); }
  100% { transform: translate(0, 0); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #dkv-ver section { padding: 80px 20px; }
  #dkv-ver .hero { padding: 110px 20px 140px; }
  #dkv-ver .hero-sun {
    top: 70px; right: -10%;
    width: 200px; height: 200px;
  }
  #dkv-ver .hero h1 { max-width: none; }
  #dkv-ver .hero-cta .btn { width: 100%; }
  #dkv-ver .dolor-item { padding: 22px 20px; gap: 16px; }

  /* Escalera: el riel se pega a la izquierda y los nodos encogen */
  #dkv-ver .step { grid-template-columns: 46px 1fr; gap: 18px; }
  #dkv-ver .step-node { width: 46px; height: 46px; }
  #dkv-ver .esc-rail::before { left: 22px; }
  #dkv-ver .step-precio { box-shadow: 10px 10px 0 0 var(--shadow-hard); padding: 18px 20px; }
  #dkv-ver .step-incluye li { font-size: .95rem; }

  #dkv-ver .sticky-label { display: none; }
  #dkv-ver .final .cont { padding-bottom: 180px; }
  /* En móvil el sticky no debe tapar el CTA final */
  #dkv-ver .final-cta { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  #dkv-ver .countdown { gap: 6px; }
  #dkv-ver .cd-sep { display: none; }
  #dkv-ver .cd-unit { flex: 1; }
  #dkv-ver .weather { gap: 8px; font-size: 10px; }
  #dkv-ver .btn { padding: 16px 24px; font-size: 10px; }
  /* En pantallas muy estrechas el nodo va arriba, el cuerpo debajo */
  #dkv-ver .step { grid-template-columns: 1fr; gap: 16px; }
  #dkv-ver .esc-rail::before { display: none; }
  #dkv-ver .esc-here { padding-left: 0; }
}
