/*HEADER*/



.btn_menu a {
	color: #fff;
	transition: .5s;
}

.btn_menu a:hover {
	color: #00E09B;
	transition: .5s;
}

header {
	z-index: 99;
	background: rgba(255, 255, 255, 0.3);
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	padding: 30px 0px;
}

.h_container {
	position: relative;
	font-family: 'Inter';
	font-size: 20px;
	display: flex;
	align-items: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 40px;
}

.h_container nav {
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.h_logo {
	width: 270px;
	height: 81px;
	text-indent: -9999px;
	background: url('../themes/images/logo.png') no-repeat;
	display: block;
	background-size: cover;
	background-position: center;
	z-index: 1;
	margin-right: 100px;
}


a {
	color: #ffffff;
	text-decoration: none;
}

.hamburguer {
	width: 30px;
	height: 30px;
	border-radius: 5px;
	border: 0;
	position: relative;
	cursor: pointer;
	display: none;
}

.hamburguer:after {
	content: "";
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	width: 60%;
	height: 2px;
	border-radius: 5px;
	background-color: #000000;
	z-index: 11000;
}

.hamburguer:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 55%;
	width: 60%;
	height: 2px;
	border-radius: 5px;
	background-color: #000000;
}

.menu {
	list-style: none;
	display: flex;
	align-items: center;
}

li {
	margin-left: 10px;

}

.menu li {
	border-radius: 10px;
	margin: 0px 30px;
}

.menu a {
	display: inline-block;
	text-decoration: none;
	color: #000000;
	transition: .5s;
	font-family: 'productsans';
	font-size: 20px;
	font-weight: normal;
}

.menu a:hover {
	color: #FF6009;
	transition: .5s;
}

.menu .contato {
	background: #3BD8C3;
	padding: 12px 32px;
	border-radius: 100px;
	font-family: 'productsansbold';
	color: #ffffff;
}

.menu .contato:hover {
	color: #3BD8C3;
	background: #c5fff7;
	transition: .5s;
}

@media screen and (max-width: 831px) {
	.h_container {
		align-items: center;
	}

	.logo {
		background-size: 80%;
		background-position: center;
	}

	.h_logo {
		width: 170px;
		height: 51px;
	}

	.menu_idioma {
		margin-top: 10px;
	}

	.menu li {
		margin: 5px;
	}

}


@media screen and (max-width: 831px) {
	.hamburguer {
		display: block;
		z-index: 9999;
		right: 20px;
	}

	.navbar {
		justify-content: space-between;
		width: 100%;
	}

	.fecha {
		display: block !important;
	}
}


@media screen and (max-width: 829px) {
	
	header {
		backdrop-filter: none;
	}

	.menu {
		position: fixed;
		top: 0;
		right: 0;
		height: 100vh;
		margin: 0;
		background-color: #242424;
		width: 100%;
		max-width: 200px;
		flex-direction: column;
		padding: 100px 20px;
		font-size: 0.8em;
		transition: 0.5s ease;
		z-index: 9;
		-webkit-box-shadow: -8px 9px 10px -4px rgba(0, 0, 0, 0.27);
		box-shadow: -8px 9px 10px -4px rgba(0, 0, 0, 0.27);
	}

	.menu.active {
		right: -100%;
	}

	.btn_menu {
		margin-left: 0px;
	}

	#idioma {
		margin-left: 0px;
		margin-top: 10px;
	}

	.menu a {
		color: #ffffff;
	}

	.menu .contato {
		margin-left: initial;
		margin-top: 20px;
	}

	.h_logo {
		margin-right: initial;
	}

	.h_container nav {
		justify-content: space-between;
	}
}

.clear {
	clear: both;
}