/* Client Logos Section - CARRUSEL INFINITO */
.client-logos {
    padding: var(--space-xl) 0;
    background: var(--black-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.logos-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.logos-carousel {
    display: flex;
    width: max-content;
    animation: scroll-logos 40s linear infinite;
}

.logos-carousel:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
}

.logo-item img {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(0.7) opacity(0.6);
    transition: all 0.3s ease;
}

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

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-item {
        width: 140px;
        margin: 0 30px;
    }
    
    .logo-item img {
        max-width: 110px;
        max-height: 60px;
    }
    
    .logos-carousel {
        animation: scroll-logos 30s linear infinite;
    }
}
