 /* Efecto neon para imágenes de eventos (comparte clases con neon-logo) */
.neon-image {
    border-radius: 15px;
    overflow: hidden;
    /* Filtro para el efecto neon similar al logo */
    filter: 
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 5px rgba(255, 221, 0, 0.6))
        drop-shadow(0 0 10px rgba(255, 200, 0, 0.4))
        drop-shadow(0 0 15px rgba(255, 170, 0, 0.3));
    
    /* Para mejorar la visibilidad del efecto neón */
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: filter 0.3s ease-in-out;
}

/* Efecto de animación suave al pasar el mouse (similar al logo) */
.neon-image:hover {
    filter: 
        drop-shadow(0 0 3px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 10px rgba(255, 230, 0, 0.8))
        drop-shadow(0 0 15px rgba(255, 200, 0, 0.6))
        drop-shadow(0 0 20px rgba(255, 170, 0, 0.5))
        drop-shadow(0 0 25px rgba(255, 140, 0, 0.4));
}

/* Contenedor de imagen para mostrar el 100% */
.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.image-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* Overlay para el texto sobre la imagen */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* Encabezado personalizado no lineal */
.custom-header {
    position: relative;
    
    background-color: #0d0f13;
    padding: 20px 0 0px 0;
    margin-bottom: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.header-curve {
    transform: rotate(180deg);
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C250,100 750,100 1000,0 L1000,100 L0,100 Z' fill='%230d0f13'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: 5; /* Asegurar que está detrás del logo */
}


/* Contenedor principal del encabezado */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

/* Logo que sobresale del encabezado */
/* Logo que sobresale del encabezado HACIA ABAJO */
.logo-container {
    margin-bottom: -40px; /* Cambiado de margin-top a margin-bottom */
    z-index: 100;
    position: relative;
}

/* Ajustar la curva para que el logo se integre mejor */
/* Curva inferior del encabezado */
.header-curve {
    transform: rotate(180deg);
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C250,100 750,100 1000,0 L1000,100 L0,100 Z' fill='%230d0f13'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: 5; /* Asegurar que está detrás del logo */
}

.logo-container img {
    width: 200px;
    height: auto;
    filter: 
        drop-shadow(0 0 5px rgba(255, 215, 0, 0.8))
        drop-shadow(0 0 10px rgba(255, 215, 0, 0.6))
        drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

/* Texto dorado */
.golden-text {
    flex-grow: 1;
    text-align: center;
    margin: 0 20px;
}

.golden-text h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Botones de navegación */
.header-nav {
        padding: 10px 15px;
    display: flex;
    gap: 15px;
    margin: 0 0px;
}

.nav-btn {
    padding: 2px 4px;
        height: 100%;
    margin-top: 6px;
   
    background: linear-gradient(to bottom, #f89d13, #cea21e);
    color: #000 !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 30px;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: linear-gradient(to bottom, #d4af37, #bf953f);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    color: #000 !important;
}

.nav-btn.active {
    background: linear-gradient(to bottom, #fcf6ba, #fbf5b7);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

/* Fecha y hora */
.datetime {
text-align: center;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
}

.date-text {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.time-text {
    font-size: 16px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        margin-top: 0;
        margin-bottom: 15px;
    }
    
    .golden-text {
        margin: 15px 0;
    }
    
    .header-nav {
        margin: 0px 0;
    }
    
    .datetime {
        text-align: center;
        margin-top: 15px;
    }
}




.neon-banner-container {
            position: relative;
            width: 100%;
            height: 45px;
            
            overflow: hidden;
            
        }
        
        .neon-banner {
            position: absolute;
            white-space: nowrap;
            animation: moveBanner 15s linear infinite;
            font-size: 30px;
            font-weight: bold;
            color: #fff;
            
        }
        
        @keyframes moveBanner {
            0% {
                left: 100%;
                transform: translateX(0%);
            }
            100% {
                left: 0;
                transform: translateX(-100%);
            }
        }
        
        /* Efecto de parpadeo neón */
        .neon-banner {
            animation: moveBanner 30s linear infinite, flicker 10s infinite;
        }
        



        .img-fluid.rounded {
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 6px 6px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    transform: translateZ(0);
}
