#sb-body {
    display: none;
}

#hotsite {
    overflow: hidden;
    background-color: #FFF;
}

.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 */
@media (max-width: 767.98px) {

    .categorias-carousel-mobile {
        position: relative;
        padding: 0 28px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .categorias-grid {
        display: grid;
        grid-auto-flow: column;

        /* 3 linhas */
        grid-template-rows: repeat(3, auto);

        /* 3 colunas visíveis */
        grid-auto-columns: calc((100% - 16px) / 3);

        gap: 8px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;

        margin-left: 0;
        margin-right: 0;

        flex-wrap: nowrap;
        box-sizing: border-box;
    }

    .categorias-grid::-webkit-scrollbar {
        display: none;
    }

    .categorias-grid > div {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        padding-left: 0;
        padding-right: 0;

        flex: none;

        scroll-snap-align: start;

        box-sizing: border-box;
    }

    .titulo-marcas {
        font-size: 1.2rem;
    }

    .categoria-card {
        width: 100%;
        min-height: 42px;
        height: 42px;

        padding: 8px 6px;

        font-size: 12px;
        font-weight: 600;

        border-radius: 8px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;
        line-height: 1.1;

        overflow: hidden;
        box-sizing: border-box;
    }

    .cat-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);

        z-index: 2;

        border: none;
        background: #181818;
        color: #fff;

        width: 18px;
        height: 30px;

        border-radius: 6px;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 18px;
        font-weight: bold;
        line-height: 1;

        cursor: pointer;
        padding: 0;
    }

    .cat-prev {
        left: 0;
    }

    .cat-next {
        right: 0;
    }
}

/* MOBILE PEQUENO - 2 COLUNAS */
@media (max-width: 576px) {

    .categorias-carousel-mobile {
        padding: 0 22px;
    }

    .categorias-grid {

        /* 3 linhas */
        grid-template-rows: repeat(3, auto);

        /* 2 colunas visíveis */
        grid-auto-columns: calc(50% - 4px);

        gap: 8px;
    }

    .categoria-card {
        min-height: 44px;
        height: 44px;

        font-size: 11px;

        padding: 6px;

        border-radius: 6px;
    }

    .cat-arrow {
        width: 18px;
        height: 30px;

        font-size: 18px;

        border-radius: 5px;
    }
}

/* ESCONDE SETAS NO DESKTOP/TABLET */
@media (min-width: 768px) {
    .cat-arrow {
        display: none;
    }
}

.categoria-card {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 14px 10px;

    background: #ff800d;

    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%;

    box-sizing: border-box;
}

.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;
}