/* ── Galería Clientes ─────────────────────────────────────────────────────── */

.clientes-header {
    background: #f5f6f8;
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid #e8eaed;
}

.clientes-header__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #0a0a0a;
    margin: .5rem 0 .5rem;
    line-height: 1.15;
}

.clientes-header__sub {
    color: #555;
    font-size: 1rem;
    margin: 0;
    max-width: 600px;
}

/* ── Gallery grid ────────────────────────────────────────────────────────── */

.clientes-gallery {
    padding: 3rem 0 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem;
    }
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 4px;
}

.gallery-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.gallery-item:hover .gallery-item__img {
    transform: scale(1.05);
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */

.clientes-cta {
    background: #f5f6f8;
    border-top: 1px solid #e8eaed;
    padding: 3rem 0;
}

.clientes-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.clientes-cta__text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0a0a0a;
    margin: 0;
}

@media (max-width: 600px) {
    .clientes-cta__inner {
        flex-direction: column;
        text-align: center;
    }
}
