/* SECTION */
.brands-logos {
    padding: 90px 0;
    background: linear-gradient(180deg,#f8f9fa 0%,#ffffff 100%);
}

/* HEADER */
.brands-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.brands-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.brands-header p {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.6;
}

/* LOGO GRID */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 45px;
    align-items: center;
    justify-items: center;
}

/* LOGO ITEM */
.logo-item {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.35s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .brands-header h2 {
        font-size: 2rem;
    }

    .logos-grid {
        gap: 30px;
    }

    .logo-item img {
        max-height: 55px;
    }
}
