/* ======= BASE STYLES ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', 'Rajdhani', sans-serif;
}

:root {
    --primary-color: #00ccff;
    --secondary-color: #9900ff;
    --accent-color: #ff00ff;
    --button-color: #ff1493;
    --text-color: #ffffff;
    --text-secondary: #e0e0ff;
    --background-dark: #0b0b2a;
    --background-medium: #1a1a5a;
    --background-light: #2b0b4a;
}

body {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-medium) 50%, var(--background-light) 100%);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ======= ANIMATIONS ======= */
    
@keyframes starsAnimation {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 1000px 1000px, 1500px 1500px, 2000px 2000px; }
}
@keyframes neonPulse {
    0% { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary-color), 0 0 20px var(--secondary-color), 0 0 25px var(--secondary-color); }
    50% { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--accent-color), 0 0 40px var(--accent-color), 0 0 50px var(--accent-color); }
    100% { text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary-color), 0 0 20px var(--secondary-color), 0 0 25px var(--secondary-color); }
}


@keyframes fondoAnimado {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


@keyframes floatingAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

@keyframes rotateGlow {
    0% { box-shadow: 0 0 15px var(--secondary-color); transform: rotate(0deg); }
    50% { box-shadow: 0 0 25px var(--primary-color); transform: rotate(180deg); }
    100% { box-shadow: 0 0 15px var(--secondary-color); transform: rotate(360deg); }
}

@keyframes neonGlow {
    0% { box-shadow: 0 0 15px var(--primary-color); }
    100% { box-shadow: 0 0 30px var(--secondary-color); }
}

@keyframes borderFlow {
    0% { border-image: linear-gradient(45deg, var(--secondary-color), var(--primary-color)) 1; }
    50% { border-image: linear-gradient(45deg, var(--primary-color), var(--accent-color)) 1; }
    100% { border-image: linear-gradient(45deg, var(--secondary-color), var(--primary-color)) 1; }
}

@keyframes fadeInZoom {
    0% { opacity: 0; transform: scale(0.5); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideInBlur {
    0% { opacity: 0; filter: blur(10px); transform: translateX(-100px); }
    100% { opacity: 1; filter: blur(0); transform: translateX(0); }
}

@keyframes hoverFloatRotate {
    0% { transform: translateY(0) rotate(0); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0); }
    75% { transform: translateY(10px) rotate(-2deg); }
    100% { transform: translateY(0) rotate(0); }
}

@keyframes pulseEffect {
    0% { transform: scale(1); box-shadow: 0 0 5px var(--accent-color); }
    50% { transform: scale(1.1); box-shadow: 0 0 15px var(--secondary-color); }
    100% { transform: scale(1); box-shadow: 0 0 5px var(--accent-color); }
}

@keyframes floatAnimation {
    0% { transform: scale(1); box-shadow: 0 0 15px var(--primary-color); }
    100% { transform: scale(1.1); box-shadow: 0 0 25px var(--secondary-color); }
}

@keyframes flotando1 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes flotando2 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

@keyframes flotando3 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes flotando4 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}


/* Background stars effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    z-index: -1;
    animation: starsAnimation 100s linear infinite;
    will-change: background-position;
}
@media (max-width: 768px) {
    body::before {
        background-size: 80px 80px, 120px 120px, 160px 160px;
    }
}



/* Navigation */
#navbar {
    flex: 1;
    position: relative;
    z-index: 100;
}

#navbar ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 30px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    #navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px; /* Reduce la separación en pantallas pequeñas */
        padding: 10px;
    }
}



#navbar ul li {
    transition: transform 0.5s, filter 0.3s;
    position: relative;
}

#navbar ul li:hover {
    transform: translateY(-8px) scale(1.1);
}

#navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    padding: 5px 15px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    #navbar ul li a {
        font-size: 16px;
        padding: 5px 10px;
        letter-spacing: 1px;
    }
}


@media (max-width: 480px) {
    #navbar ul li a {
        font-size: 14px;
        padding: 4px 8px;
    }
}
#navbar ul li a.active {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 0 15px rgba(153, 0, 255, 0.5);
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

#navbar ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s;
}

#navbar ul li a:hover {
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

#navbar ul li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* ======= MAIN CONTENT ======= */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

main > h2 {
    color: var(--text-color);
    font-size: 42px;
    margin: 60px 0 15px;
    text-align: center;
    text-shadow: 0 0 5px var(--primary-color), 0 0 20px var(--secondary-color);
    animation: neonPulse 3s infinite;
}

main > h3, main > p {
    color: #b4b4ff;
    font-size: 20px;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 0 5px var(--secondary-color);
}

main > p {
    letter-spacing: 0.5px;
}


/*Reduce el tamaño de fuente en pantallas pequeñas */
@media (max-width: 768px) {
    main {
        max-width: 95%;
        padding: 10px;
    }

    main > h2 {
        font-size: 32px;
    }

    main > h3, main > p {
        font-size: 16px;
    }
}

/* Contenedor general */
.carousel-mascota-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    margin: auto;
    padding: 20px;
}

@media (max-width: 768px) {
    .carousel-mascota-container {
        flex-direction: column; /* Apilar elementos en móviles */
        width: 90%;
    }

    .carousel-section {
        width: 100%;
        height: 400px; /* Reducir tamaño en móviles */
    }

    .carousel-img {
        height: 400px;
    }

    .mascota-container {
        width: 100%;
        margin-top: 20px; /* Agregar espacio para que no quede pegado */
    }

    .mascota {
        width: 300px;
    }
}
/* Sección del carrusel */
.carousel-section {
    width: 50%;
    height: 700px; /* Tamaño ajustado */
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carrusel ahora en formato horizontal */
.carousel {
    display: flex;
    flex-direction: row; /* Cambio a horizontal */
    transition: transform 0.5s ease-in-out;
    width: 1000%;
}

/* Posters dentro del carrusel */
.carousel-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    flex: 0 0 100%;
}
/* Botones de navegación */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--button-color);
    color: var(--text-color);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 1000; /* Asegurar que estén sobre el carrusel */
}

/* 🔹 RECOMENDACIÓN: Ajustar tamaño de botones en móviles */
@media (max-width: 768px) {
    .prev-btn, .next-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
}

/* Ajustar posición dentro del carrusel */
.prev-btn {
    left: 20px; /* Más dentro del área visible */
}
.next-btn {
    right: 20px;
}

/* Mejor contraste y efecto al pasar el mouse */
.prev-btn:hover, .next-btn:hover {
    color:  var(--button-color);
    background: var(--text-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

/* Mascota alineada al lado derecho */
.mascota-container {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascota {
    width: 450px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--accent-color));
}

/* Boton de comprar boletos */

.btn-wrapper {
    position: fixed;
    top: 0; 
    right: 0; 
    width: auto;
    padding: 10px 20px;
    background: var(--background-light);
    border-bottom-left-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); 
    z-index: 999; 
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.btn-wrapper:hover {
    background: var(--background-medium); 
    box-shadow: 0px 6px 15px var(--accent-color);
}
.btn-comprar-fixed {
    position: relative;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    background: var(--button-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatAnimation 2s infinite alternate;
}

@media (max-width: 768px) {
    .btn-wrapper {
        padding: 8px 16px;
    }

    .btn-comprar-fixed {
        font-size: 16px;
        padding: 12px 25px;
    }
}
.logo {
    position: relative; /* Mantiene el logo fijo en pantalla */
    top: 1px; /* Ajusta la distancia desde la parte superior */
    left: 50%; /* Centrado horizontalmente */
    transform: translateX(-50%); /* Ajuste fino para el centrado */
    width: 600px; /* Tamaño del logo */
    max-width: 100%;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
}
/*  Ajustar tamaño del logo en móviles */
@media (max-width: 768px) {
    .logo {
        width: 350px;
    }
}
.btn-comprar-fixed:hover {
    transform: scale(1.15);
}


/* ======= EVENT DATES SECTION ======= */
#fechasEvento {
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

#fechasEvento h1 {
    font-size: 48px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--secondary-color);
    animation: neonPulse 2s infinite;
    letter-spacing: 3px;
}

#fechasEvento h2 {
    font-size: 32px;
    font-weight: 400;
    text-shadow: 0 0 5px var(--secondary-color);
    letter-spacing: 2px;
    animation: floatingAnimation 4s ease-in-out infinite;
}

/* Countdown styles */
#cuentaRegresiva {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid;
    border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) 1;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(153, 0, 255, 0.5);
    margin: 40px auto;
    max-width: 800px;
    padding: 40px;
    text-align: center;
    animation: fadeInZoom 1.5s ease-out;
    position: relative;
    overflow: hidden;
}

#cuentaRegresiva::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(153, 0, 255, 0.2) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotateGlow 15s linear infinite;
    z-index: -1;
    will-change: transform;
}


/* Estilo de los números del contador */
.bloque-tiempo h3 {
    font-size: 54px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    text-shadow: 0 0 12px var(--button-color), 0 0 20px var(--secondary-color);
}



#cuentaRegresiva h2 {
    color: var(--text-color);
    font-size: 38px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px var(--primary-color);
}

#cuentaRegresiva h2::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 3px;
    bottom: -10px;
    left: -10%;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), var(--primary-color), transparent);
    animation: borderFlow 3s linear infinite;
}

#contador {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.bloque-tiempo {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(153, 0, 255, 0.2));
    border: 2px solid;
    border-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) 1;
    border-radius: 15px;
    color: white;
    padding: 20px 15px;
    width: 150px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bloque-tiempo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(153, 0, 255, 0.4), transparent);
    z-index: -1;
    animation: rotateGlow 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
    will-change: opacity, transform;
}

.bloque-tiempo:hover::before {
    opacity: 1;
}

.bloque-tiempo:nth-child(1) {
    animation: fadeInZoom 0.5s ease-out 0.2s backwards, hoverFloatRotate 6s ease-in-out 3s infinite;
}

.bloque-tiempo:nth-child(2) {
    animation: fadeInZoom 0.5s ease-out 0.4s backwards, hoverFloatRotate 6s ease-in-out 4s infinite;
}

.bloque-tiempo:nth-child(3) {
    animation: fadeInZoom 0.5s ease-out 0.6s backwards, hoverFloatRotate 6s ease-in-out 5s infinite;
}

.bloque-tiempo:nth-child(4) {
    animation: fadeInZoom 0.5s ease-out 0.8s backwards, hoverFloatRotate 6s ease-in-out 6s infinite;
}

.bloque-tiempo h3 {
    font-size: 54px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--primary-color);
}

.bloque-tiempo p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#mensaje {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 28px;
    margin-top: 30px;
    text-shadow: 0 0 10px var(--secondary-color);
    animation: neonPulse 2s infinite;
}

/* Common section headers */
section h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    text-shadow: 0 0 10px var(--secondary-color);
    letter-spacing: 2px;
}

section h2::after {
    content: '';
    display: block;
    width: 200px;
    height: 4px;
    margin: 15px auto;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(153, 0, 255, 0.8);
}

/* ======= INVITADOS SECCION ======= */


/* invitadps especiales */
.invitados-principales {
    text-align: center;
    padding: 60px;
    background: linear-gradient(45deg, var(--background-dark), var(--background-medium));
    color: var(--text-color);
    position: relative;
}

.contenedor-principal {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.invitado-principal {
    background: rgba(20, 20, 50, 0.85);
    backdrop-filter: blur(12px);
    border: 3px solid;
    border-image: linear-gradient(to right, var(--accent-color), var(--secondary-color)) 1;
    border-radius: 20px;
    display: flex;
    margin-bottom: 50px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.6);
    transition: all 0.5s;
    position: relative;
}

.invitado-principal:hover {
    transform: translateY(-20px);
    box-shadow: 0 20px 50px rgba(153, 0, 255, 0.8);
}

.nombre-destacado {
    color: var(--primary-color);
    font-size: 32px;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
    transition: all 0.3s;
}

.invitado-principal:hover .nombre-destacado {
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.7);
    transform: translateX(12px);
}

.frase-personaje {
    text-align: center;
    padding: 15px;
    margin: 20px 0;
    background: rgba(20, 20, 50, 0.7);
    border-left: 5px solid var(--accent-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
    backdrop-filter: blur(8px);
}

.personaje-nombre {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.frase {
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}



.invitados-container {
    margin-bottom: 70px;
}

.invitado {
    background: rgba(20, 20, 50, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid;
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
    border-radius: 15px;
    display: flex;
    margin-bottom: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
    position: relative;
}

.invitado::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 204, 255, 0.1), rgba(153, 0, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.invitado:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(153, 0, 255, 0.6);
}

.invitado:hover::before {
    opacity: 1;
}

.invitado:nth-child(odd) {
    animation: slideInBlur 1s ease-out 0.2s backwards;
}

.invitado:nth-child(even) {
    animation: slideInBlur 1s ease-out 0.5s backwards;
}

.invitado-imagen {
    flex: 0 0 350px;
    overflow: hidden;
    position: relative;
}

.invitado-imagen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(153, 0, 255, 0.2));
    opacity: 0;
    transition: opacity 0.5s;
}

.invitado:hover .invitado-imagen::after {
    opacity: 1;
}

.invitado-imagen img {
    height: 100%;   
    object-fit: cover;
    transition: transform 0.8s;
    width: 100%;
    will-change: transform;
}

.invitado:hover .invitado-imagen img {
    transform: scale(1.1) rotate(2deg);
}

.invitado-info {
    flex: 1;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.invitado-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(153, 0, 255, 0.2), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.invitado:hover .invitado-info::before {
    opacity: 1;
}

.invitado-info h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
    letter-spacing: 1px;
}

.invitado:hover .invitado-info h3 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
    transform: translateX(10px);
}

.rol {
    color: #b4b4ff;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border-left: 3px solid var(--secondary-color);
    padding-left: 10px;
}

.personajes {
    margin-bottom: 20px;
    font-size: 16px;
}

.personajes span {
    color: var(--accent-color);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.descripcion, .descripcion-actividad {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.horarios h4 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 18px;
    text-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
}

.horarios ul {
    list-style: none;
}

.horarios ul li {
    margin-bottom: 8px;
    transition: all 0.3s;
    padding: 5px 10px;
    border-radius: 5px;
}

.horarios ul li:hover {
    transform: translateX(15px);
    background: linear-gradient(90deg, rgba(0, 204, 255, 0.1), rgba(153, 0, 255, 0.1));
    box-shadow: 0 0 10px rgba(153, 0, 255, 0.3);
}

/* ======= DUBBING PANEL ======= */
.panel-doblaje {
    background: rgba(20, 20, 50, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid;
    border-image: linear-gradient(to right, var(--secondary-color), var(--primary-color)) 1;
    border-radius: 15px;
    margin: 3rem 0 70px;
    overflow: hidden;
    animation: fadeInZoom 1.5s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
    position: relative;
}

.panel-doblaje::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(153, 0, 255, 0.1), rgba(0, 204, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.panel-doblaje:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 204, 255, 0.5);
}

.panel-doblaje:hover::before {
    opacity: 1;
}

.panel-doblaje h2 {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    color: white;
    font-size: 32px;
    padding: 20px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.panel-doblaje h2::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s, transform 2s;
    will-change: opacity, transform;
}

.panel-doblaje:hover h2::after {
    opacity: 1;
    transform: rotate(180deg);
}

.panel-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: rgba(20, 20, 50, 0.7);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid;
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
}

.panel-info img {
    max-width: 300px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    object-fit: cover;
    transition: transform 0.8s;
    will-change: transform;
}

.panel-doblaje:hover .panel-info img {
    transform: scale(1.05);
}

.detalles-panel {
    flex: 2;
    min-width: 300px;
    padding: 30px;
    position: relative;
}

.detalles-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 204, 255, 0.2), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.panel-doblaje:hover .detalles-panel::before {
    opacity: 1;
}

.detalles-panel h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
    letter-spacing: 1px;
}

.panel-doblaje:hover .detalles-panel h3 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
    transform: translateX(10px);
}

/* ======= ACTIVITIES SECTION ======= */
#actividades {
    padding: 2rem 0;
}

.actividades-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 70px;
}

.invitado.actividad {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: rgba(20, 20, 50, 0.7);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid;
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
}

.invitado-imagen.actividad-imagen {
    flex: 1;
    min-width: 250px;
}

.invitado-imagen.actividad-imagen img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.invitado-info.actividad-info {
    flex: 2;
    min-width: 300px;
}

.actividad-info h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
    letter-spacing: 1px;
}

.actividad:hover .actividad-info h3 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
    transform: translateX(10px);
}

.fecha-hora {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(153, 0, 255, 0.5);
    font-size: 18px;
    letter-spacing: 1px;
}

.meet-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.meet-imagen img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease-in-out;
}

/* ✅ Animación de imagen */
.meet-imagen img:hover {
    transform: scale(1.05);
}

.descripcion-meet {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 15px;
}

/* ✅ Botón con color morado oscuro y animación */
.btn-acceso {
    padding: 14px 22px;
    font-size: 20px;
    font-weight: bold;
    background: #5A007C; /* Morado oscuro */
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

/* ✅ Efecto de brillo en el botón */
.btn-acceso::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
}

.btn-acceso:hover::after {
    opacity: 1;
    transform: rotate(180deg);
}

.btn-acceso:hover {
    background: #7A1FA2; /* Morado más vibrante */
    transform: scale(1.08);
}


/* ======= SOCIAL MEDIA SECTION ======= */
#redesSociales {
    padding: 2rem 0;
}

.social-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}
#redes-sociales {
    text-align: center;
    padding: 40px;
}


.actividad-info h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    transition: all 0.3s;
    text-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
    letter-spacing: 1px;
}


.social-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-item {
    list-style: none;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: none;
    color: white;
    border-radius: 50%;
    font-size: 30px;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}
.social-item:nth-child(1) .social-link {
    animation: flotando1 4s infinite ease-in-out;
}

.social-item:nth-child(2) .social-link {
    animation: flotando2 3.5s infinite ease-in-out;
}

.social-item:nth-child(3) .social-link {
    animation: flotando3 4.5s infinite ease-in-out;
}

.social-item:nth-child(4) .social-link {
    animation: flotando4 3s infinite ease-in-out;
}

/* 🔹 Animación de iconos */
.social-link:hover {
    background: var(--primary-color);
    transform: scale(1.2) rotate(10deg);
}

/* 🔹 Efecto de brillo */
.social-link::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transition: opacity 0.4s ease-in-out;
    opacity: 0;
}

.social-link:hover::after {
    opacity: 1;
    transform: rotate(180deg);
}

.social-link {
    font-size: px; /* ✅ Iconos más grandes */
    width: 70px;
    height: 70px;
}

.social-link:hover {
    transform: scale(1.3) rotate(10deg);
}

.social-card {
    background: rgba(20, 20, 50, 0.7);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 280px;
    border: 2px solid;
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
    transition: all 0.5s;
}

.social-card i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.social-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-card a, .yt-subscribe, .sponsor-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}
.social-link ion-icon {
    
    font-size: 148px; /* ✅ Iconos más grandes */
}

.yt-subscribe {
    margin-top: 20px;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

.sponsor-link {
    margin-top: 100000000000000px;
    padding: 22px 60px;
}
/* Variables de color */

/* Sección de boletos */
.boletos {
    text-align: center;
    padding: 40px;
}

/* Efecto neón en los títulos principales */
h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--secondary-color);
}

h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 8px var(--secondary-color), 0 0 15px var(--accent-color);
}

/* Tarjetas de boletos */
.ticket-card {
    padding: 25px;
    border-radius: 12px;
    background: var(--background-dark);
    box-shadow: 0 6px 12px rgba(255, 20, 147, 0.4);
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 20, 147, 0.6);
}

/* Contenedor de boletos */
.ticket-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* SuperSonicPass más ancho y destacado */
.super-sonic .ticket-container {
    justify-content: center;
}

.vip-card {
    width: 100%;
    max-width: 650px;
    padding: 35px;
    border: 3px solid var(--accent-color);
    background: var(--background-light);
    box-shadow: 0 8px 20px rgba(255, 0, 255, 0.4);
}

/* Texto con neón dentro de las tarjetas */
h4 {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--secondary-color);
    margin-bottom: 15px;
}

.price {
    color: var(--accent-color);
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 8px var(--accent-color), 0 0 12px var(--secondary-color);
    margin-bottom: 15px;
}


.ticket-limited {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Botones con neón */
.ticket-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(135deg, var(--button-color), var(--accent-color));
    color: var(--text-color);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--button-color), 0 0 20px var(--accent-color);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--button-color), 0 0 25px var(--accent-color);
}

/* Botón VIP con neón más fuerte */
.vip-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    box-shadow: 0 0 15px var(--accent-color), 0 0 25px var(--secondary-color);
}

.vip-btn:hover {
    box-shadow: 0 0 20px var(--accent-color), 0 0 30px var(--secondary-color);
}
/* Sección de Patrocinadores */

/* Estilos generales para la sección de patrocinadores */
#patrocinadores main {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--background-dark);
  color: var(--text-color);
  border-radius: 30px;
}

#patrocinadores h2,
#patrocinadores h3 {
  text-align: center;
}

/* Contenedor de logos con fondo transparente y borde degradado (más morado) */
.contenedor-patrocinadores {
  background: rgba(11, 11, 42, 0.4);
  padding: 30px;
  border-radius: 20px;
  border: 10px ;
  border-image: linear-gradient(to right, var(--secondary-color) 70%, var(--primary-color) 30%) 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  margin-top: 20px;
}

/* Cada patrocinador con borde sutil y animación al pasar el cursor */
.patrocinador {
  display: inline-block;
  padding: 10px;
  border: 2px solid var(--background-dark);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.patrocinador:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 12px var(--hover-sombra);
  border-color: var(--secondary-color);
}

.patrocinador img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Animación para el contenedor de patrocinio */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sección de "¿Quieres ser patrocinador?" inspirada en avisos importantes */
.patrocinio-container {
  background: rgba(20, 20, 50, 0.7);
  border-radius: 15px;
  padding: 40px;
  margin: 50px auto;
  max-width: 800px;
  border: 2px solid;
  /* Borde con degradado que favorece el azul morado */
  border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.patrocinio-container h2 {
  margin-bottom: 25px;
  font-size: 2em;
  color: var(--primary-color);
  text-shadow: 0 0 5px rgba(0, 204, 255, 0.5);
}

.patrocinio-contenido {
  color: var(--text-secondary);
  line-height: 1.8;
}

.patrocinio-contenido h3 {
  margin-bottom: 15px;
  color: var(--accent-color);
}

.patrocinio-contenido p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

/* Botón de contacto con animación en hover */
.boton-contacto {
    display: inline-block;
    background: var(--button-color);
    color: var(--text-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.boton-contacto:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

/* Responsividad */
@media (max-width: 600px) {
    .contenedor-patrocinadores {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}



#privacidad-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); /* ✅ Fondo semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Contenedor del aviso */
.privacy-container {
    background: #222;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 5px 12px rgba(255, 255, 255, 0.3);
    text-align: center;
    color: white;
}

/* Botón de cierre */
.cerrar-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: white;
}

/* Mostrar el aviso cuando esté activo */
#privacidad-overlay.activo {
    visibility: visible;
    opacity: 1;
}

/* seccion del footer */
.footer {
    position: relative;
    width: 100%;
    background: rgba(20, 20, 50, 0.7);
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.social-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px 5px;
    flex-wrap: wrap;
}

.icon-elem {
    list-style: none;
}

.icon{
    color: white;
    font-size: 32px;
    display: inline-block;
    margin: 0 10px;
    transition: 0.5s;

}
.icon:hover{
    transform: translateY(-10px);
}

menu{
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    margin: 10px o;
    flex-wrap: wrap;
}

.menu-elem {
    list-style: none;
}

.menu-icon{
    color: white;
    font-size: 20px;
    display: inline-block;
    text-decoration: none;
    margin: 5px 10px;
    opacity: 0.75;
    transition: 0,3s;
}


.menu-icon:hover{
    opacity: 1;
}


.text{
    color: white;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 20px;
    
}