.menu-main{
    background-color: #fff;
    display: flex;
    justify-content: space-between;
}

.menu-main a{
    display: block;
    padding: 10px 9px 20px 10px; /*LSS inicialmente 25px 43px 23px 5px;*/
/*LSS    text-transform: uppercase; */
    color: #737c85; /*aantes #7b7d94*/
    font-size: 17px;
    font-weight: 400; /*LSS inicialmente 600*/
    letter-spacing: -0.07em;
    transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
}

.menu-main a:hover{
    text-decoration: none;
    color: #cc3467;
}

.menu-main .active{
     color: #cc3467;
}

@media (max-width: 768px) {
    
    .menu-main{
        height: auto;
        border-bottom: 0px;
        display: block;
    }
    
    .menu-main a{
        height: 45px;
        border-bottom: 1px solid #29487d;
    }

}

