/* ==================================================================
   MKT4U V3.0 — BRUTALISMO EDITORIAL EXPERIENCIAL
   Solo desktop. Movil pendiente.
   ================================================================== */

:root {
  --c-white: #FEFEFC;
  --c-vino: #4A0E2C;
  --c-vino-claro: #6B1A40;
  --c-vino-deep: #2D0819;
  --c-beige: #EFE6D6;
  --c-beige-claro: #F5EEE0;
  --c-neon: #E8FF00;
  --c-onice: #0A0A0A;
  --c-grey-soft: #6f6f6f;

  --ff-display: 'Playfair Display', 'Times New Roman', serif;
  --ff-sans: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;

  --max-w: 1440px;
  --gutter: clamp(32px, 5vw, 80px);
  --ease-brut: cubic-bezier(.77,0,.18,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--c-white);
  color: var(--c-vino);
  font-family: var(--ff-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* NO aplicar overflow-x: hidden aqui — rompe el position:sticky
     de las secciones Autoridad y Arsenal. Los desbordes horizontales
     se controlan con overflow:hidden en contenedores concretos. */
}
/* Scroll suave para anchors de navegacion. El snap al CTA final se maneja por JS. */
html {
  scroll-behavior: smooth;
}

/* Ancho minimo razonable para preservar el layout editorial. Por debajo de esto
   aparece scroll horizontal controlado (mejor que un layout roto). */
body { min-width: 960px; }

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--c-neon); color: var(--c-vino); }

/* ==================================================================
   UTILIDADES
   ================================================================== */

.caps {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-vino);
}

.mark-editorial {
  background: var(--c-vino);
  color: var(--c-beige);
  font-weight: 700;
  padding: 0 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hidden { display: none !important; }

/* ==================================================================
   PRELOADER
   ================================================================== */

.preloader {
  position: fixed;
  inset: 0;
  background: var(--c-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s var(--ease-brut), visibility .8s var(--ease-brut);
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader__mark { width: 360px; height: auto; }
.preloader__text {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawMark 1.6s var(--ease-brut) forwards;
}
@keyframes drawMark {
  to { stroke-dashoffset: 0; fill: var(--c-vino); }
}

/* ==================================================================
   NAV
   ================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(254, 254, 252, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(74, 14, 44, 0.06);
}
.nav__inner {
  width: 100%;
  padding: 18px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  line-height: 0;
  height: 38px;
}
/* Logo MKT4U en su color original (negro sobre transparente) */
.nav__brand-logo {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
  object-position: left center;
  transition: opacity .25s ease;
}
.nav__brand:hover .nav__brand-logo {
  opacity: 0.7;
}

/* Nav links (solo contiene el CTA principal) */
.nav__links {
  display: flex;
  align-items: center;
}
.nav__cta {
  background: var(--c-vino);
  color: var(--c-neon) !important;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .3s var(--ease-brut), background .3s ease;
}
.nav__cta:hover {
  transform: translateY(-2px);
  background: var(--c-vino-deep);
}

/* Hamburger button + drawer + CTA secundario movil + etiqueta vertical hero
   ocultos por defecto en desktop. Se muestran en tablet (iPad) y mobile. */
.nav__hamburger { display: none; }
.nav-drawer { display: none; }
.demo__cta--mobile { display: none; }
.hero__vertical-label { display: none; }
/* Drawer disponible en:
   - Mobile (max-width 1024)
   - iPad/tablets (touch primary) — captura iPad en landscape tambien */
@media (max-width: 1024px),
       (hover: none) and (pointer: coarse) {
  .nav-drawer { display: block; }
}

/* ==================================================================
   SIDE NAV — Navegacion lateral por puntos
   ================================================================== */

.side-nav {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  padding: 12px 0;
}
.side-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.side-nav__item {
  position: relative;
}
.side-nav__link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  padding: 6px 0;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.side-nav__link:focus {
  outline: none;
}
.side-nav__link:focus-visible {
  outline: 2px solid var(--c-neon);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Punto vino por default — pequeño y sutil */
.side-nav__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-vino);
  opacity: 0.4;
  flex-shrink: 0;
  transform-origin: center center;
  transition: width 0.4s var(--ease-brut),
              height 0.4s var(--ease-brut),
              opacity 0.4s ease,
              background 0.4s ease,
              transform 0.4s var(--ease-brut);
}

/* Seccion activa: punto iluminado y ligeramente mas grande */
.side-nav__item.is-active .side-nav__dot {
  width: 10px;
  height: 10px;
  opacity: 1;
}

/* Hover sobre el side-nav: TODOS los puntos crecen 25% en proporcion */
.side-nav:hover .side-nav__dot {
  transform: scale(1.25);
}

/* Label: texto vino minimalista, sin recuadros */
.side-nav__label {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-vino);
  margin-left: 0;
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.35s var(--ease-brut),
              transform 0.35s var(--ease-brut),
              margin-left 0.35s var(--ease-brut),
              color 0.35s ease;
}

/* Hover en el side-nav: se despliegan todos los labels */
.side-nav:hover .side-nav__label {
  opacity: 1;
  transform: translateX(0);
  margin-left: 18px;
  pointer-events: auto;
}

/* Hover sobre un link especifico: punto mas iluminado + scale extra
   (el scale base 1.25 del side-nav:hover ya aplica, aqui lo subimos mas) */
.side-nav__link:hover .side-nav__dot {
  opacity: 1;
  transform: scale(1.5);
}
.side-nav__link:hover .side-nav__label {
  color: var(--c-vino-deep);
}

/* SOMBREADO BEIGE difuminado SOLO del lado izquierdo.
   Se extiende del top al bottom del viewport. Como tiene z-index menor al
   navbar superior, visualmente queda "debajo" del navbar y llega hasta el. */
.side-nav__shadow {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 230px; /* solo cubre dots + labels — no se extiende sobre el contenido */
  background: linear-gradient(to right,
              rgba(239, 230, 214, 0.7) 0%,
              rgba(239, 230, 214, 0.55) 40%,
              rgba(239, 230, 214, 0.25) 75%,
              rgba(239, 230, 214, 0) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 95; /* debajo del navbar (100) y del side-nav (150) */
  transition: opacity 0.45s ease;
}
.side-nav:hover ~ .side-nav__shadow {
  opacity: 1;
}

/* ==================================================================
   WHATSAPP FLOTANTE
   ================================================================== */

.wa-floating {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-vino);
  /* Verde-amarillo neon del proyecto */
  color: #E7FF33;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 4px 18px rgba(74, 14, 44, 0.25);
  transition: transform .35s var(--ease-brut), box-shadow .4s ease;
}
/* Logo SVG mas grande y centrado */
.wa-floating__icon {
  width: 32px;
  height: 32px;
  display: block;
}
.wa-floating:hover {
  transform: scale(1.15);
  animation-play-state: paused;
}

/* Highlight: 3 pulsos de sombra vino, el 3ro acompañado de salto.
   Ciclo total de 5s con loop infinito. Se pausa via JS (hover/zoom/demo). */
.wa-floating.is-highlighted {
  animation: waSequence 5s ease-in-out infinite;
}

@keyframes waSequence {
  /* === PULSO 1 (0 → 16%, ~0.8s) — sombra suave === */
  0% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 4px 18px rgba(74, 14, 44, 0.25),
      0 0 0 0 rgba(74, 14, 44, 0.5);
  }
  8% {
    box-shadow:
      0 4px 22px rgba(74, 14, 44, 0.4),
      0 0 0 10px rgba(74, 14, 44, 0.18);
  }
  16% {
    box-shadow:
      0 4px 18px rgba(74, 14, 44, 0.25),
      0 0 0 18px rgba(74, 14, 44, 0);
  }

  /* === PULSO 2 (16 → 32%, ~0.8s) — sombra suave === */
  24% {
    box-shadow:
      0 4px 22px rgba(74, 14, 44, 0.4),
      0 0 0 10px rgba(74, 14, 44, 0.18);
  }
  32% {
    box-shadow:
      0 4px 18px rgba(74, 14, 44, 0.25),
      0 0 0 18px rgba(74, 14, 44, 0);
  }

  /* === PULSO 3 + SALTO (32 → 56%, ~1.2s) — clima del ciclo === */
  40% {
    transform: translateY(-12px) scale(1.12);
    box-shadow:
      0 14px 30px rgba(74, 14, 44, 0.55),
      0 0 0 14px rgba(74, 14, 44, 0.25);
  }
  48% {
    transform: translateY(-12px) scale(1.12);
    box-shadow:
      0 14px 30px rgba(74, 14, 44, 0.55),
      0 0 0 22px rgba(74, 14, 44, 0.05);
  }
  56% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 4px 18px rgba(74, 14, 44, 0.25),
      0 0 0 28px rgba(74, 14, 44, 0);
  }

  /* === REPOSO (56 → 100%, ~2.2s) — descanso antes de repetir === */
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 4px 18px rgba(74, 14, 44, 0.25),
      0 0 0 0 rgba(74, 14, 44, 0);
  }
}

/* ==================================================================
   BOTONES
   ================================================================== */

.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1.5px solid var(--c-vino);
  cursor: pointer;
  transition: all .3s var(--ease-brut);
}
.btn--neon {
  background: var(--c-neon);
  color: var(--c-vino);
  box-shadow: 6px 6px 0 var(--c-vino);
}
.btn--neon:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--c-vino);
}

.btn-massive {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--c-neon);
  color: var(--c-vino);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(56px, 7vw, 110px);
  letter-spacing: -0.01em;
  padding: 60px 40px;
  border: 3px solid var(--c-neon);
  margin: 80px 0;
  line-height: 0.95;
  transition: all .4s var(--ease-brut);
}
.btn-massive:hover {
  background: var(--c-vino);
  color: var(--c-neon);
  border-color: var(--c-neon);
  letter-spacing: 0;
}

/* ==================================================================
   PLACEHOLDERS (negro + logo MKT4U)
   ================================================================== */

.placeholder {
  background: var(--c-onice);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-vino);
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(74,14,44,0.4), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(232,255,0,0.06), transparent 60%);
  pointer-events: none;
}
.placeholder__logo {
  width: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  position: relative;
  z-index: 2;
}
.placeholder__logo--lg { width: 200px; }
.placeholder__caption {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 2;
}
.placeholder__pulse {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 10px; height: 10px;
  background: var(--c-neon);
  border-radius: 50%;
  z-index: 2;
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
}

.placeholder--team {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 320px;
}
.placeholder--institucional {
  width: 100%;
  height: 100%;
  min-height: 480px;
}
.placeholder--clip {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 32px;
}

/* ==================================================================
   SECCION 1 — HERO (2/3 izquierda + 1/3 derecha, todo blanco)
   ================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  background: var(--c-white);
  overflow: hidden;
  display: grid;
  /* 56.67% / 43.33% — la seccion del equipo se desplaza 10% a la izquierda
     dandole 10% mas de espacio a la influencer */
  grid-template-columns: 56.67% 43.33%;
  align-items: stretch;
  padding-top: 90px;
}

/* Lado izquierdo (2/3): equipo de fondo + titulos centrados encima */
.hero__left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 4vw 0 0;
}

/* Wrapper del equipo — recibe la animacion de entrada (scale + fade) */
.hero__team-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: scale(0.4);
  opacity: 0;
  transform-origin: center center;
  animation: teamEnter 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.8s forwards;
}

/* Imagen del equipo: cubre el 2/3 izquierdo, con breathing loop sutil */
.hero__team-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% bottom;
  pointer-events: none;
  transform-origin: center center;
  animation: teamBreathing 6s ease-in-out 3.3s infinite;
}

@keyframes teamEnter {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes teamBreathing {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.018); }
}

/* Contenedor de textos overlay encima del equipo */
.hero__messages {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 880px;
  min-height: 280px;
  text-align: center;
}
.hero__message {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate(-8px, -50px) rotate(-0.6deg);
  pointer-events: none;
}
.hero__message.is-active {
  animation: heroIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: auto;
}
.hero__message.is-leaving {
  animation: heroOut 0.95s cubic-bezier(0.64, 0, 0.78, 0) forwards;
}

@keyframes heroIn {
  0%   { opacity: 0; transform: translate(-10px, -55px) rotate(-0.7deg); }
  60%  { opacity: 1; transform: translate(-2px, 3px) rotate(0.15deg); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0); }
}
@keyframes heroOut {
  0%   { opacity: 1; transform: translate(0, 0) rotate(0); }
  100% { opacity: 0; transform: translate(8px, 55px) rotate(0.7deg); }
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(52px, 5.6vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--c-beige);
  margin: 0 0 24px;
  text-transform: uppercase;
}
/* Mensajes 2 y 3 con texto mas pequeno para que no se encimen con el boton */
.hero__message[data-message="2"] .hero__title,
.hero__message[data-message="3"] .hero__title {
  font-size: clamp(42px, 4.6vw, 92px);
}

.hero__block {
  display: inline-block;
  background: var(--c-beige);
  color: var(--c-vino);
  padding: 0.04em 0.22em 0.10em;
  line-height: 1;
  font-style: italic;
  letter-spacing: -0.015em;
}

.hero__subtitle {
  display: none;
}

.hero__ctas {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 56px;
  margin-top: 32px;
}

/* Boton CTA — pill amarillo refinado */
.hero__cta {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: fit-content;
  background: var(--c-neon);
  color: var(--c-vino);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  opacity: 0;
  transform: translate(16px, 80px) rotate(1.5deg);
  pointer-events: none;
}
/* Boton: entra desde ABAJO con delay de 0.5s para llegar despues del titulo */
.hero__cta.is-active {
  animation: heroInButton 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  pointer-events: auto;
}
.hero__cta.is-leaving {
  animation: heroOutButton 0.95s cubic-bezier(0.64, 0, 0.78, 0) 0.5s both;
}
.hero__cta:hover {
  background: var(--c-vino);
  color: var(--c-neon);
}

@keyframes heroInButton {
  0%   { opacity: 0; transform: translate(10px, 55px) rotate(0.7deg); }
  60%  { opacity: 1; transform: translate(2px, -3px) rotate(-0.15deg); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0); }
}
@keyframes heroOutButton {
  0%   { opacity: 1; transform: translate(0, 0) rotate(0); }
  100% { opacity: 0; transform: translate(-8px, -55px) rotate(-0.7deg); }
}

/* Lado derecho (1/3): influencer sobre blanco, sin caja, sin halo, sin grayscale */
.hero__right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
  overflow: hidden;
}
.hero__influencer {
  /* Video horizontal 1924x1076 centrado en su 1/3 derecho */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 88%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease;
}
/* Video de respiracion (idle): oculto por defecto, visible con is-active */
.hero__influencer--idle {
  opacity: 0;
  pointer-events: none;
}
.hero__influencer--idle.is-active {
  opacity: 1;
}
/* Video de despedida: oculto por defecto, visible con is-visible (scroll).
   object-position: center top para que la cara quede anclada arriba y no se
   corte cuando el hero scrollea fuera del viewport.
   transition corta para que la opacidad siga el scroll sin lag. */
.hero__influencer--despedida {
  opacity: 0;
  pointer-events: none;
  height: 100%;
  object-position: center top;
  transition: opacity 0.15s linear;
}
.hero__influencer--despedida.is-visible {
  opacity: 1;
}
/* Cuando un video se esta ocultando (fade out) */
.hero__influencer.is-fading {
  opacity: 0;
}

/* ==================================================================
   SECCION 2 — AUTORIDAD / MANIFIESTO INSTITUCIONAL (sticky scroll)
   ================================================================== */

.autoridad {
  background: var(--c-white);
  width: 100%;
}
/* Track largo que habilita el sticky scroll */
.autoridad__track {
  position: relative;
  height: 320vh;
}
.autoridad__pinned {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding-top: 90px;
}

/* Lado izquierdo (1/3): textos de diferenciales */
.autoridad__left {
  position: relative;
  padding: 0 4vw 0 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.autoridad__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.autoridad__index {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--c-vino);
  padding-right: 16px;
  border-right: 1.5px solid var(--c-vino);
}
.autoridad__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-vino);
}

.autoridad__messages {
  position: relative;
  min-height: 340px;
  overflow: visible;
}
.autoridad__message {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate(-90px, 0) rotate(-0.8deg);
  pointer-events: none;
}
.autoridad__message.is-active {
  animation: autoridadIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: auto;
}
.autoridad__message.is-leaving {
  animation: autoridadOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Entrada por la IZQUIERDA con ligera curva vertical */
@keyframes autoridadIn {
  0% {
    opacity: 0;
    transform: translate(-80px, 8px) rotate(-0.8deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

/* Salida hacia la DERECHA con ligera curva vertical */
@keyframes autoridadOut {
  0% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
  100% {
    opacity: 0;
    transform: translate(80px, 8px) rotate(0.8deg);
  }
}

.autoridad__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(44px, 4.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--c-vino);
  margin: 0 0 28px;
  text-transform: uppercase;
}
/* La palabra enfatizada en italica vino, sin bloque beige */
.autoridad__title em {
  font-style: italic;
  font-weight: 900;
  color: var(--c-vino);
}
.autoridad__text {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--c-vino);
  max-width: 440px;
  margin: 0;
}

.autoridad__progress {
  display: flex;
  gap: 10px;
  margin-top: 56px;
}
.autoridad__progress-bar {
  width: 52px;
  height: 2px;
  background: rgba(74, 14, 44, 0.15);
  transition: background .5s ease;
}
.autoridad__progress-bar.is-active {
  background: var(--c-vino);
}

/* Lado derecho (2/3): video institucional sobre blanco, sin caja */
.autoridad__right {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-right: 3vw;
}
.autoridad__video-wrap {
  position: relative;
  width: 100%;
  height: 82%;
  cursor: pointer;
}
.autoridad__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Overlay beige traslucido que aparece en hover + cuando esta pausado */
.autoridad__overlay {
  position: absolute;
  inset: 0;
  background: rgba(239, 230, 214, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 3;
}
.autoridad__video-wrap:hover .autoridad__overlay,
.autoridad__video-wrap.is-paused .autoridad__overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Boton central de play/pause */
.autoridad__play-btn {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 2px solid var(--c-vino);
  background: rgba(254, 254, 252, 0.9);
  color: var(--c-vino);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transform: scale(0.85);
  transition: background .3s ease, color .3s ease, transform .3s var(--ease-brut);
}
.autoridad__video-wrap:hover .autoridad__play-btn,
.autoridad__video-wrap.is-paused .autoridad__play-btn {
  transform: scale(1);
}
.autoridad__play-btn:hover {
  background: var(--c-vino);
  color: var(--c-beige);
  transform: scale(1.08);
}
.autoridad__play-btn svg {
  fill: currentColor;
}
.autoridad__play-icon { display: none; }
/* Cuando esta reproduciendo, el overlay muestra el boton de pausa */
.autoridad__video-wrap.is-playing .autoridad__play-icon--pause { display: block; }
/* Cuando esta pausado, muestra el de play */
.autoridad__video-wrap.is-paused .autoridad__play-icon--play { display: block; }

/* Boton de mute en esquina inferior derecha */
.autoridad__mute-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1.5px solid var(--c-vino);
  background: rgba(254, 254, 252, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c-vino);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 4;
  opacity: 0;
  transition: background .25s ease, color .25s ease, transform .25s ease, opacity .35s ease;
}
.autoridad__video-wrap:hover .autoridad__mute-btn,
.autoridad__video-wrap.is-paused .autoridad__mute-btn {
  opacity: 1;
}
.autoridad__mute-btn:hover {
  background: var(--c-vino);
  color: var(--c-beige);
  transform: translateY(-2px);
}
.autoridad__mute-icon { display: none; }
/* Muted → mostrar icono "activar sonido" (speaker con ondas) */
.autoridad__mute-btn.is-muted .autoridad__mute-icon--activate { display: block; }
/* Unmuted → mostrar icono "silenciar" (speaker con X) */
.autoridad__mute-btn:not(.is-muted) .autoridad__mute-icon--silence { display: block; }

/* Boton de pantalla completa (a la izquierda del mute) */
.autoridad__fs-btn {
  position: absolute;
  right: 76px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1.5px solid var(--c-vino);
  background: rgba(254, 254, 252, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--c-vino);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 4;
  opacity: 0;
  transition: background .25s ease, color .25s ease, transform .25s ease, opacity .35s ease;
}
.autoridad__video-wrap:hover .autoridad__fs-btn,
.autoridad__video-wrap.is-paused .autoridad__fs-btn {
  opacity: 1;
}
.autoridad__fs-btn:hover {
  background: var(--c-vino);
  color: var(--c-beige);
  transform: translateY(-2px);
}
.autoridad__fs-icon { display: none; }
/* Default → mostrar icono "enter fullscreen" */
.autoridad__fs-btn:not(.is-fullscreen) .autoridad__fs-icon--enter { display: block; }
/* En fullscreen → mostrar icono "exit" */
.autoridad__fs-btn.is-fullscreen .autoridad__fs-icon--exit { display: block; }

/* ==================================================================
   SECCION 3 — VALIDACION OPERATIVA (metricas de poder)
   ================================================================== */

.proof {
  position: relative;
  width: 100%;
  background: var(--c-beige);
  padding: 140px 5vw 160px;
}
.proof__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.proof__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.proof__index {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--c-vino);
  padding-right: 16px;
  border-right: 1.5px solid var(--c-vino);
}
.proof__label-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-vino);
}

.proof__statement {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(48px, 5.8vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--c-vino);
  margin: 0 0 110px;
  max-width: 1180px;
  text-transform: none;
}
.proof__statement em {
  font-style: italic;
  font-weight: 900;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}
.proof__metric {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.proof__num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(72px, 8.6vw, 152px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--c-vino);
  display: inline-block;
  margin: 0;
}
/* Metrica destacada con highlight amarillo neon */
.proof__metric--accent .proof__num {
  position: relative;
  display: inline-block;
  align-self: flex-start;
}
.proof__metric--accent .proof__num::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: 0.12em;
  height: 0.26em;
  background: var(--c-neon);
  z-index: -1;
}
.proof__label {
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--c-vino);
  max-width: 320px;
  margin: 0;
}

/* ==================================================================
   SECCION 4 — ARSENAL DE SERVICIOS (4 columnas, full viewport)
   Inicia seccionada en 4 columnas iguales. Al scrollear, se expande
   un pilar a la vez (8fr vs 1fr) con animacion custom via setInterval.
   ================================================================== */

.arsenal {
  background: var(--c-white);
  width: 100%;
}
.arsenal__track {
  position: relative;
  height: 520vh;
}
.arsenal__pinned {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
}

/* Eyebrow flotante (absolute, no consume altura) */
.arsenal__eyebrow {
  position: absolute;
  top: 40px;
  left: 5vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}
.arsenal__index {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--c-vino);
  padding-right: 16px;
  border-right: 1.5px solid var(--c-vino);
}
.arsenal__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-vino);
}

/* Contenedor de las 4 columnas: full viewport.
   --pilar-tracks es escrito por JS con valores tipo "1fr 1fr 1fr 1fr" o
   "7fr 1fr 1fr 1fr" segun el pilar activo. En desktop lo usamos como
   columnas; en movil como filas (ver media query al final del archivo). */
.arsenal__columns {
  display: grid;
  grid-template-columns: var(--pilar-tracks, 1fr 1fr 1fr 1fr);
  width: 100%;
  height: 100%;
}

/* ---- Cada pilar = columna ---- */
.pilar {
  position: relative;
  overflow: hidden;
  background: var(--c-white);
  cursor: pointer;
  min-width: 0;
  transition: background 1s var(--ease-brut);
}
.pilar + .pilar {
  box-shadow: inset 1px 0 0 rgba(74, 14, 44, 0.08);
}
.pilar.is-active {
  background: rgba(239, 230, 214, 0.3);
}

/* ================================================================
   HEAD: numeral + titulo
   Estrategia: el head SIEMPRE esta en position absolute.
   Usamos top/left con transition para el movimiento suave.
   El titulo usa transform: rotate() para la rotacion animable.
   ================================================================ */
.pilar__head {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  /* Estado base: centrado en la columna */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: top 1s var(--ease-brut),
              left 1s var(--ease-brut),
              transform 1s var(--ease-brut),
              gap 1s var(--ease-brut);
}

.pilar__roman {
  font-family: var(--ff-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(72px, 6.4vw, 128px);
  line-height: 0.9;
  color: var(--c-vino);
  display: block;
  flex-shrink: 0;
  transition: font-size 1s var(--ease-brut),
              opacity 0.6s ease;
}

.pilar__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-vino);
  text-transform: uppercase;
  margin: 0;
  /* Base (4 columnas): el titulo esta estructurado en 2 spans .pilar__title-line
     separados por .pilar__break, asi cada linea queda en nowrap y el titulo
     total en 2 filas alineadas verticalmente con los demas pilares. */
  white-space: normal;
  max-width: 100%;
  text-align: center;
  transition: font-size 1s var(--ease-brut),
              transform 1s var(--ease-brut),
              opacity 0.6s ease,
              letter-spacing 1s ease;
  transform-origin: center center;
  /* Estado base: sin rotacion (horizontal) */
  transform: rotate(0deg);
}

/* Salto de linea semantico del titulo: en estado base rompe linea
   (2 filas), en estado activo y contraido se convierte en espacio
   inline (1 fila) via las reglas de abajo. */
.pilar__break {
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
}

/* Cada segmento de linea del titulo NUNCA se parte — asi "Ecosistemas de"
   queda en una fila y "Conversion" en otra, nunca en 3 filas. */
.pilar__title-line {
  display: inline-block;
  white-space: nowrap;
}

/* ================================================================
   PILAR ACTIVO (expandido):
   Numero + titulo se mantienen HORIZONTAL.
   Se desplazan al top-left del pilar expandido.
   ================================================================ */
.pilar.is-active .pilar__head {
  top: 120px;
  left: 5vw;
  transform: translate(0, 0);
  flex-direction: row;
  align-items: baseline;
  gap: 24px;
  text-align: left;
}
.pilar.is-active .pilar__roman {
  font-size: clamp(48px, 4.5vw, 80px);
}
.pilar.is-active .pilar__title {
  font-size: clamp(22px, 2.4vw, 42px);
  letter-spacing: -0.02em;
  white-space: nowrap;
  max-width: none;
  text-align: left;
  /* Sigue horizontal, una sola linea */
  transform: rotate(0deg);
}
/* En estados activo y contraido, el separador de linea se convierte en
   un espacio inline para que el titulo quede en una sola fila limpia. */
.pilar.is-active .pilar__title .pilar__break,
.arsenal__columns.has-active .pilar:not(.is-active) .pilar__title .pilar__break {
  display: inline;
}
.pilar.is-active .pilar__title .pilar__break::before,
.arsenal__columns.has-active .pilar:not(.is-active) .pilar__title .pilar__break::before {
  content: " ";
}

/* ================================================================
   PILARES CONTRAIDOS (cuando hay uno activo):
   Numero arriba centrado.
   Titulo rota -90° (lectura bottom-to-top) con transicion suave.
   ================================================================ */
.arsenal__columns.has-active .pilar:not(.is-active) .pilar__head {
  /* Numero y titulo se separan: el head ocupa toda la altura */
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  flex-direction: column;
  align-items: center;
  gap: 0;
  height: 100%;
}
.arsenal__columns.has-active .pilar:not(.is-active) .pilar__roman {
  font-size: clamp(38px, 3.4vw, 60px);
  opacity: 0.75;
  /* Misma altura que el titulo del pilar activo (120px desde top) */
  margin-top: 120px;
  flex-shrink: 0;
}
.arsenal__columns.has-active .pilar:not(.is-active) .pilar__title {
  font-size: clamp(12px, 1vw, 16px);
  letter-spacing: 0.12em;
  white-space: nowrap;
  max-width: none;
  opacity: 0.55;
  /* Centrado vertical en el espacio restante */
  flex: 1;
  display: flex;
  align-items: center;
  transform: rotate(-90deg);
}

/* ============================================================
   HOVER INVITADOR en pilar cerrado — el pilar se abre levemente a
   los lados (preview de la apertura completa al dar click)
   ============================================================ */

.pilar:not(.is-active) {
  cursor: pointer;
}
.pilar {
  transform-origin: center center;
  transition: background 1s var(--ease-brut),
              transform 0.5s var(--ease-brut);
  z-index: 1;
}

/* Tinte vino + leve expansion horizontal — sugiere apertura */
.arsenal__columns:not(.has-active) .pilar:hover {
  background: rgba(74, 14, 44, 0.06);
  transform: scaleX(1.08);
  z-index: 2;
}

/* Estado contraido (hay otro pilar activo): expansion un poco mayor porque
   parten de un ancho mucho mas angosto */
.arsenal__columns.has-active .pilar:not(.is-active):hover {
  background: rgba(74, 14, 44, 0.06);
  transform: scaleX(1.15);
  z-index: 2;
}
/* En contraido: subir opacidad de roman + title al hover (sin mover) */
.arsenal__columns.has-active .pilar:not(.is-active):hover .pilar__roman {
  opacity: 1;
}
.arsenal__columns.has-active .pilar:not(.is-active):hover .pilar__title {
  opacity: 1;
}

/* ================================================================
   DETALLE del pilar (contenido expandido)
   Entra con slide-up + fade despues de que el head se posicione.
   ================================================================ */
.pilar__detail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 230px 2vw 40px 5vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.5s ease,
              transform 0.6s var(--ease-brut);
}
.pilar.is-active .pilar__detail {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.pilar__lead {
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.25;
  color: var(--c-vino);
  max-width: 720px;
  margin: 0 0 10px;
  flex-shrink: 0;
}
.pilar__lead em {
  font-style: italic;
  font-weight: 700;
}

.pilar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Ocupar toda la altura restante del detalle */
  flex: 1;
  max-width: 100%;
}
.pilar__list li {
  font-family: var(--ff-sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--c-vino);
  /* Cada item ocupa el mismo espacio vertical */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 3vw 0 0;
  border-bottom: 1px solid rgba(74, 14, 44, 0.10);
}
.pilar__list li:first-child {
  border-top: 1px solid rgba(74, 14, 44, 0.10);
}
.pilar__list li::before {
  content: none; /* Removido — ahora usamos service-name con flecha propia */
}

/* ---- Layout servicio: nombre izquierda + video derecha ---- */
.pilar__service-name {
  flex: 1;
  font-family: var(--ff-sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--c-vino);
  display: flex;
  align-items: center;
  gap: 14px;
}
.pilar__service-name::before {
  content: "→";
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--c-vino);
  opacity: 0.45;
  flex-shrink: 0;
}

.pilar__service-video {
  width: 250px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease,
              transform 0.6s var(--ease-brut),
              box-shadow 0.35s ease;
  cursor: zoom-in;
}
.pilar__service-video:hover {
  box-shadow: 0 0 0 2px var(--c-neon);
}
/* Videos aparecen cuando el pilar esta activo, con stagger via transition-delay */
.pilar.is-active .pilar__service-video {
  opacity: 1;
  transform: translateX(0);
}
.pilar.is-active li:nth-child(1) .pilar__service-video { transition-delay: 0.6s; }
.pilar.is-active li:nth-child(2) .pilar__service-video { transition-delay: 0.75s; }
.pilar.is-active li:nth-child(3) .pilar__service-video { transition-delay: 0.9s; }
.pilar.is-active li:nth-child(4) .pilar__service-video { transition-delay: 1.05s; }

/* ---- Video zoom overlay (hover para ampliar x3 centrado) ---- */
.video-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.video-zoom-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
/* WRAPPER: posicion FIJA al centro del viewport con dimensiones ABSOLUTAS.
   No se recalcula, no depende de flex, siempre al mismo lugar y tamaño.
   Uso aspect-ratio 1924/1076 para PRECISION exacta con el ratio del video. */
.video-zoom-overlay__frame {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 900px;
  aspect-ratio: 1924 / 1076;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--c-vino); /* vino en vez de onice — si hubiera alguna franja microscopica, se nota menos */
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%) scale(0.85);
  transition: transform 0.5s var(--ease-brut);
  cursor: zoom-out;
}
.video-zoom-overlay.is-visible .video-zoom-overlay__frame {
  transform: translate(-50%, -50%) scale(1);
}

/* Video dentro del wrapper: object-fit: fill fuerza que llene el 100%
   exacto del wrapper sin importar las dimensiones intrinsecas.
   Como wrapper (900×503) y video (1924×1076) tienen el mismo aspect ratio,
   no hay distorsion perceptible — GARANTIZA sin franjas nunca. */
.video-zoom-overlay__video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  object-fit: fill; /* estira a llenar — sin franjas garantizado */
  background: transparent;
  display: block;
  border: none;
  outline: none;
}
.video-zoom-overlay__title {
  position: fixed;
  top: calc(50% + 270px); /* 251.5px mitad altura wrapper + 18px gap */
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease 0.15s,
              transform 0.4s ease 0.15s;
}
.video-zoom-overlay.is-visible .video-zoom-overlay__title {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==================================================================
   SECCION 5 — DEMO
   ================================================================== */

/* ==================================================================
   SECCION 5 — DEMOSTRACION AUTONOMA
   Layout 3 tercios: textos | iPhone | influencer
   ================================================================== */
.demo {
  background: var(--c-white);
  position: relative;
  height: 100vh;
  min-height: 680px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Eyebrow flotante (mismo estilo que arsenal) */
.demo__eyebrow {
  position: absolute;
  top: 40px;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}
.demo__index {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--c-vino);
  padding-right: 16px;
  border-right: 1.5px solid var(--c-vino);
}
.demo__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-vino);
}

/* Stage: 3 tercios iguales, llena el viewport restante */
.demo__stage {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 0;
}

/* ---- TERCIO 1: textos + CTA ---- */
.demo__texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 3vw 60px 5vw;
  gap: 52px;
  height: 100%;
}
.demo__texts .demo__title,
.demo__texts .demo__lead {
  margin: 0;
}
.demo__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-vino);
  margin: 0;
}
.demo__title em {
  font-style: italic;
  font-weight: 900;
  position: relative;
}
.demo__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 0.18em;
  background: var(--c-beige);
  z-index: -1;
}
.demo__lead {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--c-vino);
  margin: 0;
  max-width: 420px;
}

/* ---- TERCIO 2: iPhone centrado ---- */
.demo__phone-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10px;
  height: 100%;
}

/* ---- IPHONE 17 PRO MOCKUP ---- */
.iphone-17 {
  width: 360px;
  max-width: 100%;
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(74, 14, 44, 0.25));
}
.iphone-17__frame {
  background: #0A0A0A;
  border-radius: 54px;
  padding: 12px;
  position: relative;
  /* Reflejo metalico sutil en el borde */
  box-shadow:
    inset 0 0 0 1.5px #2a2a2a,
    inset 0 0 0 3px #0A0A0A,
    inset 0 0 0 4px #1a1a1a;
}
/* Dynamic Island del iPhone 17 Pro */
.iphone-17__island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}
.iphone-17__screen {
  background: var(--c-white);
  border-radius: 44px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  position: relative;
}

/* ---- CHAT DENTRO DEL IPHONE ---- */
.chat-phone {
  width: 100%;
  height: 100%;
  background: var(--c-white);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Status bar iOS (hora + iconos) */
.chat-phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px 8px;
  height: 54px;
  color: var(--c-vino);
  font-size: 14px;
  font-weight: 600;
}
.chat-phone__time {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 14px;
}
.chat-phone__icons {
  display: flex;
  align-items: center;
  gap: 5px;
}
.chat-phone__battery {
  width: 24px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 3px;
  position: relative;
  margin-left: 2px;
}
.chat-phone__battery::before {
  content: "";
  position: absolute;
  inset: 1px;
  width: 70%;
  background: currentColor;
  border-radius: 1px;
}
.chat-phone__battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 3px;
  width: 2px;
  height: 5px;
  background: currentColor;
  border-radius: 0 1px 1px 0;
}

/* Barra superior del chat */
.chat-phone__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 12px;
  border-bottom: 1px solid rgba(74, 14, 44, 0.08);
}
.chat-phone__back {
  font-size: 22px;
  font-weight: 300;
  color: var(--c-vino);
  opacity: 0.5;
  line-height: 1;
}
.chat-phone__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-vino);
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-phone__avatar-letter {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--c-neon);
}
.chat-phone__online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--c-neon);
  border-radius: 50%;
  border: 2px solid var(--c-white);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.chat-phone__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.chat-phone__meta strong {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-vino);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-phone__status {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-vino);
  opacity: 0.5;
}

/* Cuerpo del chat */
.chat-phone__body {
  flex: 1;
  padding: 14px 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--c-beige-claro);
}

/* Barra de input iOS */
.chat-phone__input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 6px;
  border-top: 1px solid rgba(74, 14, 44, 0.08);
  background: var(--c-white);
}
.chat-phone__input-text {
  flex: 1;
  font-size: 11px;
  color: var(--c-vino);
  opacity: 0.35;
  padding: 6px 10px;
  border: 1px solid rgba(74, 14, 44, 0.15);
  border-radius: 14px;
}
.chat-phone__send {
  width: 26px;
  height: 26px;
  background: var(--c-vino);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-neon);
  flex-shrink: 0;
}

/* Home indicator iOS */
.chat-phone__homebar {
  height: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
}
.chat-phone__homebar::after {
  content: "";
  width: 120px;
  height: 4px;
  background: var(--c-vino);
  border-radius: 4px;
  opacity: 0.5;
}

/* ---- Burbujas del chat ---- */
.chat-bubble {
  max-width: 80%;
  padding: 8px 12px;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 400;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease-brut), transform .35s var(--ease-brut);
}
.chat-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.chat-bubble--client {
  align-self: flex-end;
  background: var(--c-vino);
  color: var(--c-white);
  border-bottom-right-radius: 4px;
}
.chat-bubble--bot {
  align-self: flex-start;
  background: var(--c-white);
  color: var(--c-vino);
  border: 1px solid rgba(74, 14, 44, 0.1);
  border-bottom-left-radius: 4px;
}
.chat-bubble--bot.is-typing {
  padding: 10px 14px;
  min-width: 40px;
}
.chat-bubble--bot.is-typing::after {
  content: "•••";
  letter-spacing: 0.15em;
  color: var(--c-neon);
  animation: typing-neon 1.2s steps(3, end) infinite;
}
@keyframes typing-neon {
  0%  { content: "•  "; text-shadow: 0 0 8px var(--c-neon); }
  33% { content: "•• "; text-shadow: 0 0 12px var(--c-neon); }
  66% { content: "•••"; text-shadow: 0 0 16px var(--c-neon); }
}
.chat-bubble--final {
  background: var(--c-neon);
  color: var(--c-vino);
  border: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(232, 255, 0, 0.4);
}

/* ---- CTA Demo (pill redondo como hero) ---- */
.demo__cta {
  align-self: flex-start;
  background: var(--c-neon);
  color: var(--c-vino);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 38px;
  border-radius: 999px;
  margin-top: 12px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.demo__cta:hover {
  background: var(--c-vino);
  color: var(--c-neon);
  transform: translateY(-2px);
}

/* ---- TERCIO 3: Influencer sin caja, color real, estilo hero ---- */
.demo__right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}
.demo__influencer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* iPhone en el tercio central, balanceado con el influencer */
.demo__phone-col .iphone-17 {
  width: 340px;
}

/* ==================================================================
   SECCION 6 — ARQUITECTURA DE INVERSION (Planes)
   3 monolitos editoriales, central destacado
   ================================================================== */

.planes {
  background: var(--c-white);
  padding: 140px 5vw 160px;
  position: relative;
  overflow: hidden;
}

/* Eyebrow editorial */
.planes__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}
.planes__index {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--c-vino);
  padding-right: 16px;
  border-right: 1.5px solid var(--c-vino);
}
.planes__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-vino);
}

/* Header: titulo + subtitulo ocupan todo el ancho, centrados */
.planes__header {
  width: 100%;
  max-width: none;
  text-align: center;
  margin-bottom: 100px;
}
.planes__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(42px, 4.4vw, 78px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-vino);
  margin: 0 0 20px;
}
.planes__title em {
  font-style: italic;
  font-weight: 900;
  position: relative;
  display: inline-block;
}
.planes__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--c-beige);
  z-index: -1;
}
.planes__lead {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--c-vino);
  opacity: 0.7;
  margin: 0 auto;
}

/* Grid 3 monolitos, central ligeramente mas ancho — reducido 15% */
.planes__grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- MONOLITO: tarjeta editorial dark rounded ---- */
.plan {
  position: relative;
  opacity: 0;
  transform: translateX(140%);
  transition: opacity 0.3s ease, filter 0.5s ease;
  will-change: transform, opacity;
}

/* ENTRADA: disparo rapido desde la derecha, overshoot marcado a la izquierda,
   regreso suave a la posicion final a la derecha. Sin rebotes multiples. */
.plan.is-entered {
  animation: planEnter 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* Stagger: entran secuencialmente de derecha a izquierda */
.plan[data-plan="3"].is-entered { animation-delay: 0s; }
.plan[data-plan="2"].is-entered { animation-delay: 0.2s; }
.plan[data-plan="1"].is-entered { animation-delay: 0.4s; }

@keyframes planEnter {
  0%   { opacity: 0; transform: translateX(200%); }
  30%  { opacity: 1; }
  /* Overshoot marcado: se pasa bastante a la izquierda */
  65%  { opacity: 1; transform: translateX(-12%); }
  /* Regresa suavemente a la derecha hasta su posicion final */
  100% { opacity: 1; transform: translateX(0); }
}

/* IDLE: flotacion continua con sombra dinamica una vez ancladas */
.plan.is-entered .plan__inner {
  animation: planIdleSide 5s ease-in-out infinite;
  animation-delay: 1.5s;
}
.plan--featured.is-entered .plan__inner {
  animation: planIdleCenter 4.5s ease-in-out infinite;
  animation-delay: 2s;
}

/* Laterales: flotan sutil translateY -5px con sombra que acompaña */
@keyframes planIdleSide {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 14px 36px rgba(74, 14, 44, 0.3);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 20px 46px rgba(74, 14, 44, 0.35);
  }
}

/* Central: salto mas marcado translateY -14px con sombra mas dramatica */
@keyframes planIdleCenter {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 24px 60px rgba(74, 14, 44, 0.4),
                0 6px 18px rgba(74, 14, 44, 0.2);
  }
  50% {
    transform: translateY(-14px);
    box-shadow: 0 38px 80px rgba(74, 14, 44, 0.48),
                0 12px 26px rgba(74, 14, 44, 0.25);
  }
}

/* Card base: mismo gradient vino que la central, unificando el lenguaje cromatico */
.plan__inner {
  background: linear-gradient(160deg, var(--c-vino) 0%, var(--c-vino-deep) 100%);
  border-radius: 20px;
  padding: 40px 30px 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 14px 36px rgba(74, 14, 44, 0.3);
  transition: transform 0.5s var(--ease-brut),
              box-shadow 0.5s ease,
              filter 0.5s ease;
  position: relative;
  overflow: visible;
}

/* Card destacada (central): mismo gradient vino original, vibrante */
.plan--featured {
  margin-top: -20px;
  margin-bottom: -20px;
}
.plan--featured .plan__inner {
  background: linear-gradient(160deg, var(--c-vino) 0%, var(--c-vino-deep) 100%);
  padding: 48px 34px 40px;
  box-shadow: 0 24px 60px rgba(74, 14, 44, 0.4),
              0 6px 18px rgba(74, 14, 44, 0.2);
}

/* HOVER en un plan: crece 15% + sombra dramatica, los otros 2 se ponen grises */
/* Al entrar hover al grid: detener la animacion idle para que el transform de hover aplique */
.planes__grid:hover .plan.is-entered .plan__inner {
  animation: none;
  transform: translateY(0);
}

/* Los otros planes no-hovered: grises */
.planes__grid:hover .plan:not(:hover) .plan__inner {
  filter: grayscale(1) brightness(0.7);
  opacity: 0.6;
}

/* Plan hovered: crece 15% + sombra dramatica */
.plan:hover .plan__inner {
  transform: scale(1.15) !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  z-index: 5;
}
.plan--featured:hover .plan__inner {
  box-shadow: 0 50px 110px rgba(74, 14, 44, 0.5),
              0 15px 35px rgba(74, 14, 44, 0.25) !important;
}
.plan:hover {
  z-index: 5;
}

/* Badge MÁS POPULAR */
.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-neon);
  color: var(--c-vino);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  z-index: 3;
  white-space: nowrap;
}

/* Head del plan: tag + nombre + precio + descripcion */
.plan__head {
  margin-bottom: 28px;
}
.plan__tag {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-neon);
  margin-bottom: 14px;
  opacity: 0.85;
}
.plan__name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin: 0 0 18px;
  text-transform: uppercase;
}
/* Central: nombre mas compacto para que "CON TODO" quepa en una linea */
.plan--featured .plan__name {
  font-size: clamp(32px, 3vw, 50px);
  white-space: nowrap;
}
.plan__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}
.plan__price-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(24px, 2vw, 34px);
  color: var(--c-white);
  line-height: 1;
}
.plan--featured .plan__price-num {
  color: var(--c-neon);
}
.plan__price-meta {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.plan__subtitle {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* Divisor sutil entre header y lista */
.plan__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 0 22px;
}
.plan--featured .plan__divider {
  background: rgba(255, 255, 255, 0.18);
}

/* Lista de servicios con marker (dot → arrow en hover) */
.plan__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  text-align: left;
}
.plan__list li {
  font-family: var(--ff-sans);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.6s ease;
}

/* Marker: contenedor con dot y arrow superpuestos */
.plan__marker {
  position: relative;
  width: 14px;
  height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.plan__marker-dot,
.plan__marker-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--c-neon);
  line-height: 1;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.plan__marker-dot {
  font-size: 22px;
  opacity: 0.85;
  transform: translate(-50%, -50%) scale(1);
}
.plan__marker-arrow {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 13px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}

/* HOVER: micro-salto hacia arriba + dot transforma a arrow (staggered) */
.plan:hover .plan__list li {
  transform: translateY(-6px);
  color: var(--c-white);
}
.plan:hover .plan__marker-dot {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}
.plan:hover .plan__marker-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Stagger mas lento, mas separacion entre items */
.plan:hover .plan__list li:nth-child(1),
.plan:hover .plan__list li:nth-child(1) .plan__marker-dot,
.plan:hover .plan__list li:nth-child(1) .plan__marker-arrow { transition-delay: 0.00s; }
.plan:hover .plan__list li:nth-child(2),
.plan:hover .plan__list li:nth-child(2) .plan__marker-dot,
.plan:hover .plan__list li:nth-child(2) .plan__marker-arrow { transition-delay: 0.18s; }
.plan:hover .plan__list li:nth-child(3),
.plan:hover .plan__list li:nth-child(3) .plan__marker-dot,
.plan:hover .plan__list li:nth-child(3) .plan__marker-arrow { transition-delay: 0.36s; }
.plan:hover .plan__list li:nth-child(4),
.plan:hover .plan__list li:nth-child(4) .plan__marker-dot,
.plan:hover .plan__list li:nth-child(4) .plan__marker-arrow { transition-delay: 0.54s; }
.plan:hover .plan__list li:nth-child(5),
.plan:hover .plan__list li:nth-child(5) .plan__marker-dot,
.plan:hover .plan__list li:nth-child(5) .plan__marker-arrow { transition-delay: 0.72s; }
.plan:hover .plan__list li:nth-child(6),
.plan:hover .plan__list li:nth-child(6) .plan__marker-dot,
.plan:hover .plan__list li:nth-child(6) .plan__marker-arrow { transition-delay: 0.90s; }

/* CTA del plan: pill redondo con efecto magnetico, fondo blanco solido */
.plan__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--c-white);
  color: var(--c-vino);
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 18px;
  border: 1.5px solid var(--c-white);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.35s var(--ease-brut),
              color 0.35s var(--ease-brut),
              border-color 0.35s var(--ease-brut),
              transform 0.25s ease-out;
  margin-top: auto;
  position: relative;
}
.plan__cta:hover {
  background: var(--c-neon);
  color: var(--c-vino);
  border-color: var(--c-neon);
}
.plan__cta-text {
  display: inline-block;
  transition: transform 0.25s ease-out;
  will-change: transform;
}

/* CTA destacado (plan featured): amarillo neon pill */
.plan__cta--neon {
  background: var(--c-neon);
  color: var(--c-vino);
  border-color: var(--c-neon);
}
.plan__cta--neon:hover {
  background: var(--c-white);
  color: var(--c-vino);
  border-color: var(--c-white);
}

/* ==================================================================
   SECCION 7 — FAQ (Desactivacion de Objeciones)
   Acordeon limpio, tipografia grande, linea divisoria fina.
   ================================================================== */

.faq {
  background: var(--c-white);
  padding: 100px 5vw 120px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Eyebrow editorial */
.faq__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.faq__index {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--c-vino);
  padding-right: 16px;
  border-right: 1.5px solid var(--c-vino);
}
.faq__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-vino);
}

/* Header: ocupa todo el ancho, centrado */
.faq__header {
  width: 100%;
  max-width: none;
  text-align: center;
  margin-bottom: 70px;
}
.faq__title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(40px, 4.2vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-vino);
  margin: 0 0 18px;
}
.faq__title em {
  font-style: italic;
  font-weight: 900;
  position: relative;
  display: inline-block;
}
.faq__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.18em;
  background: var(--c-beige);
  z-index: -1;
}
.faq__lead {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.5;
  color: var(--c-vino);
  opacity: 0.7;
  margin: 0 auto;
}

/* Lista de preguntas */
.faq__list {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(74, 14, 44, 0.14);
}

/* Cada item */
.faq-item {
  border-bottom: 1px solid rgba(74, 14, 44, 0.14);
  position: relative;
}

/* Boton de la pregunta (sin estilos nativos) */
.faq-item__question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left;
  font-family: inherit;
  color: var(--c-vino);
  transition: color 0.35s ease;
}
.faq-item__question:hover {
  color: var(--c-vino-claro);
}
.faq-item__text {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: inherit;
  flex: 1;
  transition: transform 0.4s var(--ease-brut);
  transform-origin: left center;
}
.faq-item__question:hover .faq-item__text {
  transform: translateX(8px);
}
.faq-item.is-open .faq-item__text {
  color: var(--c-vino);
}

/* Icono + (que rota 45° para convertirse en ×) */
.faq-item__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.5s var(--ease-brut);
}
.faq-item__icon-line {
  position: absolute;
  background: var(--c-vino);
  border-radius: 2px;
  transition: transform 0.5s var(--ease-brut);
}
.faq-item__icon-line--h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-item__icon-line--v {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

/* Cuando abierto: el + se convierte en × (rotacion 45°) */
.faq-item.is-open .faq-item__icon {
  transform: rotate(135deg);
}

/* Respuesta: acordeon suave via grid-template-rows */
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.6s var(--ease-brut);
}
.faq-item__answer-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
}
.faq-item__answer-inner p {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--c-vino);
  max-width: 820px;
  padding: 0 0 28px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s var(--ease-brut) 0.15s;
}
.faq-item.is-open .faq-item__answer-inner p {
  opacity: 0.85;
  transform: translateY(0);
}
/* Palabras resaltadas: fondo vino, texto beige bold (unificado con mark-editorial) */
.faq-item__answer-inner p em {
  font-style: normal;
  font-weight: 700;
  color: var(--c-beige);
  background: var(--c-vino);
  padding: 0 6px;
  text-decoration: none;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ==================================================================
   SECCION 8 — CIERRE DEFINITIVO (Último CTA)
   Full-screen onice, climax high-ticket.
   ================================================================== */

.cta-final {
  background: var(--c-onice);
  color: var(--c-white);
  min-height: 100vh;
  padding: 60px 3vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Eyebrow editorial */
.cta-final__eyebrow {
  position: absolute;
  top: 48px;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-final__index {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--c-neon);
  padding-right: 16px;
  border-right: 1.5px solid rgba(232, 255, 0, 0.4);
}
.cta-final__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Content centrado absoluto */
.cta-final__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1600px;
  width: 100%;
  gap: 56px;
}

/* Headline — reducido un poco, ocupando mas ancho */
.cta-final__headline {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--c-white);
  margin: 0;
  max-width: 100%;
  width: 100%;
}
.cta-final__headline em {
  font-style: italic;
  font-weight: 900;
  color: var(--c-neon);
  position: relative;
  display: inline-block;
}

/* BOTON CLIMACTICO MASIVO */
.cta-final__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--c-neon);
  color: var(--c-vino);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 56px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 32px 80px;
  border-radius: 999px;
  text-decoration: none;
  overflow: visible;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.4s var(--ease-brut),
              background 0.4s ease,
              color 0.4s ease,
              box-shadow 0.4s ease;
  box-shadow: 0 12px 40px rgba(232, 255, 0, 0.2);
}

/* Pulso expansivo detras del boton */
.cta-final__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--c-neon);
  z-index: -1;
  opacity: 0.5;
  animation: ctaPulse 2.8s ease-out infinite;
}
.cta-final__pulse--2 {
  animation-delay: 1.4s;
}
@keyframes ctaPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* Inner para el swap de textos */
.cta-final__button-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  height: 1.3em;
  line-height: 1.3;
  padding-bottom: 0.08em;
}
.cta-final__text {
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.5s var(--ease-brut),
              opacity 0.4s ease;
}
.cta-final__text--default {
  transform: translateY(0);
  opacity: 1;
}
.cta-final__text--hover {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(100%);
  opacity: 0;
}

/* Arrow */
.cta-final__arrow {
  font-size: 0.7em;
  font-weight: 300;
  font-family: var(--ff-sans);
  transition: transform 0.4s var(--ease-brut);
}

/* HOVER: swap texto + crecimiento + sombra mas dramatica */
.cta-final__button:hover {
  transform: scale(1.04);
  background: var(--c-white);
  color: var(--c-vino);
  box-shadow: 0 24px 70px rgba(232, 255, 0, 0.4);
}
.cta-final__button:hover .cta-final__text--default {
  transform: translateY(-100%);
  opacity: 0;
}
.cta-final__button:hover .cta-final__text--hover {
  transform: translateY(0);
  opacity: 1;
}
.cta-final__button:hover .cta-final__arrow {
  transform: translateX(10px);
}
.cta-final__button:hover .cta-final__pulse {
  animation-play-state: paused;
  opacity: 0;
}

/* Microcopy de seguridad */
.cta-final__microcopy {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 680px;
}
.cta-final__micro-sep {
  color: var(--c-neon);
  margin: 0 10px;
  opacity: 0.7;
}

/* ==================================================================
   DARK FOOTER (info y legal)
   ================================================================== */

.dark-footer {
  background: var(--c-onice);
  color: var(--c-white);
  padding: 120px var(--gutter) 60px;
}
.dark-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.dark-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.dark-footer__brand { display: flex; flex-direction: column; gap: 24px; }
.dark-footer__logo {
  width: 180px;
  filter: brightness(0) invert(1);
}
.dark-footer__tagline {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.dark-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.dark-footer__cols div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dark-footer__cols .caps {
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.dark-footer__cols p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}
.dark-footer__legal {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==================================================================
   RESPONSIVE DESKTOP — Escalado fluido para cualquier pantalla
   ==================================================================
   Estrategia: el diseno esta calibrado para 1440px. Abajo de eso se
   comprime progresivamente manteniendo proporciones y jerarquia.
   Breakpoints:
     - 1440px: laptops estandar (MacBook Air/Pro 14)
     - 1280px: laptops compactos (MacBook Pro 13, Windows estandar)
     - 1100px: laptops pequenos / ventanas a medio ancho
   Tambien ajustes por ALTURA (laptops cortos tipo 13" con 800px de viewport).
   ================================================================== */

/* ---- BREAKPOINT 1440px: compresion ligera ---- */
@media (max-width: 1440px) {
  .nav__inner { padding: 16px 4vw; }
  .nav__brand-logo { height: 34px; }
  .nav__cta { font-size: 11px; padding: 11px 22px; }

  .side-nav { left: 22px; }
  .side-nav__list { gap: 20px; }
  .side-nav__shadow { width: 200px; }

  .wa-floating { width: 56px; height: 56px; right: 26px; bottom: 26px; }
  .wa-floating__icon { width: 28px; height: 28px; }

  .preloader__mark { width: 320px; }

  .hero { padding-top: 76px; }
  .hero__messages { min-height: 260px; }
  .hero__ctas { margin-top: 24px; }

  .autoridad__pinned { padding-top: 76px; }
  .autoridad__left { padding: 0 3vw 0 4vw; }
  .autoridad__messages { min-height: 300px; }
  .autoridad__progress { margin-top: 42px; }
  .autoridad__text { font-size: 15px; }
  .autoridad__index, .proof__index, .arsenal__index,
  .demo__index, .planes__index, .faq__index, .cta-final__index { font-size: 24px; }

  .proof { padding: 110px 4vw 130px; }
  .proof__statement { margin: 0 0 88px; }
  .proof__grid { gap: 48px; }

  .arsenal__eyebrow { top: 32px; }
  .pilar.is-active .pilar__head { top: 100px; left: 4vw; }
  .arsenal__columns.has-active .pilar:not(.is-active) .pilar__roman { margin-top: 100px; }
  .pilar__detail { padding: 200px 2vw 36px 4vw; }
  .pilar__service-video { width: 220px; }

  .demo__texts { padding: 88px 2.5vw 52px 4vw; gap: 40px; }
  .demo__phone-col { padding: 48px 8px; }
  .iphone-17 { width: 320px; }
  .demo__phone-col .iphone-17 { width: 320px; }

  .planes { padding: 110px 4vw 130px; }
  .planes__grid { max-width: 1040px; gap: 18px; }
  .plan__inner { padding: 36px 26px 30px; }
  .plan--featured .plan__inner { padding: 44px 28px 36px; }
  .plan__list li { font-size: 12px; }

  .faq { padding: 84px 4vw 100px; }
  .faq__list { max-width: 1040px; }

  .cta-final { padding: 52px 2.5vw; }
  .cta-final__content { gap: 48px; }
  .cta-final__button { padding: 28px 68px; }

  .dark-footer { padding: 100px 6vw 52px; }
  .dark-footer__top { gap: 64px; padding-bottom: 52px; }
  .dark-footer__logo { width: 160px; }
}

/* ---- BREAKPOINT 1280px: compresion moderada ---- */
@media (max-width: 1280px) {
  .nav__brand-logo { height: 30px; }
  .nav__cta { font-size: 10.5px; padding: 10px 20px; letter-spacing: 0.15em; }

  .side-nav { left: 18px; }
  .side-nav__list { gap: 18px; }
  .side-nav__label { font-size: 11px; }
  .side-nav__shadow { width: 180px; }

  .wa-floating { width: 54px; height: 54px; right: 22px; bottom: 22px; }
  .wa-floating__icon { width: 26px; height: 26px; }

  .preloader__mark { width: 280px; }

  .hero { padding-top: 68px; }
  .hero__left { padding: 0 3vw 0 0; }
  .hero__messages { min-height: 240px; max-width: 760px; }
  .hero__cta { padding: 14px 28px; font-size: 11px; }

  .autoridad__pinned { padding-top: 68px; }
  .autoridad__messages { min-height: 280px; }
  .autoridad__eyebrow { margin-bottom: 36px; }
  .autoridad__text { font-size: 14px; max-width: 400px; }
  .autoridad__progress-bar { width: 42px; }

  .proof { padding: 92px 4vw 112px; }
  .proof__statement { margin: 0 0 72px; max-width: 980px; }
  .proof__grid { gap: 36px; }
  .proof__label { font-size: 13px; }

  .arsenal__eyebrow { top: 28px; left: 4vw; }
  .pilar.is-active .pilar__head { top: 88px; }
  .arsenal__columns.has-active .pilar:not(.is-active) .pilar__roman { margin-top: 88px; }
  .pilar__detail { padding: 180px 2vw 32px 4vw; gap: 12px; }
  .pilar__lead { margin-bottom: 6px; }
  .pilar__service-video { width: 190px; }
  .pilar__list li { font-size: 15px; gap: 18px; padding-right: 2vw; }
  .pilar__service-name { font-size: 15px; }

  .demo__eyebrow { top: 32px; left: 4vw; }
  .demo__texts { padding: 72px 2vw 44px 4vw; gap: 32px; }
  .demo__lead { font-size: 15px; max-width: 360px; }
  .demo__phone-col { padding: 40px 6px; }
  .iphone-17 { width: 280px; }
  .demo__phone-col .iphone-17 { width: 280px; }
  .iphone-17__frame { padding: 10px; border-radius: 46px; }
  .iphone-17__screen { border-radius: 38px; }
  .iphone-17__island { top: 18px; width: 92px; height: 26px; }
  .demo__cta { padding: 15px 32px; font-size: 11px; }

  .planes { padding: 90px 4vw 110px; }
  .planes__eyebrow { margin-bottom: 44px; }
  .planes__header { margin-bottom: 72px; }
  .planes__grid { max-width: 960px; gap: 16px; }
  .plan__inner { padding: 32px 22px 26px; border-radius: 16px; }
  .plan--featured .plan__inner { padding: 38px 24px 30px; }
  .plan--featured { margin-top: -14px; margin-bottom: -14px; }
  .plan__head { margin-bottom: 22px; }
  .plan__name { margin: 0 0 14px; }
  .plan__list { margin: 0 0 22px; gap: 10px; }
  .plan__list li { font-size: 11.5px; gap: 8px; }
  .plan__cta { padding: 12px 14px; font-size: 10.5px; }
  .plan__badge { font-size: 8.5px; padding: 6px 14px; top: -10px; }

  .faq { padding: 72px 4vw 88px; }
  .faq__eyebrow { margin-bottom: 28px; }
  .faq__header { margin-bottom: 56px; }
  .faq__list { max-width: 960px; }
  .faq-item__question { padding: 20px 0; gap: 32px; }
  .faq-item__icon { width: 24px; height: 24px; }

  .cta-final { padding: 44px 2vw; }
  .cta-final__eyebrow { top: 36px; left: 4vw; }
  .cta-final__content { gap: 40px; }
  .cta-final__button { padding: 24px 56px; gap: 18px; }
  .cta-final__microcopy { font-size: 13px; }

  .dark-footer { padding: 80px 5vw 44px; }
  .dark-footer__top { grid-template-columns: 1fr 1.8fr; gap: 48px; padding-bottom: 44px; }
  .dark-footer__cols { gap: 28px; }
  .dark-footer__logo { width: 140px; }
  .dark-footer__tagline { font-size: 12px; }
  .dark-footer__legal { margin-top: 44px; padding-top: 32px; }
}

/* ---- BREAKPOINT 1100px: compresion agresiva ---- */
@media (max-width: 1100px) {
  .nav__brand-logo { height: 26px; }
  .nav__cta { font-size: 10px; padding: 9px 16px; }

  .side-nav { left: 14px; }
  .side-nav__list { gap: 16px; }
  .side-nav__shadow { width: 160px; }

  .wa-floating { width: 50px; height: 50px; right: 18px; bottom: 18px; }
  .wa-floating__icon { width: 24px; height: 24px; }

  .preloader__mark { width: 240px; }

  .hero { padding-top: 60px; grid-template-columns: 60% 40%; }
  .hero__messages { min-height: 220px; }

  .autoridad__pinned { padding-top: 60px; }
  .autoridad__left { padding: 0 2.5vw 0 3.5vw; }
  .autoridad__eyebrow { margin-bottom: 28px; }
  .autoridad__messages { min-height: 260px; }
  .autoridad__text { font-size: 13.5px; max-width: 360px; }

  .proof { padding: 72px 4vw 92px; }
  .proof__statement { margin: 0 0 56px; }
  .proof__grid { gap: 24px; grid-template-columns: repeat(3, 1fr); }

  .arsenal__eyebrow { top: 22px; }
  .pilar.is-active .pilar__head { top: 72px; }
  .arsenal__columns.has-active .pilar:not(.is-active) .pilar__roman { margin-top: 72px; }
  .pilar__detail { padding: 150px 2vw 28px 3.5vw; }
  .pilar__service-video { width: 160px; }
  .pilar__list li { font-size: 14px; }
  .pilar__service-name { font-size: 14px; }

  .demo__eyebrow { top: 26px; left: 3.5vw; }
  .demo__texts { padding: 60px 2vw 36px 3.5vw; gap: 28px; }
  .demo__lead { font-size: 14px; max-width: 320px; }
  .demo__phone-col { padding: 28px 4px; }
  .iphone-17 { width: 240px; }
  .demo__phone-col .iphone-17 { width: 240px; }
  .iphone-17__frame { padding: 8px; border-radius: 40px; }
  .iphone-17__screen { border-radius: 32px; }
  .iphone-17__island { top: 14px; width: 78px; height: 22px; }
  .chat-phone__statusbar { padding: 14px 20px 6px; height: 44px; font-size: 12px; }
  .chat-phone__time { font-size: 12px; }
  .chat-bubble { font-size: 10px; padding: 7px 10px; }
  .demo__cta { padding: 13px 26px; font-size: 10px; letter-spacing: 0.16em; }

  .planes { padding: 72px 4vw 92px; }
  .planes__header { margin-bottom: 56px; }
  .planes__grid { max-width: 880px; gap: 14px; }
  .plan__inner { padding: 28px 18px 22px; border-radius: 14px; }
  .plan--featured .plan__inner { padding: 32px 20px 26px; }
  .plan--featured { margin-top: -10px; margin-bottom: -10px; }
  .plan__head { margin-bottom: 18px; }
  .plan__tag { font-size: 8px; margin-bottom: 10px; }
  .plan__name { margin: 0 0 10px; }
  .plan__price-num { font-size: clamp(20px, 1.8vw, 28px); }
  .plan__price-meta { font-size: 9px; }
  .plan__subtitle { font-size: 11px; }
  .plan__divider { margin: 0 0 16px; }
  .plan__list { margin: 0 0 18px; gap: 8px; }
  .plan__list li { font-size: 11px; gap: 7px; }
  .plan__cta { padding: 11px 12px; font-size: 10px; letter-spacing: 0.12em; }
  .plan__badge { font-size: 8px; padding: 5px 12px; }

  .faq { padding: 60px 4vw 76px; }
  .faq__list { max-width: 880px; }
  .faq-item__question { padding: 18px 0; gap: 24px; }
  .faq-item__icon { width: 22px; height: 22px; }
  .faq-item__answer-inner p { padding-bottom: 22px; }

  .cta-final { padding: 40px 2vw; }
  .cta-final__eyebrow { top: 28px; left: 3.5vw; }
  .cta-final__content { gap: 32px; }
  .cta-final__button { padding: 20px 44px; gap: 14px; }
  .cta-final__microcopy { font-size: 12px; }

  .dark-footer { padding: 64px 5vw 36px; }
  .dark-footer__top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 36px; }
  .dark-footer__logo { width: 120px; }
  .dark-footer__cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .dark-footer__cols p { font-size: 13px; }
  .dark-footer__legal { flex-direction: column; gap: 8px; align-items: flex-start; margin-top: 32px; padding-top: 24px; }
}

/* ==================================================================
   RESPONSIVE POR ALTURA — laptops cortos (MacBook Air 13" ~800px alto)
   ================================================================== */

/* ---- Altura <= 820px: compresion ligera ---- */
@media (max-height: 820px) {
  .hero { padding-top: 68px; }
  .hero__messages { min-height: 220px; }
  .hero__ctas { margin-top: 20px; }
  .hero__title { font-size: clamp(44px, 4.6vw, 88px); }
  .hero__message[data-message="2"] .hero__title,
  .hero__message[data-message="3"] .hero__title { font-size: clamp(36px, 3.8vw, 72px); }

  .autoridad__pinned { padding-top: 68px; }
  .autoridad__messages { min-height: 260px; }
  .autoridad__title { font-size: clamp(36px, 3.6vw, 72px); }
  .autoridad__progress { margin-top: 36px; }

  .demo__texts { padding-top: 60px; gap: 28px; }
  .iphone-17 { width: 280px; }
  .demo__phone-col .iphone-17 { width: 280px; }

  .cta-final__content { gap: 36px; }
  .cta-final__headline { font-size: clamp(38px, 5vw, 88px); }
}

/* ---- Altura <= 720px: compresion agresiva (laptops muy bajos) ---- */
@media (max-height: 720px) {
  .hero { padding-top: 58px; }
  .hero__messages { min-height: 200px; }
  .hero__ctas { height: 48px; margin-top: 16px; }
  .hero__cta { padding: 12px 26px; font-size: 10.5px; }
  .hero__title { font-size: clamp(38px, 4vw, 76px); }
  .hero__message[data-message="2"] .hero__title,
  .hero__message[data-message="3"] .hero__title { font-size: clamp(30px, 3.2vw, 60px); }

  .autoridad__pinned { padding-top: 58px; }
  .autoridad__messages { min-height: 220px; }
  .autoridad__title { font-size: clamp(30px, 3.2vw, 64px); line-height: 1.02; margin-bottom: 20px; }
  .autoridad__text { font-size: 13px; }
  .autoridad__progress { margin-top: 28px; }

  .arsenal__pinned { min-height: 560px; }
  .pilar__roman { font-size: clamp(56px, 5vw, 100px); }
  .pilar__title { font-size: clamp(16px, 1.5vw, 24px); }
  .pilar.is-active .pilar__head { top: 64px; }
  .arsenal__columns.has-active .pilar:not(.is-active) .pilar__roman { margin-top: 64px; }
  .pilar__detail { padding-top: 130px; }
  .pilar__lead { font-size: clamp(16px, 1.6vw, 24px); }

  .demo { min-height: 600px; }
  .demo__texts { padding-top: 52px; gap: 22px; }
  .demo__title { font-size: clamp(24px, 2.6vw, 42px); }
  .demo__lead { font-size: 13px; line-height: 1.5; }
  .iphone-17 { width: 240px; }
  .demo__phone-col .iphone-17 { width: 240px; }
  .demo__phone-col { padding: 20px 4px; }

  .cta-final__content { gap: 28px; }
  .cta-final__headline { font-size: clamp(32px, 4.4vw, 72px); }
  .cta-final__button { padding: 20px 48px; font-size: clamp(22px, 2.8vw, 40px); }
}

/* ==================================================================
   MOBILE — Adaptacion a celulares (<= 768px)
   ================================================================== */

@media (max-width: 768px) {

  /* ---- BASE MOBILE ---- */
  body {
    min-width: 0;
    overflow-x: hidden;
  }
  body.no-scroll {
    overflow: hidden;
    touch-action: none;
  }

  /* Nav: logo a la izq, hamburger a la der. CTA escondido en movil. */
  .nav__inner { padding: 12px 16px; }
  .nav__brand-logo { height: 24px; }
  .nav__links { display: none; }

  /* Hamburger button (3 lineas) — solo visible en movil */
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav__hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-vino);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-brut),
                opacity 0.25s ease;
  }
  /* Hamburger animado: cuando esta abierto, las 3 lineas forman una X */
  .nav__hamburger.is-open .nav__hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__hamburger.is-open .nav__hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav__hamburger.is-open .nav__hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Drawer translucido con fondo BEIGE — alineado a la derecha, links pequenos */
  .nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(239, 230, 214, 0.78);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav-drawer.is-open {
    opacity: 1;
    visibility: visible;
  }
  .nav-drawer__panel {
    width: 100%;
    height: 100%;
    padding: 80px 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }
  .nav-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: auto;
    max-width: 100%;
    text-align: right;
    align-items: flex-end;
  }
  .nav-drawer__link {
    display: block;
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.06em;
    color: var(--c-vino);
    text-decoration: none;
    padding: 8px 0;
    text-transform: uppercase;
    text-align: right;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s var(--ease-brut),
                transform 0.4s var(--ease-brut),
                color 0.25s ease;
  }
  .nav-drawer.is-open .nav-drawer__link {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-drawer.is-open .nav-drawer__link:nth-child(1) { transition-delay: 0.06s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(2) { transition-delay: 0.10s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(3) { transition-delay: 0.14s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(4) { transition-delay: 0.18s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(5) { transition-delay: 0.22s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(6) { transition-delay: 0.26s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(7) { transition-delay: 0.30s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(8) { transition-delay: 0.34s; }
  .nav-drawer__link:active { color: var(--c-vino-claro); }
  .nav-drawer__link--cta {
    margin-top: 14px;
    background: var(--c-vino);
    color: var(--c-neon);
    padding: 10px 18px;
    border-radius: 999px;
    font-family: var(--ff-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
  }
  .nav-drawer__link--cta:active { color: var(--c-neon); }

  /* Side-nav: ocultar en movil — no cabe y la nav principal basta */
  .side-nav,
  .side-nav__shadow { display: none !important; }

  /* WhatsApp flotante: esquina INFERIOR DERECHA, +20% mas grande */
  .wa-floating {
    left: auto;
    right: 14px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
  .wa-floating__icon { width: 29px; height: 29px; }

  /* Preloader: logo mas chico */
  .preloader__mark { width: 200px; }

  /* ==========================================================
     SECCION 1 — HERO: 2 pantallas stacked vertical
     Pantalla 1: equipo + textos + boton (100vh)
     Pantalla 2: influencer + despedida scroll-driven (100vh)
     ========================================================== */
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 200vh;
    padding-top: 52px;
    grid-template-columns: none;
  }
  .hero__left {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero__right {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    position: relative;
  }

  /* Imagen de equipo: cubre la pantalla 1 completa */
  .hero__team-wrap { position: absolute; }
  .hero__team-bg { object-position: 50% center; }

  /* Mensajes y CTAs escalados, todo CENTRADO en movil */
  .hero__messages {
    max-width: 100%;
    min-height: 220px;
    padding: 0 10px;
    text-align: center;
  }
  .hero__title { font-size: clamp(40px, 11vw, 62px); text-align: center; }
  .hero__message[data-message="2"] .hero__title,
  .hero__message[data-message="3"] .hero__title {
    font-size: clamp(32px, 8.6vw, 52px);
  }
  .hero__ctas { margin-top: 22px; height: 50px; text-align: center; }
  .hero__cta { padding: 13px 24px; font-size: 11px; }

  /* Influencer fills pantalla 2 */
  .hero__influencer {
    width: 100%;
    height: 100%;
    object-position: center center;
  }

  /* Etiqueta vertical "INFLUENCER IA" en el lado izquierdo de la chica */
  .hero__vertical-label {
    display: block;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-vino);
    white-space: nowrap;
    z-index: 4;
    pointer-events: none;
    /* Entrada suave al aparecer la pantalla 2 */
    opacity: 0.85;
  }
  /* Linea corta arriba y abajo del texto para acento editorial */
  .hero__vertical-label::before,
  .hero__vertical-label::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 1px;
    background: var(--c-vino);
    vertical-align: middle;
    margin: 0 10px;
    opacity: 0.6;
  }

  /* =============================================================
     SCROLL SNAP en el HERO — "iman" suave al llegar a la chica
     ============================================================= */
  html {
    scroll-snap-type: y proximity;
  }
  /* Snap solo en la pantalla 2 del hero (donde esta la chica).
     proximity = sugerencia (no forzado), asi el usuario puede
     seguir scrolleando pero el scroll se "detiene" un momento
     permitiendo ver las animaciones de la chica. */
  .hero__right {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    scroll-margin-top: 0;
  }

  /* ==========================================================
     SECCION 2 — AUTORIDAD: sin sticky, titulo arriba + video abajo
     Todo CENTRADO en movil
     ========================================================== */
  .autoridad__track {
    height: auto;
    min-height: 100vh;
  }
  .autoridad__pinned {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    padding: 70px 20px 32px;
    gap: 24px;
    align-items: stretch;
    justify-content: center;
  }
  /* IMPORTANTE: NO usar align-items: center en .autoridad__left — colapsa el
     ancho de los hijos (incluido .autoridad__messages) y el texto se rompe
     una palabra por linea. En su lugar: dejar stretch (default) + text-align. */
  .autoridad__left {
    padding: 0;
    width: 100%;
    text-align: center;
    align-items: stretch;
  }
  .autoridad__eyebrow {
    margin-bottom: 18px;
    justify-content: center;
    width: 100%;
  }
  .autoridad__messages {
    min-height: 200px;
    text-align: center;
    width: 100%;
  }
  .autoridad__title {
    font-size: clamp(28px, 8vw, 42px);
    margin: 0 auto 14px;
    text-align: center;
    width: 100%;
  }
  .autoridad__text {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.55;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .autoridad__message {
    text-align: center;
    width: 100%;
  }
  .autoridad__progress {
    margin: 20px auto 0;
    justify-content: center;
    width: 100%;
  }
  .autoridad__progress-bar { width: 32px; }
  /* Animaciones de entrada/salida sin desplazamiento horizontal en movil
     (en horizontal angosto se ven raras y rompen el centrado) */
  @keyframes autoridadIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes autoridadOut {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
  }

  .autoridad__right {
    width: 100%;
    height: auto;
    padding: 0;
    display: block;
  }
  .autoridad__video-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .autoridad__video {
    width: 100%;
    height: 100%;
  }

  /* Botones del video: mas pequenos */
  .autoridad__play-btn { width: 64px; height: 64px; }
  .autoridad__mute-btn,
  .autoridad__fs-btn { width: 38px; height: 38px; }
  .autoridad__fs-btn { right: 60px; }

  /* ==========================================================
     SECCION 3 — SOCIAL PROOF: una pantalla, metricas compactas, CENTRADAS
     ========================================================== */
  .proof {
    padding: 60px 20px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .proof__inner { width: 100%; }
  .proof__eyebrow { margin-bottom: 20px; justify-content: center; }
  .proof__statement {
    font-size: clamp(28px, 8.5vw, 44px);
    margin: 0 auto 40px;
    text-align: center;
  }
  .proof__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .proof__metric { gap: 10px; align-items: center; text-align: center; }
  .proof__num { font-size: clamp(56px, 16vw, 88px); align-self: center !important; }
  .proof__metric--accent .proof__num { align-self: center !important; }
  .proof__label { font-size: 13px; max-width: 100%; margin: 0 auto; }

  /* ==========================================================
     SECCION 4 — ARSENAL: 4 FILAS horizontales (en lugar de columnas)
     CENTRADO en movil: numero arriba, titulo abajo, todo al centro.
     Al activar: numero+titulo siguen centrados pero pegados arriba.
     OPTIMIZADO: track mas corto + transitions mas rapidas para que los
     pilares abran inmediato al scrollear.
     ========================================================== */
  /* Track: desktop 520vh → mobile 320vh (80vh por pilar).
     Cada pilar abre despues de 80vh de scroll en lugar de 130vh. */
  .arsenal__track {
    height: 320vh;
  }
  .arsenal__pinned {
    min-height: 100vh;
  }

  /* NO transiciones en top/left/font-size/letter-spacing (causan layout
     reflow cada frame). Solo transiciona opacity (compositor GPU). */
  .pilar__head {
    transition: opacity 0.25s ease;
  }
  .pilar__roman {
    transition: opacity 0.25s ease;
  }
  .pilar__title {
    transition: opacity 0.25s ease;
  }
  /* El detalle aparece con opacity (GPU-accelerated) */
  .pilar__detail {
    transition: opacity 0.35s ease;
    transform: none !important; /* elimina translateY que causa reflow */
  }
  .pilar.is-active .pilar__detail {
    transition-delay: 0.15s;
    transform: none !important;
  }
  /* Videos de servicios: sin transform stagger (costoso). Solo opacity. */
  .pilar__service-video {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
  .pilar.is-active li:nth-child(1) .pilar__service-video { transition-delay: 0.2s; }
  .pilar.is-active li:nth-child(2) .pilar__service-video { transition-delay: 0.25s; }
  .pilar.is-active li:nth-child(3) .pilar__service-video { transition-delay: 0.3s; }
  .pilar.is-active li:nth-child(4) .pilar__service-video { transition-delay: 0.35s; }

  /* Quitar hover scale X/Y (force layout cada frame) — solo cambiar opacity */
  .arsenal__columns:not(.has-active) .pilar:hover,
  .arsenal__columns:not(.has-active) .pilar:active {
    transform: none !important;
  }
  .arsenal__columns.has-active .pilar:not(.is-active):hover,
  .arsenal__columns.has-active .pilar:not(.is-active):active {
    transform: none !important;
  }
  .arsenal__eyebrow {
    top: 14px;
    left: 0;
    right: 0;
    justify-content: center;
  }
  .arsenal__index { font-size: 20px; padding-right: 10px; }
  .arsenal__label { font-size: 9px; }

  /* FLEX COLUMN en lugar de grid. Mucho mas barato de animar:
     - Grid con fr units causa reflow completo cada frame (muy pesado en iOS)
     - Flex basis/grow transiciona limpio via GPU-friendly layout
     CSS controla toda la animacion; JS solo toggle .is-active/.has-active. */
  .arsenal__columns {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    padding-top: 54px;
  }

  /* Cada pilar: flex item, todos iguales por defecto. */
  .pilar {
    flex: 1 1 0;
    min-height: 0;
    min-width: 0;
    transition: flex-grow 0.4s var(--ease-brut),
                background 0.4s var(--ease-brut);
  }

  /* Cuando hay uno activo: el activo crece (flex:7), los otros se comprimen */
  .arsenal__columns.has-active .pilar { flex: 1 1 0; }
  .arsenal__columns.has-active .pilar.is-active { flex: 7 1 0; }
  .pilar + .pilar {
    box-shadow: inset 0 1px 0 rgba(74, 14, 44, 0.08);
  }

  /* PILAR CERRADO (base 4 filas): NUMERO ARRIBA + TITULO ABAJO, centrados */
  .pilar__head {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: auto;
  }
  .pilar__roman {
    font-size: clamp(28px, 8vw, 40px);
    text-align: center;
    line-height: 1;
  }
  .pilar__title {
    font-size: clamp(13px, 3.6vw, 18px);
    text-align: center;
    white-space: normal;
    max-width: none;
    line-height: 1.05;
  }
  /* En movil el titulo siempre en una linea — el break se convierte en espacio */
  .pilar__break { display: inline; }
  .pilar__break::before { content: " "; }
  .pilar__title-line { white-space: normal; }

  /* PILAR ACTIVO EN MOVIL: numero+titulo CENTRADOS arriba (no a la izquierda) */
  .pilar.is-active .pilar__head {
    top: 18px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    width: auto;
  }
  .pilar.is-active .pilar__roman {
    font-size: clamp(26px, 7vw, 36px);
    text-align: center;
  }
  .pilar.is-active .pilar__title {
    font-size: clamp(15px, 4vw, 20px);
    text-align: center;
  }

  /* PILARES CONTRAIDOS en movil (cuando hay uno activo):
     numero+titulo CENTRADOS en su fila (mismo lenguaje visual base) */
  .arsenal__columns.has-active .pilar:not(.is-active) .pilar__head {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    height: auto;
    width: auto;
  }
  .arsenal__columns.has-active .pilar:not(.is-active) .pilar__roman {
    font-size: clamp(20px, 5.5vw, 28px);
    margin-top: 0;
    text-align: center;
  }
  .arsenal__columns.has-active .pilar:not(.is-active) .pilar__title {
    font-size: clamp(10px, 2.8vw, 12px);
    transform: rotate(0deg);
    flex: 0 1 auto;
    display: block;
    align-items: initial;
    text-align: center;
  }

  /* Hover/active visual cue: leve expansion vertical */
  .arsenal__columns:not(.has-active) .pilar:hover,
  .arsenal__columns:not(.has-active) .pilar:active {
    transform: scaleY(1.06);
  }
  .arsenal__columns.has-active .pilar:not(.is-active):hover,
  .arsenal__columns.has-active .pilar:not(.is-active):active {
    transform: scaleY(1.10);
  }

  /* DETALLE del pilar activo: titulo arriba (centrado), 4 servicios en 2x2 */
  .pilar__detail {
    padding: 78px 14px 14px;
    gap: 10px;
    text-align: center;
  }
  .pilar__lead {
    font-size: 13px;
    line-height: 1.3;
    margin: 0 auto 6px;
    max-width: 100%;
    text-align: center;
  }
  .pilar__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
  }
  .pilar__list li {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 0;
    border: none;
    flex: 0 0 auto;
    text-align: center;
  }
  .pilar__list li:first-child { border-top: none; }

  /* Servicio en movil: titulo arriba CENTRADO, video abajo */
  .pilar__service-name {
    font-size: 11px;
    line-height: 1.2;
    gap: 4px;
    order: 1;
    text-align: center;
    justify-content: center;
  }
  .pilar__service-name::before {
    font-size: 13px;
  }
  .pilar__service-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 4px;
    order: 2;
  }

  /* Zoom overlay del video: ancho adaptado al viewport */
  .video-zoom-overlay__frame {
    width: 90vw;
    max-width: 90vw;
  }
  .video-zoom-overlay__title {
    font-size: 12px;
    top: auto;
    bottom: 10vh;
  }

  /* ==========================================================
     SECCION 5 — DEMO: todo en 1 pantalla (compacto, sin espacios en blanco)
     Layout grid: textos+CTA arriba en su fila, iPhone+chica juntos debajo.
     Fondo BLANCO PURO para que la chica (fondo blanco puro) se difumine.
     ========================================================== */
  .demo {
    background: #FFFFFF;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 60px 16px 22px;
  }
  .demo__eyebrow {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    justify-content: center;
  }
  .demo__index { font-size: 20px; padding-right: 10px; }
  .demo__label { font-size: 9px; }

  /* Stage: grid 2 filas. Fila 1 = textos full-width. Fila 2 = iPhone | chica */
  .demo__stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "texts texts"
      "phone girl";
    gap: 32px 0; /* separacion entre bloque textos y la fila iPhone+chica */
    flex: none;
    width: 100%;
  }

  /* TEXTOS: full width, compacto, separaciones naturales por margin */
  .demo__texts {
    grid-area: texts;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 0 6px;
    gap: 0;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  /* Centrado horizontal de los 3 bloques (solo eje X). NO resetea margin
     vertical para que los margin-top de abajo apliquen. */
  .demo__texts > .demo__title,
  .demo__texts > .demo__lead,
  .demo__texts > .demo__cta {
    margin-left: auto;
    margin-right: auto;
  }
  /* Titulo ligeramente mas pequeno para que entre en 3 lineas.
     "Deja de perder clientes / por no responder / a las 3:00 AM." */
  .demo__texts > .demo__title {
    font-size: clamp(26px, 7.2vw, 36px);
    line-height: 1.08;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
  }
  /* IMPORTANTE: el selector .demo__texts > .demo__lead tiene especificidad
     (0,2,0,0) — supera la del base .demo__texts .demo__lead { margin:0 }. */
  .demo__texts > .demo__lead {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.45;
    max-width: 100%;
    text-align: center;
    /* Separacion equivalente a la del eyebrow → titulo (~40px) */
    margin-top: 40px;
    margin-bottom: 0;
  }
  .demo__texts > .demo__cta {
    padding: 14px 28px;
    font-size: 11px;
    align-self: center;
    /* Separacion equivalente para respirar entre bloques */
    margin-top: 40px;
    margin-bottom: 0;
  }

  /* iPhone: grid area "phone", mitad izquierda, posicion natural (no absolute) */
  .demo__phone-col {
    grid-area: phone;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    padding: 12px 6px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .iphone-17 { width: 160px; }
  .demo__phone-col .iphone-17 { width: 160px; }
  .iphone-17__frame { padding: 5px; border-radius: 26px; }
  .iphone-17__screen { border-radius: 21px; }
  .iphone-17__island { top: 7px; width: 42px; height: 11px; }

  /* Iconos y textos del iPhone — MUY pequenos, proporcionales al marco 160px.
     Las SVGs llevan width/height inline en HTML; aqui las fuerzo via CSS. */
  .chat-phone__statusbar {
    padding: 4px 8px 2px;
    height: 20px;
    font-size: 6.5px;
  }
  .chat-phone__time { font-size: 6.5px; }
  .chat-phone__statusbar svg { width: 8px !important; height: 5px !important; }
  .chat-phone__icons { gap: 2px; }
  .chat-phone__battery { width: 12px; height: 5px; border-radius: 1.5px; }
  .chat-phone__battery::before { inset: 0.5px; border-radius: 0.5px; }
  .chat-phone__battery::after { width: 1px; height: 2px; top: 1.5px; right: -1.5px; }

  .chat-phone__bar { padding: 4px 7px 5px; gap: 5px; }
  .chat-phone__back { font-size: 13px; }
  .chat-phone__avatar { width: 16px; height: 16px; }
  .chat-phone__avatar-letter { font-size: 7px; }
  .chat-phone__online-dot { width: 4px; height: 4px; border-width: 1px; }
  .chat-phone__meta { gap: 0; }
  .chat-phone__meta strong { font-size: 7px; }
  .chat-phone__status { font-size: 5px; letter-spacing: 0.08em; }

  .chat-phone__body { padding: 5px 4px; gap: 3px; }
  .chat-bubble { font-size: 6.5px; padding: 3px 5px; border-radius: 7px; line-height: 1.3; }
  .chat-bubble--bot.is-typing { padding: 4px 6px; min-width: 22px; }

  .chat-phone__input { padding: 3px 5px 3px; gap: 4px; }
  .chat-phone__input-text { font-size: 6px; padding: 2px 4px; border-radius: 8px; }
  .chat-phone__send { width: 12px; height: 12px; }
  .chat-phone__send svg { width: 7px !important; height: 7px !important; }
  .chat-phone__homebar { height: 9px; padding-bottom: 2px; }
  .chat-phone__homebar::after { width: 50px; height: 2px; }

  /* Chica: grid area "girl", mitad derecha, posicion natural.
     Misma altura que el iPhone (~370px) con object-fit cover para llenar. */
  .demo__right {
    grid-area: girl;
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 6px 4px;
    overflow: hidden;
  }
  .demo__influencer {
    position: relative;
    width: 100%;
    /* Altura fija para coincidir con iPhone — aspect del video controlado
       por object-fit: cover que recorta laterales del fondo blanco puro */
    height: auto;
    aspect-ratio: 9 / 19.5; /* mismo aspect que el iPhone screen */
    max-height: 370px;
    min-height: 300px;
    object-fit: cover;
    object-position: center center;
    left: auto;
    right: auto;
    bottom: auto;
  }

  /* CTA mobile extra: OCULTO — ya no se usa en movil, el CTA principal
     queda arriba con los textos. */
  .demo__cta--mobile {
    display: none !important;
  }

  /* ==========================================================
     SECCION 6 — PLANES: titulo arriba, tarjetas stackeadas, CENTRADO
     - Mantiene animacion de entrada inicial
     - SIN hover scale en la tarjeta seleccionada
     - Animacion de items + dot→check disparada via .is-revealed (JS observer)
     - Bidireccional: revierte cuando la tarjeta sale del viewport
     ========================================================== */
  .planes {
    padding: 60px 20px 70px;
    text-align: center;
  }
  .planes__eyebrow { margin-bottom: 20px; justify-content: center; }
  .planes__header { margin-bottom: 40px; text-align: center; }
  .planes__title { font-size: clamp(28px, 8.5vw, 42px); margin: 0 auto 14px; text-align: center; }
  .planes__lead { font-size: 13px; max-width: 100%; margin: 0 auto; text-align: center; }

  /* CAROUSEL HORIZONTAL: scroll lateral con snap, vista de peek en ambos lados.
     Desktop grid 3cols → mobile flex row con scroll-snap centrado. */
  .planes__grid {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    gap: 14px;
    max-width: 100%;
    padding: 8px 12vw 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding-inline: 12vw;
  }
  .planes__grid::-webkit-scrollbar { display: none; }
  .plan {
    flex: 0 0 76vw;
    max-width: 320px;
    scroll-snap-align: center;
  }
  /* Reset de margin vertical del featured (solo aplica en grid vertical) */
  .plan--featured {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .plan__inner {
    padding: 28px 22px 24px;
    border-radius: 14px;
  }
  .plan--featured {
    margin-top: 6px;
    margin-bottom: 0;
  }
  .plan--featured .plan__inner {
    padding: 32px 22px 28px;
  }
  .plan__head { margin-bottom: 20px; }
  .plan__name { font-size: clamp(32px, 9vw, 42px); margin: 0 0 12px; }
  .plan--featured .plan__name { font-size: clamp(30px, 8.5vw, 38px); }
  .plan__price-num { font-size: clamp(22px, 6vw, 28px); }
  .plan__subtitle { font-size: 11px; }
  .plan__list { margin: 0 0 22px; gap: 9px; text-align: left; }
  .plan__list li { font-size: 12px; gap: 8px; }
  .plan__cta { padding: 12px 16px; font-size: 10.5px; }

  /* CAROUSEL: cards entran de IZQUIERDA a DERECHA con stagger (plan 1, luego
     2, luego 3). Despues el JS corre el scrollTo Plan 1 → Plan 3 → Plan 2.
     Total de la coreografia: ~2.3s. */
  @keyframes planEnter {
    0%   { opacity: 0; transform: translateX(-55vw); }
    100% { opacity: 1; transform: translateX(0); }
  }
  .plan.is-entered {
    animation-duration: 0.45s !important;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
  }
  /* Stagger izquierda→derecha */
  .plan[data-plan="1"].is-entered { animation-delay: 0s !important; }
  .plan[data-plan="2"].is-entered { animation-delay: 0.15s !important; }
  .plan[data-plan="3"].is-entered { animation-delay: 0.3s !important; }
  /* Quitar idle float para no saltar en movil */
  .plan.is-entered .plan__inner,
  .plan--featured.is-entered .plan__inner {
    animation: none;
  }

  /* DESHABILITAR hover scale + grayscale en movil */
  .planes__grid:hover .plan:not(:hover) .plan__inner {
    filter: none;
    opacity: 1;
  }
  .plan:hover .plan__inner,
  .plan--featured:hover .plan__inner {
    transform: none !important;
    box-shadow: 0 14px 36px rgba(74, 14, 44, 0.3) !important;
  }
  .plan:hover { z-index: auto; }
  .plan:hover .plan__list li {
    transform: none;
    color: rgba(255, 255, 255, 0.88);
  }
  .plan:hover .plan__marker-dot {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1);
  }
  .plan:hover .plan__marker-arrow {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }

  /* ANIMACION via .is-revealed (escrita por JS al entrar viewport) */
  .plan.is-revealed .plan__list li {
    transform: translateY(-4px);
    color: var(--c-white);
  }
  .plan.is-revealed .plan__marker-dot {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  .plan.is-revealed .plan__marker-arrow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    /* Convertir el contenido de "→" a check via pseudo-elemento */
    font-size: 0;
    line-height: 0;
  }
  .plan.is-revealed .plan__marker-arrow::after {
    content: "✓";
    font-family: var(--ff-sans);
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    display: inline-block;
  }
  /* Stagger en movil tambien */
  .plan.is-revealed .plan__list li:nth-child(1),
  .plan.is-revealed .plan__list li:nth-child(1) .plan__marker-dot,
  .plan.is-revealed .plan__list li:nth-child(1) .plan__marker-arrow { transition-delay: 0.05s; }
  .plan.is-revealed .plan__list li:nth-child(2),
  .plan.is-revealed .plan__list li:nth-child(2) .plan__marker-dot,
  .plan.is-revealed .plan__list li:nth-child(2) .plan__marker-arrow { transition-delay: 0.15s; }
  .plan.is-revealed .plan__list li:nth-child(3),
  .plan.is-revealed .plan__list li:nth-child(3) .plan__marker-dot,
  .plan.is-revealed .plan__list li:nth-child(3) .plan__marker-arrow { transition-delay: 0.25s; }
  .plan.is-revealed .plan__list li:nth-child(4),
  .plan.is-revealed .plan__list li:nth-child(4) .plan__marker-dot,
  .plan.is-revealed .plan__list li:nth-child(4) .plan__marker-arrow { transition-delay: 0.35s; }
  .plan.is-revealed .plan__list li:nth-child(5),
  .plan.is-revealed .plan__list li:nth-child(5) .plan__marker-dot,
  .plan.is-revealed .plan__list li:nth-child(5) .plan__marker-arrow { transition-delay: 0.45s; }
  .plan.is-revealed .plan__list li:nth-child(6),
  .plan.is-revealed .plan__list li:nth-child(6) .plan__marker-dot,
  .plan.is-revealed .plan__list li:nth-child(6) .plan__marker-arrow { transition-delay: 0.55s; }

  /* ==========================================================
     SECCION 7 — FAQ: adaptado, full height, todo CENTRADO
     ========================================================== */
  .faq {
    padding: 60px 20px 70px;
    min-height: 100vh;
    text-align: center;
  }
  .faq__eyebrow { margin-bottom: 18px; justify-content: center; }
  .faq__header { margin-bottom: 36px; text-align: center; }
  .faq__title { font-size: clamp(28px, 8.5vw, 42px); text-align: center; }
  .faq__lead { font-size: 13px; margin: 0 auto; text-align: center; }
  .faq__list { max-width: 100%; text-align: left; }
  .faq-item__question { padding: 16px 0; gap: 16px; }
  .faq-item__text { font-size: 14px; }
  .faq-item__question:hover .faq-item__text {
    transform: none;
  }
  .faq-item__icon { width: 20px; height: 20px; }
  .faq-item__answer-inner p {
    font-size: 12px;
    padding: 0 0 18px;
    max-width: 100%;
  }

  /* ==========================================================
     SECCION 8 — CTA FINAL: full height, boton grande pero compacto
     ========================================================== */
  .cta-final {
    padding: 80px 18px 40px;
    min-height: 100vh;
  }
  .cta-final__eyebrow {
    top: 16px;
    left: 0;
    right: 0;
    justify-content: center;
  }
  .cta-final__index { font-size: 20px; padding-right: 10px; }
  .cta-final__label { font-size: 9px; }

  .cta-final__content { gap: 30px; }
  .cta-final__headline { font-size: clamp(30px, 9vw, 48px); }
  .cta-final__button {
    padding: 18px 32px;
    font-size: clamp(18px, 5.5vw, 24px);
    gap: 12px;
  }
  .cta-final__arrow { font-size: 0.6em; }
  .cta-final__microcopy { font-size: 11px; max-width: 100%; }
  .cta-final__micro-sep { display: block; margin: 4px 0; }

  /* DARK FOOTER mobile: 1 columna, compacto */
  .dark-footer {
    padding: 48px 20px 28px;
  }
  .dark-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .dark-footer__logo { width: 100px; }
  .dark-footer__tagline { font-size: 11px; }
  .dark-footer__cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dark-footer__cols p { font-size: 12px; }
  .dark-footer__legal {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-top: 24px;
    padding-top: 18px;
    font-size: 10px;
  }
}

/* Breakpoint mas pequeno para telefonos chicos (<=380px) */
@media (max-width: 380px) {
  .hero__title { font-size: clamp(34px, 10vw, 52px); }
  .iphone-17 { width: 140px; }
  .demo__phone-col .iphone-17 { width: 140px; }
  .pilar__list {
    gap: 8px;
  }
  .pilar__service-name { font-size: 10px; }
}

/* ==================================================================
   MOBILE PERFORMANCE OVERRIDES (<=768px) — al final del archivo para
   maxima especificidad por source order. Quita todos los efectos caros
   que hacen trabar iPhones de gama media.
   ================================================================== */
@media (max-width: 768px) {

  /* 1. QUITAR backdrop-filter (uno de los efectos mas caros del browser).
        Reemplazar por fondo solido semi-translucido. */
  .nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(254, 254, 252, 0.96);
  }
  .nav-drawer {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(239, 230, 214, 0.97);
  }
  .autoridad__overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .autoridad__mute-btn,
  .autoridad__fs-btn {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .video-zoom-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 10, 10, 0.85);
  }

  /* 2. DESACTIVAR animaciones infinitas (GPU constante) */
  /* Breathing del equipo */
  .hero__team-bg { animation: none !important; }
  /* Pulso recurrente de WhatsApp: reemplazar por un pulso simple de scale.
     El keyframe original tiene 10+ cambios de box-shadow por ciclo → caro. */
  .wa-floating.is-highlighted {
    animation: waPulseMobile 1.8s ease-in-out infinite !important;
  }
  @keyframes waPulseMobile {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 18px rgba(74,14,44,0.25); }
    50%      { transform: scale(1.08); box-shadow: 0 6px 22px rgba(74,14,44,0.45); }
  }
  /* Pulso del CTA final (2 pulsos concurrentes): desactivar */
  .cta-final__pulse,
  .cta-final__pulse--2 { animation: none !important; opacity: 0 !important; }
  /* Pulso verde del avatar del chat (tambien infinito) */
  .chat-phone__online-dot { animation: none !important; }
  /* Pulso del placeholder dot */
  .placeholder__pulse { animation: none !important; }

  /* 3. REDUCIR box-shadows pesados a sombras simples */
  .plan__inner {
    box-shadow: 0 6px 20px rgba(74, 14, 44, 0.18) !important;
  }
  .plan--featured .plan__inner {
    box-shadow: 0 10px 28px rgba(74, 14, 44, 0.24) !important;
  }
  .iphone-17 {
    filter: drop-shadow(0 12px 24px rgba(74, 14, 44, 0.18));
  }
  .cta-final__button {
    box-shadow: 0 6px 18px rgba(232, 255, 0, 0.15) !important;
  }
  .video-zoom-overlay__frame {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35) !important;
  }

  /* 4. SCROLL: que iOS maneje el scroll nativo (sin smooth CSS) */
  html {
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* 5. DESACTIVAR hover-effects caros en touch (no se usan ademas) */
  .plan:hover .plan__inner,
  .plan--featured:hover .plan__inner,
  .planes__grid:hover .plan:not(:hover) .plan__inner,
  .autoridad__video-wrap:hover .autoridad__overlay,
  .pilar:hover {
    /* reset a valores por defecto — se maneja via .is-active/.is-revealed */
  }

  /* 6. Simplificar transiciones largas (>1s) a 0.35-0.5s */
  .faq-item__answer {
    transition: grid-template-rows 0.4s var(--ease-brut) !important;
  }
  .nav-drawer {
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
  }
  .nav-drawer__link {
    transition: opacity 0.3s var(--ease-brut),
                transform 0.3s var(--ease-brut) !important;
  }

  /* 7. Video zoom overlay: reducir blur y scale transitions */
  .video-zoom-overlay__frame {
    transition: transform 0.3s var(--ease-brut) !important;
  }

  /* 8. Hint al compositor: usar el GPU layer para elementos que animan.
     Lo aplicamos solo cuando estan en movimiento (via clases). */
  .plan.is-entered { will-change: transform, opacity; }
  .pilar.is-active { will-change: auto; } /* quita despues del cambio */
}

/* ==================================================================
   TABLET / iPad — 2 condiciones para capturar iPad en cualquier orientacion:
   1. Ancho 769-1024 (iPads en portrait, algunos laptops pequenos)
   2. Touch primary + >=769px (iPads en LANDSCAPE 1180-1366px tambien)
   Base: layout desktop intacto. Solo cambia nav + optimizaciones de perf.
   ================================================================== */
@media (min-width: 769px) and (max-width: 1024px),
       (min-width: 769px) and (hover: none) and (pointer: coarse) {

  /* ---- Ocultar side-nav lateral (como en mobile) ---- */
  .side-nav,
  .side-nav__shadow { display: none !important; }

  /* ---- Navbar superior: ocultar CTA, mostrar hamburger ---- */
  .nav__links { display: none; }
  .nav__inner { padding: 16px 32px; }
  .nav__brand-logo { height: 32px; }

  /* Hamburger button de 3 lineas — proporciones iPad */
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav__hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--c-vino);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-brut),
                opacity 0.25s ease;
  }
  .nav__hamburger.is-open .nav__hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav__hamburger.is-open .nav__hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .nav__hamburger.is-open .nav__hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Drawer translucido beige, alineado a la derecha (misma estetica que mobile) */
  .nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(239, 230, 214, 0.82);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav-drawer.is-open {
    opacity: 1;
    visibility: visible;
  }
  .nav-drawer__panel {
    width: 100%;
    height: 100%;
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }
  .nav-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: auto;
    max-width: 100%;
    text-align: right;
    align-items: flex-end;
  }
  .nav-drawer__link {
    display: block;
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    color: var(--c-vino);
    text-decoration: none;
    padding: 10px 0;
    text-transform: uppercase;
    text-align: right;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.4s var(--ease-brut),
                transform 0.4s var(--ease-brut),
                color 0.25s ease;
  }
  .nav-drawer.is-open .nav-drawer__link {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-drawer.is-open .nav-drawer__link:nth-child(1) { transition-delay: 0.06s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(2) { transition-delay: 0.10s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(3) { transition-delay: 0.14s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(4) { transition-delay: 0.18s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(5) { transition-delay: 0.22s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(6) { transition-delay: 0.26s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(7) { transition-delay: 0.30s; }
  .nav-drawer.is-open .nav-drawer__link:nth-child(8) { transition-delay: 0.34s; }
  .nav-drawer__link:hover,
  .nav-drawer__link:active { color: var(--c-vino-claro); }
  .nav-drawer__link--cta {
    margin-top: 20px;
    background: var(--c-vino);
    color: var(--c-neon);
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--ff-sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
  }
  .nav-drawer__link--cta:hover,
  .nav-drawer__link--cta:active { color: var(--c-neon); }

  /* ============================================================
     PERFORMANCE OVERRIDES iPad — misma logica que mobile perf.
     Evita trabado en iPads mid-range (Air/10a gen).
     ============================================================ */

  /* 1. QUITAR backdrop-filter (muy caro en iPadOS) */
  .nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(254, 254, 252, 0.96);
  }
  .nav-drawer {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .autoridad__overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .autoridad__mute-btn,
  .autoridad__fs-btn {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .video-zoom-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 10, 10, 0.85);
  }

  /* 2. DESACTIVAR animaciones infinitas que consumen GPU constantemente */
  .hero__team-bg { animation: none !important; }
  .wa-floating.is-highlighted {
    animation: waPulseMobile 1.8s ease-in-out infinite !important;
  }
  .cta-final__pulse,
  .cta-final__pulse--2 {
    animation: none !important;
    opacity: 0 !important;
  }
  .chat-phone__online-dot { animation: none !important; }
  .placeholder__pulse { animation: none !important; }

  /* 3. REDUCIR box-shadows pesados */
  .plan__inner {
    box-shadow: 0 8px 24px rgba(74, 14, 44, 0.2) !important;
  }
  .plan--featured .plan__inner {
    box-shadow: 0 14px 34px rgba(74, 14, 44, 0.28) !important;
  }
  .iphone-17 {
    filter: drop-shadow(0 18px 30px rgba(74, 14, 44, 0.22));
  }
  .cta-final__button {
    box-shadow: 0 8px 24px rgba(232, 255, 0, 0.18) !important;
  }
  .video-zoom-overlay__frame {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
  }

  /* 4. ARSENAL: flex en lugar de grid fr (elimina reflow cada frame).
     Mantiene layout HORIZONTAL (4 columnas) igual que desktop pero la
     animacion se hace via CSS transition sobre flex-grow — no JS rAF. */
  .arsenal__columns {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
  }
  .pilar {
    flex: 1 1 0;
    min-width: 0;
    transition: flex-grow 0.55s var(--ease-brut),
                background 0.55s var(--ease-brut);
  }
  .arsenal__columns.has-active .pilar { flex: 1 1 0; }
  .arsenal__columns.has-active .pilar.is-active { flex: 7 1 0; }

  /* 5. SCROLL nativo (sin smooth CSS) para mejor performance en iPadOS */
  html {
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* 6. ARSENAL: track MAS corto (240vh = 60vh por pilar) + transiciones
     TOTALMENTE eliminadas en head/roman/title. Solo opacity en el detalle
     y service videos. La "animacion" visual del pilar abriendose viene
     del flex-grow del contenedor. Todo lo demas snappea. */
  .arsenal__track {
    height: 240vh;
  }
  .pilar__head {
    transition: none !important;
  }
  .pilar__roman {
    transition: none !important;
  }
  .pilar__title {
    transition: none !important;
  }
  .pilar__detail {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
  .pilar.is-active .pilar__detail {
    transition-delay: 0.15s !important;
    transform: none !important;
  }
  /* Service videos en iPad: transicion rapida, sin transform.
     La opacidad es controlada 100% por JS (inline style) segun el evento
     'playing' del video. NO usar transition-delay ni reglas que forcen
     opacity 1 desde CSS — eso causaba el flicker mientras el video cargaba. */
  .pilar__service-video {
    transition: opacity 0.25s ease !important;
    transform: none !important;
    transition-delay: 0s !important;
  }
  .pilar.is-active li:nth-child(1) .pilar__service-video,
  .pilar.is-active li:nth-child(2) .pilar__service-video,
  .pilar.is-active li:nth-child(3) .pilar__service-video,
  .pilar.is-active li:nth-child(4) .pilar__service-video {
    transition-delay: 0s !important;
  }
  /* Contain las layers de cada pilar para que sus cambios no causen
     reflow de sus hermanos. Optimizacion importante en iPad. */
  .pilar {
    contain: layout paint;
  }

  /* 8. CONTENT-VISIBILITY auto en secciones POST-arsenal (bottom half).
     El browser SKIPS layout/paint/composite para elementos offscreen.
     Solo aplicado a secciones simples sin sticky scroll ni animaciones
     continuas, para evitar side-effects. */
  .faq,
  .cta-final,
  .dark-footer {
    content-visibility: auto;
    contain-intrinsic-size: 100vh;
  }

  /* 7. NEUTRALIZAR HOVER EFFECTS (iPad no tiene cursor, solo touch).
     Los :hover quedan "pegados" en dispositivos touch al tocar, generando
     animaciones no deseadas. Forzamos que no cambien visualmente. */

  /* Arsenal pilares: sin scaleX en hover */
  .arsenal__columns:not(.has-active) .pilar:hover,
  .arsenal__columns:not(.has-active) .pilar:active,
  .arsenal__columns.has-active .pilar:not(.is-active):hover,
  .arsenal__columns.has-active .pilar:not(.is-active):active {
    transform: none !important;
    background: transparent !important;
  }
  .arsenal__columns.has-active .pilar:not(.is-active):hover .pilar__roman {
    opacity: 0.75 !important;
  }
  .arsenal__columns.has-active .pilar:not(.is-active):hover .pilar__title {
    opacity: 0.55 !important;
  }

  /* Planes: sin scale 1.15, sin grayscale de hermanas, sin micro-jump de items */
  .plan:hover .plan__inner,
  .plan--featured:hover .plan__inner {
    transform: none !important;
    box-shadow: 0 8px 24px rgba(74, 14, 44, 0.2) !important;
  }
  .plan--featured:hover .plan__inner {
    box-shadow: 0 14px 34px rgba(74, 14, 44, 0.28) !important;
  }
  .plan:hover { z-index: auto; }
  .planes__grid:hover .plan:not(:hover) .plan__inner {
    filter: none !important;
    opacity: 1 !important;
  }
  .plan:hover .plan__list li {
    transform: none !important;
    color: rgba(255, 255, 255, 0.88) !important;
  }
  .plan:hover .plan__marker-dot {
    opacity: 0.85 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }
  .plan:hover .plan__marker-arrow {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.4) !important;
  }

  /* Autoridad video: overlay no aparece en hover (solo con pause/click) */
  .autoridad__video-wrap:hover .autoridad__overlay { opacity: 0 !important; pointer-events: none !important; }
  .autoridad__video-wrap.is-paused .autoridad__overlay { opacity: 1 !important; pointer-events: auto !important; }
  .autoridad__video-wrap:hover .autoridad__mute-btn,
  .autoridad__video-wrap:hover .autoridad__fs-btn { opacity: 0 !important; }
  .autoridad__video-wrap.is-paused .autoridad__mute-btn,
  .autoridad__video-wrap.is-paused .autoridad__fs-btn { opacity: 1 !important; }

  /* Hero CTA: sin cambio de color en hover */
  .hero__cta:hover {
    background: var(--c-neon);
    color: var(--c-vino);
  }

  /* WhatsApp flotante: sin scale hover */
  .wa-floating:hover { transform: none !important; }

  /* Nav brand: sin fade hover */
  .nav__brand:hover .nav__brand-logo { opacity: 1 !important; }

  /* FAQ: sin translate del texto al hover */
  .faq-item__question:hover { color: var(--c-vino); }
  .faq-item__question:hover .faq-item__text { transform: none !important; }

  /* CTA final boton: sin scale 1.04 ni cambio de color en hover */
  .cta-final__button:hover {
    transform: none !important;
    background: var(--c-neon) !important;
    color: var(--c-vino) !important;
    box-shadow: 0 8px 24px rgba(232, 255, 0, 0.18) !important;
  }
  .cta-final__button:hover .cta-final__text--default { transform: translateY(0) !important; opacity: 1 !important; }
  .cta-final__button:hover .cta-final__text--hover { transform: translateY(100%) !important; opacity: 0 !important; }
  .cta-final__button:hover .cta-final__arrow { transform: none !important; }

  /* Plan CTA: sin cambio de colores en hover */
  .plan__cta:hover {
    background: var(--c-white);
    color: var(--c-vino);
    border-color: var(--c-white);
  }
  .plan__cta--neon:hover {
    background: var(--c-neon);
    color: var(--c-vino);
    border-color: var(--c-neon);
  }

  /* Service name hover: sin cambio de color */
  .pilar__service-name:hover { color: var(--c-vino) !important; }

  /* Drawer links: sin color change en hover */
  .nav-drawer__link:hover { color: var(--c-vino); }

  /* Side-nav shadow: no muestra hover (ya esta oculto) */
  .side-nav:hover ~ .side-nav__shadow { opacity: 0; }
}
