html, body {
	height: 100%;
	/*font-family: 'Open Sans', sans-serif;*/
	font-family: 'Lato', sans-serif;
	background: #e9e9e9 url("../img/dust.png");
}

hr {
	border-top: 1px solid #7d7d7d;
}

.navbar {
	margin-bottom: 0px; /* elimina a margem */
}
.navbar-brand {	
	padding-bottom: 15px;
	padding-top: 15px;
}
.navbar-brand > img {
	height: 100%;
}

.jumbotron {
	background: #fff url("../img/banner.jpg") no-repeat center center;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	/*min-height: 300px;*/
	padding: 30px;
	margin-top: 50px; /*tamanho do navbar-fixed-top*/
	margin-bottom:0;
	color: #fff;
	position: relative;
}

.box {
	background: rgba(0,0,0,0.4);
}

.box3 {
	margin-bottom: 5px;
}

.box4 {
	padding-bottom: 20px;
}

section {
	padding-top: 80px;
}

#sobre {
	font-size: 1.1em;
}

section header {
	padding-bottom: 20px;
}

#info {
	/*background-color: #3e5c8c;*/
	background: linear-gradient(rgb(212, 17, 24), rgb(141, 8, 13));
	color: #e9e9e9;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: 50px;
}

#contato {	
	padding-bottom: 50px;
	height: auto;
}

.btn-contato {
	color: #fff;
	background-color: #555;
	border-color: #555;
}
.btn-contato:hover {
	color: #555;
	background-color: #ddd;
	border-color: #555;
}

#alerta-contato {
	display: none;
}

.msg-erro {
	display: none;
	color: #a94442;
}

footer {
	/*height: 80px;*/
	line-height: 100%;
	padding: 20px;
	background-color: #a5a5a5;
	color: #2f2f2f;
	border-top: 2px solid #7d7d7d;
	position: relative;
}

/* Tablets */
@media only screen and (min-width : 768px) {
	/* alterar a altura da navbar *	
	.navbar, .navbar-header, .navbar-brand {
		min-height: 80px;
	}
	.navbar-toggle {
		margin-top: 18px;
	}
	*/

}

/* Desktops */
@media only screen and (min-width : 992px) {
	/* alterar a altura da navbar */	
	.navbar {
		min-height: 80px;
		font-size: 15px;
	}
	.navbar-header,
	.navbar-brand,
	.navbar-text,
	.navbar-nav > li > a {
		line-height: 50px; /* min-height - padding-top e bottom (80 -(15+15))=50 */
		min-height: 80px;
	}

	/* dropdown hover sem animação *
	.dropdown:hover .dropdown-menu {
	display: block;
	}
	*/

	/* dropdown hover com animação */
	.dropdown .dropdown-menu{
		display: block;
		visibility:hidden;
		opacity: 0;

		-moz-transition:    all 400ms ease;
		-webkit-transition: all 400ms ease;
		-o-transition:      all 400ms ease;
		-ms-transition:     all 400ms ease;
		transition:         all 400ms ease;

		font-size: 15px;
	}
	.dropdown:hover .dropdown-menu {
		display: block;
		visibility:visible;
		opacity: 1;
	}

	.jumbotron {
		margin-top: 80px; /*tamanho do navbar-fixed-top*/
		height: 60%;
	}


	.box {
		position: absolute;
		bottom: 30px;
		width: 695px; /*tamanho do texto(conteudo)*/
	}

	/*section {
		height: 100%;
	}*/
}