.conteudoPrincipal{
	width: 1000px;
	padding: 30px 0;
	overflow: hidden;
	min-height: 300px;
	margin: 0 auto;
}
.mainTitulo{
	font-size: 36px;
	font-weight: 700;
	width: 100%;
	text-align: center;
	margin: 30px 0px;
	color:#333;
}
.separacao{
	width: 200px;
	height: 24px;
	background-image: url("../images/separacao.svg");
	background-size: contain;
	margin: 0 auto;
	margin-bottom: 20px;
}
.blocos{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 100%;
	overflow: hidden;
}
.blocoEsquerdo{
	width: 40%;
	min-height: 300px;
	background-color: #FFDF61;
	border-radius: 10px;
	padding: 30px;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
}
.footerContato{
	width: 250px;
	align-self: center;
}
.blocoDireito{
	width: 55%;
	min-height: 300px;
	overflow: hidden;
}
label{
	width: 100%;
	float: left;
	margin: 15px 0 5px 0;
}
input[type="text"], input[type="email"], input[type="file"]{
	width: 100%;
	margin-bottom: 10px;
	padding: 10px;
	background-color: #F1F1F2;
	float: left;
	border-radius: 5px;
	border: 1px solid #F1F1F2;
}

input[type="submit"]{
	width: 120px;
	margin-bottom: 10px;
	padding: 10px;
	background-color: #F1F1F2;
	float: left;
	border-radius: 5px;
	border: 1px solid #F1F1F2;
}
textarea{
	width: 100%;
	height: 100px;
	margin-bottom: 10px;
	padding: 10px;
	background-color: #F1F1F2;
	float: left;
	border-radius: 5px;
	border: 1px solid #F1F1F2;
}
/* LANDSCAPE */
@media (max-width: 1500px){
	.conteudoPrincipal{
		width: 1200px;
	}
}
@media (max-width: 1300px){
	.conteudoPrincipal{
		width: 1000px;
	}
}
@media (max-width: 1100px){
	.conteudoPrincipal{
		width: 800px;
	}
	.inicioContatoTexto{
		width: 400px;
		flex-shrink: 0;
	}
}
@media (max-width: 900px){
	.conteudoPrincipal{
		width: 700px;
	}
	.blocos{
		display: flex;
		flex-flow: column nowrap;
		flex-direction: column-reverse;
		justify-content: flex-start;
		width: 100%;
		overflow: hidden;
	}
	.blocoEsquerdo{
		width: 100%;
	}
	.blocoDireito{
		width: 100%;
	}
}
@media (max-width: 800px){
	.conteudoPrincipal{
		width: 600px;
	}
}
@media (max-width: 700px){
	.conteudoPrincipal{
		width: 500px;
	}
}
@media (max-width: 550px){
	.conteudoPrincipal{
		width: 400px;
	}
}
@media (max-width: 500px){
	.conteudoPrincipal{
		width: 300px;
	}
}