
/*********************************************
** Header 
*********************************************/

#header {
	width: 100%;
	padding: 0;
	width: 100%;
	float: left;
	padding: 20px 0;
	background: #E8F69F;
}

#header .container {
	display: flex;
	align-items: center;
}

/* Logo */

#header #logo {
	flex: 1;
}

#header #logo img {
	max-width: 250px!important;
}

/* Menu */

#header .menuPrincipal {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#header .menuPrincipal #fechaMenuMobile {
	display: none;
}

#header .menuPrincipal ul.menu {
	padding: 0;
	margin: 0;
}

#header .menuPrincipal ul.menu li {
	list-style: none;
	float: left;
}

#header .menuPrincipal ul.menu li + li {
	margin-left: 50px;
}

#header .menuPrincipal ul.menu li a {
	color: #242424;
    font-size: 16px;
    line-height: 16px;
    padding: 0;
    transition: all 0.2s linear;
    font-weight: 600;
    cursor: pointer;
}

/* Busca */

#header .botaoBusca {
	cursor: pointer;
	margin-left: 50px;
}

#header .botaoBusca i {
	color: #242424;
	font-size: 20px;
}

/* Menu Mobile */

#header #menuMobile {
	display: none;
}

@media only screen and (max-width: 1100px) {

	/* Logo */

	#header #logo {
		margin: 0;
	}

	#header #logo img {
		max-width: 200px!important;
	}

	#header #logo img {
		transition: all 0.2s linear;
	}

	/* Botão Menu Mobile */

	#header #menuMobile {
		display: block;
		margin-left: 20px;
	}

	#header #menuMobile i {
		color: #242424;
    	font-size: 30px;
	}

	/* Menu */

	#header .menuPrincipal {
		position: fixed;
		top: 0;
		right: -100%;
		bottom: 0;
		z-index: 999999;
		background: #070707;
		padding: 20px;
		width: 90%;
		transition: all 0.2s linear;
		flex-direction: column;
		justify-content: flex-start;
		overflow: auto;
		border-left: solid 5px #E8F69A;
	}

	#header .menuPrincipal.active {
		right: 0;
	}

	#header .menuPrincipal #fechaMenuMobile {
		display: block;
		width: 100%;
		text-align: right;
	}

	#header .menuPrincipal #fechaMenuMobile img {
		width: 30px;
	}

	#header .menuPrincipal ul {
		float: left;
		width: 100%;
		margin-top: 40px!important;
	}

	#header .menuPrincipal ul li {
		float: left;
		width: 100%;
		margin: 0!important;
		border: 0!important;
	}

	#header .menuPrincipal ul li + li {
		margin-top: 10px!important;
	}

	#header .menuPrincipal ul li a {
		color: #E8F69A!important;
		padding: 5px 0px;
		border: 0!important;
		background: none;
	}

	#header .menuPrincipal ul li a:hover, 
	#header .menuPrincipal ul li.current-menu-item a {
		border-color: #fff;
    	color: #fff;
		background-color: transparent!important;
	}

	#header .menuPrincipal ul li.menu-item-has-children > a::after {
		color: #fff;
	}

}

@media only screen and (max-width: 500px) {

	#header {
		padding: 20px 0;
	}

	#header .container {
		flex-flow: row wrap;
	}

}