/*
Custom Css
*/
 /* Estilos para la galería */
 .gallery {
    padding: 20px 0;
}

.gallery a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.gallery a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery a:hover img {
    transform: scale(1.05);
}

/* Estilos para el lightbox */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    padding: 10px 0;
}

.lb-nav a.lb-next, 
.lb-nav a.lb-prev {
    opacity: 1;
}

.lb-outerContainer {
    border-radius: 8px;
    max-width: 90%;
    max-height: 90vh;
}

.lb-data .lb-close {
    display: block;
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
}