/* ═══════════════════════════════════════════════════
   RADIO ALFA & OMEGA — Paleta LUMINOSA / ESPIRITUAL
   Inspirada en la imagen del Aleph con luz radiante:
   • Blanco/Dorado central   → fondo, luz, espacio
   • Coral salmón suave      → acento principal
   • Rosa palo               → acento secundario
   • Teal luminoso           → detalle fresco
   • Púrpura-noche           → ancla / contraste profesional
═══════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  /* Colores del logo — versión MÁS INTENSA y vibrante */
  --coral:       #FF4D1A;        /* coral ardiente — acento principal */
  --coral-dark:  #E03000;
  --sol:         #FFCA00;        /* dorado sol brillante */
  --sol-dark:    #E8A800;
  --sol-ring:    #C8788A;        /* salmón-rosado del anillo del logo */
  --rosa:        #FF70A8;        /* rosa vibrante */
  --rosa-mid:    #E8407A;
  --teal:        #00DEC8;        /* teal neon fresco */
  --teal-dark:   #00B8A8;
  --electric:    #4A80FF;        /* azul eléctrico */
  --electric-dk: #2A5FE0;
  --electric-lt: #90B8FF;

  /* Fondos — más saturados, más cálidos */
  --crema:       #FFF0D8;        /* ámbar cálido dorado */
  --crema-mid:   #FFE2B8;        /* salmón crema */
  --crema-deep:  #FFD0A0;        /* naranja crema profundo */

  /* Ancla oscura */
  --azul:        #1C1028;
  --azul-mid:    #2E1A42;
  --azul-soft:   #4A2D6E;

  /* Texto */
  --text-main:   #1A0A20;
  --text-light:  #5A2850;
  --white:       #FFFFFF;

  /* Utilidades */
  --shadow:      0 4px 24px rgba(60,20,80,.14);
  --shadow-lg:   0 16px 48px rgba(60,20,80,.24);
  --radius:      16px;
  --radius-sm:   8px;
  --radius-pill: 50px;
  --transition:  all .3s cubic-bezier(.4,0,.2,1);

  /* Gradiente radial — más vivido, más dorado */
  --radial-glow: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(255,255,200,1) 0%,
    rgba(255,210,80,.80) 25%,
    rgba(255,140,100,.50) 55%,
    rgba(200,120,180,.25) 80%,
    transparent 100%
  );
}

/* ─── DARK MODE (versión nocturna con misma paleta) ─── */
body.dark-mode {
  --crema:       #120A1E;
  --crema-mid:   #1C1028;
  --crema-deep:  #241430;
  --text-main:   #F0E8FF;
  --text-light:  #B09ACC;
  --white:       #1C1028;
  --shadow:      0 4px 24px rgba(0,0,0,.5);
  --shadow-lg:   0 16px 60px rgba(0,0,0,.55);
}
body.dark-mode .header {
  background: rgba(18,10,30,.95);
  border-bottom-color: rgba(255,122,92,.15);
}
body.dark-mode .grilla-card,
body.dark-mode .plan-card,
body.dark-mode .product-card,
body.dark-mode .exp-card {
  background: #1C1028;
  border-color: rgba(255,181,197,.12);
}
body.dark-mode .footer { background: #0A0614; }

/* ─── Texto orbital: usa fill="currentColor" del SVG ─── */
/* Light mode: oscuro sobre fondo dorado claro */
.logo-orbit-text { color: #1C1028; }
/* Dark mode: dorado brillante sobre fondo oscuro */
body.dark-mode .logo-orbit-text { color: #FFD060; }

/* Header logo-wordmark en dark mode */
body.dark-mode .logo-text { color: #F0E8FF; }
/* .amp hereda color de .logo-text en dark mode */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Montserrat', sans-serif;
  background: var(--crema);
  color: var(--text-main);
  overflow-x: hidden;
  transition: background .4s, color .4s;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ─── TIPOGRAFÍA ─── */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--rosa));
  color: var(--azul);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}
.section-title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  background: linear-gradient(90deg, var(--coral), var(--rosa-mid), var(--electric));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }

/* ─── BOTONES ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: .12; }

.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, #FF2080 60%, var(--rosa-mid) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(255,77,26,.40);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,77,26,.60);
}

.btn-outline {
  background: transparent;
  border-color: var(--coral);
  color: var(--coral);
}
.btn-outline:hover {
  background: var(--coral);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.7);
  color: white;
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: white;
  color: var(--azul);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }

/* ── Botón YouTube ── */
.btn-youtube {
  background: #FF0000;
  color: #fff;
  border: none;
  gap: .55rem;
}
.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
  color: #fff;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  /* Crema cálido-dorado: hace que el logo dorado/rosado destaque perfectamente */
  background: rgba(250, 240, 220, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  /* Línea inferior: salmón-rosado del anillo del logo */
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, #FFCA00, #C8788A, #FF70A8, #C8788A, #FFCA00, transparent) 1;
  transition: var(--transition);
  overflow: visible;   /* texto orbital no queda cortado */
}
.header.scrolled {
  background: rgba(248, 236, 210, 0.99);
  box-shadow: 0 4px 20px rgba(180,120,80,.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 108px;  /* acomoda el logo de 100px con holgura */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  overflow: visible;   /* permite que el texto orbital sobresalga */
}

/* ─── LOGO (img o svg) ─── */
.logo-svg {
  width: 100px; height: 100px;
  flex-shrink: 0;
  border-radius: 50%;       /* recorta esquinas si el PNG tiene fondo */
  object-fit: cover;
  filter:
    drop-shadow(0 2px 8px rgba(200,120,138,.55))
    drop-shadow(0 0 18px rgba(255,202,0,.45));
  transition: filter .35s, transform .35s;
  position: relative; z-index: 1;
  display: block;
}
.logo-svg-sm { width: 80px; height: 80px; }

/* Halo brillante en hover */
.nav-logo:hover .logo-svg {
  filter:
    drop-shadow(0 0 14px rgba(255,112,168,.90))
    drop-shadow(0 0 28px rgba(255,202,0,.65))
    drop-shadow(0 0 5px rgba(0,0,0,.15));
}

/* Rotación lenta del starburst al hacer hover sobre el logo */
.logo-svg:hover g[transform="translate(50,50)"] {
  animation: spinStar 8s linear infinite;
  transform-origin: 50px 50px;
}
@keyframes spinStar {
  from { transform: translate(50px,50px) rotate(0deg) translate(-50px,-50px); }
  to   { transform: translate(50px,50px) rotate(360deg) translate(-50px,-50px); }
}

/* ─── CONTENEDOR ORBITAL ─── */
.logo-orbit-wrap {
  position: relative;
  width: 100px; height: 100px;
  flex-shrink: 0;
  /* El overflow visible permite que los anillos sobresalgan */
  overflow: visible;
}

/* ─── SVG TEXTO ORBITAL (3 anillos concéntricos) ─── */
.logo-orbit-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px; /* escalado con logo de 100px */
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
  overflow: visible;
}

/* Al hacer hover — fade in de los anillos */
.nav-logo:hover .logo-orbit-text {
  opacity: 1;
}

/* ── Los 3 anillos, cada uno gira a distinta velocidad ── */

/* Anillo exterior: lento (10s), texto grande */
.orbit-r1 {
  animation: orbitR1 10s linear infinite;
  animation-play-state: paused;
  transform-origin: 80px 80px;   /* centro del viewBox 160x160 */
}
/* Anillo medio: más rápido (6s), empieza desfasado */
.orbit-r2 {
  animation: orbitR2 6s linear infinite;
  animation-play-state: paused;
  transform-origin: 80px 80px;
}
/* Anillo interior: el más rápido (3.5s), mayor desfase */
.orbit-r3 {
  animation: orbitR3 3.5s linear infinite;
  animation-play-state: paused;
  transform-origin: 80px 80px;
}

/* Activar animaciones en hover */
.nav-logo:hover .orbit-r1,
.nav-logo:hover .orbit-r2,
.nav-logo:hover .orbit-r3 {
  animation-play-state: running;
}

/* Keyframes: cada anillo en su propia dirección/velocidad */
@keyframes orbitR1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbitR2 {
  from { transform: rotate(180deg); }
  to   { transform: rotate(540deg); }   /* mismo sentido, desfasado */
}
@keyframes orbitR3 {
  from { transform: rotate(90deg); }
  to   { transform: rotate(450deg); }   /* mismo sentido, desfasado */
}

/* ── WhatsApp FAB (Fixed Action Button) ── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 8000;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.2);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  text-decoration: none;
  /* Pulso sutil */
  animation: waPulse 3s ease infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.2);
  animation: none; /* parar pulso en hover */
}
.whatsapp-icon {
  width: 32px; height: 32px;
}
/* Tooltip que aparece al hacer hover */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1A1A2E;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all .25s ease;
  pointer-events: none;
}
.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.2); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.70), 0 0 0 8px rgba(37,211,102,.08); }
}

/* Wordmark junto al logo */
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.logo-text {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 1.45rem;
  font-weight: 700;
  font-style: italic;
  color: var(--coral);
  letter-spacing: .01em;
}
.logo-text .amp {
  /* hereda font-family, font-style, font-weight y color de .logo-text */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-link {
  padding: .45rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
}
.nav-link:hover {
  background: var(--crema-deep);
  color: var(--coral);
}

.nav-actions {
  display: flex; align-items: center; gap: .6rem; flex-shrink: 0;
}

.btn-dark-toggle {
  background: transparent;
  border: 2px solid var(--coral);
  border-radius: 50%;
  width: 38px; height: 38px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.btn-dark-toggle:hover { background: var(--coral); transform: scale(1.1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a0a28; /* fallback mientras carga la imagen */
}

.hero-video-wrap {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
/* ── Imagen de fondo interactiva (parallax con mouse) ── */
.hero-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.12);
  transform-origin: center center;
  will-change: transform;
  display: block;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* mezcla el video con el fondo luminoso */
  mix-blend-mode: multiply;
  opacity: .45;
}
/* Overlay mínimo: solo oscurece suavemente para legibilidad del texto */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.08) 50%,
    rgba(0,0,0,.22) 100%
  );
}

/* Partículas */
.particles {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0%   { transform: translateY(110vh) scale(0); opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: 90px; padding-bottom: 3rem;
}

/* ─── EN VIVO — pastilla flotante sobre el botón WhatsApp ─── */
.envivo-fab {
  position: fixed;
  bottom: calc(1.75rem + 60px + .9rem); /* justo sobre el FAB de WA */
  right: 1.75rem;
  z-index: 7999;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(10, 5, 20, 0.78);
  border: 1px solid rgba(232, 90, 0, .55);
  border-radius: 50px;
  padding: .42rem .9rem .42rem .7rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(220, 70, 0, .28), 0 0 0 1px rgba(255,120,0,.08);
  transition: box-shadow .3s ease;
  cursor: default;
  white-space: nowrap;
}
.envivo-fab:hover {
  box-shadow: 0 4px 20px rgba(220, 70, 0, .45), 0 0 0 1px rgba(255,120,0,.18);
}

/* Punto de grabación pequeño */
.envivo-dot-sm {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #E82000;
  box-shadow: 0 0 6px rgba(230,30,0,.9);
  flex-shrink: 0;
  animation: pulseSmDot 1.5s ease-in-out infinite;
}
@keyframes pulseSmDot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

/* "EN VIVO" */
.envivo-label {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #FFA020;
}

/* separador */
.envivo-sep {
  color: rgba(255,160,60,.4);
  font-size: .65rem;
}

/* horarios */
.envivo-times {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,200,100,.75);
}

/* Badge anterior del hero — ya no se usa */
.hero-badge { display: none; }
.pulse-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 0 0 rgba(255,68,68,.5);
  animation: pulseRed 1.5s infinite;
  display: inline-block;
}
@keyframes pulseRed {
  0%   { box-shadow: 0 0 0 0 rgba(255,68,68,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(255,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,68,68,0); }
}

.hero-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.2rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.7), 0 0 40px rgba(0,0,0,.4);
  letter-spacing: -.01em;
}
.hero-title .hero-sub {
  display: block;
  font-size: clamp(.75rem, 2vw, 1.1rem); /* tamaño absoluto, no relativo al h1 */
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .12em;        /* reducido para que entre en pantalla */
  text-transform: uppercase;
  margin-bottom: .5rem;
  white-space: normal;          /* permite wrap si es necesario */
  word-break: break-word;
}
.hero-title em {
  font-style: italic;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-weight: 700;
  /* Gradiente: coral → rosa → azul eléctrico — como los rayos del logo */
  background: linear-gradient(95deg,
    var(--coral) 0%,
    var(--rosa-mid) 45%,
    var(--electric) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--azul-mid);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(255,255,255,.6);
}
.hero-desc strong { color: var(--coral); }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
}

.viewer-counter {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,122,92,.25);
  color: var(--azul-mid);
  font-size: .9rem;
  padding: .55rem 1.1rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(255,122,92,.1);
}
.viewer-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
}
.scroll-arrow {
  width: 28px; height: 28px;
  border-right: 3px solid rgba(28,16,40,.4);
  border-bottom: 3px solid rgba(28,16,40,.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%       { transform: rotate(45deg) translateY(8px); opacity: .4; }
}

/* ─── GRILLA ─── */
/* Fondo: gradiente suave crema→rosa como el borde inferior de la imagen */
.grilla-section {
  background: linear-gradient(180deg, var(--crema-mid) 0%, var(--crema-deep) 100%);
}

.grilla-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grilla-card {
  background: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,122,92,.15);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(255,122,92,.06);
}
.grilla-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(255,122,92,.2), 0 0 0 1px var(--coral);
}
.grilla-card:hover .grilla-play { opacity: 1; transform: scale(1); }

.grilla-img {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative; overflow: hidden;
}
/* Efecto halo de luz en las cards de grilla */
.grilla-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.35), transparent 65%);
  pointer-events: none;
}
.grilla-live-badge {
  position: absolute; top: .6rem; right: .6rem;
  background: #ff4444; color: white;
  font-size: .7rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: var(--radius-pill);
  letter-spacing: .05em;
}
.grilla-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(28,16,40,.45);
  opacity: 0; transform: scale(1.05);
  transition: var(--transition); font-size: 2.5rem;
}

.grilla-body { padding: 1.1rem; }
.grilla-time { font-size: .78rem; font-weight: 700; color: var(--coral); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; }
.grilla-name { font-weight: 800; font-size: 1.1rem; margin-bottom: .3rem; }
.grilla-genre { font-size: .82rem; color: var(--text-light); }

/* ─── EXPERIENCIA ─── */
/* Fondo oscuro con la paleta púrpura del azul-noche */
.experiencia-section {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-mid) 100%);
  color: white;
  position: relative; overflow: hidden;
}
/* Halo de luz radial de fondo (evoca la imagen) */
.experiencia-section::before {
  content: '';
  position: absolute; top: -20%; right: -5%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,181,197,.12) 0%,
    rgba(255,122,92,.08) 40%,
    transparent 70%
  );
  pointer-events: none;
}
.experiencia-section::after {
  content: '';
  position: absolute; bottom: -15%; left: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(91,142,255,.14) 0%,   /* azul eléctrico */
    rgba(45,212,191,.06) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.experiencia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}

.experiencia-text .section-title { color: white; }
.experiencia-text .section-title em {
  background: linear-gradient(90deg, var(--sol), var(--rosa));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.experiencia-text p { color: rgba(255,255,255,.82); line-height: 1.8; margin-bottom: 1rem; }
.experiencia-text strong { color: var(--sol); }

.experiencia-icons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}

.exp-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,181,197,.15);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
/* Halo sutil en hover de los exp-cards */
.exp-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,181,197,.1), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.exp-card:hover::before { opacity: 1; }
.exp-card:hover {
  background: rgba(255,122,92,.15);
  border-color: rgba(255,181,197,.35);
  transform: translateY(-4px);
}
.exp-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.exp-card h4 { font-weight: 800; margin-bottom: .4rem; color: var(--sol); }
.exp-card p { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* Stats */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  border-top: 1px solid rgba(255,181,197,.15);
  padding-top: 2.5rem;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 3.2rem; font-weight: 700;
  /* Gradiente con azul eléctrico como toque final */
  background: linear-gradient(90deg, var(--sol), var(--rosa), var(--electric-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: .4rem;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.55); }

/* ─── MEMBRESÍAS / PUBLICIDAD ─── */
.membresias-section {
  background: linear-gradient(180deg, var(--crema) 0%, var(--crema-mid) 100%);
  position: relative; overflow: hidden;
}
/* Gran halo decorativo de fondo */
.membresias-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,181,197,.12) 0%,
    rgba(255,217,125,.08) 35%,
    rgba(91,142,255,.07) 60%,   /* azul eléctrico en el anillo exterior */
    transparent 75%
  );
  pointer-events: none;
}
/* Destello azul eléctrico en plan destacado */
.plan-featured {
  border-color: var(--coral);
  transform: scale(1.03);
  box-shadow:
    0 20px 60px rgba(255,122,92,.22),
    0 0 0 1px var(--coral),
    0 0 40px rgba(255,181,197,.25),
    0 0 80px rgba(91,142,255,.08);  /* halo azul eléctrico lejano */
}

/* ── Sección Auspiciante Principal ── */
.sponsor-section {
  background: #0a0a0a;
}
.sponsor-section .section-title,
.sponsor-section .section-tag {
  color: #fff;
}
.sponsor-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  padding: 2rem 0 1rem;
}
.sponsor-card-main {
  background: #111;
  border: 2px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  transition: transform .3s ease, box-shadow .3s ease;
  flex: 1 1 280px;
  max-width: 420px;
}
.sponsor-card-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(220,30,30,.2);
}
.sponsor-logo-main {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .sponsor-card-main { padding: 2rem; max-width: 100%; }
  .sponsor-logo-main { max-width: 240px; }
}

.planes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem; align-items: start;
  position: relative; z-index: 1;
}

.plan-card {
  background: rgba(255,255,255,.9);
  border: 2px solid rgba(255,122,92,.15);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255,122,92,.07);
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,122,92,.18);
}

/* plan-featured ahora definido arriba con azul eléctrico */
.plan-featured:hover { transform: scale(1.03) translateY(-6px); }

.plan-badge-top {
  background: linear-gradient(90deg, var(--coral), var(--rosa-mid));
  color: white;
  text-align: center; font-weight: 800; font-size: .8rem;
  letter-spacing: .06em; padding: .5rem;
}

.plan-header { padding: 1.75rem 1.75rem 1.25rem; text-align: center; }
.plan-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.plan-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.25rem; margin-bottom: .85rem; }
.plan-price { display: flex; align-items: baseline; justify-content: center; gap: .2rem; margin-bottom: .4rem; }
.plan-currency { font-size: 1.5rem; font-weight: 900; color: var(--coral); }
.plan-amount { font-size: 2rem; font-weight: 900; color: var(--text-main); }
.plan-period { font-size: .78rem; color: var(--text-light); align-self: center; }
.plan-alt { font-size: .78rem; color: var(--text-light); }

.plan-features { padding: 0 1.75rem 1.5rem; display: flex; flex-direction: column; gap: .7rem; }
.plan-features li { font-size: .9rem; line-height: 1.5; color: var(--text-main); }
.plan-features li strong { color: var(--coral); }

.plan-btn { display: block; margin: 0 1.75rem 1.75rem; text-align: center; justify-content: center; }

.planes-note {
  margin-top: 2.5rem;
  background: rgba(255,181,197,.12);
  border: 1.5px solid rgba(255,122,92,.2);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: .95rem; color: var(--text-light); line-height: 1.7;
  position: relative; z-index: 1;
}
.planes-note strong { color: var(--coral); }

/* ─── HERO: nuevo tagline "brand claim" ─── */
.hero-brand-claim {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-style: italic;
  font-weight: 600;
  color: #1A0A28;
  letter-spacing: .02em;
  margin: -.4rem 0 1.4rem;
  text-shadow: 0 1px 4px rgba(255,255,255,.4);
}
/* "Alfa & Omega" en el hero — negro, mismo tono que el resto de la línea */
.brand-name-hero {
  color: #1A0A28;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .04em;
}

/* stat-suffix (+, x, %) junto al número */
.stat-suffix {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
  margin-left: 2px;
}
/* stat que ya es texto (no se anima) */
.stat-text-val { font-size: 1.5rem; }

/* ─── SECCIÓN ¿POR QUÉ PAUTAR? ─── */
.impacto-section {
  background: linear-gradient(180deg, var(--crema) 0%, var(--crema-mid) 100%);
}

/* Grid de 4 perfiles de anunciante */
.perfiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 3.5rem;
}

.perfil-card {
  background: rgba(255,255,255,.80);
  border: 1.5px solid rgba(245,90,48,.12);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.perfil-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
  box-shadow: 0 12px 36px rgba(245,90,48,.14);
}
.perfil-icon {
  font-size: 2.2rem;
  margin-bottom: .75rem;
  display: block;
}
.perfil-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--azul);
  margin-bottom: .6rem;
}
.perfil-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.65;
}
.perfil-card p strong { color: var(--coral-dark); }

/* Franja de 3 ventajas diferenciadas */
.ventajas-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-mid) 100%);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.ventaja-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 260px;
}
.ventaja-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255,216,100,.5));
}
.ventaja-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--sol);
  margin-bottom: .3rem;
}
.ventaja-text p {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin: 0;
}

/* ─── PLAN VIP / Sponsor Oficial ─── */
.plan-vip {
  border-color: var(--sol) !important;
  background: linear-gradient(160deg, #fff8e8 0%, #fff0d8 100%);
}
.plan-badge-vip {
  background: linear-gradient(90deg, var(--sol-dark), var(--sol)) !important;
  color: var(--azul) !important;
}
.plan-convenir {
  font-size: 1.6rem !important;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: .03em;
}

/* Dark mode — nuevas secciones */
body.dark-mode .perfil-card {
  background: #1C1028;
  border-color: rgba(245,90,48,.18);
}
body.dark-mode .ventajas-strip {
  background: linear-gradient(135deg, #0D0818 0%, #1C1028 100%);
}
body.dark-mode .plan-vip {
  background: linear-gradient(160deg, #2A1E00 0%, #1E1500 100%);
}

/* ─── TIENDA ─── */
.tienda-section {
  background: linear-gradient(180deg, var(--crema-deep) 0%, var(--crema-mid) 100%);
}

.tienda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,122,92,.12);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(255,122,92,.06);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(255,122,92,.18);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.3), transparent 60%);
  pointer-events: none;
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(28,16,40,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.product-overlay span {
  background: white; color: var(--azul);
  font-weight: 700; font-size: .88rem;
  padding: .5rem 1.1rem; border-radius: var(--radius-pill);
}

.product-body { padding: 1.1rem; }
.product-name { font-weight: 800; margin-bottom: .35rem; }
.product-desc { font-size: .83rem; color: var(--text-light); margin-bottom: .85rem; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-weight: 900; color: var(--coral); font-size: 1.1rem; }
.btn-cart {
  background: linear-gradient(135deg, var(--coral), var(--rosa-mid));
  color: white; border: none; border-radius: var(--radius-pill);
  padding: .45rem 1rem; font-weight: 700; font-size: .82rem;
  cursor: pointer; transition: var(--transition);
}
.btn-cart:hover { transform: scale(1.06); box-shadow: 0 4px 14px rgba(255,122,92,.35); }

/* Cart Toast */
.cart-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--azul); color: white;
  padding: .9rem 1.8rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .95rem; z-index: 5000;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s;
  opacity: 0; box-shadow: var(--shadow-lg);
}
.cart-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cart-toast.hidden { display: none; }

/* ─── FOOTER ─── */
.footer {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-mid) 100%);
  color: rgba(255,255,255,.8);
  padding-top: 4rem;
  position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(255,181,197,.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,181,197,.12);
  position: relative; z-index: 1;
}

.footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-brand p { font-size: .9rem; line-height: 1.6; }

.social-links { display: flex; gap: .75rem; margin-top: .25rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,181,197,.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-3px); }

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
  color: white; font-weight: 800; font-size: .95rem; margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-links a:hover { color: var(--rosa); padding-left: 4px; }
.footer-contact p { font-size: .88rem; margin-bottom: .5rem; line-height: 1.5; }
.footer-contact a { color: var(--sol); }
.footer-contact a:hover { text-decoration: underline; }
.footer-newsletter p { font-size: .88rem; margin-bottom: 1rem; line-height: 1.6; }

.newsletter-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 140px;
  padding: .6rem 1rem; border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,181,197,.2);
  background: rgba(255,255,255,.08); color: white;
  font-size: .88rem; outline: none; transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--rosa); background: rgba(255,255,255,.12); }
.newsletter-msg { font-size: .85rem; color: #4ade80; margin-top: .75rem; }
.newsletter-msg.hidden { display: none; }

.footer-bottom {
  text-align: center; padding: 1.5rem 0;
  font-size: .82rem; color: rgba(255,255,255,.35);
  position: relative; z-index: 1;
}

/* ─── POPUP ─── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(28,16,40,.65);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeIn .3s ease;
}
.popup-overlay.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.popup-box {
  background: linear-gradient(160deg, #FFFCF7 0%, #FFF5EC 60%, #FFF0F5 100%);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem 2.25rem; max-width: 420px; width: 100%;
  position: relative;
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1);
  text-align: center;
  box-shadow: 0 30px 80px rgba(28,16,40,.3),
              0 0 0 1px rgba(255,122,92,.15),
              /* halo exterior del popup */
              0 0 60px rgba(255,181,197,.2);
}
@keyframes popIn {
  from { transform: scale(.85); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.popup-close {
  position: absolute; top: .8rem; right: 1rem;
  background: none; border: none; font-size: 1.6rem;
  cursor: pointer; color: var(--text-light); transition: var(--transition); line-height: 1;
}
.popup-close:hover { color: var(--coral); transform: rotate(90deg); }

.popup-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--coral), var(--rosa-mid));
  color: white; font-size: .75rem; font-weight: 800; letter-spacing: .1em;
  padding: .35rem .9rem; border-radius: var(--radius-pill); margin-bottom: 1rem;
}
.popup-title {
  font-family: 'Pacifico', cursive; font-size: 1.9rem;
  color: var(--text-main); margin-bottom: .75rem; line-height: 1.25;
}
.popup-title span { color: var(--coral); }
.popup-box p { font-size: .95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.5rem; }
.popup-box p strong { color: var(--coral); }
.popup-form { display: flex; flex-direction: column; gap: .75rem; }
.popup-form input {
  padding: .75rem 1.25rem;
  border: 2px solid rgba(255,122,92,.2); border-radius: var(--radius-pill);
  font-size: .95rem; outline: none; transition: var(--transition); width: 100%;
  background: rgba(255,255,255,.7);
}
.popup-form input:focus { border-color: var(--coral); }
.popup-skip { font-size: .8rem !important; color: var(--text-light) !important; cursor: pointer; text-decoration: underline; margin: .75rem 0 0 !important; }
.popup-skip:hover { color: var(--coral) !important; }

/* Player Modal */
.player-box {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-mid) 100%);
  border-radius: calc(var(--radius) * 1.5); padding: 2.5rem;
  max-width: 360px; width: 100%;
  position: relative; color: white; text-align: center;
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 30px 80px rgba(0,0,0,.4),
              0 0 40px rgba(255,181,197,.1);
}
.player-inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.player-visualizer { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.bar {
  width: 6px;
  /* Barras con gradiente coral → eléctrico, como los rayos del logo */
  background: linear-gradient(to top, var(--coral), var(--rosa), var(--electric));
  border-radius: 3px;
  animation: barDance .8s ease-in-out infinite alternate;
}
.bar:nth-child(1) { animation-delay: 0s;   --h: 30%; }
.bar:nth-child(2) { animation-delay: .1s;  --h: 60%; }
.bar:nth-child(3) { animation-delay: .2s;  --h: 80%; }
.bar:nth-child(4) { animation-delay: .15s; --h: 100%; }
.bar:nth-child(5) { animation-delay: .05s; --h: 70%; }
.bar:nth-child(6) { animation-delay: .25s; --h: 50%; }
.bar:nth-child(7) { animation-delay: .1s;  --h: 90%; }
.bar:nth-child(8) { animation-delay: .2s;  --h: 40%; }
.bar:nth-child(9) { animation-delay: .3s;  --h: 65%; }
@keyframes barDance {
  from { height: var(--h, 30%); }
  to   { height: calc(var(--h, 30%) * .3); }
}
.player-live { font-size: .8rem; font-weight: 700; color: #ff4444; letter-spacing: .08em; }
.player-info h3 { font-size: 1.4rem; font-weight: 800; margin: .25rem 0 .2rem; }
.player-info p { font-size: .88rem; color: rgba(255,255,255,.6); }
.play-btn {
  background: linear-gradient(135deg, var(--coral), var(--rosa-mid));
  color: white; border: none; padding: .8rem 2rem;
  border-radius: var(--radius-pill); font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: var(--transition);
}
.play-btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(255,122,92,.35); }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .experiencia-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .planes-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-featured { transform: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--crema); flex-direction: column; gap: 0;
    padding: 1rem 0 1.5rem; box-shadow: var(--shadow);
    transform: translateY(-110%); transition: transform .35s ease;
    z-index: 999; border-bottom: 2px solid var(--coral);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: .8rem 1.5rem; border-radius: 0; }
  .nav-toggle { display: flex; }
  .nav-actions { display: none; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .experiencia-icons { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .grilla-grid { grid-template-columns: 1fr; }
  .tienda-grid { grid-template-columns: repeat(2, 1fr); }
}
