/* --- Estilos de la Galería Principal --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #eef1f4;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 30px;
}

.galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-item {
    width: 280px;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra el área */
    display: block;
}

/* Estilo para el ícono de play en las miniaturas de video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    color: white;
    pointer-events: none; /* Permite hacer clic a través del overlay */
}

/* --- Estilos del Lightbox (Pop-up) --- */

.lightbox {
    /* Oculto por defecto */
    display: none; 
    
    /* Para cubrir toda la pantalla */
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    
    /* Fondo semi-transparente */
    background-color: rgba(0, 0, 0, 0.9);
    
    /* Centrar contenido */
    justify-content: center;
    align-items: center;
}

.lightbox-contenido {
    position: relative;
    /* Ajustar el ancho máximo del pop-up */
    max-width: 90%; 
    max-height: 90%;
}

.media-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
}

.lightbox-contenido img, 
.lightbox-contenido video {
    display: block;
    max-width: 100%;
    max-height: 80vh; /* Para que no ocupe toda la altura de la ventana */
    border-radius: 5px;
}

/* Botón de cerrar (la X) */
.cerrar {
    position: absolute;
    top: -30px; /* Posicionado fuera del contenido principal */
    right: -30px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.cerrar:hover {
    color: #ccc;
}

/* Botones de navegación (Flechas) */
.nav-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
}

.prev-btn {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next-btn {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}