/*-----------------------------------------------------------------------------------*/
/* GERAL */
/*-----------------------------------------------------------------------------------*/

body{
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	color: #454545;
	background-color: #ffffff;
	font-size: 16px; 
	line-height: 1.5;
	font-weight: normal;
}
a {
	color: #999;
	text-decoration: none;
	transition:opacity 0.2s;
}
a:hover,a:focus {
	/*opacity:0.75;*/
	text-decoration: none;
}
.main{
	margin-top: 44px;
}
@media (min-width: 992px) {
	body, p, h1, h2, h3, h4, h5 {
		font-size: 16px;
	}
	.main{
		margin-top: 144px;
	}
}

/*-----------------------------------------------------------------------------------*/
/* Animations */
/*-----------------------------------------------------------------------------------*/

@-webkit-keyframes moveUp{
	100%{
		-webkit-transform:translateY(0);
		-ms-transform:translateY(0);
		transform:translateY(0);
		-ms-filter:none;
		-webkit-filter:none;
		filter:none;
		opacity:1
	}
}
@keyframes moveUp{
	100%{
		-webkit-transform:translateY(0);
		-ms-transform:translateY(0);
		transform:translateY(0);
		-ms-filter:none;
		-webkit-filter:none;
		filter:none;
		opacity:1
	}
}

/*-----------------------------------------------------------------------------------*/
/* Header */
/*-----------------------------------------------------------------------------------*/

header{
	background: #C60001;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
}
.header-wrapper{
	display: table;
	width: 100%;
	vertical-align: middle;
	padding: 12px 0;
	transition: all 300ms ease;
}
.site-title{
	margin: 0;
	padding: 0;
	display: table-cell;
	width: 80%;
	vertical-align: middle;
	position: relative;
	font-size: 20px;
	line-height: 0.8;
	color:#fff;
	transition: all 300ms ease;
}
.site-title a{
	color:#fff;
}
.site-title img{
	max-width: 200px;
	max-height: 50px;
}
.nav-toggle{
    display: table-cell;
    width: 20%;
    text-align: right;
    vertical-align: middle;
    line-height: 1;
}
.desktop-nav{
	display: table-cell;
	width: 70%;
	text-align: right;
	vertical-align: middle;
}
.desktop-nav ul{
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 1em;
	text-align: right;
}
.desktop-nav ul li{
	margin: 0 0 0 15px;
	padding: 14px 0 0 0;
	display: inline-block;
	position: relative;
}
.desktop-nav ul li a{
	font-size: 20px;
	color:#fff;
	display: inline-block;
	padding-top: 14px;
	border-top: 1px solid #fff;
	text-align: left;
	transition: all 300ms ease;
}
.desktop-nav ul li.selected:before{
	content:'';
	position: absolute;
	top: 3px;
	height: 6px;
	width: 100%;
	background: #fff;
	transition: all 300ms ease;
}
@media (min-width: 992px) {
	.header-wrapper{
		padding: 40px 0 58px 0;
	}
	.site-title{
		font-size:45px;
		width:30%;
		vertical-align: bottom;
	}
}
@media (min-width: 1200px) {
	.desktop-nav ul li a{
		width: 170px;
	}
}

/*-----------------------------------------------------------------------------------*/
/* NAV ICON */
/*-----------------------------------------------------------------------------------*/

.nav-icon{
	display: inline-block;
	width: 20px;
	height: 20px;
	padding:2px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: 300ms ease-in-out;
	cursor: pointer;
	vertical-align: middle;
}
.nav-icon span{
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #fff;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: 300ms ease-in-out;
}
.nav-icon span:nth-child(1) {
	top: 3px;
}
.nav-icon span:nth-child(2){
	top: 9px;
}
.nav-icon span:nth-child(3) {
	top: 15px;
}

/*-----------------------------------------------------------------------------------*/
/* CLOSE ICON */
/*-----------------------------------------------------------------------------------*/

.close-icon{
	display: inline-block;
	width: 20px;
	height: 20px;
	padding:2px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: 300ms ease-in-out;
	cursor: pointer;
}
.close-icon span{
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #000;
	border-radius: px;
	opacity: 1;
	top: 9px;
	left: 0;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: 300ms ease-in-out;
}
.close-icon span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.close-icon span:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*-----------------------------------------------------------------------------------*/
/* [NAV MOBILE] */
/*-----------------------------------------------------------------------------------*/

.nav-mobile{
	display: none;
	width: 250px;
	height: 100%;
	top: 0;
	z-index: 99999;
	overflow-y: scroll;
	position: fixed;
	padding: 30px;
	background: #C60001;
}
.nav-mobile ul li {
	padding: 0 0 30px 0;
}
.nav-mobile ul li a {
	display: block;
	color: #fff;
}
.nav-mobile__close-icon span{
	background: #fff;
}

/*-----------------------------------------------------------------------------------*/
/* Footer */
/*-----------------------------------------------------------------------------------*/

footer{
	padding: 30px 0 0 0;
	background: #C60001;
	color: #fff;
	clear: both;
	font-size: 14px;
	font-family: Helvetica, Arial, sans-serif;
}
.footer-item{
	margin: 0 0 25px 0;
}
@media (min-width: 992px) {
	footer{
		padding: 40px 0 40px 0;
		font-size: 16px;
	}
	.footer-item{
		margin: 0;
	}
	.copyright{
		text-align:left;
	}
	.poweredby{
		text-align:right;
	}
	.footer-box{
		margin: 0;
	}
}

/*-----------------------------------------------------------------------------------*/
/* Destaques */
/*-----------------------------------------------------------------------------------*/
.destaques-slide img{
	display: none;
 	width: 100%;
}
.destaques-swiper-container .swiper-button-next,
.destaques-swiper-container .swiper-button-prev{
	color: #fff;
	background-color: #C60001;
	height: 26px;
	line-height: 26px;
	width: 26px;
	font-size: 15px;
	text-align: center;
	margin-top: -11px;
	display: none;
	background-size: 12px 12px;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
	background-position: 7px 7px;
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E");
	background-position: 7px 7px;
}
.destaques-swiper-container .swiper-pagination-bullet-active{
	background: #666;
}
.destaques-slide-1{
	background-image: url(../img/destaquehome-1.jpg);
	background-size: cover;
	background-position: center top;
}
.destaques-slide-2{
	background-image: url(../img/destaquehome-2.jpg);
	background-size: cover;
	background-position: top;
}
.destaques-slide-3{
	background-image: url(../img/destaquehome-3.jpg);
	background-size: cover;
	background-position: right top;
}
.destaques-container{
	padding: 40px 0;
	display: table;
	table-layout: fixed;
	width: 100%;
	/*position: absolute;*/
	top: 0;
	min-height: 100%;
	background: rgba(255,255,255,0.8);
	min-height: 210px;
}
.destaques-body{
	display: table-cell;
	vertical-align: middle;
}
.destaques-texto, .destaques-slogan{

}
.destaques-texto .frase{
	font-size: 15px;
	line-height: 1.4;
	color:#454545;
	position: relative;
}
.destaques-texto .autor{
	font-size: 13px;
	line-height: 1.4;
	color:#454545;
	text-align: right;
	margin-top: 15px;
	padding-right: 15px;
}
.destaques-slogan{
	position: relative;
}
.destaques-slogan .frase{
	font-size: 20px;
	line-height: 1.4;
	color:#454545;
	position: relative;
	text-align: center;
}
.destaques-texto .frase .quote{

}
.destaques-texto .frase:before,
.destaques-slogan .frase:before{
	content: '';
	position: absolute;
	height: 4px;
	width: 35px;
	background: #C60001;
	top:-20px;
}
@media (min-width: 768px) {
	.destaques-container{
		background: transparent;
		min-height: 250px;
	}
	.destaques-swiper-container{
		height: auto;
	}
	.destaques-slide img{
		/*display: block;*/
	}
	.destaques-texto .frase{
		font-size: 17px;
		line-height: 1.4;
	}
	.destaques-texto .autor{
		font-size: 14px;
		line-height: 1.4;
		margin-top: 30px;
	}
	.destaques-slogan .frase{
		font-size: 25px;
		margin-top: -8.5%;
	}
	.destaques-body{
		background: rgba(255,255,255,0);
	}
}
@media (min-width: 992px) {
	.destaques-container{
		min-height: 350px;
	}
	.destaques-texto .frase{
		font-size: 26px;
		line-height: 1.4;
	}
	.destaques-texto .autor{
		font-size: 20px;
		line-height: 1.4;
		margin-top: 30px;
	}
	.destaques-slogan .frase{
		font-size: 35px;
	}
	.destaques-texto .frase:before,
	.destaques-slogan .frase:before{
		height: 6px;
		width: 70px;
	}
	.destaques-texto .frase:before{
		top:-40px;
	}
	.destaques-slogan .frase:before{
		top:-30px;
	}
	.destaques-body{
		padding: 20px 0 0 0;
	}
}
@media (min-width: 1220px) {
	.destaques-container{
		min-height: 400px;
	}
	.destaques-swiper-container .swiper-button-next,
	.destaques-swiper-container .swiper-button-prev{
		display: block;
	}
	.destaques-slogan .frase{
		font-size: 45px;
	}
}


/*-----------------------------------------------------------------------------------
/* Jobs */
/*-----------------------------------------------------------------------------------*/

.trabalhos{
	position: relative;
	overflow: visible;
}
.trabalhos.loading{
	height: 250px;
	overflow: hidden;
}
.trabalhos.loading:before{
	content: '';
	display: block;
	margin: 50px;
	height: 28px;
	width: 28px;
	-webkit-animation: rotate 0.8s infinite linear;
	animation: rotate 0.8s infinite linear;
	border: 2px solid #C60001;
	border-right-color: transparent;
	border-radius: 50%;
	position: absolute;
	top:50%;
	left: 50%;
	margin: -14px 0 0 -14px;
	z-index: 9999;
}
.trabalhos.loading #grid{
	opacity: 0;
}
@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
#grid{
	position: relative;
	overflow: hidden;
	opacity: 1;
	transition: all 1000ms;
	background: #ebebeb; 
}
.grid-sizer, .grid-item, .grid-item-width2 {
	width: 50%;
	float: left;
	position: relative;
}
.grid-item{
	overflow: hidden;
}
.grid-item img{
	max-width: 100%;
	height: auto;
}
.grid-item[data-tipo='radio']{

}
.grid-item[data-tipo='outdoor']{
	padding: 50px 0;
	background: #000;
}
.grid-item[data-tipo='print']:hover,
.grid-item[data-tipo='outdoor']:hover,
.grid-item[data-tipo='filme']:hover,
.grid-item[data-tipo='radio']:hover{
	cursor: pointer;
}
.grid-item[data-tipo='print']:before,
.grid-item[data-tipo='outdoor']:before,
.grid-item[data-tipo='filme']:before,
.grid-item[data-tipo='radio']:before{
	content: ' ';
	display: block;
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background:rgba(0,0,0,0.5);
	opacity: 0;
	transition:opacity 200ms;
}
.grid-item[data-tipo='print']:after,
.grid-item[data-tipo='outdoor']:after,
.grid-item[data-tipo='filme']:after,
.grid-item[data-tipo='radio']:after{
	content: ' ';
	display: block;
	position: absolute;
	top:66px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
	transition:opacity 200ms;
}
.grid-item[data-tipo='print']:after,
.grid-item[data-tipo='outdoor']:after{

	background: url(../img/icon-print.png) no-repeat center center;
}
.grid-item[data-tipo='filme']:after{
	background: url(../img/icon-filme.png) no-repeat center center;
}
.grid-item[data-tipo='radio']:after{
	background: url(../img/icon-filme.png) no-repeat center center;
}
.grid-item[data-tipo='print']:hover:after,
.grid-item[data-tipo='outdoor']:hover:after,
.grid-item[data-tipo='filme']:hover:after,
.grid-item[data-tipo='radio']:hover:after{
	opacity: 1;
}
.grid-item[data-tipo='print']:hover:before,
.grid-item[data-tipo='outdoor']:hover:before,
.grid-item[data-tipo='filme']:hover:before,
.grid-item[data-tipo='radio']:hover:before{
	opacity: 1;
}
.grid-item[data-tipo='print'] .item-desc,
.grid-item[data-tipo='outdoor'] .item-desc,
.grid-item[data-tipo='filme'] .item-desc,
.grid-item[data-tipo='radio'] .item-desc{
	position: absolute;
	width: 100%;
	top: -100px;
	left: 0;
	padding: 12px 15px;
	background: #C60001;
	font-size: 15px;
	color: #fff;
	transition:all 200ms;
}
.grid-item[data-tipo='print']:hover .item-desc,
.grid-item[data-tipo='outdoor']:hover .item-desc,
.grid-item[data-tipo='filme']:hover .item-desc,
.grid-item[data-tipo='radio']:hover .item-desc{
	top:0;
}
.grid-item[data-tipo='print'] .item-desc .title,
.grid-item[data-tipo='outdoor'] .item-desc .title,
.grid-item[data-tipo='filme'] .item-desc .title,
.grid-item[data-tipo='radio'] .item-desc .title{
	font-weight: bold;
}
.grid-item[data-tipo='slogan']{
	background: linear-gradient(#fff 50%, #f0f0f0 100%);
	padding: 30px 20px;
	/*border: 2px solid #ddd;*/
}
.grid-item[data-tipo='slogan'] .titulo{
	font-size: 15px;
	line-height: 1.4;
	color: #C60001;
}
.grid-item[data-tipo='slogan'] .cliente{
	font-size: 12px;
	color: #454545;
	margin: 5px 0 0 0;
}
.trabalho{
	border: 1px solid #999;
}
.trabalho img{
	display: block;
	width: 100%;
	height:auto;
}
@media (min-width: 768px) {
	.grid-sizer, .grid-item {
		width: 33.3%;
	}
}
@media (min-width: 992px) {
	.grid-sizer, .grid-item {
		width: 25%;
	}
	.grid-item[data-tipo='slogan']{
		padding: 70px 60px;
	}
	.grid-item[data-tipo='slogan'] .titulo{
		font-size: 23px;
	}
	.grid-item[data-tipo='slogan'] .cliente{
		font-size: 15px;
	}
}

/*-----------------------------------------------------------------------------------
/* QUEM SOMOS */
/*-----------------------------------------------------------------------------------*/

.quemsomos-texto{
	padding: 70px 0 25px 0;
}
.quemsomos-texto h2{
	font-size: 20px;
	line-height: 1.3;
	margin: 0 0 20px 0;
}
.quemsomos-texto h2:before{
	content:'';
	position: absolute;
	top: -30px;
	height: 4px;
	width: 35px;
	background: #C60001;
}
.quemsomos p{
	position: relative;
	font-size: 14px;
	margin-bottom: 1em;
}
.quemsomos p a{
	color: #C60001;
	text-decoration: underline;
}
.quemsomos-imagem img{
	width: 100%;
}
@media (min-width: 992px) {
	.quemsomos-texto{
		padding: 110px 0 80px 0;
	}
	.quemsomos-texto h2{
		font-size: 26px;
	}
	.quemsomos-texto h2:before{
		display: none;
	}
	.quemsomos p{
		font-size: 18px;
	}
	.quemsomos .texto:before{
		content:'';
		position: absolute;
		top: -40px;
		height: 6px;
		width: 70px;
		background: #C60001;
	}
}
/*-----------------------------------------------------------------------------------
/* CONTATO */
/*-----------------------------------------------------------------------------------*/

.contato{
	padding: 40px 0 0 0;
}
.form-contato{
	display: block;
}
.form-contato .btn-submit{
	background: #C60001;
	font-size: 14px;
	line-height: 40px;
	color:#fff;
	height: 40px;
	padding: 0 15px;
	border: 0;
	cursor:pointer;
}
.form-contato input[type='text'],
.form-contato input[type='email']{
	width: 100%;
	height: 40px;
	padding: 6px 12px;
	width:100%;
	border:1px solid #ddd;
	margin-bottom:15px;
	border-radius:0;
	font-size: 14px;
}
.form-contato textarea{
	width: 100%;
	height: 150px;
	padding: 6px 12px;
	width:100%;
	border:1px solid #ddd;
	margin-bottom:15px;
	border-radius:0;
	font-size: 14px;
}
.form-contato input[type='text']:focus,
.form-contato input[type='email']:focus,
.form-contato textarea:focus{
	border:1px solid #454545;
}
.contato-endereco{
	margin-bottom: 30px;
	font-size: 14px;
}
.contato-endereco h2{
	font-size: 20px;
	line-height: 1.3;
	margin: 0 0 20px 0;
}
.contato-sep{
	height: 4px;
	width: 35px;
	background: #C60001;
	margin: 0 0 20px 0;
}
.contato-mapa{
	position: relative;
	overflow: hidden;
	height: 300px;
	margin-top: 60px;
}
.contato-mapa iframe{
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top:-120px;
	height: 540px; /* 300 + 120 (overflow top) + 120 (overflow bottom) */
}
.scrolloff {
    pointer-events: none;
}
.form__label{
	display: block;
	font-size: 15px;
}
.form__validation{
	padding: 20px;
	width: 100%;
	text-align: center;
	margin: 0 0 30px 0;
	line-height: 1.3;
	color: #fff;
}
.form__validation--success{
	background: #007922;
}
.form__validation--error{
	background: #D50000;
}
@media (min-width: 992px) {
	.contato{
		padding: 70px 0 0 0;
	}
	.form-container{
		max-width: 525px;
	}
	.form-contato .btn-submit{
		font-size: 16px;
	}
	.form-contato input[type='text'],
	.form-contato input[type='email']{
		font-size: 16px;
	}
	.form-contato textarea{
		font-size: 16px;
	}
	.form__validation{
		padding: 20px 40px;
	}
	.contato-endereco{
		font-size: 18px;
	}
	.contato-endereco h2{
		font-size: 23px;
		margin: 0 0 40px 0;
	}
	.contato-sep{
		margin: 0 0 40px 0;
		width: 70px;
		height: 6px;
	}
	.contato-mapa{
		height: 400px;
	}
	.contato-mapa iframe{
		height: 640px; /* 400 + 120 (overflow top) + 120 (overflow bottom) */
	}
}

/*-----------------------------------------------------------------------------------
/* MARCAS */
/*-----------------------------------------------------------------------------------*/

.marcas-container{
	text-align:center;
	padding:40px 0;
}
.marcas .item{
	width: 30%;
	display: inline-block;
	padding: 0px 3%;
}
.marcas .item img{
	width: 100%;
	height: auto;
}
@media (min-width: 768px) {
	.marcas .item {
	    width: 19%;
	}
}

@media (min-width: 992px) {
	.marcas-container{
		padding: 70px 0;
	}
	.marcas .item {
	    width: 16%;
	}
}



/*-----------------------------------------------------------------------------------
/* MODAL */
/*-----------------------------------------------------------------------------------*/

.blocker{
	z-index: 2000;
}
.modal--1{
    border-radius: 0;
    padding: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    /*display: none;*/
}


.popup-content[data-tipo="radio"] .video-js{
	width: 100%;
	background: #f0f0f0;
}
.popup-content[data-tipo="radio"] .video-js .vjs-fullscreen-control{
	display: none;
}
.popup-desc{
	color: #fff;
	font-size: 14px;
	display: block;
	vertical-align: bottom;
	text-align: left;
	padding: 20px 0 0 0;
	width: 220px;
}
.popup-content{
	width: 100%;
	margin: 0 auto;
}
.popup-content img{
	width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    max-height: 700px;
}
@media (min-width: 768px) {
	.modal--1{
		width: auto;
	}
	.popup-content[data-tipo='print'],
	.popup-content[data-tipo='outdoor'],
	.popup-content[data-tipo='filme']{
		display: table;
		margin: 0 auto;
		table-layout: fixed;
		width: auto;
		max-width: 100%;
	}
	.popup-content[data-tipo='filme'] .popup-media{
		width: 80%;
	}
	.popup-content[data-tipo='print'] .popup-media,
	.popup-content[data-tipo='outdoor'] .popup-media,
	.popup-content[data-tipo='filme'] .popup-media {
		display: table-cell;
	}
	.popup-content[data-tipo='print'] .popup-desc,
	.popup-content[data-tipo='outdoor'] .popup-desc,
	.popup-content[data-tipo='filme'] .popup-desc{
		display: table-cell;
		padding: 0 0 0 20px;
	}
	.popup-content[data-tipo='radio']{
		width: 600px;
	}
}