@charset 'utf-8';

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600');

* {
	box-sizing: border-box;
	font-family: 'Source Sans Pro', sans-serif;
	font: 400 14px 'Source Sans Pro', sans-serif;
	font-size: 14px;
	margin: 0;
	padding: 0;
	outline: none;
}

html,
body {
	height: 100%;
}

a,
button {
	transition:
		color .2s ease,
		background-color .2s ease,
		opacity .2s ease,
		box-shadow .2s ease;
}

.row {
    overflow: hidden; 
}

.same-height[class*="col-"] {
    margin-bottom: -99979px;
    padding-bottom: 99999px;
}

.text-left { 
	text-align: left; 
}

.text-center { 
	text-align: center; 
}

.text-right { 
	text-align: right; 
}

.no-padding {
	padding: 0;
}

.margin-top {
	margin-top: 30px;
}

.margin-bottom {
	margin-bottom: 30px;
}

h1 {
	font-size: 35px;
	font-weight: 300;
}

h2 {
	font-size: 25px;
	font-weight: 300;
}

h3 {
	font-size: 20px;
	font-weight: 300;
}

.header {
	background-color: #f29257;
	border-bottom: 1px solid rgba(0,0,0,.2);
	box-shadow: 0 2px 2px rgba(0,0,0,.4);
	padding: 20px 0;
}

.header img {
	max-height: 50px;
}

ul.menu {
	list-style: none;
	display: table;
	margin-top: 12px;
	float: right;
}

header:after {
	clear: both;
	display: 'table';
	content: '';
}

ul.menu li {
	list-style: none;
	margin-left: 20px;
	display: inline-block;
}

ul.menu li a {
	display: block;
	color: #fff;
	font-size: 16px;
	text-shadow: 0 1px 0 rgba(0,0,0,.3);
}

.sidebar {
	background-color: #ffdbba;
	color: #da834e;
	padding: 20px;
}

.main-container {
	padding: 20px;
}

.main-container > h1:first-child {
	margin-top: 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 15px;
}

.main-container img {
	border-radius: 4px;
	max-width: 100%;
}

.welcome {
	text-align: center;
	background-color: #da834e;
	padding: 45px 0 0;
}

.welcome h1 {
	margin-bottom: 40px;
	color: #FFDBBA;
}

.welcome img {
	width: 90%;
	max-width: 1074px;
}

.welcome.titulo {
	padding: 20px 0 0;
}

.intro {
	padding: 30px 10%;
	font-size: 25px;
	color: #777;
	text-align: justify;
	font-weight: 300;
}

.intro-sobre {
	font-size: 17px;
	font-weight: 300;
}

.intro-sobre-mais {
	text-align: justify;
}

.footer {
	padding: 20px;
	background-color: #f0f2f3;
	color: #777;
	border-top: 1px solid #ddd;
}

.footer .rights {
	padding-top: 28px;
}

.footer h3 {
	padding: 0 0 10px;
	margin: 0;
}

.footer .contact {
	padding-top: 10px;
}

.footer a {
	color: #f29257;
}

.footer a:hover {
	font-weight: bold;
}

.footer .gip {
	padding-top: 27px;
}

.sidebar-menu {
	list-style: none;
	display: block;
	margin: 0;
	padding: 0;
}

.sidebar-menu li {
	list-style: none;
	display: block;
}

.sidebar-menu li a {
	font-size: 15px;
	display: block;
	text-decoration: none;
	color: #da834e;
	cursor: default;
}

.sidebar-menu li a[href] {
	color: #f29257;
	cursor: pointer;
}

.sidebar-menu li.active > a[href] > span {
	font-weight: bold;
	background-color: rgba(255,255,255,.3);
	border-radius: 4px;
	padding: 1px 5px;
	display: block;
}

.sidebar-menu li.level-1 > a {
	margin-bottom: 5px;
}

.sidebar-menu li.level-1 > a span {
	padding: 0;
	font-size: 18px;
	text-decoration: none;
}

.sidebar-menu li.level-2 > a {
	padding-left: 0;
	margin-bottom: 5px;
}

.sidebar-menu li.level-2 > a:before,
.sidebar-menu li.level-3 > a:before,
.sidebar-menu li.level-4 > a:before  {
	content: '\f152';
    font-family: FontAwesome;
    margin-right: 5px;
    float: left;
    margin-left: 5px;
    margin-top: 3px;
}

.sidebar-menu li.level-3 > a {
	padding-left: 15px;
	margin-bottom: 5px;
}

.sidebar-menu li.level-4 > a {
	padding-left: 30px;
	margin-bottom: 5px;
}

@media(max-width: 480px)
{
	.text-left,
	.text-right {
		text-align: center;
	}

	h1,
	h2,
	h3 {
		text-align: center;
	}

	.header {
		text-align: center;
		padding-top: 25px;
	}

	ul.menu {
		margin-top: 30px;
		margin-bottom: 0;
		display: block;
		float: none;
	}

	ul.menu li {
		float: none;
		margin: 0 10px;
	}

	.footer .rights {
		padding-top: 20px;
	}
}