@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900&display=swap');

* {
	margin: 0;
	padding: 0;
}

html, body {
	font-family: 'Lato', sans-serif;
	height: 100%;
}


/* Formatação Home */

div#home {
	width: 100%;
	height: auto;
	min-height: 100%;
	background-image: url(../_img/bg.png);
	background-repeat: no-repeat;
	background-position: center center;
}

div#home img {
	margin-top: 200px;
	margin-bottom: 50px;
	width: 500px;
}

div#home p {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 1.2em;
	color: #f0d49b;
}

div#home a {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 1.2em;
	color: #f0d49b;
	text-decoration: none;
}

div#home a:hover {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 1.2em;
	color: #fff;
	text-decoration: none;
}


@media (max-width: 767px) {

	div#home {
		width: 100%;
		height: auto;
		min-height: 100%;
		background-image: url(../_img/bg2.png);
		background-size: 100%;
		background-position: center right;
	}

	div#home p {
		font-size: 1.1em;
	}

	div#home img {
		width: 170px;
		margin-top: 200px;
	}

}

