/* =========================================
   VARIABLES DE COLOR NEÓN Y DORADO
   ========================================= */
:root {
    --bg-dark: #0b0510;
    --neon-purple: #b52be3;
    --neon-pink: #ff2a85;
    --gold: #ffd700;
    --text-light: #ffffff;
}

/* =========================================
   RESETEO GLOBAL
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

/* =========================================
   CABECERA Y NAVEGACIÓN
   ========================================= */
header {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--neon-purple);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(181, 43, 227, 0.3);
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
    letter-spacing: 1px;
}

/* Botón Hamburguesa (Oculto en PC) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    border-radius: 5px;
    box-shadow: 0 0 5px var(--gold);
    transition: all 0.3s;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    padding-bottom: 5px;
}

nav a:hover {
    color: var(--neon-pink);
    border-bottom: 2px solid var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink);
}

/* =========================================
   CABECERA CLÁSICA (IMAGEN FONDO-2026)
   ========================================= */
.banner-clasico-container {
    padding: 40px 20px 20px 20px;
    text-align: center;
}

.banner-clasico {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.banner-clasico img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(181, 43, 227, 0.4);
    border: 1px solid var(--neon-purple);
    display: block;
}

/* =========================================
   CONTADOR
   ========================================= */
.countdown-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.time-box {
    background: rgba(11, 5, 16, 0.8);
    border: 2px solid var(--neon-purple);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 90px;
    box-shadow: 0 0 15px rgba(181, 43, 227, 0.4);
    backdrop-filter: blur(5px);
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
    display: block;
    line-height: 1;
}

.time-box p {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
    color: var(--text-light);
}

/* =========================================
   ESTILOS GENERALES DE SECCIONES
   ========================================= */
section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    color: var(--neon-purple);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px var(--neon-purple);
    text-transform: uppercase;
}

/* =========================================
   ENTRADAS
   ========================================= */
.ticket-sales-box {
    max-width: 600px; 
    margin: 0 auto; 
    background: linear-gradient(135deg, rgba(11,5,16,0.9), rgba(181,43,227,0.2));
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--neon-pink);
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 42, 133, 0.3);
}

.ticket-sales-box h3 {
    color: var(--neon-pink);
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.btn-comprar {
    color: white; 
    font-weight: bold; 
    background: var(--neon-purple); 
    padding: 15px 35px; 
    border-radius: 50px; 
    text-decoration: none; 
    display: inline-block; 
    text-transform: uppercase; 
    box-shadow: 0 0 15px var(--neon-purple); 
    font-size: 1.2rem; 
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.btn-comprar:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 25px var(--neon-pink);
}

.neon-divider {
    border: 0;
    height: 1px;
    background: var(--neon-purple);
    margin: 25px 0;
    box-shadow: 0 0 10px var(--neon-purple);
}

.taquilla-text {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.taquilla-subtext {
    color: #aaa;
    font-size: 0.9rem;
}

.phone-reserve {
    font-size: 1.8rem;
    color: var(--gold);
    margin: 20px 0;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.group-discount {
    font-size: 1rem;
    color: #ccc;
    font-style: italic;
}

/* =========================================
   DÓNDE ESTAMOS Y MAPA
   ========================================= */
.location-container {
    max-width: 800px; 
    margin: 0 auto; 
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--neon-purple);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(181, 43, 227, 0.1);
}

.map-info h3 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.map-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.horarios-list {
    margin-top: 20px;
    list-style: none;
    display: inline-block;
    text-align: left;
}

.horarios-list li {
    background: rgba(255,42,133,0.1);
    border-left: 3px solid var(--neon-pink);
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 0 5px 5px 0;
    font-size: 1.1rem;
}

.map-wrapper {
    margin-top: 35px; 
    width: 100%; 
    border-radius: 10px; 
    overflow: hidden; 
    box-shadow: 0 0 15px rgba(181, 43, 227, 0.3); 
    border: 1px solid var(--neon-purple); 
}

.map-wrapper iframe {
    width: 100% !important; 
    height: 350px; 
    display: block; 
}

/* =========================================
   ESPECTÁCULO (GALERÍA DE IMÁGENES)
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(181, 43, 227, 0.2);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 250px; 
}

.gallery-item.wide {
    grid-column: span 2;
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 5, 16, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay span {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--gold);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 25px rgba(255, 42, 133, 0.5);
}

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

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover .overlay span {
    transform: translateY(0);
}

/* =========================================
   PREGUNTAS FRECUENTES (FAQ)
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(11, 5, 16, 0.8);
    border: 1px solid var(--neon-purple);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 0 10px rgba(181, 43, 227, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 42, 133, 0.3);
}

/* Estilo de la pregunta */
.faq-item summary {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gold);
    cursor: pointer;
    list-style: none; /* Oculta la flechita fea que traen los navegadores por defecto */
    position: relative;
    padding-right: 30px;
    outline: none;
}

/* Ocultar flecha en navegadores antiguos */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Símbolo "+" personalizado */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--neon-pink);
    font-size: 1.5rem;
    line-height: 1;
}

/* Símbolo "-" cuando está abierto */
.faq-item[open] summary::after {
    content: '−';
}

/* Estilo de la respuesta */
.faq-item p {
    margin-top: 15px;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px dashed rgba(255, 215, 0, 0.3);
    padding-top: 15px;
}

/* =========================================
   HISTORIA Y COLABORACIONES
   ========================================= */
.text-section {
    text-align: center;
    max-width: 800px;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 15px;
    border-bottom: 2px solid var(--neon-purple);
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.text-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ddd;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid var(--neon-pink);
}

.social-links {
    margin-bottom: 20px;
}

.social-text {
    color: #fff;
    margin-right: 10px;
}

.social-links a {
    color: var(--neon-purple);
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* =========================================
   DISEÑO RESPONSIVE (MÓVILES) MEJORADO
   ========================================= */
@media (max-width: 768px) {
  html, body {
        overflow-x: hidden; /* Corta por lo sano cualquier cosa que intente salirse por los lados */
        width: 100%;
    }

    * {
        word-wrap: break-word;
        overflow-wrap: break-word; /* Obliga a los textos largos a saltar de línea en vez de salirse */
    }

    section {
        padding: 40px 15px; /* Reducimos los márgenes laterales en móvil para dar más espacio al texto */
    }

    .section-title {
        font-size: 1.8rem; /* Hacemos los títulos un poco más pequeños para que quepan bien */
        margin-bottom: 25px;
    }
    header {
        /* Mantenemos el comportamiento natural sin forzar el position fixed */
        padding: 15px 20px;
    }
    
    .menu-toggle {
        display: flex; /* Muestra las 3 rayitas */
    }
    
    nav ul {
        display: none; /* Oculto por defecto */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%; /* Cae justo debajo de la cabecera */
        left: 0;
        background-color: rgba(11, 5, 16, 0.98);
        border-bottom: 3px solid var(--neon-purple);
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }
    
    nav ul.active {
        display: flex; /* Se muestra al hacer clic */
        padding: 10px 0;
    }

    nav a {
        font-size: 1.2rem;
        padding: 15px 20px;
        display: block;
        text-align: center;
        /* Un separador sutil entre opciones del menú en móvil */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    }

    nav li:last-child a {
        border-bottom: none;
    }

    /* Reducción de textos y cajas para que encajen en el móvil */
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .time-box {
        min-width: 70px;
        padding: 10px;
    }
    
    .location-container, .ticket-sales-box {
        padding: 20px;
    }

    .gallery-item.wide {
        grid-column: span 1; /* Quita el ancho doble para que no se salga de la pantalla */
    }
    
    .text-section {
        padding: 25px 15px;
        margin: 0 15px 40px 15px;
    }
}
