.menu__lista  a {
    position: relative;
    display: block;
    text-transform: uppercase;
    margin: 20px;
    text-decoration: none;
    color: var(--color-menu);
    font-family: var(--font-Acme);
    font-size: 17px;
    transition: 0.6s;
    z-index: 1;
}

.menu__lista  a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--color-principal);
    border-bottom: 2px solid var(--color-principal);
    transform: scaleY(2);
    opacity: 0;
    transition: 0.3s;
    
}

.menu__lista a:after {
    content: "";
    position: absolute;
    top: 1.5px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #08e8dd4c;
    transform: scale(0);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.menu__lista a:hover {
    color: var(--color-titulos);
}

.menu__lista a:hover:before {
    transform: scaleY(1);
    opacity: 1;
}

.menu__lista a:hover:after {
    transform: scaleY(1);
    opacity: 2;
}

.menu__icon{
    display: none;
}

/*responsive*/
@media screen and (max-width: 720px){
    .menu__icon{
        display: block;
        text-align: center;    
    }

.menu{
    position: fixed;
    top: 0;
    right: 0px;
    background:#0e2f47e0;
    width: 100px;
    height: 100vh;
    padding: 40px;
    z-index: 1;
    transition: all 300ms;
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }

.active{
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

.menu .menu__lista{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0.5rem 0 0;
    }

}


@media screen and (max-width: 870px){
    .menu .menu__lista{
        font-size: 10px;
    }
}