#sb-body {
    display: none;
}

#hotsite {
    overflow: hidden;
    background-color: #efefef6e;
}

.titulo-marcas {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
}

/* DESKTOP - 8 colunas */
@media (min-width: 992px) {
    .col-lg-custom {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}

/* TABLET - 4 colunas */
@media (min-width: 768px) and (max-width: 991.98px) {
    .col-lg-custom {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* MOBILE - 3 colunas */
@media (max-width: 767.98px) {
    .col-lg-custom {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .titulo-marcas {
        font-size: 1.2rem;
    }

    .categoria-card {
        font-size: 12px;
        min-height: 42px;
        padding: 8px 6px;
    }
}

.categoria-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 14px 10px;
    background: #212121;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transition: all 0.2s ease;
    width: 100%;
}

.categoria-card:hover {
    background: #000;
    color: #e2e2e2;
    transform: translateY(-2px);
}

.content-text {
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #f3f3f3;
}

.font-size-175rem {
    font-size: 1.75rem;
}