/* Generated by Font Squirrel (http://www.fontsquirrel.com) on June 4, 2015 */
@font-face {
    font-family: 'montserrat';
    src: url('fonts/MontserratLight.eot');
    src: url('fonts/MontserratLight.eot') format('embedded-opentype'),
         url('fonts/MontserratLight.woff2') format('woff2'),
         url('fonts/MontserratLight.woff') format('woff'),
         url('fonts/MontserratLight.ttf') format('truetype'),
         url('fonts/MontserratLight.svg#MontserratLight') format('svg');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'montserrat';
    src: url('fonts/montserrat-bold-webfont.eot');
    src: url('fonts/montserrat-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/montserrat-bold-webfont.woff2') format('woff2'),
         url('fonts/montserrat-bold-webfont.woff') format('woff'),
         url('fonts/montserrat-bold-webfont.ttf') format('truetype'),
         url('fonts/montserrat-bold-webfont.svg#montserratbold') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat';
    src: url('fonts/montserrat-regular-webfont.eot');
    src: url('fonts/montserrat-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/montserrat-regular-webfont.woff2') format('woff2'),
         url('fonts/montserrat-regular-webfont.woff') format('woff'),
         url('fonts/montserrat-regular-webfont.ttf') format('truetype'),
         url('fonts/montserrat-regular-webfont.svg#montserratregular') format('svg');
    font-weight: 400;
    font-style: normal;
}


/*=============================*/
*{
  box-sizing:border-box;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
}
.jar {
  position: relative;
  width: 200px;
  margin: 100px auto 0;
  text-align: center;
}

.jar .mouth {
  width: 40px;
  height: 10px;
  margin: 0 auto -1px;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
  border-radius: 20px;
}

.jar .neck {
  width: 35px;
  height: 45px;
  margin: 0 auto -5px;
  z-index: 7;
  position: relative;
  background-color: #e2e2e2;
  border-right: 4px solid #fff;
  border-left: 4px solid #fff;
}

.jar .bubble {
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: #c3d600;
  opacity: 0.4;
  left: 92px;
  z-index: 8;
  top: 110px;
  border-radius: 100%;
  animation: buble 2s linear 1s infinite;
  -ms-animation: buble 2s linear 1s infinite;
  -moz-animation: buble 2s linear 1s infinite;
  -webkit-animation: buble 2s linear 1s infinite;
  -o-animation: buble 2s linear 1s infinite;
}

.jar .bubble + .bubble {
  left: 87px;
  top: 120px;
  width: 15px;
  height: 15px;
  animation-duration: 3s;
  -ms-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
}

.jar .base {
  margin: auto;
  width: 120px;
  height: 100px;
  border: 4px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.jar .base .bubble {
  left: 15px;
  top: 50px;
  animation: bounce 2.3s linear 0s infinite alternate;
  -ms-animation: bounce 2.3s linear 0s infinite alternate;
  -moz-animation: bounce 2.3s linear 0s infinite alternate;
  -webkit-animation: bounce 2.3s linear 0s infinite alternate;
}

.jar .base .bubble + .bubble {
  left: 75px;
  top: 40px;
  animation-duration: 3s;
  -ms-animation-duration: 3s;
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
}

.jar .liquid {
  height: 40px;
  background-color: #c3d600;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.jar .wave {
  width: 60px;
  height: 20px;
  position: absolute;
  background-color: #c3d600;
  left: 0;
  top: 50px;
  animation: wave 1s linear 1s infinite alternate;
  -ms-animation: wave 1s linear 1s infinite alternate;
  -moz-animation: wave 1s linear 1s infinite alternate;
  -webkit-animation: wave 1s linear 1s infinite alternate;
  border-radius: 50%;
}

.jar .wave + .wave {
  left: auto;
  right: 0;
}

@keyframes wave{
  from {
    transform:translate(100px);
    -moz-transform:translate(100px);
    -webkit-transform:translate(100px);
    -ms-transform:translate(100px);
  }
  to {
    transform:translateX(-100px);
    -moz-transform:translateX(-100px);
    -webkit-transform:translateX(-100px);
    -ms-transform:translateX(-100px);
  }
}

@keyframes bounce {
  0% {
   transform:translate(5px, 15px);
    -moz-transform:translate(5px, 15px);
    -webkit-transform:translate(5px, 15px);
    -ms-transform:translate(5px, 15px);
  }
  50% {
    transform:translate(0, -15px);
    -moz-transform:translate(0, -15px);
    -webkit-transform:translate(0, -15px);
    -ms-transform:translate(0, -15px);
  }
  100% {
    transform:translate(-5px, -37px);
    -moz-transform:translate(-5px, -37px);
    -webkit-transform:translate(-5px, -37px);
    -ms-transform:translate(-5px, -37px);
    opacity: 1;
  }
}

@keyframes buble {
  0% {
    transform:translate(3px, 10px);
    -moz-transform:translate(3px, 10px);
    -webkit-transform:translate(3px, 10px);
    -ms-transform:translate(3px, 10px);
  }
  25% {
   transform:translate(0, 0);
    -moz-transform:translate(0, 0);
    -webkit-transform:translate(0, 0);
    -ms-transform:translate(0, 0);
  }
  50% {
    transform:translate(-3px, -25px);
    -moz-transform:translate(-3px, -25px);
    -webkit-transform:translate(-3px, -25px);
    -ms-transform:translate(-3px, -25px);
  }
  75% {
     transform:translate( 0px, -50px);
    -moz-transform:translate( 0px, -50px);
    -webkit-transform:translate( 0px, -50px);
    -ms-transform:translate( 0px, -50px);
    opacity: 1;
  }
  100% {
    transform:translate(3px, -100px);
    -moz-transform:translate(3px, -100px);
    -webkit-transform:translate(3px, -100px);
    -ms-transform:translate(3px, -100px);
    opacity: 0;
  }
}

/**/
@-ms-keyframes wave{
  from {
    transform:translate(100px);
    -moz-transform:translate(100px);
    -webkit-transform:translate(100px);
    -ms-transform:translate(100px);
  }
  to {
    transform:translateX(-100px);
    -moz-transform:translateX(-100px);
    -webkit-transform:translateX(-100px);
    -ms-transform:translateX(-100px);
  }
}

@-ms-keyframes bounce {
  0% {
   transform:translate(5px, 15px);
    -moz-transform:translate(5px, 15px);
    -webkit-transform:translate(5px, 15px);
    -ms-transform:translate(5px, 15px);
  }
  50% {
    transform:translate(0, -15px);
    -moz-transform:translate(0, -15px);
    -webkit-transform:translate(0, -15px);
    -ms-transform:translate(0, -15px);
  }
  100% {
    transform:translate(-5px, -37px);
    -moz-transform:translate(-5px, -37px);
    -webkit-transform:translate(-5px, -37px);
    -ms-transform:translate(-5px, -37px);
    opacity: 1;
  }
}

@-ms-keyframes buble {
  0% {
    transform:translate(3px, 10px);
    -moz-transform:translate(3px, 10px);
    -webkit-transform:translate(3px, 10px);
    -ms-transform:translate(3px, 10px);
  }
  25% {
   transform:translate(0, 0);
    -moz-transform:translate(0, 0);
    -webkit-transform:translate(0, 0);
    -ms-transform:translate(0, 0);
  }
  50% {
    transform:translate(-3px, -25px);
    -moz-transform:translate(-3px, -25px);
    -webkit-transform:translate(-3px, -25px);
    -ms-transform:translate(-3px, -25px);
  }
  75% {
     transform:translate( 0px, -50px);
    -moz-transform:translate( 0px, -50px);
    -webkit-transform:translate( 0px, -50px);
    -ms-transform:translate( 0px, -50px);
    opacity: 1;
  }
  100% {
    transform:translate(3px, -100px);
    -moz-transform:translate(3px, -100px);
    -webkit-transform:translate(3px, -100px);
    -ms-transform:translate(3px, -100px);
    opacity: 0;
  }
}
@-moz-keyframes wave{
  from {
    transform:translate(100px);
    -moz-transform:translate(100px);
    -webkit-transform:translate(100px);
    -ms-transform:translate(100px);
  }
  to {
    transform:translateX(-100px);
    -moz-transform:translateX(-100px);
    -webkit-transform:translateX(-100px);
    -ms-transform:translateX(-100px);
  }
}

@-moz-keyframes bounce {
  0% {
   transform:translate(5px, 15px);
    -moz-transform:translate(5px, 15px);
    -webkit-transform:translate(5px, 15px);
    -ms-transform:translate(5px, 15px);
  }
  50% {
    transform:translate(0, -15px);
    -moz-transform:translate(0, -15px);
    -webkit-transform:translate(0, -15px);
    -ms-transform:translate(0, -15px);
  }
  100% {
    transform:translate(-5px, -37px);
    -moz-transform:translate(-5px, -37px);
    -webkit-transform:translate(-5px, -37px);
    -ms-transform:translate(-5px, -37px);
    opacity: 1;
  }
}

@-moz-keyframes buble {
  0% {
    transform:translate(3px, 10px);
    -moz-transform:translate(3px, 10px);
    -webkit-transform:translate(3px, 10px);
    -ms-transform:translate(3px, 10px);
  }
  25% {
   transform:translate(0, 0);
    -moz-transform:translate(0, 0);
    -webkit-transform:translate(0, 0);
    -ms-transform:translate(0, 0);
  }
  50% {
    transform:translate(-3px, -25px);
    -moz-transform:translate(-3px, -25px);
    -webkit-transform:translate(-3px, -25px);
    -ms-transform:translate(-3px, -25px);
  }
  75% {
     transform:translate( 0px, -50px);
    -moz-transform:translate( 0px, -50px);
    -webkit-transform:translate( 0px, -50px);
    -ms-transform:translate( 0px, -50px);
    opacity: 1;
  }
  100% {
    transform:translate(3px, -100px);
    -moz-transform:translate(3px, -100px);
    -webkit-transform:translate(3px, -100px);
    -ms-transform:translate(3px, -100px);
    opacity: 0;
  }
}
@-webkit-keyframes wave{
  from {
    transform:translate(100px);
    -moz-transform:translate(100px);
    -webkit-transform:translate(100px);
    -ms-transform:translate(100px);
  }
  to {
    transform:translateX(-100px);
    -moz-transform:translateX(-100px);
    -webkit-transform:translateX(-100px);
    -ms-transform:translateX(-100px);
  }
}

@-webkit-keyframes bounce {
  0% {
   transform:translate(5px, 15px);
    -moz-transform:translate(5px, 15px);
    -webkit-transform:translate(5px, 15px);
    -ms-transform:translate(5px, 15px);
  }
  50% {
    transform:translate(0, -15px);
    -moz-transform:translate(0, -15px);
    -webkit-transform:translate(0, -15px);
    -ms-transform:translate(0, -15px);
  }
  100% {
    transform:translate(-5px, -37px);
    -moz-transform:translate(-5px, -37px);
    -webkit-transform:translate(-5px, -37px);
    -ms-transform:translate(-5px, -37px);
    opacity: 1;
  }
}

@-webkit-keyframes buble {
  0% {
    transform:translate(3px, 10px);
    -moz-transform:translate(3px, 10px);
    -webkit-transform:translate(3px, 10px);
    -ms-transform:translate(3px, 10px);
  }
  25% {
   transform:translate(0, 0);
    -moz-transform:translate(0, 0);
    -webkit-transform:translate(0, 0);
    -ms-transform:translate(0, 0);
  }
  50% {
    transform:translate(-3px, -25px);
    -moz-transform:translate(-3px, -25px);
    -webkit-transform:translate(-3px, -25px);
    -ms-transform:translate(-3px, -25px);
  }
  75% {
     transform:translate( 0px, -50px);
    -moz-transform:translate( 0px, -50px);
    -webkit-transform:translate( 0px, -50px);
    -ms-transform:translate( 0px, -50px);
    opacity: 1;
  }
  100% {
    transform:translate(3px, -100px);
    -moz-transform:translate(3px, -100px);
    -webkit-transform:translate(3px, -100px);
    -ms-transform:translate(3px, -100px);
    opacity: 0;
  }
}
/***************************/









html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, a, img, small, sub, b, dl, dd, dt, ul, li, label, article, details, footer, header, menu, nav, input, textarea, select {
	border: 0;
	outline: 0;
	padding: 0;
	margin: 0;
	font-family: 'montserrat';
	font-weight:300;
}
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html, body {
	 font-family: 'montserrat';
	font-size: 13px;
	font-weight: 300;
	color: #0a2a3b;
	height: 100%;
	width: 100%;
	background: #e2e2e2;
	line-height: 19px;
}
body {
	overflow-x: hidden;
}
.overHidden{
  overflow:hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	font-family: 'montserrat', serif;
	color: #000000;
}
strong, b {
	font-weight: 400 !important;		
}
h1 {
	font-size: 36px;
	color: #000000;
	margin-bottom: 15px;
}
p {	}
b {	}
a:hover, a:active, a:focus, button, input.submit, input[type="submit"], input[type="reset"], input[type="button"], input[type="image"] { outline: 0; }
a { 	text-decoration: none; }
a, button, input.submit, input[type="submit"], input[type="reset"], input[type="button"], input[type="image"], .animationcss, *:before, *:after{
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
li {
	/*list-style: none;*/
}
a { 	outline: 0; }
a:hover { 	text-decoration: none; color:#c1d101;  }
form { 	padding: 0; 	margin: 0; }
img { 	display: block;  }
img[usemap] {
	border: none;
	height: auto;
	max-width: 100%;
	width: auto;
}
input{
	outline:none;
	box-shadow: unset;
}
/* ANIMAÇÕES AO APARECER */
.element_from_top {
	top: -50px;
	padding-right: 0px;
	
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	
	/* IE 5-7 */
	filter: alpha(opacity=0);
	
	/* Netscape */
	-moz-opacity: 0;
	
	/* Safari 1.x */
	-khtml-opacity: 0;
	
	/* Good browsers */
	opacity: 0;
	
	position: relative;
}
.element_from_bottom {
	bottom: -50px;
	padding-left: 0px;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	
	/* IE 5-7 */
	filter: alpha(opacity=0);
	
	/* Netscape */
	-moz-opacity: 0;
	
	/* Safari 1.x */
	-khtml-opacity: 0;
	
	/* Good browsers */
	opacity: 0;
	position: relative;
}
.element_from_left {
	left: -80px;
	padding-right: 0px;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	
	/* IE 5-7 */
	filter: alpha(opacity=0);
	
	/* Netscape */
	-moz-opacity: 0;
	
	/* Safari 1.x */
	-khtml-opacity: 0;
	
	/* Good browsers */
	opacity: 0;
	position: relative;
}
.element_from_right {
	right: -80px;
	padding-left: 0px;
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	
	/* IE 5-7 */
	filter: alpha(opacity=0);
	
	/* Netscape */
	-moz-opacity: 0;
	
	/* Safari 1.x */
	-khtml-opacity: 0;
	
	/* Good browsers */
	opacity: 0;
	position: relative;
}
.element_fade_in {
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	
	/* IE 5-7 */
	filter: alpha(opacity=0);
	
	/* Netscape */
	-moz-opacity: 0;
	
	/* Safari 1.x */
	-khtml-opacity: 0;
	
	/* Good browsers */
	opacity: 0;
	position: relative;
	padding-left: 0px;
	right: 0px;
}
@media only screen and (max-width: 800px) {
	.element_from_left {
		left: 0px;
	}
	
	.element_from_right {
		right: 0px;
	}		
}




.mask {
	background-color: #e2e2e2;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 10000000;
	display: table;
	text-align: center;
}
#loader {
	display: table-cell;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.mask2 {
  background: rgba(10,42,59,0.9);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 500;
  display: none;
}





/* Parallax Styles */
	.parallax {
		text-align: center;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: fixed !important;
		behavior: url(css/backgroundsize.htc);
	}
	
	.parallax-overlay {
		background-color:rgba(0,0,0,0.80);
	}
	@media only screen and (max-width: 675px) {
		.parallax {
			display:none !important;	
		}
	}
	


.mainDiv {
	display: table;
	width:100%;
	height:100%;
}
@media only screen and (max-width: 900px) {
	.mainDiv {
		padding-top:145px
	}
	.mainDiv.home{
		padding-top:0px
	}
}
.row1 {
	width: 100%;
	height: 100%;
	display: table-row;
	vertical-align: top;
}
.row2 {
	height: 100%;
	display: table-row;
	width: 100%;
	vertical-align: bottom;
}
.div_100 {
	display: table;
	width: 100%;
}
.div_50 {
	display: table-cell;
	width: 50%;
	vertical-align:top
}
.div_33 {
	display: table-cell;
	width: 33.3333%;
}
.div_table_cell {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
}
.container_1280 {
	display: table;
	width: 100%;
	max-width: 1280px;
	margin: auto;
}
.container_900 {
	display: table;
	width: 100%;
	margin: auto;
}

.margem_0_20{
	padding: 0 20px;
}
.margem_20_0{
	padding: 20px 0;
}
.margem_0_40{
	padding: 0 40px;
}
.margem_40_0{
	padding: 40px 0;
}
.margem_60_0{
	padding: 60px 0 140px 0;
}

.margem_grande{
	padding: 65px 0 100px 0;
	max-width:870px;
	margin:auto
}
.margem_grandeprod{
	padding: 65px 0 60px 0;
	max-width:870px;
	margin:auto
}
.margem_grandeprodFinal{
	padding: 65px 0 160px 0;
	max-width:870px;
	margin:auto
}
.margem_grandee{
	padding: 65px 0 100px 0;
	max-width:1200px;
	margin:auto
}

.empresas_pq_tudo{
	width:100%; 
	position:relative;
	display:table;
}
.empresas_pq {
	position:relative; 
	max-width:140px; 
	display:inline-block; 
	padding-right:5px; 
	padding-bottom:5px; 
	cursor:pointer
}
/*.PQ{
	background:url(imgs/mask/PQ.png) no-repeat center;
}
.PQ:hover{
	background:url(imgs/mask/_PQ.png) no-repeat center;
}
.TQ{
	background:url(imgs/mask/TQ.png) no-repeat center;
}
.TQ:hover{
	background:url(imgs/mask/_TQ.png) no-repeat center;
}
.LOG{
	background:url(imgs/mask/LOG.png) no-repeat center;
}
.LOG:hover{
	background:url(imgs/mask/_LOG.png) no-repeat center;
}
.TCC{
	background:url(imgs/mask/TCC.png) no-repeat center;
}
.TCC:hover{
	background:url(imgs/mask/_TCC.png) no-repeat center;
}*/
.PQ{
  background:url(imgs/mask/RNM_PQ.jpg) no-repeat center;
  background-size: contain;
}
.PQ:hover{
  background:url(imgs/mask/_RNM_PQ.jpg) no-repeat center;
  background-size: contain;
}
.TQ{
  background:url(imgs/mask/RNM_TQ.jpg) no-repeat center;
  background-size: contain;
}
.TQ:hover{
  background:url(imgs/mask/_RNM_TQ.jpg) no-repeat center;
  background-size: contain;
}
.LOG{
  background:url(imgs/mask/LOG.jpg) no-repeat center;
  background-size: contain;
}
.LOG:hover{
  background:url(imgs/mask/_LOG.jpg) no-repeat center;
  background-size: contain;
}
.TCC{
  background:url(imgs/mask/RNM_TCC.jpg) no-repeat center;
  background-size: contain;
}
.TCC:hover{
  background:url(imgs/mask/_RNM_TCC.jpg) no-repeat center;
  background-size: contain;
}
.flexaco{
  background:url(imgs/mask/FLE.jpg) no-repeat center;
  background-size: contain;
}
.flexaco:hover{
  background:url(imgs/mask/_FLE.jpg) no-repeat center;
  background-size: contain;
}
.inchemica{
  background:url(imgs/mask/INC.jpg) no-repeat center;
  background-size: contain;
}
.inchemica:hover{
  background:url(imgs/mask/_INC.jpg) no-repeat center;
  background-size: contain;
}
.quimitejo{
  background:url(imgs/mask/QUI.jpg) no-repeat center;
  background-size: contain;
}
.quimitejo:hover{
  background:url(imgs/mask/_QUI.jpg) no-repeat center;
  background-size: contain;
}
.limsaoleo{
  background:url(imgs/mask/LIM.jpg) no-repeat center;
  background-size: contain;
}
.limsaoleo:hover{
  background:url(imgs/mask/_LIM.jpg) no-repeat center;
  background-size: contain;
}
.img_home_bola{ width:540px;}



.div_100.home.margem_0_20{
	padding-top:70px
}

@media only screen and (max-width:1360px) {
	.margem_60_0{	padding: 60px 40px 140px 40px;}
}
@media only screen and (max-width:1280px) {
	.margem_60_0{	padding: 90px 0px 100px 0px;}
	.container_1280 {	padding-left:40px; padding-right:40px}
	.margem_grande{		padding: 65px 40px 100px 40px;	}
	.margem_grandeprodFinal{padding: 65px 40px 160px 40px;}

	.margem_grandeprod{	padding: 65px 40px 60px 40px;}
	.margem_grandee{	padding: 65px 40px 100px 40px;}
	
	.PQ img, .TQ img .LOG img, .TCC img{ width:100%;}

	.img_home_bola{ width:100%; max-width:540px}
	.img_home_bola img{ width:100%; max-width:540px}

}

@media only screen and (max-width:900px) {
	.div_50 {	display: table;	width: 100%;	}
	.div_50.emp{	display: table-cell;	width: 50%;		}
	
	.container_900 {width: 100%; padding:0 40px}
	.container_1280.margem_60_0.pagina_inicial{
		padding-left:40px !important;
		padding-right:40px !important;
	}
	
	
	.img_home_bola {
		margin-top:100px;
		margin-bottom:40px;
		max-width:none;
	}
	.img_home_bola img {
		margin:auto;
	}
	.home.margem_0_20{
		padding: 0px 0px;
	}
	.home.margem_0_20{
		padding: 0px 0px;
	}
}
@media only screen and (max-width:707px) {
	.div_50.emp{	display: table;	width: 100%;	 }
	.img_home_bola {
		margin-top:70px;
		margin-bottom:40px;
	}
}
@media only screen and (max-width:600px) {
	.conteudo_esconde{
		display:none;
	}
}
@media only screen and (max-width:480px) {
	.container_1280 {	padding-left:20px; padding-right:20px}
	.margem_grande{		padding: 65px 20px 100px 20px;	}
	.margem_grandeprod{	padding: 65px 20px 60px 20px;}
	.margem_grandeprodFinal{padding: 65px 20px 160px 20px;}
	.margem_grandee{	padding: 65px 20px 100px 20px;}
	.container_900 {width: 100%; padding:0 20px}
	.container_1280.margem_60_0.pagina_inicial{		padding-left:20px !important;		padding-right:20px !important;	}
	.div_100.home.margem_0_20{	padding-top:50px;  }
	
	
	.img_home_bola {
		margin-top:40px;
		margin-bottom:40px;
	}
}



/* MAPA site */
.mapa_base{
	margin-bottom:30px;
	font-size:15px;
	color:#0a2a3b;
	font-weight:500 !important;
}
.mapa_base a{
	font-size:15px;
	color:#0a2a3b;
	font-weight:500 !important;
	line-height:23px;
}

.mapa_base.pq{
	margin-bottom:30px;
	font-size:14px;
	color:#0a2a3b;
	font-weight:300 !important;
}
.mapa_base.pq a{
	font-size:14px;
	color:#0a2a3b;
	font-weight:300 !important;
	line-height:23px;
}


.mapa_base2{
	padding-left:20px;
	font-size:13px;
	color:#0a2a3b;
}
.mapa_base2 a{
	font-size:13px;
	color:#0a2a3b;
}
.mapa_base3{
	padding-left:40px;
	font-size:12px;
	color:#0a2a3b;
}
.mapa_base3 a{
	font-size:12px;
	color:#0a2a3b;
}


.mapa_base a:hover, .mapa_base2 a:hover, .mapa_base3 a:hover{	color:#8f9b01;}


/* HOME */
.hm_tit {
    font-family: 'montserrat';
	font-weight: 700;
	font-size: 39px;
	line-height:54px;
	/*color: #092f3e;*/
  color: #ffffff;
	text-transform:uppercase;
	text-align:center;
	padding-bottom:30px
}
.hm_tit.home {
  color: #0a2a3b;
}
.hm_txt {
    font-family: 'montserrat';
	font-weight: 300;
	font-size: 15px;
	line-height:19px;
	/*color: #092f3e;*/
  color: #ffffff;
	text-align:center;
	margin-bottom:40px
}

.hm_txt.home {
  color: #0a2a3b;
}
.hm_bt {
    font-family: 'montserrat';
	font-weight: 400;
	font-size: 12px;
	line-height:38px;
	height:38px;
	color: #ffffff;
	text-transform:uppercase;
	text-align:center;
	margin:auto;
	cursor:pointer;
	background-color:#0a2a3b;
	border-radius:20px;
	width:150px;
}
.hm_bt:hover {
	color: #ffffff;
	background-color:#c3d600;
}

.titulos{
    font-family: 'montserrat';
	font-weight: 300;
	font-size: 26px;
	line-height:29px;
	color: #354954;
	text-align:left;
	margin-bottom:40px
}

.home_video {
	max-width:425px;	
}
.txt_veja {
	text-align:left;	
}

.banner_logo_inicio{	background-size:cover !important;}

@media only screen and (max-width:1280px) {
	.hm_tit {		font-size: 38px;		line-height:52px;			}
}
@media only screen and (max-width:1180px) {
	.hm_tit {		font-size: 37px;		line-height:50px;}
}
@media only screen and (max-width:1080px) {
	.hm_tit {		font-size: 36px;		line-height:50px; padding-bottom:20px;	}
	.hm_txt {font-size: 14px;	line-height:19px; margin-bottom:40px}
}
@media only screen and (max-width:980px) {
	.hm_tit {		font-size: 35px;		line-height:50px;		}
	.hm_txt {font-size: 13px;	line-height:19px; margin-bottom:40px}
}
@media only screen and (max-width:900px) {
	.hm_tit {		font-size: 34px;		line-height:45px;		}
	.home_video {		max-width:none;		}	
	.txt_veja {		text-align:center;		}
  .banner_logo_inicio{  min-height: 100% !important}
}
@media only screen and (max-width:880px) {
	.hm_tit {		font-size: 33px;		line-height:45px;		}
	.hm_txt {font-size: 12px;	line-height:17px; margin-bottom:40px}

}
@media only screen and (max-width:780px) {
	.hm_tit {		font-size: 30px;		line-height:40px;	}
	.hm_txt {font-size: 12px;	line-height:17px; margin-bottom:40px}
}
@media only screen and (max-width:680px) {
	.hm_tit {		font-size: 28px;		line-height:30px;	}
	.hm_txt {font-size: 12px;	line-height:17px; margin-bottom:40px}
}
@media only screen and (max-width:580px) {
	.hm_tit {		font-size: 26px;		line-height:29px;		}
}
@media only screen and (max-width:480px) {
	.hm_tit {		font-size: 24px;			}
}


.bn_pq{
    font-family: 'montserrat';
	font-weight: 400;
	font-size: 22px;
	line-height:27px;
	color: #ffffff;
	text-align:left;
	height:65px;
	text-transform:uppercase;
}
.home_emp .bn_pq{
	margin-bottom:21px;
	height:44px;
}
.bn_pq_1{
    font-family: 'montserrat';
	font-weight: 400;
	font-size: 22px;
	line-height:27px;
	color: #ffffff;
	text-align:left;
	height:55px;
	text-transform:uppercase;
}
.bn_pq_txt{
    font-family: 'montserrat';
	font-weight: 300;
	font-size: 12px;
	line-height:17px;
	color: #ffffff;
	text-align:left;
	height:75px;
}
.bn_pq_txt_1{
    font-family: 'montserrat';
	font-weight: 300;
	font-size: 12px;
	line-height:17px;
	color: #ffffff;
	text-align:left;
	height:100px;
	overflow:hidden
}
.bt_bt {
    font-family: 'montserrat';
	font-weight: 400;
	font-size: 10px;
	line-height:30px;
	height:30px;
	color: #ffffff;
	text-transform:uppercase;
	text-align:center;
	cursor:pointer;
	background-color:transparent;
	border:1px solid #ffffff;
	border-radius:20px;
	width:120px;
}

.linatopo1{
	height:5px;
	background-color:#bfc75f;
}
.linatopo2{
	height:5px;
	background-color:#009483;
}
.linatopo3{
	height:5px;
	background-color:#00a6cf;
}
.linatopo4{
	height:5px;
	background-color:#e53012;
}
.linatopo5{
  height:5px;
  background-color:#4dc0e0;
}
.linatopo6{
  height:5px;
  background-color:#3fd5ae;
}
.linatopo7{
  height:5px;
  background-color:#9d164f;
}
@media only screen and (max-width:1245px) {
	.bn_pq_1{	font-size: 20px; line-height:24px;	height:50px;}
	.bt_bt { margin-top:10px}
	.bt_bt {	font-size: 9px;	line-height:25px;	height:25px;width:100px;}
}
@media only screen and (max-width:1180px) {
	.bn_pq, .bn_pq_1{ 
    font-size: 18px;
    line-height: 22px;
    height: 55px;
  }
	.home_emp .bn_pq {
		height:40px;
		margin-bottom:15px;	
	}
	.bn_pq_txt{	
    height:95px;
    font-size: 11px;
    line-height: 14px;
  }
}
@media only screen and (max-width:1080px) {
	.bn_pq, .bn_pq_1{ font-size: 18px; line-height:23px; 	}
}
@media only screen and (max-width:1000px) {
	.bn_pq, .bn_pq_1{ font-size: 16px; line-height:20px; height:40px;	}
	.home_emp .bn_pq {
		height:30px;
		margin-bottom:10px;	
	}
	.bn_pq_txt{	height:100px;}
}
@media only screen and (max-width:965px) {
	.bn_pq_txt{	height:110px;}
}
@media only screen and (max-width:920px) {
	.bn_pq, .bn_pq_1{ font-size: 14px; line-height:18px; height:40px;	}
	.home_emp .bn_pq {
		height:30px;
		margin-bottom:10px;	
	}
}
@media only screen and (max-width:900px) {
	.container_1280.margem_60_0{ padding-left:20px !important; padding-right:20px!important}
	.bt_bt { margin-top:10px}
	/*.bn_pq_txt{	height:85px;}*/
	.home_emp .bn_pq {
		height:40px;
		margin-bottom:10px;
	}
}
@media only screen and (max-width:970px) {
	.bt_bt {	font-size: 9px;	line-height:25px;	height:25px;width:100px;}
}
@media only screen and (max-width:740px) {
	.bn_pq, .bn_pq_1{ font-size: 12px; line-height:16px; height: 34px;	}
  .bn_pq_txt {
      height: 125px;
  }
}
@media only screen and (max-width:670px) {
	.bt_bt {	font-size: 10px;	line-height:29px;	height:29px;width:110px; float:right}
	.home_emp .bn_pq {
		height:35px;
		margin-bottom:10px;	
	}
}
@media only screen and (max-width:550px) {
	.bn_pq_txt{	height:95px;}
}


/*@media only screen and (max-width:900px) {
	.linatopo1, .linatopo2, .linatopo3, .linatopo4 {		position:absolute;		top:0;		left:0;	width:100%;		}
}
*/

.txt_empresas{
	width:100%;
	/*max-width:510px; */
	position:relative;
	display:table;
	padding:40px 40px 40px 0;
}
.txt_empresas2{
	width:100%;
	height:auto;
	position:relative;
	display:table;
	/*padding-bottom:80px;*/
    overflow: hidden;
	vertical-align:middle!important
}

.txt_empresas3{
	width:100%;
	position:relative;
	display:table;
	max-width:610px; 
	padding:0px 40px;
}
.txt_empresas4{
	width:100%;
	max-width:510px; 
	position:relative;
	display:table;
	padding:0px 40px 0 0;
}

.img_empresas1{
	background-color:#c2d102;
	vertical-align:middle;
	margin:auto;
	text-align:center;
	width:100%;
}
.img_empresas2{
	background-color:#009483;
	vertical-align:middle;
	margin:auto;
	text-align:center;
	width:100%;
}
.img_empresas3{
	background-color:#00a6cf;
	vertical-align:middle;
	margin:auto;
	text-align:center;
	width:100%;
}
.img_empresas4{
	background-color:#e53012;
	vertical-align:middle;
	margin:auto;
	text-align:center;width:100%;
}

.img_empresas1, .img_empresas2, .img_empresas3, .img_empresas4, .img_empresas5, .img_empresas6, .img_empresas7{ width:100%; max-width:640px; margin:auto}



@media only screen and (max-width:980px) {
	.txt_empresas{	padding:60px 40px 40px 0;}
	.txt_empresas2{ padding-top:20px;}

}
@media only screen and (max-width:900px) {
	.txt_empresas{	padding:60px 40px 40px 40px;}
	.txt_empresas4{	padding:0px 40px;}
	.emp_titulo1, .emp_titulo2, .emp_titulo3, .emp_titulo4, .emp_titulo5, .emp_titulo6, .emp_titulo7{ padding-left:40px;}
	.txt_empresas2{ padding-top:0px;}
}
@media only screen and (max-width:707px) {
	.txt_empresas{	padding:60px 40px 40px 40px; max-width:100%; }
	.emp_titulo1, .emp_titulo2, .emp_titulo3, .emp_titulo4, .emp_titulo5, .emp_titulo6, .emp_titulo7{ padding-left:40px;}
	.txt_empresas3{ padding:0 40px}
	.txt_empresas4{	padding:0px 40px;max-width:100%;}

	.img_empresas1, .img_empresas2, .img_empresas3, .img_empresas4, .img_empresas5, .img_empresas6, .img_empresas7{ padding:0 40px; max-width:680px;   background-color:transparent }
}

@media only screen and (max-width:670px) {
	.txt_empresas2{ padding-top:20px;}
}

@media only screen and (max-width:557px) {
	.txt_empresas{	padding:60px 40px 40px 40px; max-width:100%; }
	.emp_titulo1, .emp_titulo2, .emp_titulo3, .emp_titulo4, .emp_titulo5, .emp_titulo6, .emp_titulo7{ padding-left:40px;}
	.txt_empresas3{ padding:0 40px}
	.txt_empresas4{	padding:0px 40px;max-width:100%;}
	.img_empresas1, .img_empresas2, .img_empresas3, .img_empresas4, .img_empresas5, .img_empresas6, .img_empresas7{ padding:0 20px; background-color:transparent }
}
@media only screen and (max-width:407px) {
	.txt_empresas{	padding:60px 20px 40px 20px; max-width:100%; }
	.emp_titulo1, .emp_titulo2, .emp_titulo3, .emp_titulo4, .emp_titulo5, .emp_titulo6, .emp_titulo7{ padding-left:20px;}
	.txt_empresas3{ padding:0 20px}
	.txt_empresas4{	padding:0px 20px;max-width:100%;}
	.img_empresas1, .img_empresas2, .img_empresas3, .img_empresas4, .img_empresas5, .img_empresas6, .img_empresas7{ padding:0 10px; background-color:transparent }
}





.home_bann_cont{
	height:460px; 
  vertical-align:middle; 
/*  padding-bottom:150px;*/
  padding-bottom: 70px;
}
.blocos_cont{
	position:absolute; 
	margin-top:-230px;
}
.barra_menu{
  background-color: #1f3c4b;
  padding: 20px 0;
}
.barra_menu.empresa{
  position: fixed;
  top: 0;
  z-index: 2222;
}
.barra_menu .logos{
  display: table-cell;
  vertical-align: middle;
  cursor: pointer;
  padding: 0 10px;
}
.barra_menu .logos .logo1 { 
  width: 100%;
  max-width: 77px;
  margin: auto;
}
.barra_menu .logos .logo2 { 
  width: 100%;
  max-width: 77px;
  margin: auto;
}
.barra_menu .logos .logo3 { 
  width: 100%;
  max-width: 77px;
  margin: auto;
}
.barra_menu .logos .logo4 { 
  width: 100%;
  max-width: 77px;
  margin: auto;
}
.barra_menu .logos .logo5 { 
  width: 100%;
  max-width: 138px;
  margin: auto;
}
.barra_menu .logos .logo6 { 
  width: 100%;
  max-width: 121px;
  margin: auto;
}

.barra_menu .logos .logo7 { 
  width: 100%;
  max-width: 118px;
  margin: auto;
}
.barra_menu .logos .logo8 { 
  width: 100%;
  max-width: 100px;
  margin: auto;
}


.barra_menu.is-fixed{
  position: fixed;
  top: 0;
  z-index: 2222;
}

.blocos_cont2{
	display:none
}




@media only screen and (max-width:1280px) {
	.home_bann_cont{	height:590px;  }
}
@media only screen and (max-width:1180px) {
	.home_bann_cont{	height:570px; }
}
@media only screen and (max-width:1024px) {
	.home_bann_cont{	height:480px; }
}
@media only screen and (max-width:980px) {
	.blocos_cont, .blocos_cont3{	margin-top:-210px;}
}
@media only screen and (max-width:900px) {
	.home_bann_cont{	height:570px;  /*padding-bottom:100px;*/ padding-bottom: 30px; }
	.blocos_cont{	margin-top:-230px;}
	/*.blocos_cont{		position:relative; 	margin-top:0px;	margin-bottom: 40px;	}
	.blocos_cont .grid{		display:inline-block;		vertical-align:top;		width:50%;	}
	.home_bann_cont{		vertical-align:middle; padding-bottom:0px	}
	.hm_tit {		font-size: 35px;		line-height: 44px;		margin-bottom: 40px;	}*/

  .barra_menu{
    display: none;
  }
  #home{
    padding-top: 0 !important;
  }
}
@media only screen and (max-width:670px) {
	.home_bann_cont{	height:470px;  padding-bottom:80px; }
	.blocos_cont{ display:none}
	.blocos_cont2{ display:block;	position:absolute; 	margin-top:-210px;}
}





.tit_areas_neg{
    font-family: 'montserrat';
	font-weight: 400;
	font-size: 20px;
	line-height:66px;
	color: #0a2a3b;
	text-transform:uppercase;
	text-align:center;
	position:absolute; 
	top:-33px;
	background:url(imgs/elem/areas_titulo.png) no-repeat center; 
	height:66px; 
	width:301px
}

.home_dest_cont, .home_noticias{
	height:100%;
	overflow:hidden;
	position:relative;
	max-height:500px;
	display:block;
}

.home_areas{
	position:relative;
	display:block;
	width:100%;
	vertical-align:top;	
}
.home_areas .gallery-cell{
	width:300px;
}
.area_bola_cont{
	padding:0 50px;
	position:relative;
}
.home_areas .area_bola_cont:before{
	content:'';
	display:inline-block;
	vertical-align:top;
	height:100%;
	width:75px;
	position:absolute;
	left:0;
	top:0;
}
.home_areas .area_bola_cont:after{
	content:'';
	display:inline-block;
	vertical-align:top;
	height:100%;
	width:75px;
	position:absolute;
	right: 0px;
	top:0;
}
.home_areas .gallery-cell:nth-child(even) .area_bola_cont:before{
	background:url(imgs/elem/ar_before2.png) no-repeat center;
	background-size:cover;
	width:76px;
}
.home_areas .gallery-cell:nth-child(odd) .area_bola_cont:after{
	background:url(imgs/elem/ar_after1.png) no-repeat center bottom;
	background-size:cover;
}

.home_areas .gallery-cell:nth-child(odd) .area_bola_cont:before{
	background:url(imgs/elem/ar_before1.png) no-repeat center top;
	background-size:cover;
}
.home_areas .gallery-cell:nth-child(even) .area_bola_cont:after{
	background:url(imgs/elem/ar_after2.png) no-repeat center bottom;
	background-size:cover;
}

.home_areas .gallery-cell:first-child .area_bola_cont:before{
	background:none !important ;
}
.home_areas .gallery-cell:last-child .area_bola_cont:after{
	background:none !important;
}


.home_areas .gallery-cell:nth-child(odd){
	padding-top:45px;
}
.home_areas .gallery-cell:nth-child(even){
	padding-top:190px;
}
.home_areas .flickity-page-dots{
	bottom:10px !important;
	width:100%;
}
.home_areas .flickity-page-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50%;
}

.area_bola_bg{
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
	width:100%;
	height:100%;
	position: relative;
	z-index: 10;
}


.area_bola{
	position:relative;
	display:block;
	-webkit-border-radius: 50%; /* Saf3+, Chrome */
	border-radius: 50%; /* Opera 10.5, IE 9 */
	/*-moz-border-radius: 30px;  Disabled for FF1+ */
	overflow:hidden;
    border:solid 4px rgba(255,255,255,0.3);
    width:300px;
    height:300px;
	color:rgba(10,42,59,0.90);
	
	
}
.home_areas_cont{
background:url(imgs/topos/areas_negocioBG.jpg) no-repeat center; height:547px; position:relative;
}
@media only screen and (max-width:950px) {
	.area_bola{
		width:250px;
   		height:250px;
	}
	.area_bola_cont{
		padding:0 42px;
		position:relative;
	}
	.home_areas .area_bola_cont:after, .home_areas .area_bola_cont:before{
		width:63px;
	}
	.home_areas .gallery-cell:nth-child(even) .area_bola_cont:before{
		width:63px;
	}
	.home_areas .gallery-cell:nth-child(even) .area_bola_cont:after{
		background:url(imgs/elem/ar_after2.png) no-repeat center -30px;
		background-size:cover;
	}
	.home_areas .gallery-cell:nth-child(even) .area_bola_cont:before{
		background: url("imgs/elem/ar_before2.png") no-repeat scroll center -48px;
	}
	
}
@media only screen and (max-width:600px) {
	.home_areas_cont{
		height:380px;
	}
	.home_areas .gallery-cell:nth-child(even){
		padding-top:140px;
	}
	.area_bola{
		width:200px;
   		height:200px;
	}
	.home_areas .gallery-cell:nth-child(odd) .area_bola_cont:before{
		background:url(imgs/elem/ar_before1.png) no-repeat center -51px;
		background-size:cover;
	}
	.home_areas .gallery-cell:nth-child(even) .area_bola_cont:after{
		background:url(imgs/elem/ar_after2.png) no-repeat center -31px;
		background-size:cover;
	}

}

.home_areas .swiper-slide:nth-child(odd){
	padding-top:45px;
}
.home_areas .swiper-slide:nth-child(even){
	padding-top:190px;
}

.area_bola_cor{
	position:absolute;
	top:0;
    border:0;
    width: 100%;
	height: 100%;
	background-color:rgba(10,42,59,0.40);
	z-index:2;
	cursor:pointer
}
.area_bola:hover .area_bola_cor{
   width: 100%;
	height: 100%;
	background-color:#c3d600;
	z-index:2;
}

.bt_area{
	position:absolute;
	text-align:center;
	color:#ffffff;
	font-size:15px;
	font-weight:500;
	text-transform:uppercase;
	background-color:transparent;
	min-height:36px;
	line-height:22px;
	padding:10px 20px;
	z-index:4; 
	cursor:pointer;
	
	top:50%;
	left:50%;
	
	-moz-transform:translateX(-50%) translateY(-50%);
	-webkit-transform:translateX(-50%) translateY(-50%);
	-ms-transform:translateX(-50%) translateY(-50%);
	transform:translateX(-50%) translateY(-50%);
}


.dest_icon_cont{
	width:76px;
	height:42px;
	display: inline-block;
	cursor:pointer;
	margin-top:1px;
	margin-right:50px;
	z-index: 2;
	float:right;
	background:url(imgs/elem/hm_serv.gif) no-repeat;
	vertical-align:top;
	
	}
.dest_icon_cont:hover{
	background:url(imgs/elem/hm_serv_.gif) no-repeat;
}

.dest_seta{
	width:83px;
	height:32px;
	display: inline-block;
	cursor:pointer;
	left:0;
	background:url(imgs/elem/hm_serv.png) no-repeat;
	vertical-align:bottom;
	
	position:relative;
	z-index: 2;
}
.dest_seta:hover{
	background:url(imgs/elem/hm_serv_.png) no-repeat;
}



@media only screen and (max-width:700px) {
	.titulos{	font-size: 21px;	line-height:24px;	margin-bottom:20px}
}

@media only screen and (max-width:400px) {
	.titulos {	font-size: 18px; line-height:20px;	padding-bottom:5px;}
}





/* SERVICOS */
.tit_servicos{
	color:#c3d600;
	background-color:#ffffff;
	border: 1px solid #c3d600;
	font-weight: 400;
	font-size: 14px;
	text-transform:uppercase;
	text-align:center;
	margin:auto;
	border-radius:20px;
	position:relative;
	padding:5px 10px;
	display:inline-block;
	vertical-align:top;
	
	/*max-width:500px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	*/
	/* Old browsers */
    background: linear-gradient(to top, #fff 50%, #c3d600 50%);
    background-size: 100% 200%;
    background-position:bottom;
}

.serv_cont:hover .tit_servicos{
	background-position:top;
	color:#fff;
}

.mais{
	background:url(imgs/servicos/+.png);
	width:29px;
	cursor:pointer;
	height:29px;
	margin-top:9px
}
.serv_cont:hover .mais{
	background:url(imgs/servicos/+_.png);
	width:29px;
	height:29px;
}
.mais3{height:38px;}

.abre{
	display:block !important;
}
.imagem_servicos{
	float:right;
	margin-left:40px;
	margin-bottom:20px;
}


@media only screen and (max-width:700px) {
	.tit_servicos{
		font-size: 13px;
	}
}
@media only screen and (max-width:540px) {
	.tit_servicos{
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		width:100%;
		max-width:320px;
		margin:auto;
	}
}
@media only screen and (max-width:460px) {
	.imagem_servicos{ 	float:none;	width:auto;	display:block;	margin:auto;		margin-bottom:40px;		margin-top:40px;}
	.tit_servicos, .serv_cont{
		text-align:center;
	}
	.tit_servicos{
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		width:100%;
		max-width:280px;
		margin:auto;
	}
}


/* EMPRESAS */
.emp_titulo1{
	color:#b2c004;
	font-weight: 400;
	font-size: 16px;
	text-transform:uppercase;
	margin-bottom:10px
}
.emp_titulo2{
	color:#009483;
	font-weight: 400;
	font-size: 16px;
	text-transform:uppercase;
	margin-bottom:10px
}
.emp_titulo3{
	color:#00a6cf;
	font-weight: 400;
	font-size: 16px;
	text-transform:uppercase;
	margin-bottom:10px
}
.emp_titulo4{
	color:#e53012;
	font-weight: 400;
	font-size: 16px;
	text-transform:uppercase;
	margin-bottom:10px
}
.emp_titulo5{
  color:#4dc0e0;
  font-weight: 400;
  font-size: 16px;
  text-transform:uppercase;
  margin-bottom:10px
}
.emp_titulo6{
  color:#3fd5ae;
  font-weight: 400;
  font-size: 16px;
  text-transform:uppercase;
  margin-bottom:10px
}
.emp_titulo7{
  color:#9d164f;
  font-weight: 400;
  font-size: 16px;
  text-transform:uppercase;
  margin-bottom:10px
}


/* NOTICIAS */
.noticia{ 
	cursor:pointer;
	/*border-right:3px solid transparent;*/
	display:inline-block;
	vertical-align:top;
	width: 50%;
	width: calc(50% - 50px);
	width: -webkit-calc(50% - 50px);
	width: -moz-calc(50% - 50px);
	margin-bottom:50px;
}
.noticia:nth-child(even){
	margin-left:50px;
}
.noticia:nth-child(odd){
	margin-right:50px;
}
@media only screen and (max-width:870px) {
	.noticia{ 
		width: 100%;
		margin-bottom:30px;
	}
	.noticia:nth-child(even){
		margin-left:0px;
	}
	.noticia:nth-child(odd){
		margin-right:0px;
	}
	.margem_not {
		padding: 30px 20px !important;
	}
	.noticias_pag {
		padding: 0px 0px 30px !important;
	}
}


.noticia.sel, .noticia:hover{
	background:url(imgs/elem/borda.png) no-repeat left top, url(imgs/elem/borda.png) no-repeat left bottom, url(imgs/elem/borda2.png) no-repeat right top;
/*	border-right:3px solid #c1c1c1;*/
	cursor:pointer;
}

.bordafundo{
/*	height:3px;
	background:url(imgs/elem/bg_noticias.png) no-repeat top left;
*/	
}
/*.noticia.sel .bordafundo, .noticia:hover .bordafundo{
	background:url(imgs/elem/borda.png) no-repeat left  bottom;
	width:100%;
	height:3px;
	display:table;
	position:relative;
}*/
.tit_noticias{
	color:#0a2a3b;
	font-weight: 400;
	font-size: 15px;
	text-transform:uppercase;
	margin-bottom:25px
}
.txt_noticias{
	color:#0a2a3b;
	font-size: 13px;
}
.tit_noticias.resumo{
	height:38px;
	overflow:hidden;
	margin-bottom:5px
}

.txt_noticias.resumo{
	height:76px;
	overflow:hidden;
}

.bt_noticias{
	color:#0a2a3b;
	background-color:#e2e2e2;
	border: 1px solid #0a2a3b;
	font-weight: 700;
	font-size: 10px;
	line-height:28px;
	height:28px;
	text-transform:uppercase;
	text-align:center;
	border-radius:20px;
	width:90px;
	padding:0 10px;
	cursor:pointer;
	margin-top:18px
}
.bt_noticias:hover, .noticia.sel .bt_noticias, .noticia:hover .bt_noticias{
	background-color:#c3d600;
	border: 1px solid #c3d600;
}
.data_bola1{
	width:83px;
	background:transparent;
	height:100%;
	vertical-align:top;
	padding-top:30px;
}
.noticia:hover .data_bola1{
	background:url(imgs/elem/bg_noticias.png) repeat-y top left;
}


.data_bola{
	text-align:center;
	vertical-align:middle;
	background-color:#ffffff;
	border-radius:55px;
	width:83px;
	height:83px;
	display:table-cell;
}

.dia_not{
	display: block;
	color:#c3d600;
	font-size:30px;
	line-height:30px;
	font-weight:400;
	text-align:center;
}
.mes_not{
  display: block;
	color:#c3d600;
	font-size:13px;
	line-height:14px;
	text-transform:uppercase;
	font-weight:400
}
@media only screen and (max-width:590px) {
	.dia_not{
		font-size:16px;
		line-height:16px;
		padding-top:2px;
	}
	.mes_not{
		font-size:12px;
		line-height:12px;
		margin-top:-2px;
	}
	.data_bola{
		width:53px;
		height:53px;
	}
	.data_bola1 {
   		width: 63px;
		padding-left: 10px;
	}
	.noticias_pag {
		padding-left: 10px !important;
	}

}
.margem_not{
	padding:30px 80px 40px 40px;	
}

.ficheiro{
	color:#ffffff;
	background-color:#c3d600;
	border: 1px solid #c3d600;
	font-weight: 400;
	font-size: 10px;
	line-height:24px;
	height:24px;
	text-transform:uppercase;
	text-align:center;
	border-radius:20px;
	width:150px;
	padding:0 10px;
	cursor:pointer;
	margin-top:18px
}
.ficheiro:hover{
	background-color:#0a2a3b;
	border: 1px solid #0a2a3b;
}
.share{
	color:#92989d;
	font-weight: 700;
	font-size: 10px;
	text-transform:uppercase;
	margin-top:25px
}

.div_50.home_dav{
	padding-right:40px;
	padding-top:30px;
	vertical-align:top;
	height:100%;
	background:url(imgs/elem/bg_noticias.png) repeat-y top left;
}















/* GRUPO */
.grupo_tit{
	color:#798388;
	font-weight: 700;
	font-size: 11px;
	line-height:19px;
	text-transform:uppercase;
	margin-top:20px;
	display:inline-block; 
}
.grupo_tit.linha{
	border-bottom:1px solid #798388
}
.grupo_col1{
	display:table-cell;
	position:relative;
	width:375px;
	padding-right:90px;
	vertical-align:top;
}
.grupo_col1 .content {
	width:285px;
}
@media only screen and (max-width:1100px) {
	.grupo_col1{
		width:305px;
		padding-right:60px;
	}
	.grupo_col1 .content {
		width:245px;
	}
}
.grupo_col2{
	width:auto;
	display:table-cell;
	position:relative;
	vertical-align:top;
}
.grupo_col2 .content {
	width:100%;
	height:auto;
    overflow-x: hidden;
	display:inline;
}
.grupo_col2 .content .texto_outer, .prod_q.texto_outer {
	width:100%;
	/*text-align:justify;*/
}
.grupo_col2 .content .texto_outer strong, .grupo_col2 .content .texto_outer b, .prod_q.texto_outer strong {
	font-weight: 400 !important;		
}
.grupo_col2 .content .texto_outer a {
	color:#9faf00;	
}
.grupo_col2 .content .texto_outer a:hover {
	color:#0a2a3b;	
}
.grupo_col2 .content .img_outer, .prod_q.img_outer {
	padding-bottom:30px;
	width:auto;
	max-width:50%;
}
.grupo_col2 .content .img_outer.right, .prod_q.img_outer.right {
	float:right;
	padding-left:40px;
}
.grupo_col2 .content .img_outer.left {
	float:left;
	padding-right:20px;
}
.grupo_col2 .content .img_outer.top30 {
	margin-top:-30px;
}
.grupo_col2 .content .cont_peq, .prod_q.cont_peq {
	display:none;	
}
.grupo_col2 .content .cont_grd, .prod_q.cont_grd {
	display:block;	
}
.grupo_col2 .content .padd_tb_40, .padd_tb_40 {
	padding:40px 0;
}
.grupo_col2 .content .padd_t_40 {
	padding-top:40px;
}
.grupo_col2 .content .item_list_group {
	margin-top:25px;	
}
.grupo_col2 .content .item_list_group .item_list {
	padding-left:20px;
	background:url(imgs/elem/seta_paginas.png) no-repeat left 5px;
	margin-top:10px;	
}
.grupo_col2 .content .item_list_group .item_list:first-child {
	margin-top:0px;		
}
.grupo_col2 .content .item_list_group .item_list_desc {
	padding-top:10px;
	padding-left:20px;
	padding-bottom:10px;	
}
@media only screen and (max-width:650px) {
	.grupo_col2 .content .cont_peq, .prod_q.cont_peq {
		display:block;	
	}
	.grupo_col2 .content .cont_grd, .prod_q.cont_grd {
		display:none;
	}	
}


.sub-menu, .sub-menu.sel{	
	font-size: 14px;
	color: #304652;
	text-align: left;
	cursor:pointer;
	padding:9px 10px;
	height:auto;
	line-height:17px;
	width:100%;
	border-bottom:1px solid #c2c2c2;
}
.sub-menu:hover, .sub-menu.sel{
	background-color:#c1d101;
}

.sub-menu:first-child{
	margin-top:70px;
	border-top:1px solid #c2c2c2;
}

.sub-menu a {
  font-size: 14px;
  color: #304652;
  line-height:17px;
  display: block;
}

.sub-menu a:hover {
  color: #304652;
}


.tit_pq_grupo{
	color:#304652;
	font-weight: 700;
	font-size: 16px;
	text-transform:uppercase;
	margin-top:60px;
	margin-bottom:20px;
	display:inline-block;
	padding-left:10px
}


@media only screen and (max-width:900px) {
	.grupo_col1{ display:none;	}
	.grupo_col2{ width:100%;}
}



/* EMPRESAS CONTEUDOS*/
.emp_frota_col1{
	display:table-cell; 
	vertical-align:middle;
	padding-right:100px
}
.emp_frota_col2{
	display:table-cell;  
	vertical-align:top; 
	width:50%
}
.emp_frota_col2 img{
	width:100%
}
.tp_frota_gr{
	width:100%; 
	display:table
}
.tp_frota_pq{
	display:none
}
.frota_img2{
	display:none
}
@media only screen and (max-width:1100px) {
	.emp_frota_col1{	padding-right:70px}
}
@media only screen and (max-width:900px) {
	.emp_frota_col1{		display:table;	padding-right:0px; width:100%;padding:40px	}
	.emp_frota_col2{	display:table; width:100%; padding:40px; padding-top:0	}
	.tp_frota_gr{ padding:0 40px;}
	.tp_frota_gr{ display:none}
	.tp_frota_pq{width:100%; display:table; max-width:400px; margin:auto}
	.frota_img1{	display:none}
	.frota_img2{	display:block}
}
@media only screen and (max-width:480px) {
	.emp_frota_col1{		display:table;	padding-right:0px; width:100%;padding:40px 20px	}
	.emp_frota_col2{	display:table; width:100%; padding:40px 20px; padding-top:0	}
}


.seguranca, .segurancaa{
	width:100%; display:table;
/*	padding-top:100px*/
}
.segurancaa{
	padding-top:20px
}
.seguranca1{
	display:table-cell;
	 height:auto; 
 	margin:auto; 
	 max-width:383px; 
	 width:33.33%;
	 text-align:left	 
}
.seguranca2{
	display:table-cell;
	height:auto; 
	margin:auto; 
	max-width:383px; 
	width:33.33%
	 
}
.seguranca3{
	display:table-cell;
	height:auto; 
	margin:auto; 
	max-width:383px;
	width:33.33%;
	text-align:right
}

.transportes .div_100.trans_gr .div_50.emp .margem_0_20.txt_empresas{
	padding:0 40px 0 0
}
.trans_pq, .trans_peque{
	display:none
}

.transportes .div_100 .div_50.emp.margem_grande .txt_empresas4{ padding-top:0}
.transportes .div_100 .div_50.emp.margem_grande .txt_empresas3{ padding-top:0}
.transportes .div_100 .div_50.emp.margem_grande { padding-top:50px}


@media only screen and (max-width:1250px) {
	.seguranca1 img{ width:90%; margin-left:0}
	.seguranca2 img{width:90%; margin:auto}
	.seguranca3 img{width:90%; margin-right:0; float:right}
}
@media only screen and (max-width:1024px) {
	.seguranca1 img{ width:95%; margin-left:0}
	.seguranca2 img{width:95%; margin:auto}
	.seguranca3 img{width:95%; margin-right:0; float:right}
}

@media only screen and (max-width:970px) {
	.trans_gr { display:none}
	.trans_pq{ 	display:table; }
}
@media only screen and (max-width:900px) {
	/*.seguranca{ padding:40px; padding-bottom:0;padding-top:60px}*/
	.segurancaa{ padding:40px; padding-bottom:0; padding-top:20px}
	.trans_pq{ 	padding:0 40px}
}
@media only screen and (max-width:707px) {
	.transportes .div_100 .div_50.emp.margem_grande { padding-top:15px}
	.trans_pq{ 	padding-bottom:40px;}
  .trans_pq { display:none}
  .trans_peque{   display:table; padding:40px }
}
@media only screen and (max-width:770px) {
	/*.seguranca1, .seguranca2, .seguranca3{	display:table;	 max-width:353px; 	 width:100%; padding-bottom:40px;}*/
	.seguranca3{padding-bottom:0px;}
}
@media only screen and (max-width:670px) {
	.seguranca1, .seguranca2, .seguranca3{ display:table;   max-width:353px;    width:100%; padding-bottom:40px;}
}
@media only screen and (max-width:480px) {
	.trans_peque{ padding:20px }
}




.metodologia2{ 
	display:none
}
.log_met_txt{
	width:50%;
	margin:auto;
	padding:100px 0;
	text-align:center
}
@media only screen and (max-width:1024px) {
	.log_met_txt{	width:70%;	padding:100px 0}

}
@media only screen and (max-width:768px) {
	.metodologia{ display:none}
	.metodologia2{ display:block}
	.log_met_txt{	width:100%;	padding:50px 40px 60px 40px;text-align:left }
}
@media only screen and (max-width:480px) {
	.log_met_txt{	width:100%;	padding:50px 20px 60px 20px }
}








.tcc .peque, .tcc .meio {
	display:none;	
}
.tcc .grande {
	width:100%;
	display:table;
}
.tcc strong, .tcc b {
	font-weight: 400 !important;		
}
.tcc .grande .metada {
	display:table-cell;
	width:50%;
	vertical-align:middle
}
.tcc .grande .metada:first-child {
	padding-right:60px;
	padding-top:60px
}

@media only screen and (max-width:1150px) {
	.tcc .meio {	display:block;		}
	.tcc .grande {		display:none;	}	
	.meio_img{ width:50%}
}
@media only screen and (max-width:900px) {
	.tcc { padding: 0 40px;	}	
	.txt_empresas2 .tcc{ padding-top:0}
	.meio_img{ margin-right:-40px !important; width: -webkit-calc(50% + 40px);width: -moz-calc(50% + 40px);}
}
@media only screen and (max-width:670px) {
	.tcc .peque {	display:block; padding-top:40px		}
	.tcc .meio {		display:none;	}	
}
@media only screen and (max-width:480px) {
	.tcc { padding: 0 20px	}	
}






.log .grande {
	width:100%;
	display:table;
}
.log .meio , .log .peque {
	display:none;
}
.log strong, .tcc b {
	font-weight: 400 !important;		
}
.log .grande .metada {
	display:table-cell;
	width:50%;
	vertical-align:top
}
.log .grande .metada:first-child {
	padding-right:60px;
	padding-top:60px
}
.log_tab1{ 
	width:47%;
	margin-right:3%;
}
.log_tab2{ 
	width:47%;
	 margin-left:3%
}

@media only screen and (max-width:1150px) {
	.log .grande .metada:first-child {		padding-right:40px;	}
}
@media only screen and (max-width:1000px) {
	.log{ padding: 0 40px; padding-top:40px	}	
	.log .grande { display:none}
	.log .meio { display:table}
}
@media only screen and (max-width:520px) {
	.log .meio { display:none}
	.log .peque { display:table}
}
@media only screen and (max-width:480px) {
	.log { padding: 0 20px;padding-top:40px	}	
}







/* CANAL EMPREGO */
.canal_txt img{ width:100%}






/* FOOTER */
.footer {
	background-color:#0a2a3b;
	width: 100%;
	display: table;
}

.footer .ft_margem{
	padding:45px 40px 25px 40px
}
.larugura{
	max-width:425px
}
.ft_tit {
    font-family: 'montserrat';
	font-weight: 400;
	font-size: 15px;
	line-height:34px;
	color: #e2e2e2;
	text-transform:uppercase;
}
.ft_tit2 {
    font-family: 'montserrat';
	font-weight: 400;
	font-size: 13px;
	line-height:34px;
	color: #e2e2e2;
	text-transform:uppercase;
}
.ft_tit_verde {
    font-family: 'montserrat';
	font-weight: 400;
	font-size: 15px;
	line-height:34px;
	color: #c3d600;
	text-transform:uppercase;
}

.ft_direitos, .ft_direitos a {
    font-family: 'montserrat';
	font-weight: 300;
	font-size: 11px;
	line-height:14px;
	color: #8898a0;
}
.ft_direitos a:hover {
	color: #ffffff;
}
.ft_txt, .ft_txt a{
    font-family: 'montserrat';
	font-weight: 300;
	font-size: 12px;
	line-height:18px;
	color: #e2e2e2;
}
.ft_txt a{
	color: #e2e2e2;
}
.ft_txt a:hover{
	color: #c3d600;
}
.siga2{	
	display:inline-block;
	vertical-align:top;
}
.siga{	
	display:inline-block;
  /*display:table-cell;*/
	vertical-align:middle;
  width: 100%;
  max-width: 33.333%;
  padding-bottom: 20px;
  
}
.siga svg path{
  
}
.ft_tq { 
  width: 90px;
  max-width: 87px;
  cursor: pointer;
  margin: auto;
}
.ft_pq { 
  width: 90px;
  max-width: 87px;
  cursor: pointer;
  margin: auto;
}
.ft_log { 
  width: 90px;
  max-width: 87px;
  cursor: pointer;
  margin: auto;
}
.ft_tcc { 
  width: 90px;
  max-width: 87px;
  cursor: pointer;
  margin: auto;
}
.ft_flex { 
  width: 100px;
  max-width: 97px;
  cursor: pointer;
  margin: auto;
}
.ft_inch { 
  width: 100px;
  max-width: 105px;
  cursor: pointer;
  margin: auto;
}
.ft_quim { 
  width: 130px;
  max-width: 128px;
  cursor: pointer;
  margin: auto;

}
.ft_lims { 
  width: 100px;
  max-width: 105px;
  cursor: pointer;
  margin: auto;
}
/*@media only screen and (max-width:900px) {
  .larugura{
    max-width: 100%;
  }
  .siga{
    max-width: auto;
  }
}*/
@media only screen and (max-width:900px) {
   .larugura{
    max-width: 100%;
  }
  .siga{
    max-width: 16.666%;
  }
  .ft_tq { 
  width: 90px;
  max-width: 67px;
  cursor: pointer;
  padding-right: 10px;
  }
  .ft_pq { 
  width: 90px;
  max-width: 67px;
  cursor: pointer;
  padding-right: 10px;
  }
  .ft_log { 
  width: 90px;
  max-width: 67px;
  cursor: pointer;
  padding-right: 10px;
  }
  .ft_tcc { 
  width: 90px;
  max-width: 67px;
  cursor: pointer;
  padding-right: 10px;
  }
  .ft_flex { 
  width: 100px;
  max-width: 77px;
  cursor: pointer;
  padding-right: 10px;
  }
   .ft_inch { 
    width: 100px;
    max-width: 80px;
    cursor: pointer;
    padding-right: 10px;
  }
  .ft_lims { 
   width: 100px;
    max-width: 80px;
    cursor: pointer;
    padding-right: 10px;
}
  .ft_quim { 
  width: 130px;
  max-width: 108px;
  cursor: pointer;
  padding-right: 10px;

  }
}
@media only screen and (max-width:650px) {
  .siga{
    max-width: 33.333%;
  }
}

/*.ft_tq { 
  cursor:pointer;
	width:109px;
	background: url(imgs/elem/ft_tq.png) no-repeat center;
	background-size: cover;
}
.ft_tq:hover {
	background: url(imgs/elem/ft_tq_.png) no-repeat center;
	background-size: cover;
}

.ft_pq {
  cursor:pointer;
	width:105px;
	background: url(imgs/elem/ft_pq.png) no-repeat center left;
	background-size: cover;
}
.ft_pq:hover {
	background: url(imgs/elem/ft_pq_.png) no-repeat center left;
	background-size: cover;
}

.ft_log { 
  cursor:pointer;
	width:111px;
	background: url(imgs/elem/ft_log.png) no-repeat center;
	background-size: cover;
}
.ft_log:hover {
	background: url(imgs/elem/ft_log_.png) no-repeat center;
	background-size: cover;
}
.ft_tcc { 
  cursor:pointer;
	width:97px;
	background: url(imgs/elem/ft_tcc.png) no-repeat center;
	background-size: cover;
}
.ft_tcc:hover {
	background: url(imgs/elem/ft_tcc_.png) no-repeat center;
	background-size: cover;
}*/

     
.footr_mapa{
	background:url(imgs/elem/mapa.png) no-repeat center;
	background-size:contain
}

.facebook_ft {
	width:31px;
	background: url(imgs/elem/ft_fb.png) no-repeat center;
	background-size: cover;
	margin-right:15px;
}
.facebook_ft:hover {
	background: url(imgs/elem/ft_fb_.png) no-repeat center;
	background-size: cover;
}
.in_ft {
	width:31px;
	background: url(imgs/elem/ft_in.png) no-repeat center;
	background-size: cover;
}
.in_ft:hover {
	background: url(imgs/elem/ft_in_.png) no-repeat center;
	background-size: cover;
}

.cx_newsletter {
	margin-top:25px;
	display: inline-block;
	background: transparent;
	padding: 0px 25px;
	height: 39px;
	width:100%;
	line-height: 39px;
	padding-top: 3px;
	font-weight: 300;
	font-size: 13px;
	color: #e2e2e2;
	text-align: center;
	/* Old browsers */
	border-radius: 25px;
	border: 1px solid #ffffff;
	text-align:left;
}
.cx_newsletter:placeholder {
	height: 39px;
	line-height: 39px;
	padding-top: 3px;
	font-weight: 300;
	font-size: 13px;
	color: #e2e2e2;
}
.bt_news{
	position:absolute;
	right:5px;
	top:29px;
	width:31px;
	height:31px;
	background:url(imgs/elem/seta.png) no-repeat;
	cursor:pointer;
	z-index:100;
}
.bt_news:hover{
	position:absolute;
	right:5px;
	top:29px;
	width:31px;
	height:31px;
	background:url(imgs/elem/seta_.png) no-repeat;
	cursor:pointer;
	z-index:100;
}
.coluna_news{
	max-width:365px; 
	margin:auto
}

.linha_rodape{
	width:100%; 
	height:50px; 
	line-height:50px;
}

.ft_col_news{
	width:50%; 
	display:table-cell; 
	vertical-align:top
}
.ft_col_cert{
	width:50%; 
	display:table-cell; 
	vertical-align:top
}

@media only screen and (max-width:1000px) {

	
	.larugura{ margin:auto}

}
@media only screen and (max-width:900px) {
	/*.ft_esq{ display:none}*/
  .ft_txt{ display:none}
	.certificados2 img{ width:70%; margin:0; max-width:100px}
	.coluna_news{ 	max-width:100%; 	margin:0}



	.linha_rodape{height:30px; 	line-height:30px;}

	.ft_tit2 {	font-size: 13px;	line-height:14px; margin-bottom:10px}
	.ft_col_news{ 	width:30%; }
	.ft_col_cert{width:70%; }
	.footer .ft_margem{	padding: 45px 40px;}

}

@media only screen and (max-width:640px) {
	/*.div_50.ft_margem{ display:none;}	*/
	.footer .ft_margem{	padding: 40px 40px 30px 40px;}
	.linha_rodape{	height:30px; 	line-height:30px;}
	.ft_col_news{ 	width:40%; }
	.ft_col_cert{width:60%; }
	.ft_margem.ft_direitos{padding: 40px 40px 20px 40px;}
}
@media only screen and (max-width:480px) {
	.footer .ft_margem{	padding: 40px 20px 30px 20px;}
	.ft_margem.ft_direitos{padding: 40px 20px 20px 20px;}
}

@media only screen and (max-width:400px) {
	.ft_col_news{ 	width:50%; }
	.ft_col_cert{width:50%; }
}




















/* PRODUTOS */
.tit_produtos{
	color:#ffffff;
	background-color:#c3d600;
	border: 1px solid #c3d600;
	font-weight: 400;
	font-size: 14px;
	line-height:29px;
	height:29px;
	text-transform:uppercase;
	text-align:center;
	margin:auto;
	border-radius:20px;
	width:auto;
	padding:0 10px;
}


.div_6{
	/*width:16.666%;*/
  width: 14.285%;
	height:auto;
	display:inline-block;
	padding:0;
	margin:0;
	vertical-align:top;
	cursor:pointer;
  position:relative;
  overflow: hidden;
}
/*********/
.div_6 img.img_news {
	top:0;
	left:0;
  width: 100%;
  height:auto
    display:block;
}
.div_6 .image_slide {
	position:relative;
}
.div_6 .image_slide .masc, .div_6.sel .image_slide .masc{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	opacity:0;
	filter: alpha(opacity=0);
	background:url(imgs/categorias/+.png) no-repeat center rgba(64,67,71,0.40);
	cursor:pointer;
}
.div_6 .image_slide:hover img.img_news, .div_6.sel .image_slide img.img_news {
	opacity:0.5;
	filter: alpha(opacity=50);
}
.div_6 .image_slide:hover .masc, .div_6.sel .image_slide .masc {
	opacity:1;
	filter: alpha(opacity=100);
}

.abcmeio{ display:table-cell; width:50%}
.abcmeio1, .abcmeio2{ display:table; width:100%}
.abc{
	display:table-cell;
	color:#0a2a3b;
	font-weight:500;
	border:1px solid #cdcdcd;
	border-right:0;
	text-align:center;
	line-height:28px;
	height:28px;
	font-size:12px;
	cursor:pointer;
	min-width:23px;
	width:auto
}
.abcmeio1 .abc:first-child{
	padding:0 5px;
}
.abcmeio2 .abc:last-child{
	border-right:1px solid #cdcdcd;
}

.abc:hover{
	background-color:#0a2a3b;
	color:#fff;
}

.produtos_div{
	display:table-cell;
	width:47%;
	border-top:1px solid #cdcdcd;
	min-height:30px;
	line-height:17px;
	padding:6px 5px;
	color:#0a2a3b;
	font-weight:500;
	text-align:left;
	font-size:12px;
	text-transform:uppercase;
	cursor:pointer
}
.produtos_div a{
	color:#0a2a3b;
	font-weight:500;
	text-align:left;
	font-size:12px;
	text-transform:uppercase;
	text-decoration:none
}
.produtos_div a:hover{
	color:#c1d101;
	text-decoration:none
}
.produtos_div:nth-child(odd){
	float:left;
  clear: both;
}
.produtos_div:nth-child(even){
	float:right;
}


.areaa_bt{
	color:#ffffff;
	background-color:#0a2a3b;
	border: 1px solid #0a2a3b;
	font-weight: 400;
	font-size: 11px;
	line-height:27px;
	height:27px;
	text-transform:uppercase;
	text-align:center;
	margin:auto;
	border-radius:20px;
	width:auto;
	padding:0 15px;
	cursor:pointer;
	width:auto;
	margin:auto;
	display:table-cell;

}
.areaa_bt:hover{
	color:#0a2a3b;
	background-color:#ffffff;
	border: 1px solid #ffffff;
}

.campo2 {  font-size:13px; width:100%; height:45px; padding:5px 20px 5px 20px; 	color: #ffffff;	border: 1px solid rgba(255,255,255,0.50); border-radius:20px;margin-bottom:10px; vertical-align:middle; resize:none; background:transparent}

.campo23 {  color: #fff; font-size:12px; width:100%; float:left; text-align:center;	height:45px;resize:none; padding-left:4%;	padding-right:5px; font-style:italic; background:transparent;border: 1px solid rgba(255,255,255,0.50); border-radius:20px;}

.submeter12 {	display:inline-block;width:140px;	height:35px;	color:#0a2a3b; border:1px solid #c3d600; font-size:13px; text-transform:uppercase;border-radius:20px; background-color:#c3d600; font-weight:400	}
.submeter12:hover { background-color:#0a2a3b;border:1px solid #0a2a3b; color:#FFF; cursor:pointer 	}


@media only screen and (max-width:1500px) {
  .div_6{ width:16.666%}
}

@media only screen and (max-width:1200px) {
  .div_6{ width:20%;}
}

@media only screen and (max-width:1024px) {
	.div_6{	width:25%;}
}
@media only screen and (max-width:767px) {
	.abcmeio{ display:table; width:100%}
	.abcmeio1, .abcmeio2{ display:table; width:100%}
	.abcmeio1 .abc{ border-bottom:0}
	.abcmeio1 .abc:first-child{
		padding:0 5px;
	}
	 .abc:last-child{
		border-right:1px solid #cdcdcd;
	}

}
@media only screen and (max-width:850px) {
	.div_6{	width:33.333%;}
}
@media only screen and (max-width:700px) {
	.div_6{	width:50%;}
}
@media only screen and (max-width:500px) {
	.div_6{	width:100%;}
	@media screen and (-webkit-min-device-pixel-ratio:0){ 
		figure.effect-sadie .effect-sadie-bg{
			display:table-cell !important;
		}
	}
}

@media only screen and (max-width:640px) {
	.produtos_div{
		display:table;
		width:100%;
		float:inherit;
	}
}









/*CONTACTOS*/
.contactos_cont{
	padding: 90px 130px;
}
.contactos_cont.detalhe{	padding: 90px 130px}
.div_contactos {
	width: 50%;
	vertical-align: top;
		max-width: 805px;
		margin:auto
	
}
.mapa {
	display: block;
	max-height: 450px;
	overflow:hidden;
}
.cx1 {
	margin-top:70px;
	color: #0a2a3b;
	font-size: 12px;
	display: inline-block;
}

.caixamapa{position:absolute; bottom:60px; right:50px; max-width:360px; display:table}
.scrolloff {	pointer-events: none;}

@media only screen and (max-width: 1024px) {
	.contactos_cont{	padding: 80px 100px;}
}
@media only screen and (max-width: 840px) {
	.caixamapa{position:absolute; bottom:400px; right:50%; margin-right:-160px; max-width:360px; display:table}
	.limitemapa{ height:420px; line-height:420px;}
}
@media only screen and (max-width: 640px) {
	.contactos_cont{	padding: 60px 50px;}
	.contactos_cont.detalhe{	padding: 60px 50px;}
	.div_contactos { text-align:center;}

}
@media only screen and (max-width: 480px) {
	.contactos_cont{	padding: 60px 20px;}
	.contactos_cont.detalhe{	padding: 60px 20px;}
}

.vatop{ vertical-align:top}


@media only screen and (max-width:899px) {
	.contactos_cont {		height: auto;	}
	.div_contactos {		width: 100%;		display: table;	}
	.div_contactos:first-child {		padding-bottom: 50px;	}
	.mapa{ 	display:block; 	max-height:350px;	overflow:hidden;}
}

@media only screen and (max-width:590px) {
	.contacts_table {
		display: table;
		width: 100%;
		text-align: left !important;
		margin-bottom: 10px;
		padding-left: 0 !important;
	}
}


/* FORMS */
.forms_txt, .forms_txt a {
	font-size: 13px;
	color:#0a2a3b;
	font-weight: 300;
		max-width: 685px;
		margin:auto
}
.forms_txt a:hover {
	text-shadow:1px 1px 1px 1px #e2e2e2; font-weight:500
}
.formularios {
	padding-top:0px
}
.formularios.limit {
	max-width: 685px;
	margin: auto;
}
/*.formularios input[type="submit"] {
	display: inline-block;
	background: transparent;
	padding: 0px 25px;
	height: 40px;
	line-height: 45px;
	padding-top: 3px;
	font-weight: 300;
	font-size: 13px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	background: linear-gradient(to bottom, transparent 50%, #fff 50%);
	background-size: 100% 183%;
	background-position: top;
}
.formularios.limit input[type="submit"] {
	color: #0a2a3b;
	background: linear-gradient(to bottom, transparent 50%, #0a2a3b 50%);
	background-size: 100% 183%;
	background-position: top;
}
.formularios input[type="submit"]:hover {
	color: #0a2a3b;
	background-position: bottom;
}
.formularios.limit input[type="submit"]:hover {
	color: #fff;
	background-position: bottom;
}
*/.formularios.limit .file_inputs2, .formularios .file_inputs2 {
	text-transform: uppercase;
	font-weight: 300;
	font-size: 12px;
	color: #004982;
	text-align: center;
	padding: 1px 55px;
	position: relative;
	padding-top: 8px;
	display: inline-block;
	z-index: 1;
	cursor: pointer;
}
.formularios.limit .file_inputs2:after, .formularios .file_inputs2:after {
	content: '';
	width: 100%;
	height: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #0a2a3b;
	z-index: -1;
}
.formularios.limit .file_inputs2:hover {	color: #fff;}
.formularios .file_inputs2:hover:after {	height: 100%;}
.formularios.recruta .file_inputs2 {	color: #fff;}
.formularios.recruta .file_inputs2:after {	height: 100%;}
.formularios.recruta .file_inputs2:hover:after {	background: #fff;}
.formularios.recruta .file_inputs2:hover {	color: #0a2a3b;}
.formularios .file_inputs2 {	color: #fff;	margin-top: 25px;	font-size: 12px;	font-weight: 400;	vertical-align: top;}
.formularios .file_inputs2:after {	background: #fff;}
.formularios .file_inputs2:hover {	color: #0a2a3b;}
.form_campos_nomes {	vertical-align: top;}
.formularios input[type="file"] {
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: absolute;
	top: 0px;
	left: 0;
	z-index: 10;
}
	.forms_txt img{ margin:auto}
	
	
	
	
@media only screen and (max-width:590px) {
	.formularios{		padding:0;	}
	.formularios.limit{		max-width:none;	}
}
/*FORMS*/
	.campo {  font-size:13px; width:100%; height:45px; padding:5px 20px 5px 20px; 	color: #0a2a3b;	border: 1px solid #ffffff; border-radius:20px;margin-bottom:10px; vertical-align:middle; resize:none; background:transparent}
	
	.campo3 {  color: #0a2a3b; font-size:12px; width:100%; float:left; text-align:center;	height:45px;resize:none; padding-left:4%;	padding-right:5px; font-style:italic; background:transparent;border: 1px solid #ffffff; border-radius:20px;}
	
	.submeter1 {	display:inline-block;width:140px;	height:35px;	color:#0a2a3b; border:1px solid #c3d600; font-size:13px; text-transform:uppercase;border-radius:20px; background-color:#c3d600; font-weight:400	}
	.submeter1:hover { background-color:#0a2a3b;border:1px solid #0a2a3b; color:#FFF; cursor:pointer 	}

	.textos3{ font-size:14px; color:#0a2a3b;font-weight:400;position:relative; float:left; line-height:45px; text-align:left	}
	
	.s1{display:inline-block; position:relative; width:15%; float:left;  }
	.s2{display:inline-block; position:relative; width:25%;; float:left; }
	.s3{display:inline-block; position:relative; width:25%;; vertical-align:middle;height:45px; line-height:45px;  text-align:right; float:right }
	.s4 { display:inline-block; 	height:45px; margin:0px; padding:0px;border:none;text-align:left;padding-left:15px;  }
	
	.cpq{font-size:11px; color:#0a2a3b;font-weight:400;line-height:45px;}
	.form_campos_nomes{font-size:12px; line-height:17px; color:#0a2a3b;font-weight:400;}
		


input[type="file"]{
	opacity:0;
	width:100%;
	height:100%;
	cursor:pointer;
	position: absolute;
	top: 0px;
	width: 100px;
	left: 0;
}
 .file_inputs2{
	display:inline-block;
	height:22px;
	line-height:22px;
	width:100%;
	max-width:100px;
	color:#fff;
	background:#c8c0b4;
	font-size:10px;
	font-weight:400;
	cursor:pointer;
	text-align:center;
	margin-left:0px;
	position:relative;
	text-transform:uppercase;
	border-radius:10px;
		cursor:pointer
}
.file_inputs2:hover{	background:#0a2a3b;}
.form_campos_nomes{	vertical-align:top;}


@media only screen and (max-width: 1030px) {	
	.s4 { display:none }
}

@media only screen and (max-width: 1024px) {	
	.cont_txt{font-size: 55px;line-height:80px;	font-weight:700;	}
}

@media only screen and (max-width: 900px) {	
	.s4 { display:inline-block; }
}
@media only screen and (max-width: 850px) {	
	.campo { font-size:14px; 	height:41px; }
	.campo3 { font-size:12px; 	height:41px;}
	.textos3{ font-size:14px; color:#0a2a3b;font-weight:400;position:relative; float:left; line-height:49px; text-align:left	}
}
@media only screen and (max-width: 680px) {	
	.cont_txt{font-size: 45px;line-height:80px;	font-weight:700;	}
}
@media only screen and (max-width: 570px) {	
		.cpq{font-size:11px; font-weight:400;line-height:45px;}
	.textos3{ font-size:13px; color:#0a2a3b;font-weight:400;position:relative; float:left; line-height:49px; text-align:left	}
	.s4{ display:none}
}
@media only screen and (max-width: 490px) {	
	.submeter1 {	width:105px;	}
	.cpq{ line-height:42px; margin-left:0px}
	.cont_txt{font-size: 40px;line-height:60px;	font-weight:700;	}
}
@media only screen and (max-width: 460px) {	
	.s1{display:inline-block; position:relative; width:20%; float:left;  }
	.s2{display:inline-block; position:relative; width:40%; float:left; }
}





/* RECRUTAMENTO */
.div_table_cell.frec_1{
	width:30%; position:relative; 
}
.div_table_cell.frec_2{
	width:30%;
	position:relative;
}
.div_table_cell.frec_3{
	width:70px;
	position:relative;
}
.div_table_cell.frec_4{
	position:relative; 
}
.div_table_cell.frec_5{
	width:18%;  
	position:relative; 
	text-align:right;
}

@media only screen and (max-width: 900px) {	

	.div_table_cell.frec_1{
		width:50%; position:relative;
		display:inline-block;
		height:90px;
	}
	.div_table_cell.frec_2{
		width:50%;
		display:inline-block;
		height:90px;
	}
	.div_table_cell.frec_3{
		width:70px;
		display:inline-block;
		height:60px;
	}
	.div_table_cell.frec_4{
		display:inline-block;
		height:60px;
	}
	.div_table_cell.frec_5{
		width:170px;
		display:inline-block;
		height:60px;
	}
}

@media only screen and (max-width: 550px) {	

	.div_table_cell.frec_1{
		width:100%; 
		display:block;
		height:90px;
	}
	.div_table_cell.frec_2{
		width:100%;
		display:block;
		height:90px;
	}
	.div_table_cell.frec_3{
		width:70px;
		display:inline-block;
		height:40px;
	}
	.div_table_cell.frec_4{
		display:inline-block;
		height:40px;
	}
	.div_table_cell.frec_5{
		display:none
	}
}











.radioForm{
	display:inline-block;
	background-color:#000;
	text-align:center;
	margin:auto
}


/* SETA VOLTAR TOPO */
.voltar_topo {
	position: fixed;
	right: 10px;
	bottom: 65px;
	display: none;
	background-image: url(imgs/elem/voltar_topo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-color: #CECECE;
	width: 35px;
	height: 35px;
	cursor: pointer;
	z-index: 10;
	border-radius: 25px;
}
.voltar_topo:hover {
	background-color: #333C42;
}




/*NOTICIAS HOME*/

.data_bola1.home{
	background:url(imgs/elem/bg_noticias.png) repeat-y top left;
}

.home_dest_cont, .home_noticias{
	height:100%;
	overflow:hidden;
	position:relative;
	max-height:550px;
	display:block;
}


.tit_noticias.home{
	height:40px;
	overflow:hidden;
	margin-bottom:15px;
}
.txt_noticias.home{
	height:100px;
	overflow:hidden
}

.margem_not.home{
	padding:25px 80px 30px 40px;	
}

.homeinha{
	margin-top:30px
}


.txt_Serv_home{
	height:76px;
	overflow:hidden
}

.noti_largi{max-width:540px}
@media only screen and (max-width:1190px) {
	.txt_Serv_home{	height:77px;}
}
@media only screen and (max-width:1170px) {
	.txt_Serv_home{	height:79px;}
}
@media only screen and (max-width:1050px) {
	.div_50.data_bola1.home, .div_50.homee{
			width:100%;
			display:table;
		}
	.home_dest_cont, .home_noticias{
		max-height:268px;
		display:block;
	}
	.noti_largi{max-width:100%}

	.txt_Serv_home{
		height:70px;
		overflow:hidden
	}


}


/*.img_certificados_footer:hover {
	opacity:0.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	cursor:pointer;
}*/

.img_certificados {
  height: 90px;
}
.img_certificados_footer {
  width: 100%; 
  max-width: 450px; 
  margin: auto;
}
@media only screen and (max-width: 768px) { 
  .img_certificados {
    height: 80px;
  }
  .img_certificados_footer {
    max-width: 400px;
  }
}

.produtos_col1{
	display:table-cell;
	width:50%;
	padding-right:5%;
	vertical-align:top
}
.produtos_col2{
	display:table-cell;
	width:50%;
	padding-left:5%;
	vertical-align:top
}

@media only screen and (max-width: 700px) {	
	.produtos_col1, .produtos_col2{
		display:table;
		width:100%;
		padding-right:0;
		vertical-align:top;
		padding-left:0;
	}
	.produtos_col2{
		padding-top:50px
	}
}



.pesq_33{
	width:30%;
	margin:auto;
}

.caixinha_pesq{
	background: transparent;
	max-width: 600px;
	display: inline-block;
	width: 280px;
	height:43px;
	border:1px solid #28495b;
	background-color:#28495b;
	border-radius:20px;
	text-align:left; 
	color:#fff;
	padding:2px 20px;
	position:relative;
}


.lupinha{
	background:url(imgs/elem/lupa.png) no-repeat center right;
	width:18px;
	height:29px;
	position:absolute;
	top:7px;
	left:248px;
	cursor:pointer;
}
.lupinha:hover{
	background:url(imgs/elem/lupa_.png) no-repeat center right;
}

@media only screen and (max-width: 1024px) {	
	.caixinha_pesq{	width: 250px;	height:43px; 	padding:2px 20px;}
	.lupinha, .lupinha:hover{	left:215px;}

}
@media only screen and (max-width: 880px) {	
	.pesq_33{	width:50%;	margin:auto; margin-bottom:15px}
	#carrega_pesqui{ width:100%; display:table-row; }
	#carrega_pesqui_dentro{ display:table;margin-top:15px}

	.caixinha_pesq{	width: 90%;	height:43px; 	padding:2px 20px;}
	.lupinha, .lupinha:hover{	left:78%;}
}


@media only screen and (max-width: 550px) {	
	.pesq_33{	width:100%;	margin:auto; display:table; margin-bottom:0px}
	#carrega_pesqui{ width:100%; display:table; }
	#carrega_pesqui_dentro{ display:table;margin-top:15px}


	.caixinha_pesq{	width: 90%;	height:43px; 	padding:2px 20px;}
	.lupinha, .lupinha:hover{	left:78%;}
}


/*Produtos Alteraçoes*/
.mostra_produtos{
  max-width: 545px;
  margin: auto;
  margin-right: 0;
  padding-left: 15px;

}
.mostra_produtos .cont_titulo{
    padding: 20px 0;
    border-bottom: 1px solid #d0d0d0;
}

.mostra_produtos .tit_area{
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #3fd5ae;
  display: inline-block;
  width: auto;
  text-transform: uppercase;
  padding-top: 5px;
}
.mostra_produtos .form_pesquisa{
  display: inline-block;
  float: right;
  width: auto;
  border: 1px solid #0a2a3b;
  border-radius: 50px;
  padding: 3px 15px;
  padding-bottom: 5px;
}
.mostra_produtos .form_pesquisa input{
  background-color: #e2e2e2;
  font-size: 11px;
  line-height: 20px;
  color: #0a2a3b;
  text-transform: uppercase;
  margin-top: 3px;
}
.mostra_produtos .form_pesquisa .imagem{
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
  background-color: inherit;
  border: none;
}

.prod_item {
  z-index: 1;
  position: relative;
}
.prod_item .cat_tit{
  border-bottom: 1px solid #d0d0d0;
  padding: 15px 10px;
  
  cursor: pointer;
  position: relative;
}
.prod_item .cat_tit span{
  background-color: #bfc749;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;

    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.mostra_produtos .prod_item:last-child .cat_tit{
  border-bottom: 1px solid #d0d0d0;
}
.prod_item .cat_tit h1 , .prod_item .cat_tit h2{
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #0a2a3b;
  text-transform: uppercase;
  display: inline-block;
}
.prod_item .cat_tit h2{
  float: right;
  padding-top: 7px;
}
.prod_item .cat_tit.sel span, .prod_item .cat_tit:hover span{
  /*background-color: #3fd5ae;*/
  opacity: 1;
  visibility: visible;
}
.prod_item .cont_subs{
  display: none;
}
.prod_item .cont_subs_subs{
  display: none;
}
.prod_item .prod_tit{
  /*border-bottom: 1px solid #97d5c9;*/
  padding: 10px 30px;
  padding-right: 10px;
  
  /*background-color: rgba(63,213,174,0.4);*/
  cursor: pointer;
}
.prod_item .prod_tit h1 , .prod_item .prod_tit h2{
  font-size: 11px;
  line-height: 11px;
  font-weight: 400;
  color: #0a2a3b;
  text-transform: uppercase;
  display: inline-block;
}
.prod_item .prod_tit h2{
  float: right;
  padding-top: 7px;
}

.prod_item .subs_tit{
  border-bottom: 1px solid #bebcbc;
  padding: 10px 30px;
  padding-right: 10px;
  background-color: #cdcbcb;
  cursor: pointer;
}
.prod_item .subs_tit h1 , .prod_item .subs_tit h2{
  font-size: 11px;
  line-height: 11px;
  font-weight: 400;
  color: #0a2a3b;
  text-transform: uppercase;
  display: inline-block;
}
.prod_item .subs_tit h2{
  float: right;
  padding-top: 7px;
}


.prod_item .prod_tit:last-child{
  border: none;
}
.prod_item .prod_tit.sel, .prod_item .prod_tit:hover{
  background-color: #ffffff !important;
}

.prod_item .cont_prod{
  display: none;
   padding: 5px 30px;
  padding-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #bebcbc;
}
.prod_item .cont_prod.aberto{
  display: block !important;
}
.prod_item .prod_tit2{
  padding: 5px 30px;
  padding-right: 15px;
  cursor: pointer;
  display: inline-block;
  width: 50%;
  vertical-align: middle;

  font-size: 11px;
  line-height: 11px;
  font-weight: 400;
  color: #0a2a3b;
  position: relative;
}

.prod_item .prod_tit2 img{
  display: none;
  vertical-align: middle;
  padding-bottom: 2px;
  margin-left: 5px;

  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.prod_item .prod_tit2:hover img{
  display: inline-block;
}


.prod_item .animationcss{
  -moz-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  -ms-transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

.menu_emp_mob{
    background-color: #0a2a3b;
    width: 100%;
    position: fixed;
    bottom: 0;
    padding: 10px 15px;
    padding-top: 0;
    display: none;
}

@media only screen and (max-width: 750px) { 
  #rpc_emp .div_table_cell{
    display: table;
    width: 100% !important;
    table-layout: fixed;
  }
  #rpc_emp .div_table_cell .mostra_produtos{
    margin:auto;
    max-width: 100%;
  }
  .mostra_produtos{
    padding: 0;
  }
  .cont_titulo{
    padding: 20px 10px !important;
  }
  .mostra_produtos .form_pesquisa input {
      max-width: 100px;
  }


}
@media only screen and (max-width: 670px) { 
  .menu_emp_mob{
    display: block;
  }
}
@media only screen and (max-width: 500px) { 

  .mostra_produtos .tit_area {
    width: 100%;
    text-align: center;
    padding-bottom: 15px;
  }
  .cont_titulo{
    padding-bottom: 30px !important;
  }

  .mostra_produtos .form_pesquisa{
    float: none;
    margin: auto;
    display: table;
    width: 100%;
    max-width: 300px;
  }
  .mostra_produtos .form_pesquisa input {
    max-width: 230px;
    width: 100%;
  }
  .prod_item .cat_tit h1 , .prod_item .cat_tit h2{
    line-height: 14px;
    max-width: 314px;
  }
}

/* RGPD */
.optins {
  color:#032A3B;
  text-align: left;
}

.optins a {
  color:#032A3B;
  text-decoration: underline;
}

.optins a:hover {
  text-decoration: none;
}

.optins input[type="checkbox"],
.optins input[type="radio"] {
  margin-right: 5px;
}

.optins label:nth-child(2n) {
  padding-left: 20px;
}

#blocos_rpc .optins {
  color: #ffffff;
}

#blocos_rpc .optins a {
  color: #ffffff;
}

form[name="form_subscreve"] .optins {
  font-size: 11px;
  padding-top: 10px;
  color: #ffffff;
  text-transform: none;
}

form[name="form_subscreve"] .optins a {
  color: #ffffff;
  text-decoration: underline;
}

form[name="form_subscreve"] .optins a:hover {
  text-decoration: none;
}

.news_remove {
  padding-top: 10px;
  font-size: 9px;
}

.news_remove a {
  color: #ffffff;
  text-decoration: underline;
}

.news_remove a:hover {
  text-decoration: none;
}

/*.captcha{
  -ms-transform: scale(0.92);
  -webkit-transform: scale(0.92);
  transform: scale(0.92);
  transform-origin:0 0;
}

.captcha > div {
  width: 280px !important;
}*/

.captcha {
  margin-bottom: 10px;
}

/* tabela de cookies */
div.overflow {
    overflow: auto;
    display: block;
}

table.tbl_cookies {
    width: 100% !important;
    min-width: 520px;
    table-layout: fixed;
    border: 1px solid #000000;
    border-bottom: 0;
    border-collapse: collapse;
}

table.tbl_cookies thead tr {
    background-color: #bdc0bf;
    border-bottom: 1px solid #000000; 
}

table.tbl_cookies thead td {
    border-bottom: 1px solid #000000; 
}

table.tbl_cookies thead td {
    text-align: center;
    font-weight: bold;
}

table.tbl_cookies td {
    width: 20% !important;
    padding: 5px;
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
    vertical-align: middle;
}

table.tbl_cookies td:last-child {
    border-right: 0;
}

table.tbl_cookies td:nth-child(3) {
    width: 40% !important;
}

.paginas .textos a {
  color: #0a2a3b;
  text-decoration: underline;
}

.paginas .textos a:hover {
  text-decoration: none;
}

.ft_links {
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
  position: relative;
}

.ft_links:after {
  display: block;
  content: '|';
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}

.ft_links:last-child:after {
  display: none;
}
