/* ==========================================================================
   ESTILOS GENERALES PARA POPUP INSTITUCIONAL
   ========================================================================== */

#modalPopupInstitucional .modal-content {
    animation: popupScale 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-banner-img {
    max-height: 75vh;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.popup-banner-img:hover {
    transform: scale(1.01);
}

/* Animación de apertura elástica */
@keyframes popupScale {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}