@import url('https://fonts.googleapis.com/css?family=Cabin:400,700');

html,
body {
	margin:0;
	padding:0;
	height:100%;
}

body {
	font-family: 'Cabin', sans-serif;
	font-size: 16px;
	text-rendering: optimizeLegibility;
	background: #333;
}

h1 {
	font-size: 65px;
	font-weight: bold;
}

h2 {
	font-size: 35px;
	font-weight: bold;
}

h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}

a {
	color: #00A69C;
}

a:hover {
	color: #000;
}

a.anchor {
    display: block;
    position: relative;
    top: -150px;
    visibility: hidden;
}

p {
	text-align:justify;
}

.wrapper {
	min-height: 100%;
	position: relative;
}

.alerta {
	padding: 10px;
	background: #8C0000;
	color: #FFF;
	position: relative;
	text-align: center;
}

.main {
	padding: 100px 0 65px 0;
}

.main > .background {
	background-size: cover;
	background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
	right: 0;
}

.main > .container {
	position: relative;
}

.footer {
	background: #333;
	font-size: 14px;
	color: #999;
	padding: 20px 0;

	width: 100%;
	height: 85px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.navbar {
	background: rgba(255, 255, 255, 0.4);
	transition: all 0.5s;
}

.navbar .navbar-brand > img {
	height: 50px;
	transition: all 0.5s;
}

.smallnav {
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	padding-top: 0;
	padding-bottom: 0;
}

.navbar.smallnav .navbar-brand > img {
	height: 35px;
}

.navbar .navbar-nav .nav-item > a.nav-link {
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	color: #00A69C;
	padding: 5px 10px;
	transition: all 0.2s;
	border-radius: 4px;
}

.navbar .navbar-nav .nav-item.active > a.nav-link {
	color: #333;
}

.navbar .navbar-nav .nav-item > a.nav-link:hover {
	background: #00A69C;
	color: #FFF;
}

.navbar .navbar-nav.social {
	flex-direction: row;
}

.navbar .navbar-nav.social .nav-item > a.nav-link {
	color: #333;
	text-shadow: none;
}

.navbar .navbar-nav.social .nav-item > a.nav-link:hover {
	background: transparent;
	color: #00A69C;
}

.line {
	border-bottom: 1px solid #999;
	margin: 2px 0 15px 0;
	width: 200px;
}

/*
	PAGE GENERIC
*/
.page {
	background: #FFF;
	color: #333;
	padding: 40px 20px;
	margin-bottom: 20px;
}

.page h2 {
	color: #00A69C;
	text-align: center;
	margin-bottom: 25px;
}

.page h3 {
	color: #999;
	text-align: center;
	font-size: 24px;
	margin-bottom: 0;
}

.page h4 {
	color: #666;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

.page-top {
	margin-top: 200px;
	margin-bottom: 200px;
}

.page-header {
	background: rgba(255, 255, 255, 0.4);
	color: #00A69C;
	padding: 20px;
	margin-bottom: 20px;
	display: inline-block;
	width: auto;
}

.page-header h1 {
	font-size: 48px;
}

.page-header h2 {
	font-size: 24px;
}

/*
	PAGE TRANSPARENTE
*/
.page-transparent {
	background: rgba(255, 255, 255, 0.8);
}

/*
	PAGE INVERTED
*/
.page-inverted {
	background: rgba(0, 166, 156, 0.9);
	color: #FFF;
}

.page-inverted h2 {
	color: #333;
}

.page-inverted h3 {
	font-size: 22px;
	color: #A7F3EF;
	text-align: left;
}

.page-inverted h4 {
	font-size: 30px;
	font-weight: normal;
	color: #FFF;
}

.page-inverted a {
	color: #000;
	text-decoration: underline;
}

.page-inverted b.titulo {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #A7F3EF;
}

.page-inverted button {
	background: #666;
	color: #FFF;
	font-size: 14px;
	margin-top: 5px;
	padding: 4px 6px;
	box-shadow: none;
}

/*
	PAGE DARK
*/
.page-dark {
	background: #444;
	color: #FFF;
}

.page-dark h3 {
	font-size: 32px;
	text-align: left;
	margin-bottom: 5px;
	color: #FFF;
}

.page-dark h4 {
	font-size: 16px;
	margin-bottom: 0;
	text-transform: uppercase;
	color: #FFF;
}

.page-dark b.titulo {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #A7F3EF;
}

/*
	CONTROLS
*/
.form-control {
	background: #FFF;
	color: #000;
	border: 0;
	border-radius: 4px;
}

.form-control:focus {
	background: #FFFFBF;
	color: #000;
}

.input-group-text {
	background: #666;
	color: #FFF;
	border: 0;
	border-radius: 4px;
}

.button {
	font-size: 18px;
	font-weight: bold;
	background: #00A69C;
	color: #FFF;
	padding: 10px;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.2s;
	border-radius: 4px;
	border-bottom: 4px solid #0002;
	line-height: 16px;
}

.button:hover {
	background: #000;
	color: #FFF;
	cursor: pointer;
}

.button small {
	font-size: 11px;
	line-height: 11px;
}

.required {
	color: #A00;
}

.galeria {
	border: 1px solid #CCC;
	padding: 5px;
	cursor: pointer;
}

.galeria .imagem {
	background-size: cover;
	display: block;
	width: 100%;
	height: 250px;
	cursor: pointer;
}

.galeria .overlay {
	bottom: 100%;
	left: 0;
	right: 0;
	background-color: rgba(200, 200, 200, 0.8);
	overflow: hidden;
	width: 100%;
	height:0;
	transition: .5s ease;
}

.galeria:hover .overlay {
	bottom: 0;
	height: 100%;
}

.galeria .titulo {
	white-space: nowrap;
	color: white;
	font-size: 22px;
	font-weight: bold;
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-shadow: 1px 1px 2px #333;
}

.foto {
	border: 1px solid #CCC;
	padding: 5px;
	transition: .5s ease;
	cursor: pointer;
}

.foto:hover {
	background: #EEE;
}

.foto a {
	color: #000;
	text-decoration: none;
}

.foto .imagem {
	background-size: cover;
	width: 100%;
	height: 200px;
}

.foto .titulo {
	margin-top: 5px;
	text-align: center;
	text-transform: uppercase;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 575px) {
	.main {
		padding: 100px 10px 140px 10px;
	}

	.footer {
		height: 140px;
	}

	.nav-item {
		margin-top: 5px;
		margin-bottom: 5px;
	}
}