.faterBanda {
    width: 100%;
    height: 200px;
    overflow: hidden;
    overflow-x: auto;
    position: relative;
    scrollbar-width: none;

}

.proyectos-wrapper::-webkit-scrollbar {
 display: none; /* Chrome, Safari y Opera */
}

.sonBanda {
    display: flex;
    width: max-content;
    align-items:start;
    justify-content:start;
    animation: scroll 35s linear infinite;
    /* velocidad controlada */
}

.containerImg {
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerImg img {
    width: 85%;
    height: 85%;
    object-fit: cover;
}

/* Animación infinita suave */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
        /* 👈 se mueve la mitad, porque duplicaste el set */
    }
}


@media (min-width:1440px) {

    .sonBanda {
    gap: 2rem;
    align-items:start;
    justify-content:start;
    }
    

    .containerImg img {
        width: 100%;
        height: 100%;
    }


}