/* Estilos para la galería */
.gallery, .video-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Añadido para ajustar las líneas */
    margin-top: 20px;
}

.gallery-img, .gallery-video {
    width: 100px;
    height: auto;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.gallery-video {
    max-width: 370px;
    height: auto;
    margin: 10px;
    width: 83%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover, .gallery-video:hover {
    transform: scale(1.1);
}

/* Estilos para el popup */
.popup {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.popup-content {
    margin: auto;
    display: block;
    margin: 90 auto;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 90px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
