@charset "utf-8";

.h-10 {
    height: 10px;
}

.h-15 {
    height: 15px;
}

.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;
}

.title2 {
    color: var(--primary-blue);
}

.desc {
    padding-left: 20px;
    padding-right: 20px;
}

.par1 {
    width: 75%;
    line-height: 1.7;
    margin: 0 auto;
    text-align: center;
}

.img-round {
    max-height: 99%;
    max-width: 99%;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.brand-item {
    flex: 0 0 180px;
    /* Largura fixa para garantir simetria absoluta */
    height: 180px;
    /* Altura idêntica para criar boxes perfeitamente quadrados */
    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);
    background-color: #fff;
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    @media (max-width: 480px) {
        .brand-item {
            flex: 0 0 140px;
            height: 140px;
            padding: 10px;
        }
    }

    /* Mantém a proporção sem distorcer ou cortar a peça */
}