.nav a {
    text-decoration: none;
}

.nav .maincontainer {
    max-width: 1920px;
    width: 90%;
}

/* NAV */
.nav {
    display: flex;
    justify-content: center;
    padding: 25px 0;
    border-bottom: 1px solid #E9E9E9;
}

.nav .maincontainer {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.nav__logo {
    display: block;
}

.nav__links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.nav__link {
    color: #5C5C5C;
    font-size: 16px;
    margin-right: 40px;
    position: relative;
    padding: 10px;
    transition: .2s ease;
}

.nav__link:hover {
    /* background-color: #0078FF; */
    color: #fff;
}

/*navdropdown*/
.nav__dropdown {
    cursor: pointer;
    position: relative;
    margin-right: 40px;
    transition: .2s ease;
}

.nav__dropdown:hover span{
    color: #FFF;
    /* background-color: #0078FF; */
}

.nav__dropdown span {
    font-size: 16px;
    padding: 10px;
}

.nav__dropdown__content {
    display: none;
    flex-flow: column nowrap;
    align-items: flex-start;
    position: absolute;
    z-index: 2;
    background-color: #FFF;
    width: 200%;
    min-width: 230px;
    left: -50%;
    /* border: 1px solid #E9E9E9; padding: 10px; */
    border-top: unset;
    top: 140%;
}

.nav__dropdown:hover .nav__dropdown__content {
    display: flex;
	box-shadow: 0 2px 35px -1px rgba(15,15,15,.5);
}

.nav__dropdown .nav__link {
    margin-right: unset;
    line-height: 1;
    /* margin: 5px 0; */
    padding: 10px 10px;
	border-bottom: 1px solid #f1f1f1;
	width:100%;
}
/*end navdropdown*/

.nav__right {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav__tel i{
    /* color: #0078FF; */
}

.nav__traducao {
    color: #5C5C5C;
    margin-left: 40px;
    cursor: pointer;
}

#tradutor {
    position: absolute;
    top: 100%;
}
/* END NAV*/

/* NAVMOBILE */
.navmobile {
    display: none;
    flex-flow: row wrap;
    justify-content: center;
    width: 100%;
    
}

.togglemobile {
    display: none;
    cursor: pointer;
}
/* END NAVMOBILE */

@media (max-width: 1600px) {
    .nav .maincontainer {
        width: 98%;
    }
}

@media (max-width: 1024px) {

    .togglemobile {
        display: flex;
        margin-left: 40px;
    }

    .togglemobile__btn {
        display: flex;
        padding: 10px;
        border: 1px solid #5c5c5c;
        border-radius: 5px;
        font-size: 20px;
    }


    .nav .nav__links{
        display: none;
    }

    .nav__links {
        width: 100%;
        flex-flow: row wrap;
        justify-content: center;
        
    }

    .nav__link {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        margin-right: 0;
        border-bottom: 1px solid #E9E9E9;
    }

    .nav__right {
        padding: 25px 0 0 0;
    }

}

@media (max-width: 720px) {
    .nav__tel, .nav__traducao {
        display: none;
    }

    .nav__right {
        padding: unset;
    }

    .togglemobile {
        display: flex;
        margin-left: unset;
    }
	

}