/* ====== LAND-PAGE ===== */

*{
	margin: 0;
	padding: 0;
}

html, body{
	height: 100%;
	min-height: 100%;
}

article{
	height: 100%;
}

#corpo{
	background: url("../imgs/escritorio.jpg") #000 no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}

.logo{
	display: block;
	margin: 0 auto;
	width: 200px;
	height: 200px;
	margin-bottom: 120px;
}

.emp{
	padding-top: 50px;
}

h1{
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 4em;
	text-align: center;
	color: #fff;
	margin-bottom: 140px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.5);
}

h2{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 2.5em;
	text-align: center;
	color: #fff;
	margin-top: 0;
	font-weight: 600;
}

h3{
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	font-size: 2.5em;
	text-align: center;
	color: #fff;
	margin-top: 0;
}

h4{
	display: inline-block;
	position: absolute;
	top: 210px;
	left: 0;
	right: 0;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 2.5em;
	text-align: center;
	color: #fff;
	padding: 20px;
	background: #111;
}

#ass{
	position: fixed;
	right: 0;
	bottom: 0;
	height: 100px;
	width: 250px;
}

#ass img{
	max-height: 100px;
	max-width: 250px;
	margin: 0;
	float: right;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#ass img:hover{
	-o-transform: scale(1.9);
	-moz-transform: scale(1.9);
	-webkit-transform: scale(1.9);
    -ms-transform: scale(1.9);
    transform: scale(1.9);
}


/*========== END ==========*/

/* #Media Queries

================================================== */
	@media only screen and (min-width: 960px) and (max-width: 1199px)  {

	}

	@media only screen and (max-width: 959px) {}
	@media only screen and (min-width: 768px) and (max-width: 959px) {
		h1{
			font-size: 3em;
			margin-bottom: 170px;
		}
	}

	@media only screen and (max-width: 767px) {}
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		#corpo{
			background: url("../imgs/escritorio-mobile.jpg") #000 no-repeat;
			-webkit-background-size: cover;
			background-size: cover;
			background-position: center;
		}

		h1{
			font-size: 2em;
			margin-bottom: 140px;
		}

		h2, h3{
			font-size: 1.8em;
		}

		h4{
			font-size: 2.1em;
			top: 155px;
		}

		.logo{
			max-width: 150px;
			max-height: 150px;
			margin-bottom: 120px;
		}
	}

	@media only screen and (max-width: 479px) {
		#corpo{
			background: url("../imgs/escritorio-mobile.jpg") #000 no-repeat;
			-webkit-background-size: cover;
			background-size: cover;
			background-position: center;
		}

		h1{
			font-size: 1em;
			margin-bottom: 100px;
		}

		h2, h3{
			font-size: 1.1em;
		}

		h4{
			font-size: 1.2em;
			top: 130px;
		}

		.logo{
			max-width: 120px;
			max-height: 120px;
			margin-bottom: 95px;
		}
	}



	/* #Font-Face

================================================== */

/* 	This is the proper syntax for an @font-face file

		Just create a "fonts" folder at the root,

		copy your FontName into code below and remove

		comment brackets */



/*	@font-face {

	    font-family: 'Im';

	    src: url('../fonts/impact.eot');

	    src: url('../fonts/impact.eot?iefix') format('eot'),

	         url('../fonts/impact.woff') format('woff'),

	         url('../fonts/impact.ttf') format('truetype'),

	         url('../fonts/impact.svg#webfontZam02nTh') format('svg');

	    font-weight: normal;

	    font-style: normal; }

