html, body{
	padding:0px;
	margin:0px;
	overflow-x: hidden;	
}
a, ul, li, p, h1, h2, h3, h4, h5, h6, span, button{
	font-family: 'Roboto', sans-serif;
	text-decoration:none;
	margin: 0px;
	padding: 0px;
	line-height: 150%;
}
a{
	color: inherit;
}
*{
	transition: 0.3s ease;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.container{
	max-width: 1200px;
	width:96%;
	height:auto;
	position: relative;
	z-index: 2;
	margin:auto;
}

/*HEADER*/
	header{
		width: 100%;
		height: 70px;
		position: fixed;
		z-index: 999;
		text-align: center;
		background-color: #FFF;
	}
	.headerEfeito{
		width: 100%;
		height: 70px;
		margin: -30px 0 0;
		background-image: url(../img/headerBg.png);
		background-size: 100% 100%;
		background-position: center bottom;
	}
	header .container{
		justify-content: center;
		align-items: center;
	}
	header img{
		height: 70px;
		margin: 10px 0;
	}

/*CONTEUDO*/
	.landingpage{
		width: 100%;
		height: 100vh;
		position: fixed;
		background-size: cover;
		background-position: center;
	}
	.landingpageBackground{
		width: 100%;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: #0009;
	}
	.landingpageTitulo{
		width: 100%;
	}
	.landingpageTitulo h1{
		font-size: 22px;
		font-weight: 700;
		text-transform: uppercase;
		text-align: center;
		line-height: 100%;
		color: #FC0;
	}
	.landingpageTitulo h1 span{
		font-size: 60px;
		font-weight: 900;
		line-height: 100%;
		color: #8CF;
	}
	.landingpageConteudo{
		width: 100%;
		margin: 50px 0 0;
		justify-content: center;
	}
	.landingpageBg{
		margin: 0 20px;
	}
	.landingpageBgImagem{
		width: 100px;
		height: 100px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 100px;
		background-color: #0249;
	}
	.landingpageBgImagem:hover{
		background-color: #FFF;
	}
	.landingpageBgImagem img{
		width: 40px;
		filter: brightness(30);
		opacity: 0.7;
	}
	.landingpageBgImagem:hover img{
		filter: grayscale(1);
	}
	.landingpageBgTexto{
		width: 100%;
		margin: 5px 0;
	}
	.landingpageBgTexto p{
		font-size: 16px;
		font-weight: 500;
		text-align: center;
		text-transform: uppercase;
		line-height: 100%;
		color: #FFF;
	}

/*FOOTER*/
	footer{
		width: 100%;
		position: fixed;
		z-index: 999;
		bottom: 0px;
		background-color: #024;
	}
	footer p{
		padding: 10px 0;
		font-size: 12px;
		color: #48C;
	}

@media screen and (max-width:1024px) and (min-width:768px){
	/*CONTEUDO*/		
		.landingpageBg{
			margin: 0 15px;
		}		
}

@media screen and (max-width:767px){
	/*CONTEUDO*/
		.landingpage{
			height: auto;
			position: absolute;
		}
		.landingpageBackground{
			min-height: 100vh;
			height: auto;
			display: block;
		}
		.landingpageTitulo{
			padding: 150px 0 0;
		}
		.landingpageTitulo h1{
			font-size: 18px;
		}
		.landingpageTitulo h1 span{
			font-size: 48px;
		}
		.landingpageConteudo{
			flex-wrap: wrap;
			margin: 25px 0 0;
			padding: 0 0 75px;
		}
		.landingpageBg{
			margin: 10px 20px;
		}		
		.landingpageBgImagem img{
			width: 35px;
		}


/*FOOTER*/
	footer .container{
		padding: 5px 0;
		display: block;
	}
	footer p{
		font-size: 10px;
		text-align: center;
		padding: 0;
	}
}