#clientes {
    background-image: url('../images/fondo2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    height: 100vh;
}

@media (max-width: 768px) {
    #clientes {
        height: auto;
        min-height: 100vh;
        padding: 60px 0;
    }
    .client-card {
        height: 150px;
        margin-bottom: 20px;
    }
    .client-logo {
        max-height: 100px;
    }
}

#clientes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1; 
}

#clientes .container {
    position: relative;
    z-index: 2;
}

.client-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    transform: translateY(-5px);
}

.client-logo {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}