
.contenedor-galeria{
    background: linear-gradient(to right, #1a3a5fde, #2a5298da),url(../img/meeting-room-828547_1920.jpg);
    background-attachment: fixed;;
    background-size:100%;
    background-repeat: no-repeat;
}
.gallery-title h2{
    text-align: center;
    color: var(--ligh);
    
}

.gallery-title p {
    color: var(--ligh) !important;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    /*box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 0;*/
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 0 10px;
}

.slide {
    flex: 0 0 auto;
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.slide:hover .slide-caption {
    transform: translateY(0);
}

/* Botones de navegación laterales transparentes */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
    opacity: 0.7;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.nav-btn i {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.responsive-info {
    text-align: center;
    color: white;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}
