/* ==========================================
   WELLBEING GALLERY
   ========================================== */


#wellbeing-gallery {

    padding: 4rem 1rem;

}


#wellbeing-gallery .gallery-header {

    text-align: center;
    margin-bottom: 2rem;

}


#wellbeing-gallery .gallery-header h2 {

    font-family: var(--fuente-secundaria);
    color: var(--color-principal);
    font-size: 2.2rem;

}


#wellbeing-gallery .gallery-header p {

    color: #666;

}



/* CONTENEDOR */

#wellbeing-gallery .gallery-wrapper {

    max-width: 1100px;
    margin: auto;
    position: relative;

}



/* CARRUSEL */

#wellbeing-gallery .gallery-track {

    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-behavior: smooth;

    scrollbar-width: none;

}


#wellbeing-gallery .gallery-track::-webkit-scrollbar {

    display: none;

}



/* FOTOS */

#wellbeing-gallery .gallery-item {

    flex: 0 0 260px;
    height: 340px;

    border-radius: 15px;

    overflow: hidden;

    display: block;

}



#wellbeing-gallery .gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;

}



#wellbeing-gallery .gallery-item:hover img {

    transform: scale(1.08);

}



/* BOTONES CARRUSEL */


#wellbeing-gallery .gallery-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border-radius: 50%;

    border: none;

    background: var(--color-secundario);

    color: white;

    font-size: 1.8rem;

    cursor: pointer;

    z-index: 5;

}



#wellbeing-gallery .gallery-prev {

    left: -20px;

}


#wellbeing-gallery .gallery-next {

    right: -20px;

}



/* ==========================================
   LIGHTBOX
   ========================================== */


#wellbeing-gallery .gallery-lightbox {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .85);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 99999;

}



#wellbeing-gallery .gallery-lightbox.active {

    display: flex;

}



#wellbeing-gallery .lightbox-image {

    max-width: 90%;
    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: opacity 0.35s ease, transform 0.35s ease;
    user-select: none;
    -webkit-user-drag: none;

}

#wellbeing-gallery .lightbox-image.changing {
    opacity: 0;
    transform: scale(0.95);
}



/* CERRAR */

#wellbeing-gallery .lightbox-close {

    position: absolute;

    top: 20px;

    right: 30px;

    background: none;

    border: none;

    color: white;

    font-size: 3rem;

    cursor: pointer;

}



/* FLECHAS LIGHTBOX */


#wellbeing-gallery .lightbox-prev,
#wellbeing-gallery .lightbox-next {


    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    background: none;

    border: none;

    color: white;

    font-size: 3rem;

    cursor: pointer;


}


#wellbeing-gallery .lightbox-prev {

    left: 30px;

}


#wellbeing-gallery .lightbox-next {

    right: 30px;

}



#wellbeing-gallery .lightbox-counter {

    position: absolute;

    bottom: 30px;

    color: white;

    font-size: 1.2rem;

}




/* MOVIL */


@media(max-width:768px) {


    #wellbeing-gallery {

        padding: 2rem 1rem;

    }


    #wellbeing-gallery .gallery-item {

        flex: 0 0 220px;

        height: 300px;

    }


    #wellbeing-gallery .gallery-prev {

        left: 5px;

    }


    #wellbeing-gallery .gallery-next {

        right: 5px;

    }


}