.nuestros-clientes {
    background: #fff;
}

.logo-carousel {
    width: calc(100% - (150px + 150px)) !important;
    max-width: calc(100% - (150px + 150px)) !important;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 16px 0;
}

.logo-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    will-change: transform;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    flex: 0 0 auto;
}

.slide img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    display: block;
    transition: filter 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
    .logo-carousel {
        width: calc(100% - (40px + 40px)) !important;
        max-width: calc(100% - (40px + 40px)) !important;
        margin: 0 auto;
    }
    
    .slide img {
        max-height: 60px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .logo-carousel {
        width: calc(100% - (50px + 50px)) !important;
        max-width: calc(100% - (50px + 50px)) !important;
        margin: 0 auto;
    }
}