﻿/* =============================================
   MARCAS — Infinite logo marquee
   ============================================= */

.mp-mq-wrap {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 12px 0;
    background: #15803D;
}

.mp-mq-track {
    display: flex;
    width: max-content;
}

    .mp-mq-track:hover {
        animation-play-state: paused;
    }

.mp-mq-set {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mp-mq-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    flex-shrink: 0;
}

    .mp-mq-item img {
        height: 36px;
        width: auto;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }
