/* ==========================================================================
   VISTA FLOTANTE PERSONALIZADA (MODAL)
   ========================================================================== */

/* El fondo oscuro transparente que cubre toda la pantalla */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Oscurece el catálogo */
    z-index: 9999; /* Se asegura de estar por encima de todo */
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px); /* Efecto borroso elegante */
}

/* La tarjeta blanca en el centro */
.custom-modal-card {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: desplegarModal 0.3s ease-out;
}

/* Encabezado */
.custom-modal-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Botón de la 'X' para cerrar */
.btn-close-custom {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
}
.btn-close-custom:hover {
    opacity: 1;
    color: #ffc107; /* Brilla en amarillo al pasar el mouse */
}

/* Animación de entrada suave */
@keyframes desplegarModal {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}