/* Overlay de fondo */
.evento-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    animation: fadeIn 0.3s ease-in;
}

/* Contenedor del popup */
.evento-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease-out;
}

/* Título del comunicado */
.evento-popup h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contenido del mensaje */
.evento-popup .mensaje-contenido {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.evento-popup .mensaje-contenido strong {
    color: #ffa500;
    font-weight: bold;
}

/* Fechas destacadas */
.evento-popup .fechas-nuevas {
    background-color: rgba(255, 165, 0, 0.2);
    border-left: 4px solid #ffa500;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.evento-popup .fechas-nuevas p {
    color: #ffffff;
    font-size: 18px;
    margin: 5px 0;
    font-weight: bold;
}

/* Información adicional */
.evento-popup .info-adicional {
    color: #e0e0e0;
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Botón de cerrar */
.evento-popup .cerrar-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s ease;
}

.evento-popup .cerrar-popup:hover {
    transform: rotate(90deg);
}

/* Botón de entendido */
.evento-popup .btn-entendido {
    display: block;
    margin: 20px auto 0;
    padding: 12px 30px;
    background-color: #ffa500;
    color: #1e3c72;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.evento-popup .btn-entendido:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .evento-popup {
        width: 95%;
        padding: 20px;
    }
    
    .evento-popup h2 {
        font-size: 24px;
    }
    
    .evento-popup .mensaje-contenido {
        font-size: 14px;
    }
}