/* Esconde o botão fora do mobile */
.menuBtnJS {
    display: none;
}

.row-container {
    width: 1200px;
    margin: 0 auto;
}

.zNav {
    background-color: #064987;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 10%;
}

.mainLogo {
    width: 200px;
    height: auto;
}

.mainLogo img {
    width: 200px;
    height: auto;
}

ul.navList {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    display: flex;
    margin-left: auto;
}

ul.navList li {
    margin: 5px;
}

ul.navList li a {
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}

ul.navList li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    right: 0;
    left: auto;
    bottom: 0;
    opacity: 0.5;
    background-color: #dee0f7;
    transition: .3s width ease;
}

ul.navList li a:hover {
    color: #dee0f7;
}

ul.navList li a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

a.badge {
    padding: 9px;
}

a.badge::before {
    display: none !important;
}

/* --- MOBILE --- */
@media(max-width: 767px) {
    .zNav {
        padding: 10px 3%;
    }

    .menuBtnJS {
        display: grid;
        align-content: center;
        width: 50px;
        height: 50px;
        background-color: #fff;
        margin-left: auto;
        cursor: pointer;
        border: none;
        padding: 0;
    }

    .menuBtnJS span {
        display: block;
        background-color: #18193c;
        width: 30px;
        height: 5px;
        margin: 2px 10px;
        border-radius: 3px;
        transition: .5s all ease;
    }

    .menuBtnJS span:first-child {
        width: 20px;
    }

    .menuBtnJS span:last-child {
        width: 20px;
        margin-left: 20px;
    }

    .zNav .navList {
        flex-direction: column;
        background-color: #276dad;
        padding: 20px;
        min-width: 300px;
        min-height: calc(100vh - 70px);
        position: absolute;
        top: 70px;
        right: 0;
        transform: translateX(100%);
        transition: 0.5s transform ease;
        z-index: 100;
    }

    .zNav .navList.aberto {
        transform: translateX(0);
    }

    .zNav .navList li {
        margin-bottom: 20px;
    }
}