/*
 * ╔══════════════════════════════════════════════════════════════════╗
 * ║        MI GENERACIÓN TOUR — ESTILOS PRINCIPALES                 ║
 * ║   Para cambiar colores y fuentes, editar la sección :root       ║
 * ║   Ver docs/MANUAL.md para instrucciones detalladas              ║
 * ╚══════════════════════════════════════════════════════════════════╝
 */

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 1: VARIABLES DE DISEÑO
   ⚡ AQUÍ SE CAMBIAN COLORES Y FUENTES
   ══════════════════════════════════════════════════════════════════ */
:root {
  /* ── PALETA DORADA (Color principal) ── */
  --gold-1: #ffc26f;          /* ⚡ Color dorado principal */
  --gold-2: #E8C999;          /* Dorado claro */
  --gold-3: #F3D7A3;          /* Dorado muy claro / hover */
  /* ── ROJOS (Emocionales) ── */
  --wine-1: #5e0006;
  --wine-2: #9b0f06;
  --wine-3: #7A0005;
  /* ── FONDOS ── */
  --ink:   #000000;
  --ink-2: #0B0B0B;
  --ink-3: #161410;

  /* ── TEXTOS ── */
  --cream:   #E8C999;
  --cream-2: #FFC26F;
  --stone:   #A06E4B;




  /* ── TIPOGRAFÍA ── */
  /* ⚡ CAMBIAR FUENTES: Reemplazar los nombres y actualizar el @import en index.html */
--font-display: 'Bebas Neue', sans-serif;
--font-script: 'Playfair Display', serif;
--font-body: 'Helvetica Neue', Arial, sans-serif;       /* Cuerpo, UI */  

  /* ── ESPACIADO Y DIMENSIONES ── */
  --section-pad: clamp(6rem, 12vw, 12rem);
  --side-pad: 5vw;
  --radius-cut: 12px;   /* El "corte" de la esquina en botones */

  /* ── TRANSICIONES ── */
  --transition-fast: 0.15s ease;
  --transition-mid: 0.4s ease;
  --transition-slow: 0.9s ease;

  /* ── GRAIN / TEXTURA ── */
  --grain-opacity: 0.035;
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 2: RESET & BASE
   ══════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 3: GRAIN OVERLAY (textura de película)
   ══════════════════════════════════════════════════════════════════ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: var(--grain-opacity);
  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)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 4: CURSOR PERSONALIZADO (solo desktop)
   ══════════════════════════════════════════════════════════════════ */
#cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-1);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: difference;
  opacity: 0;
}

#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 75, 0.4);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  mix-blend-mode: difference;
  opacity: 0;
}

body:hover #cursor,
body:hover #cursor-ring {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 5: NAVEGACIÓN
   ══════════════════════════════════════════════════════════════════ */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem var(--side-pad);
}

.nav-brand {
  font-family: var(--font-display-alt);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(200, 168, 75, 0.7);
  font-style: italic;
}

.nav-link {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(200, 168, 75, 0.5);
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
  padding-bottom: 0.2rem;
  cursor: pointer;
  transition: all var(--transition-mid);
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold-1);
  border-bottom-color: var(--gold-1);
  outline: none;
}
/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 6: HERO PRINCIPAL
   ══════════════════════════════════════════════════════════════════ */
:root {
      /* Paleta primaria */
      --color-gold:       #FFC26F;
      --color-gold-dark:  #e8a84e;
      --color-black:      #000000;
      --color-light:      #E9E5DE;
      --color-burgundy:   #5E0006;

      /* Paleta secundaria */
      --color-brown-dark: #663717;
      --color-cream:      #E8C999;
      --color-brown-mid:  #A06E4B;
      --color-red:        #9B0F06;

      /* Tipografías */
      --font-title:       'Akira Expanded';
      --font-script:      'Baroneys Textured', Georgia, serif;
      --font-body:        'Helvetica Neue', Arial, sans-serif;

      /* Hero sizing */
      --hero-height:      100svh;
      --carousel-speed:   26s;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background: var(--color-black);
      color: var(--color-light);
      font-family: var(--font-body);
      overflow-x: hidden;
    }

    /* ═══════════════════════════════════════════════════════════════
       HERO WRAPPER
    ═══════════════════════════════════════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      height: var(--hero-height);
      min-height: 560px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    /* ─── CAPA 1: Fondo fijo (teatro) ─── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    url('/images/teatro-bg.webp') center center / cover no-repeat;

  background-color: #0a0000;

  /* AJUSTE CLAVE */
  filter: blur(1.5px) brightness(0.65);

  transform: scale(1.04);
  will-change: transform;
}

    /* ─── CAPA 2: Overlay degradado rico ─── */
    .hero__overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        radial-gradient(ellipse 80% 60% at 50% 40%,
          rgba(94, 0, 6, 0.55) 0%,
          rgba(0, 0, 0, 0.85) 70%,
          rgba(0, 0, 0, 0.98) 100%),
        linear-gradient(180deg,
          rgba(0,0,0,0.6) 0%,
          transparent 30%,
          transparent 60%,
          rgba(0,0,0,0.8) 100%);
    }

    /* ─── CAPA 3: Grain/ruido de película ─── */
    .hero__grain {
      position: absolute;
      inset: 0;
      z-index: 3;
      opacity: 0.045;
      pointer-events: none;
      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)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      animation: grain-shift 0.8s steps(2) infinite;
    }
    @keyframes grain-shift {
      0%   { background-position: 0 0; }
      25%  { background-position: -15px 8px; }
      50%  { background-position: 8px -15px; }
      75%  { background-position: -8px -8px; }
      100% { background-position: 12px 5px; }
    }

    /* ─── CAPA 4: Vignette (bordes oscuros suaves) ─── */
    .hero__vignette {
      position: absolute;
      inset: 0;
      z-index: 4;
      pointer-events: none;
      background:
        radial-gradient(ellipse 110% 110% at 50% 50%,
          transparent 40%,
          rgba(0,0,0,0.6) 100%);
    }

    /* ─── CAPA 5: Fade lateral para el carrusel ─── */
    .hero__fade-left,
    .hero__fade-right {
      position: absolute;
      top: 0;
      bottom: 0;
      width: clamp(80px, 14vw, 200px);
      z-index: 10;
      pointer-events: none;
    }
    .hero__fade-left {
      left: 0;
      background: linear-gradient(to right,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.4) 60%,
        transparent 100%);
    }
    .hero__fade-right {
      right: 0;
      background: linear-gradient(to left,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.4) 60%,
        transparent 100%);
    }

    /* ═══════════════════════════════════════════════════════════════
       CAPA 6: TÍTULO ESTÁTICO
    ═══════════════════════════════════════════════════════════════ */
    .hero__title-wrapper {
      position: absolute;
      left: clamp(20px, 6vw, 90px);
      top: 50%;
      transform: translateY(-50%);
      z-index: 6;
      pointer-events: none;
      user-select: none;
    }

    .hero__title {
      font-family: var(--font-title);
      font-weight: 800;
      line-height: 0.88;
      letter-spacing: -0.01em;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .hero__title .line {
      display: block;
      font-size: clamp(3.6rem, 11.5vw, 10.5rem);
      color: var(--color-gold);
      text-transform: uppercase;
      text-shadow:
        0 0 40px rgba(255, 194, 111, 0.3),
        0 0 80px rgba(255, 194, 111, 0.12),
        2px 2px 0px rgba(94, 0, 6, 0.5);
      -webkit-text-stroke: 1px rgba(255, 194, 111, 0.15);
      position: relative;
    }

    /* Acento rojo en "CIÓN" */
    .hero__title .accent {
      color: var(--color-cream);
    }

    /* "TOUR" en tipografía script */
    .hero__title .line--tour {
      font-family: var(--font-script);
      font-size: clamp(1.8rem, 5.5vw, 5.2rem);
      font-weight: 400;
      color: var(--color-cream);
      text-shadow: 0 0 30px rgba(232, 201, 153, 0.25);
      -webkit-text-stroke: 0;
      letter-spacing: 0.04em;
      margin-top: 0.08em;
    }

    /* Línea decorativa dorada */
    .hero__title-wrapper::before {
      content: '';
      position: absolute;
      left: -clamp(12px, 3vw, 28px);
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-gold) 20%,
        var(--color-gold-dark) 60%,
        transparent 100%
      );
      border-radius: 2px;
      box-shadow: 0 0 12px rgba(255,194,111,0.5);
    }

    /* ─── Info badge (evento) ─── */
/* ─── Info badge (evento) - Actualizado: 50% más grande ─── */
    .hero__event-badge {
      position: absolute;
      right: clamp(20px, 5vw, 60px);
      top: 50%;
      transform: translateY(-50%);
      z-index: 7;
      text-align: center;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.2em;
    }

    .hero__badge-artist {
      font-family: var(--font-title);
      font-size: clamp(1rem, 2.5vw, 2rem);
      color: #fff;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    /* ═══════════════════════════════════════════════════════════════
   CAPA 9: FORMULARIO DESPLEGABLE EN EL HERO
   ═══════════════════════════════════════════════════════════════ */
/* ─── CONTENEDOR Y TARJETA ─── */
.hero__form-overlay {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1rem, 5vw, 5rem);
  pointer-events: none;
}

.hero__form-card {
  background: rgba(8, 7, 5, 0.88);
  backdrop-filter: blur(25px) saturate(1.5);
  -webkit-backdrop-filter: blur(25px) saturate(1.5);
  border: 1px solid rgba(255, 194, 111, 0.25);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  width: min(440px, 100%);
  pointer-events: all;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero__form-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── TEXTOS E INPUTS ─── */
.rfcard-badge {
  display: inline-block;
  border: 1px solid var(--color-gold);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.hero__form-card .rfcard-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-gold);
  margin: 0;
}

.rfcard-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.rf-field-group { margin-bottom: 0.8rem; }

.hero__form-card .rf-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 194, 111, 0.15);
  color: #fff;
  padding: 0.9rem;
  border-radius: 10px;
  font-family: var(--font-body);
}

.hero__form-card .rf-input:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

/* ─── SELECTOR DE CIUDAD ─── */
.rf-row-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.rf-radios {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.rf-radios label { flex: 1; cursor: pointer; }
.rf-radios input { display: none; }

.rf-radio-box {
  display: block;
  text-align: center;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: 0.3s;
}

.rf-radios input:checked + .rf-radio-box {
  background: rgba(255, 194, 111, 0.15);
  border-color: var(--color-gold);
  color: #fff;
}

/* ─── BOTÓN ─── */
.rfcard-submit {
  width: 100%;
  background: var(--color-gold);
  color: #000;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-family: var(--font-title);
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
}

.rfcard-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.rfcard-feedback {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  min-height: 1.2em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero__form-overlay { justify-content: center; padding: 2rem; }
}

@media (max-width: 600px) {
  .hero__form-overlay { align-items: flex-end; padding: 0; }
  .hero__form-card {
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    transform: translateY(100%);
  }
  .hero__form-card.is-visible { transform: translateY(0); }
}

    /* Logo 50% más grande que el original */
    .hero__logo {
      height: clamp(120px, 15vw, 210px) !important;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .hero__badge-star {
      color: var(--color-gold);
      font-size: 0.8em;
    }

    .hero__badge-sep {
      width: 60px; /* Un poco más ancho para acompañar el logo */
      height: 1px;
      background: linear-gradient(to right, transparent, var(--color-gold), transparent);
      margin: 0.3em auto;
    }

    /* Fechas y año escalados */
    .hero__badge-date,
    .hero__badge-year {
      font-family: var(--font-title);
      font-size: clamp(0.9rem, 1.8vw, 1.35rem) !important;
      letter-spacing: 0.2em;
      color: var(--color-cream);
    }

    /* Número del día escalado significativamente */
    .hero__badge-num {
      font-family: var(--font-title);
      font-size: clamp(3.6rem, 7.5vw, 6rem) !important;
      color: var(--color-gold);
      line-height: 1 !important;
      text-shadow: 0 0 40px rgba(255,194,111,0.4);
    }

    /* Lugar del evento escalado */
    .hero__badge-venue {
      font-family: var(--font-body);
      font-size: clamp(0.62rem, 1.1vw, 0.9rem) !important;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(232,201,153,0.55);
      text-align: center;
      max-width: 200px; /* Aumentado para el nuevo tamaño de fuente */
      margin-top: 0.5em;
      line-height: 1.4;
    }

    /* ─── Presenter tag (top) ─── */
    .hero__presenter {
      position: absolute;
      top: clamp(16px, 3.5vh, 36px);
      left: 50%;
      transform: translateX(-50%);
      z-index: 7;
      font-family: var(--font-body);
      font-size: clamp(0.6rem, 1.1vw, 0.78rem);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(232, 201, 153, 0.6);
      white-space: nowrap;
      pointer-events: none;
    }

    /* ─── Bottom logos placeholder ─── */
    .hero__bottom {
      position: absolute;
      bottom: clamp(20px, 4vh, 40px);
      left: 50%;
      transform: translateX(-50%);
      z-index: 7;
      display: flex;
      align-items: center;
      gap: clamp(20px, 4vw, 48px);
      opacity: 0.55;
      filter: brightness(0) invert(1);
      pointer-events: none;
    }

    .hero__bottom img {
      height: clamp(22px, 3.5vh, 38px);
      width: auto;
      object-fit: contain;
    }

    .hero__bottom-placeholder {
      height: clamp(22px, 3.5vh, 38px);
      padding: 0 12px;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 3px;
      display: flex;
      align-items: center;
      font-family: var(--font-body);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
    }

    /* ═══════════════════════════════════════════════════════════════
       CAPA 8: CARRUSEL INFINITO (por encima del texto)
    ═══════════════════════════════════════════════════════════════ */
    .hero__carousel {
      position: absolute;
      inset: 0;
      z-index: 8;       /* encima del título z-index:6 */
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      pointer-events: none;
    }

    .hero__track {
      display: flex;
      align-items: flex-end;
      gap: 0;
      width: max-content;
      will-change: transform;
      animation: carousel-scroll var(--carousel-speed) linear infinite;
    }

    @keyframes carousel-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Cada imagen artista */
    .hero__img-item {
      flex-shrink: 0;
      height: clamp(320px, 78vh, 820px);
      width: auto;
      display: flex;
      align-items: flex-end;
      padding: 0 clamp(4px, 1vw, 16px);
      position: relative;
    }

    .hero__img-item img {
      height: 100%;
      width: auto;
      object-fit: contain;
      object-position: bottom center;
      display: block;
      filter: drop-shadow(-8px 0 30px rgba(0,0,0,0.7));
      opacity: 0.92;
    }

    /*
    ─────────────────────────────────────────────────────────────────
    PLACEHOLDER visual mientras no hay PNGs de artistas reales.
    Reemplaza estos elementos con <img> reales de los artistas.
    ─────────────────────────────────────────────────────────────────
    */
    .hero__img-placeholder {
      height: clamp(320px, 78vh, 820px);
      width: clamp(160px, 22vw, 340px);
      background: linear-gradient(
        160deg,
        rgba(102,55,23,0.35) 0%,
        rgba(155,15,6,0.2) 50%,
        rgba(0,0,0,0.1) 100%
      );
      border-left: 1px solid rgba(255,194,111,0.08);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 24px;
      position: relative;
      overflow: hidden;
    }

    .hero__img-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(
        ellipse 60% 80% at 50% 30%,
        rgba(255,194,111,0.06) 0%,
        transparent 70%
      );
    }

    .hero__img-placeholder-label {
      font-family: var(--font-body);
      font-size: 0.55rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(232,201,153,0.25);
      text-align: center;
    }

    /* Pausa en hover (accesibilidad) */
    .hero__carousel:hover .hero__track {
      animation-play-state: paused;
    }

    /* ═══════════════════════════════════════════════════════════════
       RESPONSIVE – MOBILE (≤768px)
    ═══════════════════════════════════════════════════════════════ */
    @media (max-width: 768px) {
      :root {
        --carousel-speed: 18s;
      }

      .hero__title-wrapper {
        left: 18px;
        top: auto;
        bottom: clamp(100px, 22vh, 160px);
        transform: none;
      }

      .hero__title .line {
        font-size: clamp(2.8rem, 16vw, 5.5rem);
      }

      .hero__title .line--tour {
        font-size: clamp(1.4rem, 8vw, 2.8rem);
      }

      .hero__event-badge {
        right: 16px;
        top: clamp(60px, 12vh, 100px);
        transform: none;
      }

      .hero__badge-num {
        font-size: clamp(2.5rem, 10vw, 4rem);
      }

      .hero__img-placeholder {
        width: clamp(110px, 36vw, 200px);
      }

      .hero__img-item {
        height: clamp(200px, 52vh, 400px);
        padding: 0 4px;
      }

      .hero__img-placeholder {
        height: clamp(200px, 52vh, 400px);
      }

      .hero__bottom {
        gap: 14px;
      }

      /* Reducir intensidad del grain en mobile */
      .hero__grain {
        opacity: 0.03;
      }
    }

    @media (max-width: 480px) {
      .hero__event-badge {
        right: 10px;
        top: 80px;
        transform: none;
        scale: 0.8;
      }
    

      .hero__title .line {
        font-size: clamp(2.4rem, 18vw, 4.5rem);
      }
    }

    /* ═══════════════════════════════════════════════════════════════
       REDUCE MOTION – Respeto accesibilidad
    ═══════════════════════════════════════════════════════════════ */
    @media (prefers-reduced-motion: reduce) {
      .hero__track {
        animation: none;
      }
      .hero__grain {
        animation: none;
      }
    }

    /* ═══════════════════════════════════════════════════════════════
       SECCIÓN DE DEMO (eliminar en producción)
    ═══════════════════════════════════════════════════════════════ */
    .demo-note {
      position: fixed;
      bottom: 12px;
      right: 12px;
      z-index: 9999;
      background: rgba(0,0,0,0.85);
      border: 1px solid rgba(255,194,111,0.3);
      border-radius: 6px;
      padding: 8px 14px;
      font-family: monospace;
      font-size: 0.65rem;
      color: rgba(255,194,111,0.7);
      line-height: 1.6;
      max-width: 260px;
    }

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 7: CANVAS REVEAL
   ══════════════════════════════════════════════════════════════════ */
.reveal-section {
  height: 80vh;
  min-height: 500px;
  position: relative;
}

.reveal-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: none;
}

.img-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.6);
}

#revealCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Mobile: overlay que se anima automáticamente */
.mobile-reveal-overlay {
  position: absolute;
  inset: 0;
  background: var(--ink);
  display: none;  /* JS lo activa en mobile */
  transition: opacity 2s ease;
}

.reveal-text {
  position: absolute;
  z-index: 2;
  bottom: 3rem;
  left: 3rem;
  color: var(--cream);
  pointer-events: none;
}

.reveal-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
}

.reveal-text p {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-top: 0.5rem;
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 8: ANIMACIONES DE ENTRADA (scroll reveal)
   ══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 9: MANIFESTO
   ══════════════════════════════════════════════════════════════════ */
.manifesto {
  padding: var(--section-pad) var(--side-pad);
  position: relative;
  overflow: hidden;
}

.manifesto-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var( --font-display-alt);
  font-size: 20vw;
  font-weight: 700;
  color: rgba(200, 168, 75, 0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-1);
  opacity: 0.7;
  margin-bottom: 4rem;
  display: block;
  font-family: var(--font-body);
}

.manifesto-body {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
}

.manifesto-body em {
  font-style: italic;
  color: var(--gold-2);
}

.manifesto-body strong {
  font-weight: 700;
  color: var(--cream-2);
}

.manifesto-divider {
  width: 4rem;
  height: 1px;
  background: var(--gold-1);
  margin: 4rem auto;
  opacity: 0.4;
}

.manifesto-sub {
  font-size: 0.9rem;
  font-weight: 200;
  color: var(--stone);
  letter-spacing: 0.08em;
  line-height: 2;
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 10: SPLIT IMAGES
   ══════════════════════════════════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 80vh;
  min-height: 500px;
}

.split-left,
.split-right {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.split-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5);
  transition: filter 1s ease, transform 1.2s ease;
}

.split-left:hover .split-img,
.split-right:hover .split-img {
  filter: saturate(0.9);
  transform: scale(1.04);
}

.split-overlay {
  position: absolute;
  inset: 0;
}

.split-left .split-overlay {
  background: linear-gradient(to right, rgba(8, 7, 5, 0.8) 0%, rgba(8, 7, 5, 0.2) 100%);
}

.split-right .split-overlay {
  background: linear-gradient(to left, rgba(8, 7, 5, 0.8) 0%, rgba(8, 7, 5, 0.2) 100%);
}

.split-text {
  position: absolute;
  z-index: 2;
  bottom: 3rem;
  padding: 0 3rem;
}

.split-left .split-text {
  left: 0;
}

.split-right .split-text {
  right: 0;
  text-align: right;
}

.split-text .big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.split-text .big em {
  color: var(--gold-2);
  font-style: italic;
}

.split-text .sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.8rem;
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 11: TIMELINE SETLIST
   ══════════════════════════════════════════════════════════════════ */
.setlist-section {
  padding: 10rem var(--side-pad) var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-1);
  opacity: 0.6;
  display: block;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  color: var(--gold-2);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200, 168, 75, 0.3), transparent);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 4rem;
  align-items: center;
}

.tl-item:nth-child(odd) .tl-content {
  grid-column: 1;
  text-align: right;
  padding-right: 3rem;
}

.tl-item:nth-child(odd) .tl-dot { grid-column: 2; }
.tl-item:nth-child(odd) .tl-empty { grid-column: 3; }
.tl-item:nth-child(even) .tl-empty { grid-column: 1; }
.tl-item:nth-child(even) .tl-dot { grid-column: 2; }

.tl-item:nth-child(even) .tl-content {
  grid-column: 3;
  padding-left: 3rem;
}

.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
}

.tl-dot-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold-1);
  background: var(--ink);
  transition: all var(--transition-mid);
  cursor: pointer;
}

.tl-item:hover .tl-dot-inner {
  background: var(--gold-1);
  transform: scale(1.6);
}

.tl-num {
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.6rem;
  font-family: var(--font-body);
}

.tl-song {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  transition: color 0.3s;
}

.tl-item:hover .tl-song {
  color: var(--gold-2);
}

.tl-year {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-top: 0.5rem;
  font-family: var(--font-body);
}

.tl-emotion {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(200, 168, 75, 0.5);
  margin-top: 0.4rem;
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 12: QUOTE DIVIDER
   ══════════════════════════════════════════════════════════════════ */
.quote-divider {
  position: relative;
  height: 50vh;
  min-height: 300px;
  overflow: hidden;
}

.qd-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.4) brightness(0.35);
}

.qd-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--ink) 0%, transparent 30%, transparent 70%, var(--ink) 100%);
}

.qd-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--side-pad);
}

.qd-label {
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-1);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.qd-quote {
  font-family: var(--font-display-alt);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  line-height: 1.4;
  quotes: none;
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 13: MEMORIAS / TESTIMONIOS
   ══════════════════════════════════════════════════════════════════ */
.memories {
  padding: var(--section-pad) var(--side-pad);
  background: var(--ink-2);
}

.memories-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200, 168, 75, 0.08);
  margin-top: 5rem;
}

.mem-card {
  background: var(--ink-2);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.5s;
}

.mem-card:hover {
  background: var(--ink-3);
}

.mem-card::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(200, 168, 75, 0.06);
  line-height: 1;
  pointer-events: none;
}

.mem-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--cream);
  margin-bottom: 2rem;
  font-weight: 300;
}

.mem-author {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-1);
  opacity: 0.7;
  font-family: var(--font-body);
}

.mem-city {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.3rem;
  font-family: var(--font-body);
}

.mem-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.mem-card:hover .mem-bar {
  transform: scaleX(1);
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 14: FORMULARIO
   ══════════════════════════════════════════════════════════════════ */
.form-section {
  padding: var(--section-pad) var(--side-pad);
}

.form-inner {
  max-width: 640px;
  margin: 0 auto;
}

.form-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--cream);
  margin-bottom: 0.8rem;
}

.form-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
}

/* Política de privacidad */
.privacy-notice {
  display: flex;
  gap: 1rem;
  background: rgba(200, 168, 75, 0.04);
  border: 1px solid rgba(200, 168, 75, 0.1);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 3rem;
  transition: all var(--transition-mid);
}

.privacy-icon {
  color: var(--gold-1);
  opacity: 0.7;
  flex-shrink: 0;
  margin-top: 2px;
}

.privacy-text {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--stone);
  font-family: var(--font-body);
}

.privacy-text strong {
  color: var(--cream);
  font-weight: 400;
}

.privacy-text a,
.privacy-link {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.privacy-text a:hover,
.privacy-link:hover {
  opacity: 1;
}

/* Campos del formulario */
.frow {
  margin-bottom: 2.5rem;
  position: relative;
}

.frow input,
.frow textarea,
.frow select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 200;
  color: var(--cream);
  outline: none;
  resize: none;
  transition: border-color var(--transition-mid);
}

.frow input:focus,
.frow textarea:focus {
  border-bottom-color: var(--gold-1);
}

.frow input::placeholder,
.frow textarea::placeholder {
  color: var(--stone);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.frow label:not(.radio-option):not(.consent-label):not(.reason-option) {
  position: absolute;
  top: -1.2rem;
  left: 0;
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-1);
  opacity: 0;
  transition: opacity 0.3s;
  font-family: var(--font-body);
}

.frow input:focus + label,
.frow input:not(:placeholder-shown) + label,
.frow textarea:focus + label,
.frow textarea:not(:placeholder-shown) + label {
  opacity: 0.7;
}

.field-error {
  display: block;
  font-size: 0.6rem;
  color: #e07070;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  min-height: 1em;
  font-family: var(--font-body);
}

/* Radio group */
.frow-radio {
  border-bottom: 1px solid rgba(200, 168, 75, 0.08);
  padding-bottom: 2rem;
}

.radio-label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.radio-option {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
}

.radio-box {
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(200, 168, 75, 0.2);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  transition: all var(--transition-mid);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  font-family: var(--font-body);
}

.radio-option input[type="radio"]:checked + .radio-box {
  border-color: var(--gold-1);
  color: var(--gold-1);
  background: rgba(200, 168, 75, 0.06);
}

.radio-option:hover .radio-box {
  border-color: rgba(200, 168, 75, 0.5);
  color: var(--cream);
}

/* Razones (checkboxes) */
.frow-reasons {
  animation: slideDown 0.4s ease;
  border-bottom: 1px solid rgba(200, 168, 75, 0.08);
  padding-bottom: 2rem;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.reason-option {
  cursor: pointer;
  display: flex;
}

.reason-option--full {
  grid-column: 1 / -1;
}

.reason-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
}

.reason-box {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(200, 168, 75, 0.15);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition-mid);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  font-family: var(--font-body);
}

.reason-option input[type="checkbox"]:checked + .reason-box {
  border-color: var(--gold-1);
  color: var(--gold-1);
  background: rgba(200, 168, 75, 0.06);
}

.reason-option:hover .reason-box {
  border-color: rgba(200, 168, 75, 0.4);
  color: var(--cream);
}

/* Nested field */
.frow-nested {
  margin-top: 1rem;
  margin-bottom: 0;
  animation: slideDown 0.3s ease;
}

/* Consentimiento */
.frow-consent {
  margin-bottom: 2rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold-1);
  cursor: pointer;
}

.consent-text {
  font-size: 0.7rem;
  color: var(--stone);
  line-height: 1.6;
  font-family: var(--font-body);
}

.privacy-toggle {
  background: none;
  border: none;
  color: var(--gold-1);
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: inherit;
}

/* Submit button */
.fsubmit {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(200, 168, 75, 0.4);
  color: var(--gold-1);
  padding: 1.3rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.5s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
}

.fsubmit:hover:not(:disabled) {
  background: var(--gold-1);
  color: var(--ink);
  letter-spacing: 0.6em;
}

.fsubmit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-loader {
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}

.fsubmit.loading .btn-text {
  opacity: 0.5;
}

.fsubmit.loading .btn-loader {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Feedback del formulario */
.form-feedback {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: var(--font-body);
  border-radius: 2px;
}

.form-feedback.success {
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid rgba(200, 168, 75, 0.3);
  color: var(--gold-2);
}

.form-feedback.error {
  background: rgba(224, 112, 112, 0.08);
  border: 1px solid rgba(224, 112, 112, 0.3);
  color: #e07070;
}

/* Placeholder para integración Laylo */
.laylo-placeholder {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px dashed rgba(200, 168, 75, 0.15);
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--stone);
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 15: FINALE CTA
   ══════════════════════════════════════════════════════════════════ */
.finale {
  position: relative;
  height: 80vh;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finale-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.3) brightness(0.4);
}

.finale-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0.6);
}

.finale-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--side-pad);
}

.finale-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 3rem;
  color: var(--cream);
}

.finale-title em {
  font-style: italic;
  color: var(--gold-2);
}

.finale-cta {
  display: inline-block;
  position: relative;
  padding: 1.4rem 5rem;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s;
  margin-top: 1rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  font-family: var(--font-body);
}

.finale-cta:hover,
.finale-cta:focus {
  background: var(--gold-3);
  letter-spacing: 0.65em;
  outline: none;
}

.finale-stock {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.stock-track {
  width: 160px;
  height: 1px;
  background: rgba(200, 168, 75, 0.15);
}

.stock-fill {
  height: 100%;
  background: var(--gold-1);
  display: block;
}

.stock-label {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 16: FOOTER
   ══════════════════════════════════════════════════════════════════ */
footer {
  padding: 4rem var(--side-pad);
  border-top: 1px solid rgba(200, 168, 75, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.ft-brand {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(200, 168, 75, 0.4);
  font-style: italic;
}

.ft-links {
  display: flex;
  gap: 3rem;
}

.ft-links a {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color var(--transition-mid);
  font-family: var(--font-body);
}

.ft-links a:hover,
.ft-links a:focus {
  color: var(--gold-1);
  outline: none;
}

.ft-copy {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(107, 95, 68, 0.4);
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 17: RESPONSIVE — MOBILE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 5rem;
    --side-pad: 6vw;
  }

  /* Ocultar cursor custom en mobile */
  #cursor, #cursor-ring {
    display: none;
  }

  /* Nav */
  .nav {
    padding: 1.8rem var(--side-pad);
  }

  /* Hero */
  .hero-meta {
    gap: 6vw;
  }

  .hm-item .v {
    font-size: 1rem;
  }

  .hero-cta {
    padding: 1rem 2.5rem;
    margin-top: 2.5rem;
  }

  /* Reveal section */
  .reveal-container {
    cursor: default;
  }

  /* Split */
  .split-section {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .timeline::before { display: none; }

  .tl-item {
    grid-template-columns: 30px 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content {
    grid-column: 2;
    text-align: left;
    padding: 0;
  }

  .tl-item:nth-child(odd) .tl-dot,
  .tl-item:nth-child(even) .tl-dot {
    grid-column: 1;
    grid-row: 1;
    width: 30px;
    justify-content: center;
  }

  .tl-item .tl-empty { display: none; }

  .tl-song { font-size: 1.5rem; }

  /* Memories */
  .mem-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  /* Finale */
  .finale-cta {
    padding: 1.2rem 3rem;
  }

  /* Footer */
  footer {
    flex-direction: column;
    text-align: center;
  }

  .ft-links {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-t3 { letter-spacing: 0.3em; }

  .hero-date-badge::before,
  .hero-date-badge::after { width: 1.5rem; }

  .manifesto-body { font-size: 1.8rem; }

  .reveal-text { left: 1.5rem; bottom: 2rem; }
  .reveal-text h2 { font-size: 1.7rem; }

  .radio-group { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 18: ACCESIBILIDAD
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 4px;
}

/* ══════════════════════════════════════════════════════════════════
   SECCIÓN 19: MODAL HERO — Auto-popup a los 5 segundos
   Ocupa ~70% del viewport. Cierre solo con botón X.
   ══════════════════════════════════════════════════════════════════ */

/* Overlay: fondo oscuro semitransparente */
.hero-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.72);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.4s ease, visibility 0.4s ease;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Tarjeta del modal: 70% del viewport */
.hero-modal-card {
  position: relative;
  background: rgba(8, 7, 5, 0.95);
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border: 1px solid rgba(255, 194, 111, 0.3);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3.5rem);
  width: min(70vw, 680px);
  max-height: 88vh;
  overflow-y: auto;
  pointer-events: all;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 32px 64px -16px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 194, 111, 0.08),
    inset 0 1px 0 rgba(255, 194, 111, 0.12);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,194,111,0.3) transparent;
}

.hero-modal-card::-webkit-scrollbar { width: 4px; }
.hero-modal-card::-webkit-scrollbar-thumb { background: rgba(255,194,111,0.3); border-radius: 2px; }
.hero-modal-card::-webkit-scrollbar-track { background: transparent; }

.hero-modal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Botón cerrar X */
.hero-modal-close {
  position: absolute;
  top: clamp(12px, 2vw, 20px);
  right: clamp(12px, 2vw, 20px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 1;
}

.hero-modal-close:hover,
.hero-modal-close:focus-visible {
  background: rgba(255, 194, 111, 0.15);
  border-color: var(--gold-1, #ffc26f);
  color: var(--gold-1, #ffc26f);
  outline: none;
}

/* Grilla de ciudades — más opciones requieren layout en grid */
.hero-modal-card .rf-radios {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  margin-bottom: 1.5rem;
}

.hero-modal-card .rf-radios label {
  flex: unset;
}

/* Mensajes de error del modal */
.rf-error {
  display: block;
  font-size: 0.72rem;
  color: #ff6b6b;
  margin-top: 4px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

/* Loader del botón */
.rfcard-submit .btn-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.rfcard-submit.loading .btn-text { display: none; }
.rfcard-submit.loading .btn-loader { display: block; }
.rfcard-submit.loading { display: flex; align-items: center; justify-content: center; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Estados del feedback del modal */
.rfcard-feedback.err  { color: #ff6b6b; }
.rfcard-feedback.ok   { color: #6fcf97; }

/* Responsive — mobile: 95% de ancho, slide desde abajo */
@media (max-width: 600px) {
  .hero-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .hero-modal-card {
    width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    transform: translateY(100%);
    padding: 2rem 1.5rem;
  }

  .hero-modal-card.is-visible {
    transform: translateY(0);
  }

  .hero-modal-card .rf-radios {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .hero-modal-card {
    width: min(85vw, 560px);
  }
}

