:root {
  /* Colores principales - fondo claro */
  --primary: #ffffff;
  --secondary: #f8f8f8;
  --bg-light: #fafafa;
  --text: #1a1a1a;
  --text-muted: #666666;
  --border: #e0e0e0;
  
  /* Colores navideños elegantes */
  --accent: #c41e3a;
  --accent-dark: #a01a2e;
  --accent-green: #2d5016;
  --accent-gold: #b8860b;
  --accent-gold-light: #d4af37;
  
  /* Estados */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --disabled: #cccccc;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--primary);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  overflow-x: hidden;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(224, 224, 224, 0.8);
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text);
}

.header__brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f6f0e4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
}

.header__brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__brand-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.header__brand-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header__menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
}

.header__menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__menu-toggle[aria-expanded='true'] .header__menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header__menu-toggle[aria-expanded='true'] .header__menu-icon span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle[aria-expanded='true'] .header__menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}

/* Los enlaces móviles ahora están en mobile-menu.js */

.header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.4rem 0.2rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
  color: var(--accent);
}

.header__nav-link:hover::after,
.header__nav-link:focus-visible::after {
  transform: scaleX(1);
}

.header__cta {
  background: linear-gradient(120deg, var(--accent-gold), var(--accent));
  color: #ffffff;
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(196, 30, 58, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header__cta:hover,
.header__cta:focus-visible {
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(196, 30, 58, 0.4);
}

.header__cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.header__nav-overlay {
  display: none;
}

.header__nav-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  margin-left: auto;
}

.header__nav-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.header__nav-close span:first-child {
  transform: rotate(45deg);
}

.header__nav-close span:last-child {
  transform: rotate(-45deg);
}

/* ========================================
   MENÚ MÓVIL (Componente separado)
   ======================================== */

.mobile-menu-overlay {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99998;
  }

  .mobile-menu-overlay--visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(80vw, 320px);
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 4.5rem 1.5rem 2rem;
    background: var(--primary);
    border-left: 1px solid var(--border);
    box-shadow: -14px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
    will-change: transform;
  }

  .mobile-menu--open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 0;
    z-index: 1;
  }

  .mobile-menu__close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
  }

  .mobile-menu__close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-menu__close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu__link {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease, background-color 0.2s ease;
  }

  .mobile-menu__link:last-child {
    border-bottom: none;
  }

  .mobile-menu__link:hover,
  .mobile-menu__link:focus-visible {
    color: var(--accent);
    background-color: rgba(196, 30, 58, 0.05);
  }
}

@media (max-width: 600px) {
  .mobile-menu {
    width: min(90vw, 280px);
    padding: 4rem 1.25rem 1.5rem;
  }
}

@media (max-width: 900px) {
  /* Prevenir scroll horizontal en móviles */
  html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }
  
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }
  
  /* Asegurar que los contenedores principales no causen scroll horizontal */
  .header,
  .main,
  .footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .header__container {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Reducir tamaño del logo en móviles */
  .header__brand-logo {
    width: 40px;
    height: 40px;
  }

  /* Reducir tamaño del texto del brand en móviles */
  .header__brand-eyebrow {
    font-size: 0.65rem;
  }

  .header__brand-title {
    font-size: 1rem;
  }

  /* Reducir tamaño del botón toggle en móviles */
  .header__menu-toggle {
    width: 38px;
    height: 38px;
  }

  .header__menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  /* Ocultar nav del header en móviles - solo mostrar botón toggle */
  .header__nav {
    display: none;
  }

  /* Ocultar botón de recuperar comprobante en el header móvil - está en el menú deslizable */
  .header__cta {
    display: none;
  }
}

@media (max-width: 600px) {
  .header__nav {
    width: min(90vw, 280px);
    padding: 4rem 1.25rem 1.5rem;
  }
}

/* Main */
.main {
  flex: 1;
}

/* Hero */
.hero {
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__online-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__notice-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.hero__notice-text {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.hero__notice-text strong {
  font-weight: 600;
  color: var(--accent);
}

.hero__notice-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.hero__notice-link:hover {
  color: var(--accent-dark);
}

@media (max-width: 600px) {
  .hero__online-notice {
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .hero__notice-text {
    font-size: 0.85rem;
  }
  
  .hero__notice-link {
    display: block;
    margin-top: 0.25rem;
  }
}

/* Section */
.section {
  padding: 2.5rem 0;
}

.section--alt {
  background-color: var(--secondary);
}

.section--hidden {
  display: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.05em;
}

/* Events Grid - Nuevo diseño sin cards */
.events-grid {
  display: block !important;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

/* Cuando events-grid contiene main-nights-grid, no aplicar grid */
.events-grid > .main-nights-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 3rem !important;
}

/* Asegurar que events-grid no interfiera con el carrusel */
.events-grid > .main-nights-carousel {
  display: none !important;
}

/* Main Night - Diseño mejorado con card para imagen */
.main-night {
  display: flex !important;
  flex-direction: column;
  gap: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: auto;
  overflow: visible;
}

.main-night:hover {
  transform: translateY(-4px);
}

/* Card para la imagen SVG - Evita desbordes y se ajusta perfectamente */
.main-night__image-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--secondary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  isolation: isolate;
}

.main-night:hover .main-night__image-card {
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
  border-color: var(--accent);
  transform: scale(1.02);
}

.main-night__image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  box-sizing: border-box;
}

.main-night__image-wrapper svg {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  display: block;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* Efecto de desenfoque del fondo en hover */
.main-night:hover .main-night__image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(8px) brightness(0.6);
  z-index: 0;
  transform: scale(1.1);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.main-night__image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(0px);
  z-index: 0;
  transform: scale(1);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.main-night__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

/* Badge del artista mejorado */
.main-night__artist-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 10;
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-night__artist-badge-time {
  font-size: 0.75rem;
  opacity: 0.9;
  font-weight: 600;
}

.main-night__artist-badge-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Efectos hover para SVG - Contenidos dentro de la card, imagen arriba no se desborda */
.main-night:hover .main-night__image-wrapper svg #coki,
.main-night__image-wrapper svg #nocheros1, 
.main-night__image-wrapper svg #_x32_1,
.main-night:hover .main-night__image-wrapper svg #_x32_1{
  
}
 {
  transform: scale(1.05);
  filter: brightness(1.1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  z-index: 2;
}

.main-night__image-wrapper svg #coki,
.main-night__image-wrapper svg #nocheros1,
.main-night__image-wrapper svg #_x32_1 {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}
 

/* Desenfoque del fondo en hover */
.main-night:hover .main-night__image-wrapper svg #fondo,
.main-night:hover .main-night__image-wrapper svg #fondo_x5F_21,
.main-night:hover .main-night__image-wrapper svg #fondo_x5F_nocheros {
  filter: blur(12px) brightness(0.4);
  transition: filter 0.5s ease;
}

.main-night__image-wrapper svg #fondo,
.main-night__image-wrapper svg #fondo_x5F_21,
.main-night__image-wrapper svg #fondo_x5F_nocheros {
  transition: filter 0.5s ease;
}

/* Fecha y horario arriba de la imagen */
.main-night__date-time {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.main-night__date-time-date {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.main-night__date-time-time {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
}

/* Nombre del artista superpuesto sobre la imagen */
.main-night__artist-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 70%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.main-night__artist-overlay-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0.5px;
}

/* Contenido de la noche */
.main-night__content {
  display: flex !important;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  min-height: 200px;
  visibility: visible;
  opacity: 1;
}

.main-night__header {
  display: flex !important;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0.5rem;
  visibility: visible;
  opacity: 1;
}

.main-night__date {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: block !important;
  visibility: visible;
  opacity: 1;
  margin-bottom: 0.25rem;
}

.main-night__title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
  text-transform: none;
  letter-spacing: -0.5px;
  line-height: 1.2;
  display: block !important;
  visibility: visible;
  opacity: 1;
}

/* Sección de artistas principales */
.main-night__artists {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  display: block !important;
  visibility: visible;
  opacity: 1;
  margin-top: 0.5rem;
}

.main-night__no-data {
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  padding: 1rem;
  text-align: center;
}

.main-night__artists-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.main-night__artists-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-night__artist-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--primary);
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-night__artist-item:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  border-left-width: 6px;
}

.main-night__artist-time {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  min-width: 90px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.main-night__artist-name {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
}

/* Sección de actividades secundarias */
.main-night__activities {
  background: var(--secondary);
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid var(--border);
}

.main-night__activities-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-night__activities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.main-night__activity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--primary);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.main-night__activity-item:hover {
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(4px);
}

.main-night__activity-time {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
  min-width: 85px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.main-night__activity-name {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

/* Sección de descripción con fecha y shows principales */
.main-night__description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.main-night__description-date {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.main-night__shows-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-night__show-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--primary);
  border-radius: 10px;
  border-left: 4px solid var(--accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-night__show-item:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
  border-left-width: 6px;
}

.main-night__show-time {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  min-width: 90px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.main-night__show-name {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  flex: 1;
}

/* Dates Grid */
.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.date-card {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.875rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.date-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: var(--secondary);
}

.date-card__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

/* Venue Map */
.venue-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--primary);
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.venue-date {
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 1rem;
  font-weight: 500;
}

.venue-date strong {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
}

/* Layout de dos columnas */
.venue-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.venue-map-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.venue-form-column {
  position: sticky;
  top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.venue-form-column.visible {
  opacity: 1;
  visibility: visible;
}

.venue-map-wrapper {
  background: var(--primary);
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.venue-map {
  position: relative;
  max-width: 100%;
  margin: 0 auto 2rem;
  background: transparent;
  padding: 0;
  width: 100%;
}

/* Contenedor del SVG */
.venue-svg-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: var(--secondary);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: visible; /* Cambiado de hidden a visible para permitir tooltips */
  box-sizing: border-box;
  border: 1px solid var(--border);
  z-index: 1;
}

.venue-svg-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  max-height: 500px;
  z-index: 1;
  cursor: grab;
  padding: 0.5rem;
}

.venue-svg-wrapper.is-rotating {
  cursor: grabbing;
}

.venue-svg-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.venue-svg-wrapper svg {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  display: block;
  pointer-events: auto; /* Asegurar que el SVG sea interactivo */
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.venue-svg-hint {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Secciones del SVG */
.venue-svg-section {
  transition: all 0.3s ease;
  stroke-width: 2;
  pointer-events: auto !important; /* Forzar que los elementos sean interactivos */
  position: relative;
  z-index: 2;
}

.venue-svg-section--available {
  fill: var(--success) !important;
  opacity: 0.7 !important;
  stroke: var(--success);
}

.venue-svg-section--available:hover {
  fill: var(--success) !important;
  opacity: 0.9 !important;
  stroke: var(--success);
  stroke-width: 2;
}

.venue-svg-section--half {
  fill: var(--warning) !important;
  opacity: 0.7 !important;
  stroke: var(--warning);
}

.venue-svg-section--half:hover {
  fill: var(--warning) !important;
  opacity: 0.9 !important;
  stroke: var(--warning);
  stroke-width: 2;
}

.venue-svg-section--sold {
  fill: #dc3545 !important; /* Rojo para sin cupos */
  opacity: 0.6 !important;
  stroke: #dc3545 !important;
  cursor: not-allowed !important;
}

.venue-svg-section--disabled {
  fill: #6c757d !important; /* Gris para no habilitado */
  opacity: 0.4 !important;
  stroke: #6c757d !important;
  cursor: not-allowed !important;
}

.venue-svg-section.is-selected {
  stroke: var(--accent) !important;
  stroke-width: 2 !important;
  opacity: 1 !important;
}

.venue-svg-section.is-hovered {
  stroke: var(--accent) !important;
  stroke-width: 3 !important;
  opacity: 1 !important;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.4));
}

/* Tooltip */
.venue-tooltip {
  position: absolute;
  display: block;
  background: var(--text);
  color: var(--primary);
  padding: 0;
  border-radius: 8px;
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 999999 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  min-width: 220px;
  max-width: 90vw;
  white-space: normal;
  animation: fadeIn 0.2s ease-out;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out, transform 0.2s ease-out;
}

.venue-tooltip.is-visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.venue-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--text);
}

.tooltip-content {
  display: flex;
  flex-direction: column;
}

.tooltip-header {
  background: var(--accent);
  color: var(--primary);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.tooltip-header strong {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.tooltip-position {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 600;
}

.tooltip-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tooltip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.tooltip-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.85rem;
}

.tooltip-value {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 0.85rem;
}

.tooltip-status {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
}

.venue-seat-map-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  box-sizing: border-box;
}

.venue-seat-map {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 2rem;
  box-sizing: border-box;
}

/* Escenario */
.venue-seat-map__stage {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 70px;
  margin: 0 auto 2rem;
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  box-shadow: 
    0 5px 20px rgba(212, 175, 55, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.stage-label {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Bandejas de asientos */
.venue-seat-map__seating {
  position: relative;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.venue-seat-tray {
  position: relative;
  flex: 1 1 calc(50% - 8px);
  max-width: calc(50% - 8px);
  min-width: 280px;
  box-sizing: border-box;
}


.venue-seat-tray__label {
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  border: 1px solid var(--accent);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.venue-seat-tray__sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Secciones de asientos */
.venue-seat-section {
  background: var(--secondary);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.venue-seat-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.venue-seat-section__name {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
}

.venue-seat-section__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.venue-seat-section__seats {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  min-height: 80px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  align-content: start;
}

.seat {
  width: 100%;
  aspect-ratio: 1;
  max-width: 20px;
  max-height: 20px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.seat-more {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.5rem;
  margin-top: 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.venue-seat-section__info {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.venue-seat-section__info strong {
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
}

.venue-seat-section--available {
  border-color: #16a34a;
  background: linear-gradient(135deg, rgba(30, 126, 52, 0.2) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.venue-seat-section--available:hover {
  border-color: #22c55e;
  transform: scale(1.02);
  box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

.venue-seat-section--available .seat--available {
  background: #22c55e;
  border-color: #16a34a;
}

.venue-seat-section--available .seat--available:hover {
  background: #16a34a;
  transform: scale(1.2);
}

.venue-seat-section--half {
  border-color: #ea580c;
  background: linear-gradient(135deg, rgba(194, 65, 12, 0.2) 0%, rgba(249, 115, 22, 0.1) 100%);
}

.venue-seat-section--half:hover {
  border-color: #f97316;
  transform: scale(1.02);
  box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.venue-seat-section--half .seat--half {
  background: #f97316;
  border-color: #ea580c;
}

.venue-seat-section--half .seat--half:hover {
  background: #ea580c;
  transform: scale(1.2);
}

.venue-seat-section--sold {
  border-color: #dc2626;
  background: linear-gradient(135deg, rgba(153, 27, 27, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
  cursor: not-allowed;
  opacity: 0.7;
}

.venue-seat-section--sold .seat--sold {
  background: #ef4444;
  border-color: #dc2626;
  opacity: 0.6;
}

.venue-seat-section--disabled {
  border-color: var(--border);
  background: var(--secondary);
  cursor: not-allowed;
  opacity: 0.5;
}

.venue-seat-section--disabled .seat {
  background: var(--border);
  opacity: 0.3;
}

.venue-seat-section.is-selected {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
  box-shadow: 
    0 0 0 3px rgba(212, 175, 55, 0.5),
    0 0 20px rgba(212, 175, 55, 0.6);
  transform: scale(1.03);
  z-index: 10;
  animation: pulse-selected 2s ease-in-out infinite;
}

@keyframes pulse-selected {
  0%, 100% {
    box-shadow: 
      0 0 0 3px rgba(212, 175, 55, 0.5),
      0 0 20px rgba(212, 175, 55, 0.6);
  }
  50% {
    box-shadow: 
      0 0 0 5px rgba(212, 175, 55, 0.7),
      0 0 30px rgba(212, 175, 55, 0.8);
  }
}

/* Estilos adicionales para asientos */
.seat--sold {
  background: #ef4444 !important;
  border-color: #dc2626 !important;
  opacity: 0.5;
  cursor: not-allowed;
}

/* Legend */
.venue-legend {
  display: none;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  padding: 0.75rem 1rem;
  background: var(--primary);
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.legend-item:hover {
  border-color: var(--accent);
}

.legend-color {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.legend-color--available {
  background: var(--success);
  border-color: var(--success);
}

.legend-color--half {
  background: var(--warning);
  border-color: var(--warning);
}

.legend-color--sold {
  background: var(--danger);
  border-color: var(--danger);
}

/* Selected Info */
.selected-info {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.selected-info__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.selected-info__text strong {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
}

/* Mensaje de no disponibilidad */
.no-availability-message {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: var(--secondary);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.no-availability-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.no-availability-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0.75rem 0;
}

.no-availability-text:first-of-type {
  font-weight: 600;
  color: var(--text);
  margin-top: 0;
}

/* Checkout */
.checkout {
  /* Ya no se usa como card, estilos movidos a venue-form-column */
}

.checkout-form {
  margin-top: 1.5rem;
}

.checkout__header {
  text-align: left;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.checkout__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.checkout__subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.checkout-form {
  margin-top: 0;
}

.checkout-summary {
  background: var(--secondary);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.checkout-summary__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item--quantity {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.summary-item--total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--accent);
  border-bottom: none;
}

.summary-item__label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.summary-item__value {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
}

.summary-item__value--total {
  font-size: 1.25rem;
  color: var(--accent);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--primary);
  color: var(--text);
  border-radius: 6px;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.quantity-btn:active {
  transform: scale(0.98);
}

.quantity-input {
  width: 60px;
  height: 36px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--primary);
  color: var(--text);
  border-radius: 6px;
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-help {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-spam-warning {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 6px;
  padding: 0.875rem 1rem;
  margin-top: 0.75rem;
  box-shadow: 0 2px 4px rgba(255, 193, 7, 0.15);
}

.form-spam-warning-text {
  margin: 0;
  color: #856404;
  font-size: 0.85rem;
  line-height: 1.5;
  text-align: left;
}

.form-spam-warning-text strong {
  color: #856404;
  font-weight: 700;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.1);
}

.btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn__total {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

.btn--primary:active {
  transform: translateY(0);
}

/* Result */
.result {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--bg-light);
  border: 2px solid var(--danger);
  color: var(--text);
}

.result.success {
  border-color: var(--success);
  background: rgba(34, 197, 94, 0.1);
}

.result p {
  margin: 0.5rem 0;
}

.result strong {
  color: var(--accent);
}

.result img {
  display: block;
  margin: 1rem auto;
  border-radius: 8px;
}

/* Footer */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer .container {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.footer__brand {
  color: var(--text);
}

.footer__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.footer__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.footer__description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.footer__highlight {
  color: var(--accent);
  font-weight: 600;
}

.footer__links,
.footer__contact {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer__links-title {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer__tagline {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__legal-note {
  margin: 0.25rem 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    height: 80px;
    overflow: hidden;
  }
  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section {
    padding: 2rem 0;
  }

  .events-grid {
    display: block !important;
  }
  
  .events-grid > .main-nights-grid {
    display: none !important;
  }
  
  .events-grid > .main-nights-carousel {
    display: block !important;
  }
  
  .main-night {
    gap: 1.5rem;
  }
  
  .main-night__image-card {
    border-radius: 12px;
  }
  
  .main-night__title {
    font-size: 1.5rem;
  }
  
  .main-night__artists {
    padding: 1.25rem;
  }
  
  .main-night__artist-item {
    padding: 0.875rem 1rem;
    gap: 1rem;
  }
  
  .main-night__artist-time {
    min-width: 75px;
    font-size: 0.95rem;
  }
  
  .main-night__artist-name {
    font-size: 1rem;
  }
  
  .main-night__date-time {
    margin-bottom: 0.75rem;
  }
  
  .main-night__date-time-date {
    font-size: 0.85rem;
  }
  
  .main-night__date-time-time {
    font-size: 1rem;
  }
  
  .main-night__artist-overlay {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  
  .main-night__artist-overlay-name {
    font-size: 1.25rem;
  }
  
  .main-night__description {
    padding: 1.25rem;
  }
  
  .main-night__description-date {
    font-size: 0.85rem;
  }
  
  .main-night__show-item {
    padding: 0.875rem 1rem;
    gap: 1rem;
  }
  
  .main-night__show-time {
    min-width: 75px;
    font-size: 0.95rem;
  }
  
  .main-night__show-name {
    font-size: 1rem;
  }

  .venue-trays {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .venue-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .venue-form-column {
    position: static;
  }

  .venue-map-wrapper {
    padding: 1rem;
    border-radius: 8px;
  }

  .venue-header {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border-radius: 8px;
  }

  .checkout {
    padding: 1.5rem;
  }
}

  .venue-seat-map-container {
    padding: 1.5rem 1rem;
  }

  .venue-svg-container {
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 16px;
  }

  .venue-svg-wrapper {
    min-height: 300px;
  }

  .venue-legend {
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
  }

  .legend-item {
    padding: 0.75rem 1.25rem;
  }

  .venue-tooltip {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
    min-width: 180px;
    max-width: 90vw;
  }

  .selected-info {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .venue-seat-map {
    padding-bottom: 1rem;
  }

  .venue-seat-map__stage {
    max-width: 100%;
    height: 60px;
    margin-bottom: 1.5rem;
  }

  .stage-label {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .venue-seat-map__seating {
    flex-direction: row;
    gap: 10px;
    max-width: 100%;
  }

  .venue-seat-tray {
    flex: 1 1 calc(50% - 5px);
    max-width: calc(50% - 5px);
    min-width: 0;
  }

  .venue-seat-tray__label {
    font-size: 0.85rem;
    padding: 0.6rem;
    margin-bottom: 1rem;
  }

  .venue-seat-tray__sections {
    gap: 10px;
  }

  .venue-seat-section {
    padding: 1rem;
  }

  .venue-seat-section__header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
  }

  .venue-seat-section__name {
    font-size: 0.95rem;
  }

  .venue-seat-section__price {
    font-size: 1.1rem;
  }

  .venue-seat-section__seats {
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    padding: 0.75rem;
    min-height: 70px;
  }

  .seat {
    max-width: 16px;
    max-height: 16px;
  }

  .venue-seat-section__info {
    font-size: 0.85rem;
  }
}

/* ==================== Estilos para Componentes de Reserva ==================== */

.reservation-container-wrapper {
  padding: 2rem 0;
  background: #f9fafb;
  min-height: 100vh;
}

.reservation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.map-container {
  margin-bottom: 2rem;
}

.availability-info {
  background: #f3f4f6;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.reservation-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Estilos para lotes */
.venue-seat-map__seating {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.lote-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.lote-card.available {
  border-color: #10b981;
  background: #f0fdf4;
}

.lote-card.available:hover {
  border-color: #059669;
  box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

.lote-card.available.selected {
  border-color: #059669;
  background: #d1fae5;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.lote-card.sold-out {
  border-color: #ef4444;
  background: #fef2f2;
  opacity: 0.7;
  cursor: not-allowed;
}

.lote-card.disabled {
  border-color: #d1d5db;
  background: #f9fafb;
  opacity: 0.5;
  cursor: not-allowed;
}

.lote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.lote-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.badge-available,
.badge-sold-out {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-available {
  background: #10b981;
  color: white;
}

.badge-sold-out {
  background: #ef4444;
  color: white;
}

.lote-info {
  margin-bottom: 1rem;
}

.lote-capacity {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.lote-capacity strong {
  color: #111827;
  font-weight: 600;
}

.lote-price {
  font-size: 1rem;
  color: #111827;
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  transition: width 0.3s ease;
}

.message-container {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid;
}

.message-container.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .reservation-container {
    padding: 1rem;
  }

  .venue-seat-map__seating {
    grid-template-columns: 1fr;
  }

  .lote-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 1.5rem 0;
  }

  .section__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .event-card__image {
    height: 180px;
  }

  .dates-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .venue-map-wrapper {
    padding: 1rem;
    border-radius: 8px;
  }

  .venue-header {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
  }

  .venue-header .section__title {
    font-size: 1.25rem;
  }

  .venue-legend {
    display: none;
  }

  .venue-seat-map-container {
    padding: 1rem;
  }

  .venue-svg-container {
    padding: 1rem;
    border-radius: 8px;
  }

  .venue-svg-wrapper {
    min-height: 200px;
  }

  .venue-legend {
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .legend-item {
    padding: 0.75rem;
    justify-content: center;
  }

  .venue-tooltip {
    font-size: 0.8rem;
    padding: 0.5rem 0.7rem;
    min-width: 160px;
    max-width: 85vw;
  }

  .selected-info {
    padding: 1rem;
    border-radius: 8px;
  }

  .checkout {
    padding: 1.25rem;
  }

  .checkout__title {
    font-size: 1.25rem;
  }

  .venue-seat-map__stage {
    height: 50px;
    margin-bottom: 1.25rem;
  }

  .stage-label {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
  }

  .venue-seat-map__seating {
    flex-direction: column;
    gap: 1.5rem;
  }

  .venue-seat-tray {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .venue-seat-tray__label {
    font-size: 0.8rem;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .venue-seat-tray__sections {
    gap: 0.75rem;
  }

  .venue-seat-section {
    padding: 0.875rem;
  }

  .venue-seat-section__header {
    margin-bottom: 0.625rem;
    padding-bottom: 0.5rem;
  }

  .venue-seat-section__name {
    font-size: 0.875rem;
    letter-spacing: 1px;
  }

  .venue-seat-section__price {
    font-size: 1rem;
  }

  .venue-seat-section__seats {
    grid-template-columns: repeat(6, 1fr);
    gap: 3px;
    padding: 0.625rem;
    min-height: 60px;
  }

  .seat {
    max-width: 14px;
    max-height: 14px;
  }

  .seat-more {
    font-size: 0.7rem;
    padding: 0.4rem;
  }

  .venue-seat-section__info {
    font-size: 0.8rem;
  }

  .venue-seat-section__info strong {
    font-size: 0.9rem;
  }
}

/* Reservation Validation Form */
.reservation-validation {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: var(--bg-light);
}

.reservation-validation__container {
  max-width: 500px;
  width: 100%;
  background: var(--primary);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.reservation-validation__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  text-align: center;
}

.reservation-validation__description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.6;
}

.reservation-validation__spam-warning {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(255, 193, 7, 0.2);
}

.reservation-validation__spam-warning-text {
  margin: 0;
  color: #856404;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

.reservation-validation__spam-warning-text strong {
  color: #856404;
  font-weight: 700;
}

.reservation-validation__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reservation-validation__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reservation-validation__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.reservation-validation__input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--primary);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.reservation-validation__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.reservation-validation__input:read-only {
  background: var(--secondary);
  cursor: not-allowed;
  opacity: 0.7;
}

.reservation-validation__input::placeholder {
  color: var(--text-muted);
}

.reservation-validation__button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  margin-top: 0.5rem;
}

.reservation-validation__button:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.reservation-validation__button:active:not(:disabled) {
  transform: translateY(0);
}

.reservation-validation__button:disabled {
  background: var(--disabled);
  cursor: not-allowed;
  opacity: 0.6;
}

.reservation-validation__message {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.reservation-validation__message--error {
  background: #fee;
  border: 1px solid #fcc;
  color: #c33;
}

.reservation-validation__message--success {
  background: #efe;
  border: 1px solid #cfc;
  color: #3c3;
}

.reservation-validation__spam-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.9;
}

.reservation-validation__reservations {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.reservation-validation__reservations-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.reservation-validation__reservation-item {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.reservation-validation__reservation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.reservation-validation__reservation-code {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 1px;
}

.reservation-validation__reservation-status {
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
}

.reservation-validation__reservation-status--paid {
  background: #d4edda;
  color: #155724;
}

.reservation-validation__reservation-status--pending {
  background: #fff3cd;
  color: #856404;
}

.reservation-validation__reservation-details {
  margin-bottom: 1rem;
}

.reservation-validation__reservation-details p {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.95rem;
}

.reservation-validation__action-button {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.reservation-validation__action-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.reservation-validation__action-button:active {
  transform: translateY(0);
}

.reservation-validation__action-button--payment {
  background: var(--accent-green);
}

.reservation-validation__action-button--payment:hover {
  background: #1f3a0f;
}

.reservation-validation__action-button--primary {
  margin-top: 1rem;
}

.reservation-validation__payment-option {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.reservation-validation__payment-question {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.reservation-validation__message--info {
  background: #e7f3ff;
  border: 1px solid #2196F3;
  color: #1976D2;
}

@media (max-width: 768px) {
  .header__container {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .header__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-end;
  }

  .header__link {
    font-size: 0.85rem;
    padding: 0.5rem 0.875rem;
  }

  .header__link--recovery {
    font-size: 0.8rem;
    padding: 0.5rem 0.875rem;
    width: auto;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .header__link-text {
    display: none;
  }

  .header__link-text--short {
    display: inline;
  }

  .reservation-validation {
    padding: 1.5rem 1rem;
    min-height: 50vh;
  }

  .reservation-validation__container {
    padding: 2rem 1.5rem;
  }

  .reservation-validation__title {
    font-size: 1.5rem;
  }

  .reservation-validation__description {
    font-size: 0.9rem;
  }

  .reservation-validation__spam-warning {
    padding: 0.875rem 1rem;
    margin-bottom: 1.5rem;
  }

  .reservation-validation__spam-warning-text {
    font-size: 0.875rem;
  }

  .reservation-validation__reservation-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .reservation-validation__reservation-code {
    font-size: 1rem;
  }
}
