html, body{
	padding:0px;
	margin:0px;
	scroll-behavior: auto !important;
	overflow-x: hidden;
}
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%;
	font-weight: 500;
	color: #555;
}
span{
	font-family: "Roboto", sans-serif;
}
a{
	color: inherit;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.container{
	max-width: 1250px;
	width:96%;
	height:auto;
	position: relative;
	z-index: 2;
	margin:auto;
}

/*HEADER*/
	header{
		width: 100%;
		height: auto;
		position: absolute;
		z-index: 9999;
		background-image:linear-gradient(to bottom, #0006, #0000);
	}
	.header{
		position: fixed;
		background-image:linear-gradient(to bottom, #FFF, #FFF);
	}
	.headerBackground{
		margin: 0;
		padding: 20px 30px 20px 40px;
		border-radius: 0;
		display: flex;
		align-items: center;
	}
	.headerMarca{
		margin: 0 50px 0 0;
		padding: 0 50px 0 0;
		border-right: 1px solid #CCC;
	}
	.headerMarca img{
		height: 40px;
	}
	.headerMarca img:first-of-type{
		display: none;
	}
	.header .headerMarca img:first-of-type{
		display: block;
	}
	.header .headerMarca img:last-of-type{
		display: none;
	}
	.headerConteudo{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.headerMenu{
		width: auto;
	}
	.headerMenu ul{
		display: flex;
		align-items: center;
		list-style: none;
	}
	.headerMenu li{
		font-size: 15px;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 1px;
		margin: 0 0 0 20px;
		color: #FFF;
	}
	.header .headerMenu li{
		color: #666;
	}
	.headerMenu li:hover{
		color: #FC2;
	}
	.header .headerMenu li:hover{
		color: #14B;
	}
	.headerRSocial{
		display: flex;
		margin: 0 25px;
		align-items: center;
	}
	.headerRSocialBg{
		width: 40px;
		height: 40px;
		border-radius: 30px;
		margin: 0 0 0 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #FC2;
		transition: 1s ease;
	}
	.headerRSocialBg:hover{
		transform: scale(1.1);
		background-color: #006;
	}
	.headerRSocialBg img{
		width: 20px;
		opacity: 0.5;
		filter: invert(1);
		transition: 1s ease;
	}
	.headerRSocialBg:hover img{
		opacity: 1;
		filter: invert(0);
	}
	.headerCta{
		width: 200px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 20px;
		border-radius: 50px;
		margin: 0;
		background-color: #14B;
		transition: 1s ease;
	}
	.headerCta:hover{
		background-color: #006;
	}
	.headerCta img{
		width: 20px;
		height: 20px;
		padding: 10px;
		border-radius: 30px;
		margin: 0 10px 0 -15px;
		background-color: #0009;
		transition: 1s ease;
	}
	.headerCta:hover img{
		background-color: #FFF3;
	}
	.headerCta p{
		font-size: 13px;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 1px;
		text-align: center;
		color: #FFF;
	}
	.headerMenuMobile{
		display: none;
	}

/*TITULO*/
	.titulo{
		width: 100%;
		margin: 0 0 50px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.titulo p{
		text-transform: uppercase;
		margin: 0 10px;
		color: #FA0;
	}
	.titulo hr{
		width: 50px;
		margin: 0;
		border: 0;
		border-bottom: dashed 2px #FA0;
		color: #FA0;
	}
	.titulo h2{
		width: 100%;
		margin: 25px 0 0;
		font-size: 50px;
		font-weight: 900;
		line-height: 115%;
		color: #006;
	}

/*CTA*/
	.cta{
		width: 200px;
		height: auto;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 15px 50px;
		border-radius: 50px;
		margin: 0 auto;
		transition: 1s ease;
		border:solid 2px #0003;
		background-image: linear-gradient(to right, #FC2, #FA0);
	}
	.cta:hover{
		filter: brightness(1.1);
		box-shadow: 0 0 10px #0003;
	}
	.cta img{
		width: 25px;
		height: 25px;
		border-radius: 30px;
		margin: 0 10px 0 -15px;
		transition: 1s ease;
	}
	.cta p{
		font-size: 13px;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 1px;
		text-align: center;
		color: #FFF;
	}
	.cta img,
	.cta p{
		filter: invert(1);
		opacity: 0.75;
	}

/*CHAMADA*/
	.chamada{
		width: 100%;
		padding: 100px 0 0;
	}
	.chamadaImagem{
		width: 75%;
	}
	.chamadaImagem img{
		width: 100%;
	}
	.chamadaConteudo{
		width: 100%;
		margin: 0 0 0 50px;
	}
	.chamadaTexto{
		width: 100%;
		margin: -25px 0 0 0;
	}
	.chamadaTexto p{
		font-size: 20px;
		font-weight: 400;
		margin: 0 0 10px;
	}
	.chamada .cta{
		margin: 25px 0 0;
		justify-content: flex-end;
		border-color:#0003;
		background-image: linear-gradient(to right, #FC2, #FA0);
	}
	.chamada .cta img,
	.chamada .cta p{
		filter: invert(1);
		opacity: 0.75;
	}

/*BANNER*/
	.banner{
		width: 100%;
		position: relative;
		background-size: cover;
		background-position: center;
		background-image: url(../img/background07.jpg);
	}
	.bannerBackground{
		padding: 230px 0 100px;
		background-image: linear-gradient(to right, #14B3, #0063);
	}
	.bannerBackground h1{
		font-size: 48px;
		font-weight: 900;
		color: #FFF;
		letter-spacing: 2px;
		line-height: 100%;
		text-transform: uppercase;
	}
	.bannerBackground p{
		font-size: 24px;
		font-weight: 400;
		color: #FC2;
		letter-spacing: 2px;
		text-transform: uppercase;
	}
	.bannerBackgroundEfeito{
		width: 50%;
		height: 100%;
		position: absolute;
		right: 0;
		bottom: 0;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		filter: grayscale(1);
		opacity: 0.25;
	}
	.bannerBackgroundEfeito img{
		width: 150px;
		margin: 25px;
		filter: brightness(10);
	}

/*INICIAL BANNER*/
	.swiper {
		width: 100%;
		height: 750px;
		position: relative;
		overflow: hidden;
	}
	.swiper-wrapper{
		display: flex;
	}
	.swiper-slide {
		flex-shrink: 0;
		width: 100%;
		height: 100%;
	}
	.inicialBanner{
		width: 100%;
		height: 750px;
		background-color: #000;
	}
	.inicialBannerBg{
		width: 100%;
		background-size: cover;
		background-position: center;
	}
	.inicialBannerBackground{
		width: 100%;
		height: 750px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		background-color: #0006;
	}
	.inicialBannerConteudo{
		margin: 150px 0 50px;
	}
	.inicialBannerConteudoTitulo1{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.inicialBannerConteudoTitulo1 p{
		text-align: center;
		text-transform: uppercase;
		font-size: 14px;
		padding: 10px 40px;
		border-radius: 30px;
		font-weight: 500;
		color: #0009;
		background-image: linear-gradient(to right, #FC2, #FA0);
		box-shadow: 0 0 5px #0005;
	}
	.inicialBannerConteudoTitulo2{
		width: 100%;
		margin: -25px 0 25px;
	}
	.inicialBannerConteudoTitulo2 p:first-of-type{
		font-family: Verdana;
		width: 100%;
		font-size: 80px;		
		font-weight: 900;
		text-align: center;
		letter-spacing: 2px;
		line-height: 115%;		
		color: #FC2;
	}
	.inicialBannerConteudoTitulo2 p:first-of-type span{
		font-family: Verdana;
		-webkit-text-stroke-width: 2px; /* largura da borda */
		-webkit-text-stroke-color: #FFF; /* cor da borda */
		color: #0000;
	}
	.inicialBannerConteudoTitulo2 p:last-of-type{
		width: 65%;
		margin: 15px auto 0;
		font-size: 22px;
		font-weight: 300;
		letter-spacing: 1px;
		text-align: center;
		color: #FFF;
		text-shadow: 0 0 5px #0005;
	}
	.inicialBanner .cta{
		border: none;
		background-image: linear-gradient(to right, #14B, #003);
	}
	.inicialBanner .cta img,
	.inicialBanner .cta p{
		filter: invert(0);
		opacity: 1;
	}

	.inicialBannerEfeito{
		position: absolute;
		z-index: 2;
		bottom: 25px;
		right: 25px;
		filter: grayscale(1);
		opacity: 25%;
	}
	.inicialBannerEfeito img{
		filter: brightness(10);
	}

/*INICIAL PROJETOS*/
	.inicialProjetos{
		width: 100%;
		position: relative;
		padding: 75px 0 100px;
		background-attachment: fixed;
		background-repeat: no-repeat;
		background-position: bottom right;
		background-color: #F9F9F9;
		background-image: url(../img/background05.png);
	}
	.inicialProjetos .titulo{
		justify-content: center;
		margin: 0;
	}
	.inicialProjetos .titulo h2{
		width: 100%;
		text-align: center;
		margin: auto;
	}
	.inicialProjetosBg{
		width: 100%;
		height: 650px;
		position: sticky;
		top: 50px;
		border-radius: 20px;
		background-size: cover;
		background-position: center bottom;
		position: relative;
		transform: scale(0.9);
		opacity: 0.5;
		filter: grayscale(1);
		transition: all 0.5s ease-in-out;
	}
	.inicialProjetosBg.ativo {
		opacity: 1;
		transform: scale(1);
		filter: grayscale(0);
	}
	.inicialProjetosBg:nth-child(1) { z-index: 30; }
	.inicialProjetosBg:nth-child(2) { z-index: 20; }
	.inicialProjetosBg:nth-child(3) { z-index: 10; }

	.inicialProjetosConteudo{
		width: 450px;
		padding: 25px;
		max-width: 90%;
		position: absolute;
		bottom: 50px;
		left: 50px;
		display: flex;
		flex-wrap: wrap;
		border-radius: 20px;
		background-color: #006;
		transform: translateY(20px);
		opacity: 0;
		transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
	}
	.inicialProjetosBg.ativo .inicialProjetosConteudo {
		transform: translateY(0);
		opacity: 1;
	}
	.inicialProjetosConteudo p:nth-child(1){
		font-size: 16px;
		width: 50%;
		color: #FFF;
	}
	.inicialProjetosConteudo p:nth-child(2){
		width: 50%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		font-size: 16px;
		font-weight: 400;
		text-align: right;
		color: #FFF;
	}
	.inicialProjetosConteudo img{
		height: 20px;
		margin: 0 5px 0 0;
		filter: brightness(10);
	}
	.inicialProjetosConteudo h3{
		width: 100%;
		margin: 25px 0;
		font-size: 36px;
		font-weight: 700;
		line-height: 125%;
		color: #FC2;
	}
	.inicialProjetosConteudo p:nth-child(4){
		width: 100%;
		font-size: 18px;
		font-weight: 400;
		color: #FFF;
	}

/*INICIAL DEPOIMENTOS*/
	.inicialDepoimento{
		width: 100%;
		padding: 50px 0;
		background-size: 300px;
		background-repeat: no-repeat;
		background-position: 101% center;
		background-image: url(../img/favicon.webp);
	}
	.inicialDepoimento01{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.inicialDepoimentoRating{
		margin: 0 25px 0 0;
	}
	.inicialDepoimentoRating p:nth-child(1){
		font-size: 18px;
		line-height: 100%;
		letter-spacing: 1px;
		text-align: center;
	}
	.inicialDepoimentoRating p:nth-child(2){
		font-size: 30px;
		letter-spacing: -2px;
		color: #FC2;
	}
	.inicialDepoimentoImagem{
		display: flex;
	}
	.inicialDepoimentoImagem img{
		margin: 0 -30px 0 0;
		border-radius: 100px;
		border: 3px solid #FFF;
	}
	.inicialDepoimentoTitulo{
		width: 100%;
		margin: 0 0 0 45px;
	}	
	.inicialDepoimentoTitulo p{
		font-size: 22px;
		font-weight: bold;
		text-transform: uppercase;
		line-height: 100%;
		color: #006;
	}
	.inicialDepoimentoTitulo p span{
		font-size: 20px;
		font-style: italic;
		font-weight: 300;
		text-transform: lowercase;
		color: #888;
	}
	.inicialDepoimentoSlide{
		width: 100%;
		margin: 50px 0 0;
	}
	.inicialDepoimentoSlideBg{
		width: 100%;
	}
	.inicialDepoimentoSlideBg p:nth-child(1){
		width: 75%;
		font-size: 30px;
		font-weight: 300;
		font-style: italic;
	}
	.inicialDepoimentoSlideBg p:nth-child(2){
		margin: 25px 0 0;
		font-size: 18px;
		line-height: 125%;
		color: #006;
	}
	.inicialDepoimentoSlideBg p:nth-child(2) span{
		font-size: 16px;
		font-weight: 400;
		color: #333;
	}

/*INICIAL NUMEROS*/
	.inicialNumeros{
		width: 100%;
		background-color: #EEE;
		padding: 150px 0 0;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 0px;
		background-image: url(../img/background06.png);
	}
	.inicialNumeros .container{
		align-items: flex-end;
	}
	.inicialNumerosBg{
		width: 100%;
		position: relative;
		padding: 0 0 50px 25px;
		border-left: 2px solid #006;
	}
	.inicialNumerosBg:nth-child(2){
		padding: 0 0 100px 15px;
	}
	.inicialNumerosBg:nth-child(4){
		padding: 0 0 75px 15px;
	}
	.inicialNumerosBg p:nth-child(1){
		font-size: 36px;
		font-weight: 900;
		line-height: 115%;
		margin: -70px 0 0 -25px;
		text-transform: uppercase;
		color: #006;
	}
	.inicialNumerosBg p:nth-child(1) span{
		font-size: 48px;		
	}
	.inicialNumerosBg p:nth-child(1) sup{
		padding: 0 5px;
		font-size: 30px;
		color: #FC2;
	}
	.inicialNumerosBg p:nth-child(2){
		margin: 0 5px;
		font-size: 22px;
		line-height: 115%;
		color: #777;
	}
	.inicialNumerosBgEfeito{
		width: 20px;
		height: 20px;
		border-radius: 100px;
		position: absolute;
		top: 0;
		left: -10px;
		background-color: #006;
	}

/*CONTATO*/
	.contato{
		width: 100%;
		padding: 50px 0;
	}
	.contato01{
		width: 100%;
	}
	.contatoTexto{
		width: 100%;
		margin: -25px 0 25px;
	}
	.contatoTexto p{
		font-size: 18px;
		font-weight: 400;	
	}
	.contatoIcones{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.contatoIconesBg{
		width: 50%;
		display: flex;
		align-items: center;
		margin: 0 0 25px;
	}
	.contatoIconesBg img{
		width: 30px;
		height: 30px;
		padding: 20px;
		border-radius: 50px;
		background-image: linear-gradient(to right, #FC2, #FA0);
	}
	.contatoIconesBg p{
		margin: 0 0 0 20px;
		font-size: 20px;
		line-height: 115%;
		color: #006;
	}
	.contatoIconesBg p span{
		font-size: 16px;
		font-weight: 400;	
		line-height: 50%;
		color: #003;
	}	
	.contato02{
		width: 100%;
		margin: 0 50px 0 0;
	}
	.contato02 iframe{
		width: 100%;
		height: 400px;
		margin: 50px 0 0;
		border-radius: 20px;
	}

/*SOBRE01*/
	.sobre01{
		width: 100%;
		padding: 100px 0;
		background-color: #F9F9F9;
	}
	.sobre01Bg{
		width: 100%;
		display: flex;
	}
	.sobre01Imagem{
		width: 25%;
	}
	.sobre01ImagemBg{
		width: 100%;
		height:450px;
		position: relative;
		border-radius: 20px;
		background-size: cover;
		background-position: center;
		background-image: url(../img/institucional01.webp);
	}
	.sobre01ImagemBg img{
		width: 150px;
		position: absolute;
		bottom: -100px;
		right: 0;
	}
	.sobre01Conteudo{
		width: 75%;
		margin: -50px 0 0 50px;
	}
	.sobre01Titulo{
		width: 100%;
		display: flex;
		justify-content: flex-end;
	}
	.sobre01Titulo h1{
		margin: 0 0 0 50px;
		font-size: 52px;
		font-weight: 900;
		line-height: 125%;
		color: #006;
	}
	.sobre01Info{
		width: 100%;
		margin: 25px 0 0;
		display: flex;
	}
	.sobre01InfoImagem{
		height: 550px;
		margin: 0 50px 0 0;
		border-radius: 20px;
		background-color: #000;
	}
	.sobre01InfoImagem video{
		height: 550px;
		border-radius: 20px;
	}
	.sobre01InfoTexto{
		width: 100%;
	}
	.sobre01InfoTextoBg{
		width: 100%;
		margin: 0 0 25px 0;
	}
	.sobre01InfoTextoBg p{
		font-size: 20px;
		font-weight: 400;
	}
	.sobre01InfoDescricao{
		width: 100%;
		display: flex;
	}
	.sobre01InfoDescricaoBg{
		width: 100%;
		margin: 0 25px 0 0;
		padding: 25px;
		border-radius: 20px;
		background-color: #006;
		text-align: right;
	}
	.sobre01InfoDescricaoBg:last-of-type{
		margin: 0;
		padding: 25px;	
		background-color: #029;
	}
	.sobre01InfoDescricaoBg p{
		text-align: left;
	}	
	.sobre01InfoDescricaoBg p:nth-child(3){
		font-size: 48px;
		font-weight: 900;
		text-transform: uppercase;
		color: #FC2;
	}
	.sobre01InfoDescricaoBg p:nth-child(3) sup{
		padding: 0 5px;
		font-size: 30px;
		color: #FFF;
	}
	.sobre01InfoDescricaoBg p:nth-child(4){
		margin: -10px 0 0;
		font-weight: 400;
		color: #FFF;
	}
	.sobre01InfoDescricaoBg img{
		width: 50px;
		margin: 25px 25px 0;
	}
	.sobre01InfoDescricaoBg hr{
		width: 100%;
		margin: -5px 0 0 0;
		border: none;
		border-bottom: 1px solid #FFF;
	}
	.sobreClientes{
		width: 100%;
		position: relative;
		background-size: cover;
		background-image: linear-gradient(to bottom, #F9F9F9, #CCC);
	}	
	.sobreClientesBackground{
		padding: 300px 0 0;
		margin: -250px 0 0;
		background-image: url(../img/background06.png);
	}

/*SOBRE02*/
	.sobre02{
		width: 100%;
		position: relative;
		background-size: cover;
		background-image: url(../img/background03.jpg);
	}
	.sobre02Efeito{
		width: 50%;
		position: absolute;
		bottom: -4px;
		left: 0;
	}
	.sobre02Bg{
		padding: 75px 0;
		background-image: linear-gradient(45deg, #14B9, #0069);
	}
	.sobre02Imagem{
		width: 100%;
		margin: 0 50px 0 0;
		background-size: cover;
	}
	.sobre02ImagemFotoBg{
		width: 65%;
		height: 350px;
		border-radius: 20px;
		border: 5px solid #006;
		background-size: cover;
		background-position: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sobre02ImagemFotoBg:nth-child(1){
		margin: 0 0 0 25%;
	}
	.sobre02ImagemFotoBg:nth-child(2){
		margin: -25% 0 0 0;
	}
	.sobre02ImagemFotoBg img{
		width: 50px;
		filter: invert(1);
	}
	.sobre02Imagem .titulo hr{
		border-color: #FFF;
	}
	.sobre02Imagem .titulo p{
		color: #FFF;
	}
	.sobre02Imagem .titulo h2{
		color: #FC2;
	}
	.sobre02Conteudo{
		width: 100%;
	}
	.sobre02ConteudoTexto{
		width: 100%;
		margin: 50px 0 0;
	}
	.sobre02ConteudoTexto p{
		font-size: 18px;
		color: #FFF;
	}
	.sobre02ConteudoBg{
		display: flex;
		align-items: center;
		position: relative;
		margin: 25px 0 0;
	}
	.sobre02ConteudoBg img{
		width: 50px;
		margin: 0 20px 0 0;
		filter: invert(1);
	}
	.sobre02ConteudoBg p{
		position: relative;
		z-index: 2;
		font-weight: 300;
		color: #FFF;
	}
	.sobre02ConteudoBg p span{
		color: #FC2;
		font-size: 24px;
		font-weight: 500;
	}
	.sobre02ConteudoBg p:last-of-type{
		right: 0;
		z-index: 1;
		font-size: 60px;
		font-weight: 900;
		color: #14B9;
	}
	.sobre02 .cta{
		margin: 25px 75px 0;
		justify-content: flex-end;
		border-color:#0003;
		background-image: linear-gradient(to right, #FC2, #FA0);
	}
	.sobre02 .cta img,
	.sobre02 .cta p{
		filter: invert(1);
		opacity: 0.75;
	}

/*SERVIÇOS*/
	.servicos{
		width: 100%;
		padding: 50px 0;
		background-image: url(../img/background01.png);
		background-size: 50%;
		background-repeat: no-repeat;
		background-position: top left;
		background-color: #EEE;
	}
	.servicos .titulo{
		width: 100%;
		margin: auto;
		text-align: center;
		justify-content: center;
	}
	.servicosConteudo{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		margin: 50px 0;
	}
	.servicosConteudoBg{
		width: 32%;
		margin: 0 2% 2% 0;
		overflow: hidden;
		border-radius: 20px;
		background-image: linear-gradient(to top, #0000, #FFF9, #0000 50%);
	}
	.servicosConteudoBg:nth-child(3n){
		width: 32%;
		margin: 0 0 2% 0;
	}	
	.servicosConteudoBgImagem{
		width: 100%;
		height: 300px;
		border-radius: 20px;
		overflow: hidden;
		transition: 1.0s ease;
	}	
	.servicosConteudoBgImagemBg{
		width: 100%;
		height: 300px;
		border-radius: 20px;
		background-size: cover;
		background-position: center;
		transition: 1.0s ease;
	}
	.servicosConteudoBg:hover .servicosConteudoBgImagemBg{
		transform: scale(1.1);
	}
	.servicosConteudoBg01{
		position: relative;
		height: 45px;
		z-index: 2;
		margin: -40px 30% 0 -5px;
		border-radius: 0 100px 75px 100px;
		border: 5px solid #EEE;
		padding: 10px 30px;
		display: flex;
		align-items: center;
		background-color: #14B;
	}
	.servicosConteudoBg01 h3{
		line-height: 125%;
		font-size: 20px;
		font-weight: bold;
		color: #FFF;
	}
	.servicosConteudoBg02{
		padding: 15px 25px 0;
		min-height: 130px;
	}
	.servicosConteudoBg02 p{
		font-size: 17px;
		font-weight: 400;
	}
	.servicosConteudoBg03{
		display: flex;
		margin: 25px 0 0 25px;
		border-bottom: 2px solid #DDD;
	}
	.servicosConteudoBg03 p{
		font-size: 12px;
		margin: 0 0 -2px -25px;
		padding: 10px 15px;
		border-radius: 100px 100px 0 100px;
		font-weight: 600;
		letter-spacing: 1px;
		text-transform: uppercase;
		background-color: #DDD;
		color: #999;
	}
	.servicosConteudoBg:hover .servicosConteudoBg03{
		border-bottom: 2px solid #FC2;
	}
	.servicosConteudoBg:hover .servicosConteudoBg03 p{
		background-color: #FC2;
		color: #000C;
	}
	.servicosEfeito{
		width: 100%;
		height: 100px;
		position: relative;
		z-index: 2;
		margin: -100px 0 -50px;
		background-image: linear-gradient(to bottom, #EEE, #FFF);
	}

/*SERVIÇO 01*/
	.servico01{
		width: 100%;
		padding: 50px 0;
		background-image: url(../img/background01.png);
		background-attachment: fixed;
		background-size: 50%;
		background-repeat: no-repeat;
		background-position: top; right;
		background-color: #EEE;
	}
	.servico01 .container{
		align-items: center;
	}
	.servico01Imagem{
		width: 100%;
		height: 650px;
		text-align: center;
		overflow: hidden;
		border-radius: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 100px 0 0;		
		background-size: auto 650px;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.servico01ImagemBg{
		width: 100%;
		height: 500px;
		border-radius: 20px;
		border: 5px solid #EEE;
		background-size: cover;
		background-position: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.servico01ImagemBg:nth-child(1){
		z-index: 1;
		margin: 0 -150px -135px 0;
		filter: grayscale(1);
	}
	.servico01ImagemBg:nth-child(2){
		z-index: 2;
		margin: -135px 0 0 0;		
	}
	
	.servico01Conteudo{
		width: 100%;
	}
	.servico01Conteudo .titulo h2{
		font-size: 36px;
	}
	.servico01Conteudo .titulo h2 span{
		color: #14B;
	}
	.servico01Texto{
		margin: -25px 0 0;
	}
	.servico01Texto p{
		width: 100%;		
		font-size: 18px;
		font-weight: 400;
		margin: 0 0 10px;
	}
	.servico01 .cta{
		margin: 25px 0 0;
		justify-content: flex-end;
		border-color:#0003;
		background-image: linear-gradient(to right, #FC2, #FA0);
	}
	.servico01 .cta img,
	.servico01 .cta p{
		filter: invert(1);
		opacity: 0.75;
	}

/*SERVIÇO 02*/
	.servico02{
		width: 100%;
		position: relative;
		background-size: cover;
		background-image: url(../img/background03.jpg);
	}
	.servico02Background{
		padding: 100px 0;
		background-image: linear-gradient(45deg, #0069, #0069);
	}
	.servico02 .titulo{
		margin: 0 0 75px 0;
		justify-content: center;
		align-items: center;
	}
	.servico02 .titulo h2{
		width: auto;
		font-size: 48px;
		margin: -7px 10px 0;
		color: #FC2;
	}
	.servico02Conteudo{
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.servico02Bg{
		width: 100%;
		margin: 0 20px 0 0;
		padding: 25px;
		border-radius: 20px;
		background-image: linear-gradient(to bottom, #14B, #0060);
		transition: 0.5s ease;
	}
	.servico02Bg:hover{
		background-image: linear-gradient(to bottom, #14B, #14B);
		transform: scale(1.1);
	}
	.servico02Bg:last-of-type{
		margin: 0;
	}
	.servico02Bg p:nth-child(1){
		width: 80px;
		height: 80px;
		margin: -50px auto 25px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 100px;
		font-size: 36px;
		font-weight: 900;
		color: #003;
		border: 5px solid #004;
		background-color: #FFF;
		transition: 0.5s ease;
	}
	.servico02Bg:hover p:nth-child(1){	
		color: #FFF;	
		background-color: #006;
	}
	.servico02Bg p:nth-child(2){
		font-size: 18px;
		text-align: center;
		line-height: 125%;
		color: #FFF;
	}

/*PROJETOS*/
	.projetos{
		width: 100%;
		padding: 50px 0;
		background-image: url(../img/background01.png);
		background-size: 50%;
		background-repeat: no-repeat;
		background-position: top left;
		background-color: #EEE;
	}
	.projetos .titulo{
		width: 100%;
		margin: auto;
		text-align: center;
		justify-content: center;
	}
	
	.projetosConteudo{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		padding: 10px 0;
		justify-content: center;
	}
	.projetosConteudoBg{
		width: 31%;
		margin: 1%;
		display: flex;
		position: relative;
		border-radius: 20px;
		overflow: hidden;
		transition: 0.3s ease;
	}
	.projetosConteudoBg:hover{
		transform: scale(1.05);
	}
	.projetosConteudoBgAnimacao{
		width: 100%;
		display: flex;
	}	
	.projetosConteudoTexto{
		width: 100%;
		height: 450px;
		padding: 35px;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: flex-end;
		align-content: flex-end;
		z-index: 2;
		background-image: linear-gradient(to top, #003, #0000 300px);
	}
	.projetosConteudoTexto:hover{		
		background-image: linear-gradient(to top, #003, #0000 200px);
	}
	.projetosConteudoTexto p:nth-child(1){
		font-size: 16px;
		width: 100%;
		color: #FFF;
	}	
	.projetosConteudoTexto h3{
		width: 100%;
		margin: 15px 0 25px;
		font-size: 24px;
		font-weight: 700;
		line-height: 125%;
		color: #FC2;
	}
	.projetosConteudoImagemBg{
		width: 100%;
		height: 100%;
		position: absolute;
		border-radius: 10px;
		overflow: hidden;
		z-index: 1;
		top: 0;
		right: 0;
		background-color: #000;
	}
	.projetosConteudoImagem{
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
	}
	.projetosEfeito{
		width: 100%;
		height: 100px;
		position: relative;
		z-index: 2;
		margin: -100px 0 -50px;
		background-image: linear-gradient(to bottom, #EEE, #FFF);
	}

/*PROJETO 01*/
	.projeto01{
		padding: 50px 0 0;
	}
	.projeto01Background{
		width: 100%;
		height: 600px;
		border-radius: 20px;
		position: relative;
		background-size: cover;
		background-position: center;
	}
	.projeto01Bg{
		padding: 25px;
		position: absolute;
		display: flex;
		align-items: center;
		bottom: 5px;
		left: 5px;
		border-radius: 0 20px 0 20px;
		background-color: #FFFC;
	}
	.projeto01Bg:hover{
		background-color: #FC2;
	}
	.projeto01Bg img{
		width: 20px;
		margin: 0 5px 0 0;
		opacity: 0.5;
	}
	.projeto01Bg p{
		font-weight: bold;
		font-size: 14px;
		text-transform: uppercase;
		color: #003;
	}

/*PROJETO 02*/
	.projeto02{
		width: 100%;
		margin: 25px 0;
	}
	.projeto02Bg{
		width: 100%;
		display: flex;
		align-items: center;
	}
	.projeto02BgImagem{
		width: 30px;
		height: 30px;
		padding: 15px;
		border-radius: 100px;
		border: 1px solid #006;
	}
	.projeto02Bg img{
		width: 30px;
		height: 30px;
		filter: grayscale(1);
	}
	.projeto02Bg p{
		margin: 0 10px;
		font-size: 14px;
		text-transform: uppercase;
		line-height: 150%;
		font-weight: 400;
	}
	.projeto02Bg p span{
		font-size: 24px;
		text-transform: initial;
		font-weight: bold;
		color: #006;
	}

/*PROJETO 03*/
	.projeto03{
		width: 100%;
		padding: 50px 0;
		background-image: url(../img/background01.png);
		background-attachment: fixed;
		background-size: 50%;
		background-repeat: no-repeat;
		background-position: bottom; right;
		background-color: #FFF;
	}
	.projeto03 .container{
		align-items: center;
	}
	.projeto03Imagem{
		width: 100%;
		height: 650px;
		text-align: center;
		overflow: hidden;
		border-radius: 20px;
		margin: 0 100px 0 0;		
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.projeto03Imagem img{
		height: 100%;
	}
	.projeto03Conteudo{
		width: 100%;
	}
	.projeto03Conteudo .titulo h2{
		font-size: 48px;
	}
	.projeto03Texto{
		margin: -25px 0 0;
	}
	.projeto03Texto p{
		width: 100%;		
		font-size: 20px;
		font-weight: 400;
		margin: 0 0 15px;
	}
	.projeto03 .cta{
		margin: 25px 0 0;
		justify-content: flex-end;
		border-color:#0003;
		background-image: linear-gradient(to right, #FC2, #FA0);
	}
	.projeto03 .cta img,
	.projeto03 .cta p{
		filter: invert(1);
		opacity: 0.75;
	}

/*PROJETO 04*/
	.projeto04{
		width: 100%;
		margin: 0 0 50px;
	}
	.projeto04Background{
		width: 100%;
		padding: 25px;
		display: flex;
		border-radius: 100px;
		justify-content: space-between;
		background-image: linear-gradient(to right, #EEE, #CCC);
	}
	.projeto04Bg p{
		font-size: 14px;
		text-transform: uppercase;
		font-weight: 900;
	}
	.projeto04Bg p:hover{
		color: #006;
	}

/*TEXTO*/
	.texto{
		width: 100%;
		margin: 50px 0 0;
	}
	.textoSlide01{
		position: relative;
		overflow: hidden;
		width: 100%;
		white-space: nowrap;
	}
	.textoSlide01 p{
		font-size: 48px;
		text-align: center;
		color: #006;
		display: inline-block;
		font-weight: 900;
		animation: inicialTextoSlide01 25s linear infinite;
		text-transform: uppercase;
		color: #006;
	}
	.textoSlide01 span:nth-child(2n){
		font-weight: 100;
	}
	.textoSlide01 p span{
		color: #999;
	}
	.textoSlide02{
		position: relative;
		overflow: hidden;
		width: 100%;
		white-space: nowrap;
		background-image: linear-gradient(to right, #FC2, #FA0);
	}
	.textoSlide02 p{
		padding: 10px 0;
		font-size: 21px;
		text-align: center;
		display: inline-block;
		animation: inicialTextoSlide02 25s linear infinite;
		color: #003;
	}
	@keyframes inicialTextoSlide01 {
	  0%   { transform: translateX(0); }
	  100% { transform: translateX(-100%); }
	}
	@keyframes inicialTextoSlide02 {
	  0%   { transform: translateX(-50%); }
	  100% { transform: translateX(0); }
	}

/*POPUP*/
	.popUp{
		width: 100vw;
		height: 100vh;
		position: fixed;
		z-index: 99999;
		top: 0;
		right: 0;
		display: flex;
		align-items: center;
		align-content: center;
		justify-content: center;
		background-color: #0009;
	}
	.popUp .container{
		align-items: center;
		align-content: center;
		justify-content: center;
	}
	.popUpFechar{
		padding: 10px;
		height: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		justify-self: flex-end;
		background-color: #FFF;
	}
	.popUpFechar p{
		font-size: 14px;
		font-weight: 900;
		color: #555;
	}
	.popUp video{
		width: 100%;
		border-radius: 20px 0 20px 20px;
		max-width: 800px;
		max-height: 600px;
	} 

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

/*FOOTER*/
	footer{
		width: 100%;
		padding: 50px 0 25px;
		background-image: linear-gradient(to right, #006, #003);
	}
	.footerMarca{
		width: 30%;
		margin: 0 25px 0 0;
		padding: 0 25px 0 0;
	}
	.footerMarca img{
		width: 100%;
	}
	.footerBg{
		width: 100%;
		display: flex;
		justify-content: flex-end;
		margin: 0 25px 0 0;
		padding: 0 25px 0 0;
	}
	.footerBgIconesBg{
		display: flex;
		align-items: center;
		margin: 0 25px 0 0 ;
	}
	.footerBgIconesBg img{
		width: 20px;
		height: 20px;
		padding: 10px;
		border-radius: 50px;
		background-image: linear-gradient(to right, #FC2, #FA0);
	}
	.footerBgIconesBg p{
		margin: 0 0 0 20px;
		font-size: 12px;
		letter-spacing: 1px;
		text-transform: uppercase;
		line-height: 150%;
		color: #FC2;
	}
	.footerBgIconesBg p span{
		font-size: 16px;
		font-weight: 700;
		letter-spacing: 0px;
		color: #FFF;
	}
	.footerCopyright{
		width: 100%;
		margin: 50px 0 0;
		text-align: center;
	}
	.footerCopyright p{
		text-align: center;
		font-size: 12px;
		color: #14B;
	}

/*COOKIES*/
	.cookies{
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		z-index: 9999;
		background-color: #0009;
	}
	.cookies .container{
		display: flex;
		justify-content: flex-end;
	}
	.cookiesAviso{
		width: 100%;
		max-width: 300px;
		position: fixed;
		bottom: 0px;
		padding: 20px 0;
		border-radius: 10px 10px 0 0;
		background-color: #FFF;
	}
	.cookiesTexto{
		width: 100%;
		margin: 0 0 20px;
	}
	.cookiesTexto p{
		font-size: 16px;
		text-align: center;
		line-height: 125%;
		margin: 0 10px;
		color: #999;
	}
	.cookiesBotoes{
		width: 100%;
		display: flex;
		justify-content: center;
		margin: 0 0 10px;
	}
	.cookiesBotoes p{
		font-size: 12px;
		font-weight: bold;
		text-align: center;
		text-transform: uppercase;
		margin: 0 10px;
		color: #555;
	}
	.cookiesBotoes p:nth-child(1){
		padding: 10px 20px;
		border-radius: 100px;
		border: 1px solid #555;
		cursor: pointer;
	}
	.cookiesBotoes p:nth-child(1):hover{
		background-color: #555;
		color: #FFF;
	}
	.cookiesBotoes p:nth-child(2){
		font-weight: bold;
		padding: 10px 30px;
		border-radius: 100px;
		border: 1px solid #CCC;
		cursor: pointer;
		color: #FFF;
		background-color: #296;
	}
	.cookiesBotoes p:nth-child(2):hover{
		background-color: #555;
	}
	.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){
	.container{
		width:90%;
		max-width: 768px;
	}
	.flex{
		flex-wrap: wrap;
	}

	/*HEADER*/
		header{
			width: 100%;
			height: auto;
			position: fixed;
			z-index: 9999;
			background-image: none;
			background-color: #FFF;

		}	
		.headerBackground{
			margin: 0;
			padding: 10px;
		}
		.header .headerBackground{
			margin: 0;
			padding: 10px;
		}
		.headerMarca{
			margin: 0 15px 0 -15px;
			padding: 0 15px 0 0;
		}
		.headerMarca img{
			height: 30px;
		}
		.headerMarca img:first-of-type{
			display: block;
		}
		.header .headerMarca img:first-of-type{
			display: block;
		}
		.headerMarca img:last-of-type{
			display: none;
		}
		.header .headerMarca img:last-of-type{
			display: none;
		}
		.headerMenu{
			position: fixed;
			top: 55px;
			bottom: 0;
			left: 0;
			right: 0;
			height: 100%;
			background-image: linear-gradient(to right, #14B, #006);
		}
		.headerMenu ul{
			flex-wrap: wrap;
			padding: 50px 0;
		}
		.headerMenu li{
			width: 100%;
			text-align: center;
			font-size: 20px;
			font-weight: 500;
			text-transform: uppercase;
			letter-spacing: 1px;
			margin: 10px;
			color: #FFF;
		}
		.headerMenu li:hover{
			color: #14B;
		}
		.headerRSocial{
			margin: 0 15px;
		}
		.headerRSocialBg{
			width: 35px;
			height: 35px;
			border-radius: 30px;
		}
		.headerRSocialBg img{
			width: 15px;
		}
		.headerCta{
			display: none;
		}
		.headerMenuMobile{
			display: block;
			width: 35px;
			height: 35px;
			border-radius: 30px;
			background-color: #14B;
			display: flex;
			justify-content: center;
			align-items: center;
			color: #FFF;
		}
		.headerMenuMobile p{
			font-size: 20px;
			margin: -2px 0 0 -1px;
			color: #FFF;
		}

	/*TITULO*/
		.titulo h2{
			margin: 15px 0 0;
			font-size: 36px;
			text-align: center;
		}
		.titulo br{
			display: none;
		}

	/*CTA*/
		.cta{
			width: auto;
			margin: auto;
			padding: 15px 0;

			text-align: center;
			justify-content: center;
		}
		.cta img{
			width: 25px;
			height: 25px;
			border-radius: 30px;
			margin: 0 5px 0 0;
			transition: 1s ease;
		}

	/*CHAMADA*/
		.chamada{
			padding: 50px 0 0;
		}
		.chamadaImagem{
			width: 100%;
			text-align: center;
		}
		.chamadaImagem img{
			width: 75%;
		}
		.chamadaConteudo{
			margin: 0;
		}
		.chamadaTexto p{
			text-align: center;
		}
		.chamada .cta{
			justify-content: center;
		}

	/*BANNER*/
		.bannerBackground{
			padding: 100px 0 75px;
		}
		.bannerBackground h1{
			font-size: 36px;
			text-align: center;
			line-height: 125%;
		}
		.bannerBackground p{
			text-align: center;
		}	
		.bannerBackgroundEfeito img{
			margin: 15px;
			opacity: 0.25;
		}

	/*INICIAL BANNER*/
		.swiper {
			height: 750px;
		}
		.inicialBanner{
			height: 750px;
		}
		.inicialBannerBackground{
			height: 750px;
		}
		.inicialBannerConteudo{
			margin: 100px 0 50px;
		}
		.inicialBannerConteudoTitulo1{
			display: none;
		}
		.inicialBannerConteudoTitulo2 p:first-of-type{
			font-size: 44px;
			letter-spacing: 1px;
		}
		.inicialBannerConteudoTitulo2 p:first-of-type span{
			-webkit-text-stroke-width: 1px; /* largura da borda */
		}
		.inicialBannerConteudoTitulo2 p:last-of-type {
		    width: 100%;
		}
		.inicialBannerEfeito{
			display: none;
		}

	/*INICIAL PROJETOS*/
		.inicialProjetosBg{
			height: 650px;
		}
		.inicialProjetosConteudo{
			width: 80%;
			padding: 5%;
			max-width: 90%;
			bottom: 5%;
			left: 5%;
		}
		.inicialProjetosConteudo p:nth-child(1){
			width: 100%;
		}
		.inicialProjetosConteudo p:nth-child(2){
			display: none;
		}
		.inicialProjetosConteudo h3{
			margin: 25px 0;
			font-size: 30px;
		}

	/*INICIAL DEPOIMENTOS*/	
		.inicialDepoimento{
			background-image: none;
		}
		.inicialDepoimento01{
			flex-wrap: wrap;
			justify-content: center;
			background-image: none;
		}
		.inicialDepoimentoRating{
			width: 100%;
			margin: 0;
		}
		.inicialDepoimentoRating p:nth-child(2){
			text-align: center;
		}
		.inicialDepoimentoImagem{
			justify-content: center;
			margin: 10px 0;
		}
		.inicialDepoimentoImagem img{
			margin: 0 -15px;
		}
		.inicialDepoimentoTitulo{
			margin: 0;
		}	
		.inicialDepoimentoTitulo p{
			text-align: center;
		}
		.inicialDepoimentoSlideBg p:nth-child(1){
			width: 100%;
			font-size: 22px;
		}

	/*INICIAL NUMEROS*/
		.inicialNumeros{
			padding: 50px 0 0;
		}
		.inicialNumerosBg{
			width: 50%;
			margin: auto;
			padding: 10px 0;
			text-align: center;
			border-left: 0px solid #0000;
		}
		.inicialNumerosBg:nth-child(2){
			padding: 0;
		}
		.inicialNumerosBg:nth-child(4){
			padding: 0;
		}
		.inicialNumerosBg p:nth-child(1){
			font-size: 30px;
			margin: 0;
		}
		.inicialNumerosBg p:nth-child(1) span{
			font-size: 48px;		
		}
		.inicialNumerosBg p:nth-child(1) sup{
			padding: 0 5px;
			font-size: 30px;
			color: #FC2;
		}
		.inicialNumerosBg p:nth-child(2){
			margin: 0 5px;
			font-size: 22px;
			line-height: 115%;
			color: #777;
		}
		.inicialNumerosBgEfeito{
			display: none;
		}

	/*CONTATO*/	
		.contato01{
			width: 100%;
		}	
		.contatoIconesBg{
			width: 100%;
			margin: 0 0 15px;
		}
		.contatoIconesBg img{
			width: 25px;
			height: 25px;
			padding: 15px;
		}
		.contatoIconesBg p{
			font-size: 18px;
		}
		.contatoIconesBg p span{
			font-weight: bold;
		}
		.contato02{
			margin: 0;
		}
		.contato02 iframe{
			height: 300px;
		}

	/*SOBRE01*/
		.sobre01Bg{
			flex-wrap: wrap;
		}
		.sobre01Imagem{
			display: none;
		}
		.sobre01Conteudo{
			width: 100%;
			margin: 0px;
			flex-wrap: wrap;
		}
		.sobre01Titulo h1{
			margin: -50px 0 0;
			font-size: 30px;
			text-align: center;
		}	
		.sobre01Info{
			flex-wrap: wrap;
			justify-content: center;
		}	
		.sobre01InfoImagem{
			height: auto;
			display: flex;
			margin: 0;
			justify-content: center;
		}
		.sobre01InfoImagem video{
			max-width: 300px;
			max-margin: auto;
			height: auto;
		}
		.sobre01InfoTexto{
			margin: 25px 0 0;
		}
		.sobre01InfoTextoBg p{
			font-size: 18px;
		}

	/*SOBRE02*/	
		.sobre02 .titulo p,
		.sobre02 .titulo hr{
			display: none;
		}
		.sobre02Efeito{
			display: none;
		}
		.sobre02Imagem{
			margin: 0;
		}
		.sobre02ImagemFotoBg{
			width: 75%;
			height: 250px;
		}
		.sobre02ConteudoTexto{
			margin: 50px 0;
		}
		.sobre02ConteudoBg p span{
			font-size: 22px;
		}
		.sobre02 .cta{
			margin: 25px 0 0;
			justify-content: center;
		}
		.sobre02 .cta img,
		.sobre02 .cta p{
			filter: invert(1);
			opacity: 0.75;
		}

	/*SERVIÇOS*/
		.servicosConteudoBg{
			width: 100%;
			margin: 10px;
		}
		.servicosConteudoBg:nth-child(3n){
			width: 100%;
			margin: 10px;
		}

	/*SERVIÇO 01*/
		.servicosConteudoBg01{
			margin: -40px 20% 0 -5px;
		}
		.servicosConteudoBg01 h3{
			font-size: 18px;
		}
		.servico01Imagem{
			height: 350px;
			margin: 0;		
		}
		.servico01Conteudo{
			width: 100%;
			margin: 25px 0 0;
		}
		.servico01Conteudo .titulo p,
		.servico01Conteudo .titulo hr{
			display: none;
		}
		.servico01Conteudo .titulo h2{
			font-size: 36px;
			text-align: left;
		}
		.servico01 .cta{
			justify-content: center;
		}
		.servico02 .titulo hr{
			display: none;
		}
		.servico02Conteudo{
			flex-wrap: wrap;
		}
		.servico02Bg{
			margin: 0 0 50px;
		}

	/*SERVIÇO 01*/
		.servico01{
			width: 100%;
			padding: 50px 0;
			background-image: url(../img/background01.png);
			background-attachment: fixed;
			background-size: 50%;
			background-repeat: no-repeat;
			background-position: top; right;
			background-color: #EEE;
		}
		.servico01 .container{
			align-items: center;
		}
		.servico01Imagem{
			width: 100%;
			height: 650px;
			text-align: center;
			overflow: hidden;
			border-radius: 20px;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 100px 0 0;		
			background-size: auto 650px;
			background-repeat: no-repeat;
			background-position: center center;
		}
		.servico01ImagemBg{
			width: 100%;
			height: 500px;
			border-radius: 20px;
			border: 5px solid #EEE;
			background-size: cover;
			background-position: center;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		.servico01ImagemBg:nth-child(1){
			z-index: 1;
			margin: 0 -150px -135px 0;
			filter: grayscale(1);
		}
		.servico01ImagemBg:nth-child(2){
			z-index: 2;
			margin: -135px 0 0 0;		
		}
		
		.servico01Conteudo{
			width: 100%;
		}
		.servico01Conteudo .titulo h2{
			font-size: 36px;
		}
		.servico01Conteudo .titulo h2 span{
			color: #14B;
		}
		.servico01Texto{
			margin: -25px 0 0;
		}
		.servico01Texto p{
			width: 100%;		
			font-size: 18px;
			font-weight: 400;
			margin: 0 0 10px;
		}
		.servico01 .cta{
			margin: 25px 0 0;
			justify-content: flex-end;
			border-color:#0003;
			background-image: linear-gradient(to right, #FC2, #FA0);
		}
		.servico01 .cta img,
		.servico01 .cta p{
			filter: invert(1);
			opacity: 0.75;
		}

	/*PROJETOS*/
		.projetosConteudoBg{
			width: 100%;
			margin: 10px;
		}
		.projetosConteudoTexto{
			height: 400px;
			padding: 35px;
		}

	/*PROJETO*/	
		.projeto01Background{
			height: 400px;
		}
		.projeto02Bg{
			width: 50%;
			flex-wrap: wrap;
			justify-content: center;
			margin: 0 0 20px;
		}
		.projeto02Bg p{
			width: 100%;
			text-align: center;
			margin: 5px;
		}
		.projeto02Bg p span{
			font-size: 22px;
		}	
		.projeto03Imagem{
			width: 100%;
			height: 350px;
			margin: 0 0 50px;
		}
		.projeto03 .cta{
			margin: 25px 0 0;
			justify-content: center;
			border-color:#0003;
			background-image: linear-gradient(to right, #FC2, #FA0);
		}
		.projeto04{
			margin: 25px 0 50px;
		}

	/*TEXTO*/
		.textoSlide01 p{
			font-size: 36px;
		}

	/*FOOTER*/	
		.footerMarca{
			width: 100%;
			margin: 0;
			padding: 0;
			text-align: center;
		}
		.footerMarca img{
			width: 50%;
		}
		.footerBg{
			display: none;
		}

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

}