/*versao Site SDM 0.01*/
body {
	font-family: Nunito, sans-serif;
	color: #1c1c1c;
}

h1, h2, h3 {
	font-family: Asap, sans-serif;
	color: #35556D;
}

.botao {
	color: #FFFFFF;
	text-decoration: none;
	padding: 10px 30px;
	background-color: #35556D;
	font-size: .9em;
	border-radius: 3px;
}

/* Navegação */

nav {
		display: flex;
		flex-direction: column;
		align-items: center;
		background-color: #35556D
}

nav > a {
	text-decoration: none;
	color: #FFFFFF;
	font-weight: 800;
	font-size: 32px;
	font-family: Yellowtail, serif;
}

nav ul {
		display: flex;
		flex-direction: column;
		align-items: center;
		list-style: none;
		padding: 0;
		width: 100%
}

nav ul li {
		text-align: center;
		width: 100%;
}

nav ul li a {

		display: inline-block;
		padding: 10px 0;
		width: 100%;
		text-decoration: none;
		color: #FFFFFF;
}

/*Cabeçalho*/

header	{
		display: flex;
		flex-direction: column;
		align-items: center;
		background-image: url("../img/grama.jpg");
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		color: #FFFFFF;
		text-align: center;
		padding: 20px;
}

header h1 {

		color:	#FFFFFF;
}

header p{

	margin-bottom: 2em;
}

#sobre {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 10px 10px 20px	20px;
	background-color: #35556D;
	color: #FFFFFF;
}

#sobre h2{

	color: #FFFFFF;
}

#sobre p {

	margin-bottom: 2.5em;
	max-width: 1000px;
}

#sobre .botao {

	background-color: #f1f1f1;
	color: #1c1c1c;

}

/*Serviços*/

#servicos {

	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px;
}

#servicos div {

	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-top: 30px;
}

/*Empresa*/

#empresa  h2 {

	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 20px;
}

#empresa h2 {

	margin-bottom: 20px;
}

#empresa img {
	width: 100%
	
}

#contato {

		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 20px;

}
#contato h2{

	color: #35556D;
}

/*rodapé*/

footer {

	text-align: center;
	padding: 10px;
	background-color: #35556D;
	color: #FFFFFF;
}

footer a {

	text-decoration: none;
	color: #00FFFF;
}

@media screen and (min-width: 768px) {

	/*nav*/

	nav {

			flex-direction: row;
			justify-content: space-around;
	}

	nav ul{

		flex-direction: row;
		width: 70%;
	}

	/*Cabeçalho*/

	header {
			height: 600px;
			height: 60vh;
			justify-content: center;

	}

	/*Sobre*/

	#sobre{
		height: 250px;
		height: 30vh;
		justify-content: center;
		min-height: 250px;
	}

	/*Serviços*/

	#servicos {
			flex-direction: row;
			flex-wrap: wrap;
			align-items: flex-start;
			max-width: 1000px;
			margin: 0 auto;

	}

	#servicos h2 {
				text-align: center;
				width: 100%

	}

	#servicos div {
				flex-grow: 1;
				flex-basis: 150px;
				padding: 0 10px;

	}

	/*Empresa*/

	#empresa {
		flex-direction: row;
		flex-wrap: wrap;

	}

	#empresa h2 {
			width: 100%;
			text-align: center;
	}

	#empresa img {
			width: 50%;

	}
	


	/*Contato*/

	#contato {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
		max-width: 500px;
		margin: 0 auto;

	}

	#contato h2, #contato p {

		width: 100%;

	}
}

