/* Tradutor */
.menutop__right {
	display: flex;
    align-items: center;
}

.menu__traducao {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
	position: relative;
	margin-left: 20px;
	cursor: pointer;
}

.menu__traducao span {
    color: #7b7b7b;
}

.menu__traducao__icone {
    font-size: 22px;
    margin-right: 10px;
}

#google_translate_element {
    display: none;
    position: absolute;
    right: 0;
	top: 100%;
	z-index: 99;
}

.goog-te-gadget-simple {
    display: flex !important;
}

.goog-te-menu-value {
    display: flex !important;
}

/* MENU */
header {
/*	
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	position: relative;
*/
	display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
    position: relative;
    padding: 10px 0;	
}

header .container {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.logo {
	/* width: 200px; */ 
	display: block;
}

.logo img{
	display: block;
	max-height:210px;
	max-width:400px;
	max-width:100%;
}

.menutop {
	display: none;
}

.menutop .container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.btntelefone{line-height:1;}

.menu {
/*	
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	margin-left: 50px;
*/
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    min-height: 90px;
	align-self: stretch;	
}

.menu__item {
	display: flex;
    align-items: center;
    padding: 20px 13px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.15s, height 0.3s, line-height 0.3s, opacity 0.3s;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    align-self: stretch;
	/*
	display: flex;
    align-items: center;
    padding: 20px 13px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.15s, height 0.3s, line-height 0.3s, opacity 0.3s;
    text-decoration: none;
    position: relative;
    height: 100%;
    cursor: pointer;
	*/
}

/*.menu__item:hover {
	color: #5091fa;
}*/

.menu__item i {
	margin-left: 8px;
}

.menu__item a {
	color: #212a42;
	text-decoration: none;
	text-wrap: nowrap;
}


.menu__item__dropdown {
	display: block;
    position: absolute;
    top: calc(80% + 0px);
    left: 0;
    z-index: 99;
    min-width: 17em;
    background-color: #fff;
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.2);
    border-top: 5px solid;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
    transform: translateY(40px);
}

.menu__item:hover .menu__item__dropdown {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}

.menu__item__dropdown:before {
	content: "";
    position: absolute;
    top: -15px;
    left: 30px;
    border-bottom: 12px solid;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.menu__item__dropdown__item {
	display: block;
    position: relative;
    color: #222;
    font-weight: 500;
    font-size: 16px;
	padding: 8px 15px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.15s;
    text-transform: none;
}

.menu__item__dropdown__item:hover {
	background-color:#f1f1f1;
}

/* NAVBAR MOBILE */
.navbar__toggle {
	display: none;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 30px;
	margin-right: 30px;
	cursor: pointer;
}

.navbar__mobile {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #fff;
	list-style: none;
	width: 100%;
	/*padding-left: 15px;*/
	z-index: 3;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
	text-align:center;
}

.navbar__mobile .menu__item {
	display: block;
	padding: 6px 15px;
}

.navbar__mobile .btnmedium {
	display: inline-block;
}

.navbar__mobile__dropdown {
	padding-left: 20px;
	display: none;
}
.navbar__mobile li:hover{ background-color:#f1f1f1; }

/* END NAVBAR MOBILE */

@media (max-width: 720px){
	.navbar__toggle {
		display: block;
	}

	header .container > .btnmedium {
	    display: none;
	}

	.menu {
		display: none;
	}
	.navbar__mobile .btnmedium{ width:100%; }

}
@media (max-width: 1200px) {
	.menu + .btnmedium {
		display:none;
	}

	.menutop {
		display:block;
	}
}

/*END MENU*/