*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;

}
html, body{
	height: 100%;
}
.container{
	max-width: 1280px;
	margin: 0 auto;
}
.clear{
	clear: both;
}
header{
	width: 100%;
	height: 90vh;
	background-image: url('../images/baner.png');
	background-position: cover;
	/*max-height: 700px;*/
	background-size: 100%;
	background-position: center;
	padding: 10px 2%;

}
header nav{
	float: right;
}
header nav li{
	float: left;
	color: darkgray;
	margin: 0 20px;
	font-size: 25px;
}
header .logo{
	background-color: #ccc;
}
header nav ul{
	list-style-type: none;
}
.chamada-1{
	float: right;
	margin: 145px 150px;
	max-width: 600px;
}
.chamada-1 h2{
	font-size: 40px;
	color: white;
	font-weight: normal;
}
.chamada-1 p{
	color: white;
	font-size: 15px;
	margin-top: 10px;
}
section.section-1{
	width: 100%;
	height: 200px;
	background-color: rebeccapurple;
	padding: 20px 2%;
}
.texto-sessao1{
	float: left;
	color: white;
}
.texto-sessao1 h2{
	font-weight: 300;
}
.texto-sessao1 p{
	font-size: 13px;
	font-weight: 300;
}
.texto-sessao1 ul{
	list-style-position: inside;
}
.button{
	background-color: orange;
	width: 165px;
	height: 44px;
	color: black;
	cursor: pointer;
	border-radius: 20px;
	margin-top: 10px;
	text-align: center;
	font-size: 20px;
}
.section-2{
	padding-top: 80px 2%;
	text-align: center;
}
.section-2 p{
	margin-top:30px;
}
.section-3{
	width: 100%;
}
.part1{
	float: left;
	width: 50%;
	padding: 140px 0 90px 0;
	background-color: mediumpurple;
	color: white;
}
.part1 h2{
	font-style: italic;
	font-weight: 300;
	font-size: 23px;

}
.part2{
	background-color: white;
	width: 50%;
	float: left;
	padding: 140px 0 90px 0;
}
.sobre-autor{
	float: left;
	max-width: 600px;	
	padding-left: 30px;
}
.titulo-autor{
	float: left;
	width: 100%;
}
.titulo-autor h2{
	padding-right: 20px;
}
.titulo-autor .img-autor{
	float: left;
	width: 100px;
	height: 100px;
	position: relative;
	border-radius: 50px;
	top: -40px;
	right: -180px;
	background-color: green;
}
.wraper-titulo-autor{
	a
}
.img-autor{
	background-image: url('../images/thomas.jpg');
	background-position: center;
	background-size: 100% 100%;
}
.bullets{
	float: left;
	margin-top: 8px;
	width: 100%;
}
.bullets span{
	width: 16px;
	height: 16px;
	background-color: gray;
	padding-right: 8px;
	margin-right: 8px;
	border-radius: 8px;
	float: left;
}
.section-4{
	background-color: purple;
	padding: 100px 0;
}
.form{
	width: 50%;
	float: left;

}
.form h2{
	color: white;
	font-size: 23px;
	font-weight: 300;
}
.form p{
	max-width: 400px;
	font-weight: 300;
	font-size: 15px;
	color: white;
}
.form input[type="text"]{
	width: 100%;
	max-width: 480px;
	height: 58px;
	padding-left: 8px;
	line-height: 58px;
	margin-top: 5px;
}
.form form{
	margin-top: 15px;
}
.submit input[type="submit"]{
	background-color: orange;
	width: 165px;
	height: 44px;
	color: black;
	cursor: pointer;
	border-radius: 20px;
	margin-top: 10px;
	text-align: center;
	font-size: 20px;
}
.map-wraper{
	float: left;
	width: 50%;
}
.map-wraper h2{
	color: white;
	font-size: 40px;
	font-weight: normal;
}
.map{
	width: 480px;
	height: 480px;
	border: 5px solid gray;
	background-color: white;
}
footer{
	padding: 40px 0;
	background: black;
	color: white;
	text-align: center;
}

@media screen and (max-width: 768px){
	header .container li{
		float: none;
		display: block;
		text-align: center;
		font-size: 40px;
	}
	header{
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100% 100%;
	}
	.chamada-1{
		position: relative;
		top: -160px;
	}
}
@media screen and (max-width: 580px){
	.part1{
		width: 100%;
	}
	.part2{
		width: 100%;
	}
	.form{
		width: 100%;
	}
}