/* Clientes Section */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-green) 0%, var(--royal-blue) 100%);
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--soft-aqua);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    color: var(--blanco);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Gotham', sans-serif;
    font-weight: 500;
}

.section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de Clientes - Diseño Estético */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

.client-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 120px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--soft-aqua);
    opacity: 0;
    border-radius: 10px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.client-item:hover::after {
    opacity: 0.05;
}

.client-item:hover {
    transform: scale(1.15);
}

.client-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.client-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px;
    }
}

/* Responsive Design - Tablets */
@media screen and (max-width: 768px) {
    .page-section {
        padding: 80px 20px !important;
    }

    .section-header {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .section-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .client-item {
        height: 100px;
    }

    .client-item img {
        max-height: 60px;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 480px) {
    .page-section {
        padding: 60px 15px !important;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }

    .section-description {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 5px;
    }

    .clients-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        padding: 15px;
        max-width: 300px;
        margin: 0 auto;
    }

    .client-item {
        height: 80px;
        padding: 10px;
        border: 1px solid rgba(104, 175, 181, 0.2);
    }

    .client-item img {
        max-height: 45px;
        max-width: 90%;
    }

    .client-item:hover {
        transform: translateY(-2px);
        border-color: var(--soft-aqua);
    }
}