﻿.carousel-container-cli {
    width: 100%;
    overflow: hidden;
    background-color: white;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

    .carousel-track img {
        height: 60px;
        margin: 0 30px;
        object-fit: contain;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

        .carousel-track img:hover {
            filter: grayscale(0%);
        }


    .carousel-track.slow {
        /* 3x mais lento ao passar o mouse */
        /*animation-duration: 60s;*/
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
