/* 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, strong, sub, sup, tt, var,
b, 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 */
/************************************/

body {
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	color: #333;
	position: relative;
}

.sourceSansP {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
}

.size36 {
	font-size: 36px;
}

.size30 {
	font-size: 30px;
}

.size18 {
	font-size: 18px;
}

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

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

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

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

::-webkit-input-placeholder {
   color: #999999;
}

:-moz-placeholder { /* Firefox 18- */
   color: #999999;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #999999;  
}

:-ms-input-placeholder {  
   color: #999999;  
}

.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 {
	background-color: #FFF;
}

.alignRight {
	text-align: right;
}

.alignLeft {
	text-align: left;
}

.alignCenter {
	text-align: center;
}

.margin70 {
	margin-bottom: 70px;
}

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

#stickyHeader {
	background-color: #f2f2f2;
	position: fixed;
	z-index: 9999;
	width: 100%;
	top: 0;
}

.logo {
	max-width: 430px;
    float: left;
	max-height: 110px;
}

.logo a {
	display: block;
}

.storeSearchLang {
	float: right;
	width: 50%;
	text-align: right;
	margin-bottom: 10px;
}

.storeLink {
	display: inline-block;
	background-color: #000;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	padding: 10px 25px;
	margin-right: 20px;
	vertical-align: bottom;
}

.storeLink > a {
	display: block;
}

.storeLink > a > p {
	font-size: 15px;
	font-weight: 700;
	color: #FFF;
}

.searchBox {
	display: inline-block;
	vertical-align: bottom;
	max-width: 250px;
	height: 30px;
	width: 100%;
	background-color: #FFF;
	padding: 0 5px 0 10px;
	border-radius: 4px;
	border: 1px solid #bfbfbf;
	margin-right: 20px;
}

.searchBoxWrapper {
	width: 100%;
	height: 100%;
}

.searchBoxWrapper input {
	display: inline-block;
	border: none;
	vertical-align: middle;
	height: 100%;
	width: calc(100% - 20px);
	margin-right: -4px;
}

.searchBoxWrapper button.icon-icon-lupa {
	font-size: 20px;
	background-color: rgba(0,0,0,0);
	border: none;
	display: inline-block;
	vertical-align: middle;
}

.langBox {
	display: inline-block;
	vertical-align: bottom;
	border: 1px solid #bfbfbf;
	border-radius: 4px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	text-align: center;
	color: #333;
}

.langBox a {
	display: block;
}

.menu {
	float: right;
	text-align: right;
}

.menu_ul > li {
	display: inline-block;
	position: relative;
}

.menu_ul > li:hover > a > p {
	color: #c9010e !important;
}


.menu_ul > li > a {
	display: block;
	padding: 20px;
}

.menu_ul > li:last-child > a {
	padding-right: 0;
}

.menu_ul > li > a > p {
	color: #333;
	font-size: 15px;
	font-weight: 700;
}

.selectedPage {
	color: #c9010e !important;
}

.subMenu_ul {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
    width: 500px;
	text-align: left;
	background-color: #f2f2f2;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
}

.subMenu_ul > li {
	display: inline-block;
    vertical-align: middle;
    width: calc(50% - 4px);
	padding: 6px 10px;
}

.subMenu_ul > li > a {
	display: block;
}

.subMenu_ul > li > a > p {
	font-size: 15px;
}

.subMenu_ul > li:hover > a > p {
	color: #c9010e !important;
}

.burger {
	display: none;
}
 
/************************************/
/* END HEADER */
/************************************/

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

.slickMeSlideWrapper {
	position: relative;
} 

.slickMeSlideImage {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 420px;
	width: 100%;
	position: relative;
}

.slickMeWrapper {
	position: relative;
}

.slickMeSlide_text {
	width: 100%;
	text-align: center;
}

.slickMeSlide_text p {
	color: #FFF;
	font-weight: 700;
}

.slickMeSlide_text .size36 > p {
	text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
}

.slickMeSlide_button {
	margin-top: 20px;
	background-color: #d4343e;
	display: inline-block;
	border-radius: 4px;
}

.slickMeSlide_button a {
	display: block;
	padding: 10px 30px;
}

.slickMeBack {
	position: absolute;
	left: 15px;
	bottom: 20px;
	cursor: pointer;
	font-size: 20px;
	color: #FFF;
	padding: 10px;
	border-radius: 4px;
	background-color: rgba(0,0,0,0.25);
}

.slickMeNext {
	position: absolute;
	right: 15px;
	bottom: 20px;
	cursor: pointer;
	font-size: 20px;
	padding: 10px;
	color: #FFF;
	border-radius: 4px;
	background-color: rgba(0,0,0,0.25);
}

.middleText_title {
	font-weight: 300;
	margin-bottom: 30px;
}

.middleText p {
	max-width: 490px;
}

.middleImage {
	text-align: right;
	border-left: 1px solid #999999;
}

.middleImage_text {
	display: inline-block;
	max-width: 190px;
	text-align: left;
	margin-right: 40px;
	vertical-align: top;
}

.middleImage_text p {
	font-weight: 700;
}

.middleImage_button {
	max-width: 190px;
	background-color: #333;
	border-radius: 4px;
	margin-top: 15px;
	vertical-align: top;
}

.middleImage_button a {
	display: block;
	padding: 12px 24px;
}

.middleImage_button p {
	color: #FFF;
	display: inline-block;
	vertical-align: middle;
}

.middleImage_button .icon-icon-nextArrow {
	color: #FFF;
	font-size: 20px;
	margin-right: 15px;
	display: inline-block;
	vertical-align: middle;
}

.middleImage_image {
	max-width: 264px;
	display: inline-block;
	vertical-align: bottom;
}

.areasHome {
	margin-bottom: 40px;
	text-align: center;
}

.areasList {
	
}

.areasList > li {
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
	margin-right: -4px;
	text-align: center;
}

.areasList > li > a {
	display: block;
	padding: 60px 0 50px;
	position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
	-moz-transform:    translateY(-50%);
	-ms-transform:     translateY(-50%);
	-o-transform:      translateY(-50%);
	transform:         translateY(-50%);
}

.areasList > li:nth-child(4n+1) {
	background-color: #f2f2f2;
}

.areasList > li:nth-child(4n+2) {
	background-color: #f7f7f7;
}

.areasList > li:nth-child(4n+3) {
	background-color: #ededed;
}

.areasList > li:nth-child(4n+4) {
	background-color: #e8e8e8;
}

.areasList > li > a .areaBox > div {
	font-size: 50px;
	color: #666666;
}

.areasList > li:hover {
	background-color: #c9010e;
}

.areasList > li:hover a div {
	color: #FFF;
}

.areaBoxText {
	font-size: 14px !important;
}

.areaBox {
	padding: 0 10px;
}



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


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

.representacoesWrapper {
    padding: 10px 0;
    border-top: 3px solid #999999;
    border-bottom: 1px solid #999999;
	margin-bottom: 40px;
}

.representacoesMobile {
	display: none;
}

.representacoesWrapper > div {
	display: inline-block;
	vertical-align: middle;
	height: 34px;
	border-right: 1px solid #999999;
	padding-right: 15px;
}

.representacoesWrapper > div p {
	line-height: 34px;
}

.representacoesSlick {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 145px);
}

.representacoesSlick > li, .representacaoSlide {
	height: 34px;
} 

.representacaoSlide img {
	height: 100%;
}

.representacoesSlick > li > a {
	display: block;
}

.slick-slide {
	border-right: 1px solid #999999;
}

.icon-kriacao {
	font-size: 59px;
	text-align: center;
	margin-top: 20px;
	color: #999;
	line-height: 14px;
}

.contactsArea {
	margin-bottom: 30px;
}

footer .icon-phone, footer .icon-email {
	display: inline-block;
	vertical-align: middle;
	font-size: 30px;
	margin-right: 10px;
}

.footerContactos, .footerEmail {
	display: inline-block;
	vertical-align: middle;
}

.footerContactos {
	margin-right: 30px;
}

.footerContactos a {
	display: inline-block;
	vertical-align: middle;
}

.footerContactos a p, .footerEmail a p {
	color: #000;
}

.socialArea {
	text-align: right;
	margin-bottom: 30px;
}

.newsletterBox {
	display: inline-block;
	vertical-align: middle;
	height: 30px;
	border: 1px solid #bfbfbf;
	border-radius: 4px;
	max-width: 250px;
	width: 100%;
	margin-right: 30px;
}

.newsletterBox input {
	display: inline-block;
	vertical-align: top;
	border: none;
	width: calc(100% - 34px);
	padding-left: 10px;
	height: 28px;
}

.newsletterBox button {
	display: inline-block;
	vertical-align: top;
	border: none;
	background-color: rgba(0,0,0,0);
}

.newsletterBox .icon-icon-nextArrow {
	font-size: 20px;
	padding: 5px;
}

.socialMedia {
	display: inline-block;
	vertical-align: middle;
}

.socialMedia .icon-facebook, .socialMedia .icon-googleplus {
	font-size: 20px;
	padding: 5px;
	vertical-align: middle;
	display: inline-block;
	color: #fff;
	background-color: #333;
	border-radius: 4px;
}

.socialMedia .icon-facebook {
	margin-right: 6px;
}

.numerosTel, .email {
	display: inline-block;
	vertical-align: middle;
}

.footerBottom p {
	display: inline-block;
}

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



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

.pageHeader {
	width: 100%;
	height: 420px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.pageHeader_text {
	color: #FFF;
	position: relative;
	top: 130px;
}

.pageHeader_text p:first-of-type {
	font-weight: 700;
	max-width: 450px;
}

#empresa article {
	padding: 70px 0;
}

#empresa .line:last-of-type article {
	padding-bottom: 0;
}

#empresa .even {
	background-color: #f2f2f2;
}

.articleTitle {
	padding-bottom: 30px;
}

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


/************************************/
/* SERVIÇOS */
/************************************/
	
#servicos article {
	padding: 70px 0;
}

/*#servicos .line:last-of-type article {
	padding-bottom: 0;
}*/

#servicos .even {
	background-color: #f2f2f2;
}

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


/************************************/
/* AREAS */
/************************************/

.areasLineWrapper {
	width: 100%;
}

div.areasLineWrapper:nth-of-type(odd) {
	background-color: #f2f2f2;
}

.areasLineBox {
	max-width: 1140px;
	margin: 0 auto;
}

#areas .line {
	width: 50%;
	display: inline-block;
	padding: 70px 0;
	margin-right: -24px;
        vertical-align: top;
}

#areas .line:nth-of-type(odd) {
	margin-right: 10px;
}

#areas .line:nth-of-type(even) {
	margin-left: 10px;
}

#areas .icon {
	display: inline-block;
	vertical-align: top;
	font-size: 70px;
	float: left;
}

#areas .articleTitle {
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 90px);
	float: right;
}

.articleContent {
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 90px);
	float: right;
}


/************************************/
/* END AREAS */
/************************************/

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

#contactos .pageTitle {
	margin-top: 70px;
}

.contactItem {
	margin-bottom: 20px;
}

.contactItem .icon {
	font-size: 30px;
	display: inline-block;
	vertical-align: top;
	margin-right: 20px;
}

.contactData {
	display: inline-block;
	width: calc(100% - 54px);
}

.contactItem a {
	display: inline-block;
}

.contactForm input {
	display: block;
	width: 100%;
	border-radius: 4px;
	border: 1px solid #bfbfbf;
	margin-bottom: 10px;
	height: 30px;
	padding-left: 10px;
}

.contactForm textarea {
	display: block;
	width: 100%;
	border-radius: 4px;
	border: 1px solid #bfbfbf;
	margin-bottom: 10px;
	min-height: 80px;
	padding-left: 10px;
	padding-top: 5px;
}

.contactForm button {
	width: 150px;
	height: 40px;
	border: none;
	background-color: #000;
	color: #FFF;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 700;
}

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


/************************************/
/* INFORMACOES */
/************************************/

#informacoes .articleTitle {
	padding-bottom: 0;
}

#informacoes article {
	cursor: pointer;
	padding: 30px 0;
}

#informacoes article > div {
	padding-top: 30px;
	display: none;
}

/*#informacoes .line:last-of-type article {
	padding-bottom: 70px;
}*/

/************************************/
/* END INFORMACOES */
/************************************/


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















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

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

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

	.size30 {
		font-size: 24px;
	}

	.size18 {
		font-size: 18px;
	}
	
	.margin70 {
		margin-bottom: 60px;
	}


/************************************/
/* HEADER */
/************************************/
	
	#stickyHeader {
		height: 80px;
		top: 40px;
	}
	.storeSearchLang {
    	float: none;
    	width: 100%;
    	text-align: right;
    	margin-bottom: 0;
		background-color: #999999;
		position: fixed;
		top: 0;
		z-index: 9999;
	}
	
	.langBox {
		background-color: #f2f2f2;
		vertical-align: middle;
	}
	
	.storeLink, .searchBox {
		vertical-align: middle;
	}
	
	.logo {
    	max-width: 300px;
    	float: none;
    	height: 80px;
    	display: inline-block;
	}
	
	.logo a, .logo a img {
		height: 80px
	}
	
	.menu {
    	float: none;
    	text-align: right;
    	display: inline-block;
		position: absolute;
		background-color: #f2f2f2;
		right: 15px;
		width: 260px;
		border-radius: 4px;
		-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
		-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
		display: none;
		top: 70px;
	}
	
	.menu_ul > li {
		display: block;
		border-bottom: 1px solid #d9d9d9
	}
	
	.menu_ul > li:last-child {
		border-bottom: none;
	}
	
	.menu_ul > li > a {
		padding: 10px;
	}
	
	.menu_ul > li:last-child > a {
		padding-right: 10px;
	}
	
	.subMenu_ul {
		position: relative;
		top: 0;
		text-align: right;
		-webkit-box-shadow: none;
    	-moz-box-shadow: none;
    	box-shadow: none;
	}
	
	#stickyHeader .burger {
		position: absolute;
		width: 30px;
		height: 30px;
		display: block;
		background: #f2f2f2;
		right: 15px;
	}

	#stickyHeader .burger li {
		position: absolute;
		background: #333;
		width: 30px;
		height: 2px;
		border-radius: 1px;
		margin: 4px 0;
		-webkit-transition: all .5s ease-out;
		-moz-transition: all .5s ease-out;
		transition: all .5s ease-out;
	}

	#stickyHeader .burger li:nth-child(2) {
		margin: 14px 0;
	}

	#stickyHeader .burger li:nth-child(3) {
		margin: 24px 0;
	}

	#stickyHeader .burgerClose li:nth-child(1) {
		opacity: 0;
	}

	#stickyHeader .burgerClose li:nth-child(3) {
		opacity: 0;
	}
	
	#stickyHeader .burgerClose li:nth-child(1) {
	opacity: 0;
	}

	#stickyHeader .burgerClose li:nth-child(3) {
		opacity: 0;
	}
	
	.middleText p {
		max-width: 350px;
	}
	
	.middleImage {
		text-align: center;
	}
	
	.middleImage_text {
		max-width: 201px;
		text-align: center;
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	.middleImage_button {
		margin: 0 auto;
		margin-top: 20px;
	}
	
	.middleImage_text p {
		text-align: left;
	}
	
	.middleImage_image {
		max-width: 200px;
	}
	
	.areasList > li > a {
		padding: 30px 0 50px;
	}
	   
	.areasList > li > a .areaBox > div {
		font-size: 40px;
	}
    
    .subMenu_ul {
        width: 100%;
    }
    
    .subMenu_ul > li {
        display: block;
        width: 100%;
    }
	
/************************************/
/* END HEADER */
/************************************/

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


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

	.contactsArea, .socialArea {
		text-align: center;
	}
	
	
	

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

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

	.pageHeader_text p:first-of-type {
		max-width: 300px;
	}
	
	#empresa article {
		padding: 60px 0;
	}


/************************************/
/* END EMPRESA */
/************************************/
	
	
	
/************************************/
/* SERVIÇOS */
/************************************/
	#servicos article {
		padding: 60px 0;
	}

	#informacoes article {
		padding: 30px 0;
	}
	
	
/************************************/
/* END SERVIÇOS */
/************************************/
	
/************************************/
/* AREAS */
/************************************/
	
	.areasLineWrapper {
		width: 100%;
	}

	div.areasLineWrapper:nth-of-type(odd) {
		background-color: #fff;
	}

	.areasLineBox {
		max-width: 100%;
		margin: 0 auto;
	}

	#areas .line {
		width: 100%;
		margin: 0 auto;
		display: block;
		padding: 60px 0;
	}
	
	.areasLineBox article {
		width: 100%;
		max-width: 720px;
		margin: 0 auto;
	}
	
	.areasLineBox .line:nth-of-type(even) {
		background-color: #f2f2f2;
	}
	
	#areas .line:nth-of-type(even) {
		margin-left: 0;
	}
	
	#areas .line:nth-of-type(odd) {
		margin-right: 0;
	}
	
	#areas .articleTitle, .articleContent {
		width: calc(100% - 100px)
	}
	
	
	
/************************************/
/* END AREAS */
/************************************/

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

	#contactos .pageTitle {
		margin-top: 60px;
	}
	
	

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

	
}






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



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

@media (min-width:992px) and (max-width:1200px) {
	
	.col-md-15 {
        width: 20%;
        float: left;
    }
	
	.middleText p {
		max-width: 430px;
	}
	
	.areasLineBox article {
		width: 100%;
		max-width: 940px;
		margin: 0 auto;
	}
	
}




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











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
















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

@media (max-width:767px) {

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

	.size30 {
		font-size: 20px;
	}

	.size18 {
		font-size: 16px;
	}
	
	.margin70 {
		margin-bottom: 40px;
	}


/************************************/
/* HEADER */
/************************************/
	
	#stickyHeader {
		height: 55px;
	}
	
	.menu {
		top: 55px;
	}
	
	.logo {
		height: 55px;
		width: 215px;
	}
	
	.logo a, .logo a img {
    	height: 55px;
	}
	
	.searchBox {
		width: calc(100% - 186px);
		margin-right: 10px;
	}
	
	.storeLink {
		margin-right: 10px;
		padding: 10px 15px;
	}
	
	
/************************************/
/* END HEADER */
/************************************/

/************************************/
/* HOMEPAGE */
/************************************/
	
	.slickMeSlideWrapper {
		height: 426px;
	}
	
	.slickMeSlideImage {
		height: 276px;
	}
	
	.slickMeSlide_text {
		-webkit-transform: translate(-50%,0%);
		-moz-transform: translate(-50%,0%);
		-ms-transform: translate(-50%,0%);
		-o-transform: translate(-50%,0%);
		transform: translate(-50%,0%);
		top: 296px;
	}
	
	.slickMeSlide_button {
		width: 100%;
	}
	
	.slickMeSlide_text .size36 > p {
		color: #333;
		text-shadow: none;
	}

	.slickMeNext {
		bottom: 160px;
		right: 15px;
	}
	
	.slickMeBack {
		bottom: 160px;
		left: 15px;
	}
	
	.middleText_text {
		display: none;
	}
	
	.middleText p {
		max-width: 100%;
	}
	
	.middleImage_button {
		max-width: 170px;
		margin: 0;
		margin-top: 10px;
	}
	
	.middleImage_text {
		max-width: 180px;
		vertical-align: middle;
	}
	
	.middleImage_image {
		max-width: 100px;
		vertical-align: middle;
	}
	
	.areasList > li {
		display: block;
		width: 100%;
		margin-right: 0;
	}
	
	.areasList > li > a {
		padding: 20px 0;
		text-align: left;
	}
	
	.areasList > li > a .areaBox p {
		display: inline-block;
		vertical-align: middle;
	}
	
	.areasList > li > a .areaBox > div {
		display: inline-block;
		vertical-align: middle;
		margin-right: 10px;
		margin-left: 10px;
	}
	
	.areasList > li > a .areaBox p:last-of-type {
		display: none;
	}

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

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

	.representacoesWrapper {
		margin-bottom: 30px;
	}
	
	.email, .numerosTel {
		display: block;
	}
	
	.contactsArea {
		margin-bottom: 20px;
	}
	
	.footerContactos {
		margin-right: 0;
	}
	
	.socialMedia {
		display: block;
		margin-top: 20px;
	}
	
	.newsletterBox {
		display: block;
		margin: 0 auto;
	}
	
	.representacoesMobile {
		display: inline-block;
		vertical-align: middle;
		height: 34px;
	}

	.representacoesWrapper > div {
		display: inline-block;
		vertical-align: middle;
		height: 34px;
		border-right: 1px solid #999999;
		padding-right: 15px;
		display: none;
	}
	
	.representacoesSlick {
		width: 100%;
	}

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

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

	.pageHeader_text p:first-of-type {
		max-width: 100%;
	}
	
	.pageHeader_text {
		top: 65px;
	}
	
	.pageHeader {
		height: 276px;
	}
	
	#empresa article {
		padding: 40px 0;
	}

/************************************/
/* END EMPRESA */
/************************************/
	
	
/************************************/
/* SERVIÇOS */
/************************************/
	
	#servicos article {
		padding: 40px 0;
	}

	#informacoes article {
		padding: 20px 0;
	}
	
/************************************/
/* END SERVIÇOS */
/************************************/

/************************************/
/* AREAS */
/************************************/
	
	.areasLineBox article {
		width: 100%;
		max-width: calc(100% - 30px);
		margin: 0 auto;
	}
	
	#areas .line {
		padding: 40px 0;
		cursor: pointer;
	}
	
	#areas .icon {
		font-size: 30px;
	}
	
	.articleContent {
		width: 100%;
		padding-top: 20px;
		display: none;
	}
	
	#areas .articleTitle {
		width: calc(100% - 40px);
		padding-bottom: 0;
	}
	
	
	
	
/************************************/
/* END AREAS */
/************************************/


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

	#contactos .pageTitle {
		margin-top: 40px;
	}
	
	.contactForm {
		margin-top: 20px;
	}
	
	#contactos iframe {
		height: 350px;
	}

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







