
.products-container p{margin-top: 16px;}
.products-container a{text-decoration: none; color: #343436;}
.products-container{scroll-snap-type: x mandatory;}
.category-bf{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.category-bf p{
    width: 100%;
    text-align: left!important;
    font-weight: 400;
   position: relative;
   top: 0 auto;
   height: 124px;
}

.category-bf button{
    margin: 0;
    border: 0;
}

.img-subsecoes{
    width: 100%;
    max-width: 1280px;
    height:480px;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
}

a{
    text-decoration: none;
    color: #ffffff;
    margin: 16px 0;
}

.button-config{
    width: 100%;
    max-width: 343px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.button-secondary{background-color: #b26157; color: #ffffff;}
.button-secondary-outline:hover{transition: 0.2s; background-color: #212121;}


.button-secondary{
    width: 100%;
    max-width: 423px;
    height: 48px;
    border-radius: 8px;
    background-color: #b26157;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.products-container .row {
    overflow-x: auto; /* Adiciona barra de rolagem horizontal quando os itens ultrapassam a largura do contêiner */
    flex-wrap: nowrap; /* Garante que os itens de categoria não se quebrem para a próxima linha */
    -webkit-overflow-scrolling: touch; /* Adiciona rolagem suave para dispositivos iOS */
    
}

.products-container .row::-webkit-scrollbar{
    width: 100%;
    height: 16px;
    border-radius: 24px;
    background-color: #131313;
    border: 1px solid #959494;
    padding: 16px 0;
   
   }

.products-container .row::-webkit-scrollbar-thumb {
    background-color: #959494;
    border-radius: 24px;
 }


.products-container .col-lg-3 {
    flex: 0 0 auto; /* Impede que os itens de categoria se expandam para preencher o contêiner */
}


.products-container .col-lg-3 {
    margin-right: -16px; /* ou qualquer valor negativo desejado */
}

