header{
	height: 50px;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;	
	background-color: limegreen;
	z-index: 3000;
}
.header-home{
	background: rgba(0, 128, 0, 0.5);
}
header .container{
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-menu{
	display: flex;
	align-items: center;
}
header #logo_header{
	width: 100px;
	display: block;
}
header nav{
	display: flex;
	justify-content: flex-end;
}
header .img-menuMobile{
	width: 50px;
	cursor: pointer;
	display: none;
}
header nav ul{
	list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
}
header nav ul li{
	padding: 5px 10px;
	margin: 0px;
}
header nav ul a:hover{
	text-decoration: none;
}
header nav ul li:hover{
	background-color: green;
	color: #fff;
	text-decoration: none;
}
header nav ul .ativo{
	font-weight: bold;
	text-decoration: underline;
}
header nav ul a{
	color: #333;
}
header nav ul a:hover{
	color: #333;
}

.header-whatsapp img, .header-orcamento img{
	width: 30px;
	height: 25px;
	margin-left: 20px;
	cursor: pointer;
}

@media only screen and (max-width: 767px){
	header .img-menuMobile{
		display: block;
	}
	header nav ul{
		display: none;
		position: absolute;
        flex-direction: column;
        background-color: limegreen;
        margin-top: 50px;
	}
	header nav ul li{
		padding: 5px 30px;
	}
}