/* ==========================================================================
   POPUP DE CONCURSO INSTITUCIONAL - REVISIÓN DE PROPORCIONES
   ========================================================================== */

/* Fondo translúcido con desenfoque */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 32, 66, 0.85); /* Azul institucional */
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
    padding: 20px; /* Margen de seguridad para que nunca toque los bordes de la pantalla */
    box-sizing: border-box;
}

/* Estado activo */
.popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Contenedor del Afiche (Ajustado para mantener proporción horizontal) */
.popup-content-holder {
    position: relative;
    width: 100%;
    max-width: 800px; /* Un poco más amplio para aprovechar el formato horizontal */
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    border: 3px solid #b38f4d; /* Dorado institucional */
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-sizing: border-box;
}

.popup-overlay.active .popup-content-holder {
    transform: scale(1);
}

/* Contenedor estricto de la imagen */
.popup-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 5px;
    display: block;
    line-height: 0;
}

/* Corrección de distorsión de la imagen */
.popup-responsive-img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Fuerza a mantener la proporción original sin recortar */
    display: block;
}

/* Botón de Cierre (Reposicionado de forma segura) */
.popup-close-btn {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    background-color: #bd2d2d; /* Rojo elegante */
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: background-color 0.2s, transform 0.2s;
    z-index: 1000001;
}

.popup-close-btn:hover {
    background-color: #a12222;
    transform: scale(1.1);
}

/* Adaptabilidad estricta para pantallas pequeñas (Smartphones) */
@media (max-width: 768px) {
    .popup-overlay {
        padding: 10px;
    }
    .popup-content-holder {
        border-width: 2px;
    }
    .popup-close-btn {
        top: -12px;
        right: -12px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}