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

@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;
}

/**
* MY COLORS
* 
* DOURADA: #00b1c1
* MARROM: #353132
*/

/**************************************
* INPUTS COLOR
**************************************/
input:not([type]):not([readonly]), 
input[type=text]:not([readonly]), 
input[type=email]:not([readonly]), 
input[type=password]:not([readonly]), 
textarea.materialize-textarea:not([readonly]) {
	background: #ffffff;
	margin: 5px 0 0;
	height: 3.3rem;
	width: calc(100% - 22px);
	padding: 0 10px;
	color: #353132;
	border: 1px solid #353132;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

textarea.materialize-textarea:not([readonly]) {
	min-height: 100px;
	padding: 15px 10px;
}

input:not([type]):focus:not([readonly]), 
input[type=text]:focus:not([readonly]), 
input[type=email]:focus:not([readonly]), 
input[type=password]:not([readonly]), 
textarea.materialize-textarea:focus:not([readonly]) {
	border: 1px solid #00b1c1;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

form .help-block {
	color: red;
}

::-webkit-input-placeholder {
	color: #666666;
}
::-moz-placeholder {
	color: #666666;
}
:-ms-input-placeholder {
	color: #666666;
}
:-moz-placeholder { 
	color: #666666;
}

.btn-custom {
	color: #00b1c1;
	display: inline-block;
	background: #ffffff !important;
	text-align: center;
	border: 2px solid #00b1c1;
	padding: 15px 30px;
	font-weight: 500;
	transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
}
.btn-custom:HOVER {
	color: #ffffff;
	background: #00b1c1 !important;
}
.btn-custom-inverse {
	display: inline-block;
	color: #ffffff;
	background: #00b1c1 !important;
	border: 2px solid #ffffff;
	padding: 15px 40px;
	font-weight: 500;
	transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
}
.btn-custom-inverse:HOVER {
	color: #00b1c1;
	background: #ffffff !important;
	border: 2px solid #00b1c1;
}

@media screen and (max-width: 992px) {
	.btn-custom {
		width: 100%;
	}
}
 
/* SHADOWS
***************************************/
.shadow {
	transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
}
.shadow:HOVER {
	box-shadow: 0 8px 10px 1px rgba(56, 56, 56, 0.14), 
				0 3px 14px 2px rgba(56, 56, 56, 0.12), 
				0 5px 5px -3px rgba(56, 56, 56, 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);
}

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

/* 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;
}

.backdrop {
	background-color: #00b1c1;
}

*::-moz-selection {
	background: #00b1c1;
	color: #ffffff;
}

*::selection {
	background: #00b1c1;
	color: #ffffff;
}

body {
	background: #ffffff;
	color: #353132;
}
p {
	font-size: 1.2rem;
	font-weight: 300;
	color: #353132;
	line-height: 2rem;
	-webkit-font-smoothing: antialiased;
}

blockquote {
	padding-top: 10px;
	padding-bottom: 10px;
	background: #fff;
}

/** HEADER
****************************************************************/
.header {
	background: #ffffff;
}
header .row {
	margin-bottom: 0;
}
header.navbar-fixed {
	height: 70px;
}

header nav {
	background: #ffffff !important;
	height: 70px;

	box-shadow: 0 4px 4px 0 rgba(56, 56, 56, 0.14), 
				0 2px 10px 0 rgba(56, 56, 56, 0.12), 
				0 3px 2px -4px rgba(56, 56, 56, 0.2)
}
header nav ul a {
	color: #353132;
	font-family: Dosis-SemiBold;
	line-height: 70px;
}
header nav ul a:HOVER {
	color: #00b1c1;
	background: none;
}
nav a.button-collapse, 
nav a.button-collapse i {
	color: #353132;
	height: 70px;
	line-height: 70px;
}
ul#mobile-nav {
	background: #00b1c1;
}
ul#mobile-nav a,
ul#mobile-nav a i {
	color: #ffffff;
}

/* DROPDOWN */
header .dropdown-content {
	position: relative;	
	box-shadow: none;
	min-width: 190px;
	padding-top: 7px;	
	background: none;
	margin-top: 0;
}
header .dropdown-content:BEFORE {
	position: absolute;
	content: " ";
  	display: inline-block;
  	vertical-align: middle;
  	margin-right: 0px;
  	width: 0; 
  	height: 0; 
	top: 0px;
	left: 10px;
	z-index: 999;
 
  	border-left: 14px solid transparent;
  	border-right: 14px solid transparent;
  	border-bottom: 14px solid #353132;
}
header .dropdown-content li {
	min-height: auto;
	line-height: 1rem;
}
header .dropdown-content li a {
	padding: 7px 16px;
	font-weight: normal;
}
header .dropdown-content a {
	color: #ffffff;
	background: #353132;
}
header .dropdown-content a:HOVER {
	color: #00b1c1;
	background: #353132;
}

/** TITLE PAGES
****************************************************************/
.titulo {
	text-align: center;
	padding-bottom: 40px; 
}
.titulo.titulo-page {
	padding: 20px 0;
	margin-bottom: 20px;
	background: #00b1c1; 
}
.titulo h1,
.titulo h2 {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 2rem;
	line-height: 3rem;
	color: #000000;
}
.titulo.titulo-page h1 {
	color: #ffffff; 
}

/** BANNER
****************************************************************/
.banner {
	position: relative;
	margin-bottom: 0;
}
.banner.slider,
.banner.slider .slides,
.banner.slider .slides li {
	max-height: 500px;	
	background-color: #fff;
}
.banner.slider .slides li .caption {
	top: 30%;	
	z-index: 2;
}
.banner.slider .slides .caption h3 span {
	background: rgba(0, 177, 193, 0.8);
	padding: 5px 20px;
	font-weight: 400;
	color: #ffffff;
}
.banner.slider .slides .caption h5 span {
	background: rgba(0, 177, 193, 0.8);
	padding: 10px 20px;
	font-weight: 300;
	color: #ffffff;
}
.banner.slider .indicators {
    bottom: 50px;
    z-index: 9;	
}
.banner.slider .indicators .indicator-item {
	background: rgba(0, 177, 193, 0.8);
	margin: 0 5px;
}
.banner.slider .indicators .indicator-item.active {
	background: rgba(0, 177, 193, 0.3);
}

@media screen and (max-width: 600px) {
	.banner.slider,
	.banner.slider .slides,
	.banner.slider .slides li {
		max-height: 300px;	
	}
}

/*******************************
* VÍDEO
********************************/
/*
.video {
	background-image: linear-gradient(#00b1c1 60%, white 40%) ;
	padding: 1px 0 20px;
	display: block;
	position: relative;
	text-align: center;
}
.video .titulo {
	padding-bottom: 20px;
}
.video h2 {
	color: white;
}
.video video {
	box-shadow: 0 10px 12px 4px rgba(94, 64, 64, 0.3);
	width: 640px;
	height: 360px;
}
*/

	video {
		box-shadow: none;
		height: auto;
		width: 100%;
		margin: 20px 0;
	}


/** SOLUÇÕES
****************************************************************/
.solucoes .solucao {
	text-align: center;
	padding: 15px;
	border-radius: 10px;
}
.solucoes .solucao a {
	display: block;
}
.solucoes .solucao:hover {
	box-shadow: 0 8px 10px 1px rgba(56, 56, 56, 0.14), 
				0 3px 14px 2px rgba(56, 56, 56, 0.12), 
				0 5px 5px -3px rgba(56, 56, 56, 0.3);
}
.solucoes .solucao h2 {
	font-size: 18px;
	line-height: 24px;
	height: 50px;
	color: #00b1c1;
	text-transform: uppercase;
}
.solucoes .solucao p {
	color: #353132;
	display: block;
	overflow: hidden;
}

blockquote {
	border-left: 5px solid #00b1c1;
	font-size: 1.2rem;
}

/** SERVIÇOS
****************************************************************/
.servico {
	margin-bottom: 40px;
}
.servico .titulo {
	padding-bottom: 0;
	text-align: left;
}

/** CASES
****************************************************************/
.parceiro {
	border: 1px solid #ffffff;
	background: #ffffff;
	border-radius: 10px;
	display: block;
	margin-bottom: 20px;
}

@media screen and (max-width: 992px) {
	.cliente-parceiro li {
		width: 33.3%; 
	}
}
@media screen and (max-width: 600px) {
	.cliente-parceiro li {
		width: 50%; 
	}
}

/**********************************************************************************
* PRONTUÁRIO */
.prontuario {
	background: url(../images/bg_prontuario.png) center 0 no-repeat;
	padding: 0 0 80px;
	width: 100%;
	height: auto;

}
.prontuario .titulo {
	padding-bottom: 0;
}
.prontuario p {
	font-size: medium;
	font-weight: 400;
}
.prontuario a.btn-custom {
	padding: 10px 20px;
}

@media screen and (max-width: 992px) {
	.prontuario {
		background: #f4f4f4;
		padding: 20px 0 20px;
		height: auto;
	}
	.prontuario .titulo {
		text-align: center;	
	}
}

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

.noticias .noticia {
	margin-bottom: 20px;
	overflow: hidden;
}
.noticias .noticia-shadow {
	box-shadow: 0px 0px 6px 4px rgba(167, 167, 167, 0.12);
}
.noticias h4.titulo {
	margin: 40px 0 60px;
}
.noticias .noticia hr {
	border-top: 1px solid rgba(167, 167, 167, 0.12);
	margin-top: 0;
}
.noticias .noticia span {
	margin-left: 20px;
	color: #00b1c1;
	font-size: small;
}
.noticias .noticia a {
	display: block;
	font-size: 1.3rem;
	color: #353132;
	transition: all 3s;
}
.noticias .noticia a .noticia-titulo {
	padding-left: 20px;
	padding-bottom: 10px;
}
.noticias .noticia a .noticia-titulo:hover {
	color: #00b1c1;
}

/* PESQUISA */
.noticias .pesquisa {
	position: relative;
}
.noticias .pesquisa input:not([type]), 
.noticias .pesquisa input[type=text] {
	background: #f1f1f1;
	border: 0;
	margin: 0;
	width: calc(100% - 22px);
	padding: 0 10px;
	color: #353132;
	height: 3.3em;
	border-radius: 2px;
}
.noticias .pesquisa input[type=text]:focus:not([readonly]) {
    border-bottom: 0;
    box-shadow: none;
}
.noticias .pesquisa button {
	position: absolute;
	margin: 0;
	right: 0;
	top: 0;
	padding: 11px 30px;
}
.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: #2c2c2c;
}
.noticias .dropdown-content li.disabled > span {
	color: #353132;
}

.noticia {
	margin-top: 20px;
}
.noticia .imagem-capa {
	max-height: 250px;
	width: 100%;
}
.noticia h1.titulo {
	margin: 15px 0 0;
}

.noticia .compartilhar {
	border-top: 1px dashed #f1f1f1;
	border-bottom: 1px dashed #f1f1f1;
	padding: 10px 0 10px;
	overflow: hidden;
	color: #666;
	line-height: 36px;
}

.col-categorias {
	border-left: 2px solid #ddd;
	padding: 0 20px 20px;
	margin-top: 20px;
}
.col-categorias .categorias strong {
	color: #353132;
	margin-bottom: 10px;
	display: block;
}
.col-categorias .categorias a {
	display: block;
	padding: 3px 0;
	color: #00b1c1;
}
.col-categorias .categorias a:hover {
	color: #353132;
}
.col-categorias .noticias strong {
	color: #353132;
	margin-bottom: 10px;
	display: block;
}
.col-categorias .noticias {
	margin-top: 20px;
}

.col-categorias .noticias .noticia {
	padding-bottom: 15px;
	border-bottom: 1px dashed #cccccc;
}
.col-categorias .noticias .noticia img {
	width: 100%;
}
.col-categorias .noticias .noticia a {
	color: #444444;
}
.col-categorias .noticias .noticia a:hover {
	color: #00b1c1;
}
/**********************************************************************************
* PAGINATION */

ul.pagination li {
	border: 0 none;	
}
ul.pagination li a,
ul.pagination li span {
	color: #fff;
	background: #cccccc;
    display: inline-block;
    font-size: 1.2rem;
    padding: 0 15px;
    line-height: 34px;
}
ul.pagination li a:HOVER,
ul.pagination li span:HOVER {
	background: #ccc;
}
ul.pagination li.active,
ul.pagination li.active span {
	background: #00b1c1;
}

/**********************************************************************************
* CONTATO */
.contato ul.contatos {
	text-align: center;
}
.contato ul.contatos li {
	display: inline-block;
	vertical-align: middle;
}
.contato ul.contatos li:first-child div {
	background: url(../images/icone_fone.png) 5px 3px no-repeat;
	border: 2px solid #00b1c1;
	color: #00b1c1;
	font-weight: 500;
	margin-right: 10px;
	padding: 5px 10px 2px 40px;
	border-radius: 200px;
}
.contato ul.contatos li:nth-child(2) a {
	background: url(../images/icone_whatsapp.png) 2px 2px no-repeat #00da29;
	border: 3px solid #00da29;
	color: #ffffff;
	font-weight: 500;
	margin-right: 10px;
	padding: 5px 10px 3px 30px;
	border-radius: 200px;
	min-width: 400px;
}

.solicita-contato {
	background: url(../images/bg_solicitacao_contato.png) center 0 no-repeat;
	padding: 50px 0 20px;
	position: relative;
	z-index: 99;
	margin-bottom: 2px;
	display: inline-flex;
	width: 100%;
	text-align: center;
	overflow: hidden;
}
.solicita-contato a {
	width: 100%;
}

.modal-contato {
	background: #ffffff !important;
}
.modal-contato .row {
	margin-bottom: 0;
}
.modal.modal-contato h4.titulo {
	color: #000000;
	margin: 0;
	padding: 0;
	text-align: left;
	font-size: 1.7em;
    font-weight: 500;
}
.modal.modal-contato .modal-footer {
	padding: 4px 24px;
	border-radius: 0;
	background: transparent !important;
}

.modal.modal-contato .modal-footer a,
.modal.modal-contato .modal-footer button {
	margin-right: 10px;
	padding: 10px 30px;
}

/** ERROR 404
****************************************************************/
.error-page {
	text-align: center;
	margin: 100px 0;
}
.error-page h3 {
	color: #00b1c1;	
}

/** MAPA
****************************************************************/
.mapa {
	margin: 0;
	z-index: 99;
	position: relative;
}

/** FOOTER
****************************************************************/
footer {
	background: #ebeaed;
	padding-top: 20px;
}
footer ul.contatos li {
	display: inline-block;
	margin: 0 40px 0 0;
	font-size: 18px;
	font-weight: 500;
}
footer ul.contatos li span {
	font-family: 'Dosis-SemiBold';
	font-size: 14px;
}

footer ul.rs {
	text-align: right;
	margin-top: 30px;
}
footer ul.rs li {
	display: inline-block;
	margin-left: 5px;
}
footer ul.rs li a {
	display: inline-block;
	height: 30px;
}
footer hr {
	border: 1px solid #ffffff;
}
footer ul.menu {
	text-align: center;
	margin: 10px 0 0;
}
footer ul.menu li {
	display: inline-block;
	margin: 0 15px;
}
footer ul.menu li a {
	color: #666666;
	font-weight: 500;
	font-family: 'Dosis-SemiBold';
}
footer ul.menu li a:hover {
	color: #00b1c1;
}
footer .copy-by {
	background: #00b1c1;
	padding: 30px 0 1px;
	color: #ffffff;
}
footer .by {
	text-align: right;
}

footer .whatsapp-float {
	position: fixed;
	right: 40px;
	bottom: 40px;
	height: 70px;
	width: 70px;
	z-index: 9999;
}

@media screen and (max-width: 600px) {
	footer,
	footer .copy-by,
	footer ul.rs {
		text-align: center;
	} 
	footer ul.contatos li {
		width: 45%;
		margin: 0;
	}
	footer .by {
		text-align: center;
		margin-top: 20px;
	} 
	footer ul.menu li {
		display: inline-block;
		border: 1px solid #00b1c1;
		padding: 10px 0;
		width: calc(50% - 8px);
		margin: 10px 3px 0;
	}
	footer ul.menu li a {
		color: #00b1c1;
		display: block;
	}
	footer ul.menu li:hover {
		border: 1px solid #353132;
	}
	footer ul.menu li:hover a {
		color: #353132;
	}
}
