/* ============================================================
   CANTARTE VALLECAS — Una función en siete actos
   Sistema visual: teatro de barrio. Terciopelo, latón y graffiti.
   ============================================================ */

:root {
  /* MARCA · CantArte Vallecas (Manual de Identidad v1) */
  --negro-escena: #0A0A0A;
  --blanco-luz: #F7F7F7;
  --rojo-apertura: #FF3A30;
  --naranja-foco: #FF7A00;
  --amarillo-candilejas: #FFD500;
  --verde-coral: #6EEB3A;
  --azul-escena: #1FA8FF;
  --azul-led: #00D8FF;
  --violeta-lirico: #7A3DFF;
  --magenta-barrio: #FF2DA8;

  /* Mapeo a sistema anterior */
  --night: var(--negro-escena);
  --night-2: #131313;
  --night-soft: #1A1A1A;
  --paper: var(--blanco-luz);
  --paper-2: #E8E8E8;
  --paper-shadow: #B5B5B5;
  --paper-line: var(--negro-escena);

  --rojo: var(--rojo-apertura);
  --amarillo: var(--amarillo-candilejas);
  --teal: var(--verde-coral);
  --cobalto: var(--azul-escena);
  --magenta: var(--magenta-barrio);
  --plum: var(--violeta-lirico);

  /* Acentos cálidos para arquitectura tipo teatro */
  --velvet: #B82820;
  --velvet-deep: #4F0F0C;
  --velvet-hi: var(--rojo-apertura);
  --brass: var(--amarillo-candilejas);
  --brass-2: #FFE34D;
  --brass-deep: #C9A300;

  /* Concreto / backstage */
  --concreto: #2A2A2A;
  --concreto-2: #1A1A1A;
  --clipboard: #6B4423;

  /* TIPOGRAFÍAS DE MARCA */
  --serif: "Bebas Neue", "Playfair Display", sans-serif;
  --sans: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  --institutional: "Montserrat", "Inter", sans-serif;
  --type: "Montserrat", "Special Elite", monospace;
  --neon: "Bebas Neue", "Limelight", sans-serif;
  --graff: "Permanent Marker", "Caveat", cursive;

  --max: 1240px;
  --gut: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--night);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--brass); color: var(--night); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* ============================================================
   NAV — Letrero discreto del teatro
   ============================================================ */
.theatre-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gut);
  background: linear-gradient(180deg, rgba(10,9,8,0.92), rgba(10,9,8,0.6));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 169, 74, 0.12);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}
.theatre-nav.is-visible { transform: translateY(0); }
.theatre-nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--neon);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--brass);
}
.theatre-nav__brand img { width: 32px; height: 32px; }
.theatre-nav__links { display: flex; gap: 26px; }
.theatre-nav__links a {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.theatre-nav__links a:hover { opacity: 1; color: var(--brass); }
.theatre-nav__act { color: var(--brass); margin-right: 6px; opacity: 0.6; }
.theatre-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--brass);
  color: var(--night) !important;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 18px rgba(212, 169, 74, 0.35);
  opacity: 1;
  font-weight: 500;
}
.theatre-nav__cta:hover {
  background: var(--brass-2);
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(212, 169, 74, 0.6);
}
.theatre-nav__cta .arrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}
@media (max-width: 900px) { .theatre-nav__links { display: none; } }
@media (max-width: 640px) { .theatre-nav__cta { display: none; } }

/* ============================================================
   ACT MARKER — eyebrow that introduces every act
   ============================================================ */
.act-marker {
  position: absolute;
  top: 30px; left: var(--gut);
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}
.act-marker::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--brass);
}
.act-marker em {
  font-style: normal;
  color: rgba(242, 233, 210, 0.5);
}

/* ============================================================
   ACT 0 — LA MARQUESINA
   ============================================================ */
.act-marquesina {
  position: relative;
  min-height: calc(100vw * 700 / 1536);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  background:
    url("assets/facade-bg.png") center top / 100% auto no-repeat,
    linear-gradient(180deg, #0a0908 0%, #14100c 100%);
  overflow: hidden;
}
.act-marquesina::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 45%, transparent 30%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Spotlight beams shooting up from below */
.beam {
  position: absolute;
  bottom: -10%;
  width: 35vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to top,
    rgba(212, 169, 74, 0.14) 0%,
    rgba(212, 169, 74, 0.06) 30%,
    transparent 70%);
  clip-path: polygon(45% 100%, 55% 100%, 90% 0%, 10% 0%);
  filter: blur(30px);
  mix-blend-mode: screen;
}
.beam--left { left: -2%; transform: rotate(-2deg); }
.beam--right { right: -2%; transform: rotate(2deg); }
.beam--center {
  left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  background: linear-gradient(to top,
    rgba(212, 169, 74, 0.22) 0%,
    rgba(212, 169, 74, 0.08) 30%,
    transparent 75%);
  filter: blur(45px);
}

.marquesina-frame {
  position: relative;
  width: 100%;
  padding: clamp(20px, 2.8vw, 36px);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(20, 16, 12, 0.6), rgba(8, 6, 4, 0.95) 80%),
    #050403;
  border: 1px solid #0a0807;
  border-radius: 3px;
  box-shadow:
    /* Marco TV profundo */
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.9),
    inset 2px 0 3px rgba(0, 0, 0, 0.5),
    inset -2px 0 3px rgba(0, 0, 0, 0.5),
    /* Halo interno y externo */
    inset 0 0 80px rgba(0, 0, 0, 0.6),
    inset 0 0 200px rgba(0, 0, 0, 0.3),
    /* Caja contra la pared (sombra de proyección) */
    0 4px 0 rgba(0, 0, 0, 0.4),
    0 12px 24px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(212, 169, 74, 0.15);
  overflow: hidden;
  z-index: 5;
}

/* ============================================================
   THEATRE FACADE — wrapper transparente sobre la imagen de fondo
   ============================================================ */
.theatre-facade {
  width: 100%;
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Frontón clásico con inscripción carved */
.theatre-facade__pediment {
  background:
    /* Resaltado superior fino */
    linear-gradient(180deg,
      rgba(232, 200, 142, 0.06) 0%,
      transparent 4px),
    /* Color base con sombra inferior */
    linear-gradient(180deg, #251c14 0%, #1a140e 50%, #100b07 100%);
  border-top: 1px solid rgba(232, 200, 142, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
  padding: 20px 40px 22px;
  text-align: center;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(232, 200, 142, 0.18),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(212, 169, 74, 0.25),
    0 2px 6px rgba(0, 0, 0, 0.6);
}
.theatre-facade__pediment::before,
.theatre-facade__pediment::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 18%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 169, 74, 0.3) 30%,
    rgba(212, 169, 74, 0.6) 100%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.theatre-facade__pediment::before { left: 8%; transform: scaleX(-1); }
.theatre-facade__pediment::after { right: 8%; }
.theatre-facade__pediment .marquesina-top { margin: 0; }

.theatre-facade__body {
  padding: 24px;
  position: relative;
}

/* Pilastras con fluting (estrías verticales) — piedra real */
.theatre-facade__pilaster {
  position: relative;
  background:
    /* Estrías verticales — 3 acanaladuras */
    linear-gradient(90deg,
      transparent 0%, transparent 18%,
      rgba(0, 0, 0, 0.55) 22%,
      rgba(0, 0, 0, 0.65) 24%,
      rgba(232, 200, 142, 0.1) 26%,
      transparent 30%, transparent 38%,
      rgba(0, 0, 0, 0.55) 42%,
      rgba(0, 0, 0, 0.65) 44%,
      rgba(232, 200, 142, 0.1) 46%,
      transparent 50%, transparent 58%,
      rgba(0, 0, 0, 0.55) 62%,
      rgba(0, 0, 0, 0.65) 64%,
      rgba(232, 200, 142, 0.1) 66%,
      transparent 70%, transparent 82%,
      rgba(0, 0, 0, 0.55) 86%,
      rgba(0, 0, 0, 0.65) 88%),
    /* Color base piedra crema con sombreado lateral */
    linear-gradient(90deg,
      rgba(20, 15, 10, 0.9) 0%,
      rgba(140, 110, 70, 0.4) 18%,
      rgba(210, 178, 130, 0.55) 50%,
      rgba(140, 110, 70, 0.4) 82%,
      rgba(20, 15, 10, 0.9) 100%);
  border-left: 1px solid rgba(232, 200, 142, 0.25);
  border-right: 1px solid rgba(232, 200, 142, 0.25);
  box-shadow:
    inset 1px 0 0 rgba(232, 200, 142, 0.12),
    inset -1px 0 0 rgba(0, 0, 0, 0.4);
}

/* Capitel arriba — tres niveles ornamentales */
.theatre-facade__pilaster::before {
  content: "";
  position: absolute;
  top: 0; left: -7px; right: -7px;
  height: 22px;
  background:
    /* Capa superior (ábaco) */
    linear-gradient(180deg,
      #f0d68e 0%,
      var(--brass-2) 18%,
      var(--brass) 30%,
      #4a3818 32%,
      /* Capa media (equino) */
      var(--brass-2) 38%,
      var(--brass) 60%,
      #4a3818 62%,
      /* Capa inferior (collarino) */
      var(--brass-deep) 72%,
      var(--brass) 84%,
      var(--brass-deep) 100%);
  border-top: 1px solid #f0d68e;
  border-bottom: 1px solid #2a1f0e;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 250, 220, 0.4);
}

/* Base abajo — tres niveles ornamentales */
.theatre-facade__pilaster::after {
  content: "";
  position: absolute;
  bottom: 0; left: -7px; right: -7px;
  height: 22px;
  background:
    linear-gradient(180deg,
      var(--brass-deep) 0%,
      var(--brass) 16%,
      var(--brass-deep) 28%,
      #4a3818 30%,
      var(--brass) 38%,
      var(--brass-2) 60%,
      var(--brass) 70%,
      #4a3818 72%,
      var(--brass) 82%,
      #f0d68e 100%);
  border-top: 1px solid #2a1f0e;
  border-bottom: 1px solid #f0d68e;
  box-shadow:
    0 -2px 4px rgba(0, 0, 0, 0.6),
    inset 0 -1px 0 rgba(255, 250, 220, 0.4);
}

/* Inscripción central del frontón — tipografía refinada */
.marquesina-top {
  text-align: center;
  font-family: var(--neon);
  font-size: clamp(13px, 1.5vw, 17px);
  letter-spacing: 0.42em;
  color: #f0d68e;
  margin-bottom: 22px;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.6),
    0 0 10px rgba(232, 200, 142, 0.25);
}
.marquesina-top span {
  display: inline-block;
  padding: 4px 32px;
  position: relative;
}
.marquesina-top span::before,
.marquesina-top span::after {
  content: "⋄";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  font-size: 14px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.marquesina-top span::before { left: 8px; }
.marquesina-top span::after { right: 8px; }

@media (max-width: 540px) {
  .theatre-facade__body { grid-template-columns: 18px 1fr 18px; padding: 16px 12px 20px; }
  .theatre-facade__pediment { padding: 14px 24px 16px; }
}

/* ============================================================
   MARQUESINA AWNING — focos halógenos hacia abajo
   ============================================================ */
.theatre-facade__awning {
  position: relative;
  background:
    linear-gradient(180deg,
      #1f1812 0%,
      #14100a 60%,
      #080604 100%);
  border-top: 1px solid var(--brass-deep);
  padding: 14px clamp(24px, 4vw, 50px) 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.theatre-facade__awning::after {
  /* Lecho dorado debajo de la marquesina — los focos iluminan el suelo */
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 80px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%,
      rgba(255, 200, 120, 0.32) 0%,
      rgba(255, 138, 31, 0.18) 30%,
      transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.theatre-light {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 30%,
    #fff5b8 0%,
    #ffd24d 35%,
    var(--brass) 65%,
    var(--brass-deep) 100%);
  box-shadow:
    0 0 6px #ffd24d,
    0 0 14px rgba(255, 200, 100, 0.85),
    0 0 24px rgba(255, 138, 31, 0.55),
    /* Halo bajando — simula la luz cayendo */
    0 8px 16px rgba(255, 138, 31, 0.6),
    0 16px 26px rgba(255, 138, 31, 0.25);
  flex-shrink: 0;
}

/* Suelo del vestíbulo: tira cálida donde los focos iluminan */
.theatre-facade__entrance {
  height: 40px;
  background:
    linear-gradient(180deg,
      rgba(40, 26, 14, 0.95) 0%,
      rgba(28, 18, 10, 1) 100%);
  border-top: 1px solid rgba(255, 138, 31, 0.25);
  position: relative;
  overflow: hidden;
}
.theatre-facade__entrance::before {
  /* Reflejo del suelo de los focos */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 0%, rgba(255, 200, 100, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 60% at 35% 0%, rgba(255, 200, 100, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 55% 0%, rgba(255, 200, 100, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 60% at 75% 0%, rgba(255, 200, 100, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 92% 0%, rgba(255, 200, 100, 0.25), transparent 60%);
  pointer-events: none;
}
.theatre-facade__entrance::after {
  /* Línea de unión suelo/zona vestíbulo */
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 169, 74, 0.4), transparent);
}

/* ============================================================
   LED SCREEN — imagen ya contiene los puntos LED bakeados
   ============================================================ */
.led-screen {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.led-screen img {
  position: relative;
  z-index: 1;
  filter: saturate(1.08) brightness(1.05);
}
/* Reflejo sutil de pantalla */
.led-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(255, 255, 255, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 25%);
  z-index: 3;
  border-radius: inherit;
}

@media (max-width: 540px) {
  .theatre-facade__body { grid-template-columns: 14px 1fr 14px; padding: 14px 10px 18px; }
  .theatre-facade__pediment { padding: 12px 20px; }
}

/* Bombillas around the frame — REEMPLAZADAS POR NEÓN */
.bulbs { display: none; }

.marquesina-top {
  text-align: center;
  font-family: var(--neon);
  font-size: clamp(12px, 1.4vw, 16px);
  letter-spacing: 0.36em;
  color: var(--brass-2);
  margin-bottom: 22px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(212, 169, 74, 0.3);
}
.marquesina-top span {
  display: inline-block;
  padding: 8px 28px;
  position: relative;
  border-top: 1px solid var(--brass-deep);
  border-bottom: 1px solid var(--brass-deep);
}
.marquesina-top span::before,
.marquesina-top span::after {
  content: "⋄";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
  font-size: 12px;
}
.marquesina-top span::before { left: 8px; }
.marquesina-top span::after { right: 8px; }

.marquesina-logo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-width: 720px;
  margin: 0 auto;
}
.marquesina-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.marquesina-bottom { display: none; }

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  2% { opacity: 0.85; }
  4% { opacity: 1; }
  18% { opacity: 0.7; }
  19% { opacity: 1; }
  47% { opacity: 0.9; }
  48% { opacity: 1; }
}

/* Hand-written tagline below the marquee */
.marquesina-layout {
  display: grid;
  grid-template-columns: 1fr min(880px, 96vw) 1fr;
  gap: clamp(16px, 2vw, 40px);
  align-items: center;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.marquesina-tag {
  font-family: var(--graff);
  font-size: clamp(20px, 2.4vw, 38px);
  line-height: 1.08;
  color: var(--paper);
  letter-spacing: 0.01em;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
}
.marquesina-tag--left {
  text-align: right;
  transform: rotate(-4deg);
  justify-self: end;
  max-width: 9ch;
}
.marquesina-tag--right {
  text-align: left;
  transform: rotate(4deg);
  justify-self: start;
  max-width: 10ch;
}
.marquesina-tag .accent { color: var(--rojo); }
.marquesina-tag .accent-2 { color: var(--amarillo); }
.marquesina-tag .accent-3 { color: var(--teal); }

@media (max-width: 880px) {
  .marquesina-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .marquesina-tag--left,
  .marquesina-tag--right {
    text-align: center;
    justify-self: center;
    max-width: 24ch;
  }
  .marquesina-tag--left { order: 2; transform: rotate(-2deg); }
  .marquesina-frame { order: 1; }
  .marquesina-tag--right { order: 3; transform: rotate(2deg); }
}

/* LED scrolling ticker — al inicio de Taquilla, ancho completo */
.led-ticker {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  background: linear-gradient(180deg, #0e0a06 0%, #15100a 50%, #0e0a06 100%);
  border-top: 1px solid var(--brass-deep);
  border-bottom: 1px solid var(--brass-deep);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 6;
  box-shadow:
    inset 0 0 50px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(212, 169, 74, 0.15);
}
.led-ticker::before,
.led-ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.led-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #0e0a06, transparent);
}
.led-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #0e0a06, transparent);
}
.led-ticker__track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: tickerScroll 38s linear infinite;
  width: max-content;
  align-items: center;
  padding-right: 50px;
}
.led-item {
  font-family: var(--neon);
  font-size: clamp(24px, 3.2vw, 40px);
  color: var(--brass-2);
  letter-spacing: 0.08em;
  text-shadow:
    0 0 4px rgba(212, 169, 74, 0.6),
    0 0 12px rgba(212, 169, 74, 0.4);
  text-transform: uppercase;
  flex-shrink: 0;
}
.led-dot {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--brass);
  flex-shrink: 0;
  align-self: center;
  opacity: 0.7;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* "Empuje" door CTA — botón circular que invita a ver el espectáculo */
.door-cta {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  padding: 0;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle, var(--amarillo-candilejas) 0%, var(--brass-deep) 82%, #5a4000 100%);
  border: 2px solid var(--brass-deep);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -3px 0 rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(255, 213, 0, 0.35),
    0 14px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: doorPulse 3s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
.door-cta::before, .door-cta::after { content: none; }
.door-cta:hover {
  transform: translate(-50%, -4px) scale(1.04);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset 0 -3px 0 rgba(0, 0, 0, 0.35),
    0 0 0 8px rgba(0, 0, 0, 0.4),
    0 0 70px rgba(255, 213, 0, 0.9),
    0 0 110px rgba(255, 122, 0, 0.55),
    0 26px 50px rgba(0, 0, 0, 0.65);
}
.door-cta__circle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--neon);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1208;
  line-height: 1.05;
  text-shadow: none;
  width: auto; height: auto;
  border: 0;
  background: transparent;
  font-weight: 400;
  text-align: center;
  padding: 0 8px;
}
.door-cta__label { display: none; }
@keyframes doorPulse {
  0%, 100% {
    box-shadow:
      inset 0 2px 0 rgba(255, 255, 255, 0.3),
      inset 0 -3px 0 rgba(0, 0, 0, 0.35),
      0 0 0 4px rgba(0, 0, 0, 0.35),
      0 0 20px rgba(255, 213, 0, 0.3),
      0 16px 32px rgba(0, 0, 0, 0.55);
  }
  50% {
    box-shadow:
      inset 0 2px 0 rgba(255, 255, 255, 0.4),
      inset 0 -3px 0 rgba(0, 0, 0, 0.4),
      0 0 0 6px rgba(0, 0, 0, 0.4),
      0 0 32px rgba(255, 213, 0, 0.5),
      0 18px 38px rgba(0, 0, 0, 0.6);
  }
}
.door-cta::before {
  /* Halo neon ring detrás del botón */
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
    var(--rojo) 0%,
    var(--amarillo) 25%,
    var(--teal) 50%,
    var(--magenta) 75%,
    var(--cobalto) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.85;
  filter: blur(0.5px);
  z-index: -1;
  pointer-events: none;
  animation: doorPulse 3s ease-in-out infinite;
}
.door-cta:hover {
  transform: translate(-50%, -3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 60px rgba(255, 215, 90, 0.65),
    0 24px 60px rgba(0, 0, 0, 0.7);
}
.door-cta__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brass-2), var(--brass));
  color: var(--night);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}
.door-cta__label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}
.door-cta__label em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.78em;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--brass-2);
  opacity: 0.95;
  margin-top: 4px;
}
@keyframes doorPulse {
  0%, 100% { box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    inset 0 -3px 0 rgba(0, 0, 0, 0.4),
    0 0 0 4px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(255, 213, 0, 0.35),
    0 14px 30px rgba(0, 0, 0, 0.6); }
  50% { box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -3px 0 rgba(0, 0, 0, 0.45),
    0 0 0 6px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(255, 213, 0, 0.55),
    0 16px 36px rgba(0, 0, 0, 0.65); }
}
.act-marquesina.is-flashing {
  animation: marqueeShowChange 1.1s cubic-bezier(0.5, 0, 0.5, 1);
}
.act-marquesina.is-flashing::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--azul-led), var(--blanco-luz), var(--azul-led), transparent);
  top: 0;
  z-index: 30;
  pointer-events: none;
  box-shadow: 0 0 30px var(--azul-led), 0 0 60px rgba(0, 216, 255, 0.5);
  animation: scanLine 0.9s cubic-bezier(0.3, 0, 0.6, 1);
}
@keyframes marqueeShowChange {
  0% { filter: brightness(1) saturate(1); }
  8% { filter: brightness(1.8) saturate(2.4); }
  15% { filter: brightness(0.3) saturate(0.4) hue-rotate(8deg); }
  25% { filter: brightness(2.2) saturate(3); }
  35% { filter: brightness(0.2) saturate(0); }
  50% { filter: brightness(1.3) saturate(1.6) hue-rotate(-6deg); }
  100% { filter: brightness(1) saturate(1); }
}
@keyframes scanLine {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0.6; }
}
.door-cta.is-pressed {
  transform: translate(-50%, 2px) scale(0.96);
  transition: transform 0.15s ease;
}
.door-cta__circle::before, .door-cta__circle::after {
  content: "";
  position: absolute;
  background: var(--brass);
  width: 1px; height: 14px;
  border-radius: 1px;
}
.door-cta__circle::before { top: 8px; }
.door-cta__circle::after { bottom: 8px; }
.door-cta__label { font-size: 11px; }
.door-cta__label em {
  display: block; font-style: normal;
  color: var(--brass); margin-top: 4px;
  font-family: var(--serif);
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
}

/* ============================================================
   ACT 1 — LA TAQUILLA — interactive admission ticket
   ============================================================ */
.act-taquilla {
  position: relative;
  padding: clamp(80px, 10vw, 130px) var(--gut) clamp(80px, 12vw, 140px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 169, 74, 0.08), transparent 60%),
    var(--night-2);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}
.taquilla-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 56ch;
}
.taquilla-intro p {
  font-family: var(--type);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.taquilla-intro h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.taquilla-intro h2 em {
  font-style: italic;
  color: var(--brass);
}

.taquilla-content {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* The ticket */
.ticket {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 280px;
  background: transparent;
  color: var(--paper-line);
  border-radius: 6px;
  position: relative;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.45),
    0 0 80px rgba(212, 169, 74, 0.18);
  font-family: var(--type);
  overflow: hidden;
  animation: ticketDrop 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transform-origin: top center;
  transition: transform 0.6s cubic-bezier(0.6, 0, 0.2, 1), opacity 0.4s ease, box-shadow 0.3s ease;
}
@keyframes ticketDrop {
  from { transform: translateY(-30px) rotate(-1deg); opacity: 0; }
  to { transform: translateY(0) rotate(0); opacity: 1; }
}
.ticket::before, .ticket::after {
  /* Top/bottom serration on stub */
  content: "";
  position: absolute;
  right: 280px;
  width: 14px; height: 14px;
  background: var(--night-2);
  border-radius: 50%;
  z-index: 2;
}
.ticket::before { top: -7px; transform: translateX(7px); }
.ticket::after { bottom: -7px; transform: translateX(7px); }

.ticket__main {
  padding: 36px 40px;
  position: relative;
  background: var(--paper);
  border-radius: 6px 0 0 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.ticket__theater {
  font-family: var(--neon);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--paper-line);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.ticket__theater span {
  display: block;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--velvet);
}
.ticket__rule {
  margin: 22px 0 18px;
  border: none;
  border-top: 1px dashed rgba(26, 18, 8, 0.4);
}
.ticket__rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.ticket__cell label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.55);
  margin-bottom: 5px;
}
.ticket__cell .val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--paper-line);
}
.ticket__cell .val.small {
  font-size: 16px;
  font-style: normal;
  font-family: var(--type);
  letter-spacing: 0.04em;
}
.ticket__name-input {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--paper-line);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(26, 18, 8, 0.3);
  outline: 0;
  width: 100%;
  padding: 2px 0 6px;
}
.ticket__name-input::placeholder { color: rgba(26, 18, 8, 0.3); font-style: italic; }
.ticket__name-input:focus { border-bottom-color: var(--velvet); }

.ticket__stamp {
  position: absolute;
  right: 30px; bottom: 26px;
  width: 110px; height: 110px;
  border: 3px solid var(--velvet);
  color: var(--velvet);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
  opacity: 0.85;
  font-family: var(--type);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 9px;
  text-align: center;
  line-height: 1.3;
  background: rgba(110, 20, 20, 0.04);
}
.ticket__stamp strong {
  font-size: 14px;
  letter-spacing: 0.16em;
  display: block;
  margin: 4px 0;
}

.ticket__stub {
  background: var(--paper-2);
  border-left: 2px dashed rgba(26, 18, 8, 0.35);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.ticket__stub-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.5);
}
.ticket__stub-num {
  font-family: var(--neon);
  font-size: 42px;
  color: var(--velvet);
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 10px 0;
}
.ticket__stub-barcode {
  display: flex;
  height: 36px;
  gap: 1px;
  margin: 8px 0 12px;
  align-items: end;
}
.ticket__stub-barcode span {
  background: var(--paper-line);
  width: 2px;
  height: 100%;
  flex-shrink: 0;
}
.ticket__stub-barcode span:nth-child(3n) { width: 1px; height: 60%; }
.ticket__stub-barcode span:nth-child(4n) { width: 3px; height: 80%; }
.ticket__stub-barcode span:nth-child(5n) { width: 1px; }
.ticket__stub-footer {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.55);
  line-height: 1.5;
}

.ticket__validate {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.btn-tear {
  background: var(--paper);
  color: var(--paper-line);
  font-family: var(--type);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 16px 26px;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-tear:hover { background: var(--velvet); color: var(--paper); border-color: var(--velvet); }
.btn-tear svg { transition: transform 0.3s ease; }
.btn-tear:hover svg { transform: translateX(4px); }
.ticket__validate-msg {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.6;
}

.ticket__main, .ticket__stub {
  transition: transform 0.4s ease;
}
.ticket.is-torn {
  overflow: visible;
  pointer-events: none;
  box-shadow: none;
}
.ticket.is-torn::before,
.ticket.is-torn::after {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ticket.is-torn .ticket__main {
  animation: tearLeft 0.8s cubic-bezier(0.5, 0, 0.2, 1) forwards;
  transform-origin: right center;
}
.ticket.is-torn .ticket__stub {
  animation: tearRight 0.8s cubic-bezier(0.5, 0, 0.2, 1) forwards;
  transform-origin: left center;
  border-left: 2px solid rgba(26, 18, 8, 0.45);
  border-image: repeating-linear-gradient(180deg,
    rgba(26,18,8,0.7) 0 6px,
    transparent 6px 10px) 1;
}
@keyframes tearLeft {
  12% { transform: translateX(-4px) rotate(-1deg); }
  100% {
    transform: translateX(-120vw) translateY(40px) rotate(-12deg);
    opacity: 0;
  }
}
@keyframes tearRight {
  12% { transform: translateX(4px) rotate(1deg); }
  100% {
    transform: translateX(120vw) translateY(30px) rotate(9deg);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .ticket { grid-template-columns: 1fr; }
  .ticket::before, .ticket::after { display: none; }
  .ticket__stub { border-left: 0; border-top: 2px dashed rgba(26, 18, 8, 0.35); }
  .ticket__rows { grid-template-columns: 1fr; }
  .ticket__stamp { right: 16px; bottom: 16px; width: 90px; height: 90px; }
}

/* ============================================================
   ACT 2 — EL VESTÍBULO — services carousel
   Sales page · qué ofrecemos a programadores
   ============================================================ */
.act-vestibulo {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  background:
    repeating-linear-gradient(90deg, transparent 0px, transparent 240px, rgba(255,255,255,0.012) 240px, rgba(255,255,255,0.012) 241px),
    radial-gradient(ellipse at 20% 0%, rgba(46, 191, 176, 0.04), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(226, 62, 62, 0.04), transparent 60%),
    var(--night-2);
}
.lobby-head {
  max-width: 760px;
  margin: 0 auto clamp(50px, 7vw, 80px);
  text-align: center;
}
.lobby-head__eyebrow {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.lobby-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.lobby-head h2 em {
  font-style: italic;
  font-weight: 700;
  color: var(--brass);
}
.lobby-head__lead {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 236, 216, 0.7);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* Carousel container */
.services-carousel {
  position: relative;
  margin: 0 calc(-1 * var(--gut));
  padding: 8px 0;
}
.services-carousel__viewport {
  overflow: hidden;
  padding: 12px var(--gut);
}
.services-carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 2px;
  scroll-behavior: smooth;
}
.services-carousel__track::-webkit-scrollbar { display: none; }

.services-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 13, 12, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 169, 74, 0.4);
  color: var(--brass-2);
  font-family: var(--serif);
  font-size: 22px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.services-carousel__nav:hover {
  background: var(--brass);
  color: var(--night);
  border-color: var(--brass);
}
.services-carousel__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.services-carousel__nav--prev { left: 18px; }
.services-carousel__nav--next { right: 18px; }

/* Service cards */
.service-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 169, 74, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(244, 236, 216, 0.04), rgba(0, 0, 0, 0.3));
  border: 1px solid rgba(212, 169, 74, 0.25);
  border-radius: 14px;
  padding: 28px 26px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
}
.service-card::before {
  /* Sutil rejilla LED de fondo en cada tarjeta */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(212, 169, 74, 0.15) 1px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--brass);
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 169, 74, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(244, 236, 216, 0.07), rgba(0, 0, 0, 0.35));
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(212, 169, 74, 0.25),
    inset 0 0 0 1px rgba(255, 215, 90, 0.3);
}
.service-card--featured {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 169, 74, 0.25), transparent 60%),
    linear-gradient(170deg, rgba(212, 169, 74, 0.12), rgba(226, 62, 62, 0.08));
  border-color: var(--brass);
  box-shadow:
    0 0 0 1px rgba(255, 215, 90, 0.3),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(212, 169, 74, 0.2);
}
.service-card[data-color="vermilion"] { --card-accent: var(--rojo); }
.service-card[data-color="gold"] { --card-accent: var(--amarillo); }
.service-card[data-color="teal"] { --card-accent: var(--teal); }
.service-card[data-color="magenta"] { --card-accent: var(--magenta); }
.service-card[data-color="cobalto"] { --card-accent: var(--cobalto); }
.service-card[data-color="plum"] { --card-accent: var(--plum); }

.service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.service-card__num {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(244, 236, 216, 0.55);
}
.service-card__tag {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 5px 10px;
  border: 1px solid var(--brass);
  border-radius: 999px;
}
.service-card__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.4), transparent 60%),
    radial-gradient(circle, var(--card-accent, var(--brass)) 0%, var(--card-accent, var(--brass)) 50%, transparent 75%);
  margin-bottom: 22px;
  box-shadow:
    0 0 30px var(--card-accent, var(--brass)),
    0 0 60px var(--card-accent, var(--brass)),
    inset 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
}
.service-card__dot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--card-accent, var(--brass));
  opacity: 0.3;
}
.service-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: var(--paper);
  margin-bottom: 12px;
  line-height: 1.15;
}
.service-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244, 236, 216, 0.72);
  flex-grow: 1;
}
.service-card p strong {
  color: var(--paper);
  font-weight: 500;
  font-family: var(--serif);
  font-style: italic;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  transition: color 0.2s ease, gap 0.2s ease;
}
.service-card__link:hover {
  color: var(--brass);
  gap: 12px;
}
.service-card__link span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}

@media (max-width: 720px) {
  .service-card { flex: 0 0 82%; min-height: 320px; }
  .services-carousel__nav { display: none; }
  .services-carousel__track { padding: 8px var(--gut); }
}

/* Photocall wall — the graffiti logo big and dripping */
.photocall {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  aspect-ratio: 16/9;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 6px),
    linear-gradient(180deg, #1f1a16, #0e0c0a);
  border: 1px solid rgba(212, 169, 74, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 6px rgba(212, 169, 74, 0.08) inset;
}
.photocall::before {
  /* spotlight */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(212, 169, 74, 0.15), transparent 60%);
}
.photocall__logo {
  width: 56%;
  max-width: 480px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(226, 62, 62, 0.35));
}
.photocall__corner {
  position: absolute;
  font-family: var(--graff);
  font-size: 22px;
  color: var(--paper);
  opacity: 0.7;
  transform: rotate(-6deg);
  z-index: 3;
  letter-spacing: 0.02em;
}
.photocall__corner.tl { top: 24px; left: 24px; color: var(--rojo); }
.photocall__corner.br { bottom: 24px; right: 24px; color: var(--amarillo); transform: rotate(4deg); }
.photocall__corner.bl { bottom: 24px; left: 24px; color: var(--teal); transform: rotate(-3deg); font-size: 16px; }
.photocall__corner.tr { top: 24px; right: 24px; color: var(--magenta); transform: rotate(2deg); font-size: 16px; }

/* Manifest — pinned to corkboard */
.corkboard {
  margin-top: clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.corkboard__copy {
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.35;
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
  position: relative;
}
.corkboard__copy::before {
  content: "“";
  position: absolute;
  top: -60px; left: -20px;
  font-family: var(--serif);
  font-size: 180px;
  line-height: 1;
  color: var(--brass);
  opacity: 0.4;
}
.corkboard__copy span {
  color: var(--brass);
  font-style: normal;
}
.corkboard__copy small {
  display: block;
  margin-top: 30px;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(242, 233, 210, 0.55);
  font-style: normal;
}

/* Pinned posters of the 4 pilares */
.pinned-posters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  position: relative;
}
.poster {
  position: relative;
  background: var(--paper);
  color: var(--paper-line);
  padding: 26px 22px 26px;
  font-family: var(--type);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.5),
    0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: default;
}
.poster:nth-child(1) { transform: rotate(-2deg); }
.poster:nth-child(2) { transform: rotate(1.5deg); }
.poster:nth-child(3) { transform: rotate(1deg); }
.poster:nth-child(4) { transform: rotate(-1.2deg); }
.poster:hover { transform: rotate(0) scale(1.04); z-index: 5; }
.poster__pin {
  position: absolute;
  top: -7px; left: 50%;
  width: 18px; height: 18px;
  background: radial-gradient(circle at 30% 30%, #e85a5a, #8c1e1e);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.poster:nth-child(2) .poster__pin { background: radial-gradient(circle at 30% 30%, #f2cd5a, #8c6a1e); }
.poster:nth-child(3) .poster__pin { background: radial-gradient(circle at 30% 30%, #5af2e6, #1e8c84); }
.poster:nth-child(4) .poster__pin { background: radial-gradient(circle at 30% 30%, #e85ab5, #8c1e6e); }
.poster__num {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--velvet);
  margin-bottom: 10px;
}
.poster__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.05;
  color: var(--paper-line);
  margin-bottom: 14px;
  font-weight: 500;
}
.poster__body {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(26, 18, 8, 0.78);
  font-family: var(--sans);
}

/* Origen card — printed program note */
.origen-card {
  margin-top: clamp(80px, 10vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.origen-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.85;
  color: transparent;
  background: linear-gradient(180deg, var(--brass-2), var(--velvet) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.04em;
  text-align: center;
}
.origen-card__num span {
  display: block;
  font-family: var(--type);
  font-size: 13px;
  letter-spacing: 0.28em;
  background: none;
  -webkit-text-fill-color: var(--paper);
  color: var(--paper);
  opacity: 0.6;
  text-transform: uppercase;
  margin-top: 14px;
}
.origen-card__copy h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--paper);
}
.origen-card__copy p {
  color: rgba(242, 233, 210, 0.78);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 56ch;
}
.origen-card__copy p + p { margin-top: 14px; }

@media (max-width: 820px) {
  .corkboard { grid-template-columns: 1fr; }
  .origen-card { grid-template-columns: 1fr; }
  .pinned-posters { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .pinned-posters { grid-template-columns: 1fr; }
}

/* ============================================================
   ACT 3 — PROGRAMA DE MANO
   Printed program, paper, ornate
   ============================================================ */
.act-programa {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--gut);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 169, 74, 0.08), transparent 70%),
    var(--night);
}
.programa-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--paper-line);
  position: relative;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
}
.programa-frame::before, .programa-frame::after {
  content: "";
  position: absolute;
  left: 30px; right: 30px;
  border: 1px solid rgba(26, 18, 8, 0.4);
  pointer-events: none;
}
.programa-frame::before { top: 30px; bottom: 30px; }
.programa-frame::after {
  top: 36px; bottom: 36px;
  left: 36px; right: 36px;
  border-color: rgba(26, 18, 8, 0.15);
}

.programa-cover {
  padding: clamp(28px, 4vw, 44px) clamp(30px, 5vw, 60px) clamp(24px, 3vw, 32px);
  text-align: center;
  border-bottom: 1px solid rgba(26, 18, 8, 0.25);
  position: relative;
}
.programa-cover__top {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--velvet);
  margin-bottom: 12px;
}
.programa-cover__top span {
  display: inline-block;
  padding: 0 12px;
  border-left: 1px solid rgba(26, 18, 8, 0.4);
  border-right: 1px solid rgba(26, 18, 8, 0.4);
}
.programa-cover h2 {
  font-family: "Playfair Display", "Bodoni Moda", serif;
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--paper-line);
  letter-spacing: -0.02em;
}
.programa-cover h2 em {
  font-style: italic;
  font-weight: 900;
}
.programa-cover__sub {
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--velvet);
}
.programa-cover__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 0;
  color: var(--velvet);
  font-family: var(--serif);
  font-size: 18px;
}
.programa-cover__ornament::before, .programa-cover__ornament::after {
  content: ""; flex: 0 0 60px; height: 1px; background: var(--velvet);
}

/* Program body — two-column reparto layout */
.programa-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: clamp(24px, 3vw, 36px) clamp(30px, 5vw, 60px) clamp(24px, 3vw, 36px);
}
.programa-identidad p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26, 18, 8, 0.78);
  margin-bottom: 12px;
}
.programa-identidad p:last-child { margin-bottom: 0; }
.programa-identidad p strong {
  color: var(--paper-line);
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

/* Bebas Neue (var(--serif)) — siempre requiere letter-spacing para legibilidad */
[class*="title"],
[class*="head"],
.h2, .h3, .h4,
.bebas-text,
.programa-mision__text strong,
.elenco-voices li strong {
  letter-spacing: 0.04em;
}
.programa-identidad p em {
  font-style: italic;
  color: var(--velvet);
}
.programa-col {
  padding: 0 clamp(20px, 3vw, 40px);
}
.programa-col + .programa-col {
  border-left: 1px solid rgba(26, 18, 8, 0.2);
}
.programa-col h3 {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--velvet);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26, 18, 8, 0.35);
}

.cast-entry {
  display: grid;
  grid-template-columns: 78px 1fr 32px;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px dashed rgba(26, 18, 8, 0.18);
  cursor: pointer;
  transition: padding 0.3s ease, background 0.3s ease;
  align-items: start;
}
.cast-entry:hover { padding-left: 8px; background: rgba(26, 18, 8, 0.025); }
.cast-entry__toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--velvet);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--velvet);
  align-self: center;
  transition: transform 0.35s cubic-bezier(0.6, 0, 0.2, 1), background 0.25s ease, color 0.25s ease;
  line-height: 1;
  user-select: none;
}
.cast-entry__toggle span { display: block; margin-top: -2px; }
.cast-entry:hover .cast-entry__toggle {
  background: var(--velvet);
  color: var(--paper);
}
.cast-entry.is-open .cast-entry__toggle {
  background: var(--velvet);
  color: var(--paper);
  transform: rotate(45deg);
}
.cast-entry__portrait {
  width: 78px;
  height: 98px;
  overflow: hidden;
  border: 1px solid rgba(26, 18, 8, 0.4);
  position: relative;
  background: var(--paper-shadow);
  box-shadow:
    0 4px 10px rgba(26, 18, 8, 0.18),
    inset 0 0 0 3px var(--paper);
}
.cast-entry__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.55) sepia(0.32) contrast(0.95) brightness(0.97);
  transition: filter 0.5s ease;
}
.cast-entry__portrait::after {
  /* paper grain over the photo for printed-program feel */
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(26,18,8,0.04) 0px, rgba(26,18,8,0.04) 1px, transparent 1px, transparent 3px),
    linear-gradient(180deg, transparent 60%, rgba(26, 18, 8, 0.18));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.cast-entry:hover .cast-entry__portrait img,
.cast-entry.is-open .cast-entry__portrait img {
  filter: grayscale(0) sepia(0) contrast(1) brightness(1);
}
.cast-entry__info { display: flex; flex-direction: column; }
.cast-entry__role {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--velvet);
  margin-bottom: 4px;
}
.cast-entry__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--paper-line);
  line-height: 1.1;
}
.cast-entry__bio {
  display: none;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(26, 18, 8, 0.78);
  line-height: 1.55;
  margin-top: 10px;
  max-width: 42ch;
}
.cast-entry.is-open .cast-entry__bio { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.cast-entry__chevron {
  position: absolute;
  margin-left: -22px;
  margin-top: 6px;
  color: var(--velvet);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.cast-entry.is-open .cast-entry__chevron { transform: rotate(90deg); }

/* Junta directiva — ledger style on the program */
.programa-junta {
  padding: 0 clamp(30px, 5vw, 60px) clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(26, 18, 8, 0.2);
}
.programa-junta__head {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--velvet);
  text-align: center;
  margin: 28px 0 20px;
  position: relative;
}
.programa-junta__head::before, .programa-junta__head::after {
  content: ""; position: absolute; top: 50%;
  width: 80px; height: 1px; background: var(--velvet); opacity: 0.4;
}
.programa-junta__head::before { left: 50%; margin-left: -200px; }
.programa-junta__head::after { left: 50%; margin-left: 120px; }
.junta-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.junta-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(26, 18, 8, 0.18);
  align-items: baseline;
}
.junta-row__role {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--velvet);
}
.junta-row__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  color: var(--paper-line);
}

.programa-elenco {
  display: none;
}
.programa-elenco__head, .programa-elenco__text, .elenco-voices, .elenco-voices li, .elenco-voices li strong { display: none; }

/* ============================================================
   PROGRAMA — Mission summary (replaces elenco)
   ============================================================ */
.programa-mision {
  padding: clamp(28px, 4vw, 40px) clamp(30px, 5vw, 60px) clamp(36px, 5vw, 56px);
  border-top: 1px solid rgba(26, 18, 8, 0.2);
  background: linear-gradient(180deg, transparent, rgba(212, 169, 74, 0.06));
  text-align: center;
}
.programa-mision__head {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--velvet);
  margin-bottom: 18px;
}
.programa-mision__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  max-width: 60ch;
  margin: 0 auto;
  color: var(--paper-line);
}
.programa-mision__text strong {
  color: var(--velvet);
  font-weight: 700;
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.3em;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 10px;
}
.programa-mision__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 640px;
  margin: clamp(28px, 4vw, 40px) auto clamp(28px, 4vw, 40px);
  padding: 22px 0;
  border-top: 1px solid rgba(26, 18, 8, 0.18);
  border-bottom: 1px solid rgba(26, 18, 8, 0.18);
}
.programa-mision__stat .num {
  font-family: var(--serif);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--velvet);
  line-height: 1;
}
.programa-mision__stat .label {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.65);
  line-height: 1.5;
  margin-top: 10px;
}
.programa-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--velvet);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.programa-cta:hover { background: var(--velvet-hi); transform: translateY(-2px); }
.programa-cta .arrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  transition: transform 0.2s ease;
}
.programa-cta:hover .arrow { transform: translateX(3px); }
@media (max-width: 560px) {
  .programa-mision__stats { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   FUNCIÓN — Cast roster + Formato técnico + CTA
   ============================================================ */
.funcion-elenco {
  max-width: 900px;
  margin: clamp(60px, 8vw, 100px) auto 0;
  text-align: center;
}
.funcion-elenco__head {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.funcion-elenco__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.1;
}
.funcion-elenco__intro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(242, 233, 210, 0.75);
  max-width: 56ch;
  margin: 0 auto 36px;
}
.voice-roster {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(212, 169, 74, 0.25);
  border-bottom: 1px solid rgba(212, 169, 74, 0.25);
  padding: 22px 0;
}
.voice-roster__group {
  text-align: center;
  padding: 0 8px;
  border-right: 1px dashed rgba(212, 169, 74, 0.18);
}
.voice-roster__group:last-child { border-right: 0; }
.voice-roster__count {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--brass);
  line-height: 1;
}
.voice-roster__label {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.75;
  margin-top: 8px;
}
@media (max-width: 720px) {
  .voice-roster { grid-template-columns: repeat(3, 1fr); gap: 14px 0; }
  .voice-roster__group:nth-child(3) { border-right: 0; }
}

/* Team roster — directores + pianistas en la Función */
.team-roster {
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 0;
  gap: 18px;
}
.team-roster .voice-roster__group { display: none; }
.team-member {
  text-align: center;
  padding: 0 8px;
  border-right: 1px dashed rgba(212, 169, 74, 0.18);
}
.team-member:last-child { border-right: 0; }
.team-member__portrait {
  width: 80px;
  height: 100px;
  object-fit: cover;
  object-position: center 15%;
  border: 1px solid rgba(212, 169, 74, 0.4);
  border-radius: 4px;
  margin: 0 auto 12px;
  display: block;
  filter: grayscale(0.2) brightness(1.05);
}
.team-member__role {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}
.team-member__name {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.1;
}
@media (max-width: 720px) {
  .team-roster { grid-template-columns: repeat(2, 1fr); }
  .team-member:nth-child(2) { border-right: 0; }
}

.funcion-tecnico {
  max-width: 900px;
  margin: clamp(50px, 6vw, 80px) auto 0;
}
.funcion-tecnico__head {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
  text-align: center;
}
.funcion-tecnico__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tecnico-card {
  padding: 22px 16px;
  border: 1px solid rgba(212, 169, 74, 0.25);
  border-radius: 6px;
  background: rgba(212, 169, 74, 0.04);
  text-align: center;
}
.tecnico-card__icon {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--brass);
  margin-bottom: 12px;
  line-height: 1;
}
.tecnico-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  color: var(--paper);
  margin-bottom: 6px;
  line-height: 1.25;
}
.tecnico-card__sub {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 233, 210, 0.55);
}
@media (max-width: 720px) {
  .funcion-tecnico__grid { grid-template-columns: repeat(2, 1fr); }
}

.funcion-cta-wrap {
  text-align: center;
  margin-top: clamp(60px, 8vw, 100px);
}
.funcion-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 44px;
  background: linear-gradient(180deg, var(--brass-2) 0%, var(--brass) 60%, var(--brass-deep) 100%);
  color: var(--night);
  font-family: var(--neon);
  font-size: clamp(13px, 1.5vw, 17px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 2px solid #f0d68e;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 220, 0.6),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3),
    0 0 0 6px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(212, 169, 74, 0.5),
    0 20px 50px rgba(0, 0, 0, 0.5);
  font-weight: 400;
  text-shadow: 0 1px 0 rgba(255, 250, 220, 0.4);
}
.funcion-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 220, 0.7),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3),
    0 0 0 8px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(255, 215, 90, 0.7),
    0 24px 60px rgba(0, 0, 0, 0.6);
}
.funcion-cta .arrow { transition: transform 0.2s ease; font-size: 18px; }
.funcion-cta:hover .arrow { transform: translateX(4px); }
.funcion-cta-sub {
  display: block;
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 20px;
  opacity: 0.7;
}

/* ============================================================
   TRAMOYA — Press kit + Trust signals
   ============================================================ */
.press-kit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 50px);
}
.press-kit .clipboard__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(26, 18, 8, 0.18);
  align-items: baseline;
}
.press-kit .clipboard__row .key {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 18, 8, 0.6);
}
.press-kit .clipboard__row .val {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  color: var(--paper-line);
}
.press-kit .clipboard__row .val em {
  font-style: normal;
  color: var(--velvet);
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 6px;
}
.press-kit .clipboard__item {
  grid-template-columns: 22px 1fr;
}
.press-kit .clipboard__item .clipboard__text {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .press-kit { grid-template-columns: 1fr; }
}

.tramoya-cta {
  text-align: center;
  margin-top: clamp(60px, 8vw, 100px);
}
.tramoya-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.tramoya-cta a:hover { background: var(--brass); color: var(--night); transform: translateY(-2px); }
.tramoya-cta__arrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
@media (max-width: 760px) {
  .programa-body { grid-template-columns: 1fr; gap: 30px; }
  .programa-col + .programa-col { border-left: 0; border-top: 1px solid rgba(26, 18, 8, 0.2); padding-top: 30px; }
  .junta-table { grid-template-columns: 1fr; }
  .elenco-voices { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ACT 4 — LA FUNCIÓN — curtains rise, lights down
   ============================================================ */
.act-funcion {
  position: relative;
  background: #050403;
  color: var(--paper);
  padding: 0;
  overflow: hidden;
  /* Spotlight cursor handled by JS-set CSS var */
}

.funcion-stage {
  position: relative;
  min-height: 100vh;
  padding: clamp(80px, 12vw, 160px) var(--gut);
  background:
    radial-gradient(800px 600px at var(--spot-x, 50%) var(--spot-y, 30%),
      rgba(212, 169, 74, 0.18), transparent 50%),
    #050403;
  transition: background-position 0.3s ease;
}

/* Velvet curtains */
.curtain {
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  z-index: 10;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.55) 0px,
      rgba(0,0,0,0.55) 6px,
      var(--velvet-deep) 8px,
      var(--velvet) 22px,
      var(--velvet-hi) 32px,
      var(--velvet) 42px,
      var(--velvet-deep) 54px,
      rgba(0,0,0,0.55) 60px,
      rgba(0,0,0,0.55) 66px);
  box-shadow:
    inset 0 0 80px rgba(0,0,0,0.7),
    inset 0 -60px 90px rgba(0,0,0,0.5),
    0 0 100px rgba(0,0,0,0.8);
  transition: transform 2.4s cubic-bezier(0.65, 0, 0.2, 1);
}
.curtain--left { left: 0; transform: translateX(0); transform-origin: left center; }
.curtain--right { right: 0; transform: translateX(0); transform-origin: right center; }
.curtain::before {
  /* curtain rod */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: linear-gradient(180deg, var(--brass-2), var(--brass-deep));
  z-index: 11;
}
.curtain::after {
  /* curtain fringe */
  content: "";
  position: absolute;
  top: 12px;
  left: 0; right: 0;
  height: 14px;
  background:
    radial-gradient(circle at 8px 100%, transparent 6px, var(--brass) 6px, var(--brass-deep) 12px),
    repeating-radial-gradient(circle at 8px 100%, var(--brass-deep) 0, var(--brass) 4px, var(--brass-deep) 12px, var(--brass-deep) 16px);
  background-size: 16px 14px;
}
.act-funcion.is-open .curtain--left { transform: translateX(-100%); }
.act-funcion.is-open .curtain--right { transform: translateX(100%); }

.act-funcion .funcion-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease 0.4s, transform 1.2s ease 0.4s;
}
.act-funcion.is-open .funcion-content {
  opacity: 1;
  transform: none;
}

.funcion-overture {
  text-align: center;
  margin: 0 auto clamp(60px, 8vw, 100px);
  max-width: 900px;
}
.funcion-overture__small {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.funcion-overture h2 {
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 140px);
  font-weight: 500;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.funcion-overture h2 .donizetti {
  display: block;
  font-style: normal;
  font-size: 0.28em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 22px;
  color: var(--brass);
  font-family: var(--type);
}
.funcion-overture__intro {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(242, 233, 210, 0.85);
}

/* Sinopsis as scenes */
.escenas {
  max-width: 900px;
  margin: 0 auto;
}
.escena {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(212, 169, 74, 0.2);
  align-items: start;
  position: relative;
}
.escena__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  color: var(--brass);
}
.escena__num span {
  display: block;
  font-family: var(--type);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(212, 169, 74, 0.6);
  margin-top: 6px;
}
.escena__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 12px;
}
.escena__body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(242, 233, 210, 0.75);
  max-width: 60ch;
}

.aria-call {
  margin-top: clamp(60px, 8vw, 100px);
  text-align: center;
  padding: clamp(40px, 6vw, 70px) var(--gut);
  border: 1px solid rgba(212, 169, 74, 0.25);
  border-radius: 4px;
  background: radial-gradient(ellipse at center, rgba(212, 169, 74, 0.08), transparent 60%);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.aria-call__label {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.aria-call__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 50px);
  color: var(--paper);
  line-height: 1.05;
  margin-bottom: 14px;
}
.aria-call__sub {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(212, 169, 74, 0.85);
  font-size: 16px;
}

@media (max-width: 640px) {
  .escena { grid-template-columns: 1fr; gap: 14px; }
  .escena__num { font-size: 48px; }
}

/* ============================================================
   ACT 5 — TRAMOYA — backstage clipboard
   ============================================================ */
.act-tramoya {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--gut);
  background:
    repeating-linear-gradient(90deg,
      transparent 0,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 61px),
    var(--concreto-2);
  color: var(--paper);
}
.tramoya-head {
  max-width: 720px;
  margin-bottom: clamp(50px, 7vw, 80px);
}
.tramoya-head__label {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.tramoya-head h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.tramoya-head h2 em { font-style: italic; color: var(--brass); }
.tramoya-head__sub {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(242, 233, 210, 0.65);
  max-width: 56ch;
}

.clipboards {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 4vw, 50px);
}
.clipboard {
  background: var(--paper);
  color: var(--paper-line);
  padding: 28px 30px 30px;
  position: relative;
  font-family: var(--type);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  border-radius: 2px;
}
.clipboard::before {
  /* metal clip */
  content: "";
  position: absolute;
  top: -16px; left: 50%;
  width: 90px; height: 28px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #c4c4c4 0%, #777 50%, #c4c4c4 100%);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  z-index: 2;
}
.clipboard::after {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  width: 60px; height: 12px;
  background: #555;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
}
.clipboard__head {
  font-family: var(--type);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--velvet);
  padding-top: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--velvet);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.clipboard__head h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper-line);
  line-height: 1;
}
.clipboard__list { display: flex; flex-direction: column; gap: 6px; }
.clipboard__item {
  display: grid;
  grid-template-columns: 28px 22px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(26, 18, 8, 0.22);
  align-items: start;
}
.clipboard__check {
  width: 18px; height: 18px;
  border: 1.5px solid var(--velvet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--velvet);
  border-radius: 2px;
  margin-top: 2px;
}
.clipboard__check.is-checked::before { content: "✓"; font-weight: bold; }
.clipboard__id {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(26, 18, 8, 0.55);
  margin-top: 4px;
}
.clipboard__text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--paper-line);
}
.clipboard__text strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  display: block;
}

/* Variant — fines clipboard with red marker scrawl */
.clipboard--fines .clipboard__item { grid-template-columns: 38px 1fr; }
.clipboard--fines .clipboard__id {
  font-family: var(--graff);
  font-size: 24px;
  color: var(--velvet);
  letter-spacing: 0;
  text-transform: none;
  transform: rotate(-4deg);
  margin-top: -4px;
}

/* Junta — separate clipboard */
.clipboard--junta { margin-top: 40px; }
.clipboard--junta .clipboard__item {
  grid-template-columns: 28px 130px 1fr;
}

@media (max-width: 820px) {
  .clipboards { grid-template-columns: 1fr; gap: 60px; }
}

/* ============================================================
   ACT 6 — APLAUSO + STAGE DOOR
   ============================================================ */
.act-aplauso {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--gut) 60px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 169, 74, 0.15), transparent 60%),
    var(--night);
  text-align: center;
  overflow: hidden;
}
.bravo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(80px, 16vw, 240px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--brass);
  position: relative;
  display: inline-block;
}
.bravo::before {
  content: "¡";
  font-style: normal;
  color: var(--velvet-hi);
  margin-right: 0.12em;
}
.bravo::after {
  content: "!";
  font-style: normal;
  color: var(--velvet-hi);
  margin-left: 0.18em;
}
.bravo-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.star {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  opacity: 0.6;
  font-size: 18px;
  animation: floatStar 6s ease-in-out infinite;
}
@keyframes floatStar {
  0%, 100% { transform: translateY(0) rotate(-8deg); opacity: 0.5; }
  50% { transform: translateY(-12px) rotate(4deg); opacity: 1; }
}
.applause-meta {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
  margin-top: 30px;
}

/* ============================================================
   CÓMO PROGRAMAR — proceso en 3 pasos (sales conversion)
   ============================================================ */
.how-to-book {
  max-width: 940px;
  margin: clamp(60px, 8vw, 100px) auto 0;
  text-align: center;
}
.how-to-book__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 42px);
  color: var(--paper);
  margin-bottom: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.how-to-book__title em {
  color: var(--brass);
  font-style: italic;
}
.how-to-book__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}
.step {
  padding: 28px 24px;
  border: 1px solid rgba(212, 169, 74, 0.25);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(212, 169, 74, 0.08), rgba(212, 169, 74, 0.02));
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
  background: linear-gradient(180deg, rgba(212, 169, 74, 0.14), rgba(212, 169, 74, 0.04));
}
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 900;
  font-size: 44px;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 10px;
  line-height: 1.15;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 236, 216, 0.72);
}
.how-to-book__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 236, 216, 0.85);
  padding: 10px 22px;
  border: 1px solid rgba(212, 169, 74, 0.3);
  border-radius: 999px;
  background: rgba(212, 169, 74, 0.05);
}
.how-to-book__note strong {
  color: var(--brass);
  font-weight: 700;
}
.how-to-book__note .dot {
  width: 8px;
  height: 8px;
  background: var(--brass);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--brass);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
@media (max-width: 720px) {
  .how-to-book__steps { grid-template-columns: 1fr; }
}

/* Stage door — brass plaque */
.stage-door {
  margin: clamp(70px, 10vw, 110px) auto 0;
  max-width: 720px;
  position: relative;
}
.stage-door__head {
  font-family: var(--type);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.55;
  margin-bottom: 30px;
}
.plaque {
  background: linear-gradient(160deg, var(--brass-2) 0%, var(--brass) 40%, var(--brass-deep) 100%);
  color: var(--negro-escena);
  padding: 44px 44px;
  border-radius: 2px;
  position: relative;
  box-shadow:
    0 0 0 4px rgba(140, 106, 31, 0.6) inset,
    0 0 0 7px var(--brass-deep) inset,
    0 30px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(212, 169, 74, 0.25);
}
.plaque::before, .plaque::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  background: radial-gradient(circle at 30% 30%, #44321a, #1a1208);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4);
}
.plaque::before { top: 14px; left: 14px; }
.plaque::after { top: 14px; right: 14px; }
.plaque-screw-bl, .plaque-screw-br {
  position: absolute;
  width: 14px; height: 14px;
  background: radial-gradient(circle at 30% 30%, #44321a, #1a1208);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4);
}
.plaque-screw-bl { bottom: 14px; left: 14px; }
.plaque-screw-br { bottom: 14px; right: 14px; }

.plaque__title {
  font-family: var(--neon);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 10px;
  color: var(--negro-escena);
  text-shadow: 0 1px 0 rgba(255, 250, 220, 0.4);
}
.plaque__sub {
  font-family: var(--institutional);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.85);
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.35);
  padding-bottom: 22px;
}
.plaque__rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
}
.plaque__row {
  text-align: center;
}
.plaque__row .lbl {
  font-family: var(--institutional);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.7);
  display: block;
  margin-bottom: 8px;
}
.plaque__row .val {
  font-family: var(--institutional);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--negro-escena);
}
.plaque__row.full { grid-column: 1 / -1; }

.stage-door__cta {
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--type);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 18px 30px;
  border: 1px solid var(--brass);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.stage-door__cta:hover {
  background: var(--brass);
  color: var(--night-2);
  transform: translateY(-2px);
}

/* ============================================================
   TELÓN FINAL — legal footer
   ============================================================ */
.telon-final {
  background: var(--velvet-deep);
  color: rgba(242, 233, 210, 0.75);
  padding: 60px var(--gut) 30px;
  border-top: 6px solid var(--brass);
  position: relative;
}
.telon-final::before {
  content: "";
  position: absolute;
  top: -6px; left: 0; right: 0;
  height: 14px;
  background:
    radial-gradient(circle at 8px 100%, transparent 6px, var(--brass-deep) 6px, transparent 12px);
  background-size: 16px 14px;
  background-repeat: repeat-x;
}
.telon-final__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.telon-final__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.telon-final__brand img { width: 56px; height: 56px; }
.telon-final__brand-text h3 {
  font-family: var(--neon);
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--brass-2);
  margin-bottom: 6px;
}
.telon-final__brand-text p {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 233, 210, 0.6);
}
.telon-final__col h4 {
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 16px;
}
.telon-final__col a, .telon-final__col span {
  display: block;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(242, 233, 210, 0.7);
}
.telon-final__col a:hover { color: var(--brass-2); }
.telon-final__legal {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(242, 233, 210, 0.15);
  font-family: var(--type);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.8;
  color: rgba(242, 233, 210, 0.5);
}
@media (max-width: 820px) {
  .telon-final__inner { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   REFINAMIENTO RESPONSIVE — móvil
   Todo aquí está dentro de media queries max-width, así que el
   escritorio (≥ los breakpoints) NO se ve afectado.
   ============================================================ */

/* ---- TABLET / MÓVIL ANCHO (≤ 760px) ---- */
@media (max-width: 760px) {
  /* La marquesina (cartel LED) gana presencia: el letrero se centra
     verticalmente sobre el negro de escena en lugar de quedar como una
     franja fina arriba. */
  .act-marquesina {
    min-height: min(58vh, 460px);
    background-position: center 46%, center;
    background-size: contain, cover;
  }
}

/* ---- MÓVIL (≤ 640px) ---- */
@media (max-width: 640px) {
  /* NAV — recuperamos un CTA compacto siempre visible (la conversión
     no debe perderse en móvil) y ajustamos la marca. */
  .theatre-nav { padding: 10px var(--gut); }
  .theatre-nav__cta {
    display: inline-flex;
    padding: 9px 15px;
    font-size: 10px;
    letter-spacing: 0.12em;
    box-shadow: 0 0 14px rgba(212, 169, 74, 0.32);
  }
  .theatre-nav__cta .arrow { display: none; }
  .theatre-nav__brand span { font-size: 12px; letter-spacing: 0.12em; }
  .theatre-nav__brand img { width: 26px; height: 26px; }

  /* CTAs anchos: que no desborden el ancho del móvil */
  .funcion-cta {
    padding: 18px 26px;
    font-size: 12px;
    letter-spacing: 0.16em;
    max-width: 100%;
    text-align: center;
  }
  .how-to-book__note {
    display: inline-block;
    letter-spacing: 0.12em;
    line-height: 1.7;
    text-align: center;
  }
  .how-to-book__note .dot {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
  }

  /* APLAUSO — sin estrellas animadas de fondo en móvil */
  .bravo-stars { display: none; }
}

/* ---- MÓVIL ESTRECHO (≤ 600px) ---- */
@media (max-width: 600px) {
  /* PLACA (puerta de artistas) — las dos columnas desbordaban con el
     correo y el teléfono. Se apilan y el texto largo puede partir. */
  .plaque { padding: 30px 24px; }
  .plaque__rows { grid-template-columns: 1fr; gap: 18px; }
  .plaque__title { font-size: 26px; letter-spacing: 0.06em; }
  .plaque__sub {
    font-size: 10px;
    letter-spacing: 0.22em;
    margin-bottom: 22px;
    padding-bottom: 16px;
  }
  .plaque__row .val {
    font-size: 15px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .stage-door__cta {
    font-size: 11px;
    letter-spacing: 0.16em;
    padding: 16px 22px;
    text-align: center;
  }
}

/* ---- MÓVIL PEQUEÑO (≤ 480px) ---- */
@media (max-width: 480px) {
  /* La entrada: menos relleno y el sello deja de superponerse a los
     datos (pasa a flujo normal, centrado bajo el contenido). */
  .ticket__main { padding: 28px 22px; }
  .ticket__stub { padding: 24px 22px; }
  .ticket__theater { font-size: 26px; }
  .ticket__stamp {
    position: static;
    transform: rotate(-6deg);
    margin: 20px auto 0;
    width: 86px;
    height: 86px;
  }
  .ticket__validate {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .btn-tear { justify-content: center; }
  .ticket__validate-msg { text-align: center; }

  /* Marca del nav: solo logo para garantizar sitio al CTA */
  .theatre-nav__brand span { display: none; }
}
