.menu-hamburguer{
	display: none;
}

.menu-padrao{
	display: block;
}

@media screen and (max-width: 1024px) {
	#menuPrincipal{
		display: none;
	}

	.menu-fundo-preto{
		width: 100vw !important;
		height: 100vh !important;
		z-index: 1000 !important;
		position: fixed !important;
		background: rgba(0,0,0,0.6);
		top: 0;
	}

	.menu-hamburguer{
		display: block;
	}

	.menu-padrao{
		display: none;
	}

	.menu-mobile > *{
		position: fixed;
		top: 0;
		left: 0;
		margin: 0 !important;
		padding: 0 !important;
		height: 100vh !important;
		background: white;
		z-index: 1001;	
	}


}