/****** BLOCK CAROUSEL SERVICES ******/

.imagen-services img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 30px;
}

.zoom-image {
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.zoom-image:hover {
    transform: scale(1.1);
}

.inner-home-container .backgorund-sblack::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 244, 0.5) 0% 0% no-repeat padding-box;
    background-position: center center;
    opacity: 1;
    z-index: 1;
}

.item-services {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    justify-items: center;
    align-items: center;
    max-width: 100vw;
    padding: 40px 100px;


    scroll-snap-align: center;
    flex-shrink: 0;
    width: 100vw; /* O el ancho que quieras que ocupe cada slide */
    box-sizing: border-box;

}

.contenedor {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    justify-content: center;
    /* gap: 25px; */
    /* max-width: 100vw;
    padding: 0 20px; */
}

.inner-home-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

/* .item-services {
    min-width: 100%;
    scroll-snap-align: center;
    flex-shrink: 0;
    text-align: center;
    box-sizing: border-box;
    align-items: center;
} */

/* Contenedor principal */
.carousel-container-services {
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    transition: background-color 0.5s ease;
}


/* Carrusel interno */
.inner-home-container {
    display: flex;
    scroll-behavior: smooth;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.inner-home-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Controles (flechas y puntos) */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: -15px;
}

/* Flechas */
.carousel-arrow {
    background: transparent;
    color: black;
    border: none;
    font-size: 18px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

/* Puntos */
.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #333;
}

/****** END BLOCK CAROUSEL SERVICES ******/