.nav-menu{
    width: 300px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f4f4f4;
    overflow-y: auto;
    z-index: 10;
}
.nav-menu.show{
    transition: 0.5s;
    transform: none;
}
.nav-menu input:focus{
    outline: none;
}
.nav-menu .header{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.nav-menu .header .logo{
    background-image: url("/assets/img/Home/logoat.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 50%;
}
.nav-menu .header a{
    padding: 4px 15px;
    border-radius: 999px;
    color: #fff;
    background-color: #FB0234;
    margin: 0 10px;
    height: 28px;
    font-size: 0.9rem;
    text-decoration: none;
}
.nav-menu .editorias{
    width:100%;
    /* min-height: 400px; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-menu .editoria{
    width: 90%;
    color: #282828;
    line-height: 60px;
    border-bottom: 1px solid #606060;
    cursor: pointer;
}
.nav-menu .editoria.active{
    border:none;
}
.nav-menu .editoria i{
    margin-left: 5px;
    transition: 0.1s;
}
.nav-menu .editoria i.turn{
    transform: rotate(180deg);
}
.nav-menu .sub{
    width: 100%;
    background-color: #f4f4f4;
    display: none;
}
.nav-menu .sub.show{
    display: block;
    padding: 0 0 0 5px;
}
.nav-menu .sub ul{
    list-style: none;
}
.nav-menu .sub ul li{
    font-size: 13px;
    width: 80%;
    line-height: 30px;
    border-bottom: 1px solid #797979;
    transform: translateX(10px);
}
.nav-menu .sub ul li:last-child{
    border: none;
}
.nav-menu .sub ul li a{
    text-decoration: none;
    color: #606060;
}
.nav-menu .links{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #a3a3a3;
    margin-top: 10px;
}
.nav-menu .links i{
    width: 40px;
    cursor: pointer;
    color: #282828;
    text-align: center;
    font-size: 20px;
}
.nav-menu .links.produtos{
    flex-direction: column;
    height: auto;
    margin: 30px 0 20px 0;
}
.nav-menu .links .produto {
    width: 100%;
    background: linear-gradient(90deg, #FFFFFF 30.67%, rgba(255, 255, 255, 0) 98%);
    margin-bottom: 10px;
    padding: 15px 0 15px 15px;
}
.nav-menu .links .produto a{
    display: grid;
    grid-template-columns: 40px 1fr;
    justify-content: center;
    align-items: center;
    color: #606060;
    font-size: 0.8rem;
}
.nav-menu .links .prod{
    width: 30px;
    height: 30px;
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    border-radius: 100%;
}
.nav-menu .especiais{
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-menu .especiais.publicidade{
    width: 90%;
    color: #282828;
    line-height: 60px;
    border-bottom: 1px solid #606060;
    cursor: pointer;
}
