@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --white:   #ffffff;
  --black:   #0a0a0a;
  --ink:     #111111;
  --muted:   rgba(255,255,255,0.52);
  --muted-d: rgba(0,0,0,0.45);
  --line:    rgba(255,255,255,0.13);
  --line-d:  rgba(0,0,0,0.10);
  --accent:  #00e5ff;
  --yellow:  #ffe500;
  --pink:    #ff2fce;

  /* Porsche-style neutrals */
  --bg: radial-gradient(circle at top left, rgba(0,255,255,.08), transparent 40%),
        radial-gradient(circle at bottom right, rgba(120,0,255,.10), transparent 40%),
        #050505;
  --bg-solid: #050505;
  --bg-lt:   #f4f3ef;
  --panel:   #141414;
  --mid:     #1e1e1e;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at top left, rgba(0,255,255,.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(120,0,255,.10), transparent 40%),
    #050505;
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; color: inherit; background: none; border: none; }
img { display: block; }

/* ─────────────────────────────────────────
   TOPBAR  (Porsche-style fixed minimal)
───────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px,5vw,72px);
  height: 72px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 400ms ease, border-color 400ms ease, height 400ms ease;
}

.topbar.scrolled {
  height: 64px;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: rgba(255,255,255,0.07);
}

.topbar.light {
  background: rgba(242,241,237,0.94);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: rgba(0,0,0,0.07);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 clamp(10px,2vw,32px);
}

.brand-logo {
  height: 58px;
  width: auto;
  display: block;
  transition: filter 400ms ease, transform 350ms cubic-bezier(.16,1,.3,1);
  filter: brightness(10) drop-shadow(0 0 8px rgba(0,229,255,0.0));
}

@media (max-width: 768px) {
  .topbar {
    height: 54px;
    padding: 0 16px;
  }
  .topbar.scrolled {
    height: 48px;
  }
  .brand-logo {
    height: 36px;
  }
  .brand {
    margin: 0 8px;
  }
  nav {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }
  .nav-cta {
    display: none;
  }
}

.brand:hover .brand-logo {
  transform: scale(1.08);
  filter: brightness(10) drop-shadow(0 0 12px rgba(0,229,255,0.55));
}

.topbar.light .brand-logo {
  filter: brightness(10) drop-shadow(0 0 8px rgba(0,229,255,0.0));
}

.topbar.light .brand:hover .brand-logo {
  filter: brightness(10) drop-shadow(0 0 12px rgba(0,229,255,0.55));
}

/* ── NAV — centrado con logo en medio ── */
nav {
  display: flex;
  align-items: center;
  gap: clamp(20px,3vw,44px);
  width: 100%;
  justify-content: center;
}

.nav-link {
  position: relative;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: color 280ms ease, opacity 280ms ease, letter-spacing 280ms ease;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  width: 0; height: 1px;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  transform: translateX(-50%);
  transition: width 320ms cubic-bezier(.16,1,.3,1);
}

.nav-link:hover {
  color: var(--accent);
  letter-spacing: 0.26em;
}
.nav-link:hover::after { width: 100%; }

.topbar.light .nav-link { color: rgba(255,255,255,0.55); }
.topbar.light .nav-link:hover { color: var(--accent); }

/* ── CTA BUTTON ── */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.35);
  color: var(--accent);
  transition: background 220ms, border-color 220ms, color 220ms, transform 150ms;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
}

.topbar.light .nav-cta {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.22);
  color: var(--ink);
}

.topbar.light .nav-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* ─────────────────────────────────────────
   HERO — SCRUB SCENE  (original kept)
───────────────────────────────────────── */
.scrub-scene {
  position: relative;
  height: 430vh;
  background: #06010f;
  z-index: 1;
}

.sticky-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

#kidzone-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #06010f;
}

.sticky-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 34%, rgba(6,3,20,.18) 57%, rgba(6,3,20,.72) 100%),
    linear-gradient(180deg, rgba(5,2,20,.3), transparent 34%, rgba(5,2,20,.6));
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: clamp(40px,7vw,100px);
  bottom: clamp(80px,14vh,160px);
  width: min(660px, calc(100vw - 40px));
  opacity: var(--copy-opacity,1);
  transform: translateY(var(--copy-y,0));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem,14vw,14rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.scroll-hint {
  position: absolute;
  right: clamp(20px,5vw,72px);
  bottom: clamp(24px,5vh,52px);
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: var(--hint-opacity,1);
}

.scroll-hint span {
  width: 20px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  position: relative;
}

.scroll-hint span::before {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  animation: wheel 1.6s ease-in-out infinite;
}

/* ─────────────────────────────────────────
   WELCOME OVERLAY — sobre el mundo virtual
───────────────────────────────────────── */
.welcome-overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: var(--welcome-opacity, 0);
  transition: opacity 100ms;
  pointer-events: none;
}

.welcome-text {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem,10vw,12rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.welcome-text em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 60px rgba(0,229,255,0.5);
}

/* ─────────────────────────────────────────
   CAROUSEL
───────────────────────────────────────── */
.carousel-section {
  position: relative;
  z-index: 2;
  background: transparent;
  overflow: hidden;
  padding: clamp(100px,12vw,160px) 0 clamp(80px,10vw,140px);
  overflow: hidden;
}

.carousel-header {
  position: relative;
  padding: 0 clamp(20px,5vw,72px);
  margin-bottom: 52px;
  overflow: hidden;
}

/* Glow radial detrás del texto */
.carousel-header::before {
  content: '';
  position: absolute;
  top: 50%; left: clamp(20px,5vw,72px);
  transform: translate(-10%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.1) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.carousel-header .section-label,
.carousel-header h2,
.carousel-header .carousel-sub {
  position: relative;
  z-index: 1;
}

.carousel-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,5vw,6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  /* Glow sutil en el texto */
  text-shadow: 0 0 80px rgba(0,229,255,0.2);
}

.carousel-sub {
  margin-top: 16px;
  max-width: 480px;
  font-size: clamp(0.95rem,1.4vw,1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  letter-spacing: 0.02em;
}

/* Canvas de partículas */
.header-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 40px clamp(20px,5vw,72px) 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.grabbing { cursor: grabbing; }

.carousel-track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px clamp(20px,5vw,72px) 60px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.grabbing { cursor: grabbing; }

/* Carta base — pequeña y oscura */
.carousel-card {
  position: relative;
  flex-shrink: 0;
  width: clamp(160px, 18vw, 240px);
  height: clamp(260px, 36vw, 380px);
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: center;
  background: #111;
  cursor: pointer;
  transition: width 500ms cubic-bezier(.16,1,.3,1),
              height 500ms cubic-bezier(.16,1,.3,1),
              filter 450ms ease,
              box-shadow 450ms ease;
  filter: brightness(0.38) saturate(0.4) blur(0.5px);
}

/* Carta central / activa — GRANDE y brillante */
.carousel-card.active {
  width: clamp(320px, 42vw, 580px);
  height: clamp(420px, 58vw, 680px);
  filter: brightness(1) saturate(1.15) blur(0px);
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.2),
    0 0 60px rgba(0,229,255,0.15),
    0 40px 100px rgba(0,0,0,0.7);
  z-index: 3;
}

/* Vecinos inmediatos — tamaño medio */
.carousel-card.near {
  width: clamp(220px, 26vw, 340px);
  height: clamp(320px, 44vw, 500px);
  filter: brightness(0.62) saturate(0.7) blur(0px);
  z-index: 2;
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}

/* Hover sobre la carta activa — efecto premium */
.carousel-card.active:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.35),
    0 0 40px rgba(0,229,255,0.2),
    0 0 80px rgba(0,229,255,0.1),
    0 50px 120px rgba(0,0,0,0.75);
  transition: transform 400ms cubic-bezier(.16,1,.3,1),
              box-shadow 400ms ease;
}

.carousel-card.active:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.2);
}

/* Hover sobre cartas secundarias — invitación a hacer clic */
.carousel-card:not(.active):hover {
  filter: brightness(0.75) saturate(0.85);
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0,229,255,0.08);
  transition: all 350ms ease;
}

/* ── OVERLAY DE IDENTIDAD — aplica a carrusel y galería ── */
.carousel-card::after,
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.1));
  pointer-events: none;
  z-index: 1;
}

/* Línea neon en la base de cada imagen */
.carousel-card::before,
.gallery-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px rgba(0,229,255,0.6);
  z-index: 3;
  opacity: 0;
  transition: opacity 300ms ease;
}

.carousel-card.active::before,
.carousel-card:hover::before,
.gallery-item:hover::before {
  opacity: 1;
}

/* Logo gorila como marca de agua */
.carousel-card .brand-watermark,
.gallery-item .brand-watermark {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: url('assets/logo-movible.png') center/contain no-repeat;
  opacity: 0.12;
  z-index: 2;
  pointer-events: none;
  filter: invert(1) brightness(2);
  transition: opacity 300ms ease;
}

.carousel-card.active .brand-watermark,
.carousel-card:hover .brand-watermark,
.gallery-item:hover .brand-watermark {
  opacity: 0.28;
}

/* ── MICROLABEL encima de cada card ── */
.card-microlabel {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0,229,255,0.7);
  padding: 5px 10px;
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 2px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 350ms ease, transform 350ms ease;
  pointer-events: none;
}

.carousel-card.active .card-microlabel,
.carousel-card:hover .card-microlabel {
  opacity: 1;
  transform: translateY(0);
}

/* Caption siempre encima del overlay */
.card-caption { z-index: 3; }
.gal-label    { z-index: 3; }
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 24px 26px;
  background: linear-gradient(transparent, rgba(3,1,12,0.92));
  font-family: var(--font-display);
  font-size: clamp(1.4rem,2.5vw,2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 380ms ease, transform 380ms ease;
}

.carousel-card.active .card-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 300ms, width 300ms;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0,229,255,0.5);
}
───────────────────────────────────────── */
.fullbleed {
  position: relative;
  z-index: 2;
  width: 100%;
  height: clamp(420px,70vh,800px);
  overflow: hidden;
}

.fullbleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.fullbleed:hover img { transform: scale(1.035); }

.fullbleed-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(28px,5vw,64px);
  background: linear-gradient(transparent, rgba(5,2,15,0.6));
}

.fullbleed-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

/* ─────────────────────────────────────────
   FLOATING WORLDS — cinematográfico
───────────────────────────────────────── */
.float-section {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  
}

/* ── Nebulosa + estrellas de fondo ── */
.float-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(0,180,255,0.07), transparent),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(120,0,255,0.09), transparent),
    radial-gradient(ellipse 40% 60% at 55% 20%, rgba(0,229,255,0.05), transparent),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(180,0,255,0.06), transparent);
  pointer-events: none;
  animation: nebula-shift 12s ease-in-out infinite alternate;
}

@keyframes nebula-shift {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.04); }
}

.float-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.float-header {
  position: relative;
  z-index: 2;
  padding: clamp(80px,10vw,140px) clamp(20px,5vw,72px) 0;
}

.float-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,5vw,6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  text-shadow: 0 0 60px rgba(0,229,255,0.15);
}

.float-stage {
  position: relative;
  flex: 1;
  min-height: 520px;
  margin: 40px 0 80px;
  /* Sin z-index fijo para no crear stacking context que bloquee previews */
}

.float-word {
  position: absolute;
  cursor: pointer;
  transition: z-index 0ms;
}

.float-word:hover { z-index: 10; }

/* Halo expansivo al hover */
.float-word::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 320px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,229,255,0.16), transparent 70%);
  filter: blur(22px);
  opacity: 0;
  transition: opacity 450ms ease, transform 550ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  z-index: -1;
}

.float-word:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

/* Línea neon debajo del título */
.float-word::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(0,229,255,0));
  box-shadow: 0 0 8px var(--accent);
  transition: width 450ms cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}

.float-word:hover::after { width: 100%; }

.fw-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0,229,255,0.6);
  margin-bottom: 4px;
  opacity: 0.6;
  transition: opacity 300ms;
}

.fw-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.92;
  color: rgba(255,255,255,0.85);
  transition: color 300ms ease,
              text-shadow 300ms ease,
              transform 400ms cubic-bezier(.16,1,.3,1);
  text-shadow: 0 0 40px rgba(255,255,255,0.04);
}

.float-word:hover .fw-label { opacity: 1; }

/* ── Capas de profundidad ── */
.float-word[data-depth="0.6"] { z-index: 1; }
.float-word[data-depth="0.7"] { z-index: 2; }
.float-word[data-depth="1.0"] { z-index: 3; }
.float-word[data-depth="1.2"] { z-index: 4; }
.float-word[data-depth="1.4"] { z-index: 5; }

.float-word[data-depth="0.6"] .fw-title {
  opacity: 0.35; filter: blur(1.2px); transform: scale(0.8); transform-origin: left center;
}
.float-word[data-depth="0.7"] .fw-title {
  opacity: 0.52; filter: blur(0.6px); transform: scale(0.88); transform-origin: left center;
}
.float-word[data-depth="1.0"] .fw-title {
  opacity: 0.78; filter: blur(0px); transform: scale(1);
}
.float-word[data-depth="1.2"] .fw-title {
  opacity: 0.92; filter: blur(0px); transform: scale(1.08); transform-origin: left center;
}
.float-word[data-depth="1.4"] .fw-title {
  opacity: 1; filter: blur(0px); transform: scale(1.18); transform-origin: left center;
}

.float-word[data-depth="0.6"] .fw-label,
.float-word[data-depth="0.7"] .fw-label { opacity: 0.25; }

.float-word:hover .fw-title {
  color: var(--accent);
  text-shadow:
    0 0 20px rgba(0,229,255,0.6),
    0 0 60px rgba(0,229,255,0.25),
    0 0 120px rgba(0,229,255,0.1);
  transform: scale(1.06) !important;
  opacity: 1 !important;
  filter: blur(0px) !important;
}

.float-word:hover { z-index: 10; }

/* Cuando el modal está abierto, bajar todas las palabras flotantes */
body.modal-open .float-word {
  z-index: 1 !important;
}
body.modal-open .float-section {
  z-index: 1;
}

.fw-preview {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -90%) scale(0.85) rotateX(10deg);
  width: clamp(180px, 24vw, 300px);
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.25),
    0 0 40px rgba(0,229,255,0.2),
    0 0 80px rgba(0,229,255,0.08),
    0 30px 80px rgba(0,0,0,0.8);
  perspective: 800px;
  isolation: isolate;
}

/* Scanlines sobre imagen */
.fw-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 3px,
    rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Línea neon top de la preview */
.fw-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px var(--accent);
  z-index: 3;
}

.fw-preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.16,1,.3,1), filter 400ms ease;
  filter: saturate(1.1) brightness(0.9);
}

@keyframes glitch-reveal {
  0%   { clip-path: inset(100% 0 0 0); transform: translate(-50%, -108%) scale(1) skewX(3deg); opacity:0.6; }
  40%  { clip-path: inset(50% 0 0 0);  transform: translate(-50%, -108%) scale(1) skewX(-1deg); opacity:0.9; }
  100% { clip-path: inset(0% 0 0 0);   transform: translate(-50%, -108%) scale(1) skewX(0deg); opacity:1; }
}

.float-word:hover .fw-preview {
  animation: glitch-reveal 380ms cubic-bezier(.16,1,.3,1) forwards;
}

.float-word:hover .fw-preview img {
  transform: scale(1.06);
  filter: saturate(1.25) brightness(1.05);
}

/* ─────────────────────────────────────────
   CATALOG — ALBUM CARDS
───────────────────────────────────────── */
.catalog {
  position: relative;
  z-index: 2;
  background: transparent;
  padding: clamp(80px,10vw,160px) clamp(20px,5vw,72px);
  
  overflow: hidden;
}

/* Ruido de fondo sutil */
.catalog::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 0;
}

/* Glow ambiental que respira */
.catalog::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(0,229,255,0.05), transparent),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(180,0,255,0.05), transparent);
  pointer-events: none;
  z-index: 0;
  animation: catalog-breathe 8s ease-in-out infinite alternate;
}

@keyframes catalog-breathe {
  0%   { opacity: 0.6; }
  100% { opacity: 1; }
}

.catalog-header,
.album-grid { position: relative; z-index: 1; }

.catalog-header {
  margin-bottom: 40px;
}

.catalog-header .section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.catalog-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem,5vw,6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

/* Album grid — 4 cards */
.album-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  height: clamp(500px, 70vh, 780px);
}

/* ── PROFUNDIDAD — cada card en su propio plano ── */

/* Card 1 — al frente, protagonista */
.album-card:nth-child(1) {
  transform: scale(1) translateZ(0);
  z-index: 5;
  filter: brightness(1) saturate(1.1);
}

/* Card 2 */
.album-card:nth-child(2) {
  transform: scale(0.97) translateY(8px);
  z-index: 4;
  filter: brightness(0.88) saturate(0.95);
}

/* Card 3 */
.album-card:nth-child(3) {
  transform: scale(0.94) translateY(14px);
  z-index: 3;
  filter: brightness(0.75) saturate(0.8) blur(0.4px);
}

/* Card 4 */
.album-card:nth-child(4) {
  transform: scale(0.91) translateY(20px);
  z-index: 2;
  filter: brightness(0.62) saturate(0.65) blur(0.8px);
}

/* Card 5 */
.album-card:nth-child(5) {
  transform: scale(0.88) translateY(26px);
  z-index: 1;
  filter: brightness(0.52) saturate(0.55) blur(1px);
}

/* Overlays */
.album-card:nth-child(1) .album-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.08) 40%, transparent 100%);
}
.album-card:nth-child(2) .album-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.05) 100%);
}
.album-card:nth-child(3) .album-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.10) 100%);
}
.album-card:nth-child(4) .album-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.18) 100%);
}
.album-card:nth-child(5) .album-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.22) 100%);
}

/* Hover */
.album-card:nth-child(1):hover,
.album-card:nth-child(2):hover,
.album-card:nth-child(3):hover,
.album-card:nth-child(4):hover,
.album-card:nth-child(5):hover {
  transform: translateY(-8px) scale(1.02);
  filter: brightness(1.05) saturate(1.2) blur(0px);
  z-index: 10;
}

.album-card:nth-child(1):hover {
  box-shadow: 0 0 0 1px rgba(0,229,255,0.3), 0 0 50px rgba(0,229,255,0.18), 0 24px 60px rgba(0,0,0,0.6);
}
.album-card:nth-child(2):hover {
  box-shadow: 0 0 0 1px rgba(180,0,255,0.3), 0 0 50px rgba(180,0,255,0.16), 0 24px 60px rgba(0,0,0,0.6);
}
.album-card:nth-child(3):hover {
  box-shadow: 0 0 0 1px rgba(0,229,180,0.3), 0 0 50px rgba(0,229,180,0.16), 0 24px 60px rgba(0,0,0,0.6);
}
.album-card:nth-child(4):hover {
  box-shadow: 0 0 0 1px rgba(255,140,0,0.3), 0 0 50px rgba(255,140,0,0.14), 0 24px 60px rgba(0,0,0,0.6);
}
.album-card:nth-child(5):hover {
  box-shadow: 0 0 0 1px rgba(255,50,100,0.3), 0 0 50px rgba(255,50,100,0.14), 0 24px 60px rgba(0,0,0,0.6);
}

/* Imagen — zoom suave en hover */
.album-card:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.2);
}

/* Overlay — más oscuro en hover para que el texto resalte */
.album-card:hover .album-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.6) 45%,
    rgba(0,0,0,0.15) 100%
  ) !important;
}

/* Texto — reveal dramático en hover */
.album-card:hover .album-label { opacity: 1; }

.album-card:hover .album-title {
  text-shadow:
    0 0 30px rgba(255,255,255,0.25),
    0 2px 0 rgba(0,0,0,0.5);
  letter-spacing: 0.06em;
}

.album-card:hover .album-desc {
  opacity: 1;
  max-height: 80px;
  margin-top: 10px;
}

.album-card:hover .album-meta {
  opacity: 1;
  max-height: 60px;
  margin-top: 14px;
}

.album-card:hover .album-cta {
  opacity: 1;
  max-height: 52px;
  margin-top: 14px;
}

/* Neon line — aparece al hover */
.album-card:hover::after { opacity: 1; }

/* Transición suave en todas */
.album-card {
  transition: transform 500ms cubic-bezier(.16,1,.3,1),
              filter 450ms ease,
              box-shadow 450ms ease,
              z-index 0ms;
}

.album-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

.album-card img:not(.album-fallback) {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.16,1,.3,1), filter 400ms ease;
  filter: brightness(0.45) saturate(0.6);
}

.album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.4) 40%,
    transparent 100%
  );
  transition: background 400ms ease;
}

/* ── Estado normal — solo label + título ── */
.album-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0,229,255,0.6);
  margin-bottom: 8px;
  opacity: 0.7;
  transition: opacity 300ms;
}

.album-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  transition: text-shadow 300ms ease;
}

/* ── Ocultos por defecto — aparecen en hover ── */
.album-desc,
.album-meta,
.album-cta {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 380ms ease, max-height 400ms ease, margin 300ms ease;
}

/* ── Overlay base — solo gradiente sutil abajo ── */
.album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.08) 35%,
    transparent 100%
  );
  transition: background 400ms ease;
}

/* ── HOVER — todo se revela ── */
.album-card:hover .album-overlay,
.album-card.active .album-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

.album-card:hover .album-label,
.album-card.active .album-label { opacity: 1; }

.album-card:hover .album-title,
.album-card.active .album-title {
  text-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.album-card:hover .album-desc,
.album-card.active .album-desc {
  opacity: 1;
  max-height: 80px;
  margin-top: 10px;
}

.album-card:hover .album-meta,
.album-card.active .album-meta {
  opacity: 1;
  max-height: 60px;
  margin-top: 14px;
}

.album-card:hover .album-cta,
.album-card.active .album-cta {
  opacity: 1;
  max-height: 52px;
  margin-top: 14px;
}

.album-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0,229,255,0.6);
  margin-bottom: 8px;
  opacity: 0.7;
  transition: opacity 300ms;
}

.album-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  transition: text-shadow 300ms ease, letter-spacing 300ms ease;
}

.album-desc {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.album-price {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.album-dur {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.album-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 2px;
  background: rgba(0,229,255,0.15);
  border: 1px solid rgba(0,229,255,0.35);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 200ms, color 200ms, transform 150ms;
}

.album-cta:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── Frame scrubbing ── */
.frame-scrub {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.scrub-frame {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 120ms ease;
  filter: brightness(0.45) saturate(0.6);
}

.scrub-frame.active { opacity: 1; }

.album-card:hover .scrub-frame,
.album-card.active .scrub-frame {
  filter: brightness(1) saturate(1.15);
}

/* Neon line bottom */
.album-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 12px var(--accent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.album-card:hover::after,
.album-card.active::after { opacity: 1; }

/* Responsive */
@media (max-width: 900px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .album-card { min-height: 320px; }
}

@media (max-width: 540px) {
  .album-grid { grid-template-columns: 1fr; }
  .album-card { min-height: 280px; }
}

/* ─────────────────────────────────────────
   EDITORIAL — Porsche style
───────────────────────────────────────── */
.editorial {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  
}

/* ── IZQUIERDA ── */
.editorial-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px,10vw,140px) clamp(40px,7vw,100px);
  background: transparent;
  position: relative;
  z-index: 2;
}

.editorial-left .section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.editorial-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem,6vw,7.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  margin: 0 0 24px;
}

.editorial-sub {
  font-size: clamp(0.9rem,1.3vw,1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 56px;
}

/* Nav items */
.editorial-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  
}

.ed-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border: none;
  
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: padding-left 350ms cubic-bezier(.16,1,.3,1);
  position: relative;
}

/* Línea cyan — desliza, crece y pulsa */
.ed-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  width: 2px;
  height: 0%;
  transform: translateY(-50%);
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    transparent
  );
  box-shadow:
    0 0 8px var(--accent),
    0 0 20px rgba(0,229,255,0.4);
  opacity: 0;
  transition:
    height 400ms cubic-bezier(.16,1,.3,1),
    opacity 300ms ease;
}

.ed-item.active::before {
  opacity: 1;
  height: 70%;
  animation: line-pulse 2.5s ease-in-out infinite;
}

.ed-item:hover::before {
  opacity: 0.7;
  height: 40%;
}

@keyframes line-pulse {
  0%, 100% {
    box-shadow: 0 0 8px var(--accent), 0 0 20px rgba(0,229,255,0.3);
    height: 70%;
  }
  50% {
    box-shadow: 0 0 16px var(--accent), 0 0 40px rgba(0,229,255,0.6);
    height: 85%;
  }
}

.ed-item.active,
.ed-item:hover { padding-left: 12px; }

.ed-num {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  transition: color 300ms;
  min-width: 28px;
}

.ed-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem,2.2vw,2.2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  flex: 1;
  transition: color 300ms, text-shadow 300ms;
}

.ed-tag {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-style: italic;
  color: rgba(255,255,255,0.16);
  transition: color 400ms ease, letter-spacing 400ms ease;
}

/* Estado activo / hover */
.ed-item.active .ed-num,
.ed-item:hover .ed-num { color: var(--accent); }

.ed-item.active .ed-name,
.ed-item:hover .ed-name {
  color: var(--white);
  text-shadow: 0 0 30px rgba(255,255,255,0.15);
}

.ed-item.active .ed-tag,
.ed-item:hover .ed-tag {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.44em;
}

/* ── DERECHA — imagen gigante ── */
.editorial-right {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,180,255,0.08), transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 80%, rgba(120,0,255,0.07), transparent 55%),
    #050505;
}

/* Glow que respira detrás de la imagen */
.editorial-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 55% 45%, rgba(0,229,255,0.06), transparent);
  pointer-events: none;
  z-index: 1;
  animation: editorial-breathe 6s ease-in-out infinite alternate;
}

@keyframes editorial-breathe {
  0%   { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.08); }
}

.ed-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 700ms cubic-bezier(.16,1,.3,1),
    filter 700ms cubic-bezier(.16,1,.3,1),
    transform 700ms cubic-bezier(.16,1,.3,1);
  filter: blur(8px) brightness(0.6);
  transform: scale(1.06);
}

.ed-image.active {
  opacity: 1;
  filter: blur(0px) brightness(0.9);
  transform: scale(1);
}

/* Imagen interna — zoom suave propio */
.ed-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12) translateX(5%);
  transition: transform 900ms cubic-bezier(.16,1,.3,1),
              filter 700ms ease;
  filter: brightness(0.8) saturate(1.1);
  will-change: transform;
}

.ed-image.active img {
  transform: scale(1.08) translateX(0%);
  filter: brightness(0.88) saturate(1.15);
  animation: ken-burns 12s ease-in-out infinite alternate;
}

@keyframes ken-burns {
  0%   { transform: scale(1.08) translate(0%,   0%);   }
  25%  { transform: scale(1.10) translate(-1%,  0.5%); }
  50%  { transform: scale(1.06) translate(-0.5%, 1%); }
  75%  { transform: scale(1.09) translate(0.5%, 0.5%); }
  100% { transform: scale(1.07) translate(1%,   -0.5%); }
}

/* Color overlays por categoría */
.ed-color-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.futbolito-overlay {
  background: linear-gradient(
    135deg,
    rgba(0,180,80,0.12) 0%,
    transparent 60%
  );
}

.torres-overlay {
  background: linear-gradient(
    135deg,
    rgba(0,100,255,0.14) 0%,
    rgba(120,0,255,0.08) 60%,
    transparent 100%
  );
}

.snack-overlay {
  background: linear-gradient(
    135deg,
    rgba(255,140,0,0.14) 0%,
    rgba(255,60,0,0.08) 60%,
    transparent 100%
  );
}

.simuladores-overlay {
  background: linear-gradient(
    135deg,
    rgba(0,100,255,0.16) 0%,
    rgba(0,229,255,0.08) 60%,
    transparent 100%
  );
}

/* Gradiente que conecta imagen con texto */
.editorial-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 200px;
  background: linear-gradient(to right, #050505, transparent);
  z-index: 2;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .editorial-right {
    height: 50vh;
    position: relative;
  }
  .ed-image { position: absolute; }
}

/* ─────────────────────────────────────────
   CONTACT CTA — teléfono interactivo
───────────────────────────────────────── */
.contact-cta {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  
}

.contact-canvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.contact-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60vh;
}

/* ── TELÉFONO ── */
.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transition: opacity 500ms ease, transform 600ms cubic-bezier(.16,1,.3,1), filter 500ms ease;
  cursor: pointer;
}

.contact-stage.revealed .phone-wrap {
  opacity: 0;
  transform: scale(0.82) translateY(-30px);
  filter: blur(8px);
  pointer-events: none;
  position: absolute;
}

/* Glow pulsante — respira lento */
.phone-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.22), transparent 65%);
  filter: blur(35px);
  animation: phone-glow-breathe 3s ease-in-out infinite;
  pointer-events: none;
  transition: width 500ms ease, height 500ms ease;
}

@keyframes phone-glow-breathe {
  0%, 100% { opacity: 0.45; transform: scale(0.9); }
  50%       { opacity: 1;    transform: scale(1.25); }
}

/* Glow expande al hover sobre el teléfono */
.phone-wrap:hover .phone-glow {
  width: 350px; height: 350px;
  animation: phone-glow-hover 1.5s ease-in-out infinite;
}

@keyframes phone-glow-hover {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

/* Cuerpo del teléfono */
.phone-body {
  width: 82px;
  height: 144px;
  border-radius: 18px;
  border: 1.5px solid rgba(0,229,255,0.4);
  background: rgba(0,8,20,0.85);
  backdrop-filter: blur(14px);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.08),
    0 0 24px rgba(0,229,255,0.18),
    0 0 60px rgba(0,229,255,0.06),
    inset 0 0 20px rgba(0,229,255,0.04);
  animation: phone-vibrate 3.5s ease-in-out infinite;
  transition: box-shadow 400ms ease, transform 300ms ease;
}

.phone-wrap:hover .phone-body {
  box-shadow:
    0 0 0 2px rgba(0,229,255,0.3),
    0 0 40px rgba(0,229,255,0.3),
    0 0 80px rgba(0,229,255,0.12),
    inset 0 0 30px rgba(0,229,255,0.08);
}

/* Vibración elegante — micro, cada 3.5s */
@keyframes phone-vibrate {
  0%, 75%, 100% { transform: rotate(0deg) translateX(0px); }
  77%  { transform: rotate(-1deg) translateX(-1px); }
  79%  { transform: rotate(1deg)  translateX(1px); }
  81%  { transform: rotate(-0.8deg) translateX(-1px); }
  83%  { transform: rotate(0.5deg) translateX(0.5px); }
  85%  { transform: rotate(0deg) translateX(0px); }
}

.phone-screen {
  position: absolute;
  inset: 5px;
  border-radius: 13px;
  background: linear-gradient(160deg, rgba(0,15,35,0.95), rgba(0,5,20,0.98));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}

/* Scanline sutil en la pantalla */
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,229,255,0.025) 3px, rgba(0,229,255,0.025) 4px
  );
  pointer-events: none;
}

.phone-notch {
  width: 22px; height: 3px;
  background: rgba(0,229,255,0.35);
  border-radius: 999px;
  position: absolute;
  top: 7px;
  box-shadow: 0 0 6px rgba(0,229,255,0.5);
}

.phone-ring-icon {
  font-size: 1.5rem;
  position: relative; z-index: 1;
  animation: ring-icon 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(0,229,255,0.4));
}

@keyframes ring-icon {
  0%, 74%, 100% { transform: scale(1) rotate(0deg); }
  77%  { transform: scale(1.1) rotate(-8deg); }
  80%  { transform: scale(1.1) rotate(8deg); }
  83%  { transform: scale(1.05) rotate(-4deg); }
  86%  { transform: scale(1) rotate(0deg); }
}

.phone-hint {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
  margin: 0;
  transition: opacity 300ms;
}

.phone-wrap:hover .phone-hint { opacity: 0.8; }

.phone-hint span {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── TARJETA — morph desde el teléfono ── */
.contact-card {
  position: absolute;
  width: min(440px, calc(100vw - 48px));
  padding: clamp(36px,5vw,52px) clamp(28px,5vw,48px);
  border-radius: 24px;
  background: rgba(4,3,14,0.72);
  border: 1px solid rgba(0,229,255,0.12);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.06),
    0 0 80px rgba(0,180,255,0.14),
    0 0 160px rgba(100,0,255,0.08),
    0 40px 100px rgba(0,0,0,0.55);
  opacity: 0;
  transform: scale(0.7) translateY(30px);
  filter: blur(12px);
  pointer-events: none;
  transition:
    opacity 550ms cubic-bezier(.16,1,.3,1),
    transform 600ms cubic-bezier(.16,1,.3,1),
    filter 500ms cubic-bezier(.16,1,.3,1);
  text-align: center;
}

.contact-stage.revealed .contact-card {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0px);
  pointer-events: all;
}

.contact-card-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0,229,255,0.5);
  margin: 0 0 16px;
  opacity: 0.8;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,4vw,3.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin: 0 0 14px;
}

.contact-card-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  margin: 0 0 32px;
  letter-spacing: 0.04em;
}

.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: background 250ms, border-color 250ms, color 250ms, transform 200ms;
}

.contact-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  transform: translateX(4px);
}

.contact-btn.whatsapp:hover {
  border-color: rgba(37,211,102,0.4);
  background: rgba(37,211,102,0.08);
}

.contact-btn.instagram:hover {
  border-color: rgba(225,48,108,0.4);
  background: rgba(225,48,108,0.08);
}

.contact-btn.email:hover {
  border-color: rgba(0,229,255,0.4);
  background: rgba(0,229,255,0.08);
}

.btn-icon { font-size: 1.1rem; }

/* Cerrar tarjeta — click fuera */
.contact-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1rem;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  background: none; border: none;
  transition: color 200ms;
  line-height: 1;
}

.contact-close:hover { color: rgba(255,255,255,0.6); }

/* ─────────────────────────────────────────
   CATALOG — ALBUM CARDS

/* ─────────────────────────────────────────
   CTA FINAL — cinematográfico
───────────────────────────────────────── */
.cta-final {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  
}

.cta-canvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 750px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0,229,255,0.10), transparent 62%),
    radial-gradient(circle at 40% 60%, rgba(120,0,255,0.09), transparent 60%);
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
  animation: cta-glow-breathe 6s ease-in-out infinite alternate;
}

@keyframes cta-glow-breathe {
  0%   { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 1;   transform: translate(-50%,-50%) scale(1.15); }
}

.cta-box {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(40px,8vw,80px) clamp(24px,6vw,60px);
  max-width: 680px;
  animation: cta-float 7s ease-in-out infinite alternate;
}

@keyframes cta-float {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.cta-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 28px;
  display: block;
  filter: brightness(4) saturate(0.3) drop-shadow(0 0 15px rgba(0,229,255,0.2));
  opacity: 0.75;
  transition: filter 400ms ease, opacity 400ms ease;
}

.cta-box:hover .cta-logo {
  filter: brightness(5) saturate(0.5) drop-shadow(0 0 22px rgba(0,229,255,0.38));
  opacity: 0.9;
}

.cta-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 16px rgba(0,229,255,0.6);
  margin: 0 0 24px;
  opacity: 0.8;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem,7vw,7rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  margin: 0 0 28px;
  text-shadow: 0 0 80px rgba(255,255,255,0.08);
}

.cta-title em {
  font-style: normal;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(0,229,255,0.5), 0 0 80px rgba(0,229,255,0.2);
}

.cta-sub {
  font-size: clamp(0.9rem,1.4vw,1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin: 0 0 44px;
  letter-spacing: 0.02em;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.88);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 300ms, border-color 300ms, box-shadow 300ms, transform 250ms;
  box-shadow: 0 0 20px rgba(0,229,255,0.06);
}

.cta-btn:hover {
  background: rgba(0,229,255,0.1);
  border-color: rgba(0,229,255,0.4);
  box-shadow: 0 0 30px rgba(0,229,255,0.18), 0 0 60px rgba(0,229,255,0.08);
  transform: translateY(-3px);
  color: var(--white);
}

.cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.cta-links a {
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  transition: color 250ms;
}

.cta-links a:hover { color: rgba(255,255,255,0.8); }
.cta-links span    { color: rgba(255,255,255,0.15); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.4);
  padding: 28px clamp(20px,5vw,72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

footer p {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

@media (prefers-reduced-motion: reduce) {
  .cta-box, .phone-body, .phone-ring-icon { animation: none; }
}

/* ═════════════════════════════════════════
   ATMOSPHERIC SECTION TRANSITIONS
   Sin líneas — fundidos de luz
═════════════════════════════════════════ */

/* Glow separator genérico — aparece al final de cada sección */
.scrub-scene::after,
.carousel-section::after,
.float-section::after,
.catalog::after,
.editorial::after,
.contact-cta::after,
.cta-final::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  pointer-events: none;
  z-index: 10;
}

/* Hero → siguiente: fade oscuro con toque cyan */
.scrub-scene::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,10,20,0.6) 60%,
    rgba(0,20,40,0.85) 100%
  );
}

/* Carrusel → float: nebulosa morada */
.carousel-section::after {
  background:
    radial-gradient(ellipse 60% 100% at 30% 100%, rgba(120,0,255,0.08), transparent),
    linear-gradient(to bottom, transparent 0%, rgba(3,2,12,0.7) 100%);
}

/* Float → catálogo: glow cyan difuso */
.float-section::after {
  background:
    radial-gradient(ellipse 50% 100% at 70% 100%, rgba(0,180,255,0.07), transparent),
    linear-gradient(to bottom, transparent 0%, rgba(4,2,14,0.75) 100%);
}

/* Catálogo → editorial: fade neutro */
.catalog::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(5,5,8,0.65) 100%
  );
  height: 120px;
}

/* Editorial → contacto: transición de luz cálida a fría */
.editorial::after {
  background:
    radial-gradient(ellipse 40% 100% at 20% 100%, rgba(255,120,0,0.04), transparent),
    radial-gradient(ellipse 40% 100% at 80% 100%, rgba(0,180,255,0.05), transparent),
    linear-gradient(to bottom, transparent 0%, rgba(4,3,12,0.8) 100%);
}

/* Contacto → CTA: morado profundo */
.contact-cta::after {
  background:
    radial-gradient(ellipse 60% 100% at 50% 100%, rgba(80,0,200,0.08), transparent),
    linear-gradient(to bottom, transparent 0%, rgba(3,2,10,0.85) 100%);
}

/* Glow separator al INICIO de secciones clave */
.float-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 150px;
  background:
    radial-gradient(ellipse 50% 100% at 50% 0%, rgba(0,180,255,0.06), transparent),
    linear-gradient(to top, transparent 0%, rgba(3,2,12,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background:
    radial-gradient(ellipse 60% 100% at 30% 0%, rgba(0,229,255,0.05), transparent),
    linear-gradient(to top, transparent 0%, rgba(5,3,14,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Quitar línea del catalog-header */
.catalog-header {
  border-bottom: none !important;
  padding-bottom: 40px;
}

/* Quitar línea del editorial-nav */
.editorial-nav {
  border-top: none !important;
}

.ed-item {
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}


/* ═════════════════════════════════════════
   EXPERIENCE MODAL — Netflix/Steam style
═════════════════════════════════════════ */

/* Overlay — oscurece y desenfoca todo lo de atrás */
.exp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  backdrop-filter: blur(0px) saturate(1);
  -webkit-backdrop-filter: blur(0px) saturate(1);
  z-index: 199;
  pointer-events: none;
  transition: background 450ms ease, backdrop-filter 450ms ease;
}

.exp-overlay.active {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px) saturate(0.5);
  -webkit-backdrop-filter: blur(12px) saturate(0.5);
  pointer-events: all;
}

/* Modal centrado — fade-in desde abajo con blur */
.exp-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 28px));
  width: min(680px, calc(100vw - 32px));
  max-height: 90vh;
  overflow-y: auto;
  z-index: 200;
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
  transition:
    opacity 420ms cubic-bezier(.16,1,.3,1),
    transform 420ms cubic-bezier(.16,1,.3,1),
    filter 380ms ease;
  border-radius: 20px;
}

.exp-modal.open {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: blur(0px);
  pointer-events: all;
}

/* Inner wrapper */
.exp-modal-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.08),
    0 40px 100px rgba(0,0,0,0.8),
    0 0 80px rgba(0,100,255,0.1);
}

/* Imagen de fondo difuminada */
.exp-modal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.exp-modal-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.3) saturate(0.6);
  transform: scale(1.1);
}

/* Gradiente encima del fondo */
.exp-modal-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4,3,14,0.5) 0%, rgba(4,3,14,0.85) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,180,255,0.08), transparent);
}

/* Contenido sobre el fondo */
.exp-modal-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px,5vw,48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Cerrar */
.exp-panel-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 10;
  transition: background 200ms, color 200ms, transform 200ms;
  display: flex; align-items: center; justify-content: center;
}
.exp-panel-close:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transform: scale(1.08);
}

/* Label */
.exp-panel-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0,229,255,0.5);
  margin: 0;
}

/* Título */
.exp-panel-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.92;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Descripción */
.exp-panel-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin: 0;
}

/* CTA */
.exp-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,180,255,0.9), rgba(100,0,255,0.9));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 200ms, box-shadow 200ms;
  box-shadow: 0 4px 24px rgba(0,180,255,0.25);
  align-self: flex-start;
}

.exp-panel-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,180,255,0.4);
}

/* Thumbnails */
.exp-panel-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.exp-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.exp-thumb img {
  width: 80px; height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  filter: brightness(0.65) saturate(0.7);
  transition: filter 200ms, border-color 200ms, transform 200ms;
}

.exp-thumb:hover img,
.exp-thumb.active img {
  filter: brightness(1) saturate(1.1);
  border-color: var(--accent);
  transform: scale(1.06);
}

.exp-thumb-label {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 200ms;
  text-align: center;
}

.exp-thumb:hover .exp-thumb-label,
.exp-thumb.active .exp-thumb-label { color: var(--accent); }

/* Cursor en cards */
.carousel-card { cursor: pointer; }

/* ── Experience panel bullets ── */
/* ── Experience panel bullets ── */
.exp-panel-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-panel-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.5;
}

.exp-panel-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  margin-top: 0.45em;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}

/* ── Thumbnail con label ── */
.exp-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 80px;
}

.exp-thumb-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 200ms;
  text-align: center;
}

.exp-thumb:hover .exp-thumb-label,
.exp-thumb.active .exp-thumb-label {
  color: var(--accent);
}


/* ── Temas por experiencia ── */
.exp-modal[data-theme="simuladores"] .exp-modal-bg::after {
  background:
    linear-gradient(to bottom, rgba(4,3,14,0.5) 0%, rgba(4,3,14,0.88) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,140,0,0.1), transparent);
}
.exp-modal[data-theme="simuladores"] .exp-panel-label { color: #ff8c00; text-shadow: 0 0 12px rgba(255,140,0,0.6); }
.exp-modal[data-theme="simuladores"] .exp-panel-cta {
  background: linear-gradient(135deg, rgba(255,120,0,0.9), rgba(200,60,0,0.9));
  box-shadow: 0 4px 24px rgba(255,100,0,0.3);
}
.exp-modal[data-theme="simuladores"] .exp-panel-bullets li::before { background: #ff8c00; box-shadow: 0 0 6px #ff8c00; }

.exp-modal[data-theme="futbol-bungee"] .exp-modal-bg::after {
  background:
    linear-gradient(to bottom, rgba(4,3,14,0.5) 0%, rgba(4,3,14,0.88) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,200,80,0.1), transparent);
}
.exp-modal[data-theme="futbol-bungee"] .exp-panel-label { color: #00cc55; text-shadow: 0 0 12px rgba(0,200,80,0.6); }
.exp-modal[data-theme="futbol-bungee"] .exp-panel-cta {
  background: linear-gradient(135deg, rgba(0,180,60,0.9), rgba(0,120,40,0.9));
  box-shadow: 0 4px 24px rgba(0,160,60,0.3);
}
.exp-modal[data-theme="futbol-bungee"] .exp-panel-bullets li::before { background: #00cc55; box-shadow: 0 0 6px #00cc55; }

.exp-modal[data-theme="laser"] .exp-modal-bg::after {
  background:
    linear-gradient(to bottom, rgba(4,3,14,0.5) 0%, rgba(4,3,14,0.88) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,180,255,0.12), transparent);
}

/* ── Glow en card activa del carrusel ── */
.carousel-card.exp-active {
  box-shadow:
    0 0 0 2px var(--exp-glow-color, rgba(0,229,255,0.5)),
    0 0 30px var(--exp-glow-color, rgba(0,229,255,0.25)),
    0 0 60px var(--exp-glow-color, rgba(0,229,255,0.1));
  transform: scale(1.04) !important;
  filter: brightness(1.1) !important;
  z-index: 10;
}

/* ── Microinteracciones botón CTA ── */
.exp-panel-cta {
  position: relative;
  overflow: hidden;
}

.exp-panel-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 400ms ease;
}

.exp-panel-cta:hover::after { left: 150%; }

/* ── Microinteracción cerrar ── */
.exp-panel-close {
  transition: background 200ms, color 200ms, transform 250ms cubic-bezier(.16,1,.3,1), box-shadow 200ms;
}
.exp-panel-close:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 0 12px rgba(255,255,255,0.15);
}

/* ── Overlay blur reactivo por tema ── */
.exp-overlay[data-theme="simuladores"].active { background: rgba(20,5,0,0.78); }
.exp-overlay[data-theme="futbol-bungee"].active { background: rgba(0,15,5,0.78); }
.exp-overlay[data-theme="laser"].active { background: rgba(0,5,20,0.78); }
