*{
	box-sizing: border-box;
	font-size: 62.5%;
	text-decoration: none;
	outline: none;
	border: none;
	font-family: 'Roboto', sans-serif;
}
@font-face {
	font-family: "Bebas Neue";
	src: url('fontes/bebasneue.otf') format('truetype');
}
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');
/* -----  INFO TOPO ------ */
.info-topo{
	width: 100%;
	height: auto;
	background: url(../img/bg-info-topo.png) repeat;
	float: left;
	padding: 10px 30px;
	clear: both;
}
.info-topo ul li{
	display: inline;
	width: auto;
	height: auto;
	color: #ddd;
	font-size: 0.8em;
	font-family: 'Roboto', 'sans-serif';
	padding: 4px 20px;
	float: left;
	border-right: 1px solid #111;
	position: relative;
	cursor: default;
}
.info-topo ul li::selection{
	background: #ffc82a;
	color: #222;
}
.info-topo ul li a::selection{
	background: #ffc82a;
	color: #222;
}
.info-topo ul li i{
	margin-right: 5px;
}
.info-topo ul li::after{
	content: "";
	width: 1px;
	height: 100%;
	top: 0;
	right: -2px;
	background: #333;
	position: absolute;
}
/*.info-topo ul li:nth-last-child(2){
	border: none;
}
.info-topo ul li:nth-last-child(2)::after{
	display: none;
}*/
.info-topo ul li:last-child{
	border: none;
}
.info-topo ul li:last-child::after{
	display: none;
}
.info-topo ul li a{
	color: #ddd;
	position: relative;
}
.info-topo ul li a::after{
	width: 0%;
	height: 1px;
	background: #ddd;
	content: "";
	left: 0;
	bottom: -3px;
	position: absolute;
	-webkit-transition: all 0.25s ease;
	   -moz-transition: all 0.25s ease;
	    -ms-transition: all 0.25s ease;
	     -o-transition: all 0.25s ease;
	        transition: all 0.25s ease;
}
.info-topo ul li:hover a::after{
	width: 100%;
}
/*.info-topo ul li.lirestrito{
	float: right;
}*/
/* ------- FIM INFO TOPO ------- */

/* ----- TOPO ----- */
.topo{
	width: 100%;
	height: auto;
	background: url(../img/bg-topo.png) repeat;
	padding: 15px 30px;
	clear: both;
	float: left;
	position: relative;
}
.logo{
	width: 30%;
	max-width: 30%;
	float: left;
}
.logo img{
	max-width: 100%;
	max-height: 80px;
	float: left;
	clear: both;
}
.menu-lg{	
	max-width: 70%;
	float: right;
	position: absolute;
	right: 30px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.menu-lg ul{
	max-width: 100%;
	float: right;
}
.menu-lg ul li{
	display: inline;
	padding: 15px 25px 10px 25px;
	float: left;
	margin-left: 12px;
	position: relative;
	z-index: 20;
}
.menu-lg ul li:first-child{
	margin: 0;
}
.menu-lg ul li a{
	color: #ddd;
	text-transform: uppercase;
	font-family: 'Bebas Neue', 'sans-serif';
	font-size: 1.4em;
	font-weight: normal;
	z-index: 90;
	position: relative;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.menu-lg ul li:hover a{
	color: #444;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.menu-lg ul li::before{
	content: "";
	width: 0%;
	height: 100%;
	left: 0;
	top: 0;
	background: #FFC82A;
	position: absolute;
	z-index: 10;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.menu-lg ul li:hover::before{
	width: 100%;
}
.menu-lg ul li.ativo::before{
	width: 100%;
}
.menu-lg ul li.ativo a{
	color: #444;
}
/* ---- topo ---- */

/* ------ slider ---- */
.slidermeio{
	width: 100%;
	max-width: 100%;
	clear: both;
	float: left;
	margin-top: -1px;
	z-index: 300;
}
.tp-banner-container{
	width: 100%;
	max-width: 100%;
	position: relative;
}
.tp-banner{
	width: 100%;
	position: relative;
}

/* ------ slider ---- */

/* ----- separador ------ */
.separador{
	clear: both;
	width: 100%;
	height: auto;
	background: url('../img/separador.jpg') repeat;
	padding: 26px 0;
}
.texto-separador{
	text-align: center;
	margin: 0 auto;
	font-family: 'Bebas Neue', 'sans-serif';
	color: #fff;
	cursor: default;
}
.texto-separador h1{
	font-family: 'Bebas Neue', 'sans-serif';
	font-size: 3.5em;
	position: relative;
}
.texto-separador h1::after{
	position: absolute;
	content: "";
	width: 40px;
	height: 2px;
	background: #FBD500;
	bottom: -5px;
	border-radius: 10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.texto-separador p{
	font-size: 1.4em;
	margin-top: 20px;
	word-spacing: 5px;
	letter-spacing: 2px;
}
.texto-separador h1::selection,
.texto-separador p::selection{
	background: #ffc82a;
	color: #222;
}
/* ------ separador ----- */

/* ------- boxes ------ */

.box{
	width: 100%;
	max-width: 100%;
	padding: 95px 30px 40px 30px;
	background: #fff;
	float: left;
}
.box ul{
	float: left;
	width: 100%;
}
.box ul li{
	width: 23.5%;
	max-width: 100%;
	display: inline-block;
	float: left;
	margin-right: 2%;
	position: relative;
	z-index: 100;
}
.box ul li div.boxInt{
	width: 100%;
	max-width: 100%;
	padding: 20px;
	border: 3px solid #aaa;
	border-radius: 5px;
	background: #EEEEEE;
	position: relative;
	z-index: 200;
	height: auto;
}
.box ul li:last-child{
	margin-right: 0;
}
.box ul li div.boxInt div.imgbox{
	width: 120px;
	height: 120px;
	position: absolute;
	left: 50%;
	top: -63.5px;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	        text-align: center;
}
.box ul li div.boxInt div.imgbox::selection{
	user-select: none;
}
.box ul li div.boxInt div.imgbox img::selection{
	user-select: none;
}
.box ul li div.boxInt div.imgbox img{
	/*width: 100%;*/
	height:  100%;
	text-align: center;
}
.box ul li div.boxInt h1{
	font-family: 'Bebas Neue', 'sans-serif';
	font-size: 1.8em;
	color: #212121;
	text-align: center;
	position: relative;
	margin-top: 60px;
	clear: both;
}
.box ul li div.boxInt h1::after{
	position: absolute;
	content: "";
	width: 30px;
	height: 3px;
	background: #FFC82A;
	bottom: -5px;
	left: 50%;
	border-radius: 10px;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.box ul li div.boxInt p{
	text-align: center;
	margin-top: 20px;
	font-family: 'Roboto', 'sans-serif';
	font-size: 0.9em;
	font-weight: normal;
	color: #666666;
	line-height: 20px;
	margin-bottom: 15px;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
	        text-align: justify;
}
.box ul li .boxInt p strong{
	font-weight: bold;
}
.box ul li div.boxInt a{
	position: absolute;
	width: auto;
	height: auto;
	background: #222;
	color: #fff;
	padding: 10px 15px;
	font-family: 'Bebas Neue', 'sans-serif';
	font-size: 1.3em;
	border-radius: 5px;
	font-weight: normal;
	left: 50%;
	bottom: -15px;
	z-index: 20;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.box ul li div.boxInt a:hover{
	background: #FFC82A;
	color: #222222;
}
.box ul li::before{
	content: "";
	width: 308px;
	max-width: 100%;
	height: 46px;
	bottom: -23px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	        text-align: center;
	position: absolute;
	background: url('../img/sombrabox.png') no-repeat;
	z-index: 10;
}
.box ul li:hover div.boxInt p{
	color: #555555;
}
.box ul li div.boxInt p::selection,
.box ul li div.boxInt h1::selection{
	background: #ffc82a;
	color: #222;
}
.box ul li:hover{
	cursor: default;
}
/* ------- boxes ------ */

/* ------- RODAPÉ -------- */
.rodape{
	clear: both;
	width: 100%;
	background: #222222;
	padding: 15px 30px;
	color: #bbb;
	font-family: 'Roboto', 'sans-serif';
	float: left;
	font-size: 0.8em;
}
.copy{
	float: left;
}
.code{
	float: right;
}
/* ------- RODAPÉ -------- */
div.contato{
	width: 100%;
	height: auto;
	padding: 30px;
	float: left;
}
div.contato-r,
div.contato-l{
	width: 50%;
	height: auto;
}
div.contato-r{
	float: right;
	height: 100%;
	padding-left: 30px;
}

div.contato-l{
	float: left;
}
div.mapa{
	width: 100%;
	height: 50%;
	clear: both;
	border: 3px solid #ddd;
	border-radius: 5px;
}
div.mapa iframe{
	width: 100%;
}
div.contato-r form input,
div.contato-r form select,
div.contato-r form option,
div.contato-r form textarea{
	width: 100%;
	display: block;
	height: 45px;
	background: #222;
	color: #aaa;
	font-family: 'Roboto';
	padding: 10px 20px;
	font-size: 0.9em;
	border-radius: 5px;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
div.contato-r form option{
	padding: 20px;
	font-size: 1em;
}
div.contato-r form select{
	width: 50%;
}
div.contato-r  div.bloco-form{
	margin-bottom: 15px;
	clear: both;
	display: block;
}
div.contato-r div.bloco-form select{
	float: left;
	margin: 0;
	width: 50%;
	margin-right: 5%;
}
div.contato-r div.bloco-form input[name=tel]{
	width: 45%;
}
div.contato-r .bloco-form textarea{
	height: 100px;
	padding: 15px 20px;
	resize: none;
}
div.contato-r .bloco-form input[type=submit]{
	text-transform: uppercase;
	font-family: 'Roboto';
	font-weight: bold;
	font-size: 0.9em;
	cursor: pointer;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
div.contato-r .bloco-form input[type=submit]:hover{
	background: #FFC82A;
	color: #222;
}
div.contato-r form input:focus,
div.contato-r form select:focus,
div.contato-r form option:focus,
div.contato-r form textarea:focus{
	background: #FFC82A;
	color: #222;
}
div.contato-r form input:focus::placeholder,
div.contato-r form select:focus::placeholder,
div.contato-r form option:focus::placeholder,
div.contato-r form textarea:focus::placeholder{
	color: #222;
}
div.bloco-form  input[name=endereco]{
	width: 100%;
}
div.bloco-form input[name=cep]{
	width: 30%;
	float: left;
	margin-right: 5%;
}
div.bloco-form input[name=cidade]{
	width: 30%;
	float: left;
	margin-right: 5%;
	cursor: not-allowed;
}
div.bloco-form input[name=bairro]{
	width: 30%;
}



/* ----- INSTITUCIONAL ----- */
.institucional{
	width: 100%;
	padding: 30px;
	float: left;
}
.titulo{
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}
.titulo h1{
	font-size: 2em;
	color: #222;
	font-family: "Bebas Neue";
	text-align: center;
	position: relative; text-transform: uppercase;
}
.titulo::before{
	position: absolute;
	width: 40%;
	left: 0;
	top: 50%;
	background: #aaa;
	height: 1px;
	content: "";
	transform: translateY(-50%);
}
.titulo::after{
	position: absolute;
	width: 40%;
	right: 0;
	top: 50%;
	background: #aaa;
	height: 1px;
	content: "";
	transform: translateY(-50%);
}
.titulo h1::after{
	width: 30px;
	position: absolute;
	content: "";
	height: 3px;
	background: #FBD500;
	transform: translateX(-50%);
	left: 50%;
	bottom: -5px;
}
div.institucional div.conteudoInst{
	width: 100%;
	height: auto;
	background: #fff;
	float: left;
}
.conteudoInst img{
	width: 30%;
	max-width: 610px;
	height: auto;
	float: left;
	border-radius: 10px;
	overflow: hidden;
	margin-right: 30px;

}
.conteudoInst p{
	font-family: 'Roboto';
	line-height: 29px;
	color:  #222;
	font-size: 1em;
	text-align: justify;
}
.conteudoInst strong{
	font-weight: bold;
}
.qualidades{
	width: 100%;
	height: auto;
	margin-top: 5px;
	float: left;
}
.qualidades ul li{
	width: auto;
	height: auto;
	padding: 10px 20px;
	color: #222;
	font-family: 'Bebas Neue';
	font-size: 1.3em;
	background: #FBD500;
	display: inline-block;
	margin-right: 20px;
	border-radius: 5px;
}
.qualidades ul li:last-child{
	margin: 0;
}
/* ------- fim institucional ----- */

/* ---- solucoes ------ */
.conteudoSol{
	width: 100%;
	height: auto;
	background: #ddd;
	font-family: 'Roboto', sans-serif;
}
.chamada{
	width: 100%;
	height: auto;
	padding: 20px;
	background: #ddd;
	color: #222;
	font-size: 1em;
	text-align: center;
	line-height: 25px;
	font-family: "Roboto", sans-serif;
}
.chamada strong{
	font-weight: bold;
}
.detalheSol{
	width: 100%;
	clear: both;
	height: auto;
	padding: 30px;
	float: left;
	border-bottom: 1px dashed #222;
}
.imagemSol{
	width: 28%;
	float: left;
}
.imagemSol img{
	width: 100%;
}
.textoSol{
	width: 70%;
	float: right;
}
.textoSol h3{
	font-family: 'Bebas Neue';
	font-size: 1.5em;
	margin-bottom: 10px;
	color: #222;
}
.textoSol p{
	font-size: 1em;
	font-family: 'Roboto';
	line-height: 25px;
	text-align: left;
	color: #555;
	text-align: justify;
}
.textoSol p strong{
	font-weight: bold;
}
.veiculos{
	width: 100%;
	height: auto;
	clear: both;
	padding: 30px;
	float: left;
	margin-top: 70px;
}
.veiculos ul li{
	width: 23.5%;
	margin-right: 2%;
	background: #EEEEEE;
	float: left;
	display: inline-block;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
	border: 3px solid #aaa;
	position: relative;
	height: auto;
	padding-bottom: 30px;
}
.imgGo{
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	height: 120px;
	text-align: center;
}
.imgGo img{
	height: 100%;
	text-align: center;
}
.veiculos ul li:nth-child(4){
	margin-right: 0;
}
.veiculos h3{
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 10px;
	position:  relative;
	margin-top: 60px;
	color: #212121;
}
.veiculos h3::after{
	content: "";
	position: absolute;
	width: 25px;
	height: 3px;
	background: #FFC82A;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
}
.veiculos{
	line-height: 30px;
}
.veiculos ul li p{
	font-size: 0.9em;
	color:  #666666;
}
.veiculos ul li p a{
	color: red;
	font-size: 1.2em;
}
.veiculos ul li p strong{
	font-weight: bold;
}
.veiculos ul li:nth-child(5),
.veiculos ul li:nth-child(6){
	margin-top: 100px;
}

.veiculos ul li a{
	background: #222;
	position:  absolute;
	width: 95px;
	text-transform: uppercase;
	font-size: 0.9em;
	bottom: -20px;
	left: 50%;
	padding: 5px 10px;
	border-radius: 5px;
	color: #ddd;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	        font-weight: bold;
}
.veiculos ul li a img{
	height: 20px;
	float: left;
}
/* ---- fim solucoes ------ */

/* ------ SERVIÇOS ----- */
.servicos{
	width: 100%;
	height: auto;
	padding: 30px;
	float: left;
	font-family: "Roboto", 'sans-serif';
}
.servicos ul li{
	width: 100%;
	float: left;
	display: block;
	padding: 30px 0;
	border-bottom:  1px dashed #222;
}
.servicos ul li .servicosleft{
	float: left;
	width: 40%;
	height: auto;
	border-radius:  10px;
	overflow:  hidden;
}
.servicos ul li .servicosleft img{
	width: 100%;
}
.servicos ul li .servicosright{
	width: 60%;
	float: right;
	padding-left: 30px;
	line-height: 21px;
}
.servicos ul li .servicosright h1{
	font-size: 2em;
	font-family: "Bebas Neue";
	color: #222;
	line-height: 30px;
}
.servicos ul li .servicosright h2{
	font-size: 1.5em;
	font-family: "Bebas Neue";
	color: #222;
}
.servicos ul li .servicosright p{
	color: #555;
	font-size: 1em;
	text-align: justify;
}
.servicos ul li .servicosright p strong{
	font-weight: bold;
}
.servicos ul li .servicosright p a{
	color: #666;
	cursor:  pointer;
}
/* ------ SERVIÇOS ----- */

/* ----- preloader ---- */
.preloader{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: #222;
	z-index: 1200;
	text-align: center;
}
.preloader img{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
	margin-left: -240px;
}

/* ----- MENU MOBILE ----- */
.navmenu{
	width: 60%;
	height: 100%;
	position: fixed;
	left: -70%;
	top: 0;
	background: url(../img/bg-topo.png) repeat;
	z-index: 1500;
	padding: 30px;
	display: none;
	border-right: 5px solid #555;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.navmenu.navaberto{left: 0;}
.navmenu h1{
	font-family: "Bebas Neue";
	color: #ddd;
	font-size: 2em;
	text-align: center;
	text-transform: uppercase;
}
.navmenu ul{
	height: 100%;
	padding: 20px 0;
	overflow-y: auto;
}
.navmenu ul li{
	padding: 20px 0;
	text-align: center;
	display: block;
	margin-top: 10px;
	font-family: "Roboto";
	font-size: 1em;
	text-transform: uppercase;
}
.navmenu ul li a{
	color: #ddd;
	font-weight: bold;
}
.navmenu ul li.ativo{background: #FFC82A;}
.navmenu ul li.ativo a{color: #222;}
.btnmobile{display: none; position:fixed; top: 10px; right: 20px; padding: 10px; background: #aaa; color: #222; z-index: 1600; font-size: 1.3em; border-radius: 5px;}

strong{
	font-weight: bold;
}

.linkservicos{
	width: auto;
	padding: 5px 10px;
	background: #222;
	color: #fff !important;
	border-radius:  5px;
	margin-top: 10px;
	float: left;
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
.linkservicos:hover{
	background: #FBD500;
	color: #222!important;
}