.section-clientes {
    text-align: center;
    padding: 56px 20px;
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #000000;
}

.section-subtitle {
    max-width: 760px;
    margin: 0 auto 36px;
    color: #4f4f4f;
    line-height: 1.7;
}

.clientes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cliente-item {
    flex: 0 1 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110px;
    padding: 18px 20px;
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.cliente-item img {
    max-width: 160px;
    max-height: 60px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.cliente-item:hover img {
    transform: scale(1.1);
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .section-clientes {
        padding: 44px 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cliente-item {
        flex-basis: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}
