/* ==========================================================================
   RICKY 'N' ROLL — SITIO OFICIAL
   Estilos principales (CSS3 moderno y modular)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FUENTES Y TIPOGRAFÍA (Offline First + Fallback)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/font_3eca38f5.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/font_83ea233e.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/font_6dca8018.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   2. VARIABLES DE DISEÑO (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  --bg-deep: #04030c;
  --bg-dark: #07051a;
  --bg-card: #0b0824;
  --bg-card-alt: rgba(11, 8, 36, 0.6);
  
  --neon-pink: #ff2b8f;
  --neon-pink-hover: #ff5fb0;
  --neon-cyan: #3fd0ff;
  --neon-cyan-hover: #8ee2ff;
  --neon-yellow: #ffd23f;
  
  --text-primary: #ffffff;
  --text-secondary: #f2ecff;
  --text-muted: #c8bfe6;
  --text-dim: #8d82b8;
  --text-dark: #5d5488;
  
  --border-light: rgba(185, 174, 224, 0.16);
  --border-medium: rgba(185, 174, 224, 0.28);
  --border-cyan: rgba(63, 208, 255, 0.5);
  --border-pink: rgba(255, 43, 143, 0.5);
  
  --glow-cyan: 0 0 24px rgba(63, 208, 255, 0.45);
  --glow-pink: 0 0 26px rgba(255, 43, 143, 0.5);
  --glow-yellow: 0 0 20px rgba(255, 210, 63, 0.4);
  
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --max-width: 1440px;
  --site-max-width: 1560px;
}

/* --------------------------------------------------------------------------
   3. RESET Y BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
}

body {
  margin: 0;
  background-color: var(--bg-deep);
  color: var(--text-secondary);
  font-family: var(--font-serif);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

a:hover {
  color: var(--neon-pink);
}

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

::selection {
  background: rgba(255, 43, 143, 0.35);
  color: #fff;
}

/* Contenedor principal para centrar el sitio */
.site-wrapper {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  background: var(--bg-dark);
  overflow-x: hidden;
  box-shadow: 0 0 0 1px rgba(185, 174, 224, 0.1), 0 0 120px rgba(0, 0, 0, 0.7);
  position: relative;
}

/* --------------------------------------------------------------------------
   4. BARRA DE PROGRESO DE LECTURA (Top)
   -------------------------------------------------------------------------- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 100;
  pointer-events: none;
}

.scroll-progress-indicator {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink) 60%, var(--neon-yellow));
  box-shadow: 0 0 14px rgba(63, 208, 255, 0.7);
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   5. HEADER Y NAVEGACIÓN
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 0 clamp(20px, 5vw, 60px);
  background: linear-gradient(#07051aee, #07051a99 60%, #07051a00);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand-logo {
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 0 14px rgba(63, 208, 255, 0.75), 0 0 34px rgba(63, 208, 255, 0.35);
  font-weight: 600;
}

.brand-logo .ampersand {
  color: var(--neon-pink);
  font-style: italic;
  text-shadow: 0 0 14px rgba(255, 43, 143, 0.8), 0 0 36px rgba(255, 43, 143, 0.4);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  margin-left: auto;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.19em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a {
  color: var(--text-dim);
}

.nav-links a:hover {
  color: var(--neon-cyan);
}

/* Botón boletos en header */
.btn-header-tickets {
  flex: none;
  padding: 11px clamp(14px, 2vw, 22px);
  border: 1px solid var(--border-cyan);
  border-radius: 2px;
  font-size: clamp(11px, 1vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--neon-cyan);
  box-shadow: inset 0 0 18px rgba(63, 208, 255, 0.12), 0 0 22px rgba(63, 208, 255, 0.15);
}

.btn-header-tickets:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: inset 0 0 18px rgba(255, 43, 143, 0.14), 0 0 26px rgba(255, 43, 143, 0.25);
}

/* Menú hamburguesa (móvil) */
.btn-burger {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.btn-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dim);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.btn-burger:hover span {
  background: var(--neon-cyan);
}

/* Drawer de navegación móvil */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(4, 3, 12, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-drawer.is-open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer a {
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.mobile-nav-drawer a:hover {
  color: var(--neon-pink);
}

.mobile-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 36px;
  line-height: 1;
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: clamp(560px, 88vh, 880px);
  margin-top: -84px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-overlay-horizontal {
  position: absolute;
  inset: 0;
  background: linear-gradient(101deg, rgba(7, 5, 26, 0.2) 0%, rgba(7, 5, 26, 0.5) 26%, rgba(7, 5, 26, 0.86) 56%, #07051a 82%);
}

.hero-overlay-vertical {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 5, 26, 0.35) 0%, rgba(7, 5, 26, 0.1) 26%, rgba(7, 5, 26, 0.72) 72%, #07051a 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(120px, 18vh, 180px) clamp(20px, 5vw, 60px) clamp(64px, 9vh, 110px);
  animation: rise 1.1s cubic-bezier(0.16, 0.84, 0.28, 1) both;
  will-change: transform, opacity;
}

.hero-card {
  max-width: min(100%, 560px);
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 26px);
}

.tour-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-yellow);
}

.pulsing-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--neon-yellow);
  box-shadow: 0 0 12px var(--neon-yellow);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-title {
  margin: 0;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 26px rgba(63, 208, 255, 0.5), 0 0 70px rgba(63, 208, 255, 0.25);
  animation: flicker 7s ease-in-out 1.2s infinite;
}

.hero-title span {
  font-style: italic;
  color: var(--neon-pink);
  text-shadow: 0 0 26px rgba(255, 43, 143, 0.6), 0 0 76px rgba(255, 43, 143, 0.3);
}

.hero-description {
  margin: 0;
  max-width: 460px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* Próxima fecha y contador */
.next-date-box {
  padding: 22px 0 4px;
  border-top: 1px solid rgba(185, 174, 224, 0.18);
}

.next-date-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.next-date-val {
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1;
  color: #fff;
}

.next-date-venue {
  font-size: clamp(14px, 1.4vw, 15px);
  color: var(--text-dim);
  margin-top: 8px;
}

/* Contador en vivo */
.countdown-timer {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.countdown-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(7, 5, 26, 0.7);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 8px 12px;
  min-width: 54px;
}

.countdown-num {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(63, 208, 255, 0.4);
  font-family: monospace;
}

.countdown-unit {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Botones de acción */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 2px;
  background: var(--neon-pink);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 0 34px rgba(255, 43, 143, 0.45);
  font-weight: 600;
  text-align: center;
}

.btn-primary:hover {
  background: var(--neon-pink-hover);
  color: #fff;
  box-shadow: 0 0 44px rgba(255, 43, 143, 0.65);
}

.btn-outline {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid rgba(242, 236, 255, 0.28);
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.btn-cyan {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 2px;
  background: var(--neon-cyan);
  color: var(--bg-dark);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(63, 208, 255, 0.35);
  font-weight: 600;
  text-align: center;
}

.btn-cyan:hover {
  background: var(--neon-cyan-hover);
  color: var(--bg-dark);
}

/* Indicador de scroll */
.scroll-indicator {
  position: absolute;
  left: clamp(20px, 5vw, 60px);
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: bob 2.6s ease-in-out infinite;
}

.scroll-indicator span {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--text-dim), transparent);
}

/* --------------------------------------------------------------------------
   7. CINTILLO / TICKER MARQUESINA
   -------------------------------------------------------------------------- */
.ticker-wrapper {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(185, 174, 224, 0.14);
  border-bottom: 1px solid rgba(185, 174, 224, 0.14);
  background: var(--bg-card);
  padding: 16px 0;
}

.ticker-track {
  display: flex;
  width: 200%;
  animation: marquee 34s linear infinite;
  white-space: nowrap;
  font-size: clamp(12px, 1.2vw, 14px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ticker-track span {
  padding: 0 26px;
}

.ticker-track span.dot-cyan { color: var(--neon-cyan); }
.ticker-track span.dot-pink { color: var(--neon-pink); }
.ticker-track span.dot-yellow { color: var(--neon-yellow); }

/* --------------------------------------------------------------------------
   8. SECCIÓN GIRA / PRÓXIMAS FECHAS
   -------------------------------------------------------------------------- */
.tour-section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 60px) clamp(40px, 6vw, 60px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(32px, 5vw, 52px);
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.02em;
  color: #fff;
}

.section-subtitle {
  font-size: clamp(11px, 1.1vw, 12px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.tour-list {
  display: flex;
  flex-direction: column;
}

.tour-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 32px;
  padding: clamp(20px, 3vw, 26px) 8px;
  border-top: 1px solid var(--border-light);
  transition: background-color 0.25s ease;
}

.tour-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.tour-item:hover {
  background: rgba(63, 208, 255, 0.05);
}

.tour-item.is-sold-out {
  opacity: 0.55;
}

.tour-item.is-sold-out:hover {
  background: transparent;
}

.tour-date {
  flex: 0 0 120px;
  font-size: clamp(24px, 3vw, 30px);
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(63, 208, 255, 0.4);
}

.tour-item.is-sold-out .tour-date {
  color: var(--text-dim);
  text-shadow: none;
}

.tour-city {
  flex: 1 1 180px;
  font-size: clamp(17px, 1.8vw, 20px);
  color: #fff;
}

.tour-venue {
  flex: 2 1 240px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-muted);
}

.btn-ticket {
  flex: none;
  padding: 11px 22px;
  border: 1px solid var(--border-cyan);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  transition: all 0.25s ease;
}

.btn-ticket:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
}

.btn-ticket-urgent {
  border-color: var(--border-pink);
  color: var(--neon-pink);
}

.btn-ticket-urgent:hover {
  background: var(--neon-pink);
  color: #fff;
}

.badge-sold-out {
  flex: none;
  padding: 11px 22px;
  border: 1px solid rgba(185, 174, 224, 0.3);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   9. SECCIÓN MÚSICA / EP
   -------------------------------------------------------------------------- */
.music-section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 60px);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.album-cover-wrapper {
  position: relative;
}

.album-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 43, 143, 0.35), transparent 70%);
  filter: blur(30px);
  animation: pulse 6s ease-in-out infinite;
}

.album-cover-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 43, 143, 0.3);
}

.album-cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.music-tag {
  font-size: clamp(11px, 1.1vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-yellow);
  margin-bottom: 18px;
}

.music-title {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 43, 143, 0.35);
}

.music-description {
  margin: 0 0 34px;
  max-width: 420px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--text-muted);
  text-wrap: pretty;
}

.tracklist {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.track-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 13px 12px;
  border-top: 1px solid rgba(185, 174, 224, 0.14);
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.track-item:last-child {
  border-bottom: 1px solid rgba(185, 174, 224, 0.14);
}

.track-item:hover, .track-item.is-active {
  background: rgba(63, 208, 255, 0.08);
  color: #fff;
}

.track-item.is-active .track-num {
  color: var(--neon-pink);
  font-weight: bold;
}

.track-num {
  width: 26px;
  font-size: 13px;
  color: var(--text-dim);
}

.track-name {
  flex: 1;
}

.track-duration {
  margin-left: auto;
  font-size: 14px;
  color: var(--text-dim);
}

.streaming-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   10. SECCIÓN VIDEO OFICIAL
   -------------------------------------------------------------------------- */
.video-section {
  padding: 0 clamp(20px, 5vw, 60px) clamp(64px, 9vw, 120px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.video-frame {
  position: relative;
  aspect-ratio: 21 / 9;
  min-height: 220px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(63, 208, 255, 0.25);
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(7, 5, 26, 0.85));
  pointer-events: none;
}

.video-info-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 3.5vw, 44px);
  pointer-events: none;
}

.video-tag {
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-yellow);
  margin-bottom: 12px;
}

.video-song-title {
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
}

.btn-video-play {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 2px;
  background: rgba(7, 5, 26, 0.6);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.btn-video-play:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  border-color: var(--neon-cyan);
}

/* --------------------------------------------------------------------------
   11. SECCIÓN GALERÍA
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 0 clamp(20px, 5vw, 60px) clamp(64px, 9vw, 120px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  grid-auto-rows: clamp(150px, 18vw, 200px);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(185, 174, 224, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--neon-pink);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-span-2 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-span-col-2 {
  grid-column: span 2;
}

/* --------------------------------------------------------------------------
   12. SECCIÓN HISTORIA / BIO
   -------------------------------------------------------------------------- */
.history-section {
  padding: 0 clamp(20px, 5vw, 60px) clamp(70px, 10vw, 130px);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.history-tag {
  font-size: clamp(11px, 1.1vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 20px;
}

.history-title {
  margin: 0 0 28px;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 560px;
  text-wrap: pretty;
}

.history-text {
  margin: 0 0 20px;
  max-width: 560px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text-muted);
  text-wrap: pretty;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(36px, 5vw, 56px);
}

.stat-val {
  font-size: clamp(34px, 4.4vw, 46px);
  line-height: 1;
}

.stat-val.cyan { color: var(--neon-cyan); text-shadow: 0 0 24px rgba(63, 208, 255, 0.45); }
.stat-val.pink { color: var(--neon-pink); text-shadow: 0 0 24px rgba(255, 43, 143, 0.45); }
.stat-val.yellow { color: var(--neon-yellow); text-shadow: 0 0 24px rgba(255, 210, 63, 0.4); }

.stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 10px;
}

.portrait-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(63, 208, 255, 0.25);
}

.portrait-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   13. SECCIÓN PRENSA / PRESS KIT
   -------------------------------------------------------------------------- */
.press-section {
  padding: 0 clamp(20px, 5vw, 60px) clamp(70px, 10vw, 130px);
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.press-tag {
  font-size: clamp(11px, 1.1vw, 12px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 20px;
}

.press-title {
  margin: 0 0 22px;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.1;
  color: #fff;
}

.press-description {
  margin: 0 0 30px;
  max-width: 400px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--text-muted);
  text-wrap: pretty;
}

.press-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 14px;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.download-card:hover {
  border-color: var(--neon-cyan);
  background: rgba(63, 208, 255, 0.05);
}

.download-card.pink-accent:hover {
  border-color: var(--neon-pink);
  background: rgba(255, 43, 143, 0.05);
}

.download-type {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.download-name {
  font-size: clamp(17px, 1.9vw, 20px);
}

/* --------------------------------------------------------------------------
   14. SECCIÓN CONTRATACIONES Y CONTACTO
   -------------------------------------------------------------------------- */
.contact-section {
  position: relative;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--border-light);
  background: radial-gradient(120% 140% at 78% 0%, rgba(36, 64, 168, 0.5), transparent 60%), var(--bg-card);
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info-title {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  color: #fff;
}

.contact-info-desc {
  margin: 0 0 34px;
  max-width: 440px;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--text-muted);
  text-wrap: pretty;
}

.contact-specs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-spec-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-spec-val {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-secondary);
}

.contact-spec-val a {
  color: var(--neon-cyan);
}

/* Formulario */
.contact-form-card {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  background: linear-gradient(160deg, rgba(36, 64, 168, 0.22), rgba(11, 8, 36, 0.6));
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group.full-width {
  margin-top: 26px;
}

.form-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid var(--border-medium);
  border-radius: 2px;
  background: rgba(7, 5, 26, 0.55);
  color: var(--text-secondary);
  font-family: var(--font-serif);
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(63, 208, 255, 0.15);
}

.event-type-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip-btn {
  padding: 10px 18px;
  border-radius: 2px;
  border: 1px solid rgba(185, 174, 224, 0.24);
  background: transparent;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.chip-btn.is-selected {
  background: rgba(255, 43, 143, 0.16);
  border-color: rgba(255, 43, 143, 0.5);
  color: var(--neon-pink-hover);
}

.btn-submit {
  margin-top: 30px;
  width: 100%;
  padding: 17px;
  border: none;
  border-radius: 2px;
  background: var(--neon-pink);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 32px rgba(255, 43, 143, 0.42);
  font-weight: 600;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-submit:hover {
  background: var(--neon-pink-hover);
  box-shadow: 0 0 44px rgba(255, 43, 143, 0.65);
}

.form-success-msg {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border-radius: 2px;
  background: rgba(63, 208, 255, 0.1);
  border: 1px solid var(--border-cyan);
  color: var(--neon-cyan);
  text-align: center;
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 60px);
  background: var(--bg-dark);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 40px);
}

.footer-logo {
  font-size: clamp(24px, 3.4vw, 34px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 20px rgba(63, 208, 255, 0.5);
  font-weight: 600;
}

.footer-logo span {
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 43, 143, 0.6);
}

.footer-copy {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 34px);
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-social-links a {
  color: var(--text-dim);
}

.footer-social-links a:hover {
  color: var(--neon-cyan);
}

.footer-social-links a.pink-hover:hover {
  color: var(--neon-pink);
}

/* --------------------------------------------------------------------------
   16. ANIMACIONES CLAVE
   -------------------------------------------------------------------------- */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.96); }
}

@keyframes flicker {
  0%, 100% {
    text-shadow: 0 0 26px rgba(63, 208, 255, 0.5), 0 0 70px rgba(63, 208, 255, 0.25);
  }
  47% {
    text-shadow: 0 0 26px rgba(63, 208, 255, 0.5), 0 0 70px rgba(63, 208, 255, 0.25);
  }
  49% {
    text-shadow: 0 0 8px rgba(63, 208, 255, 0.2);
  }
  51% {
    text-shadow: 0 0 30px rgba(63, 208, 255, 0.6), 0 0 84px rgba(63, 208, 255, 0.3);
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(9px); opacity: 0.25; }
}

/* Animaciones reveal con data-reveal */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.95s cubic-bezier(0.16, 0.84, 0.28, 1), transform 1.15s cubic-bezier(0.16, 0.84, 0.28, 1);
}

[data-reveal="up"] { transform: translateY(34px); }
[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="scale"] { transform: scale(1.06); }

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   17. MEDIA QUERIES (RESPONSIVE)
   -------------------------------------------------------------------------- */
@media (max-width: 880px) {
  .nav-links {
    display: none !important;
  }
  
  .btn-burger {
    display: flex !important;
  }
  
  .gallery-span-2 {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .gallery-span-col-2 {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .btn-header-tickets {
    display: none;
  }
  
  .tour-date {
    flex: 1 1 100%;
  }
  
  .tour-city {
    flex: 1 1 100%;
  }
  
  .tour-venue {
    flex: 1 1 100%;
  }
}

/* --------------------------------------------------------------------------
   18. PÁGINA DE ENLACES (LINKS / LINKTREE)
   -------------------------------------------------------------------------- */
.links-page-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(36px, 7vh, 68px) 20px 48px;
  background: 
    radial-gradient(circle at 15% 15%, rgba(255, 43, 143, 0.14), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(63, 208, 255, 0.14), transparent 45%),
    var(--bg-deep);
  position: relative;
}

.links-container {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  z-index: 2;
}

/* Perfil */
.links-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.links-avatar-wrapper {
  position: relative;
  width: 112px;
  height: 112px;
  margin-bottom: 18px;
}

.links-avatar-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
  opacity: 0.8;
  filter: blur(10px);
  animation: pulse 4s ease-in-out infinite;
}

.links-avatar-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 25% 15%;
  border: 2px solid #fff;
  background: var(--bg-dark);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.links-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255, 210, 63, 0.1);
  border: 1px solid rgba(255, 210, 63, 0.4);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-yellow);
  margin-bottom: 12px;
}

.links-title {
  margin: 0 0 8px;
  font-size: clamp(26px, 5vw, 34px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 16px rgba(63, 208, 255, 0.6);
  font-weight: 600;
  animation: flicker 7s ease-in-out 1.2s infinite;
}

.links-title span {
  color: var(--neon-pink);
  font-style: italic;
  text-shadow: 0 0 16px rgba(255, 43, 143, 0.7);
}

.links-bio {
  font-size: clamp(14px, 2.4vw, 15px);
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.5;
  margin: 0;
}

/* Lista de botones */
.links-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(11, 8, 36, 0.75);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: clamp(14px, 2.5vw, 16px);
  letter-spacing: 0.03em;
  transition: all 0.25s cubic-bezier(0.16, 0.84, 0.28, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.link-button:hover {
  transform: translateY(-2px);
  border-color: var(--neon-cyan);
  background: rgba(63, 208, 255, 0.08);
  color: #fff;
  box-shadow: 0 8px 30px rgba(63, 208, 255, 0.25);
}

.link-button.featured {
  background: linear-gradient(135deg, rgba(255, 43, 143, 0.22), rgba(63, 208, 255, 0.22));
  border: 1px solid rgba(255, 43, 143, 0.6);
  box-shadow: 0 0 25px rgba(255, 43, 143, 0.25);
}

.link-button.featured:hover {
  border-color: var(--neon-pink);
  background: linear-gradient(135deg, rgba(255, 43, 143, 0.32), rgba(63, 208, 255, 0.32));
  box-shadow: 0 0 35px rgba(255, 43, 143, 0.45);
}

.link-button.pink-accent:hover {
  border-color: var(--neon-pink);
  background: rgba(255, 43, 143, 0.08);
  box-shadow: 0 8px 30px rgba(255, 43, 143, 0.25);
}

.link-button.yellow-accent:hover {
  border-color: var(--neon-yellow);
  background: rgba(255, 210, 63, 0.08);
  box-shadow: 0 8px 30px rgba(255, 210, 63, 0.25);
}

.link-icon {
  width: 26px;
  height: 26px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  transition: transform 0.25s ease;
}

.link-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.link-button:hover .link-icon {
  transform: scale(1.15);
}

.link-button.pink-accent .link-icon {
  color: var(--neon-pink);
}

.link-button.featured .link-icon {
  color: var(--neon-yellow);
}

.link-text {
  flex: 1;
  text-align: left;
  font-weight: 500;
}

.link-subtext {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}

.link-arrow {
  font-size: 14px;
  color: var(--text-dim);
  transition: transform 0.25s ease, color 0.25s ease;
}

.link-button:hover .link-arrow {
  transform: translateX(4px);
  color: #fff;
}

/* Pie de página links */
.links-footer {
  margin-top: 10px;
  text-align: center;
}

.links-footer p {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.links-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  background: rgba(7, 5, 26, 0.4);
  transition: all 0.25s ease;
}

.links-back-btn:hover {
  color: var(--neon-pink);
  border-color: var(--border-pink);
}
