.mobile-menu{
	display: none;
	flex-direction: column;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: space-around;
}

#menu-nav{
	width: 100%;
	height: 100%;
}

#menu-nav-links{
	display: flex;
	flex-direction: row;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	padding: 10px;
	list-style: none;
	align-items: center;
	justify-content: right;
	gap: 1.5em;
}

#menu-nav-links a{
	position: relative;
	text-decoration: none;
	font-weight: bold;
	text-shadow: 1px 1px 4px black;
	transition: .3s;
}

#menu-nav-links a li{
	text-align: center;
}

#menu-nav-links a:before{
	content: "";
	position: absolute;
	width: 0%;
	height: 2px;
	bottom: -1px;
	left: 0;
	background-color: var(--branco);
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

#menu-nav-links a:hover{
	color: var(--idprimario);
}

#menu-nav-links a:hover:before {
	visibility: visible;
	width: 100%;
	background-color: var(--idprimario);
}

.logo-header{
	position: relative;
	float: left;
	width: 270px;
	height: 60px;
}

@media(max-width: 999px){

	header.active{
  		background-color: RGBA(33, 37, 41, 0.98);
		border-bottom: thin solid black;
		box-shadow: 0px 0px 8px var(--preto);
	}

	#menu-nav-links{
		height: 100vh;
		width: 50vw;
		background-color: var(--preto);
		position: absolute;
		top: 101px;
		right: 0px;
		text-align: left;
		transform: translateX(100%);
		transition: transform .3s ease-in;
		border-left: thin solid #222;
		box-shadow: -2px -2px 4px var(--preto);
		flex-direction: column;
	}

	#menu-nav-links.active{
		transform: translateX(0);
	}

	.logo-header{
		margin-left: -20px;
	}
/*
	#menu-nav-links{
		width: calc(100% - 20px);
	}*/

	#menu-nav-links a{
		width: 100%;
		border-bottom: thin solid #333;
		padding-bottom: 10px;
		opacity: 0;
	}

	#menu-nav-links a li{
		text-align: left;
		width: 100%;
	}

	#mobile-menu{
		display: flex;
		position: relative;
		float: right;
		cursor: pointer;
	}

	.lines{
		display: block;
		width: 32px;
		height: 3px;
		background-color: white;
		box-shadow: 1px 1px 4px #999;
		transition: .3s;
	}

	#mobile-menu.active .lines{
		box-shadow: none;
	}

	#mobile-menu.active #line1{
		transform: rotate(-45deg) translate(-8px, 7px);
	}

	#mobile-menu.active #line2{
		opacity: 0;
	}

	#mobile-menu.active #line3{
		transform: rotate(45deg) translate(-8px, -7px);
	}
}

@keyframes navLinkFade{
	from{
		opacity: 0;
		transform: translateX(100%);
	}
	to{
		opacity: 1;
		transform: translateX(0);
	}
}