/* ═══════════════════════════════════════════════
   CUMBRES — Tríptico de Amor | QOLECT
   Estética: Negro · Púrpura · Azul eléctrico · Dorado
   Inspirado en la iluminación de la Catedral de Sal
═══════════════════════════════════════════════ */

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

:root {
  /* ── Fondos ── */
  --black:        #000000;
  --dark-surface: #07070e;
  --dark-card:    #0d0d1a;
  --dark-card2:   #11111f;
  --dark-border:  rgba(255,255,255,0.07);
  --dark-border2: rgba(255,255,255,0.12);

  /* ── Iluminación Catedral (púrpura + azul neón) ── */
  --purple-deep:  #1a0035;
  --purple:       #7c3aed;
  --purple-mid:   #9333ea;
  --purple-light: #c084fc;
  --purple-glow:  rgba(124,58,237,0.30);
  --blue-elec:    #2563eb;
  --blue-neon:    #60a5fa;
  --blue-bright:  #93c5fd;
  --blue-glow:    rgba(96,165,250,0.22);

  /* ── Cumbres brand — dorado/ámbar ── */
  --gold:         #d97706;
  --gold-mid:     #f59e0b;
  --gold-light:   #fbbf24;
  --gold-pale:    #fef3c7;
  --gold-glow:    rgba(251,191,36,0.22);

  /* ── QOLECT brand ── */
  --qolect-teal:   #1DB7BF;
  --qolect-yellow: #F5C542;

  /* ── Formas de amor ── */
  --eros:   var(--gold-light);     /* dorado ámbar — pasión */
  --philia: var(--blue-neon);      /* azul eléctrico — conexión */
  --agape:  var(--purple-light);   /* púrpura — trascendencia */

  /* ── Texto ── */
  --white:      #ffffff;
  --muted:      rgba(255,255,255,0.55);
  --dim:        rgba(255,255,255,0.28);

  /* ── Layout ── */
  --radius:    14px;
  --radius-lg: 22px;
  --transition: 0.3s ease;
  --max-w:     1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
em { font-style: italic; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Secciones ── */
.section { padding: 5.5rem 0; }
.section-dark    { background: var(--black); }
.section-surface { background: var(--dark-surface); }
.section-light   { background: var(--dark-card); }
.section-accent  { background: linear-gradient(135deg, var(--purple-deep) 0%, #0a0018 100%); }

/* ── Labels de sección ── */
.section-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 0.8rem;
}
.section-label.blue { color: var(--blue-neon); }
.section-label.purple { color: var(--purple-light); }

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.section-title-gold {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  line-height: 1.15;
  text-shadow: 0 0 40px var(--gold-glow);
}

/* ── Botones ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-mid) 0%, var(--gold-light) 100%);
  color: #1a0a00;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(251,191,36,0.45);
}
.btn-purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-mid) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px var(--purple-glow);
}
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.5); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  background: transparent;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-primary { background: var(--qolect-yellow); color: #1a0a00; }
.btn-primary:hover { background: #d4a000; }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.88rem; }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.1rem; }

/* ── Fade-in ── */
.fade-in-section {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav-event-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.14em;
}
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ═══════════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════════ */
#whatsapp-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 99;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
#whatsapp-float svg { width: 56px; height: 56px; }
#whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* PLACEHOLDER — Darka agrega recursos/hero.jpg como background-image aquí */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('recursos/portada.webp');
  background-size: cover;
  background-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.20) 35%,
    rgba(0,0,0,0.70) 75%,
    rgba(0,0,0,0.95) 100%
  );
}

/* Notas musicales flotantes */
.note {
  position: absolute;
  user-select: none;
  pointer-events: none;
  animation: floatNote 9s ease-in-out infinite;
}
.note-1 { top: 14%; left: 7%;  font-size: 2.2rem; color: rgba(251,191,36,0.18); animation-delay: 0s; }
.note-2 { top: 22%; right: 9%; font-size: 1.7rem; color: rgba(192,132,252,0.20); animation-delay: 1.8s; }
.note-3 { bottom: 38%; left: 12%; font-size: 1.4rem; color: rgba(96,165,250,0.18); animation-delay: 3.2s; }
.note-4 { bottom: 28%; right: 7%; font-size: 1.9rem; color: rgba(251,191,36,0.14); animation-delay: 2.1s; }
.note-5 { top: 58%; left: 48%; font-size: 1.1rem; color: rgba(192,132,252,0.15); animation-delay: 4.5s; }

@keyframes floatNote {
  0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.4; }
  50%       { transform: translateY(-22px) rotate(6deg); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-presenter {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero-presenter .presenter-sep {
  width: 30px;
  height: 1px;
  background: rgba(217,119,6,0.5);
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4.5rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.6rem;
  text-shadow:
    0 0 80px rgba(124,58,237,0.35),
    0 4px 40px rgba(0,0,0,0.7);
}

.hero-subtitle-concert {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.1rem, 2.8vw, 1.75rem);
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 2rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 30px var(--gold-glow);
}

.amor-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.amor-pill {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.3rem 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
}
.eros-pill   { background: rgba(251,191,36,0.12); color: var(--gold-light); border: 1px solid rgba(251,191,36,0.3); }
.philia-pill { background: rgba(96,165,250,0.12); color: var(--blue-neon);  border: 1px solid rgba(96,165,250,0.3); }
.agape-pill  { background: rgba(192,132,252,0.12); color: var(--purple-light); border: 1px solid rgba(192,132,252,0.3); }
.amor-dot    { color: var(--dim); font-size: 1.2rem; }

.hero-quote {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: var(--muted);
  font-style: italic;
  max-width: 540px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
  border-left: 2px solid rgba(124,58,237,0.4);
  padding-left: 1.2rem;
  text-align: left;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.meta-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.15); }
.prox-badge {
  background: rgba(251,191,36,0.14);
  color: var(--gold-light);
  border: 1px solid rgba(251,191,36,0.35);
  padding: 0.15rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.8rem;
  color: var(--dim);
}

/* ═══════════════════════════════════════════
   SECCIÓN DE VIDEO
═══════════════════════════════════════════ */
#video-section {
  background: var(--black);
  padding: 0;
  position: relative;
}
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  position: relative;
}
.video-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-light);
  text-align: center;
  margin-bottom: 1rem;
}
.video-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.25);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(124,58,237,0.15);
  position: relative;
}
.video-container video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  min-height: 280px;
  object-fit: cover;
  background: var(--black);
}
.video-prox {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10,0,24,0.88) 0%, rgba(26,0,53,0.80) 100%);
  pointer-events: none;
}
.video-prox-inner { text-align: center; }
.video-prox-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
}
.video-prox-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  text-shadow: 0 0 30px var(--gold-glow);
}

/* ═══════════════════════════════════════════
   INVITADOS ESPECIALES
═══════════════════════════════════════════ */
.invitados-section { margin-top: 2.5rem; }
.invitados-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}
.invitados-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(251,191,36,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 40px rgba(251,191,36,0.08);
}
.invitados-img-wrap img { width: 100%; height: auto; display: block; }

/* Línea decorativa ── separador de secciones */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124,58,237,0.4), rgba(96,165,250,0.3), transparent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(251,191,36,0.6), transparent);
  margin: 0 auto;
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.9; }
}
.hide-mobile { display: inline; }

/* ═══════════════════════════════════════════
   CONCEPTO
═══════════════════════════════════════════ */
#concepto { background: var(--dark-surface); }

.concepto-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 660px;
  margin-bottom: 3.5rem;
  line-height: 1.85;
}

.amor-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.amor-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  border: 1px solid var(--dark-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.amor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.eros-card::before   { background: linear-gradient(to right, var(--gold), var(--gold-light)); }
.philia-card::before { background: linear-gradient(to right, var(--blue-elec), var(--blue-neon)); }
.agape-card::before  { background: linear-gradient(to right, var(--purple), var(--purple-light)); }

.amor-card:hover { transform: translateY(-7px); }
.eros-card:hover   { box-shadow: 0 16px 48px rgba(251,191,36,0.15); }
.philia-card:hover { box-shadow: 0 16px 48px rgba(96,165,250,0.15); }
.agape-card:hover  { box-shadow: 0 16px 48px rgba(192,132,252,0.18); }

.amor-card-tag {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.eros-card .amor-card-tag   { color: var(--gold-light); }
.philia-card .amor-card-tag { color: var(--blue-neon); }
.agape-card .amor-card-tag  { color: var(--purple-light); }
.amor-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.amor-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.amor-card-loc {
  margin-top: 1.2rem;
  font-size: 0.76rem;
  color: var(--dim);
  font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   ARTISTAS
═══════════════════════════════════════════ */
#artistas { background: var(--black); }

.artistas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.artista-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.artista-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(124,58,237,0.20); }

/* Card sin imagen — layout con inicial decorativa */
.artista-card-text {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}
.artista-card-text::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--purple), var(--blue-neon));
}
.artista-inicial {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(192,132,252,0.08);
  line-height: 1;
  letter-spacing: -0.02em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 1.5rem 0 1.5rem 1.5rem;
  user-select: none;
  flex-shrink: 0;
  align-self: center;
}
.artista-body { padding: 1.75rem 1.75rem 1.75rem 0.5rem; flex: 1; }
.artista-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  font-family: 'Fredoka', sans-serif;
  background: rgba(29,183,191,0.12);
  color: var(--qolect-teal);
  border: 1px solid rgba(29,183,191,0.25);
}
.artista-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.artista-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

.direccion-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.25) 0%, rgba(37,99,235,0.20) 100%);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.direccion-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--purple), var(--blue-neon), var(--purple));
}
.direccion-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.5rem;
}
.direccion-nombre {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 30px rgba(192,132,252,0.4);
}

.artistas-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.badge-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 20px var(--gold-glow);
}
.badge-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.83rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   RECORRIDO
═══════════════════════════════════════════ */
#recorrido { background: var(--dark-surface); }

.recorrido-intro {
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 2.8rem;
  line-height: 1.75;
}

.estaciones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.estacion {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.estacion::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.eros-border::before   { background: linear-gradient(to bottom, var(--gold), var(--gold-light)); }
.philia-border::before { background: linear-gradient(to bottom, var(--blue-elec), var(--blue-neon)); }
.agape-border::before  { background: linear-gradient(to bottom, var(--purple), var(--purple-light)); }
.gold-border::before   { background: linear-gradient(to bottom, var(--purple), var(--blue-neon)); }

.estacion:hover { transform: translateX(5px); }
.eros-border:hover   { box-shadow: 0 0 30px rgba(251,191,36,0.10); }
.philia-border:hover { box-shadow: 0 0 30px rgba(96,165,250,0.12); }
.agape-border:hover  { box-shadow: 0 0 30px rgba(192,132,252,0.12); }
.gold-border:hover   { box-shadow: 0 0 30px rgba(124,58,237,0.15); }

.estacion-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  min-width: 56px;
  text-align: center;
  color: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.estacion-body { flex: 1; }
.estacion-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.tag-amor {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
}
.eros-tag    { background: rgba(251,191,36,0.14); color: var(--gold-light); border: 1px solid rgba(251,191,36,0.28); }
.philia-tag  { background: rgba(96,165,250,0.14); color: var(--blue-neon); border: 1px solid rgba(96,165,250,0.28); }
.agape-tag   { background: rgba(192,132,252,0.14); color: var(--purple-light); border: 1px solid rgba(192,132,252,0.28); }
.gold-tag    { background: rgba(124,58,237,0.14); color: var(--purple-light); border: 1px solid rgba(124,58,237,0.3); }
.tag-espacio {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.7rem;
  color: var(--dim);
}
.estacion-body h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.estacion-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.estacion-instrumento {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.8rem;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mapa-placeholder {
  background: var(--dark-card);
  border: 1px dashed rgba(124,58,237,0.25);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: var(--dim);
  /* PLACEHOLDER — Darka puede reemplazar con mapa real desde recursos/ */
}
.mapa-inner span { font-size: 3rem; display: block; margin-bottom: 0.75rem; }
.mapa-inner p { font-family: 'Fredoka', sans-serif; font-size: 1rem; margin-bottom: 0.25rem; color: var(--muted); }
.mapa-inner small { font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   REPERTORIO
═══════════════════════════════════════════ */
#repertorio { background: var(--black); }

.repertorio-intro {
  color: var(--muted);
  margin-bottom: 2.2rem;
  font-size: 0.92rem;
  font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.04em;
}
.repertorio-intro strong { color: var(--gold-light); }

.repertorio-destacado {
  background: linear-gradient(135deg, rgba(124,58,237,0.22) 0%, rgba(37,99,235,0.18) 100%);
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.repertorio-destacado::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--purple), var(--blue-neon), var(--purple));
}
.dest-badge {
  display: inline-block;
  background: var(--gold-mid);
  color: #1a0a00;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.dest-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.dest-desc { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; font-style: italic; }
.dest-pieces { display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.dest-pieces span { padding-left: 0.7rem; border-left: 2px solid rgba(124,58,237,0.5); }
.dest-pieces em { color: var(--gold-light); font-style: italic; }

.programa-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.2rem;
}

.programa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.programa-parte {
  background: var(--dark-card);
  border-radius: var(--radius);
  border: 1px solid var(--dark-border);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.programa-parte::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.eros-programa::before   { background: linear-gradient(to right, var(--gold), var(--gold-light)); }
.philia-programa::before { background: linear-gradient(to right, var(--blue-elec), var(--blue-neon)); }
.agape-programa::before  { background: linear-gradient(to right, var(--purple), var(--purple-light)); }

.parte-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}
.parte-header h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}
.parte-tag {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.65rem;
  border-radius: 50px;
}
.eros-programa .parte-tag   { background: rgba(251,191,36,0.14); color: var(--gold-light); border: 1px solid rgba(251,191,36,0.28); }
.philia-programa .parte-tag { background: rgba(96,165,250,0.14); color: var(--blue-neon); border: 1px solid rgba(96,165,250,0.28); }
.agape-programa .parte-tag  { background: rgba(192,132,252,0.14); color: var(--purple-light); border: 1px solid rgba(192,132,252,0.28); }

.pieza-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.pieza-list li {
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.pieza-list li:last-child { border-bottom: none; padding-bottom: 0; }
.pieza-list em { font-style: italic; color: var(--white); font-size: 0.92rem; font-weight: 600; }
.pieza-list span { font-size: 0.8rem; color: var(--muted); }
.pieza-list small { font-size: 0.74rem; color: var(--dim); font-style: italic; }

/* ═══════════════════════════════════════════
   LOCALIDADES
═══════════════════════════════════════════ */
#localidades { background: var(--dark-surface); }

.localidades-intro {
  color: var(--muted);
  margin-bottom: 2.8rem;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.ticket-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: start;
}
.ticket-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.ticket-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.general-card::before     { background: var(--dim); }
.preferencial-card::before { background: linear-gradient(to right, var(--blue-elec), var(--blue-neon)); }
.vip-card::before          { background: linear-gradient(to right, var(--gold), var(--gold-light)); }

.ticket-card:hover { transform: translateY(-5px); }
.general-card:hover     { box-shadow: 0 16px 40px rgba(255,255,255,0.05); }
.preferencial-card:hover { box-shadow: 0 16px 40px rgba(96,165,250,0.15); }
.vip-card:hover          { box-shadow: 0 16px 40px rgba(251,191,36,0.18); }

.featured-ticket {
  border-color: rgba(96,165,250,0.35);
  background: #0e1020;
  transform: scale(1.03);
}
.featured-ticket:hover { transform: scale(1.03) translateY(-5px); }

.ticket-badge-top {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-elec), var(--blue-neon));
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.ticket-header { margin-bottom: 1.25rem; }
.ticket-cat {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.vip-card .ticket-cat { color: var(--gold-light); text-shadow: 0 0 20px var(--gold-glow); }
.ticket-aforo { font-family: 'Fredoka', sans-serif; font-size: 0.8rem; color: var(--dim); }

.ticket-price { margin-bottom: 1.25rem; }
.price-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  color: var(--gold-mid);
  font-weight: 600;
}

.ticket-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.ticket-features li { font-size: 0.85rem; color: var(--muted); }

.btn-ticket {
  display: block;
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.btn-ticket:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.btn-ticket-featured {
  background: linear-gradient(135deg, var(--blue-elec), var(--blue-neon));
  border: none;
  color: var(--white);
}
.btn-ticket-featured:hover { opacity: 0.9; }
.btn-ticket-vip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none;
  color: #1a0a00;
}
.btn-ticket-vip:hover { opacity: 0.9; }

.taquilla-logo-area {
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.88rem;
  color: var(--dim);
}
.taquilla-logo-area strong { color: var(--muted); margin-left: 0.4rem; }

/* ═══════════════════════════════════════════
   DESCUENTOS
═══════════════════════════════════════════ */
#descuentos { background: var(--black); }

.dcto-intro {
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.codigo-cards {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.codigo-card {
  flex: 1;
  min-width: 240px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.codigo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--blue-elec), var(--blue-neon));
}
.codigo-vip::before {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}
.codigo-badge {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.5rem;
}
.codigo-code {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.codigo-dcto {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 16px var(--gold-glow);
}
.codigo-info { font-size: 0.8rem; color: var(--dim); }

.dcto-vigencia {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  background: var(--dark-card);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--dark-border);
}
.dcto-vigencia strong { color: var(--white); }
.dcto-vigencia small { display: block; width: 100%; color: var(--dim); margin-top: 0.2rem; font-size: 0.8rem; }

.dcto-aplica { margin-bottom: 2rem; font-size: 0.88rem; color: var(--muted); font-family: 'Fredoka', sans-serif; }
.aplica-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.aplica-tags span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-border2);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--muted);
}
.dcto-cta { text-align: center; }
.dcto-cta p { font-family: 'Fredoka', sans-serif; font-size: 1rem; color: var(--muted); margin-bottom: 1rem; }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
#stats {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #000000 50%, rgba(10,0,30,0.9) 100%);
  border-top: 1px solid rgba(124,58,237,0.2);
  border-bottom: 1px solid rgba(124,58,237,0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(124,58,237,0.45);
}
.stat-unit { font-size: 0.45em; font-weight: 400; color: var(--muted); }
.stat-label { font-family: 'Fredoka', sans-serif; font-size: 0.85rem; color: var(--muted); }

/* ═══════════════════════════════════════════
   ALIADOS
═══════════════════════════════════════════ */
#aliados { background: var(--dark-surface); }

.aliados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.aliado-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.aliado-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(124,58,237,0.15); }
.aliado-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.aliado-logo-img { height: 36px; width: auto; margin: 0 auto 0.75rem; filter: brightness(0) invert(0.85); }
.aliado-name { font-family: 'Fredoka', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.aliado-lugar { font-size: 0.76rem; color: var(--dim); }

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
#cta-final {
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.30) 0%, var(--black) 65%);
}
.cta-final-inner { text-align: center; }
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 0 50px rgba(124,58,237,0.4);
}
.cta-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2.2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.cta-nota { font-family: 'Fredoka', sans-serif; font-size: 0.8rem; color: var(--dim); }

/* Tagline Cumbres */
.cumbres-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  text-align: center;
  margin-top: 2rem;
  text-shadow: 0 0 20px var(--gold-glow);
  opacity: 0.75;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { height: 28px; width: auto; filter: brightness(0) invert(0.8); margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.83rem; color: var(--dim); line-height: 1.5; }
.footer-tagline strong { color: var(--muted); }
.footer-tagline .footer-cumbres-tag { color: var(--gold-light); font-style: italic; display: block; margin-top: 0.3rem; font-size: 0.78rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.84rem;
  color: var(--dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--purple-light); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.footer-taquilla, .footer-wa {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--dark-border2);
  color: var(--muted);
  transition: var(--transition);
}
.footer-taquilla:hover { border-color: var(--blue-neon); color: var(--blue-neon); }
.footer-wa:hover { border-color: #25D366; color: #25D366; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.75rem;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .amor-cards       { grid-template-columns: 1fr; }
  .artistas-grid    { grid-template-columns: 1fr; }
  .programa-grid    { grid-template-columns: 1fr; }
  .ticket-cards     { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .aliados-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner     { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-contact   { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .featured-ticket  { transform: none; }
  .featured-ticket:hover { transform: translateY(-5px); }
  .nav-event-name   { display: none; }
  .video-wrapper    { padding: 2.5rem 1.5rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MÓVIL (≤640px)
═══════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Base */
  body { overflow-x: hidden; }
  .section { padding: 3rem 0; }
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hide-mobile { display: none; }

  /* Navbar */
  .nav-right .btn-sm { font-size: 0.78rem; padding: 0.45rem 0.85rem; }

  /* Hero */
  .hero-bg { background-position: center center; }
  .hero-content { padding-top: 5rem; padding-bottom: 2.5rem; }
  .hero-presenter { flex-wrap: wrap; gap: 0.3rem; font-size: 0.65rem; }
  .presenter-sep { width: 18px; }
  .hero-title { font-size: clamp(3rem, 18vw, 4.5rem); }
  .hero-subtitle-concert { font-size: clamp(1rem, 5vw, 1.4rem); }
  .amor-pills { gap: 0.4rem; }
  .amor-pill { font-size: 0.78rem; padding: 0.25rem 0.85rem; }
  .hero-quote { font-size: 0.85rem; max-width: 100%; padding-left: 0.9rem; }
  .hero-meta { flex-direction: column; gap: 0.45rem; }
  .meta-sep { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 0.35rem; font-size: 0.76rem; }

  /* Video */
  .video-wrapper { padding: 2rem 1rem; }
  .video-container video { max-height: 260px; }

  /* Concepto */
  .concepto-desc { font-size: 0.95rem; }
  .amor-card { padding: 1.5rem 1.2rem; }

  /* Artistas */
  .artista-inicial { font-size: 3rem; padding: 1.2rem 0 1.2rem 1.2rem; }
  .artista-body { padding: 1.25rem 1.25rem 1.25rem 0.4rem; }
  .artistas-badges { gap: 2.5rem; justify-content: center; }
  .badge-num { font-size: 2.2rem; }
  .direccion-nombre { font-size: 1.5rem; }

  /* Estaciones */
  .estacion { flex-direction: column; gap: 0.5rem; padding: 1.25rem; }
  .estacion-num { font-size: 1.8rem; min-width: auto; }

  /* Repertorio */
  .repertorio-destacado { padding: 1.4rem; }
  .dest-title { font-size: 1.35rem; }
  .dest-pieces { font-size: 0.84rem; }
  .dest-pieces span { padding-left: 0.5rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .stat-num { font-size: clamp(2rem, 10vw, 3rem); }

  /* Localidades */
  .localidades-intro { font-size: 0.84rem; }

  /* Descuentos */
  .codigo-cards { flex-direction: column; }
  .codigo-code { font-size: 1.7rem; }
  .dcto-vigencia { font-size: 0.84rem; }

  /* Aliados */
  .aliados-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .aliado-card { padding: 1.2rem 0.75rem; }
  .aliado-icon { font-size: 2rem; }
  .aliado-logo-img { height: 30px; }

  /* CTA final */
  .cta-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.35rem; }
  .footer-contact { flex-direction: row; align-items: flex-start; }
}
