.area_slide_home{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.area_slide_home img{
    max-width: 100%;
    border-radius: 10px;
}
.area_slide_new{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.item_slide_delimiter{
    width: 100%;
}
.item_slide_delimiter img{
    max-width: 100%;
}
.title_lojas_home{
    display: flex;
    align-items: center;
}
.area_lojas{
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 24px;
    width: 100%;
    border-radius: 12px;
    gap: 26px;
    background-repeat: no-repeat;
    background-size: 172px;
    background-position: calc(100% + 61px) center;
    grid-column: span 2;
    border: 1px solid rgba(222, 224, 224, 0.5);
    background-color: rgb(255, 255, 255);
    margin-top: 10px;
}
.title_lojas_home p{
    margin: 0;
    margin-left: 7px;
    font-weight: 600;
    font-size: 14px;
}
.scroll_lojas_home{
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.item_loja_home{
    display: flex;
    align-items: center;
    border: 1px solid rgba(222, 224, 224, 0.5);
    padding: 5px 10px;
    border-radius:8px;
}
.item_loja_home:hover p{
    color: #000;
}
.item_loja_home .img_loja{
    width: 20px;
    height: 20px;
    min-height: 20px;
    min-width: 20px;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.item_loja_home p{
    margin: 0;
    margin-left: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #3d3d3d;
}
.scroll_lojas_home a{
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 5px;
}

.area_categoria_home{
    display: none;
    overflow-x: scroll;
    margin-top: 20px;
    scrollbar-width: none;
}
.area_categoria_home a{
    text-decoration: none;
}
.item_categoria_home{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 5px;
    width: 74px;
}
.item_categoria_home p{
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    color: #000;
}
.icon_categoria_home{
    height: 45px;
    width: 45px;
    border-radius: 40px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.25);
}
.icon_categoria_home span{
    font-size: 24px;
    color: #000;
}

@media only screen and (max-width: 850px) {
    .scroll_lojas_home{
        display: flex;
        flex-wrap: nowrap;
        overflow-y: auto;
        align-items: center;
        scrollbar-width: none;
    }
    .item_loja_home p{
        text-wrap: nowrap;
    }
    .area_categoria_home{
        display: flex;
    }
}
