*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}
html,body{
	height: 100%;
}
/*Divs gerais!*/
.container{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.clear{
	clear: both;
}
/*****/

header{
	background-color: #29526D;
	padding: 10px 2% 40px 2%;
}
.logo-1{
	width: 160px;
	height: 60px;
	background-image: url(../imagens/logo1.png);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	float: left;
}
.logo-2{
	width: 160px;
	height: 60px;
	background-image: url(../imagens/logo2.png);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	float: right;
}
section.cover-form{
	width: 100%;
}
.bg{
	position: relative;
	height: 560px;
	background-image: url(../imagens/bg-form.jpg);
	background-size: cover;
	background-position: center;
}
.form-container{
	position: absolute;
	right: 30px;
	top: -2.5%;
	width: 400px;
	height: 105%;
	background-color: white;
	box-shadow: 1px 1px 2px 1px rgb(180,180,180);
}
.form-container h2{
	padding: 25px 15px;
	font-weight: normal;
	font-size: 18px;
	color: #29526D;
	background-color: rgb(230,230,230);
}
.form-container form{
	margin-top: 20px;
	padding: 15px;
}
.form-container p{
	font-size: 14px;
	color: #525252;
}
.form-wraper:not(:first-child){
	margin-top: 40px;
}
.form-wraper:last-child{
	margin-top: 20px;
}
.form-container form input[type=text]{
	width: 100%;
	border: 1px solid black;
	height: 45px;
	line-height: 45px;
	padding-left: 10px;
}
.form-container form input[type=submit]{
	background-color: #033C50;
	text-transform: uppercase;
	color: white;
	width: 100%;
	font-size: 25px;
	height: 50px;
	cursor: pointer;
	border: 0;
}
section.chamada{
	z-index: 1;
	text-align: center;
	width: 100%;
}
section.chamada .container{
	background-color: #29526D;
	padding: 70px 0 50px 0;
}
section.chamada h2{
	width: 98;
	display: inline-block;
	font-size: 28px;
	font-weight: normal;
	text-transform: uppercase;
	color: rgb(230,230,230);
}
section.chamada p{
	width: 98%;
	max-width: 700px;
	display: inline-block;
	margin-top: 10px;
	font-size: 18px;
	font-weight: normal;
	color: rgb(230,230,230);
}
.flex-mosaico{
	display: flex;
}
.item-1-mosaico{
	background-position: center;
	background-size: cover;
	width: 60%;
	min-height: 300px;
	margin-top: 2px;
}
.item-2-mosaico{
	width: 40%;
	padding: 150px 40px;
	background-color: rgb(230,230,230);
	margin-top: 2px;
}
.item-2-mosaico p{
	color: #29526D;
}
.item-3-mosaico{
	background-position: center;
	background-size: cover;
	width: 60%;
	min-height: 300px;
	margin-top: 2px;
}
.item-4-mosaico{
	width: 40%;
	padding: 150px 40px;
	background-color: #29526D;
	margin-top: 2px;
}
.item-4-mosaico p,h4{
	color: rgb(230,230,230);
	text-align: center;
}
section.final .container{
	width: 100%;
	background-color: rgb(230,230,230);
	height: auto; 
	text-align: center;
	margin-top: 2px;
	padding: 40px 50px;
}
section.final .container h3{
	text-transform: uppercase;
	font-size: 20px;
	color: #29526D;
}
section.final .container p{
	text-transform: uppercase;
	margin-top: 20px;
	font-size: 19px;
	color: #29526D;
	text-decoration-line: underline;
}
footer{
	text-align: center;
	padding: 20px 0;
}
footer img{
	width: 120px;
}
footer p{
	margin-top: 8px;
}
@media screen and (max-width: 768px){
	.flex-mosaico{
		display: block;
	}
	.item-1-mosaico{
		padding-top: 80%;
		width: 100%;
	}
	.item-2-mosaico{
		text-align: justify;
		width: 100%;
	}
	.item-3-mosaico{
		padding-top: 80%;
		width: 100%;
	}
	.item-4-mosaico{
		text-align: justify;
		width: 100%;
	}
}
@media screen and (max-width: 960px){
	.bg{
		height: auto;
		text-align: center;
		padding: 40px 0;
	}	
	.form-container{
		width: 96%;
		max-width: 400px;
		position: static;
		display: inline-block;
		height: auto;
	}
}
@media screen and (max-width: 510px){
	header{
		text-align: center;
	}
	.logo-1,.logo-2{
		display: inline-block;
		float: none;
		margin-top: 10px;

	}
}