html, body{
	padding:0px;
	margin:0px;
	overflow-x: hidden;
	background-color: #111;
	background-image: linear-gradient(45deg, #000, #111);
}
a, ul, li, p, h1, h2, h3, h4, h5, h6, button, input, textarea{
	font-family: 'Roboto', sans-serif;
	text-decoration:none;
	margin: 0px;
	padding: 0px;
	line-height: 150%;
}
a{
	color: inherit;
}
*{
	transition: 0.3s ease;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.container{
	max-width: 1200px;
	width:96%;
	height:auto;
	position: relative;
	z-index: 2;
	margin:auto;
}

/*HEADER*/
	header{
		width: 100%;
		padding: 20px 0;
		position: absolute;
		z-index: 999;
	}
	.header01{
		align-items: center;
	}
	.headerCtaBg{
		width: auto;
		height: 30px;
		padding: 5px 10px;
		margin: 0 0 0 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50px; 
		border:1px solid #C94; 
	}
	.headerCtaBg:nth-child(1),
	.headerCtaBg:nth-child(2){
		padding: 5px 20px;
	}
	.headerCtaBg:hover{
		background-color: #C94; 
	}
	.headerCtaBg img{
		width: 20px;
		height: 20px;
		margin: 0;
	}
	.headerCtaBg p{
		margin: 0 0 0 5px;
		font-size: 14px;
		color: #FFFC;
	}	
	.headerMenuMobile{
		cursor: pointer;
	}
	.headerMenuMobile p{
		font-size: 16px;		
		width: 100%;
		cursor: pointer;
		color: #C94;
	}
	.headerMenuMobile p span{
		position: relative;
		font-weight: bold;
		cursor: pointer;
		color: #FFF;
	}
	.headerMenu{
		display: none;
		width: 300px;
		height: 100%;
		position: fixed;
		top: 0px;
		left: 0px;
		background: linear-gradient(45deg, #C94, #111);
		box-shadow: 0 0 5px #333
	}
	.headerMenu p{
		width: 100%;
		padding: 20px 30px;
		font-weight: 900; 
		color: #FFF;
		cursor: pointer;
	}
	.headerMenu p span{
		font-weight: 100; 
		color: #FFF;
		cursor: pointer;
	}
	.headerMenu ul{
		width: 100%;
		padding: 50px 30px;
		justify-content: flex-start;
		list-style: none;
	}
	.headerMenu li{
		font-weight: 300;
		font-size: 18px;
		margin: 0 0 20px 0;
		color: #FFF;
	}
	.headerMarca{
		width: 100%;
		text-align: center;
	}
	.headerMarca img{
		display: none;
		width: 500px;
		margin: 100px 0;
	}
	.header{
		position: fixed;
		width: 100%;
		height: auto;
		background-image: linear-gradient(45deg, #111, #111);
	}
	.header .container{
		display: flex;
		justify-content: space-between;
	}
	.header .flex{
		flex-direction: row;
		order: 2;
	}
	.header .headerCta{
		order: 1;
	}
	.header .headerMenuMobile{
		order: 2;
		width: 100px;
		margin: 0 0 0 50px;
	}
	.header .headerMarca{
		width: auto;
		text-align: left;
	}
	.header .headerMarca img{
		display: block;
		width: auto;
		height: 70px;
		margin: 10px 0;
	}

/*BANNER*/
	.banner{
		width: 100%;
		height: 500px;
		margin: 100px 0 0;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
	}	
	.bannerTexto{
		width: 100%;
		height: 500px;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	.bannerTexto img{
		margin: 0 50px 0 0;
	}
	.bannerFoto{
		width: 100%;
		height: 500px;
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
	}
	.bannerFoto img{
		height: 475px;
		margin: 0 0 0 50px;
	}
	
/*INSTITUCIONAL*/
	.institucional{
		width: 100%;
		height: auto;
		padding: 100px 0;
		background-color: #FFF;
	}
	.institucional01{
		width: 550px;
		min-width: 550px;
		margin: 0 50px 0 0;
		display: flex;
		position: relative;
	}
	.institucionalImagem{
		width: 500px;
		position: relative;
	}
	.institucionalImagem01{
		width: 100%;
	}
	.institucionalImagem02{
		width: 60px;
		position: absolute;	
		left: 50%;
		margin-left: -60px;
		animation: institucionalImagem02 ease 5s infinite;
	}
	@keyframes institucionalImagem02{
		  0%{top: 0px;}
		 50%{top: 30px;}
		100%{top: 0px;}
	}
	.institucionalImagem03{
		width: 120px;
		position: absolute;	
		top: 40px;
		animation: institucionalImagem03 ease-in-out 3s infinite;
	}
	@keyframes institucionalImagem03{
		  0%{left: 0px;}
		 50%{left: -20px;}
		100%{left: 0px;}
	}
	.institucionalImagem04{
		width: 120px;
		position: absolute;	
		top: 20px;
		animation: institucionalImagem04 ease-in-out 5s infinite;
	}
	@keyframes institucionalImagem04{
		  0%{right: 0px;}
		 50%{right: -20px;}
		100%{right: 0px;}
	}
	.institucionalRSocial{
		width: 100px;
		position: absolute;
		right: 0px;
	}
	.institucionalRSocialBg{
		width: 50px;
		height: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		border-radius: 50px;
		background-color: #FF00;
	}
	.institucionalRSocialBg img{
		width: 40px;
		filter: drop-shadow(0 0px 15px #0004);
	}
	.institucionalRSocialBg:nth-child(1){
		animation: institucionalRSocialBg01 ease 10s infinite;
	}
	@keyframes institucionalRSocialBg01{
		  0%{top: 0px;}
		 50%{top: 50px;}
		100%{top: 0px;}
	}
	.institucionalRSocialBg:nth-child(2){
		margin: 0 0 0 25px;
		animation: institucionalRSocialBg02 ease 8s infinite;
	}
	@keyframes institucionalRSocialBg02{
		  0%{top: 110px;}
		 50%{top: 150px;}
		100%{top: 110px;}
	}
	.institucionalRSocialBg:nth-child(3){
		margin: 0 -50px 0 0;
		animation: institucionalRSocialBg03 ease 14s infinite;
	}
	@keyframes institucionalRSocialBg03{
		  0%{top: 250px;}
		 50%{top: 210px;}
		100%{top: 250px;}
	}
	.institucional02{
		width: 100%;
		position: relative;
	}
	.institucionalTextoBg01{
		width: 100%;
		position: relative;
		z-index: 2;
	}
	.institucionalTextoBg01 p:nth-child(1){
		font-weight: 300;
		color: #999;
	}
	.institucionalTextoBg01 p:nth-child(2){
		margin: 25px 0;
		font-size: 36px;
		font-weight: bold;
		line-height: 125%;
		color: #000;
	}
	.institucionalTextoBg01 p:nth-child(2) span{
		color: #C94;
	}
	.institucionalTextoBg01 p:nth-child(3){
		margin: 0 0 25px 0;
	}
	.institucionalTextoBg02{
		width: 100%;
		position: relative;
		z-index: 2;
		justify-content: center;
	}
	.institucionalTextoBg02Bg{
		margin: 0 25px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.institucionalTextoBg02Bg img{
		width: 50px;
	}
	.institucionalTextoBg02Bg p{
		margin: 10px 0;
		font-size: 16px;
		text-transform: uppercase;
		text-align: center;
		color: #999;
	}
	.institucionalTextoBg02Bg p span{
		font-size: 24px;
		font-weight: bold;
		color: #000;
	}
	.institucionalTextoBg03{
		width: 100%;
		position: absolute;
		z-index: 1;
		bottom: -75px;
		left: -75px;
	}
	.institucionalTextoBg03 p{
		margin: 50px 0 0;
		font-size: 100px;
		font-weight: 900;
		color: #333;
	}

/*SERVICOS*/
	.servicos{
		width: 100%;
		padding: 150px 0;
		background-color: #F9F9F9;
	}
	.servicos .container{
		flex-wrap: wrap;
	}
	.servicosTextoEfeito{
		position: absolute;
		top: -150px;
		left: -50px;
	}
	.servicosTextoEfeito p{
		font-size:100px;
		font-weight:900;
		color:#C94;
	}
	.servicosBg{
		width: 32%;
		position: relative;
		margin: 0 2% 75px 0;
		border-radius: 5px;
		background-color: #FFF;
		background-image: url(../img/servicoBg.png);
		background-size: cover;
		background-position: center;
		box-shadow:0 0 50px #DDD;
	}
	.servicosBg:nth-child(1){
		width: 32%;
		position: relative;
		margin: 0 2% 75px 0;
		border-radius: 5px;
		background-color: #FFF0;
		background-image: none;
		box-shadow:0 0 50px #DDD0;
	}
	.servicosBg:nth-child(3n){
		margin: 0 0 75px 0;
	}
	.servicosIcone{
		width: 100px;
		height: 100px;
		margin: -50px 25px 25px;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 100px;
		background-color: #FFF;
		box-shadow:0 0 50px #DDD;
	}
	.servicosIcone img{
		width: 50px;
		transform: rotate(-15deg);
	}
	.servicosBg:hover .servicosIcone{
		background-color: #C94;
		box-shadow:0 0 50px #DDD;
		transform: rotate(30deg);
	}
	.servicosBg:hover .servicosIcone img{
		filter: brightness(10);
	}
	.servicoTexto{
		width: auto;
		padding: 0 75px 50px 25px;
	}
	.servicoTexto h3{
		font-size: 20px;
		margin: 0 0 15px;
		color: #C94;
	}
	.servicoTexto p{
		font-size: 16px;
		color: #999;
	}
	.servicoCta{
		width: 85px;
		height: 65px;
		position: absolute;
		bottom: 0px;
		right: 0px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.servicoCta p{
		font-size: 30px;
		color: #999;
	}
	.servicoCta p:hover{
		font-size: 30px;
		color: #000;
	}
	.servicosTituloTexto h2{
		font-size: 18px;
		font-weight: 300;
		text-transform: uppercase;
		color: #C94;
	}
	.servicosTituloTexto p:nth-child(2){
		margin: 25px 0;
		font-size: 36px;
		font-weight: bold;
		line-height: 125%;
		color: #000;
	}
	.servicosTituloTexto p:nth-child(2) span{
		color: #C94;
	}
	.servicosTituloTexto p:nth-child(3){
		margin: 0 0 25px 0;
	}

/*CLIENTES*/
	.clientes{
		width: 100%;
		position: relative;
		z-index: 2;
		margin: -100px 0 0;
	}
	.clientesTexto{
		position: absolute;
		top: -10px;
		right: 50px;
	}
	.clientesTexto p{
		font-size:100px;
		font-weight:900;
		color:#FFF0;
		-webkit-text-stroke-width: 1px; 
	    -webkit-text-stroke-color: #C945; 
	}
	.clientesBackground{
		width: 100%;
		padding: 175px 0 75px;
		justify-content: center;
		align-items: center;
		border-radius: 25px;
		background-size: cover;
		background-position: center left;
		background-image: url(../img/clientesBg.png);
	}
	.clientesBackgroundBg{
		width: 100%;
		justify-content: center;
	}
	.clientesBg{
		width: 100%;
		height: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 0.5% 20px;
	}
	.clientesBg img{
		width: 90%;
		border-radius: 10px;
	}

/*EQUIPE*/
	.equipe{
		width: 100%;
		position: relative;
		z-index: 1;
		margin: 100px 0 200px;
	}			
	.equipeTextoEfeito{
		position: absolute;
		transform: rotate(-90deg);
		top: 0px;
		right: -120px;
	}
	.equipeTextoEfeito p{
		font-size:100px;
		font-weight:900;
		color:#FFF0;
		-webkit-text-stroke-width: 1px; 
	    -webkit-text-stroke-color: #C945; 
	}
	.equipeTitulo{
		width: 100%;
		margin: 0 0 50px;
		text-align: center;
	}
	.equipeTitulo h2{
		font-size: 18px;
		font-weight: 300;
		text-transform: uppercase;
		color: #C94;
	}
	.equipeTitulo p:nth-child(2){
		margin: 0 0 25px 0;
		font-size: 36px;
		font-weight: bold;
		line-height: 125%;
		color: #FFF;
	}
	.equipeTitulo p:nth-child(3){
		width: 500px;
		margin: 0 auto;
		color: #FFF;
	}
	.equipeLista{
		justify-content: center;
	}
	.equipeBg{
		width: 100%;
		max-width: 300px;
		margin: 75px 25px;
	}
	
	.equipeFoto{
		width: 100%;
		overflow: hidden;
		height: 400px;
		display: flex;
		border-radius: 25px;
		justify-content: center;
	}
	.equipeFoto img{
		height: 400px;
		filter: sepia(50%);
	}
	.equipeBg:hover .equipeFoto img{
		filter: sepia(0%);
	}
	.equipeTexto{
		width: 70%;
		height: auto;
		padding: 10px 25px 35px;
		border-radius: 10px;
		position: relative;
		z-index: 2;
		margin: -75px auto;
		background-color: #FFF;
		background-size: cover;
		background-position: center;
		background-image: url(../img/servicoBg.png);
		box-shadow: 0 0 15px #0005;
	}
	.equipeTexto p:nth-child(1){
		font-size: 18px;
		font-weight: bold;
		text-align: center;
		color: #333;
	}
	.equipeTexto p:nth-child(2){
		text-align: center;
		padding: 0;
		color: #999;
	}
	.equipeTexto p:nth-child(3){
		width: 50px;
		height: 50px;
		bottom: -25px;
		left: 50%;
		margin: 0 0 0 -25px;
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 50px;
		font-size: 24px;
		font-weight: bold;
		color: #FFF;
		background-color: #C94;
		box-shadow: 0 0 15px #0005;
	}

/*DEPOIMENTOS*/
	.depoimentos{
		width: 100%;
		margin: 100px 0 0;
		padding: 100px 0;
		background-size: cover;
		background-attachment:fixed;
		background-position: center;
		background-image: url(../img/depoimentosBackground.png);
	}
	.depoimentosTitulo{
		width: 100%;
		margin: 0 0 50px;
		text-align: center;
	}
	.depoimentosTitulo h2{
		margin: 0 0 25px 0;
		font-size: 18px;
		font-weight: 300;
		text-transform: uppercase;
		color: #C94;
	}
	.depoimentosTitulo p:nth-child(2){
		font-size: 36px;
		font-weight: bold;
		line-height: 125%;
		color: #FFF;
	}
	.depoimentosImagem{
		width: 250px;
		min-width: 250px;
		position: relative;
		height: 400px;
	}
	.depoimentosImagem01{
		height: 300px;
		position: absolute;
		bottom: 0px;
		right: 0px;
		animation: depoimentosImagem01 ease 3s infinite;
	}
	@keyframes depoimentosImagem01{
		  0%{top: 20px;}
		 50%{top: 50px;}
		100%{top: 20px;}
	}
	.depoimentosImagem02{
		width: 100px;
		position: absolute;
		animation: depoimentosImagem02 ease 5s infinite;
	}
	@keyframes depoimentosImagem02{
		  0%{left: -20px;}
		 50%{left: 0px;}
		100%{left: -20px;}
	}
	.depoimentosImagem03{
		height: 300px;
		position: absolute;
		animation: depoimentosImagem03 ease 3s infinite;
	}
	@keyframes depoimentosImagem03{
		  0%{top: 50px;}
		 50%{top: 20px;}
		100%{top: 50px;}
	}
	.depoimentosImagem04{
		width: 200px;
		position: absolute;
		bottom: 0px;
		animation: depoimentosImagem02 ease 5s infinite;
	}
	@keyframes depoimentosImagem02{
		  0%{right: -20px;}
		 50%{right: 0px;}
		100%{right: -20px;}
	}
	.depoimentosDepoimentos{
		width: 100%;
		height: 400px;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
	}
	.depoimentosDepoimentos{
		width: 100%;
		height: 400px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
	}
	.depoimentosDepoimentosTexto{
		width: 70%;
		margin: auto;
	}
	.depoimentosDepoimentosTexto{
		text-align: center;
		color: #FFF;
	}
	.depoimentosDepoimentosTexto p:first-of-type{
		line-height: 150%;
		font-weight: 300;
	}
	.depoimentosDepoimentosTexto p:last-of-type{
		font-size: 20px;
		margin: 25px 0 0;
		font-weight: bold;
	}
	.depoimentosDepoimentosTexto p:last-of-type span{
		font-weight: 300;
	}
	.depoimentosDepoimentosSlide01,
	.depoimentosDepoimentosSlide02{
		align-items: center;
	}	
	.depoimentosDepoimentosSlide02{
		display: none;
	}	
	.depoimentosDepoimentosSlide01 p,
	.depoimentosDepoimentosSlide02 p{
		width: 200px;
		padding: 10px;
		border-radius: 50px;
		margin: 25px auto 0;
		font-size: 14px;
		font-weight: 500;
		text-align: center;
		text-transform: uppercase;
		cursor: pointer;
		background-color: #C94;
		color: #35302C;
	}
	.depoimentosVideos{
		width: 100%;
		max-height: 400px;
		background-color: #000;
	}

/*PORTFOLIO*/
	.portfolio{
		width: 100%;
		position: relative;
		padding: 100px 0 50px;
	}			
	.portfolioTitulo{
		width: 100%;
		margin: 0 0 50px;
		text-align: center;
	}	
	.portfolioTitulo h2{
		font-size: 36px;
		line-height: 125%;
		color: #C94;
	}
	.portfolioTitulo span{
		color: #FFF;
	}	
	.portfolioBg{
		width: 32%;
		position: relative;
		margin: 0 2% 0 0;
	}
	.portfolioBg:last-of-type{
		margin: 0;
	}
	.portfolioFoto{
		width: 100%;
		max-height: 300px;
		display: flex;
		border-radius: 10px 10px 0 0;
		justify-content: center;
	}
	.portfolioFoto img{
		width: 100%;
		filter: sepia(50%);
	}
	.portfolioBg:hover .portfolioFoto img{
		filter: sepia(0%);
	}
	.portfolioIcone{
		width: 80px;
		height: 80px;
		top: 260px;
		right: 20px;
		display: flex;
		z-index: 2;
		justify-content: center;
		align-items: center;
		position: absolute;
		border-radius: 5px;
		background-color: #C94;
	}
	.portfolioBg:hover .portfolioIcone{
		background-color: #111;
	}
	.portfolioIcone img{
		width: 50px;
		filter: brightness(10);
	}
	.portfolioBg:hover .portfolioIcone img{
		filter: brightness(1);
	}
	.portfolioTexto{
		width: 100%;
		padding: 50px 0;
		border-radius: 0 0 10px 10px;
		position: relative;
		z-index: 1;
		margin: 0 auto;
		background-color: #FFF;
		background-size: cover;
		background-position: center;
		background-image: url(../img/servicoBg.png);
	}
	.portfolioTexto p:nth-child(1){
		font-size: 24px;
		font-weight: bold;
		text-align: center;
		color: #C94;
	}
	.portfolioTexto p:nth-child(2){
		text-align: center;
		padding: 0;
		color: #555;
	}
	.portfolioAssinatura{
		position: absolute;
		right: -50px;
		bottom: -110px;
	}
	.portfolioAssinatura p{
		font-size:120px;
		font-weight:900;
		color:#FFF0;
		-webkit-text-stroke-width: 1px; 
	    -webkit-text-stroke-color: #C94; 
	}

/*CONTATO*/
	.contato{
		width:100%;
		margin:100px 0;
	}
	.contatoBackground{
		width:auto;
		height:auto;
		border-radius:20px;
		padding:20px 0;
		transition:10s ease;
		flex-wrap:wrap;
		align-items:center;
		position:relative;
		background-color:#111;
		background-image:url(../img/contato.png);
		background-position:500px 0;
		background-size:1920px;
		background-repeat:no-repeat
	}
	.contatoBackground:hover{
		background-position:100px -400px
	}
	.contatoTitulo{
		position:absolute;
		top:125px;
		left:-120px;
		transform:rotate(-90deg)
	}
	.contatoTitulo h2{
		width:50%;
		font-size:100px;
		font-weight:900;
		color:#FFF0;
		-webkit-text-stroke-width: 1px; 
	    -webkit-text-stroke-color: #C94; 
	}
	.contatoInfoBg{
		height:360px;
		display:flex;
		flex-direction:column;
		justify-content:center
	}
	.contatoDados{
		width:50%;
		margin:0 0 15px 100px;
		align-items:center;
		justify-content:space-around
	}
	.contatoBg{
		width:100%;
		padding:10px 0
		border-right:1px solid #eee;
	}
	.contatoBgImagem{
		text-align:center
	}
	.contatoBgImagem img{
		width:50px
	}
	.contatoBgConteudo{
		margin:10px 0 0
	}
	.contatoBgConteudo p{
		text-align:center;
		font-weight:300;
		color:#fff
	}
	.contatoBgConteudo p b{
		color:#C94
	}
	.contatoMarca{
		width:40%;
		height:100%;
		right:0;
		top:0;
		justify-content:center;
		align-items:center;
		position:absolute
	}
	.contatoMarca img{
		width:80%;
		filter: brightness(20);
	}

/*FOOTER*/
	footer{
		width: 100%;
		padding: 0 0 20px;
	}
	footer p{
		font-size: 12px;
		color: #FFF9;
	}

/*COOKIES*/
	.cookies{
		width: 100%;
		position: fixed;
		z-index: 9999;
	}
	.cookiesAviso{
		width: 100%;
		position: fixed;
		bottom: 0px;
		padding: 20px 0;
		background-color: #000;
	}
	.cookiesAviso .container{
		justify-content: center;
		align-items: center;
	}
	.cookiesAviso p{
		font-size: 14px;
		text-align: center;
		margin: 0 10px;
		color: #CCC;
	}
	.cookiesAviso p:nth-child(1){
		margin: 0 10px;
	}
	.cookiesAviso p:nth-child(2){
		padding: 10px 20px;
		border-radius: 100px;
		border: 1px solid #CCC;
		cursor: pointer;
	}
	.cookiesAviso p:nth-child(2):hover{
		background-color: #555;
	}
	.cookiesAviso p:nth-child(3){
		font-weight: bold;
		padding: 10px 30px;
		border-radius: 100px;
		border: 1px solid #CCC;
		cursor: pointer;
		color: #000;
		background-color: #CCC;
	}
	.cookiesAviso p:nth-child(3):hover{
		background-color: #FFF;
	}
	.cookiesPopUp{
		width: 100%;
		height: 100vh;
		position: fixed;
		top: 0px;
		z-index: 9999;
		background-color: #000C;
		display: none;
	}
	.cookiesPopUp .container{
		height: 100%;
		align-items: center;
		justify-content: center;
	}
	.cookiesPopUpConteudo{
		max-width: 500px;
		align-items: center;
		position: relative;
		background-color: #FFF;
	}
	.cookiesPopUpFechar{
		width: 40px;
		height: 40px;
		border-radius: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: -20px;
		right: -20px;
		cursor: pointer;
		background-color: #FFF;
	}
	.cookiesPopUpFechar p{
		font-size: 16px;
		font-weight: bold;
		color: #000;
	}
	.cookiesPopUpTexto{
		width: auto;
		max-height: 500px;
		padding: 25px;
		overflow: auto;
	}
	.cookiesPopUpTexto h2{
		font-size: 24px;
		padding: 0 0 25px;
		border-bottom: 1px solid #EEE;
	}
	.cookiesPopUpTexto h3{
		margin: 25px 0 10px;
		font-size: 20px;
	}
	.cookiesPopUpTexto p{
		margin: 0 0 10px;
		color: #555;
	}

/*ANIMACAO*/
	.animacao01,
	.animacao02,
	.animacao03,
	.animacao04,
	.animacao05,
	.animacao06,
	.animacao07,
	.animacao08,
	.animacao09,
	.animacao10,
	.animacao11,
	.animacao12,
	.animacao13,
	.animacao14,
	.animacao15,
	.animacao16{
		opacity: 0;
	}
	.animacaoDelay0250{	
		animation-delay: 0.25s;
	}
	.animacaoDelay0500{	
		animation-delay: 0.5s;
	}
	.animacaoDelay0750{	
		animation-delay: 0.75s;
	}
	.animacaoDelay1000{	
		animation-delay: 1.0s;
	}
	.animacaoDelay1250{	
		animation-delay: 1.25s;
	}
	.animacaoDelay1500{	
		animation-delay: 1.5s;
	}
	.animacaoDelay1750{	
		animation-delay: 1.75s;
	}
	.animacaoDelay2000{	
		animation-delay: 2.0s;
	}
	.animacaoDelay2250{	
		animation-delay: 2.25s;
	}
	.animacaoDelay2500{	
		animation-delay: 2.5s;
	}
	.animacaoDelay2750{	
		animation-delay: 2.75s;
	}
	.animacaoDelay3000{	
		animation-delay: 3.0s;
	}

@media screen and (max-width:1024px) and (min-width: 768px){
}

@media screen and (max-width:767px){
	.flex{
		flex-wrap: wrap;
	}

	/*HEADER*/
		header{
			position: fixed;
			background-image: linear-gradient(45deg, #000, #111);
		}
		.headerCta{
			width: 100%;
			padding: 10px 0;
			flex-wrap: nowrap;
			background-color: #C94;
			position: fixed;
			justify-content: center;
			bottom: 0px;
			left: 0px;
			align-items: center;
		}
		.headerCtaBg{
			width: 40px;
			height: 40px;
			padding: 0;
			margin: 0 20px;
			border:none; 
		}
		.headerCtaBg:nth-child(1),
		.headerCtaBg:nth-child(2){
			padding: 0;
		}
		.headerCtaBg:hover{
			background-color: #FFF0; 
		}
		.headerCtaBg img{
			width: 25px;
			height: 25px;
		}
		.headerCtaBg p{
			display: none;
		}	
		.headerMenuMobile{
			position: fixed;
			top: 30px;
			right: 2%;
		}
		.headerMenuMobile p{
			color: #C94;
		}
		.headerMenuMobile p span{
			color: #FFF;
		}
		.headerMenu{
			width: 100%;
			overflow: auto;
			z-index: 998;
			background: linear-gradient(45deg, #000, #111);
		}
		.headerMenu p span{
			font-weight: 100; 
			color: #FFF;
			cursor: pointer;
		}
		.headerMenu ul{
			width: 100%;
			padding: 50px 0;
			justify-content: center;
			align-items: center;
			list-style: none;
			overflow: auto;
		}
		.headerMenu li{
			margin: 10px 0;
			padding: 10px 0 20px;
			text-align: center;
			border-bottom: 1px solid #C942;
		}
		.headerMarca{
			text-align: left;
		}
		.headerMarca img{
			display: block;
			width: 200px;
			margin: 0;
		}
	
	/*BANNER*/		
		.banner{
			height: auto;
		}	
		.bannerTexto{
			height: auto;
			padding: 50px 0 25px;
			display: flex;
			justify-content: center;
			align-items: center;
		}
		.bannerTexto img{
			margin: 00;
		}
		.bannerFoto{
			height: auto;
			justify-content: center;
		}
		.bannerFoto img{
			height: 475px;
			margin: 0;
		}

	/*INSTITUCIONAL*/
		.institucional{
			margin: 0 0 -50px;
		}
		.institucional01{
			width: 100%;
			min-width: auto;
			flex-wrap: wrap;
			margin: 0 0 50px 0;
		}
		.institucionalImagem{
			width: 100%;
		}
		.institucionalImagem01{
			z-index: 2;
		}
		.institucionalRSocial{
			width: 100%;
			height: 50px;
			position: relative;
			right: auto;
			display: flex;
			justify-content: center;
		}
		.institucionalRSocialBg{
			position: relative;
		}
		@keyframes institucionalRSocialBg01{
			  0%{top: 0px;}
			 50%{top: 30px;}
			100%{top: 0px;}
		}
		.institucionalRSocialBg:nth-child(2){
			margin: 0 15px;
		}
		@keyframes institucionalRSocialBg02{
			  0%{top: 40px;}
			 50%{top: 10px;}
			100%{top: 40px;}
		}
		.institucionalRSocialBg:nth-child(3){
			margin: 0;
		}
		@keyframes institucionalRSocialBg03{
			  0%{top: 10px;}
			 50%{top: 40px;}
			100%{top: 10px;}
		}
		.institucionalTextoBg01 p:nth-child(1){
			text-align: center;
		}
		.institucionalTextoBg01 p:nth-child(2){
			text-align: center;
		}
		.institucionalTextoBg01 p:nth-child(3){
			text-align: center;
		}
		.institucionalTextoBg02{
			flex-wrap: nowrap;
		}
		.institucionalTextoBg02Bg{
			margin: 0 10px;
		}
		.institucionalTextoBg02Bg img{
			width: auto;
			height: 40px;
		}
		.institucionalTextoBg03{
			width: 100%;
			position: relative;
			z-index: 1;
			bottom: 0;
			left: 0;
		}
		.institucionalTextoBg03 p{
			margin: 25px 0 0;
			text-align: center;
			font-size: 72px;
		}

	/*SERVICOS*/
		.servicos{
			margin: 25px 0;
			padding: 25px 0 50px;
		}
		.servicosTextoEfeito{
			width: 100%;
			position: relative;
			top: 0;
			left: 0;
		}
		.servicosTextoEfeito p{
			font-size: 80px;
			text-align: center;
		}
		.servicosBg{
			width: 100%;
			margin: 0 0 75px 0;
		}
		.servicosBg:nth-child(1){
			width: 100%;
			margin: 0 0 75px 0;
		}
		.servicosBg:nth-child(3n){
			margin: 0 0 75px 0;
		}
		.servicosTituloTexto h2{
			text-align: center;
		}
		.servicosTituloTexto p{
			text-align: center;
		}
		.servicosIcone{
			width: 100px;
			height: 100px;
			margin: -50px 25px 25px;
			display: flex;
			justify-content: center;
			align-items: center;
			border-radius: 100px;
			background-color: #FFF;
			box-shadow:0 0 50px #DDD;
		}
		.servicosIcone img{
			width: 50px;
			transform: rotate(-15deg);
		}
		.servicosBg:hover .servicosIcone{
			background-color: #C94;
			box-shadow:0 0 50px #DDD;
			transform: rotate(30deg);
		}
		.servicosBg:hover .servicosIcone img{
			filter: brightness(10);
		}
		.servicoTexto{
			width: auto;
			padding: 0 75px 50px 25px;
		}
		.servicoTexto h3{
			font-size: 20px;
			margin: 0 0 15px;
			color: #C94;
		}
		.servicoTexto p{
			font-size: 16px;
			color: #999;
		}
		.servicoCta{
			width: 85px;
			height: 65px;
			position: absolute;
			bottom: 0px;
			right: 0px;
			display: flex;
			justify-content: center;
			align-items: center;
		}
		.servicoCta p{
			font-size: 30px;
			color: #999;
		}
		.servicoCta p:hover{
			font-size: 30px;
			color: #000;
		}
		.servicosTituloTexto h2{
			font-size: 18px;
			font-weight: 300;
			text-transform: uppercase;
			color: #C94;
		}
		.servicosTituloTexto p:nth-child(2){
			margin: 25px 0;
			font-size: 36px;
			font-weight: bold;
			line-height: 125%;
			color: #000;
		}
		.servicosTituloTexto p:nth-child(2) span{
			color: #C94;
		}
		.servicosTituloTexto p:nth-child(3){
			margin: 0 0 25px 0;
		}

	/*CLIENTES*/
		.clientesTexto{
			width: 100%;
			top: 20px;
			left: 0;
		}
		.clientesTexto p{
			font-size:48px;
			text-align: center;
			font-weight:900;
			color:#C94;
			-webkit-text-stroke-width: 0; 
		}
		.clientesBackground{
			padding: 100px 0 25px;
			background-position: center;
		}
		.clientesBg{
			width: 48%;
			padding: 0;
		}

	/*EQUIPE*/
		.equipeTextoEfeito{
			transform: rotate(0deg);
			top: auto;
			width: 100%;
			bottom: -150px;
			right:0;
		}
		.equipeTextoEfeito p{
			text-align: center;
			font-size:90px;
		}
		.equipeTitulo p:nth-child(3){
			width: 100%;
		}
		.equipeBg:nth-child(1){
			margin: 25px 0 0 0;
		}
		.equipeBg:nth-child(2){
			margin: 25px 0 0 0;
		}
		.equipeBg:nth-child(3){
			margin: 25px 0 0 0;
		}
		.equipeTexto{
			margin: -75px auto 25px;
		}

	/*DEPOIMENTOS*/
		.depoimentos{
			padding: 50px 0;
			margin: 50px 0;
		}
		.depoimentosImagem{
			order: 2;			
			width: 50%;
			min-width: auto;
		}
		.depoimentosImagem02{
			display: none;
		}
		.depoimentosImagem03{
			right: 20px;
		}
		.depoimentosImagem04{
			display: none;
		}
		.depoimentosDepoimentos{
			width: 100%;
			padding: 50px 0 100px;
			height: auto;
			background-size: cover;
			background-position: center;
		}
		.depoimentosDepoimentosTexto{
			width: 90%;
		}

	/*PORTFOLIO*/
		.portfolioBg{
			width: 100%;
			margin: 0 0 20px 0;
		}
		.portfolioBg:last-of-type{
			margin: 0 0 20px 0;
		}		
		.portfolioAssinatura{
			position: relative;
			right: 0px;
			bottom: 0;
		}
		.portfolioAssinatura p{
			text-align: center;
			font-size:72px;
			opacity: 0.5;
		}

	/*CONTATO*/
		.contato{
			margin:0px 0;
		}
		.contatoBackground{
			background-position:150px -300px;
		}
		.contatoTitulo{
			position:relative;
			top:0;
			left:0;
			transform:rotate(0deg)
		}
		.contatoTitulo h2{
			width:100%;
			font-size:72px;
			font-weight: bold;
			text-align: center;
			color: #C94;
			-webkit-text-stroke-width: 0px; 
		}
		.contatoInfoBg{
			height:auto;
		}
		.contatoDados{
			width:100%;
			margin:50px 0;
		}
		.contatoBg2{
			border:none;
		}
		.contatoBgImagem img{
			width:40px
		}
		.contatoMarca{
			width:100%;
			margin: 20px 0 0;
			position:relative;
		}
		.contatoMarca img{
			width:80%;
		}

	/*FOOTER*/
		footer p{
			width: 100%;
			text-align: center;
		}

	/*COOKIES*/
		.cookiesAviso p:nth-child(1){
			margin: 0 10px 20px;
		}

	/*ANIMACAO*/
		.animacao01,
		.animacao02,
		.animacao03,
		.animacao04,
		.animacao05,
		.animacao06,
		.animacao07,
		.animacao08,
		.animacao09,
		.animacao10,
		.animacao11,
		.animacao12,
		.animacao13,
		.animacao14,
		.animacao15,
		.animacao16{
			opacity: 0;
		}
		.animacaoDelay0250{	
			animation-delay: 0s;
		}
		.animacaoDelay0500{	
			animation-delay: 0s;			
		}
		.animacaoDelay0750{	
			animation-delay: 0s;
		}
		.animacaoDelay1000{	
			animation-delay: 0.25s;
		}
		.animacaoDelay1250{	
			animation-delay: 0.25s;
		}
		.animacaoDelay1500{	
			animation-delay: 0.25s;
		}
		.animacaoDelay1750{	
			animation-delay: 0.25s;
		}
		.animacaoDelay2000{	
			animation-delay: 0.5s;
		}
		.animacaoDelay2250{	
			animation-delay: 0.5s;
		}
		.animacaoDelay2500{	
			animation-delay: 0.5s;
		}
		.animacaoDelay2750{	
			animation-delay: 0.5s;
		}
		.animacaoDelay3000{	
			animation-delay: 0.75s;
		}
}