.proveedores-section {
    background-color: #f9fbff;
    overflow: hidden;
}

.proveedores-section h2 {
    font-weight: 700;
    color: #072E6F;
}

.logos-row {
    display: flex;
    overflow: hidden;
    position: relative;
    gap: 60px;
    margin-bottom: 40px;
}

.logos-slide {
    display: flex;
    align-items: center;
    justify-content: space-around;
    animation: scroll-left 25s linear infinite;
}

.logos-row-right .logos-slide {
    animation: scroll-right 25s linear infinite;
}

.logos-slide img {
    height: 60px;
    margin: 0 40px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logos-slide img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Animaciones */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .logos-slide img {
        height: 45px;
        margin: 0 25px;
    }
}

