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

/*
	azul: #002c47
	verde: #a6cf39
*/

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

/**********************************************************************************
* FORMS */

input:not([type]):not([readonly]), 
input[type=text]:not([readonly]), 
input[type=email]:not([readonly]), 
input[type=password]:not([readonly]), 
.select-wrapper input.select-dropdown,
textarea.materialize-textarea:not([readonly]) {
	background: #f1f4f8;
	margin: 10px 0 0;
	width: calc(100% - 22px);
	padding: 0 10px;
	height: 3em;
	border-radius: 2px;
	border: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
textarea.materialize-textarea {
	min-height: 100px;
	padding: 10px;
}
input:not([type]):focus:not([readonly]), 
input[type=text]:focus:not([readonly]), 
input[type=email]:focus:not([readonly]), 
input[type=password]:not([readonly]), 
.select-wrapper input.select-dropdown,
textarea.materialize-textarea:focus:not([readonly]) {
	border: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
input:not([type]).validate+label, 
input[type=text].validate+label, 
textarea.materialize-textarea+label,
input[type=email].validate+label {
    width: calc(100% - 40px);
    margin-left: 20px;
}

input:-internal-autofill-selected {
	background: #ffffff !important;
}

.select-wrapper.invalid > input.select-dropdown {
	border-bottom: 1px solid #F44336 !important;
	box-shadow: 0 1px 0 0 #F44336 !important;
}
.dropdown-content li > a, 
.dropdown-content li> span {
		color: #666;
}
.dropdown-content li:hover, 
.dropdown-content li.active, 
.dropdown-content li.selected {
    background-color: #eee;
		background: #f2f4f8;
}


.btn-custom {
	background-color: #002c47;
}
.btn-custom:hover {
	background-color: #00131f;
}

form .help-block {
	font-size: small;
	font-weight: 500;
	color: #ff0000;
}

/* DROP-ZONE
***************************************/
.drop-zone .dropify-wrapper {
	height: 130px;
	border-style: dashed;
	border-color: #ccc;
}
.input-field.drop-zone {
	margin-top: .5rem;
}
.drop-zone label {
	padding-left: 15px;
}
.drop-zone .dropify-wrapper .dropify-message p {
	text-align: center;
}

/* 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: #a6cf39;
	color: #ffffff;
}
*::selection {
	background: #a6cf39;
	color: #ffffff;
}

/* BUTTON PERSONALIZADO
***************************************/
.btn-custom {
	background: #002c47,;
}
.btn-custom:HOVER {
	background: #00131f;
}

.btn-verde {
	background: #a6cf39;
}
.btn-verde:hover {
	background: #84b10a;
}

body {
	background: #fff;
	color: 868686;
}
p {
	font-size: 1.15rem;
	font-weight: 300;
	color: #868686;
	line-height: 26px;
	-webkit-font-smoothing: antialiased;
}

h3.titulo,
h1.titulo,
h4.titulo {
	font-family: Dosis-SemiBold;
    line-height: 110%;
	margin: 1.46rem 0 1.168rem 0;
	text-align: center;
}
h1.titulo {
	font-size: 2.8rem;
	background: #f1f4f8;
	padding: 30px 0;
	margin: 4px 0 1.168rem 0;
}
h3.titulo {
	font-size: 2rem;
}
h4.titulo {
	font-size: 1.5rem;
}

/* HEADER
***************************************/
header {
	border-top: 5px solid #f1f4f8;
}
header .row {
	margin-bottom: 0;
}
header ul.links-topo {
	text-align: right;
	margin-top: 40px;
}
header ul.links-topo li:nth-last-child(1n+2) {
	margin-left: 10px;
}
header ul.links-topo li:first-child {
	margin-left: 0;
}
header ul.links-topo li {
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}
header ul.links-topo li.fone,
header ul.links-topo li.whatsapp {
	padding: 0 0 0 35px;
	font-weight: 500;
	line-height: 18px;
	font-style: oblique;
	color: #002c47;
}
header ul.links-topo li.fone {
	background: url(../images/fone.png) 0 3px no-repeat;
	background-size: 30px;
}
header ul.links-topo li.whatsapp {
	background: url(../images/whatsapp.png) 0 3px no-repeat;
	background-size: 30px;
	margin-right: 50px;
}
header ul.links-topo li.whatsapp a {
	color: #002c47;
}
header ul.links-topo li.whatsapp a:hover {
	color: #999999;
}
header ul.links-topo li a {
	display: block;
}
header ul.links-topo a.facebook img,
header ul.links-topo a.instagram img {
	display: block;
	width: 30px;
}
header ul.links-topo a.facebook img:hover,
header ul.links-topo a.instagram img:hover {
	opacity: .8;
}

@media screen and (min-width: 1100px) {
	header ul.links-topo li:nth-last-child(1n+2) {
		margin-left: 30px;
	}
}

/* NAV */
header nav {
	background: #002c47;
}
header nav a:hover {
	color: #a6cf39;
}
header nav .nav-wrapper i {
	margin-right: 5px;	
}
header nav, 
header nav .nav-wrapper i {
	height: 55px;
	line-height: 55px;
}
header nav a.button-collapse, 
header nav a.button-collapse i {
	color: #002c47;
}

/* 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 #a6cf39;
}
header .dropdown-content li {
	min-height: auto;
	line-height: 1rem;
}
header .dropdown-content li a {
	padding: 5px 16px;
}
header .dropdown-content a {
	color: #fff;
	background: #a6cf39;
}
header .dropdown-content a:HOVER {
	color: #002c47;
	background: #a6cf39;
}
header nav .button-collapse a,
header nav .button-collapse a:hover {
	color: #002c47
}

ul#menu-mobile {
	background: #002c47;
}
ul#menu-mobile li:last-child {
	background: #a6cf39;
}
ul#menu-mobile a {
	color: #ffffff;
}

@media screen and (max-width: 992px) {
	header nav {
		background: #ffffff;
	}
}

/** BANNER
********************************/
.slider,
.slider .slides,
.slider .slides li {
	max-height: 450px;	
}
.slider .slides li .caption {
	top: 20%;	
	z-index: 2;
}
.slider .slides .caption h3,
.slider .slides .caption h5 {
	margin: 0;
	overflow: hidden;
}
.slider .slides .caption h3 span {
	background: rgba(0,44,71,.9);
	font-size: 2rem;
	display: inline-block;
	padding: 10px 20px;
}
.slider .slides .caption h5 span {
	background: rgba(166,207,57,.9);
	font-size: 1.3rem;
	display: inline-block;
	padding: 10px 20px;
}
.slider .indicators {
    bottom: 20px;
    z-index: 9;	
}
.slider .indicators .indicator-item {
	background: rgba(166,207,57,.9);
	margin: 0 5px;
}
.slider .indicators .indicator-item.active {
	background: rgba(0,44,71,.9);
}

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

/** SEGUROS
**************************************/
ul.lista-seguros li {
	float: left;
	width: 50%;
	height: 190px;
	overflow: hidden;
	display: block;
	padding: 30px 30px;
	background: url(../images/pontilhado.png) 0 bottom repeat-x;
}
ul.lista-seguros li:nth-child(2n+1) {
	background:  url(../images/pontilhado.png) 0 bottom repeat-x,
				 url(../images/pontilhado.png) right 0 repeat-y;
}
ul.lista-seguros li:nth-last-child(-n+2) {
	background: none;
}
ul.lista-seguros li:nth-last-child(2) {
	background: url(../images/pontilhado.png) right 0 repeat-y;
}
ul.lista-seguros li img {
	float: left;
	margin-right: 10px;
}
ul.lista-seguros a .titulo-seguro {
	color: #002c47;
	margin-bottom: 5px;
	font-size: 1.2rem;
	font-weight: 500;
}
ul.lista-seguros a .descricao-seguro {
	color: #999;
}
ul.lista-seguros a .descricao-seguro:hover {
	color: #a6cf39;
}

.seguro,
.seguro .card,
.seguro .card .card-image {
	overflow: hidden;
	cursor: pointer;
}
.seguro .card .card-image .card-title {
	background: rgba(166,207,57,.9);
	padding: 0 20px;
	bottom: 10px;
	left: 10px;
}
.seguro .card .card-image:hover img {
	transition-duration: 0.5s;
	transform: scale(1.2);
}
.seguro .card .card-image a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
}

@media screen and (max-width: 992px) {
	ul.lista-seguros li {
		text-align: center;
		height: 280px;
	}
	ul.lista-seguros li img {
		float: none;
	}
}
@media screen and (max-width: 600px) {
	ul.lista-seguros li:nth-child(2n+1),
	ul.lista-seguros li {
		background:  url(../images/pontilhado.png) 0 bottom repeat-x;
		width: 100%;
		height: auto;
	}
}

/** SEGURADORAS
**************************************/
.seguradoras .seguradora {
	border: 1px solid #bfd2eb;
	background: #ffffff;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 20px;
	overflow: hidden;
	transition-duration: 0.5s;
}
.seguradoras .seguradora:hover {
	border: 1px solid #002c47;
}
.seguradoras .seguradora img {
	max-width: 260px;
	max-height: 130px;
}

/** ERRO 404
**************************************/
.error-page {
	text-align: center;
	margin: 40px 0 60px;
}
.error-page h2 {
	font-size: 100px;		
}


/**********************************************************************************
* OUVIDORIA */

.ouvidoria ul.contatos {
	text-align: center;
}
.ouvidoria ul.contatos li {
	display: inline-block;
	vertical-align: middle;
}
.ouvidoria ul.contatos li img {
	max-width: 30px;
	max-height: 30px;
}
.ouvidoria ul.contatos li:first-child div {
	background: url(../images/icone_telefone_contato.png) 5px 3px no-repeat;
	border: 2px solid #002c47;
	color: #002c47;
	font-weight: 500;
	margin-right: 10px;
	padding: 5px 10px 2px 40px;
	border-radius: 200px;
}
.ouvidoria 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 40px;
	border-radius: 200px;
}

.ouvidoria hr {
	margin: 1.25rem 0 1rem 0;
	border: 1px solid #f1f4f8;
}


/** FOOTER
***************************************/
footer {
	background: #002c47;
}

/*FOOTER CONTATOS*/
footer .footer-contatos {
	background: #012237;
}
footer .footer-contatos ul li {
	display: inline-block;
	margin-right: 38px;
	color: #a6cf39;
	padding: 0 0 0 35px;
	line-height: 18px;
	font-style: oblique;
}
footer .footer-contatos ul li:last-child {
	margin-right: 0;
}
footer .footer-contatos ul li a {
	color: #a6cf39;
}
footer .footer-contatos ul li a:hover {
	color: #999999;
}
footer .footer-contatos ul li.fone {
	background: url(../images/fone.png) 0 3px no-repeat;
}
footer .footer-contatos ul li.whatsapp {
	background: url(../images/whatsapp.png) 0 3px no-repeat;
}
footer .footer-contatos ul li.email {
	background: url(../images/email.png) 0 3px no-repeat;
}
footer .footer-contatos .chat {
	margin-top: -20px;
}

/*FOTER MENUS*/
footer .logo {
	margin-top: 70px;
}
footer .logo img {
	max-width: 130px;
}
footer .menus ul {
	float: right;
	margin-left: 58px;
}
footer .menus ul.institucional {
	margin-left: 0;
}
footer .menus ul li {
	margin-bottom: 5px;
}
footer .menus ul li h6 {
	color: #999999;
	margin-bottom: 15px;
}
footer .menus ul li a {
	color: #ffffff;
}
footer .menus ul li a:hover {
	color: #999999;
}

.btn-whatsapp {
	position: fixed;
	display: block;
	height: 110px;
	padding: 0;
	bottom: 60px;
	right: 20px;
	z-index: 99;
	transition: all .3s;
}

/*FOTER COPY AND BY*/
footer .copy-by {
	background: url(../images/pontilhado_footer.png) 0 0 repeat-x;
	padding-top: 20px;
	color: #999999;
}
footer .by {
	text-align: right;
}

@media screen and (min-width: 1200px) {
	footer .menus ul {
		margin-left: 100px;
	}
}

@media screen and (max-width: 992px) {
	footer .footer-contatos ul li {
		margin-right: 10px;
	}
	footer .footer-contatos ul li:nth-child(2) {
		margin-right: 0;
	}
	footer .logo {
		text-align: center;
		margin: 15px 0;
	}
	footer .menus ul {
		float: none;
		margin: 10px 0;
	}
	footer .menus ul li {
		display: inline-block;
		padding: 10px 0;
		text-align: center;
		background: #012237;
		width: calc(50% - 10px);
	}
	footer .menus ul li a {
		display: block;
	}
	footer .menus ul li:nth-child(2n) {
		margin-right: 15px;
	}
	footer .copy-by,
	footer .by {
		text-align: center;
	}
	footer .by {
		margin-top: 20px;
	}
}