body{
    margin: 0;
    padding: 0;
    font-family: "DM Sans", serif;
    background-color: #F2F5F7;
}
.menu_desktop{
    width: 100%;
    height: 65px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
}
.container_menu{
    width: 1216px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    height: 65px;
}
.logo_nav img{
    max-height: 50px;
    max-width: 150px;
    transition: all linear .05s;
}
.logo_nav:hover img{
    max-height: 51px;
    max-width: 151px;
}
.left_menu{
    display: flex;
    align-items: center;
}
.container_menu a{
    text-decoration: none;
}
.btn_link_menu{
    display: flex;
    align-items: center;
    margin-left: 32px;
}
.btn_link_menu p{
    margin: 0;
    margin-left: 3px;
    font-size: 13px;
    font-weight: 600;
}
.btn_link_menu span{
    font-size: 20px;
}
.btn_dropdown{
    display: flex;
    align-items: center;
    margin-left: 38px;
    cursor: pointer;
}
.btn_dropdown span{
    font-size: 20px;
}
.btn_dropdown p{
    margin: 5px;
    font-size: 13px;
    font-weight: 600;
}
.right_menu{
    display: flex;
    align-items: center;
}
.area_search{
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding-left: 5px;
    padding-right: 5px;
}
.area_search input{
    border: 0;
    width: 200px;
    outline: none;
    padding-left: 10px;
}
.area_search button{
    font-size: 21px;
    cursor: pointer;
    padding: 0;
    border: 0;
    background-color: #fff;
}
.menu_mobile{
    display: none;
}
.menu_open{
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.bootom_menu{
    width: 100%;
    height: 65px;
    margin-bottom: 20px;
}
.background_drop_categoria{
    background-color: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    display: none;
    z-index: 9;
}
.area_drop_categoria{
    width: calc(700px - 48px);
    padding: 24px;
    background-color: #fff;
    border-radius: 10px;
    position: fixed;
    top: 70px;
    z-index: 999999;
    display: none;
}
.top_drop{
    display: flex;
    align-items: center;
    height: 45px;
    justify-content: space-between;
}
.title_drop{
    display: flex;
    align-items: center;
}
.title_drop p{
    margin: 0;
    margin-left: 5px;
    font-size: 14px;
    font-weight: 600;
}
.ver_mais_drop{
    display: flex;
    align-items: center;
    width: 100px;
    height: 40px;
    background-color: #fff;
    cursor: pointer;
}
.ver_mais_drop span{
    animation: slack .7s infinite;
}
.areas_item_drop{
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}
.areas_item_drop a{
    text-decoration: none;
}
.item_category{
    width: 200px;
    display: flex;
    align-items: center;
    margin-left: 10px;
    margin-bottom: 10px;
}
.item_category p{
    margin: 0;
    margin-left: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #3d3d3d;
}
.item_category .icon_item{
    height: 25px;
    width: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon_item span{
    font-size: 18px;
}
.item_category:hover{
    background-color: #cccccc36;
}
#arrow_rotate{
    transition: transform 0.3s ease; /* Transição suave */
}
.ativa{
    transform: rotate(180deg); /* Gira a seta */
}
.background_drop_menu{
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    display: none;
}
.menu_left_mobilie{
    width: calc(250px - 32px);
    height: calc(100vh - 64px);
    padding: 32px 16px;
    background-color: #fff;
    z-index: 99999999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow-x: auto;
    scrollbar-width: none; /* Remove a barra de rolagem no Firefox */
    -ms-overflow-style: none; /* Remove a barra de rolagem no Internet Explorer */
    margin-left: -250px;
}
.menu_left_mobilie::-webkit-scrollbar {
    display: none; /* Remove a barra de rolagem no WebKit (Chrome, Safari, Edge) */
}
.menu_left_mobilie a{
    text-decoration: none;
}
.btn_menu_mobile{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.btn_menu_mobile p{
    margin: 0;
    margin-left: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #3d3d3d;
}
.icon_item{
    padding: 3px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_menu_mobile_drop{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.btn_menu_mobile_drop #arrow_rotate_mobile{
    margin-top: -18px;
}
#arrow_rotate_mobile{
    transition: transform 0.3s ease; /* Transição suave */
}
#arrow_rotate_mobile_loja {
    margin-top: -18px;
    transition: transform 0.3s ease; /* Transição suave */
}

.item_loja_mobile{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.item_loja_mobile p{
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    color: #3d3d3d;
}
.img_loja{
    width: 25px;
    height: 25px;
    background-color: #cccccc7d;
    margin-right: 10px;
    border-radius: 5px;
    margin-left: 10px;
    background-position: center;
    background-size: contain;
}
.risco_menu{
    width: 100%;
    height: 1px;
    background-color: #cccccc36;
    margin-bottom: 15px;
}
.item_mobile_foot{
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 14px;
}

/* Estilizando o botão */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Ocultar o botão inicialmente */
    color: white;
    border: none;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
}

#backToTop:hover {
    transform: scale(1.1);
}

@keyframes slack {
    0% {
        margin-left: 0px;
    }
    50% {
        margin-left: 5px;
    }
    100% {
        margin-left: 0px;
    }
}
.ver_mais_drop p{
    margin: 0;
    font-size: 13px;
}
.top_drop a{
    text-decoration: none;
}

.pesquisa_mobile{
    width: 100%;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: #F2F5F7;
    z-index: 99;
}
.pesquisa_mobile .area_search{
    width: 250px;
    border-radius: 5px;
}
.logo_text{
    font-weight: 800;
    display: flex;
    align-items: center;
}
.logo_text span{
    margin-right: 5px;
}

.btn_group_whatsapp_float{
    width: 146px;
    height: 40px;
    background-color: #21a954;
    position: fixed;
    bottom: 26px;
    right: 20px;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.45);
}

@media only screen and (max-width: 1216px) {
    .container_menu{
        width: calc(100% - 50px);
        height: 65px;
    }
}
@media only screen and (max-width: 850px) {
    .container_menu{
        width: calc(100% - 40px);
        height: 65px;
    }
    .menu_desktop{
        display: none;
    }
    .menu_mobile{
        width: 100%;
        height: 65px;
        background-color: #fff;
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
    }
    .logo_nav img{
        max-height: 40px;
        max-width: 120px;
        transition: all linear .05s;
    }
    .area_search{
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 30px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .menu_mobile .btn_link_menu p{
        display: none;
    }
    .menu_mobile .btn_link_menu span{
        font-size: 28px;
    }
    .menu_mobile .btn_link_menu{
        margin-left: 15px;
    }
    .btn_group_whatsapp_float{
        display: flex;
    }
}