* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Open Sans";
}

/** Boot CSS **/

html,body {
	overflow-x: hidden;
	height: 100%;
}

img {
	width: 100%;
	max-width: 400px;
}

input {
	border: 0;
}

.center {
	max-width: 1280px;
	padding: 0 2%;
	margin: 0 auto;
}

.w33 {
	width: 33.3%;
	padding: 0 10px;
}

.w50 {
	padding: 0 10px;
	width: 50%;
}

.left {
	float: left;
}

.right {
	float: right;
}

.clear {
	clear: both;
}

.text-center{
	text-align: center;
}

/** Estilização do site **/

.sendMail{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgba(0,0,0,0.5);
}

.sendMail img{
	width: 200px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.mailSuccess{
	display: none;
	position: fixed;
	top: 100px;
	right: 40px;
	background-color: #D2EAC9;
	padding: 20px 2%;
	color: #41843A;
	z-index: 999;
}

.mailError{
	display: none;
	position: fixed;
	top: 100px;
	right: 40px;
	background-color: #E7C4C4;
	padding: 20px 2%;
	color: #D03A07;
	z-index: 999;
}

header {
	padding: 20px 0;
	background-color: #3D437A;
}

header .logo {
	font-size: 25px;
	font-weight: 300;
	text-transform: uppercase;
}

.logo a {
	text-decoration: none;
	color: #FFFFFF;
}

.logo img{
	width: 200px;
	max-width: 100%;
	position: relative;
	top: 5px;
	left: 0
}

.mobile {
	display: none;
}

nav.desktop ul {
	margin-top: 6px;
	list-style-type: none;
}

nav.desktop li {
	font-weight: 300;
	font-size: 15px;
	padding: 0 30px;
	text-transform: uppercase;
	display: inline-block;
}

nav.desktop a {
	color: #FFFFFF;
	text-decoration: none;
}

section.banner-principal {
	width: 100%;
	height: 600px;
	position: relative;
}

.banner-single {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-size: cover;
	background-position: center;
}

div.overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(51,51,51,0.5);
}

section.banner-principal form {
	width: 93%;
	max-width: 600px;
	z-index: 3;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
}

section.banner-principal form h2 {
	color: white;
	font-weight: 300;
	font-size: 30px;
	text-align: center;
}

section.banner-principal form input[type=email] {
	width: 100%;
	height: 66px;
	margin-top: 10px;
	background: #FFFFFF;
	color: #333333;
	font-size: 25px;
	padding-left: 10px;
}

section.banner-principal form input[type=submit] {
	width: 100%;
	height: 66px;
	margin-top: 10px;
	background: #00C59E;
	color: #FFFFFF;
	font-size: 25px;
	cursor: pointer;
	border: 0;
}

section.descricao-autor {
	padding: 40px 0;
}

section.descricao-autor h2 {
	font-size: 28px;
	font-weight: 300;
	color: #444444;
}

section.descricao-autor img{
	width: 60px;
	height: 60px;
	display: inline-block;
	vertical-align: middle;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

section.descricao-autor p {
	font-size: 16px;
	color: #444444;
	font-weight: 300;
	margin-top: 10px;
	text-align: justify;
}

section.especialidades {
	padding: 40px 0;
	background: #E2E2E2;
}

section.especialidades h2.title {
	font-size: 30px;
	font-weight: 400;
	color: #999;
	text-align: center;
}

.box-especialidade {
	margin: 40px 0;
	padding: 0 30px;
	text-align: center;
}

.box-especialidade h3 {
	color: #404580;
	font-size: 40px;
}

.box-especialidade h4 {
	font-weight: 300;
	font-size: 25px;
	color: #BABABA;
}

.box-especialidade p {
	color: #444;
	font-size: 15px;
	margin-top: 10px;
}

section.extras {
	padding: 30px 0;
	background: #404580;
}

.depoimentos-container,.servicos-container {
	padding: 0 50px;
}

section.extras .title {
	color: #FFFFFF;
	font-weight: 300;
	font-size: 25px;
	margin-bottom: 15px;
}

.depoimento-single {
	padding: 15px 0;
	border-bottom: 1px solid #5056A0;
}

p.depoimento-descricao {
	font-size: 15px;
	color: #FFFFFF;
	font-weight: 300;
}

p.nome-autor {
	font-size: 18px;
	margin-top: 10px;
	color: #FFFFFF;
	font-weight: bold;
}

.servicos ul {
	margin: 20px 0;
	list-style-position: inside;
}

.servicos li {
	margin-bottom: 30px;
	font-size: 15px;
	color: #FFFFFF;
	font-weight: 300;
}

footer {
	background: #313462;
	padding: 30px 0;
}

footer.fixed {
	width: 100%;
	position: fixed;
	bottom: 0;
}

footer p{
	color: #FFFFFF;
	text-align: center;
	font-weight: 400;
	font-size: 15px;
}

section.erro-404 h2 {
	text-align: center;
	color: #444;
	font-weight: 400;
	font-size: 28px;
	border-top: 2px solid #444;
}

section.erro-404 p {
	margin-top: 10px;
	text-align: center;
	font-size: 16px;
	color: #444;
	font-weight: 300;
}

section.erro-404 a {
	color: #444;
}

.wraper-404 {
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	width: 100%;
	left: 50%;
	top: 50%;
	padding: 0 2%;
	max-width: 1280px;
	text-align: center;
	position: absolute;
}

#map {
	width: 100%;
	height: 400px;
}

.contato-container {
	padding: 40px 0;
	text-align: center;
}

.contato-container input[type=text] {
	margin: 8px 0;
	width: 100%;
	height: 40px;
	padding-left: 8px;
	font-size: 16px;
	color: #444;
	border: 1px solid #ccc;
	max-width: 600px;
}

.contato-container input[type=email] {
	margin: 8px 0;
	width: 100%;
	height: 40px;
	padding-left: 8px;
	font-size: 16px;
	color: #444;
	border: 1px solid #ccc;
	max-width: 600px;
}

.contato-container textarea {
	padding: 8px;
	margin: 8px 0;
	width: 100%;
	height: 120px;
	padding-left: 8px;
	font-size: 16px;
	color: #444;
	border: 1px solid #ccc;
	resize: none;
	max-width: 600px;
}

.contato-container input[type=submit] {
	width: 140px;
	height: 40px;
	background: #00C59E;
	color: #FFF;
	cursor: pointer;
}

.bullets{
	position: absolute;
	z-index: 5;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
}
.bullets span{
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin-right: 10px;
	background-color: #777;
	cursor: pointer;
}
.bullets span.active-bullet{
	background-color: #FFF;
}
/* Portal de Notícias */
section.news-header{
	width: 100%;
	padding: 40px 0;
	background-color: #333864;
}
.news-header h2{
	color: #FFFFFF;
	text-align: center;
	text-transform: uppercase;
	font-weight: normal;
}
.news-header h2:nth-of-type(1){
	font-size: 41px;
}
.news-header h2 > b{
	color: #F40B5C;
}
.news-content{
	padding: 50px 0;
}
.sidebar{
	float: left;
	width: 30%;
}
.box-content-sidebar{
	width: 100%;
	background-color: #DDDDDD;
	border-radius: 10px;
	margin-bottom: 50px;
	padding: 15px;
	color: #333864;
}
.box-content-sidebar h3{
	font-size: 18px;
	font-weight: normal;
}
.box-content-sidebar input[type=text]{
	width: 100%;
	height: 40px;
	padding-left: 8px;
	margin: 10px 0;
	border: 1px solid rgb(220, 220, 220);
}
.box-content-sidebar select{
	width: 100%;
	height: 40px;
	border: 1px solid rgb(220, 220, 220);
	padding-left: 8px;
	margin: 10px 0;
}
.box-content-sidebar input[type=submit]{
	cursor: pointer;
	background-color: #F40B5C;
	color: #FFFFFF;
	width: 115px;
	height: 35px;
	font-weight: bold;
	margin: 10px 0;
	border: 0;
}
.autor-box-portal{
	margin-top: 10px;
	text-align: center;
}
.portal-img-autor{
	width: 160px;
	height: 160px;
	display: inline-block;
	border-radius: 50%;
	margin: 20px 0;
	background-image: url("../images/Foto_prof.jpg");
	background-size: 100% 100%;
}
.autor-box-portal p{
	font-size: 14px;
	margin-top: 8px;
	font-weight: lighter;
}
.texto-autor-portal a {
	text-decoration: none;
	color: #333864;
	font-size: 14px;
}
.main-content{
	float: left;
	width: 70%;
	padding-left: 5%;
}
.header-main-content{
	color: #333864;
}
.header-main-content h2{
	font-size: 23px;
}
.header-main-content h2 > span{
	border-bottom: 3px solid #333864;
}
.noticias{
	margin: 15px 0;
	padding: 15px 0;
	border-bottom: 1px solid #cccccc;
}
.noticias h2{
	color: #646464;
	font-weight: normal;
	font-size: 22px;
}
.noticias p{
	color: #646464;
	font-size: 15px;
	margin-top: 8px;
	text-align: justify;
}
.noticias a{
	background-color: #00B95C;
	display: block;
	width: 100px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	padding: 0 4px;
	font-size: 15px;
	margin-top: 8px;
	text-decoration: none;
	color: #FFFFFF;
}
.paginacao{
	text-align: center;
}
.paginacao a{
	margin: 0 5px;
	text-decoration: none;
	color: #333864;
	border: 1px solid rgb(220, 220, 220);
	display: inline-block;
	padding: 6px 4px;
}
.paginacao a.active-page{
	background-color: rgb(220,220,220);
}
section.noticia-single{
	padding: 40px 0;
	color: #646464;
}
section.noticia-single header{
	background-color: transparent;
}
section.noticia-single h1{
	font-size: 30px;
	border-bottom: 2px solid #646464;
}
section.noticia-single article{
	margin-top: 15px;
}
section.noticia-single h2,
section.noticia-single h3{
	margin: 10px 0;
}
section.noticia-single p{
	margin: 10px 0;
}
section.noticia-single ul{
	list-style-position: inside;
}
section.noticia-single img{
	display: block;
	margin: 10px auto;
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	nav.desktop {
		display: none;
	}

	nav.mobile {
		display: block;
	}

	.botao-menu-mobile {
		font-size: 24px;
		cursor: pointer;
		color: #FFFFFF;
	}

	nav.mobile ul {
		top: 55px;
		z-index: 3;
		position: absolute;
		left: 0;
		width: 100%;
		display: none;
		text-align: center;
	}

	nav.mobile li {
		font-weight: 300;
		display: block;
		background: #FFFFFF;
		border-bottom: 1px solid #ccc;
		font-size: 17px;
		padding: 8px 0;
	}

	nav.mobile li a {
		display: block;
		color: #444;
		text-decoration: none;
	}

	img {
		float: none !important;
		display: block;
		margin: 0 auto;
	}

	.w50 {
		padding: 20px;
		width: 100%;
	}

	.w33 {
		padding: 20px;
		width: 100%;
	}

	.box-especialidade {
		padding: 40px 20px; 
		margin: 0;
	}

	.sidebar{
		width: 100%;
		float: none;
	}
	.main-content{
		width: 100%;
		float: none;
	}
}