/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/************************************/
/* RESET */
/************************************/

/*-webkit-transform: translate();
-moz-transform: translate();
-ms-transform: translate();
-o-transform: translate();
transform: translate();*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
	position: relative;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
/*
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
  	margin: 0;
  	padding: 0;
	box-sizing: border-box;
}

img {
  	width: 100%;
}

:active {
    outline: none;
    text-decoration: none;
}

a:active {
	outline: none;
    text-decoration: none;
	color: #333;
}

:visited {
    outline: none;
    text-decoration: none;
}

a:visited {
	outline: none;
    text-decoration: none;
	color: #333;
}

:focus {
	outline: none;
    text-decoration: none;
}

a:focus {
	outline: none;
    text-decoration: none;
	color: #333;
}

:hover {
	outline: none;
    text-decoration: none;
}

a:hover {
	outline: none;
    text-decoration: none;
}

button:active {
    outline: none;
    text-decoration: none;
}

button:visited {
    outline: none;
    text-decoration: none;
}

button:focus {
	outline: none;
    text-decoration: none;
}

button:hover {
    outline: none;
    text-decoration: none;
}


.clearFix {
	clear: both;
}

section {
    z-index: 999;
    position: relative;
}

select {
	-webkit-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
	appearance:none;
}

select::-ms-expand {
    display: none;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { 
	-webkit-appearance: none;
	-moz-appearance:none;
	-o-appearance:none;
	appearance:none;
	margin: 0;  
}

.relative {
    position: relative;
}

.absolute {
	position: absolute;
}

.right {
	right: 0;
}

.bottom {
	bottom: 0;
}

.left {
	left: 0;
}

.top {
	top: 0;
}

.hidden {
	display: none;
}

.hideMobile {
	display: block;
}

.hideDesktop {
	display: none;
}



/************************************/
/* END RESET */
/************************************/

html {
	height: 100%;
}

body {
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
	font-size: 15px;
	font-family: 'Open Sans', sans-serif;
	color: #333;
	position: relative;
	font-weight: 400;
	height: 100%;
}

.light {
	font-weight: 300;
}

.lightItalic {
    font-weight: 300;
    font-style: italic;
}

.regular {
	font-weight: 400;
}

.semibold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}

.extrabold {
	font-weight: 800;
}

.heightAuto {
	height: 100% !important;
	transition: all 0.3s ease-out;
}

/*.size36 {
	font-size: 36px;
}

.size30 {
	font-size: 30px;
}

.size18 {
	font-size: 18px;
}*/

a {
    color: #333333;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
	color: inherit;
    
}

/*section {
	width: 100%;
	padding: 70px 0 0 0;
	background: #fff;
	position: relative;
}

section:first-of-type {
    padding: 0;
}*/

::-webkit-input-placeholder {
   color: #b2b2b2;
	font-size: 10px;
}

:-moz-placeholder { /* Firefox 18- */
   color: #b2b2b2;  
	font-size: 10px;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #b2b2b2; 
	font-size: 10px;
}

:-ms-input-placeholder {  
   color: #b2b2b2;  
	font-size: 10px;
}

.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-15 {
	width: 20%;
	float: left;
}

.verticalMiddle {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	position: relative;
}

.horizontalMiddle {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	position: relative;
}

.verticalMiddleAbsolute {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	position: absolute;
}

.horizontalMiddleAbsolute {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	position: absolute;
}

.allMiddle {
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50%;
	position: relative;
}

.allMiddleAbsolute {
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50%;
	position: absolute;
}

.h100 {
	height: 100%;
}

section {
	
}

.alignRight {
	text-align: right;
}

.alignLeft {
	text-align: left;
}

.alignCenter {
	text-align: center;
}

.margin70 {
	margin-bottom: 70px;
}

.sectionP70 {
	padding-top: 70px;
	padding-bottom: 70px;
}

.sectionM70 {
	margin-top: 70px;
	margin-bottom: 70px;
}

.margin50 {
	margin-bottom: 50px;
}

.padding70 {
    padding-bottom: 70px;
}

.padding50 {
    padding-bottom: 50px;
}

.sectionP50 {
	padding-top: 50px;
	padding-bottom: 50px;
}

.sectionM50 {
	margin-top: 50px;
	margin-bottom: 50px;
}

.selected {
	background-color: #ca9400 !important;
    color: #FFF !important;
}

.fatface {
    font-family: 'Abril Fatface';
    font-style: normal;
    font-weight: 400;
}

.size48 {
	font-size: 48px;
}

.size36 {
	font-size: 36px;
}

.size24 {
	font-size: 24px;
}

.size22 {
	font-size: 22px;
}

.size18 {
	font-size: 18px;
}

/************************************/
/* HEADER */
/************************************/

#stickyHeader {
	position: fixed;
	top: 0;
	height: 100px;
    width: 100%;
	z-index: 10000;
	background-color: #FFF;
}

.logo {
    max-width: 180px;
}

.logo a {
    display: block;
}

.burger {
    width: 40px;
    height: 40px;
    display: none;
    cursor: pointer;
    border-radius: 50%;
    background-color: #003764;
    right: 15px;
}

.burger li {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: #adbacb;
    left: 10px;
    top: 19px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.burger li:first-child {
    top: 13px;
}

.burger li:last-child {
    top: 25px;
}

.burgerClose li:first-child {
    opacity: 0;
}

.burgerClose li:nth-child(2) {
    transform: rotate(45deg);
}

.burgerClose li:nth-child(3) {
    transform: rotate(-45deg);
}

.burgerClose li:last-child {
    opacity: 0;
}

.navigation {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.navigation_ul {
    
}

.navigation_ul > li {
    display: inline-block;
    padding: 0 16px;
    margin-right: -4px;
    position: relative;
}

.navigation_ul > li a {
    color: #333;
    font-size: 14px;
    display: inline-block;
}

.navigation_ul > li:hover > a {
    color: #003764;
}

.navigation_ul > li:not(:nth-last-child(2)):after {
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
    background-color: #b2b2b2;
}

.navigation_ul > li:last-child {
    display: none;
}

.subnavigation_ul {
    top: 20px;
    width: 300px;
    text-align: center;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(128,128,128,1);
    -moz-box-shadow: 0px 5px 10px 0px rgba(128,128,128,1);
    box-shadow: 0px 5px 10px 0px rgba(128,128,128,1);
    display: none;
    background-color: #FFF;
}

.subnavigation_ul > li {
    padding: 10px 0;
}

.subnavigation_ul > li:not(:last-child) {
    border-bottom: 1px solid #808080;
}

.subnavigation_ul > li > a {
    font-size: 14px;
    display: block;
    width: 100%;
}

.langs {
    /*display: inline-block;*/
    display: none;
    vertical-align: middle;
    font-size: 12px;
    color: #808080;
    position: relative;
}

.langs p, .selectedLang {
    text-transform: uppercase;
}

.availableLangs {
    display: none;
    position: absolute;
    top: 20px;
    left: -2px;;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(128,128,128,1);
    -moz-box-shadow: 0px 5px 10px 0px rgba(128,128,128,1);
    box-shadow: 0px 5px 10px 0px rgba(128,128,128,1);
    background-color: #fff;
}

.availableLangs a {
    display: block;
    font-size: 12px;
    color: #808080;
    padding: 5px;
}

.selectedLang {
    cursor: pointer;
    display: block;
}

.selectedLang .icon-arrowDown {
    display: inline-block;
    vertical-align: middle;
    font-size: 8px;
    color: #808080;
    margin-left: 5px;
}

#areasMercado_homepage {
    
}

.areasMercado_homepage_ul {
    
}

.areasMercado_homepage_ul > li {
    
}


/************************************/
/* END HEADER */
/************************************/

/************************************/
/* HOMEPAGE */
/************************************/

#homepage_1, #homepage_2 {
    background-color: rgba(255,255,255,0.9);
}

.slickWrapper {
    position: relative;
}

.slickMe {
    
}

.slickSlideWrapper {
    position: relative;
}

.slickSlide {
    min-height: 580px;
    height: 50vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.bluePanel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0,55,100,0.5);
    z-index: 99;
}

.slideText {
    z-index: 100;
    width: 100%;
    color: #FFF;
    
}

.slideTitle {
     margin-bottom: 20px;
}

.slideInfo {
    margin-bottom: 20px;
}

.slideMore {
    background-color: #bf9674;
    border-radius: 4px;
    width: 186px;
    margin: 0 auto;
}

.slideMore a {
    color: #FFF;
    display: block;
    padding: 15px 0;
}

.slickMeArrows {
    right: 20px;
    z-index: 200;
}

.backArrow {
    background-color: #FFF;
    border-radius: 50%;
    padding: 10px;
    font-size: 20px;
    position: relative;
    bottom: 5px;
    cursor: pointer;
}

.nextArrow {
    background-color: #FFF;
    border-radius: 50%;
    padding: 10px;
    font-size: 20px;
    position: relative;
    top: 5px;
    cursor: pointer;
}

.sobrenos_homepage_title {
    display: inline-block;
    width: 50%;
    padding: 10px;
    color: #003764;
}

.sobrenos_homepage_text {
    float: right;
    width: 50%;
    padding: 10px;
}

.maisSobrenos {
    display: inline-block;
    width: 180px;
    height: 50px;
    text-align: center;
    background-color: #98a9be;
    border-radius: 4px;
    margin-left: 10px;
    margin-top: 10px;
}

.maisSobrenos a {
    display: block;
    padding: 15px 0px;
    color: #FFF;
}

#areasMercado_homepage {
    background-color: #eaeef2;
}

.areasMercado_homepage_title {
    color: #003764;
    margin-bottom: 30px;
}

.areasMercado_homepage_ul {
    display: block;
    width: 100%;
}

.areasMercado_homepage_ul > li {
    height: 250px;
    width: 25%;
    text-align: center;
    float: left;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.areasMercado_homepage_ul > li > a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.blueCurtain {
    background-color: rgba(0,55,100,0.5);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.areaMercado_title {
    color: #FFF;
    z-index: 11;
    width: 100%;
    padding: 0 10px;
}

.areaMercado_title .icon-arrowRight {
    background-color: #FFF;
    color: #98a9be;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 20px;
    display: none;
}

.areaMercado_title .icon-arrowRight:before {
    position: relative;
    top: 5px;
}

.areasMercado_homepage_ul > li:hover .blueCurtain {
    background-color: #98a9be;
}

.areasMercado_homepage_ul > li:hover .areaMercado_title .icon-arrowRight {
    display: block;
}

.marcasSlider_title {
    margin-bottom: 30px;
    position: relative;
}

.marcasSlider_backArrow {
    cursor: pointer;
    border-radius: 50%;
    background-color: #e5e5e5;
    color: #000;
    font-size: 20px;
    width: 30px;
    height: 30px;
    right: 35px;
}

.marcasSlider_nextArrow {
    cursor: pointer;
    border-radius: 50%;
    background-color: #e5e5e5;
    color: #000;
    font-size: 20px;
    width: 30px;
    height: 30px;
    right: 0;
}

.slickMarcas {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

.marcasSlider {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    float: left;
    width: 20%;
    height: 150px;
}

.firstNews {
    
}

.firstNews_image {
    width: 100%;
    float: left;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}

.firstNews_texto {
    width: 100%;
    float: left;
    background-color: #e0e5eb;
    padding: 20px;
}

.firstNews_smallText {
    margin-bottom: 20px;
}

.firstNews_date {
   color: #98a9be;
    display: inline-block;
    width: calc(100% - 34px);
}

.firstNews_button {
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    background-color: #FFF;
    color: #000;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
}

.firstNews_button.icon-arrowRight:before {
    top: 5px;
    position: relative;
}

.otherNews_ul {
    
}

.otherNews_ul > li {
    width: 100%;
    float: left;
}

.otherNews_ul > li:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
}

.otherNews_image {
    width: 140px;
    height: 100px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    float: left;
}

.otherNews_info {
    width: calc(100% - 140px);
    float: left;
    padding-left: 20px;
    position: relative;
    height: 100px;
}

.otherNews_text {
    
}

.otherNews_date {
    color: #98a9be;
    position: absolute;
    bottom: 0;
}



/************************************/
/* END HOMEPAGE */
/************************************/


/************************************/
/* FOOTER */
/************************************/

.newsletterWrapper {
    background-color: #f5f6f8;
}

.footerLinks {
    text-align: left;
}

.footerLinks li {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
}

.footerLinks li:first-child {
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}

.footerLinks li:first-child:after {
    content: "";
    width: 1px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 10px;
    background-color: #b2b2b2
}


.footerLinks li:nth-child(2) {
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}


.footerLinks li:nth-child(2):after {
    content: "";
    width: 1px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 10px;
    background-color: #b2b2b2
}

.newsletterTitle {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    margin-right: -4px;
    color: #003764;
    padding-right: 20px;
}

.formWrapper {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
}

.formParent input {
    display: inline-block;
    width: calc(100% - 40px);
    vertical-align: top;
    border: none;
    padding-left: 10px;
    height: 40px;
    margin-right: -4px;
}

.formParent button {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: top;
    border: none;
    background-color: #FFF;
}

.formParent .icon-arrowRight {
    font-size: 20px;
    color: #000;
}

.formParent input::-webkit-input-placeholder {
    color: #333;
    font-size: 15px
}

.formParent input:-moz-placeholder { /* Firefox 18- */
    color: #333;
    font-size: 15px
}

.formParent input::-moz-placeholder {  /* Firefox 19+ */
    color: #333;
    font-size: 15px
}

.formParent input:-ms-input-placeholder {  
    color: #333;
    font-size: 15px
}

#mce-FNAME {
    width: calc(50% - 40px);
    margin-right: 21px;
    margin-top: 10px;
    margin-left: 15px;
}

#mce-LNAME {
    width: calc(50% - 40px);
    margin-top: 10px;
    margin-bottom: 10px;
}

#mc-embedded-subscribe {
    margin-right: 0;
    width: calc(100% - 55px);
    margin-left: 15px;
}

footer {
    background-color: #eaeef2;
    text-align: center;
    padding: 30px 15px;
}

.footerFaceText {
    text-align: center;
    color: #003764;
    margin-bottom: 20px;
}

.facebookIcon {
    background-color: #425f9c;
    color: #FFF;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border-radius: 50%;
    margin:0 auto 20px;
    text-align: center;
    padding-top: 10px;
    display: inline-block;
    vertical-align: top;
    margin: 5px;
}

.InstagramIcon {
    background-color: #e95950;
    color: #FFF;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border-radius: 50%;
    margin:0 auto 20px;
    text-align: center;
    padding-top: 10px;
    display: inline-block;
    vertical-align: top;
    margin: 5px;
}

.InstagramIcon a {
    display: block;
    color: #FFF;
}

.linkedinIcon {
    background-color: #4a86c5;
    color: #FFF;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border-radius: 50%;
    margin:0 auto 20px;
    text-align: center;
    padding-top: 10px;
    display: inline-block;
    vertical-align: top;
    margin: 5px;
}

.facebookIcon a {
    display: block;
    color: #FFF;
}

.linkedinIcon a {
    display: block;
    color: #FFF;
}

.youtubeIcon {
    background-color: #c4302b;
    color: #FFF;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border-radius: 50%;
    margin:0 auto 20px;
    text-align: center;
    padding-top: 10px;
    display: inline-block;
    vertical-align: top;
    margin: 5px;
}

.youtubeIcon a {
    display: block;
    color: #FFF;
}


.footerBottomText {
    margin-bottom: 20px;
}

.kriacaoLogo {
    color: #999999;
    font-size: 56px;
}

.kriacaoLogo a {
    color: #999999;
    display: block;
}

.kriacaoLogo .icon-kriacao {
    line-height: 20px;
}

/************************************/
/* END FOOTER */
/************************************/


/************************************/
/* EMPRESA */
/************************************/

.areaTopBorder {
    border-top: 1px solid #98a9be;
}

.areaWrapper {
    margin-top: 4px;
    border-top: 1px solid #98a9be;
    border-bottom: 1px solid #98a9be;
    text-align: center;
}

.areaTitle {
    padding: 20px 50px;
    color: #FFF;
    background-color: #003764;
    display: inline-block;
    text-transform: uppercase;
}

.empresa_text, .empresaWrapper {
    position: relative;
}

.empresa_text_title {
    margin-bottom: 30px;
    color: #003764;
}

.empresa_text a, .empresaWrapper a, .empresa_text_bottom a {
    text-decoration: underline;
    color: #003764;
}

.empresaImageBreak {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 400px;
}

.mobileMore {
    display: none;
}

/************************************/
/* END EMPRESA */
/************************************/


/************************************/
/* SERVIÇOS */
/************************************/

.servicoBox {
    margin-bottom: 20px;
}

.servicoBox_top {
    padding: 50px 15px 20px;
}

.servicosListagem .servicoBox:nth-of-type(odd) .servicoBox_top {
    background-color: #eaeef2;
}

.servicosListagem .servicoBox:nth-of-type(even) .servicoBox_top {
    background-color: #98a9be;
}

.servicoTitle {
    color: #335f83;
}

.servicoBox_bottom {
    padding: 20px 15px 50px;
}

.servicosListagem .servicoBox:nth-of-type(odd) .servicoBox_bottom {
    background-color: #ccd7e0;
}

.servicosListagem .servicoBox:nth-of-type(even) .servicoBox_bottom {
    background-color: #003764;
}

.servicoText {
    color: #FFF;
}


/************************************/
/* END SERVIÇOS */
/************************************/





/************************************/
/* ÁREAS DE MERCADO */
/************************************/

.areaSubtitle {
    color: #003764;
}

.areaSubtitle p {
    display: inline-block;
}

.areasBox {
    background-color: #f5f6f8;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.3);
}

.areasBox a {
    display: block;
    width: 100%;
}

.marketTitle {
    color: #003764;
    border-bottom: 1px solid #cbd4de;
    padding: 20px 0 40px;
    margin-bottom: 20px;
}

.areaImage {
    width: 100%;
    display: block;
    height: 255px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/************************************/
/* END ÁREAS DE MERCADO */
/************************************/





/************************************/
/* ÁREA DE MERCADO */
/************************************/

.areaSubtitle a {
    color: #003764;
    display: inline-block;
}

.areaBox_defs {
   text-align: center;
   font-weight: 700; 
}

.areaBox {
    -webkit-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
    background-color: #FFF;
    padding: 20px;
}

.areaBox a {
    display: block;
}

.areaBox_image {
    height: 220px;
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}


/************************************/
/* END ÁREA DE MERCADO */
/************************************/


/************************************/
/* ÁREA INFO */
/************************************/

.areaInfo_image {
    height: 255px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #FFF;
    border: 20px solid rgba(255,255,255,0);
     -webkit-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
}

.areaInfo_text {
    padding-top: 20px;
}

.moreAreaInfo {
    position: relative;
    font-size: 20px;
    color: #98a9be;
    border-radius: 50%;
    cursor: pointer;
    background-color: #003764;
    width: 40px;
    height: 40px;
    margin-top: 15px;
    display: none;
}

.areaTopics {
    border-top: 1px solid #98a9be;
    display: block;
}

.areaTopics_ul {
    display: block;
    width: 100%;
}

.areaTopics_ul li {
    height: 50px;
    float: left;
    width: 25%;
    padding: 10px;
    border-bottom: 1px solid #98a9be;
    position: relative;
}

.areaTopics_ul li:after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #98a9be;
    position: absolute;
    right: 0;
    top: 20px;
}

.areaTopics_ul li p {
    display: block;
    text-align: center;
}

.areaTopics_ul li:nth-child(4n):after {
    display: none;
}

.areaTopics > .clearFix {
    width: 100%;
    height: 1px;
    background-color: #98a9be;
    display: block;
    position: relative;
    bottom: 1px;
}


/************************************/
/* END ÁREA INFO */
/************************************/




/************************************/
/* DOWNLOADS */
/************************************/

.downloads_ul {
    border-top: 1px solid #98a9be;
}

.downloads_ul li {
    height: 50px;
    float: left;
    width: 50%;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #98a9be;
    position: relative;
}

.downloads_ul li a {
    display: block;
    height: 100%;
}

.downloads_ul > .clearFix {
    width: 100%;
    height: 1px;
    background-color: #98a9be;
    display: block;
    position: relative;
    bottom: 1px;
}

.downloads_ul li:nth-child(odd):after {
    content: "";
    width: 1px;
    height: 10px;
    background-color: #98a9be;
    position: absolute;
    right: 0;
    top: 20px;
}

.downloads_ul li:nth-child(4n + 3), .downloads_ul li:nth-child(4n + 4) {
    background-color: #f5f6f8;
}

/************************************/
/* END DOWNLOADS */
/************************************/



/************************************/
/* NOTICIAS */
/************************************/ 

.noticiasWrapper {
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.noticiasWrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.noticias_image {
    width: 160px;
    height: 120px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: top;
}

.noticias_info {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 164px);
    height: 120px;
    position: relative;
    padding-left: 30px;
    padding-top: 10px;
}

#noticias div.noticiasWrapper:last-of-type {
    padding-bottom: 0;
    margin-bottom: 50px;
    border-bottom: none;
}

.noticias_info_data {
    color: #98a9be;
    position: absolute;
    bottom: 0;
    left: 30px;
    text-transform: capitalize;
}

/************************************/
/* END NOTICIAS */
/************************************/








/************************************/
/* NOTICIA */
/************************************/

.noticia_image {
    height: 425px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 100%;
}

.noticiaTitle {
    color: #003764;
    margin-bottom: 20px;
    display: block;
}

.noticiaData {
    display: block;
    margin-bottom: 25px;
}

.noticiaTexto {
    border-bottom: 1px solid #cccccc;
    display: block;
    width: 100%;
}

.noticiaWrapper, .noticiaWrapper a {
    display: block;
    width: 100%;
}

.noticiaSeguinte {
    color: #003764;
    padding-top: 20px;
}

/************************************/
/* END NOTICIA */
/************************************/



/************************************/
/* CONTACTOS */
/************************************/

.contactosIframe {
    
}

.moradaArea {
    height: 435px;
}

.moradaTexto p {
    color: #003764;
}

.contactoWrapper {
    
}

.contactoWrapper a {
    
}

.contactoIcon {
    font-size: 40px;
    color: #98a9be;
    margin-bottom: 20px;
}

.contactoData {
    color: #003764;
}

/************************************/
/* END CONTACTOS */
/************************************/







/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/















/************************************/
/************************************/
/* TABLET */
/************************************/
/************************************/

@media (max-width:1200px) {
	
	.hideDesktop {
		display: block;
	}
	
	.hideMobile {
		display: none;
	}

    .col-sm-15 {
        width: 20%;
        float: left;
    }
	
	.size48 {
		font-size: 40px;
	}

	.size36 {
		font-size: 30px;
	}

	.size24, .size22 {
		font-size: 20px;
	}

	.size18 {
		font-size: 18px;
	}
	
	.margin70 {
		margin-bottom: 60px;
	}
	
    .margin50 {
        margin-bottom: 40px;
    }
    
    .padding70 {
		padding-bottom: 60px;
	}
	
    .padding50 {
        padding-bottom: 40px;
    }
    
    .sectionP50 {
        padding-bottom: 40px;
        padding-top: 40px;
    }
    
    .sectionM70 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
	.sectionP70 {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.sectionM70 {
		margin-top: 60px;
		margin-bottom: 60px;
	}


/************************************/
/* HEADER */
/************************************/
	
    .burger {
        display: block;
    }
    
    .navigation {
        width: 100%;
    }
    
    .navigation_ul {
        display: none;
        position: absolute;
        top: 20px;
        right: 0;
        width: 300px;
        -webkit-box-shadow: 0px 0px 5px 2px rgba(128,128,128,1);
        -moz-box-shadow: 0px 0px 5px 2px rgba(128,128,128,1);
        box-shadow: 0px 0px 5px 2px rgba(128,128,128,1);
        background-color: #fafafa;
    }
    
    .navigation_ul > li {
        display: block;
        padding: 10px 0;
        text-align: center;
        margin: 0;
    }
    
    .navigation_ul > li:not(:last-child) {
        border-bottom: 1px solid #808080;
    }
    
    .navigation_ul > li:not(:nth-last-child(2)):after {
        display: none;
    }
    
    .subnavigation_ul {
        left: 0;
        top: 0;
        transform: initial;
        position: relative;
        box-shadow: none;
    }
    
    .langs {
        display: none;
    }
    
    .navigation_ul > li:last-child {
        /*display: block;*/
        display: none;
        background-color: #FFF;
    }
    
    .subnavigation_ul > li:first-child {
        margin-top: 10px;
        border-top: 1px solid #808080;
    }
    
    .subnavigation_ul > li:last-child {
        padding-bottom: 0;
    }
    
/************************************/
/* END HEADER */
/************************************/

	
	
	
/************************************/
/* HOMEPAGE */
/************************************/

    .slickSlide {
        min-height: 400px;
    }
    
    .areasMercado_homepage_ul > li {
        height: 180px;
    }
	
    .firstNews_image, .firstNews_texto {
        width: 50%;
        height: 270px;
        position: relative;
    }
    
    .firstNews_date {
        position: absolute;
        bottom: 20px;
    }
    
    .firstNews_button {
        position: absolute;
        bottom: 20px;
        right: 20px;
    }
    
    .firstNews {
        margin-bottom: 20px;
    }
    
    .otherNews_ul > li {
        width: 33.33%;
    }
    
    .otherNews_ul > li:last-child {
        width: calc(33.33% - 40px);
    }
    
    .otherNews_ul > li:not(:last-child) {
        border-bottom: none;
        border-right: 1px solid #CCC;
        padding-bottom: 0;
        padding-right: 20px;
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .otherNews_image {
        width: 100%;
        height: 150px;
        display: block;
    }
    
    .otherNews_info {
        height: 100%;
        width: 100%;
        padding-left: 0;
    }
    
    .otherNews_date {
        position: relative;
    }
    
    .otherNews_text {
        margin: 15px 0;
    }
    
    

/************************************/
/* END HOMEPAGE */
/************************************/

	
	
	
	

/************************************/
/* FOOTER */
/************************************/

	.footerLinks {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footerLinks li {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        width: calc(33.33% - 12px);
        text-align: center;
    }
    
    /*.footerLinks li:first-child {
        padding-right: 20px;
        margin-right: 20px;
        position: relative;
        text-align: right;
    }*/

/************************************/
/* END FOOTER */
/************************************/


/************************************/
/* EMPRESA */
/************************************/
    
    .areaTitle {
        padding: 20px 40px;
    }
    
    .empresa_text_title {
        margin-bottom: 20px;
    }
    
    .empresaImageBreak {
        height: 300px;
    }
    
    
    
/************************************/
/* END EMPRESA */
/************************************/


/************************************/
/* SERVIÇOS */
/************************************/
    
    .servicoBox_top {
        padding: 40px 15px 20px;
    }
    .servicoBox_bottom {
        padding: 20px 15px 40px;
    }
    
/************************************/
/* END SERVIÇOS */
/************************************/
    
    
    
/************************************/
/* ÁREAS DE MERCADO */
/************************************/
    
    .marketTitle {
        padding: 10px 0 30px;
        margin-bottom: 20px;
    }
    
    .areaImage {
        height: 225px;
    }
    
/************************************/
/* END ÁREAS DE MERCADO */
/************************************/    
    
    
    
/************************************/
/* ÁREA DE MERCADO */
/************************************/
    
    .areaBox_image {
        height: 225px;
    }
    
/************************************/
/* END ÁREA DE MERCADO */
/************************************/  
    
    
/************************************/
/* ÁREA INFO */
/************************************/
    
    .areaInfo_image {
        margin-bottom: 40px;
    }
    
    .areaInfo_text {
        padding-top: 0;
    }   
    
    .moreAreaInfo {
        display: block;
    }
    
    .areaTopics {
        display: none;
    }
    
    .areaTopics_ul li {
        width: 33.33%;
    }
    
    .areaTopics_ul li:nth-child(4n):after {
        display: block;
    }
    
    .areaTopics_ul li:nth-child(3n):after {
        display: none;
    }

    
/************************************/
/* END ÁREA INFO */
/************************************/   
  
    
    
/************************************/
/* NOTICIAS */
/************************************/
    
    #noticias div.noticiasWrapper:last-of-type {
        margin-bottom: 40px;
    }
    
/************************************/
/* END NOTICIAS */
/************************************/    
    
   
/************************************/
/* CONTACTOS */
/************************************/
    
    
    .moradaArea {
        height: inherit;
    }
    
    .moradaTexto {
        top: 0;
        transform: translateY(0);
    }
    
    .contactoWrapper {
        margin-bottom: 30px;
    }
    
/************************************/
/* END CONTACTOS */
/************************************/   
    
    
	
}






/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/



/************************************/
/************************************/
/*   Medium Devices, Desktops */
/************************************/
/************************************/

@media (min-width:992px) and (max-width:1200px) {
	
	.col-md-15 {
        width: 20%;
        float: left;
    }
	
	
	
	
	
	
	
}




/************************************/
/************************************/
/*  Medium Devices, Desktops END */
/************************************/
/************************************/











/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
















/************************************/
/************************************/
/* MOBILE */
/************************************/
/************************************/

@media (max-width:767px) {

	.hideMobile {
		display: none;
	}
	
	.col-xs-15 {
		width: 20%;
		float: left;
	}
	
	.pads {
		padding: 0;
	}
	
	.size48 {
		font-size: 30px;
	}

	.size36 {
		font-size: 24px;
	}

	.size24, .size22 {
		font-size: 18px;
	}

	.size18 {
		font-size: 16px;
	}

	
	.margin70 {
		margin-bottom: 40px;
	}
	
	.sectionP70 {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.sectionM70 {
		margin-top: 40px;
		margin-bottom: 40px;
	}
    
    .margin50 {
		margin-bottom: 30px;
	}
    
    .padding70 {
		padding-bottom: 40px;
	}
	
    .padding50 {
        padding-bottom: 30px;
    }
	
	.sectionP50 {
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.sectionM50 {
		margin-top: 30px;
		margin-bottom: 30px;
	}

/************************************/
/* HEADER */
/************************************/

    #stickyHeader {
        height: 70px;
    }
    
    .navigation_ul, .subnavigation_ul {
        width: 280px;
    }
	
/************************************/
/* END HEADER */
/************************************/

	
	
	
/************************************/
/* HOMEPAGE */
/************************************/
	
    .slickSlide {
        min-height: 300px;
        height: 300px;
    }
	
	.slideText {
        z-index: 100;
        width: calc(100% + 1px);
        color: #003764;
        top: inherit;
        background-color: #fafafa;
        padding: 25px 0;
        transform: translate(0,0);
        left: 0;
        top: 0;
        position: relative;
        display: block;
    }
    
    .slickMeArrows {
        right: 20px;
        z-index: 200;
        top: 196px;
        transform: translateY(0%);
    }
    
    .sobrenos_homepage_title {
        display: block;
        width: 100%;
    }
    
    .sobrenos_homepage_text {
        float: none;
        width: 100%;
        display: block;
    }
    
    .maisSobrenos {
        
    }
    
    .areasMercado_homepage_ul > li {
        width: 100%;
    }
    
    .marcasSlider_title p {
        width: calc(100% - 80px);
    }
    
    
    .firstNews_image {
        width: 100%;
        height: 225px;
    }
    
    .firstNews_texto {
        width: 100%;
        height: auto;
    }
    
    .firstNews_date {
        bottom: 0;
        position: relative;
    }
    
    .firstNews_button {
        position: relative;
        bottom: 0;
        right: 0;
    }
    
    .otherNews_ul {
        display: none;
    }
        
/************************************/
/* END HOMEPAGE */
/************************************/

	
	
	
	

/************************************/
/* FOOTER */
/************************************/

    .footerLinks li:first-child:after {
        display: none;
    }
    
    .footerLinks li:nth-child(2):after {
        display: none;
    }
	
    .footerLinks li:first-child, .footerLinks li:nth-child(2) {
        text-align: center;
        margin: 0 0 10px;
        padding: 0;
    }
    
    .footerLinks li {
        display: block;
        vertical-align: middle;
        line-height: inherit;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .newsletterTitle {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
        padding: 0;
        text-align: center;
    }
    
    .formWrapper {
        display: block;
        width: 100%;
    }

    #mce-LNAME {

    }

    #mce-FNAME {
        margin-left: 0;
        margin-right: 36px;
    }

    #mc-embedded-subscribe {
        margin-left: 0;
        width: calc(100% - 40px);
    }

    
/************************************/
/* END FOOTER */
/************************************/


	
/************************************/
/* EMPRESA */
/************************************/
    
    .areaTitle {
        padding: 20px 40px;
        display: block;
        width: 100%;
    }
    
    .empresaImageBreak {
        height: 240px;
    }
    
    .empresa_text {
        max-height: 300px;
        overflow: hidden;
        margin-bottom: 80px;
        transition: all 0.4s ease-out;
    }
    
    .mobileMore {
        display: block;
        cursor: pointer;
        position: absolute;
        bottom: -50px;;
        width: 40px;
        height: 40px;
        color: #98a9be;
        text-align: center;
        background-color: #003764;
        font-size: 20px;
        border-radius: 50%;
    }
    
    .mobileMore100 {
        max-height: 100%;
    }
    
/************************************/
/* END EMPRESA */
/************************************/

    
    
/************************************/
/* SERVIÇOS */
/************************************/
    
    .servicoBox_top {
        padding: 30px 15px 20px;
    }
    .servicoBox_bottom {
        padding: 20px 15px 30px;
    }
    
/************************************/
/* END SERVIÇOS */
/************************************/
    
    
    
/************************************/
/* ÁREAS DE MERCADO */
/************************************/
    
    .marketTitle {
        padding: 0px 0 20px;
        margin-bottom: 10px;
    }
    
    .areaImage {
        height: 195px;
    }
    
/************************************/
/* END ÁREAS DE MERCADO */
/************************************/  
    
    
/************************************/
/* ÁREA DE MERCADO */
/************************************/
 
    .areaSubtitle p {
        display: block;
    }
    
    #areainfo .areaSubtitle a {
        display: block;
    }
    
    .areaSubtitle p span {
        display: none;
    }
    
    .areaSubtitle a span {
        display: none;
    }
    
    .areaBox {
        padding: 10px;
    }
    
    .areaBox_image {
        height: 195px;
    }
    
/************************************/
/* END ÁREA DE MERCADO */
/************************************/    
    
/************************************/
/* ÁREA INFO */
/************************************/
    
    .areaInfo_image {
        margin-bottom: 30px;
    }
    
    .areaTopics_ul li {
        width: 100%;
    }
    
    .areaTopics_ul li:after {
        display: none;
    }
    
    .areaTopics_ul li:nth-child(4n):after {
        display: none;
    }
    
/************************************/
/* END ÁREA INFO */
/************************************/ 

    
    
/************************************/
/* DOWNLOADS */
/************************************/    
    
    .downloads_ul li {
        width: 100%;
    }
    
    .downloads_ul li:nth-child(odd):after {
        display: none;
    }
    
    .downloads_ul li:nth-child(4n + 3), .downloads_ul li:nth-child(4n + 4) {
        background-color: #FFF;
    }
    
    .downloads_ul li:nth-child(even) {
        background-color: #f5f6f8;
    }
    
    
/************************************/
/* END DOWNLOADS */
/************************************/
    
    
/************************************/
/* NOTICIAS */
/************************************/
    
    .noticias_image {
        width: 140px;
        height: 105px;
    }
    
    .noticias_info {
        width: 100%;
        height: auto;
        display: block;
        padding-left: 0;
        padding-top: 20px;
    }
    
    .noticias_info_data {
        position: relative;
        bottom: 0;
        left: 0;
        padding-top: 20px;
    }
    
    #noticias div.noticiasWrapper:last-of-type {
        margin-bottom: 50px;
    }
    
/************************************/
/* END NOTICIAS */
/************************************/     
    
/************************************/
/* CONTACTOS */
/************************************/
    
    .contactosIframe {
        height: 300px;
    }
    
    
    
/************************************/
/* END CONTACTOS */
/************************************/     

	
}







