    .marquee-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        padding: 40px 0;
        background: transparent;
        /* Ou a cor de fundo da sua seção */
    }

    .marquee-track {
        display: flex;
        width: max-content;
        /* Garante que a largura se ajuste ao total de itens */
        /* Ajuste o tempo (180s) para deixar mais rápido ou mais lento */
        animation: marquee 180s linear infinite;
    }

    /* Opcional: Pausa a animação quando passa o mouse */
    .marquee-track:hover {
        animation-play-state: paused;
    }

    .marquee-item {
        flex: 0 0 auto;
        /* 1. FORMATO QUADRADO */
        width: 180px;
        height: 180px;

        /* 2. VISUAL DE CARD */
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

        /* 3. ESPAÇAMENTO */
        margin: 0 15px;

        /* 4. CENTRALIZAÇÃO */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }

    .marquee-item img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        transition: all 0.3s ease;
        opacity: 0.85;
    }

    .marquee-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border-color: #0056b3;
        /* Azul Digiexpress */
    }

    .marquee-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    /* A MÁGICA DO LOOP INFINITO */
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            /* Como duplicamos a lista, movemos apenas 50% para voltar ao início imperceptivelmente */
            transform: translateX(-50%);
        }
    }