/* ==========================================================================
   ESTILOS PARA POPUP EMERGENTE - CHUCÁNDIRO
   ========================================================================== */

.popup-content-chucandiro {
    border: 2px solid var(--gold-chucandiro, #E1B132) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
}

.popup-content-chucandiro .modal-body img {
    max-height: 75vh;
    display: block;
    transition: transform 0.3s ease;
}

.popup-content-chucandiro .modal-body img:hover {
    transform: scale(1.01);
}

/* Estilos para la imagen del cuerpo del popup */
.popup-body-image {
    max-height: 280px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.popup-body-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(225, 177, 50, 0.3);
}