/**** Sección Clientes ***/
.clientesdiv {
    width: 100%;
    display: flex;
    justify-content: center;
}

/***** Título "Clientes" ****/
.clientes-title {
    width: 240px;
    height: 56px;
    flex-shrink: 0;
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 55px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/***** Contenedor de las imágenes "Clientes" *****/
.clientes-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

/***** Slider con dos copias *****/
.slider {
    display: flex;
    width: calc(4998px * 2); /* Dos copias de la imagen */
    animation: move 35s linear infinite;
}

/***** Cada copia de la imagen *****/
.img-slide {
    width: 4998px;
    height: 500px;
    background: url('../../../img/clientes-1.png') no-repeat;
    background-size: contain;
    background-position: left center;
    flex-shrink: 0;
}

/***** Animación infinita fluida *****/
@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-4998px);
  }
}

@media (max-width: 450px) {
    .clientes-container {
        height: 250px;
    }

    .slider {
        width: calc(2560px * 2);
        animation: move-mobile 20s linear infinite;
    }

    .img-slide {
        width: 2560px;
        height: 250px;
        background-size: contain;
    }

    @keyframes move-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-2560px);
        }
    }
}