html, body{
	padding:0px;
	margin:0px;
	overflow-x: hidden;
}
a, ul, li, p, h1, h2, h3, h4, h5, h6, button, input, textarea{
	font-family: "Roboto Condensed", 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%;
		position: absolute;
		z-index: 999;
	}
	header .flex{
		align-items: center;
	}
	.headerEfeito{
		width: 100%;
		height: 5px;
		background-image: linear-gradient(to right, #A04 25%, #E17, #E42, #E91, #6AA, #27B, #3AD, #52B);
	}
	.header{
		width: 100%;
		position: fixed;
		z-index: 999;
		top: 0;
		box-shadow: 0 0 5px #0003;
		background-color: #FFF;
	}
	.headerBackground{
		width: 100%;
		margin: 10px 0 0;
		padding: 20px 0;
		display: flex;
		border-radius: 10px;
	}
	.headerMarca{
		margin: 0;
		filter: brightness(100);
	}
	.header .headerMarca{
		filter: brightness(1);
	}
	.headerMarca img{
		width: 150px;
		margin: 0 0 -10px;
	}
	.headerConteudo{
		width: 100%;
		margin: 0 0 0 50px;
		display: flex;
		justify-content: flex-end;
		align-items: center
	}
	.headerMenu{
		margin: 0 25px 0 0;
		display: flex;
	}
	.headerMenu ul{
		display: flex;
		justify-content: flex-end;
		list-style: none;
	}
	.headerMenu li{
		font-size: 18px;
		font-weight: 300;
		letter-spacing: 1px;
		text-transform: uppercase;
		font-family: "Bebas Neue", sans-serif;
		margin: 0 0 0 20px;
		color: #FFF;
	}
	.header .headerMenu li{
		color: #000;
	}
	.headerMenu li:hover{
		color: #E91;
	}
	.headerMenuMobile{
		display: none;
	}
	.headerRSocial{
		display: flex;
	}
	.headerRSocialBg{
		width: 35px;
		height: 35px;
		margin: 0 0 0 10px;
		border-radius: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.headerRSocialBg:nth-child(1){
		background-color: #52B;
	}
	.headerRSocialBg:nth-child(2){
		background-color: #27B;
	}
	.headerRSocialBg:nth-child(3){
		background-color: #A04;
	}
	.headerRSocialBg img{
		width: 20px;
	}

/*EFEITO ESQUEDA*/
	.efeitoFumacaEsqueda{
		width: 100%;
		height: 75%;
		position: absolute;
		display: flex;
		justify-content: flex-start;
		top: 25%;
		left: -250px;
	}
	.efeitoFumacaEsqueda img{
		opacity: 0;
		position: absolute;
		width: 50%;
		height: 100%;
		margin: 150px 0;
		transform: scale(1);
		filter: blur(15px);
	}
	.efeitoFumacaEsqueda01{
		margin: 25px 0 0;
		animation: efeitoFumacaEsqueda 6s ease-out infinite;
	}
	.efeitoFumacaEsqueda02{
		margin: -15px 0 0;
		animation: efeitoFumacaEsqueda 7s  ease-out infinite;
		animation-delay: 1s;
	}
	.efeitoFumacaEsqueda03{
		margin: -25px 0 0;
		animation: efeitoFumacaEsqueda 9s  ease-out infinite;
		animation-delay: 2s;
	}
	.efeitoFumacaEsqueda04{
		margin: 15px 0 0;
		animation: efeitoFumacaEsqueda 8s  ease-out infinite;
		animation-delay: 3s;
	}
	@keyframes efeitoFumacaEsqueda {
		0%{
			transform-origin: left;
			opacity: 0;
			filter: blur(5px);
		}
		50%{
			opacity: 0.5;
		}
		100%{
			transform: scale(1.3);
			transform-origin: left;
			opacity: 0;
			filter: blur(20px);
		}
	}

/*EFEITO DIREITA*/
	.efeitoFumacaDireita{
		width: 100%;
		height: 100%;
		position: absolute;
		display: flex;
		justify-content: flex-end;
		top: 0;
		right: 0;
		opacity: 0.75;
	}
	.efeitoFumacaDireita img{
		position: absolute;
		height: 100%;
		opacity: 0;
		transform: scale(0.5);
		transform-origin: right;
	}
	.efeitoFumacaDireita01{
		margin: 25px -10px 0;
		animation: efeitoFumacaDireita 10s ease-out infinite;
	}
	.efeitoFumacaDireita02{
		margin: -15px -10px 0;
		animation: efeitoFumacaDireita 12s  ease-out infinite;
		animation-delay: 1s;
	}
	.efeitoFumacaDireita03{
		margin: -25px -10px 0;
		animation: efeitoFumacaDireita 14s  ease-out infinite;
		animation-delay: 2s;
	}
	.efeitoFumacaDireita04{
		margin: 15px -10px 0;
		animation: efeitoFumacaDireita 13s  ease-out infinite;
		animation-delay: 3s;
	}
	@keyframes efeitoFumacaDireita {
		0%{
			transform: scale(0);
			opacity: 0;
			filter: blur(10px);
		}
		50%{
			opacity: 1;
		}
		100%{
			transform: scale(1);
			opacity: 0;
			filter: blur(30px);
		}
	}

/*BANNER GERAL*/
	.bannerGeral{
		width: 100%;
		padding: 150px 0 0;
		position: relative;
		z-index: 2;
		background-color: #000;
		background-size: contain;
		background-position: center;
		background-image: url(../img/m3background.webp);
	}
	.bannerGeral h1{
		width: 100%;
		font-family: "Bebas Neue", sans-serif;
		font-size: 80px;
		letter-spacing: 5px;
		font-weight: bold;
		text-align: center;
		text-transform: uppercase;
		color: #E91;
	}
	.bannerGeral hr{
		width: 2px;
		height: 50px;
		border: 0;
		background-color: #FFF;
	}
	.bannerGeralEfeito{
		width: 10px;
		height: 10px;
		margin: 0 auto -10px;
		background-color: #FFF;
	}

/*BANNER INTERNO*/
	.bannerInterno{
		width: 100%;
		padding: 150px 0 250px;
		background-color: #000;
		background-size: contain;
		background-position: center;
		background-image: url(../img/m3background.webp);
	}
	.bannerInternoTitulo{
		width: 100%;
		margin: 0 100px 0 0;
	}
	.bannerInternoTitulo h1{
		font-family: "Bebas Neue";
		font-size: 60px;
		font-weight: bold;
		line-height: 125%;
		color: #E91;
	}
	.bannerInternoConteudo{
		width: 125%;
	}
	.bannerInternoConteudo p{
		font-size: 20px;
		font-weight: 300;
		color: #FFF;
	}



/*INICIAL BANNER*/
	.inicialBanner{
		width: 100%;
		height: 800px;
		overflow: hidden;
		position: relative;
		z-index: 1;
	}
	.inicialBannerVideo{
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 0;
	}
	.inicialBannerVideo video{
		position: absolute;
		top: 50%;
		left: 50%;
		min-width: 100%;
		min-height: 100%;
		transform: translate(-50%, -50%);
		object-fit: cover;
    }
    .inicialBannerConteudo{
    	width: 100%;
		height: 100%;
    	position: relative;
    	z-index: 3;
    	display: flex;
    	flex-wrap: wrap;
    	align-items: center;
    	justify-content: center;
    	background-color: #0009;
    }
    .inicialBannerTitulo{
    	width: 100%;
    	display: flex;
    	flex-wrap: wrap;
    	justify-content: center;
    }
    .inicialBannerTitulo h1{
    	font-weight: 300;
    	text-align: center;
    	text-transform: uppercase;
    	letter-spacing: 5px;
    	color: #FFF;
    	padding: 0 20px;
    	background-image: linear-gradient(to right, #E27, #D13);
    }
    .inicialBannerSlide{
    	width: 100%;
    	height: 130px;
    	margin: -10px 0 0;
    	display: flex;
    	justify-content: center;
    }
    .inicialBannerSlide span{
    	width: 100%;    
    	font-family: 'Poppins', sans-serif;
    	font-size: 120px;
    	font-weight: 900;
    	text-transform: uppercase;
    	text-align: center;
		color: transparent;
		-webkit-text-stroke: 2px #FFF9;
		white-space: nowrap;
    }

/*INICIAL APRESENTACAO*/
	.inicialApresentacao{
		width: 100%;
		position: relative;
		z-index: 2;
		padding: 250px 0;
		position: relative;
		margin: -200px 0;
		background-image: linear-gradient(to bottom, #0000, #000 200px);
	}
	.inicialApresentacaoEfeito{
		width: 100%;
		height: 100%;
		position: absolute;
		display: flex;
		justify-content: flex-end;
		top: 0;
		right: 0;
	}
	.inicialApresentacaoEfeito img{
		opacity: 0;
		position: absolute;
		width: 50%;
		height: 100%;
		transform: scale(1);
		filter: blur(15px);
	}
	.inicialApresentacaoEfeito01{
		margin: 25px 0 0;
		animation: inicialApresentacaoEfeito 6s ease-out infinite;
	}
	.inicialApresentacaoEfeito02{
		margin: -15px 0 0;
		animation: inicialApresentacaoEfeito 7s  ease-out infinite;
		animation-delay: 1s;
	}
	.inicialApresentacaoEfeito03{
		margin: -25px 0 0;
		animation: inicialApresentacaoEfeito 9s  ease-out infinite;
		animation-delay: 2s;
	}
	.inicialApresentacaoEfeito04{
		margin: 15px 0 0;
		animation: inicialApresentacaoEfeito 8s  ease-out infinite;
		animation-delay: 3s;
	}
	@keyframes inicialApresentacaoEfeito {
		0%{
			transform-origin: right;
			opacity: 0;
			filter: blur(5px);
		}
		50%{
			opacity: 0.5;
		}
		100%{
			transform: scale(1.3);
			transform-origin: right;
			opacity: 0;
			filter: blur(20px);
		}
	}
	.inicialApresentacao .flex{
		align-items: center;
		position: relative;
		z-index: 2;
	}
	.inicialApresentacaoConteudo{
		width: 50%;
		margin: 0 50px 0 0;
	}
	.inicialApresentacaoTitulo{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.inicialApresentacaoTitulo hr{
		width: 300px;
		height: 2px;
		border: none;
		margin: 0 10px 0 -300px;
		background-color: #E91;
	}
	.inicialApresentacaoTitulo h2{
		font-size: 24px;
		font-weight: 300;
		text-transform: uppercase;
		color: #E91;
	}
	.inicialApresentacaoTituloEfeito{
		width: 10px;
		height: 10px;
		margin: 0 10px 0 -10px;
		background-color: #E91;
	}
	.inicialApresentacaoTexto{
		width: 100%;
		margin: 25px 0 0;
	}
	.inicialApresentacaoTexto p{
		font-family: "Bebas Neue";
		font-size: 48px;
		font-weight: bold;
		line-height: 125%;
		margin: 0 10px;
		color: #FFF;
	}
	.inicialApresentacaoTexto p span{
		padding: 5px 10px;
		background-image: linear-gradient(to right, #FA2, #F90);
	}
	.inicialApresentacaoCta{
		width: 100%;
		display: flex;
	}
	.inicialApresentacaoCta p{
		font-size: 18px;
		text-transform: uppercase;
		text-decoration: underline;
		padding: 10px;
		color: #999;
	}
	.inicialApresentacaoCta p:hover{
		color: #555;
	}

/*INICIAL SERVIÇOS*/
	.inicialServicos{
		width: 100%;
		padding: 50px 0;
		background-image: linear-gradient(to bottom, #000 400px, #FFF 400px);
	}
	.inicialServicosTitulo{
		width: 100%;
		margin: 0 0 25px;
	}
	.inicialServicosTituloEfeito{
		width: 10px;
		height: 10px;
		margin: auto;
		background-color: #5CD;
	}
	.inicialServicosTitulo hr{
		width: 2px;
		height: 150px;
		border: 0;
		margin: -50px auto 0;
		background-image: linear-gradient(to bottom, #0000, #5CD9);
	}
	.inicialServicosTitulo h2{
		width: 100%;
		font-family: "Bebas Neue", sans-serif;
		font-size: 48px;
		letter-spacing: 5px;
		font-weight: bold;
		text-align: center;
		text-transform: uppercase;
		color: #5CD;
	}
	.inicialServicosConteudo{
		width: 100%;
		margin: 50px 0;
		display: flex;
		flex-wrap: wrap;
	}
	.inicialServicosBg{
		width: 100%;
		margin: 0 10px;
		overflow: hidden;
		background-color: #000;
	}
	.inicialServicosBackground{
		width: 100%;
		height: 450px;
		position: relative;
		overflow: hidden;
	}
	.inicialServicosImagem{
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 1;
		filter: grayscale(1);
		background-size: cover;
		background-position: center;
	}
	.inicialServicosBackground:hover .inicialServicosImagem{
		filter: grayscale(0);
		transform: scale(1.05);
	}
	.inicialServicosTexto{
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 2;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		align-content: center;
		background-image: linear-gradient(45deg, #000C, #0003);
	}
	.inicialServicosBackground:hover .inicialServicosTexto{
		transition: 1s ease;
		background-image: linear-gradient(45deg, #A04C, #52B3);
	}
	.inicialServicosTexto h3{
		width: 100%;
		padding: 0 10px;
		margin: 0 0 5px;
		font-size: 30px;
		line-height: 100%;
		text-align: center;
		color: #FFF;
	}
	.inicialServicosTexto p{
		padding: 0 10px;
		font-size: 18px;
		text-transform: uppercase;
		font-weight: 300;
		text-align: center;
		line-height: 125%;
		color: #FFFC;
	}

/*INICIAL CASE*/
	.inicialCases{
		width: 100%;
		background-color: #FFF;
	}
	.inicialCasesTitulo{
		width: 100%;
		padding: 0 0 50px;
	}
	.inicialCasesTituloPrincipal{
		width: 100%;
	}
	.inicialCasesTituloEfeito{
		width: 10px;
		height: 10px;
		margin: 0 10px 0 -10px;
		background-color: #A04;
	}
	.inicialCasesTituloPrincipal h2{
		font-size: 24px;
		font-weight: 300;
		text-transform: uppercase;
		display: flex;
		align-items: center;
		color: #A04;
	}
	.inicialCasesTituloPrincipal hr{
		width: 300px;
		height: 2px;
		border: none;
		margin: 0 10px 0 -300px;
		background-color: #A04;
	}
	.inicialCasesTituloPrincipal p{
		width: 100%;
		margin: 0 20px;
		font-family: "Bebas Neue", sans-serif;
		font-size: 48px;
		line-height: 100%;
		font-weight: bold;
		text-transform: uppercase;
		color: #000;
	}
	.inicialCasesTituloAuxiliar{
		width: 100%;
	}
	.inicialCasesTituloAuxiliar p{
		width: 100%;
		margin: 30px 0 0;
		font-size: 20px;
		font-weight: 300;
		color: #0009;
	}
	.inicialCasesLinha{
		width: 100%;
		display: flex;
	}
	.inicialCasesColuna{
		width: 25%;
	}
	.inicialCasesConteudo{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
	}
	.inicialCasesConteudo:hover{
		filter: brightness(1.2);
	}
	.inicialCasesConteudo01{
		width: 25%;
		height: 350px;
	}
	.inicialCasesConteudo02{
		width: 50%;
		height: 350px;
	}
	.inicialCasesConteudo03{
		width: 100%;
		height: 350px;
	}
	.inicialCasesConteudo04{
		width: 100%;
		height: 700px;
	}
	.inicialCasesConteudoCor01{
		background-color: #A04;
	}
	.inicialCasesConteudoCor02{
		background-color: #E17;
	}
	.inicialCasesConteudoCor03{
		background-color: #E42;
	}
	.inicialCasesConteudoCor04{
		background-color: #6AA;
	}
	.inicialCasesConteudoCor05{
		background-color: #27B;
	}
	.inicialCasesConteudoCor06{
		background-color: #3AD;
	}
	.inicialCasesConteudoCor07{
		background-color: #52B;
	}
	.inicialCasesConteudoImagem{
		background-size: cover;
		background-position: center;
	}
	.inicialCasesConteudoTexto{
		width: 100%;
		height: 100%;
		padding: 0 25px;
		display: flex;
		align-items: center;
		align-content: center;
		justify-content: center;
		flex-wrap: wrap;
	}
	.inicialCasesConteudoImagem .inicialCasesConteudoTexto{
		background-image: linear-gradient(45deg, #A04C, #52BC);
	}
	.inicialCasesConteudo:hover .inicialCasesConteudoTexto{
		background-image: linear-gradient(45deg, #A043, #52B3);
	}
	.inicialCasesConteudoTexto h3{
		display: flex;
		align-items: center;
		font-size: 22px;
		text-align: center;
		line-height: 115%;
		color: #FFF;
	}
	.inicialCasesConteudoTexto p{
		margin: 10px 0 0;
		font-size: 18px;
		font-weight: 300;
		text-align: center;
		color: #FFFC;
	}
	.inicialCasesConteudoTexto p:last-of-type{
		margin: 20px 0 0;
		font-size: 14px;
		font-weight: bold;
		text-transform: uppercase;
		color: #FFF9;
	}
	.inicialCasesConteudoTexto p:last-of-type:hover{
		text-decoration: underline;
		color: #FFF;
	}

/*INICIAL CERTIFICADO*/
	.inicialCertificado{
		width: 100%;
		padding: 100px 0;
		position: relative;
		background-repeat: no-repeat;
		background-position: top left;
		background-image: url(../img/efeitoLuz.webp);
	}
	.inicialCertificado .container{
		align-items: center;
	}
	.inicialCertificadoImagem{
		width: 100%;
		margin: 0 50px 0 0;
	}
	.inicialCertificadoImagem img{
		width: 120%;
		margin: 0 0 0 -25%;
	}
	.inicialCertificadoConteudo{
		width: 100%;
	}
	.inicialCertificadoTexto{
		width: 100%;
	}
	.inicialCertificadoTexto p{
		font-family: "Bebas Neue";
		font-size: 48px;
		font-weight: bold;
		line-height: 125%;
		margin: 0 10px;
	}
	.inicialCertificadoTexto p span{
		padding: 5px 10px;
		background-color: #52B;
		color: #FFF;
	}
	.inicialCertificadoCertificado{
		width: 100%;
		margin: 50px 0 0;
		display: flex;
		align-items: center;
	}
	.inicialCertificadoCertificado p{
		font-size: 18px;
		color: #999;
	}
	.inicialCertificadoCertificado p strong{
		font-size: 22px;
		color: #000;
	}
	.inicialCertificadoCertificado img{
		width: 120px;
	}
	.inicialCertificadoEfeito{
		width: 100%;
		height: 100%;
		position: absolute;
		display: flex;
		justify-content: flex-end;
		top: 0;
		right: 0;
		opacity: 0.75;
	}
	.inicialCertificadoEfeito img{
		position: absolute;
		height: 100%;
		opacity: 0;
		transform: scale(0.5);
		transform-origin: right;
	}
	.inicialCertificadoEfeito01{
		margin: 25px -10px 0;
		animation: inicialCertificadoEfeito 10s ease-out infinite;
	}
	.inicialCertificadoEfeito02{
		margin: -15px -10px 0;
		animation: inicialCertificadoEfeito 12s  ease-out infinite;
		animation-delay: 1s;
	}
	.inicialCertificadoEfeito03{
		margin: -25px -10px 0;
		animation: inicialCertificadoEfeito 14s  ease-out infinite;
		animation-delay: 2s;
	}
	.inicialCertificadoEfeito04{
		margin: 15px -10px 0;
		animation: inicialCertificadoEfeito 13s  ease-out infinite;
		animation-delay: 3s;
	}

	@keyframes inicialCertificadoEfeito {
		0%{
			transform: scale(0);
			opacity: 0;
			filter: blur(10px);
		}
		50%{
			opacity: 1;
		}
		100%{
			transform: scale(1);
			opacity: 0;
			filter: blur(30px);
		}
	}
	
/*INICIAL CLIENTES*/
	.inicialClientes{
		width: 100%;
		margin: 25px 0 0;
		padding: 50px 0;
		background-color: #FFF;
	}
	.inicialClientesTitulo{
		width: 100%;
		padding: 0 0 50px;
	}
	.inicialClientesTituloEfeito{
		width: 10px;
		height: 10px;
		margin: 0 10px 0 -10px;
		background-color: #E17;
	}
	.inicialClientesTitulo h2{
		font-size: 24px;
		font-weight: 300;
		text-transform: uppercase;
		display: flex;
		align-items: center;
		color: #E17;
	}
	.inicialClientesTitulo hr{
		width: 300px;
		height: 2px;
		border: none;
		margin: 0 10px 0 -300px;
		background-color: #E17;
	}
	.inicialClientesTitulo p{
		width: 100%;
		margin: 0 20px;
		font-family: "Bebas Neue", sans-serif;
		font-size: 48px;
		line-height: 100%;
		font-weight: bold;
		text-transform: uppercase;
		color: #000;
	}
	.inicialClientesConteudo{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.inicialClientesConteudoBg{
		width: 8%;
		margin: 1% 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.inicialClientesConteudoBg img{
		width: 90%;
		filter: grayscale(1);
	}
	.inicialClientesConteudoBg img:hover{
		filter: grayscale(0);
	}



/*SOBRE APRESENTACAO*/
	.sobreApresentacao{
		width: 100%;
		padding: 100px 0;
	}
	.sobreApresentacaoConteudo{
		width: 100%;
		display: flex;
	}
	.sobreApresentacaoConteudoPrincipal{
		width: 100%;
		margin: 0 100px 0 0;
	}
	.sobreApresentacaoTitulo{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.sobreApresentacaoTitulo hr{
		width: 300px;
		height: 2px;
		border: none;
		margin: 0 10px 0 -300px;
		background-color: #5CD;
	}
	.sobreApresentacaoTitulo h2{
		font-size: 24px;
		font-weight: 300;
		text-transform: uppercase;
		color: #5CD;
	}
	.sobreApresentacaoTituloEfeito{
		width: 10px;
		height: 10px;
		margin: 0 10px 0 -10px;
		background-color: #5CD;
	}
	.sobreApresentacaoDestaque{
		width: 100%;
		margin: 25px 0 0;
	}
	.sobreApresentacaoDestaque p{
		font-family: "Bebas Neue";
		font-size: 48px;
		font-weight: bold;
		line-height: 125%;
		margin: 0 10px;
		color: #000;
	}
	.sobreApresentacaoDestaque p span{
		padding: 5px 10px;
		background-image: linear-gradient(to right, #5CD, #7A9);
	}
	.sobreApresentacaoConteudoTexto{
		width: 100%;
		padding: 60px 0 0;
	}
	.sobreApresentacaoConteudoTexto p:nth-child(1){
		font-size: 24px;
	}
	.sobreApresentacaoConteudoTexto p:nth-child(1) strong{
		color: #7A9;
	}
	.sobreApresentacaoConteudoTexto p:nth-child(2){
		margin: 15px 0 0;
		font-size: 22px;
		font-weight: 300;
	}

/*SOBRE DIFERENCIAL*/
	.sobreDiferenciais{
		width: 100%;
		padding: 100px 0;
		position: relative;
	}
	.sobreDiferenciaisBg01{
		display: flex;
		align-items: center;
	}
	.sobreDiferenciaisImagem{
		width: 100%;
		margin: 0 50px 0 0;
	}
	.sobreDiferenciaisImagem img{
		width: 120%;
		margin: 0 0 0 -25%;
	}
	.sobreDiferenciaisConteudo{
		width: 100%;
	}
	.sobreDiferenciaisTitulo{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.sobreDiferenciaisTitulo h2{
		font-size: 24px;
		font-weight: 300;
		text-transform: uppercase;
		color: #A04;
	}
	.sobreDiferenciaisTexto{
		width: 100%;
	}
	.sobreDiferenciaisTexto p:nth-child(1){
		font-family: "Bebas Neue";
		font-size: 48px;
		font-weight: bold;
		line-height: 125%;
		color: #000;
	}
	.sobreDiferenciaisTexto p:nth-child(2){
		font-size: 22px;
		margin: 25px 0;
	}
	.sobreDiferenciaisCertificado{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.sobreDiferenciaisCertificado p{
		font-size: 18px;
		color: #999;
	}
	.sobreDiferenciaisCertificado p strong{
		font-size: 22px;
		color: #000;
	}
	.sobreDiferenciaisCertificado img{
		width: 120px;
	}

/*SOBRE PILARES*/
	.sobrePilares{
		width: 100%;
		padding: 50px 0;
		background-image: linear-gradient(to bottom, #000 400px, #FFF 400px);
	}
	.sobrePilaresTitulo{
		width: 100%;
		margin: 0 0 25px;
	}
	.sobrePilaresTituloEfeito{
		width: 10px;
		height: 10px;
		margin: auto;
		background-color: #E91;
	}
	.sobrePilaresTitulo hr{
		width: 2px;
		height: 150px;
		border: 0;
		margin: -50px auto 0;
		background-color: #E91;
	}
	.sobrePilaresTitulo h2{
		width: 100%;
		font-family: "Bebas Neue", sans-serif;
		font-size: 48px;
		letter-spacing: 5px;
		font-weight: bold;
		text-align: center;
		text-transform: uppercase;
		color: #E91;
	}
	.sobrePilaresConteudo{
		width: 100%;
		margin: 50px 0;
		display: flex;
	}
	.sobrePilaresConteudoBg{
		width: 100%;
		margin: 0 10px;
		overflow: hidden;
		background-color: #FFF;
	}
	.sobrePilaresConteudoImagem{
		width: 100%;
		height: 500px;
		overflow: hidden;
		display: flex;
		background-size: cover;
		background-position: center;
	}
	.sobrePilaresConteudoTexto{
		width: 100%;
		padding: 50px 25px;
		text-align: center;
		background-image: linear-gradient(45deg, #A04C, #52BC);
	}
	.sobrePilaresConteudoTexto img{
		width: 80px;
		filter: brightness(100);
	}
	.sobrePilaresConteudoTexto h3{
		margin: 15px 0;
		font-size: 30px;
		line-height: 100%;
		text-align: center;
		color: #FFF;
	}
	.sobrePilaresConteudoTexto p{
		font-size: 18px;
		font-weight: 300;
		text-align: center;
		color: #FFF;
	}
	


/*SERVICOS*/
	.servicos{
		width: 100%;
		margin: 50px 0;
		display: flex;
		flex-wrap: wrap;
	}
	.servicos .container{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.servicosBg{
		width: 31%;
		height: 450px;
		margin: 1%;
		display: flex;
		position: relative;
		overflow: hidden;
	}
	.servicosImagem{
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 1;
		filter: grayscale(1);
		background-size: cover;
		background-position: center;
	}
	.servicosBg:hover .servicosImagem{
		filter: grayscale(0);
		transform: scale(1.05);
	}
	.servicosTexto{
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 2;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: flex-end;
		align-content: flex-end;
		background-image: linear-gradient(45deg, #000C, #0003);
	}
	.servicosBg:hover .servicosTexto{
		transition: 1s ease;
		background-image: linear-gradient(45deg, #A04C, #52B3);
	}
	.servicosTexto h3{
		width: 100%;
		padding: 0 25px;
		margin: 0 0 5px;
		font-size: 30px;
		line-height: 100%;
		text-align: center;
		color: #FFF;
	}
	.servicosTexto p{
		padding: 0 25px 50px;
		font-size: 18px;
		font-weight: 300;
		text-align: center;
		line-height: 125%;
		color: #FFFC;
	}

/*SERVICOS IMAGEM*/
	.servicoImagem{
		width: 100%;
		margin: -225px 0 0;
	}
	.servicoImagemBackground{
		width: 100%;
		height: 500px;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		background-size: cover;
		background-position: center;
	}

/*SERVICOS APRESENTACAO*/
	.servicoApresentacao{
		width: 100%;
		margin: 100px 0;
		position: relative;
	}
	.servicoApresentacaoConteudo{
		width: 100%;
		display: flex;
	}
	.servicoApresentacaoConteudoPrincipal{
		width: 100%;
		margin: 0 100px 0 0;
	}
	.servicoApresentacaoTitulo{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.servicoApresentacaoTitulo hr{
		width: 300px;
		height: 2px;
		border: none;
		margin: 0 10px 0 -300px;
		background-color: #A04;
	}
	.servicoApresentacaoTitulo h2{
		font-size: 24px;
		font-weight: 300;
		text-transform: uppercase;
		color: #A04;
	}
	.servicoApresentacaoTituloEfeito{
		width: 10px;
		height: 10px;
		margin: 0 10px 0 -10px;
		background-color: #A04;
	}
	.servicoApresentacaoDestaque{
		width: 100%;
		margin: 25px 0 0;
	}
	.servicoApresentacaoDestaque p{
		font-family: "Bebas Neue";
		font-size: 48px;
		font-weight: bold;
		line-height: 125%;
		margin: 0 20px;
		color: #000;
	}
	.servicoApresentacaoDestaqueTexto{
		width: 100%;
		padding: 60px 0 0;
	}
	.servicoApresentacaoDestaqueTexto p{
		font-size: 24px;
	}
	.servicoApresentacaoDestaqueTexto ul{
		margin: 15px;
		font-size: 20px;
		font-weight: 300;
	}
	.servicoApresentacao .efeitoFumacaEsqueda img{
		margin: -250px;
	}

/*SERVICOS CASES*/
	.servicoPortfolioBackground{
		width: 100%;
		padding: 50px 0;
		background-image: linear-gradient(to bottom, #000 400px, #FFF 400px);
	}
	.servicoPortfolioTitulo{
		width: 100%;
		margin: 0 0 25px;
	}
	.servicoPortfolioTituloEfeito{
		width: 10px;
		height: 10px;
		margin: auto;
		background-color: #5CD;
	}
	.servicoPortfolioTitulo hr{
		width: 2px;
		height: 150px;
		border: 0;
		margin: -50px auto 0;
		background-image: linear-gradient(to bottom, #0000, #5CD9);
	}
	.servicoPortfolioTitulo h2{
		width: 100%;
		font-family: "Bebas Neue", sans-serif;
		font-size: 48px;
		letter-spacing: 5px;
		font-weight: bold;
		text-align: center;
		text-transform: uppercase;
		color: #5CD;
	}
	.servicoPortfolioConteudo{
		width: 100%;
		height: 450px;
		display: flex;
		flex-wrap: wrap;
	}
	.servicoPortfolio{
		width: 100%;
		margin: 0 10px;
		display: flex;
		overflow: hidden;
	}
	.servicoPortfolioBg{
		width: 100%;
		height: 450px;
		position: relative;
		overflow: hidden;
	}
	.servicoPortfolioImagem{
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 1;
		filter: grayscale(1);
		background-size: cover;
		background-position: center;
	}
	.servicoPortfolioBg:hover .servicoPortfolioImagem{
		filter: grayscale(0);
		transform: scale(1.05);
	}
	.servicoPortfolioTexto{
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 2;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		align-content: center;
		background-image: linear-gradient(45deg, #000C, #0003);
	}
	.servicoPortfolioBg:hover .servicoPortfolioTexto{
		transition: 1s ease;
		background-image: linear-gradient(45deg, #A04C, #52B3);
	}
	.servicoPortfolioTexto h3{
		width: 100%;
		padding: 0 10px;
		margin: 0 0 5px;
		font-size: 26px;
		line-height: 100%;
		text-align: center;
		color: #FFF;
	}
	.servicoPortfolioTexto p{
		padding: 0 10px;
		font-size: 18px;
		text-transform: uppercase;
		font-weight: 300;
		text-align: center;
		line-height: 125%;
		color: #FFFC;
	}
	


/*PORTFOLIO*/
	.portfolio{
		width: 100%;
		margin: 50px 0;
		display: flex;
		flex-wrap: wrap;
	}
	.portfolio .container{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.portfolioBg{
		width: 23%;
		height: 250px;
		margin: 1%;
		display: flex;
		position: relative;
		overflow: hidden;
	}
	.portfolioImagem{
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 1;
		filter: grayscale(1);
		background-size: cover;
		background-position: center;
	}
	.portfolioBg:hover .portfolioImagem{
		filter: grayscale(0);
		transform: scale(1.05);
	}
	.portfolioTexto{
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 2;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		align-content: center;
		background-image: linear-gradient(45deg, #000C, #0003);
	}
	.portfolioBg:hover .portfolioTexto{
		transition: 1s ease;
		background-image: linear-gradient(45deg, #A04C, #52B3);
	}
	.portfolioTexto h3{
		width: 100%;
		padding: 0 10px;
		margin: 0 0 5px;
		font-size: 26px;
		line-height: 100%;
		text-align: center;
		color: #FFF;
	}
	.portfolioTexto p{
		padding: 0 10px;
		font-size: 18px;
		text-transform: uppercase;
		font-weight: 300;
		text-align: center;
		line-height: 125%;
		color: #FFFC;
	}

/*PORTFOLIO IMAGEM*/
	.portfolioInternaImagem{
		width: 100%;
		margin: -225px 0 0;
	}
	.portfolioInternaImagemBackground{
		width: 100%;
		height: 500px;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		background-size: cover;
		background-position: center;
	}

/*PORTFOLIO APRESENTACAO*/
	.portfolioInternaApresentacao{
		width: 100%;
		margin: 100px 0;
		position: relative;
	}
	.portfolioInternaApresentacaoConteudo{
		width: 100%;
		display: flex;
	}
	.portfolioInternaApresentacaoConteudoPrincipal{
		width: 100%;
		margin: 0 100px 0 0;
	}
	.portfolioInternaApresentacaoTitulo{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.portfolioInternaApresentacaoTitulo hr{
		width: 300px;
		height: 2px;
		border: none;
		margin: 0 10px 0 -300px;
		background-color: #A04;
	}
	.portfolioInternaApresentacaoTitulo h2{
		font-size: 24px;
		font-weight: 300;
		text-transform: uppercase;
		color: #A04;
	}
	.portfolioInternaApresentacaoEfeito{
		width: 10px;
		height: 10px;
		margin: 0 10px 0 -10px;
		background-color: #A04;
	}
	.portfolioInternaApresentacaoDestaque{
		width: 100%;
		margin: 25px 0 0;
	}
	.portfolioInternaApresentacaoDestaque p{
		font-family: "Bebas Neue";
		font-size: 48px;
		font-weight: bold;
		line-height: 125%;
		margin: 0 20px;
		color: #000;
	}
	.portfolioInternaApresentacaoConteudoTexto{
		width: 100%;
		padding: 60px 0 0;
	}
	.portfolioInternaApresentacaoConteudoTexto p{
		font-size: 24px;
	}
	.portfolioInternaApresentacaoConteudoTexto ul{
		margin: 15px;
		font-size: 20px;
		font-weight: 300;
	}
	.portfolioInternaApresentacao .efeitoFumacaEsqueda img{
		margin: -250px;
	}

/*PORTFOLIO GALERIA*/
	.portfolioInternaGaleria{
		width: 100%;
		margin: 50px 0;
		display: flex;
		flex-wrap: wrap;
	}
	.portfolioInternaGaleria .container{
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.portfolioInternaGaleriaBg{
		width: 18%;
		height: 200px;
		margin: 1%;
		display: flex;
		position: relative;
		overflow: hidden;
	}
	.portfolioInternaGaleriaImagem{
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 1;
		filter: grayscale(1);
		background-size: cover;
		background-position: center;
	}
	.portfolioInternaGaleriaBg:hover .portfolioInternaGaleriaImagem{
		filter: grayscale(0);
		transform: scale(1.05);
	}



/*CONTATO APRESENTACAO*/
	.contatoApresentacao{
		width: 100%;
		padding: 100px 0;
	}
	.contatoApresentacaoConteudo{
		width: 100%;
		display: flex;
	}
	.contatoApresentacaoPrincipal{
		width: 100%;
		margin: 0 100px 0 0;
	}
	.contatoApresentacaoTitulo{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.contatoApresentacaoTitulo hr{
		width: 300px;
		height: 2px;
		border: none;
		margin: 0 10px 0 -300px;
		background-color: #A04;
	}
	.contatoApresentacaoTitulo h2{
		font-size: 24px;
		font-weight: 300;
		text-transform: uppercase;
		color: #A04;
	}
	.contatoApresentacaoTituloEfeito{
		width: 10px;
		height: 10px;
		margin: 0 10px 0 -10px;
		background-color: #A04;
	}
	.contatoApresentacaoDestaque{
		width: 100%;
		margin: 25px 0 0;
	}
	.contatoApresentacaoDestaque p{
		font-family: "Bebas Neue";
		font-size: 48px;
		font-weight: bold;
		line-height: 125%;
		margin: 0 10px;
		color: #000;
	}
	.contatoApresentacaoDestaque p span{
		padding: 5px 10px;
		background-image: linear-gradient(to right, #A04, #E17);
		color: #FFF;
	}
	.contatoApresentacaoInfo{
		width: 100%;
		padding: 60px 0 0;
	}
	.contatoApresentacaoInfoBg{
		width: 100%;
		display: flex;
		align-items: center;
		margin: 0 0 10px 0;
	}
	.contatoApresentacaoInfoBg img{
		height: 30px;
		padding: 10px;
		margin: 0 20px 0 0;
	}
	.contatoApresentacaoInfoBg:nth-child(1) img{
		background-color: #27B;
	}
	.contatoApresentacaoInfoBg:nth-child(2) img{
		background-color: #3AD;
	}
	.contatoApresentacaoInfoBg:nth-child(3) img{
		background-color: #52B;
	}
	.contatoApresentacaoInfoBg p{
		font-size: 22px;
		line-height: 100%;
		color: #000;
	}
	.contatoApresentacaoInfoBg p span{
		font-size: 18px;
		color: #999;
	}
	
/*CONTATO IMAGEM*/
	.contatoImagem{
		width: 100%;
	}
	.contatoImagemBackground{
		width: 100%;
		height: 500px;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		background-size: cover;
		background-position: center;
	}


/*WHATSAPP*/
	.whatsapp{
		display: flex;
		align-items: center;
		position: fixed;
		z-index: 999;
		right: 30px;
		bottom: 30px;
	}
	.whatsappImagem{
		width: 70px;
		height: 70px;
		position: relative;
	}
	.whatsappImagemBg{
		width: 70px;
		height: 70px;
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 100px;
		background-color: #2D6;
	}
	.whatsappImagemBgIcone{
		min-width: 40px;
		height: 40px;
		margin: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		filter: brightness(20);
	}
	.whatsappImagemBgIcone img{
		width: 35px;
	}
	.whatsappImagemEfeito{
		width: 70px;
		height: 70px;
		border-radius: 100px;
		position: absolute;
		top: 0px;
		right: 0;
		animation: whatsappImagem 3s infinite;
	}
	@keyframes whatsappImagem {
	    0%{
	    	transform: scale(1.0);
			background-color: #2D6;
		}
		100%{
			transform: scale(1.5);
			background-color: #2D60;
		}
	}
	#chatWhatsapp{
		position: absolute;
		z-index: 9999;
	}
	.chatWhatsapp{
		width: 100%;
		max-width: 350px;
		position: fixed;
		z-index: 999;
		right: 30px;
		bottom: 120px;
		border-radius: 10px;
		overflow: hidden;
		display: flex;
		flex-wrap: wrap;
		box-shadow: 0 0 20px #0002;	
	}
	.chatWhatsappFechar{
		position: absolute;
		z-index: 2;
		top: 10px;
		right: 10px;
		cursor: pointer;
	}
	.chatWhatsappFechar p{
		color: #FFF9;
	}
	.chatWhatsapp01{
		width: 100%;
		padding: 15px;
		display: flex;
		align-items: center;
		background-color: #055;
	}
	.chatWhatsapp01Imagem{
		width: 50px;
		height: 50px;
		position: relative;
		border-radius: 100px;
		background-color: #FFF;
		background-size: 80%;
		background-position: center;
		background-repeat: no-repeat;
		background-image:url(../img/marcaWhatsapp.webp);
	}
	.chatWhatsapp01ImagemBg{
		width: 10px;
		height: 10px;
		position: absolute;
		bottom: 0;
		right: 0;
		border: 3px solid #055;
		border-radius: 100px;
		background-color: #4D0;
	}
	.chatWhatsapp01Texto{
		margin: 0 10px;
	}
	.chatWhatsapp01Texto p{
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 1px;
		line-height: 125%;
		color: #FFF;
	}
	.chatWhatsapp01Texto p span{
		font-size: 12px;
		font-weight: 300;
	}
	.chatWhatsapp02{
		width: 100%;
		padding: 25px;
		background-size: cover;
		background-position: center;
		background-image:url(../img/backgroundWhatsapp.webp);
	}
	.chatWhatsapp02Conversa{
		padding: 10px;
		border-radius: 10px;
		background-color: #FFF;
	}
	.chatWhatsapp02Conversa p:nth-child(1){
		font-size: 14px;
		font-weight: bold;
		letter-spacing: 1px;
		color: #0006;
	}
	.chatWhatsapp02Conversa p:nth-child(2){
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 1px;
		color: #000C;
	}
	.chatWhatsapp02Conversa p:nth-child(3){
		font-size: 11px;
		font-weight: 500;
		text-align: right;
		letter-spacing: 1px;
		color: #0006;
	}
	.chatWhatsapp03{
		width: 100%;
		display: flex;
		padding: 20px;
		align-items: center;
		justify-content: center;
		background-color: #2D6;
	}
	.chatWhatsapp03 img{
		width: 30px;
	}
	.chatWhatsappIcone{
		min-width: 30px;
		height: 30px;
		margin: 10px 5px 10px 10px;
		filter: brightness(0);
		opacity: 0.7;
		background-size: auto 30px;
		background-position: -330px 0;
	}
	.chatWhatsapp03 p{
		font-size: 14px;
		font-weight: bold;
		text-transform: uppercase;
		color: #000;
		opacity: 0.7;
	}

/*FOOTER*/
	footer{
		width: 100%;
		height: 300px;
		position: relative;
		display: flex;
		align-items: flex-end;
		align-content: flex-end;
		overflow: hidden;
	}	
	.footerBg{
		width: 100%;
		position: relative;
		z-index: 2;
		margin: 0;
		background-color: #FFF;
	}
	.footerBg .container{
		flex-wrap: wrap;
		justify-content: center;
	}
	.footerMarca{
		width: 100%;
		text-align: center;
	}
	.footerMarca img{
		margin: 50px 0 0;
		width: 150px;
	} 
	.footerCopyright{
		width: 100%;
		margin: 0 0 15px;
		position: relative;
		z-index: 2;
		text-align: center;
	}
	.footerCopyright p{
		font-size: 14px;
		font-weight: 300;
		line-height: 115%;
		letter-spacing: 1px;
		color: #300;
	}
	.footerEfeito{
		width: 100%;
		height: 250px;
		position: absolute;
		z-index: 1;
	}
	.footerEfeito img{
		position: absolute;
		width: 100%;
		margin: 0 0 -30px;
		transform: scale(1);
	}
	.footerEfeito01{
		opacity: 1;
		filter: blur(30px);
		animation: inicialCertificadoEfeito01 10s  ease-out infinite;
	}
	.footerEfeito02{
		opacity: 0;
		transform-origin: bottom;
		animation: inicialCertificadoEfeito02 10s  ease-out infinite;
		animation-delay: 1s;
	}
	.footerEfeito03{
		opacity: 0;
		transform-origin: bottom;
		animation: inicialCertificadoEfeito02 15s  ease-out infinite;
		animation-delay: 2s;
	}
	.footerEfeito04{
		opacity: 0;
		transform-origin: bottom;
		animation: inicialCertificadoEfeito02 20s  ease-out infinite;
		animation-delay: 3s;
	}

	@keyframes inicialCertificadoEfeito01 {
		0%{
			transform: scale(1);
		}
		50%{
			transform: scale(1.2);
		}
		100%{
			transform: scale(1);
		}
	}
	@keyframes inicialCertificadoEfeito02 {
		0%{
			opacity: 0;
			transform: scale(0.5);
			filter: blur(10px);
		}
		50%{
			opacity: 1;
			filter: blur(30px);
		}
		100%{
			transform: scale(1.1);
			opacity: 0;
			filter: blur(30px);
		}
	}
	
/*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){
	.flex{
		flex-wrap: wrap;
	}
	.container{
		max-width: 756px;
		width:96%;
		height:auto;
		position: relative;
		z-index: 2;
		margin:auto;
	}

	/*HEADER*/
		header{
			position: fixed;
			top: 0;
			box-shadow: 0 0 5px #0003;
			background-color: #FFF;
		}
		.headerBackground{
			padding: 20px 0 0;
		}
		.headerMarca{
			filter: brightness(1);
		}
		.headerMarca img{
			margin: -5px 0 10px;
		}
		.headerMenuMobile{
			width: 36px;
			height: 36px;
			position: fixed;
			top: 40px;
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 100px;
			border: 2px solid #000;
			margin: 0 0 0 5px;
			background-color: #000;
		}
		.headerMenuMobile p{
			margin: -3px 0 0;
			color: #FFF;
		}
		.headerMenu{
			width: 100%;
			position: fixed;
			right: 0;
			left: 0;
			top: 110px;
			bottom: 0;
			margin: 0;
			justify-content: center;
			background-color: #000;
			display: none;
		}
		.headerMenu ul{
			padding: 50px 0 0;
			display: block;
			text-align: center;
		}
		.headerMenu li{
			margin: 0 0 10px;
			color: #FFF;
		}
		.headerRSocial{
			position: fixed;
			top: 40px;
			right: 60px;
		}
		.headerRSocialBg{
			width: 40px;
			height: 40px;
		}

	/*BANNER GERAL*/
		.bannerGeral{
			background-size: 150%;
			background-repeat: no-repeat;
			background-position: center bottom;
		}
		.bannerGeral h1{
			font-size: 72px;
			line-height: 100%;
		}

	/*BANNER INTERNO*/
		.bannerInterno{
			background-size: cover;
			background-repeat: no-repeat;
			background-position: center bottom;
		}
		.bannerInternoTitulo{
			width: 100%;
			margin: 0;
		}



	/*INICIAL BANNER*/
		.inicialBanner{
			height:700px;
		}
	    .inicialBannerTitulo{
	    	width:auto;
	    	display: flex;
	    	flex-wrap: wrap;
	    	justify-content: center;
	    }   
	    .inicialBannerTitulo h1 {
			font-size: 40px;
			font-weight: 900;
			line-height: 115%;
			color: #FFF;
			background-image: none;
		}
	    .inicialBannerSlide{
	    	display: none;
	    }
		.inicialBannerVideo video{
			top: 25%;
			transform: translate(-50%, -25%);
	    }

	/*INICIAL APRESENTACAO*/
		.inicialApresentacao{
			padding: 250px 0;
		}
		.inicialApresentacaoEfeito img{
			width: auto;
			height: 400px;
		}
		.inicialApresentacaoConteudo{
			width: 100%;
			margin: 0;
		}
		.inicialApresentacaoTitulo h2{
			font-size: 20px;
		}
		.inicialApresentacaoTexto p{
			font-size: 36px;
		}
		.inicialApresentacaoTexto p span{
			padding: 5px 10px;
			background-image: linear-gradient(to right, #FA2, #F90);
		}

	/*INICIAL SERVIÇOS*/
		.inicialServicosBackground{
			height: 350px;
		}
		.inicialServicosTitulo hr {
		    height: 100px;
		    margin: -75px auto 0;
		}

	/*INICIAL CASE*/
		.inicialCasesTituloAuxiliar p{
			width: auto;
			margin: 20px 20px 0;
		}
		.inicialCasesLinha{
			width: 100%;
			flex-wrap: wrap;
		}
		.inicialCasesColuna{
			width: 100%;
		}
		.inicialCasesConteudo01{
			width: 100%;
			height: 250px;
		}
		.inicialCasesConteudo02{
			width: 100%;
			height: 250px;
		}
		.inicialCasesConteudo03{
			width: 100%;
			height: 250px;
		}
		.inicialCasesConteudo04{
			width: 100%;
			height: 250px;
		}
		.inicialCasesConteudoImagem{
			display: none;
		}

	/*INICIAL CERTIFICADO*/
		.inicialCertificadoImagem{
			margin: 0;
		}
		.inicialCertificadoImagem img{
			width: 100%;
			margin: 0;
		}
		.inicialCertificadoConteudo{
			margin: 25px 0 0;
		}
		.inicialCertificadoTexto p{
			font-size: 36px;
		}
		
		.inicialCertificado .efeitoFumacaDireita{
			margin: -300px 0 0;
		}
		
	/*INICIAL CLIENTES*/
		.inicialClientes{
			padding: 25px 0;
		}
		.inicialClientesTituloPrincipal{
			display: flex;
			flex-wrap: wrap;
		}
		.inicialClientesConteudoBg{
			width: 18%;
			margin: 1%;
		}



	/*SOBRE APRESENTACAO*/
		.sobreApresentacaoConteudo{
			flex-wrap: wrap;
		}
		.sobreApresentacaoConteudoPrincipal{
			margin: 0;
		}
		.sobreApresentacaoDestaque p{
			font-size: 36px;
		}
		.sobreApresentacaoConteudoTexto{
			width: 100%;
			padding: 30px 10px 0;
		}

	/*SOBRE DIFERENCIAL*/
		.sobreDiferenciais{
			padding: 0;
		}
		.sobreDiferenciaisImagem{
			margin: 0;
		}
		.sobreDiferenciaisImagem img{
			width: 100%;
			margin: 0 0 25px 0;
		}
		.sobreDiferenciaisTexto p:nth-child(1){
			font-size: 36px;
		}
		.sobreDiferenciaisCertificado img{
			width: 100px;
		}

	/*SOBRE PILARES*/
		.sobrePilares{
			margin: 50px 0 0;
		}
		.sobrePilaresTitulo h2{
			font-size: 48px;
			line-height: 125%;
		}
		.sobrePilaresConteudo{
			flex-wrap: wrap;
		}
		.sobrePilaresConteudoBg{
			margin: 0 0 10px;
		}

		


	/*SERVICOS*/
		.servicosBg{
			width: 100%;
			height: 350px;
		}
		.servicosTexto{
			align-items: center;
			align-content: center;
		}
		.servicosTexto p{
			padding: 0 25px;
		}

	/*SERVICOS IMAGEM*/
		.servicoImagemBackground{
			height: 400px;
		}

	/*SERVICOS APRESENTACAO*/
		.servicoApresentacaoConteudo{
			flex-wrap: wrap;
		}
		.servicoApresentacaoConteudoPrincipal{
			margin: 0;
		}
		.servicoApresentacaoDestaque p{
			font-size: 36px;
		}
		.servicoApresentacaoDestaqueTexto{
			padding: 0 20px 0;
		}

		


	/*PORTFOLIO*/
		.portfolioBg{
			width: 100%;
		}

	/*PORTFOLIO IMAGEM*/
		.portfolioInternaImagem{
			width: 100%;
			margin: -225px 0 0;
		}
		.portfolioInternaImagemBackground{
			height: 400px;
		}

	/*PORTFOLIO APRESENTACAO*/
		.portfolioInternaApresentacaoConteudo{
			flex-wrap: wrap;
		}
		.portfolioInternaApresentacaoConteudoPrincipal{
			width: 100%;
			margin: 0;
		}
		.portfolioInternaApresentacaoDestaque p{
			font-size: 36px;
		}
		.portfolioInternaApresentacaoConteudoTexto{
			width: 100%;
			padding: 30px 20px 0;
		}

	/*PORTFOLIO GALERIA*/
		.portfolioInternaGaleriaBg{
			width: 48%;
			height: 200px;
		}



	/*CONTATO APRESENTACAO*/
		.contatoApresentacaoConteudo{
			flex-wrap: wrap;
		}
		.contatoApresentacaoPrincipal{
			margin: 0;
		}
		.contatoApresentacaoDestaque p{
			font-size: 36px;
		}
		
	/*CONTATO IMAGEM*/
		.contatoImagemBackground{
			width: 100%;
			height: 350px;
		}

	/*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;
		}
}