/* Estilos para la galería simple */
.simple-gallery {
    position: relative;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    height: 400px;
    overflow: hidden;
}

.gallery-item {
    width: 100%;
    height: 100%;
    display: none;
}

.gallery-item:first-child {
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-thumbs {
    margin-bottom: 30px;
}

.gallery-thumb {
    height: 80px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 15px;
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-thumb.active {
    border-color: #333;
}

.gallery-thumb:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 767px) {
    .simple-gallery {
        height: 250px;
    }
    
    .gallery-thumb {
        height: 60px;
    }
}