/* ==========================================================================
       CSS RESET
   ========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, th {margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; font-weight:normal;}
body {line-height: normal;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none;}
:focus {outline: 0;}
ins {text-decoration: none;}
del {text-decoration: line-through;}
table { border-collapse: collapse; border-spacing: 0;}
header , footer , article , aside , nav , section {display:block}
img {margin:0; padding:0;}
a {text-decoration:none;}
input {margin:0; padding:0; border:none;}

/* ==========================================================================
       NORMATIZAÇÃO CSS
   ========================================================================== */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img,
picture,
video,
embed {
    max-width: 100%;
}

.clearfix:before,
.clearfix:after {
    content: " "; 
    display: table; 
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

a {
	text-decoration:none;
	display:block;
}

br {
	clear:both;
}

/* ==========================================================================
      ESTRUTURA GERAL
   ========================================================================== */
/* CENTRALIZA */
.center {
	margin:0 auto;
	max-width:1200px;
}

/* LEFT */
.left {
	float:left;
}

/* RIGHT */
.right {
	float:right;
}

/* ROW */
.row {
	width:100%; 
	display:table; 
}

/* COLS 2 A 6 */
.col-2 {
	float:left;
	width:48%;
	margin-right:4%;
	/*width:49%;
	margin-right:2%;*/
	margin-bottom:25px;
	position:relative;
}

.col-3 {
	float:left;
	width:32%;
	margin-right:2%;
	margin-bottom:25px;
}

.col-4 {
	float:left; 
	width:21.5%;
	margin-right:4%;
	margin-bottom:25px;
}

.col-5 {
	float:left; 
	width:18.4001109%;
	margin-right:2%;
	margin-bottom:25px;
}

.col-6 {
	float:left; 
	width:15%;
	margin-right:2%;
	margin-bottom:25px;
}

.col-2:nth-child(2n) {
	margin-right:0;
}

.col-3:nth-child(3n) {
	margin-right:0;
}

.col-4:nth-child(4n) {
	margin-right:0;
}

.col-5:nth-child(5n) {
	margin-right:0;
}

.col-6:nth-child(6n) {
	margin-right:0;
}

/* CONTENT */
.content {
	width:66%;
	margin-bottom:25px;
}

/* SIDEBAR */
.sidebar {
	width:30%;
	margin-bottom:25px;
}

/* HR */
hr {
	margin:25px 0 20px 0; 
	border-top:solid 1px #e1e1e1; 
	border-bottom:none;
	clear:both;
}

/* SÓ MOBILE */
.mobile-on {
	display:none;
}

/* ==========================================================================
      BODY
   ========================================================================== */
body {
	font-family: 'Raleway', sans-serif; 
	font-size:13px;
	background:#fff;
}

/* ==========================================================================
      HEADER
   ========================================================================== */
header {
	width:100%;
	display:table;
	padding-top:45px;
	-webkit-transition: all .60s ease; -moz-transition: all .60s ease; 
	-ms-transition: all .60s ease; -o-transition: all .60s ease; 
	transition: all .60s ease;
}
	/* FIXAR HEADER NO TOPO */
	#menuHeader {
		position: relative;
	}
	.menu-fixo  {
		position:fixed !important;
		/*position:absolute;*/
		padding:20px 0 10px 0;
		top: 0;
		z-index: 99;
		background:url(../img/header-fixo-bg.png) repeat;
		-webkit-transition: all .60s ease; -moz-transition: all .60s ease; 
		-ms-transition: all .60s ease; -o-transition: all .60s ease; 
		transition: all .60s ease;
	}
	
	.header-logo {
		float:left;
		display:table;
	}
		.header-logo h1 {
			width:180px; 
			height:40px; 
			background:url(../img/header-logo-diamond-blindagens.png) center left no-repeat; 
			cursor:default; 
			display:block; 
			text-indent:-9999px; 
			position:relative; 
			z-index:9999;
			margin-bottom:15px;
		}
		
	.header-fone {
		float:right;
		margin:0 0 0 80px;
		padding:0 0 5px 30px;
		background-image:url(../img/ico-fone-white.png);
		background-size:25px;
		background-position:0 2px;
		background-repeat:no-repeat;
		font-family:'Open Sans', sans-serif;
		font-weight:bold;
		font-size:20px;
		text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);
		color:#FFFFFF;
	}
		.header-fone span {
			font-weight:bold;
			font-size:15px;
		}
		.menu-fixo .header-fone {
			margin-top:5px;
		}	

/* ==========================================================================
       NAV (MENU)
   ========================================================================== */
/* NAV */
nav {
	width:100%;
	height:54px;
}

/* MENU PRINCIPAL */
.menu {
	float:right;
}

.menu-fixo .menu {
	margin-top:5px;
}

.menu ul li {
    display: inline-block; 
	position:relative;
	padding:0 20px 0 0;
}
.menu ul li:last-child {
	padding-right:0;
}

.menu ul li a {
	text-decoration:none;
    font-size: 15px;
	font-weight:500;
	color: #FFF;
	display:block;
	padding:7px 0 5px 16px;
	text-transform:uppercase;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	background:url(../img/ico-list.png) left no-repeat;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 1);
}
	.menu ul li a:hover, 
	.menu ul li a:active {
		color:#03E3DC;
		-webkit-transition: all .2s ease;
		-moz-transition: all .2s ease;
		-ms-transition: all .2s ease;
		-o-transition: all .2s ease;
		transition: all .2s ease;
	}

/* APARECER SUBMENU */
.menu ul li:hover ul {
	opacity: 1; 
	visibility: visible;
} 

/* SUBMENU */
.menu ul li ul {
	opacity: 0; 
	visibility: hidden; 
	-webkit-transition: visibility 0.2s linear, opacity 0.2s linear; 
	-moz-transition: visibility 0.2s linear, opacity 0.2s linear; 
	-o-transition: visibility 0.2s linear, opacity 0.2s linear;	
	position: absolute; 
	z-index: 2; 
	width:300px;
	height:auto; 
	padding:0 15px 10px 10px; 
	left:0;
	top:40px;  
	background-color:#000000;
	opacity:0.65;
	-moz-opacity: 0.65;
	filter: alpha(opacity=65);
	/*box-shadow: 0px 0px 7px 1px #BCBCBC; 
	-webkit-box-shadow: 0px 0px 7px 1px #BCBCBC; 
	-moz-box-shadow: 0px 0px 7px 1px #BCBCBC;*/
}

.menu ul li ul li {
	display:block;
	border-bottom:solid 1px #333;
	padding-left:10px;
}

.menu ul li ul li:last-child {
	border:none;
}

.menu ul li ul li:hover {
	display:block; 
	-webkit-transition: all .60s ease; 
	-moz-transition: all .60s ease; 
	-ms-transition: all .60s ease; 
	-o-transition: all .60s ease; 
	transition: all .60s ease;
}

.menu ul li ul li a {
	text-decoration:none; 
	color:#FFF; 
	font-size:14px; 
	display:block; 
	padding:18px 0 20px 15px;
	background-position:0 20px;
	border-bottom:none;
}

.menu ul li ul li a:hover {
	color:#03E3DC;
	border-bottom:none;
}

/* MENU MOBILE */
#menu-mobile {
	margin:15px 0 0 0;
	display:none; 
	width: 100%;
    color: #ffffff;
	background:#000000;
	position:absolute;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}

#menu-mobile ul,
#menu-mobile ul li,
#menu-mobile ul li a {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#menu-mobile ul ul {
	display: none;
	background: #000;
	padding:0 20px;
	position:relative;
	z-index:9999;
}
.align-right {
	float: right;
}
/* ESTILO DO PRIMEIRO ITEM (MENU) */
#menu-mobile > ul > li > a {
	padding: 17px 0 15px 32px;
	cursor: pointer;
	z-index: 2;
	font-size: 18px;
	font-weight:300;
	text-transform:uppercase;
	text-decoration: none;
	margin:0 auto 0 20px;
	color: #ffffff;
	display:block;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
	background: url(../img/nav-menu.png) left no-repeat;
}
#menu-mobile > ul > li.active > a,
#menu-mobile > ul > li.open > a {
	background: url(../img/nav-menu.png) left no-repeat;
}
#menu-mobile ul ul li a {
	cursor: pointer;
	border-bottom: 1px solid #333;
	padding: 17px 20px 14px 25px;
	z-index: 1;
	text-decoration: none;
	text-transform:uppercase;
	font-size: 15px;
	font-weight:normal;
	color: #FFF;
	/*text-align:center;*/
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
#menu-mobile ul ul li:hover > a,
#menu-mobile ul ul li.open > a,
#menu-mobile ul ul li.active > a {
	color: #ffffff;
	/*text-align:center;*/
}
#menu-mobile ul ul li:first-child > a {
	box-shadow: none;
}
#menu-mobile ul ul ul li a {
	background:#000;
	color:#83CCCF;
	font-size:13px;
}
#menu-mobile ul ul ul li a:nth-child(even) {
	background:#000000;
}
#menu-mobile ul ul ul li a:hover {

}
#menu-mobile ul ul ul li:first-child > a {
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
#menu-mobile > ul > li > ul > li:last-child > a,
#menu-mobile > ul > li > ul > li.last > a {
	border-bottom: 0;
}
#menu-mobile > ul > li > ul > li.open:last-child > a,
#menu-mobile > ul > li > ul > li.last.open > a {
	border-bottom: 1px solid #32373e;
}
#menu-mobile > ul > li > ul > li.open:last-child > ul > li:last-child > a {
	border-bottom: 0;
}
#menu-mobile ul ul li.has-sub > a::after {
	display: block;
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	right: 20px;
	z-index: 10;
	top: 14px;
	background:url(../img/ico-mais.png) right no-repeat;
}
#menu-mobile ul ul li.active > a::after,
#menu-mobile ul ul li.open > a::after{
	background:url(../img/ico-menos.png) right no-repeat;
}


/* ==========================================================================
      HOME
   ========================================================================== */
.home-bg {
	background-image:url(../img/body-bg.jpg); 
	background-position:center;
	background-repeat:no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	height:785px;
}

.home-txt h2 {
	font-size:35px;
	font-weight:600;
	color:#FFFFFF;
	margin:50px 0 0 0;
	text-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
}
	.home-txt h2 span {
		color:#03E3DC;
		font-weight:600;
	}
	.home-txt article {
		margin:20px 0;
		color:#FFFFFF;
		font-size:19px;
		max-width:650px;
		line-height:26px;
	}
	.home-txt article span {
		color:#03E3DC;
		font-weight:600;
	}
	.home-txt article a {
		display:inline;
		color:#FFFFFF;
	}
	.home-txt p {
		font-size:25px;
		color:#03E3DC;
		font-weight:600;
	}
	.botao {
		background:#000000 url(../img/ico-list.png) 20px 20px no-repeat;
		border:solid 2px #FFF;
		padding:13px 25px 13px 40px;
		text-align:center;
		color:#FFFFFF;
		font-size:22px;
		display:table;
		margin:50px 0;
		-webkit-transition: all .60s ease; -moz-transition: all .60s ease; 
		-ms-transition: all .60s ease; -o-transition: all .60s ease; 
		transition: all .60s ease;
	}
	.botao:hover {
		border-color:#21898F;
		-webkit-transition: all .60s ease; -moz-transition: all .60s ease; 
		-ms-transition: all .60s ease; -o-transition: all .60s ease; 
		transition: all .60s ease;
	}
	
.home h2 {
	font-size:35px;
	text-align:center;
	font-weight:600;
	border-bottom:solid 1px #e1e1e1;
	padding-bottom:5px;
	margin:25px 0 0 0;
}
	.subtitulo {
		text-align:center;
		font-size:16px;
		max-width:850px;
		margin:15px auto;
	}


/* ==========================================================================
      FOOTER
   ========================================================================== */
footer {
	width:100%;
	background:url(../img/footer-bg.gif) repeat;
	margin:40px 0 0 0;
	border-top:solid 1px #FFF;
	outline:solid 3px #21898F;
	display:table;
	color:#FFFFFF;
	padding-top:25px;
}
	footer h4 {
		font-size:17px;
		font-weight:700;
		border-bottom:solid 1px #21898F; 
		padding:0 0 8px 0;
	}
	footer p {
		margin:15px 0 0 0;
		line-height:18px;
	}
	footer a {
		display:inline;
		color:#FFFFFF;
		font-weight:bold;
	}
	footer a:hover {
		text-decoration:underline;
	}
	
	.footer-fone a {
		font-size:20px; 
		font-family:'Open Sans';
		font-weight:600;
		background:url(../img/footer-ico-fone.png) 0 11px no-repeat;
		padding:2px 0 2px 29px;
	}
	.footer-fone a span {
		font-size:15px; 
	}
	.footer-fone a:hover {
		color:#00FF00
	}
	.footer-whats a {
		font-size:20px; 
		font-family:'Open Sans';
		font-weight:600;
		background:url(../img/footer-ico-whats.png) 0 11px no-repeat;
		padding:2px 0 2px 29px;
	}
	.footer-whats a span {
		font-size:15px; 
	}
	.footer-whats a:hover {
		color:#00FF00
	}
	
	.footer-mail a {
		font-size:13px; 
		font-family:'Open Sans';
		font-weight:600;
		background:url(../img/footer-ico-mail.png) 0 6px no-repeat;
		padding:6px 0 6px 29px;
	}
	.footer-mail a:hover {
		text-decoration:underline;
	}
	.footer-pin {
		font-size:12px;
		margin:10px 0 0 0;
		font-family:'Open Sans';
		line-height:15px;
		background:url(../img/footer-ico-pin.png) 0 5px no-repeat;
		padding:2px 0 2px 29px;
	}
	.footer-pin span {
		font-weight:bold;
	}
	.footer-pin:last-child {
		margin:5px 0 0 0;
	}

.footer-copy {
	width:100%; 
	background:#000000; 
	border-top:solid 1px #21898F; 
	font-size:11px; 
	padding:13px 0;
}
	.footer-assinatura {
		float:right;
	}
	
/* FOOTER CONTATOS MOBILE */
.footer-contatos-mob {
	display:none;
}

/* BOTAO WHATSAPP */
.botao-whatsapp {
    position: fixed;
    right: 0;
    bottom: 80px;
    display: block;
    background-image: url(../img/bt-whatsapp.png);
    background-position: top left;
    background-repeat: no-repeat;
    width: 193px;
    height: 79px;
    z-index: 999;
}



/* ==========================================================================
      INTERNAS
   ========================================================================== */
.header-bg {
	height:140px; 
	background-position:center;
	background-repeat:no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	margin-bottom:20px;
}
	.sobre-nos {
		background-image:url(../img/bg-sobre-nos.jpg);
	}
	.blindagem-automotiva {
		background-image:url(../img/bg-blindagem-automotiva.jpg);
	}
	.blindagem-arquitetonica {
		background-image:url(../img/bg-blindagem-arquitetonica.jpg);
	}
	.pelicula-antivandalismo {
		background-image:url(../img/bg-pelicula-antivandalismo.jpg);
	}
	.manutencao-blindagem {
		background-image:url(../img/bg-manutencao-blindagem.jpg);
	}
	.contato {
		background-image:url(../img/bg-contato.jpg);
	}

.breadcrumb {
	position:relative;
	margin:20px 0 25px 0; 
	border-bottom:solid 1px #83CCCF; 
	padding:0 0 5px 0;
}
	.breadcrumb li,
	.breadcrumb li a {
		font-size:14px;
		color:#000000;
		display:inline;
	}
		.breadcrumb li span {
			color:#21898F;
		}
		
h1 {
	font-size:32px; 
	text-transform:uppercase;
}

article p {
	font-size:15px; 
	margin:15px 0; 
	line-height:23px;
}
	article p a {
		display:inline;
		color:#21898F;
	}
	/*article p a:hover {
		text-decoration:underline;
	}*/
		article ul {
			/*margin:15px 0 0 0;*/
		}
		article ul:last:child {
			margin:0 0 35px 0;
		}
		article ul li {
			padding:10px 0 7px 50px;
			border-bottom:solid 1px #e1e1e1;
			background:url(../img/ico-list.png) 30px 14px no-repeat;
		}
		article ul li,
		article ul li a {
			font-size:16px;
			font-weight:bold;
			color:#000000;
		}
		article ul .col-2 {
			margin-bottom:0;
		}

	article .info {
		color:#B80003;
		line-height: 20px;
	}

h2 {
	font-size:26px;
	text-transform:uppercase;
	margin:20px 0 0 0;
	/*background:url(../img/ico-list.png) 0 10px no-repeat;
	padding:0 0 0 18px;*/
}

.nossos-servicos {
	margin:20px 0 0 0;
	text-align:center;
}
	.nossos-servicos a {
		font-size:24px; 
		color:#000; 
	}
	.nossos-servicos h2 {
		font-size:22px;
		font-weight:normal;
		margin:15px 0 10px 0;
		border:none;
	}
	.nossos-servicos p {
		line-height:20px;
	}
	.nossos-servicos strong {
		font-weight:600;
	}

h3 {
	font-size:16px;
	font-weight:600;
	color:#21898F;
}

.carousel {
	text-align:center;
}
.carousel .item {
	margin-right:10px;
}
.carousel h2 {
	font-size:16px;
}

.combo-regiao h3,
.combo-regiao h5 {
	font-family:'Open Sans';
	font-size:21px;
	color:#21899D;
	margin-bottom:5px;
}
.combo-regiao-box {
	border:solid 1px #DDDDDD;
	background:url(../img/mapa-brasil.png) right top no-repeat;
	padding:20px;
	margin-bottom:20px;
	min-height:190px;
}
.combo-regiao-box form {
	margin-top:20px;
}
.combo-regiao-box form select {
	padding-left:20px;
}
.fone-combo {
	background-image:url(../img/ico-fone2.png);
	background-position: 0 12px;
	background-repeat:no-repeat;
	background-size:28px 35px;
	padding:8px 0 8px 32px;
	font-family:'Open Sans';
	font-size:25px;
}
	.fone-combo p {
		margin:0;
		font-size:15px;
	}
	.fone-combo a {
		color:#000000;
		font-weight:bold;
	}
.fone-combo span {
	font-size:16px;
	font-weight:bold;
}

.etapas-blindagem {
	margin-top:20px;
}

.etapas-blindagem a {
	color:#000000;
	text-align:center;
}
.etapa-blindagem-bt {
	display:table;
	margin:15px auto;
	border:solid 1px #21898F;
	color:#21898F;
	text-align:center;
	padding:10px 15px;
	-webkit-transition: all .60s ease; -moz-transition: all .60s ease; 
	-ms-transition: all .60s ease; -o-transition: all .60s ease; 
	transition: all .60s ease;
}
.etapas-blindagem a h3 {
	font-size:13px;
	text-transform:uppercase;
	color:#000000;
	min-height:30px;
}
	.etapa-blindagem-img {
			width:100%;
			height:120px;
			background-position:center;
			background-repeat:no-repeat;
			background-size: cover;
			-webkit-background-size: cover;
			-moz-background-size: cover;
			-ms-background-size: cover;
			-o-background-size: cover;
			border: solid 4px #FFF;
		    outline: solid 1px #CCC;
			margin-bottom:10px;
		}
	.etapas-blindagem a:hover .etapa-blindagem-bt {
		background:#21898F;
		color:#FFFFFF;
		-webkit-transition: all .60s ease; -moz-transition: all .60s ease; 
		-ms-transition: all .60s ease; -o-transition: all .60s ease; 
		transition: all .60s ease;
	}
	.etapas-blindagem a:hover .etapa-blindagem-img {
		 outline: solid 1px #009999;
		-webkit-transition: all .60s ease; -moz-transition: all .60s ease; 
		-ms-transition: all .60s ease; -o-transition: all .60s ease; 
		transition: all .60s ease;
	}

.img-servico {
	float:right;
	margin:20px 0 20px 30px; 
	max-width:450px;
	padding:5px; 
	border:solid 1px #e1e1e1;
}

p.aviso {
	font-size:18px;
	font-weight:bold;
	display:table;
	margin:20px auto;
	background:url(../img/ico-aviso.png) left no-repeat;
	padding:10px 0 10px 60px;
	
}

.fone-destaque {
	display:table; 
	margin:30px auto;
	background:url(../img/ico-fone2.png) left no-repeat; 
	font-family:'Open Sans', sans-serif; 
	font-size:15px; 
	font-weight:bold;
	padding:0 0 0 60px;
}
	.fone-destaque p {
		margin:0; 
		padding:0; 
		font-weight:bold; 
		font-size:17px; 
		font-family:'Raleway', sans-serif;
	}
	.fone-destaque-ddd {
		font-size:22px; 
		font-weight:bold;
	}
	.fone-destaque-fone {
		font-size:30px; 
		font-weight:bold;
	}

.servicos-manutencao {
	margin:15px 0 40px 0;
}
	.servicos-manutencao .col-2 {
		margin-bottom:0;
	}

.sidebar-contato {
	position:relative;
}
	.form-ico-seta {
		position:absolute;
		right:0;
		max-width:60px;
	}
	.sidebar-contato h3 {
		font-size:24px;
		color:#000000;
		margin:10px 0 10px 0;
	}
	.sidebar-contato h5 {
		font-size:20px;
		font-weight:600;
		color:#000000;
		margin:20px 0 5px 0;
		text-transform:uppercase;
	}

/* ==========================================================================
      BLINDAGEM DE CARROS
   ========================================================================== */
#floatdiv {
	position:absolute;
	top:0px;
}

.blindagem-carros-itens h3 {
	margin-top:25px;
}
	.blindagem-carros-itens h3:first-child {
		margin-top:0;
	}
	.blindagem-carros-itens p {
		font-size:12px; 
		margin:5px 0 5px 0; 
		line-height:16px;
	}

	.blindagem-carros-itens-thumbs {
		position:relative;
		width:95px; 
		height:70px; 
		float:left; 
		margin:10px 7px 0 0;
		background-position:center;
		background-repeat:no-repeat;
		background-size: cover;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-ms-background-size: cover;
		-o-background-size: cover;
		border:solid 3px #FFF;
		outline:solid 1px #CCCCCC;
	}
	.lupa {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		opacity: 0;    
		background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
		text-align: center;
		-webkit-transition:	 all .8s cubic-bezier(.190, 1.000, .220, 1.000);
		-moz-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
		-ms-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
		-o-transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
		transition: all .8s cubic-bezier(.190, 1.000, .220, 1.000);
	}
	.blindagem-carros-itens-thumbs:hover {
		/*border: 1px solid #FF9900;*/
		-webkit-transition: all .60s ease;
		-moz-transition: all .60s ease;
		-ms-transition: all .60s ease;
		-o-transition: all .60s ease;
		transition: all .60s ease;
	}
	.blindagem-carros-itens-thumbs:hover .lupa {
		opacity: 1;
		box-shadow: inset 0 0 100px 50px rgba(0,0,0,.5);
	}
	.blindagem-carros-itens-thumbs .lupa img {
		/*background:#FF9900;*/
		padding:12px;
		margin-top:10px;
	}

	.call-to-action {
		background:#D90000 url(../img/ico-whatsapp.png) 15px 8px no-repeat;
		display:table;
		font-size:20px;
		margin:25px auto;
		padding:18px 15px 15px 75px; color:#FFF; font-weight:700;
		border-bottom:solid 4px #790000;
		-webkit-transition: all .30s ease;
		-moz-transition: all .30s ease;
		-ms-transition: all .30s ease;
		-o-transition: all .30s ease;
		transition: all .30s ease;
	}
		.call-to-action:hover {
			background:#790000 url(../img/ico-whatsapp.png) 20px 8px no-repeat;
			-webkit-transition: all .30s ease;
			-moz-transition: all .30s ease;
			-ms-transition: all .30s ease;
			-o-transition: all .30s ease;
			transition: all .30s ease;
		}

/* ==========================================================================
      CONTATO
   ========================================================================== */
.contatos {
	font-family:'Open Sans';
}
.contato-fone {
	background:url(../img/ico-fone.png) left no-repeat;
	padding:15px 0 15px 65px;
	font-size:21px;
	margin:15px 0 0 0;
}
	.contato-fone a {
		color:#000;
		cursor:pointer
	}
	.contato-fone a:hover {
		text-decoration:underline;
	}
	
.contato-whats {
	background:url(../img/ico-whats.png) left no-repeat;
	padding:15px 0 15px 65px;
	font-size:21px;
	margin:15px 0 0 0;
}
	.contato-whats a {
		color:#000;
		cursor:pointer
	}
	.contato-whats a:hover {
		text-decoration:underline;
	}
	
.contato-mail {
	background:url(../img/ico-mail.png) left no-repeat;
	padding:15px 0 15px 65px;
	font-size:17px;
	margin:10px 0 0 0;
}
	.contato-mail a {
		color:#000;
		cursor:pointer
	}
	.contato-mail a:hover {
		text-decoration:underline;
	}
.contato-pin {
	background:url(../img/ico-pin.png) 0 15px no-repeat;
	padding:15px 0 15px 65px;
	font-size:17px;
}
.contato-pin span {
	color:#21898F;
	font-weight:bold;
}
	
	
/* ==========================================================================
      OBRIGADO
   ========================================================================== */
.obrigado {
	text-align:center;
	min-height:287px;
}
	.obrigado h1 {
		font-size:35px; color:#000; font-weight:700; margin-top:40px;
	}
	.obrigado p {
		font-size:20px; margin:20px 0;
	}
	.curta-facebook {
		background:#3B5998 url(../img/ico-facebook.png) 15px 8px no-repeat;
		display:table;
		font-size:20px;
		margin:25px auto;
		padding:18px 15px 15px 75px; color:#FFF; font-weight:700;
		border-bottom:solid 4px #273C65;
		-webkit-transition: all .30s ease;
		-moz-transition: all .30s ease;
		-ms-transition: all .30s ease;
		-o-transition: all .30s ease;
		transition: all .30s ease;
	}
		.curta-facebook:hover {
			background:#273C65 url(../img/ico-facebook.png) 20px 8px no-repeat;
			-webkit-transition: all .30s ease;
			-moz-transition: all .30s ease;
			-ms-transition: all .30s ease;
			-o-transition: all .30s ease;
			transition: all .30s ease;
		}
	
	.obrigado h2 {
		font-size:35px; color:#D94C46; font-weight:700; width:960px; margin:70px auto 30px auto; text-align:center;
	}
		.obrigado h2 span {
			color:#000; font-weight:700;
		}
		
		
/* ==========================================================================
      CONTATO MOBILE
   ========================================================================== */
.contato-mobile {
	display:none;
	width:100%;
	background:#990000;
	border-top:solid 3px #530002;
	padding:11px 0;
	position:fixed;
	bottom:0;
	z-index:2;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
	.contato-mobile:hover {
		background:#CC0000;
		-webkit-transition: all 300ms ease-in-out;
		-moz-transition: all 300ms ease-in-out;
		-ms-transition: all 300ms ease-in-out;
		-o-transition: all 300ms ease-in-out;
		transition: all 300ms ease-in-out;
	}
	.contato-mobile p {
		color:#FFFFFF;
		font-size:17px;
		font-weight:bold;
		padding:0 0 0 35px;
		background:url(../img/ico-mail2.png) left no-repeat;
		display:table;
		margin:0 auto;
	}
	
		
/* ==========================================================================
       FORMS
   ========================================================================== */
/* CAMPOS */
input[type="text"], 
input[type="email"], 
input[type="number"], 
select,
textarea {
	width:100%;
	border:dotted 1px #999999;
	padding:15px 10px 15px 45px;
	font-family: 'Open Sans', sans-serif;
	font-size:16px;
	color:#222;
	margin-bottom:7px;
	background-color:#FFF;
	background-position:12px 16px;
	background-repeat:no-repeat;
} 
	#tipo_servico {
		background-image:url(../img/form-ico-tipo-servico.gif);
	} 
	#tipo_veiculo {
		background-image:url(../img/form-ico-tipo-veiculo.gif);
	} 
	#nome {
		background-image:url(../img/form-ico-nome.gif);
		text-transform:capitalize;
	} 
	#email {
		background-image:url(../img/form-ico-email.gif);
		text-transform:lowercase;
	} 
	#ddd {
		background-image:url(../img/form-ico-ddd.gif);
		width:100px;
	} 
	#telefone {
		background-image:url(../img/form-ico-fone.gif);
		width:155px; 
		margin-left:5px;
	} 
	#mensagem {
		background-image:url(../img/form-ico-msg.gif);
		height:120px;
	} 

input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="number"]:focus, 
select:focus,
textarea:focus {
	border:solid 1px #21898F;
	-webkit-transition: all .60s ease; -moz-transition: all .60s ease; 
	-ms-transition: all .60s ease; -o-transition: all .60s ease; 
	transition: all .60s ease;
	outline:none;
}

/* BOTÃO ENVIAR */
input[type="submit"] {
	background:#21898F url(../img/ico-arrow-branco.gif) 17px 20px no-repeat; 
	margin-top:10px; 
	color:#FFFFFF;
	font-size:21px; 
	padding:12px 25px 9px 35px;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
	cursor:pointer;
	border-bottom:solid 3px #165F63;
	float:right;
}

input[type="submit"]:hover {
	background-color:#165F63;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}


	
/* ==========================================================================
       MEDIA QUERIES
   ========================================================================== */
@media screen and (min-width: 1600px) {
	.home-bg {
		height:900px;
	}
}

@media screen and (max-width: 1200px) {
	.center {
		padding-left:15px;
		padding-right:15px;
	}
}

@media screen and (max-width: 1000px) {
	.col-4 {
		width:48%;
		margin-right:3.3%;
	}
	.col-4:nth-child(2n) {
		margin-right:0;
	}
	.content, 
	.sidebar {
		width:100%;
	}
	header {
		padding-top:25px;
	}
	.menu {
		display:none;
	}
	.menu-fixo  {
		display:none;
	}
	.breadcrumb {
		margin-top:30px; 
	}
	#menu-mobile {
		display:block;
	}
	/*
	.contato-fone a {
		color:#0000FF;
		text-decoration:underline;
		cursor:pointer;
	}
	.footer-fone a {
		cursor:pointer;
	}
	*/
}

@media screen and (max-width: 800px) {
	#floatdiv {
		position:inherit;
	}
	.contato-mobile {
		display:block;
	}
	.mobile-on {
		display:block;
	}
	.fone-destaque {
		font-size:13px; 
	}
	.fone-destaque p {
		font-size:15px; 
	}
	.footer-contatos-mob a.bt-whatsapp {
		background-color:#4BC557; background-image:url(../img/ico-whatsapp.png);
	}
	.footer-contatos-mob a.bt-ligar {
		background-color:#0000CC; background-image:url(../img/ico-fone-white.png);
	}
	.footer-contatos-mob a.bt-mail {
		background-color:#DD4B39; background-image:url(../img/ico-mail-white.png);
	}
	.botao-whatsapp {
		display:none;
	}
}
	
@media screen and (max-width: 767px) {
	.col-3 {
		width:100%;
	}
	.col-5,
	.col-6 {
		width:48%;
	}
}

@media screen and (max-width: 640px) {
	.header-logo {
		float:none;
		margin:0 auto;
	}
	.header-fone {
		display:none;
	}
	
	#menu-mobile {
		margin:-45px 0 0 0;
	}
	
	.footer-copy {
		text-align:center;
		position:relative;
		z-index:9999;
	}
	.footer-assinatura {
		float:none;
		display:table;
		margin-left:auto;
		margin-right:auto;
		margin-top:15px;
	}
	.img-servico {
		float:none;
		margin:20px auto; 
		max-width:100%;
		padding:5px; 
		border:solid 1px #e1e1e1;
	}
	
	.footer-contatos-mob {
		position:fixed; 
		width:100%; 
		bottom:0;
		z-index:9998;
		display:block;
	}
	.footer-contatos-mob a {
		/*float:left;
		width:33%;*/
		width:100%;
		display:block; 
		padding:12px 0 12px 42px; 
		background-position:10px center;
		background-repeat:no-repeat;
		background-size:26px;
		font-size:12px; 
		color:#FFFFFF;
		line-height:15px;
	}
	.call-to-action {
		background:#D90000 url(../img/ico-whatsapp.png) 15px 20px no-repeat;
	}
}

@media screen and (max-width: 595px) {
	.col-2,
	.col-4,
	.col-5,
	.col-6 {
		width:100%;
	}
	.home-txt h2 {
		margin-top:30px;
	}
	h1 {
		font-size:27px;
	}
}

@media screen and (max-width: 400px) {
	.home-txt h2 {
		font-size:28px;
	}
	.home-txt article {
		margin-top:20px;
		font-size:17px;
	}
	.home-txt p {
		font-size:20px;
	}
	.botao {
		font-size:18px;
		font-weight:bold;
		margin-left:auto;
		margin-right:auto;
	}
}