/* Estilos para el Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none; /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.activo {
    display: flex;
}

#contenido-lightbox img, 
#contenido-lightbox video {
    max-width: 109%;
    max-height: 80vh;
    /* border: 3px solid white; */
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.cerrar-lightbox {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Cursor de lupa sobre los items de la galería */
.galeria-item {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.02);
}