/* ==========================================================================
   ESTILOS MODAL POPUP INFORMATIVO (COAHUAYANA)
   ========================================================================== */

/* FONDO DESENFOCADO DEL MODAL */
.modal-backdrop.show {
    opacity: 0.75;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: #0f172a;
}

/* ANIMACIÓN DE ENTRADA ZOOM-IN */
#coahuayanaPopup .modal-dialog {
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#coahuayanaPopup.show .modal-dialog {
    transform: scale(1);
}

/* TARJETA DEL POPUP */
.popup-card-custom {
    border: 2px solid rgba(252, 165, 0, 0.3) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

/* BOTÓN FLOTANTE DE CIERRE */
.btn-close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background-color: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-close-popup:hover {
    background-color: #fca500;
    color: #000000;
    transform: rotate(90deg) scale(1.1);
}

/* OVERLAY DE LA IMAGEN EN LA COLUMNA IZQUIERDA */
.popup-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

/* BOTÓN DE ACCIÓN */
.btn-popup-action {
    transition: all 0.3s ease;
}

.btn-popup-action:hover {
    background-color: #ffb700 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(252, 165, 0, 0.4) !important;
}

.fs-8 {
    font-size: 11px;
}
