@charset "utf-8";

.h-10 {
    height: 10px;
}

.h-15 {
    height: 15px;
}

.h-40 {
    height: 40px;
}

.h-30 {
    height: 30px;
}

.h-25 {
    height: 25px;
}

.h-20 {
    height: 20px;
}

.h-50 {
    height: 50px;
}

.h-60 {
    height: 60px;
}

.h-75 {
    height: 75px;
}

.h-100 {
    height: 100px;
}

.h-120 {
    height: 120px;
}

.h-140 {
    height: 140px;
}

.h-180 {
    height: 180px;
}

.title2 {
    color: var(--primary-blue);
}

.desc {
    padding-left: 20px;
    padding-right: 20px;
}

.par1 {
    width: 75%;
    line-height: 1.7;
}

.p1 {
    width: 95%;
}

.img-round {
    max-height: 99%;
    max-width: 99%;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    align-items: center;
}

.brand-item {
    flex: 0 0 180px;
    /* Padronizado com a página de peças */
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--light-bg);
    border: 1px solid #eef2f6;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;

    @media (max-width: 480px) {
        .brand-item {
            flex: 0 0 140px;
            height: 140px;
            padding: 10px;
        }
    }

    object-fit: contain;
}