/* Estilos para la sección de clientes */
.clients-section {
    padding: 5rem 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
}

.client-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

.client-logo {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay);
}

.client-logo:hover {
    transform: scale(1.1);
}

.logo-gray {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.4s ease, transform 0.3s ease;
}

.client-logo:hover .logo-gray {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-5px);
}

/* Animación de aparición */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efecto flotante */
.client-cloud:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, rgba(200, 225, 255, 0.2), transparent 70%);
    border-radius: 50%;
    opacity: 0.8;
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .client-cloud {
        gap: 2rem;
        padding: 1rem;
    }
    
    .client-logo {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 3rem 0;
    }
    
    .client-cloud {
        gap: 1.5rem;
    }
    
    .client-logo {
        width: 90px;
        height: 50px;
    }
}