.menu-janela {
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    min-width: 300px;
    max-width: 800px;
    color: #000;
    z-index: 3;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 10;
    transition: 1s all ease;
}
@media (max-width: 600px) {
    .menu-janela {
        left: -320px;
    }
}
.page-home .menu-janela {
    background-color: rgba(0,0,0, .75);
}
.menu-header .menu-janela {
    background-color: rgba(89, 89, 89, .99);
}
body.menu-janela-aberto .menu-header .menu-janela,
.page-home.menu-aberto .menu-janela
{
    left: 0;
}
.menu-janela .interior {
    position: relative;
    width: 100vw;
    height: 100%;
}
.menu-janela .icon-close {
    font-size: 2rem;
    position: absolute;
    top: 50px;
    left: 7%;
}
.menu-janela .icon-close a {
    color: #F0B600;
    color: #FFF;
    text-decoration: none;
}
.menu-janela ul {
    display: block;
    position: absolute;
    list-style: none;
    padding: 0;
    top: 150px;
    left: 7%;
    width: 93%;
}
.menu-janela ul li {
    position: relative; 
}
.menu-janela ul li a {
    color: #fff;
    text-decoration: none;
    line-height: 2rem;
    font-size: 1rem;
    font-weight: 300;
    transition: 1s all ease;
    display: block;
    width: 100%;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .menu-janela ul li a {
        line-height: 2.5rem;
        font-size: 1.2rem;
    }
}
.menu-janela ul li a:after {    
    background: rgba(255, 255, 255, .2);
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 100%;
    position: absolute;
    transition: width 0.3s ease .0s, left 0.3s ease 0.3s;
    width: 0;
}
.menu-janela ul li a:hover {
    padding-left: 15px;
}
.menu-janela ul li a:hover:after { 
    width: 100%; 
    left: 0; 
}