@media only screen and (min-width: 993px) {
	.container {
		width: 85%;
	}
}

/**************************************
* INPUTS COLOR
**************************************/
input:not([type]):focus:not([readonly]),
input[type=text]:focus:not([readonly]), 
input[type=password]:focus:not([readonly]), 
input[type=email]:focus:not([readonly]), 
input[type=url]:focus:not([readonly]), 
input[type=time]:focus:not([readonly]), 
input[type=date]:focus:not([readonly]), 
input[type=datetime]:focus:not([readonly]), 
input[type=datetime-local]:focus:not([readonly]), 
input[type=tel]:focus:not([readonly]), 
input[type=number]:focus:not([readonly]), 
input[type=search]:focus:not([readonly]), 
textarea.materialize-textarea:focus:not([readonly]) {
	border-bottom: 1px solid #5292da;
	box-shadow: 0 1px 0 0 #5292da;
}

input:not([type]):focus:not([readonly])+label, 
input[type=text]:focus:not([readonly])+label, 
input[type=password]:focus:not([readonly])+label, 
input[type=email]:focus:not([readonly])+label, 
input[type=url]:focus:not([readonly])+label, 
input[type=time]:focus:not([readonly])+label, 
input[type=date]:focus:not([readonly])+label, 
input[type=datetime]:focus:not([readonly])+label, 
input[type=datetime-local]:focus:not([readonly])+label, 
input[type=tel]:focus:not([readonly])+label, 
input[type=number]:focus:not([readonly])+label, 
input[type=search]:focus:not([readonly])+label, 
textarea.materialize-textarea:focus:not([readonly])+label {
	color: #39506c;
}

@font-face {
	font-family: 'Dosis-SemiBold';
	src: url('../fonts/Dosis/Dosis-SemiBold.eot');
	src: url('../fonts/Dosis/Dosis-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Dosis/Dosis-SemiBold.woff') format('woff'),
		url('../fonts/Dosis/Dosis-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}
 
/* SHADOWS
***************************************/
.shadow {
	transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
}
.shadow:HOVER {
	box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 
				0 3px 14px 2px rgba(0,0,0,0.12), 
				0 5px 5px -3px rgba(0,0,0,0.3)
}

/* OPACITY
***************************************/
.opacity {
	opacity: 1;
	transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
}
.opacity:HOVER {
	opacity: 0.8;
}

/* ANIMATE
***************************************/
.animate {
	transition-duration: 0.3s;
	transform: scale(1);
	-webkit-transition-duration: 0.3s;
	-webkit-transform: scale(1);
	opacity: 1;
}

.animate:hover {
	transition-duration: 0.3s;
	transform: scale(1.2);
	-webkit-transition-duration: 0.3s;
	-webkit-transform: scale(1.2);
	opacity: 1;
}

/* ANIMATE INVERSE
***************************************/
.animate-inverse {
	transition-duration: 0.3s;
	transform: scale(1);
	-webkit-transition-duration: 0.3s;
	-webkit-transform: scale(1);
	opacity: 1;
}

.animate-inverse:hover {
	transition-duration: 0.3s;
	transform: scale(0.8);
	-webkit-transition-duration: 0.3s;
	-webkit-transform: scale(0.8);
	opacity: 1;
}

/* ANIMATE MINI
***************************************/
.animate-mini {
	transition-duration: 0.3s;
	transform: scale(1);
	-webkit-transition-duration: 0.3s;
	-webkit-transform: scale(1);
	opacity: 1;
}

.animate-mini:hover {
	transition-duration: 0.3s;
	transform: scale(1.03);
	-webkit-transition-duration: 0.3s;
	-webkit-transform: scale(1.03);
	opacity: 1;
}

*::-moz-selection {
	background: #39506c;
	color: #ffffff;
}

*::selection {
	background: #39506c;
	color: #ffffff;
}

/* BUTTON PERSONALIZADO
***************************************/
.btn-custom {
	background: #39506c;
}
.btn-custom:HOVER {
	background: #334861;
}
body {
	background: #edf2f6;
	background: linear-gradient(to right, #edf2f6, #f6f8fa, #edf2f6);
	color: 868686;
}
p {
	font-size: 1.15rem;
	font-weight: 300;
	color: #868686;
	line-height: 26px;
	-webkit-font-smoothing: antialiased;
}

h3.titulo,
h1.titulo {
	font-size: 2.92rem;
    line-height: 110%;
	margin: 3.3rem 0 1.168rem 0;
	font-family: Dosis-SemiBold;
	text-align: center;
	color: #39506c;
}
.pagina {
	padding-top: 135px;
}
.banner {
	margin-top: 135px;
	border-bottom: 5px solid #39506c;
}
@media screen and (max-width: 992px) {
	.pagina {
		padding-top: 77px;
	}
	.banner {
		margin-top: 77px;
	}
}

/*******************************
* HEADER
********************************/
header {
	position: fixed;
	top: 0;
	width: 100%;
	font-family: Dosis-SemiBold;
	z-index: 99;
}
header nav {
	color: #39506c;
	height: 135px;
}
header .logo {
	display: block;
	text-align: center;
	max-height: 100px;
}
header .logo img {
	max-height: 95px;
}
header a[data-activates="menu-mobile"] {
	color: #39506c;
	margin-top: 5px;
}
header .fone {
	margin-top: 25px;
	font-size: x-large;
}
header .email {
	font-size: x-large;
	text-align: right;
	margin-top: 25px;
}
header .fone > div,
header .email > div {
	font-size: x-small;
	color: #bfd4df;
	line-height: normal;
	margin-bottom: -15px;
}
header ul.menu {
	background: #39506c;
	padding-left: 20px;
	float: left;
	width: 100%;
	border-radius: 5px;
}
header > ul.menu li a {
	color: #bfd4df;
}
header > ul.menu li:last-child a {
	background: url('../images/facebook.png') center no-repeat;
	display: block;
	margin-right: 20px;
	height: 64px;
	width: 40px;
}
header > ul.menu li:last-child a:hover {
	background: url('../images/facebook.png') center no-repeat #334861;
}

header .dropdown-content {
	background: #39506c;
	position: relative;	
	padding-top: 7px;	
	background: none;
	margin-top: -7px;
	min-width: 190px;
}
header .dropdown-content li {
	background: rgba(57, 80, 108, 0.9);
}
header .dropdown-content li:hover {
	background: rgba(57, 80, 108, 1);
}
header .dropdown-content li a {
	color: #fff;
}

@media screen and (min-width: 900px) and (max-width: 1030px) {
	header > ul.menu {
		padding-left: 10px;
	}
	header > ul.menu li:last-child a {
		margin-right: 10px;
	}
	header > ul.menu li a {
		padding: 0 13px;
	}
}
@media screen and (max-width: 992px) {
	header nav {
		height: 77px;
	}
	header .logo img {
		height: 70px;
		margin-left: -48px;
	}
}

/*******************************
* BANNER
********************************/
.banner ul {
	background: rgba(57, 80, 108, 0.9);
	position: absolute;
	bottom: -20px;
	width: 410px;
	box-shadow: none;
}
.banner ul .collapsible-header {
	background: #39506c;
	color: #fff;
	border-bottom: none;
	margin-top: 1px;
}
.banner ul .collapsible-body {
	padding: 10px 30px;
}
.banner ul .collapsible-body button {
	width: 100%;
}
.banner input[type="text"],
.banner input[type="password"] {
	background: #dedede;
	border: 0;
	border-radius: 3px;
	color: #39506c;
	padding-left: 10px; 
	padding-right: 10px; 
	margin: 0 0 5px 0;
	width: calc(100% - 20px);
	font-family: Dosis-SemiBold;
	box-shadow: none;
}
.banner input[type=text]:focus:not([readonly]), 
.banner input[type=password]:focus:not([readonly]) {
	box-shadow: none;
	border: 0;
}
.banner .select-wrapper {
	width: calc(50% - 2.5px);
	float: left;
}
.banner .select-wrapper span.caret {
	z-index: 999;
	color: #39506c;
	margin-right: 10px;
}
.banner .select-wrapper ul {
	min-height: 200px;
	color: #39506c;
	background: #fff;
}
banner .dropdown-content li>a, .dropdown-content li>span {
	color: #39506c;
}
.banner .uf {
	margin-left: 5px;
}
.banner input[type=text]::-webkit-input-placeholder,
.banner input[type=password]::-webkit-input-placeholder { 
	color: #39506c;
}
.banner input[type=text]::-moz-placeholder, /* Firefox 19+ */
.banner input[type=text]:-ms-input-placeholder, /* IE 10+ */
.banner input[type=text]:-moz-placeholder { /* Firefox 18- */
	color: #39506c;
}

/**********************************************************************************
* SOLUÇÕES/SERVIÇOS */

.solucoes-home {
	background: url('../images/bg_servicos.jpg') center 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	padding: 20px 0; 
}

.solucoes-home h4 {
	font-family: Dosis-SemiBold;
	color: #5182b5;
}
.solucoes-home p {
	color: #5182b5;
}
.solucoes hr {
	display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 0.5px;
	border-color: #bfd4df;
}
.solucoes .titulo-solucao {
	height: 76px;
}
.solucoes .titulo-solucao a {
	font-family: Dosis;
	color: #5182b5;
}
.solucoes .titulo-solucao a:hover {
	font-family: Dosis;
	color: #5292da;
}

/**********************************************************************************
* DEPOIMENTOS */

.depoimentos {
	background: url('../images/bg_depoimentos.png') center 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	padding: 20px 0;
}
.depoimentos .row {
	margin-bottom: 0;
}
.depoimentos .carousel.carousel-slider .carousel-item p {
	font-size: 18px;
}
.depoimentos h4 {
    line-height: 110%;
	margin: 3.3rem 0 1.168rem 0;
	font-family: Dosis-SemiBold;
	text-align: center;
	color: #5182b5;
}

.depoimentos .carousel.carousel-slider .carousel-item {
    width: 100%;
    height: 100%;
    min-height: 200px;
    position: absolute;
    top: 0;
    left: 0;
}


/**********************************************************************************
* NOTÍCIAS */

.noticias {
	margin: 40px 0;
	overflow: hidden;
}
.noticias h4.titulo {
	margin: 40px 0 60px;
}

.noticias .card {
	box-shadow: none;
}
.noticias .card-image {
	overflow: hidden;
	height: 240px;
}

.noticias .card-content {
	height: 140px;
	padding: 20px;
}
.noticias .card-content .categoria {
	font-size: small;
	font-weight: 500;
	color: #12254a;
	margin-bottom: 5px;
}
.noticias .card-content a {
	color: #444;	
}
.noticias .card-content a:HOVER {
	color: #5292da;	
}
.noticias a.mais-noticias {
	background: #5292da; 
}

/* PESQUISA */
.noticias .pesquisa {
	position: relative;
}
.noticias .pesquisa input:not([type]), 
.noticias .pesquisa input[type=text] {
	background: #f1f1f1;
	border: 0;
	width: calc(100% - 22px);
	padding: 0 10px;
	color: #444;
	height: 3em;
	border-radius: 2px;
}
.noticias .pesquisa input[type=text]:focus:not([readonly]) {
    border-bottom: 0;
    box-shadow: none;
}
.noticias .pesquisa button {
	position: absolute;
	right: 0;
	top: 0;
	background: #39506c !important;
	height: 2.9em;
}
.noticias .select-wrapper {
	background: #f1f1f1;
}
.noticias .select-wrapper input.select-dropdown {
	padding-left: 20px;
	border: 0;
}
.noticias .select-wrapper span.caret {
	right: 20px;
	color: #666;	
}
.noticias .dropdown-content li> a, 
.noticias .dropdown-content li > span {
	color: #fff;
}
.noticias .dropdown-content li.disabled > span {
	color: #12254a;
}

/**********************************************************************************
* CONTATO */

.contato  {
	background-image: url('../images/mapa_mundi.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
.contato label {
	text-align: left;
	padding: 1px 0 0 20px;
}
.contato ::-webkit-input-placeholder { 
  color: #39506c;
}
.contato ::-moz-placeholder { /* Firefox 19+ */
  color: #39506c;
}
.contato :-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.contato :-moz-placeholder { /* Firefox 18- */
  color: #5292da;
}

.contato input:not([type]), 
.contato input[type=text], 
.contato textarea.materialize-textarea,
.contato input[type=email] {
	background: #ccc;
	margin: 5px 0 0;
	border: 0;
	width: calc(100% - 22px);
	padding: 0 10px;
	color: #5292da;
	height: 2.5em;
	border-radius: 2px;
}
.contato input[type=text]:focus:not([readonly]), 
.contato input[type=email]:focus:not([readonly]), 
.contato textarea.materialize-textarea:focus:not([readonly]) {
	border: 0;
    box-shadow: none;
}
.contato textarea.materialize-textarea {
	min-height: 100px;
	padding: 10px;
}
.contato .help-block {
	font-size: small;
	text-align: left;
	margin-left: 10px;
	color: #f7430f;
}

/**************************************
* ERRO 404
**************************************/
.error-page {
	text-align: center;
	margin: 40px 0 60px;
	color: #39506c;
}
.error-page h2 {
	font-size: 100px;		
	color: #f7430f;
	font-family: Dosis-SemiBold;
}

/**************************************
* FOOTER
**************************************/
footer {
	background: #5182b5;
	color: #fff;
	padding-top: 30px;
}
footer .fone {
	font-family: Dosis;
	font-size: xx-large;
}
footer .email {
	font-family: Dosis;
	font-size: xx-large;
	text-align: right;
}
footer .fone > div,
footer .email > div {
	font-size: small;
	margin-bottom: -10px;
}
footer hr {
	display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
	border-color: #bfd4df;
}
footer ul {
	text-align: center;
}
footer ul li {
	display: inline-block;
	margin: 10px 15px 0;
}
footer ul li a {
	color: #bfd4df;
	font-size: 16px;
	font-family: Dosis-SemiBold;
}
footer ul li a:hover {
	color: #fff;
}
footer .footer {
	background: #39506c;
	background: url(../images/celulas.png) center bottom #fff no-repeat;
	padding-top: 20px;
	height: 150px;
	color: #02498a;
}
footer .footer .fontenet {
	margin: 0;
	text-align: right;
}
footer .footer a {
	display: block;
}

@media screen and (max-width: 992px) {
	footer {
		text-align: center;
	}
	footer .footer {
		height: 190px;
	}
	footer .footer .fontenet {
		text-align: center;
		margin-top: 30px;
	}
	footer .email {
		text-align: center;
		margin-top: 20px;
	}
	footer ul li {
		background: #bfd4df;
		width: calc(51% - 20px);
		margin: 10px 20px 10px 0; 
		border-radius: 5px;  
	}
	footer ul li:nth-child(even) {
		margin: 10px 0 10px 0;   
	}
	footer ul li a {
		color: #5182b5;
		display: block;
		padding: 10px 0;
		font-size: 16px;
	}
}
@media screen and (max-width: 450px) {
	footer .email {
		font-size: x-large;
	}
}

