   @font-face {
    font-family: 'Poppins-bold';
    src: url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }
    @font-face {
    font-family: 'Butterscotch';
    src: url('../fonts/Butterscotch.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }
    :root {
            --gold: #ffc600;
            --dark-gold: #B8860B;
            --black: #000000;
            --dark-gray: #1a1a1a;
            --light-gold: #FFF8DC;
            --silver: #C0C0C0;
            --bronze: #CD7F32;
            --stage-gradient: linear-gradient(45deg, var(--gold), var(--light-gold), var(--gold));
    }

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

        body {
            background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
            color: var(--gold);
            font-family: 'Georgia', serif;
            overflow-x: hidden;
        }

        /* Efectos de brillo y partículas */
        .sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            animation: sparkle 2s infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: scale(0); }
            50% { opacity: 1; transform: scale(1); }
        }

        .glitter-text {
            font-family: 'Butterscotch', 'serif';
            font-size: clamp(2rem, 5vw, 6rem); /* Mínimo 2rem, máximo 6rem */
            height: auto;
            padding: 10px 0; /* Padding arriba y abajo */
            line-height: 1.3;
            background: linear-gradient(45deg, var(--gold), var(--light-gold), white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 2s infinite;
        }
        .glitter-text2 {
            font-family: 'Poppins-bold', 'serif';
            height: auto;
            line-height: 1.3;
            background: linear-gradient(45deg, var(--gold), var(--light-gold), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
/* Imágenes laterales con espacio definido */
.side-person {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1; /* Debajo del contenido principal */
    pointer-events: none; /* Para que no interfieran con clics */
    display: flex;
    align-items: center; /* Centra verticalmente */
}

.left-person {
    left: 0; /* Pegada al borde izquierdo */
    width: 25%; /* Ocupa el 25% del ancho de la pantalla */
    justify-content: flex-start; /* Alinea la imagen al inicio (izquierda) */
}

.right-person {
    right: 0; /* Pegada al borde derecho */
    width: 25%; /* Ocupa el 25% del ancho de la pantalla */
    justify-content: flex-end; /* Alinea la imagen al final (derecha) */
}

.side-person img {
    height: auto; /* Altura automática para mantener proporción */
    width: auto; /* Ancho automático */
    max-height: 80%; /* Máximo 80% de la altura del hero */
    max-width: 100%; /* No excede el ancho del contenedor */
    object-fit: contain; /* Mantiene la imagen completa visible */
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)) 
            drop-shadow(0 0 40px rgba(255, 215, 0, 0.2)); /* Brillo dorado */
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Efecto hover para más brillo */
.side-person:hover img {
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)) 
            drop-shadow(0 0 60px rgba(255, 215, 0, 0.3));
}

/* Responsive mejorado - imágenes con buen tamaño pero completas */

/* Desktop grande */
@media (min-width: 1200px) {
    .left-person, .right-person {
        width: 45%; /* Más espacio para imágenes grandes */
    }
    .side-person img {
        opacity: 0.8;
        max-height: 95%; /* Imágenes casi a tamaño completo */
    }
}

/* Desktop mediano */
@media (max-width: 1199px) and (min-width: 992px) {
    .left-person, .right-person {
        width: 40%;
    }
    .side-person img {
        opacity: 0.7;
        max-height: 90%;
    }
}

/* Tablets grandes */
@media (max-width: 991px) and (min-width: 768px) {
    .left-person, .right-person {
        width: 40%;
        align-items: flex-start; /* ← CAMBIO: Alinea hacia arriba */
        padding-top: 100px; /* ← NUEVO: Separación del top */
    }
    .side-person img {
        opacity: 0.6;
        max-height: 60%; /* ← AJUSTADO: Reducido para que quepan más arriba */
    }
}

/* Tablets pequeñas */
@media (max-width: 767px) and (min-width: 576px) {
    .left-person, .right-person {
        width: 40%;
        align-items: flex-start; /* ← CAMBIO: Alinea hacia arriba */
        padding-top: 120px; /* ← NUEVO: Más separación del top */
    }
    .side-person img {
        opacity: 0.5;
        max-height: 50%; /* ← AJUSTADO: Más pequeñas pero más arriba */
    }
}

/* Móviles grandes */
@media (max-width: 575px) and (min-width: 400px) {
    .left-person, .right-person {
        width: 40%;
        align-items: flex-start; /* ← CAMBIO: Alinea hacia arriba */
        padding-top: 150px; /* ← NUEVO: Aún más separación del top */
    }
    .side-person img {
        opacity: 0.4;
        max-height: 40%; /* ← AJUSTADO: Más pequeñas para que quepan */
    }
}

/* Móviles pequeños */
@media (max-width: 399px) {
    .left-person, .right-person {
        width: 35%;
        align-items: flex-start; /* ← CAMBIO: Alinea hacia arriba */
        padding-top: 100px; /* ← NUEVO: Separación del top */
    }
    .side-person img {
        opacity: 0.3;
        max-height: 35%; /* ← AJUSTADO: Tamaño reducido */
    }
}

/* Móviles muy pequeños */
@media (max-width: 320px) {
    .left-person, .right-person {
        width: 35%;
        align-items: flex-start; /* ← CAMBIO: Alinea hacia arriba */
        padding-top: 90px; /* ← NUEVO: Separación del top */
    }
    .side-person img {
        opacity: 0.25;
        max-height: 30%; /* ← AJUSTADO: Más pequeñas */
    }
}
        /* Navegación */
        .navbar {
            background: rgba(0, 0, 0, 0.95) !important;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--gold);
        }

        .navbar-brand, .nav-link {
            color: var(--gold) !important;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--light-gold) !important;
            text-shadow: 0 0 10px var(--gold);
        }
        .navbar-brand img {
            height: 30px;
            transition: transform 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100%;
            padding-top: 80px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="makeup" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="20" fill="%23FFD700" opacity="0.1"/><circle cx="150" cy="150" r="15" fill="%23FFD700" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23makeup)"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
        }

        .hero h1 {
            font-size: 5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }

        .logo-congress {
            width: 300px;
            height: 300px;
            /*background: radial-gradient(circle, var(--gold) 0%, var(--dark-gold) 100%);*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 2rem auto;
            box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 50px rgba(255, 215, 0, 0.5); }
            50% { transform: scale(1.05); box-shadow: 0 0 70px rgba(255, 215, 0, 0.8); }
            100% { transform: scale(1); box-shadow: 0 0 50px rgba(255, 215, 0, 0.5); }
        }

        .countdown {
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid var(--gold);
            border-radius: 15px;
            padding: 20px;
            margin: 2rem auto;
            max-width: 500px;
            backdrop-filter: blur(10px);
        }

        .countdown-item {
            display: inline-block;
            margin: 0 15px;
            text-align: center;
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
            color: var(--gold);
        }

        /* Secciones generales */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section:nth-child(even) {
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
        }

        .gold-title {
            color: var(--gold);
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .gold-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        /* Cards con efectos */
        .card {
            background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
            color: var(--light-gold);
            border: 2px solid var(--gold);
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
        }

        .card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
            z-index: -1;
            border-radius: 15px;
            animation: borderGlow 3s infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* Programación */
        .schedule-day {
            background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            border: 2px solid var(--gold);
        }

        /* Paquetes */
        .package-card {
            position: relative;
            margin: 20px 0;
        }

        .package-bronze {
            border-color: #CD7F32;
            background: linear-gradient(135deg, rgba(205,127,50,0.1) 0%, rgba(0,0,0,0.9) 100%);
        }

        .package-silver {
            border-color: #C0C0C0;
            background: linear-gradient(135deg, rgba(192,192,192,0.1) 0%, rgba(0,0,0,0.9) 100%);
        }

        .package-gold {
            border-color: var(--gold);
            background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
            transform: scale(1.05);
        }

        /* Galería */
        .gallery-carousel {
            background: rgba(255, 215, 0, 0.05);
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
        }

        /* Social Links */
        .social-links a {
            color: var(--gold);
            font-size: 2rem;
            margin: 0 15px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--light-gold);
            transform: scale(1.2);
            text-shadow: 0 0 20px var(--gold);
        }

        /* Form styles */
        .form-control {
            background: rgba(255,215,0,0.1);
            border: 1px solid var(--gold);
            color: var(--gold);
            border-radius: 10px;
        }

        .form-control:focus {
            background: rgba(255,215,0,0.15);
            border-color: var(--gold);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
            color: var(--gold);
        }

        .form-control::placeholder {
            color: rgba(255, 215, 0, 0.6);
        }

        /* Button styles */
        .btn {
            transition: all 0.3s ease;
            border-radius: 10px;
            font-weight: bold;
        }

        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .text-gold {
            color: var(--gold) !important;
        }

        /* Artist cards */
        .artist-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .logo-congress {
                width: 200px;
                height: 200px;
            }
            .countdown-number {
                font-size: 1.8rem;
            }
            .countdown-item {
                margin: 0 8px;
            }
            .gold-title {
                font-size: 2rem;
            }
            .social-links a {
                font-size: 1.5rem;
                margin: 0 10px;
            }
            .package-gold {
                transform: scale(1);
            }
        }

        @media (max-width: 576px) {
            .countdown-item {
                margin: 0 5px;
            }
            .countdown-number {
                font-size: 1.5rem;
            }
        }

        /* Sección de zonas venue */
        .seating-map-component {
    --seating-gold: #FFD700;
    --seating-dark-gold: #B8860B;
    --seating-black: #000000;
    --seating-dark-gray: #1a1a1a;
    --seating-light-gold: #FFF8DC;
    --seating-silver: #C0C0C0;
    --seating-bronze: #CD7F32;
    --seating-stage-gradient: linear-gradient(45deg, var(--seating-gold), var(--seating-light-gold), var(--seating-gold));
}

.seating-map-component * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.seating-venue-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
    border: 2px solid var(--seating-dark-gold);
}

.seating-venue-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--seating-gold);
    background: var(--seating-stage-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seating-stage {
    background: var(--seating-stage-gradient);
    height: 80px;
    border-radius: 15px;
    margin: 0 auto 40px auto;
    width: 90%;
    position: relative;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--seating-black);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.seating-stage::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--seating-gold), transparent, var(--seating-gold));
    border-radius: 20px;
    z-index: -1;
    animation: seating-stagePulse 3s ease-in-out infinite;
}

@keyframes seating-stagePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.seating-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.seating-zone {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.seating-zone-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid var(--seating-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.seating-zone-silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(192, 192, 192, 0.1));
    border: 2px solid var(--seating-silver);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
}

.seating-zone-bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(205, 127, 50, 0.1));
    border: 2px solid var(--seating-bronze);
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.2);
}

.seating-zone-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.seating-zone-gold .seating-zone-title {
    color: var(--seating-gold);
    text-shadow: 0 0 10px var(--seating-gold);
}

.seating-zone-silver .seating-zone-title {
    color: var(--seating-silver);
    text-shadow: 0 0 10px var(--seating-silver);
}

.seating-zone-bronze .seating-zone-title {
    color: var(--seating-bronze);
    text-shadow: 0 0 10px var(--seating-bronze);
}

.seating-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.seating-seat {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid transparent;
}

.seating-seat-gold {
    background: linear-gradient(135deg, var(--seating-gold), var(--seating-dark-gold));
    color: var(--seating-black);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.seating-seat-silver {
    background: linear-gradient(135deg, var(--seating-silver), #A0A0A0);
    color: var(--seating-black);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.3);
}

.seating-seat-bronze {
    background: linear-gradient(135deg, var(--seating-bronze), #A0522D);
    color: var(--seating-light-gold);
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.3);
}

.seating-row-label {
    display: none;
}

.seating-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid var(--seating-dark-gold);
}

.seating-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.seating-legend-color {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.seating-legend-gold { 
    background: linear-gradient(135deg, var(--seating-gold), var(--seating-dark-gold)); 
}

.seating-legend-silver { 
    background: linear-gradient(135deg, var(--seating-silver), #A0A0A0); 
}

.seating-legend-bronze { 
    background: linear-gradient(135deg, var(--seating-bronze), #A0522D); 
}

.seating-info-panel {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid var(--seating-dark-gold);
}

@media (max-width: 768px) {
    .seating-seat {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .seating-venue-title {
        font-size: 2rem;
    }
    
    .seating-legend {
        flex-wrap: wrap;
        gap: 15px;
    }
}
/* Estilos específicos para modal del hotel - sin conflictos */
.modal-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.modal-clickable:hover {
    transform: translateY(-5px);
}

/* Icono de lupa que aparece al hacer hover - solo en elementos clickeables del modal */
.modal-clickable::before {
    content: '🔍'; /* Emoji de lupa - siempre funciona */
    /* O prueba estos códigos de Font Awesome: */
    /* content: '\f002'; */ /* Código alternativo de lupa */
    /* content: '\f00e'; */ /* Otro código de lupa */
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: var(--gold);
    padding: 8px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.modal-clickable:hover::before {
    opacity: 1;
}

/* Estilos específicos para los modales del hotel */
.hotel-modal-content {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border: 2px solid var(--gold);
    border-radius: 15px;
}

.hotel-modal-header {
    border-bottom: 1px solid var(--gold);
}

.hotel-btn-close {
    filter: invert(1);
    opacity: 1;
}

.hotel-btn-close:hover {
    filter: invert(0.8);
}

/* Responsive para el iframe del mapa en modal */
@media (max-width: 768px) {
    #mapModal .modal-body iframe {
        height: 350px;
    }
}