@font-face {
    font-family: 'Calibri';
    src: url('font/calibri.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

html, body{
	padding:0px;
	margin:0px;
	overflow-x: hidden;
	font-family: 'Roboto', sans-serif;
	cursor: url('../img/cursor.png'), auto;
}

a, ul, li, p, h1, h2, h3, h4, h5, h6, button, input, textarea{	
	text-decoration:none;
	margin: 0px;
	padding: 0px;
	line-height: 125%;
}
p{
	color: #345;
}
a{
	color: inherit;
}
*{
	transition: 0.3s ease;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.container{
	max-width: 1300px;
	width:96%;
	height:auto;
	position: relative;
	z-index: 2;
	margin:auto;
}

/*HEADER*/
	header{
		width: 100%;
		padding: 0 0 0 0;
		position: fixed;
		top: 0;
		z-index: 99999;
		background-color: #FFF;
	}
	header .container{
		padding: 20px 0;
		align-items: center;
	}
	.headerMarca{
		margin: 0 50px 0 0;
	}
	.headerMarca img{
		height: 60px;
	}
	.headerConteudo{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.headerMenuMobile{
		display: none;
	}
	.headerMenu{
		margin: 0 25px 0 0;
	}
	.headerMenu ul{
		display: flex;
		justify-content: flex-end;
		list-style: none;
	}
	.headerMenu li{
		position: relative;
		padding: 5px 0;
		margin: 0 10px;
		font-size: 16px;
		font-weight: 400;
		text-transform: uppercase;
		border-top: 1px solid #FFF;
		border-bottom: 1px solid #FFF;
	}
	.headerMenu li:nth-of-type(2n){
		margin: 0;
		opacity: 0.3;
	}
	.headerMenu li:hover{
		border-top: 1px solid #09D;
		border-bottom: 1px solid #E33;
	}
	.headerMenu li:nth-of-type(2n):hover{
		border-top: 1px solid #FFF;
		border-bottom: 1px solid #FFF;
	}
	.headerMenu ul ul{
		display: none;
	}
	.headerMenu ul li:hover ul{
		position: absolute;
		width: 260px;
		padding: 15px 25px;
		display: block;
		justify-content: flex-end;
		list-style: none;
		border-radius: 5px;
		border: 1px solid #CCC;
		background-color: #F9F9F9;
	}
	.headerMenu ul ul li{
		position: relative;
		padding: 10px 0;
		margin: 0;
		font-size: 16px;
		font-weight: 400;
		text-transform: none;
		border: none;
		border-bottom: 1px solid #999;
		white-space: nowrap;
	}	
	.headerMenu ul ul li:hover{
		border: none;
		border-bottom: 1px solid #999;
		color: #09D;
	}
	.headerMenu ul ul li:nth-of-type(2n){
		opacity: 1;
		border: none;
		border-bottom: 1px solid #999;
	}
	.headerMenu ul ul li:nth-of-type(2n):hover{
		border: none;
		border: none;
		border-bottom: 1px solid #999;
	}
	.headerMenu ul ul li:last-of-type{
		border-bottom: none;
	}
	.headerMenu ul ul li:last-of-type:hover{
		border-bottom: none;
	}
	.headerCta{
		padding: 15px 30px;
		border-radius: 10px;
		border: 2px solid #E33;
		background-color: #FFF;
	}
	@keyframes headerCta{
		0%{
			transform: scale(1.05);
		}
		50%{
			transform: scale(1.0);
		}
		100%{
			transform: scale(1.05);
		}
	}
	.headerCta:hover{
		background-color: #E33;
	}
	.headerCta p{
		font-size: 14px;
		font-weight: bold;
		text-transform: uppercase;
		letter-spacing: 2px;
		color: #E33;
	}
	.headerCta:hover p{
		color: #FFF;
	}
	.headerEfeito{
		width: 100%;
		height: 2px;
		background-image: linear-gradient(to right, #09D 50%, #E33 50%);
	}

/*CTA*/
	.cta01{
		padding: 15px 30px;
		margin: 0 25px 0 0;
		border-radius: 10px;
		border: 1px solid #09D;
		background-image: linear-gradient(-225deg, #09D, #09D 80%);
	}
	.cta01:hover{
		filter: brightness(1.3);
		transform: scale(1.05);
		box-shadow: 0 0 20px #345;
	}	
	.cta02{
		padding: 15px 30px;
		border-radius: 10px;
		border: 1px solid #E33;
		background-image: linear-gradient(-225deg, #FFF, #FFF 80%);
	}
	.cta02:hover{
		filter: brightness(1.2);
		transform: scale(1.05);
		box-shadow: 0 0 20px #E33;
	}
	.cta01 p,
	.cta02 p{
		font-size: 15px;
		font-weight: 500;
		letter-spacing: 1px;
		text-transform: uppercase;
		color: #FFF;
	}
	.cta02 p{
		font-size: 17px;
		font-weight: bold;
		color: #E33;
	}
	.cta02 p span{
		font-weight: 400;
	}
	.cta01,
	.cta02{
		animation: cta 2s ease infinite;
	}
	.cta01:hover,
	.cta02:hover{
		animation: none;
	}
	.cta02:hover{
		background-image: linear-gradient(-225deg, #E33, #E33 80%);
	}
	.cta02:hover p{
		color: #FFF;
	}
	@keyframes cta{
		0%{
			transform: scale(1.05);
		}
		50%{
			transform: scale(1.0);
		}
		100%{
			transform: scale(1.05);
		}
	}

/*TITULO*/
	.titulo01{
		width: 100%;
	}
	.titulo01 h2{
		margin: 0 0 10px;
		text-align: center;
		font-size: 48px;
		color: #345;
	}
	.titulo01 p{
		text-align: center;
		font-size: 18px;
	}

/*BANNER*/
	.banner{
		width: 100%;
		margin: 100px 0 0;
		background-size: cover;
		background-position: center;
	}
	.bannerBackground{
		padding: 50px 0;
		background-image: linear-gradient(-225deg, #E33E, #345E 50%);
	}
	.bannerBackground h1{
		font-size: 48px;
		font-weight: 100;
		color: #EEE;
	}

/*INICIAL BANNER*/
	.inicialBanner{
		width: 100%;
		margin: 100px 0 0;
		position: relative;
		background-size: cover;
		background-position: center;
	}
	.inicialBannerVideo{
		width: 100%;
		height: 600px;
		padding: 0 0 75px;
		position: absolute;
		overflow: hidden;
		opacity: 0.5;
	}
	.inicialBannerVideo video{
		width: 100%;
	}	
	.inicialBannerBackground{
		padding: 0 0 175px;
		height: 600px;
		display: flex;
		align-items: center;
		background-color: #FFF;
	}
	.inicialBannerTitulo{
		width: 100%;
		max-width: 700px;
		margin: 25px 0;
	}
	.inicialBannerTitulo p:first-of-type{
		max-width: 350px;
		margin: 0 0 20px;
		padding: 5px 0;
		text-transform: uppercase;
		font-size: 16px;
		line-height: 125%;
		color: #785;
		filter: brightness(1.2);
		background-image: radial-gradient(#FFF, #0000);
	}
	.inicialBannerTitulo h1{
		font-size: 55px;
		line-height: 115%;
		color: #345;
	}
	.inicialBannerTitulo h1 span{
		color: #09D;
	}
	.inicialBannerTitulo p:last-of-type{
		margin: 35px 0;
		font-size: 20px;
		line-height: 125%;
		color: #345;
	}
	.inicialBannerCta{
		width: 50%;
		display: flex;
	}
	.inicialBannerEfeito{
		width: 300px;
		height: 707px;
		position: absolute;
		top: -32px;
		left: 0px;
		background-image: linear-gradient(to right, #09D6, #0000);
	}
	.inicialBannerEfeito img{
		width: 300px;
		animation: inicialBannerEfeito 5s ease infinite;
	}
	@keyframes inicialBannerEfeito{
		0%{
			transform: scale(1.1);
		}
		50%{
			transform: scale(0.9);
		}
		100%{
			transform: scale(1.1);
		}
	}
	.inicialBannerMarca{
		width: 100%;
		height: 600px;
		position: absolute;
		top: 0;
		right: 0;
	}
	.inicialBannerMarca img{
		width: 550px;
		position: absolute;
		opacity: 0.5;
		top: 215px;
		right: -250px;
		transform: rotate(-90deg);
		filter: drop-shadow(0 0 10px #F00);
	}

/*INICIAL DESTAQUE*/
	.inicialDestaque{
		width: 100%;
		height: 150px;
		position: relative;
		display: flex;
		align-items: center;
		z-index: 999;
		margin: -250px 0 0;
		background-image: linear-gradient(to bottom, #0000, #FFF 70%);
	}
	.inicialDestaqueBg{
		width: 100%;
		padding: 50px 0 0;
		display: flex;
		align-items: center;
	}
	.inicialDestaqueImg{
		width: 40px;
		height: 80px;
		border-radius: 30px 30px 0 0;
		background-image: linear-gradient(to bottom, #FFF, #FFF);
		margin: 20px 10px 0 0;
	}
	.inicialDestaqueImg img{
		width: 20px;
		margin: 15px 10px;
	}
	.inicialDestaqueTexto{
		width: 100%;
	}
	.inicialDestaqueTexto p:first-of-type{
		font-weight: bold;
		color: #09D;
	}
	.inicialDestaqueTexto p:last-of-type{
		color: #785;
		filter: brightness(1.2);
	}

/*INICIAL SERVICO*/
	.inicialServicos{
		width: 100%;
		padding: 75px 0;
	}
	.inicialServicos .container{
		align-items: center;
	}
	.inicialServicosTitulo{
		width: 100%;
		margin: 0 0 25px 0;
	}	
	.inicialServicosConteudo{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.inicialServicosConteudoBg{
		width: 31.33%;
		margin: 1%;
		position: relative;
		overflow: hidden;
		border-radius: 10px;
		background-position: center;
		background-size: cover;
		box-shadow: 0 0 10px #0002;
	}
	.inicialServicosConteudoBg:hover{
		box-shadow: 0 0 30px #0003;
		transform: scale(1.05) translateY(-15px);
	}		
	.inicialServicosConteudoBackground{
		height: 100%;
		background-color: #09D1;
		background-image: linear-gradient(to bottom, #FFFC, #FFFC);
		padding: 75px 50px 50px 50px;
	}
	.inicialServicosConteudoBackground:hover{
		background-image: linear-gradient(to bottom, #FFFB, #FFFB);
	}
	.inicialServicosConteudoBg img{
		width: 20px;
		height: 20px;
		padding: 15px;
		border-radius: 0 0 20px;
		background-color: #FFF;
		position: absolute;
		top: 0;
		left: 0;
		margin: 0 0 10px;
	}
	.inicialServicosConteudoBg:hover img{
		filter: grayscale(0);
	}
	.inicialServicosConteudoBg h3{
		font-size: 24px;
		color: #345;
	}
	.inicialServicosConteudoBg p{
		margin: 15px 0 25px;
		font-size: 16px;
		color: #345;
	}
	.inicialServicosConteudoBg a{
		font-size: 16px;
		font-weight: bold;
		display: flex;
		align-items: center;
		color: #09D;
	}
	.inicialServicosConteudoBg a span{
		padding: 2px 5px 0;
	}
	.inicialServicosConteudoBg:hover a span{
		animation: inicialServicosConteudoBg 1s ease infinite;
	}
	@keyframes inicialServicosConteudoBg{
		0%{
			padding: 2px 10px 0;
		}
		50%{
			padding: 2px 5px 0;
		}
		100%{
			padding: 2px 10px 0;
		}
	}
	.inicialServicosCta{
		display: flex;
		justify-content: center;
		margin: 25px 0 0;
	}

/*INICIAL SOBRE*/
	.inicialSobre{
		width: 100%;
		background-color: #EEE;
		padding: 75px 0;
	}
	.inicialSobreVideo{
		width: 75%;
		border-radius: 20px;
		display: flex;
		justify-content: center;
		overflow: hidden;
		position: relative;
		margin: 0 75px 0 0;
	}
	.inicialSobreVideo video{
		width: auto;
		height: 100%;
	}
	.inicialSobreVideoTexto{
		position: absolute;
		right: -25px;
		top: 275px;
		padding: 15px 25px;
		border-radius: 10px;
		background-color: #EEE;
		box-shadow: 0 0 20px #0005;
	}
	.inicialSobreVideoTexto p:first-of-type{
		font-size: 60px;
		font-weight: bold;
		color: #345;
	}
	.inicialSobreVideoTexto p:last-of-type{
		margin: -5px 0 0;
		font-size: 18px;
		text-transform: uppercase;
		font-weight: bold;
		color: #3459;
	}
	.inicialSobreConteudo{
		width: 100%;
		padding: 50px 0;
		position: relative;
	}	
	.inicialSobreConteudoEfeito{
		width: 100%;
		position: absolute;
		top: 50px;
		left: -100px;
	}
	.inicialSobreConteudoEfeito img{
		width: 300px;
		height: 200px;
		animation: inicialFuncionamentoEfeito 5s ease infinite;
	}
	@keyframes inicialFuncionamentoEfeito{
		0%{
			transform: scale(1.2) rotate(-45deg);
		}
		50%{
			transform: scale(1) rotate(-45deg);
		}
		100%{
			transform: scale(1.2) rotate(-45deg);
		}
	}
	.inicialSobreConteudo .titulo01{
		margin: 25px 0 50px;
		position: relative;
		z-index: 2;
	}
	.inicialSobreConteudo .titulo01 h2{
		margin: 0 0 15px;
		text-align: left;
	}
	.inicialSobreConteudo .titulo01 p{
		text-align: left;
	}
	.inicialSobreConteudoItens{
		width: 100%;
		display: flex;
		margin: 10px 0;
		align-items: center;
	}
	.inicialSobreConteudoItensImagem{
		min-width: 50px;
		min-height: 50px;
		margin: 0 10px 0 0;
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: #E33;
	}
	.inicialSobreConteudoItens:hover .inicialSobreConteudoItensImagem{
		background-color: #09D;
	}
	.inicialSobreConteudoItensImagem img{
		width: 30px;
	}
	.inicialSobreConteudoItensTexto{
		width: 100%;
	}
	.inicialSobreConteudoItensTexto p:first-of-type{
		font-size: 18px;
		font-weight: bold;
		color: #E33;
	}
	.inicialSobreConteudoCta{
		margin: 50px 0 0;
		display: flex;
	}
	.inicialSobreImagem{
		width: 100%;
		height: 100%;
		z-index: 0;
		position: absolute;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		pointer-events: none; 
	}
	.inicialSobreImagem img{
		width: 400px;
		margin: 100px -50px -125px;
		filter: grayscale(1);
		opacity: 0.1;
		animation: inicialSobreImagem 25s ease infinite;
	}
	@keyframes inicialSobreImagem{
		0%{
			transform: rotate(0deg);
		}
		100%{
			transform: rotate(359deg);
		}
	}

/*INICIAL FUNCIONAMNETO*/
	.inicialFuncionamento{
		width: 100%;
		padding: 0 0 75px;
		background-image: linear-gradient(to bottom, #EEE, #FFF 50%);
	}
	.inicialFuncionamento .container{
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
		border-radius: 20px;
		overflow: hidden;
	}
	.inicialFuncionamentoEfeito{
		width: 100%;
		position: absolute;
		top: 0px;
		left: -50px;
	}
	.inicialFuncionamentoEfeito img{
		width: 300px;
		height: 200px;
		animation: inicialFuncionamentoEfeito 5s ease infinite;
	}
	@keyframes inicialFuncionamentoEfeito{
		0%{
			transform: scale(1.1) rotate(-45deg);
		}
		50%{
			transform: scale(0.9) rotate(-45deg);
		}
		100%{
			transform: scale(1.1) rotate(-45deg);
		}
	}
	.inicialFuncionamentobackground{
		padding: 50px;
		border-radius: 20px;
		background-image: linear-gradient(-225deg, #FFFC, #FFFC 50%);
	}
	.inicialFuncionamentoConteudo{
		width: 100%;
		margin: 50px 0 0;
		display: flex;
		align-items: flex-start;
	}
	.inicialFuncionamentoConteudoBg{
		width: 102%;
		margin: 0 -1%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}	
	.inicialFuncionamentoConteudoBg hr{
		width: 100%;
		height: 3px;
		margin: 25px 0 15px;
		border: none;
		background-color: #09D;
	}
	.inicialFuncionamentoConteudoBg:first-of-type hr{
		background-color: #FFF;
	}
	.inicialFuncionamentoConteudoBg:last-of-type hr{
		background-color: #E33;
	}
	.inicialFuncionamentoConteudoDestaque{
		width: 100px;
		height: 100px;
		border-radius: 100px;
		display: flex;
		align-items: center;
		justify-content: center;
		background-image: linear-gradient(-225deg, #09D4, #7854 85%);
	}
	.inicialFuncionamentoConteudoBg:hover .inicialFuncionamentoConteudoDestaque{
		background-color: #09D;
	}
	.inicialFuncionamentoConteudoDestaque p{
		font-size: 48px;
		font-weight: bold;
		color: #FFF;
	}
	.inicialFuncionamentoConteudoTexto{
		width: 100%;
		margin: 15px 0 0;
	}
	.inicialFuncionamentoConteudoTexto h3{
		padding: 0 20px;
		margin: 0 0 10px;
		letter-spacing: 1px;
		text-align: center;
		color: #345;
	}
	.inicialFuncionamentoConteudoTexto p{
		padding: 0 40px;
		text-align: center;
		line-height: 150%;
	}

/*INICIAL AREAS*/
	.inicialAreas{
		width: 100%;
		padding: 0 0 75px;
	}	
	.inicialAreasTitulo{
		width: 50%;
		margin: 0 50px 0 0;
	}	
	.inicialAreas .titulo01 h2{
		text-align: left;
		font-size: 48px;
		background: -webkit-linear-gradient(-225deg, #09D, #345);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.inicialAreas .titulo01 p{
		text-align: left;
	}
	.inicialAreasTituloCta{
		display: flex;
		margin: 25px 0 0;
	}
	.inicialAreasTituloCta .cta01{
		width: 100%;
	}
	.inicialAreasTituloCta .cta01 p{
		text-align: center;
	}
	.inicialAreasConteudo{
		width: 100%;
		display: flex;
	}
	.inicialAreasConteudo{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.inicialAreasConteudoBg{
		width: 42%;
		margin: 1%;
		padding: 3%;
		display: flex;
		align-items: center;
		border-radius: 10px;
		background-image: linear-gradient(to bottom, #3451, #3453);
	}
	.inicialAreasConteudoBg img{
		width: 30px;
		margin: 0 20px 0 0;
	}
	.inicialAreasConteudoBg p{
		font-size: 21px;
		letter-spacing: 1px;
	}
	.inicialAreasConteudoInfo{
		width: 100%;
		margin: 25px 0 0;
		display: flex;
	}
	.inicialAreasConteudoInfo p{
		width: 100%;
		margin: 0 5px;
		font-size: 22px;
		font-weight: 300;
	}

/*INICIAL FRASE*/
	.inicialFrase{
		width: 100%;
		padding: 50px 0;
		position: relative;
		background-image: linear-gradient(-225deg, #09D, #09D);
	}
	.inicialFrase .container{
		align-items: center;
	}
	.inicialFraseTexto{
		margin: 0 50px 0 0;
	}
	.inicialFraseTexto h2{
		font-size: 40px;
		color: #FFF;
	}
	.inicialFraseTexto p{
		font-size: 18px;
		color: #FFF;
	}
	.inicialFraseTextoEfeito{
		width: 100px;
		position: relative;
	}
	.inicialFraseTextoEfeito img{
		width: 300px;
		height: 200px;
		position: absolute;
		margin: -90px 0 0 -180px;
		opacity: 0.7;
		animation: inicialFraseTextoEfeito 5s ease infinite;
	}
	@keyframes inicialFraseTextoEfeito{
		0%{
			transform: rotate(-45deg) scale(1.2);
		}
		50%{
			transform: rotate(-45deg) scale(0.9);
		}
		100%{
			transform: rotate(-45deg) scale(1.2);
		}
	}
	.inicialFraseCta{
		display: flex;
		align-items: center;
	}
	.inicialFraseLinha:first-of-type{
		position: absolute;
		top: 0;
		width: 100%;
		height: 3px;
		background-image: linear-gradient(to right, #09D 40%, #E33 50%);
	}
	.inicialFraseLinha:last-of-type{
		position: absolute;
		bottom: 0;
		width: 100%;
		height: 2px;
		background-image: linear-gradient(to right, #09D 40%, #E33 50%);
	}

/*SOBRE 01*/
	.sobre01{
		width: 100%;
		background-image: linear-gradient(to bottom, #EEE, #FFF 80%);
		padding: 75px 0;
	}
	.sobre01Video{
		width: 75%;
		border-radius: 20px;
		display: flex;
		justify-content: center;
		overflow: hidden;
		position: relative;
		margin: 0 75px 0 0;
	}
	.sobre01Video video{
		width: auto;
		height: 100%;
	}
	.sobre01VideoTexto{
		position: absolute;
		right: -25px;
		top: 275px;
		padding: 15px 25px;
		border-radius: 10px;
		background-color: #EEE;
		box-shadow: 0 0 10px #0003;
	}
	.sobre01VideoTexto p:first-of-type{
		font-size: 60px;
		font-weight: bold;
		color: #345;
	}
	.sobre01VideoTexto p:last-of-type{
		margin: -5px 0 0;
		font-size: 18px;
		text-transform: uppercase;
		font-weight: bold;
		color: #3459;
	}
	.sobre01Conteudo{
		width: 100%;
		padding: 50px 0;
	}	
	.sobre01Conteudo .titulo01{
		margin: 25px 0 50px;
	}
	.sobre01Conteudo .titulo01 h2{
		text-align: left;
		line-height: 110%;
		background: -webkit-linear-gradient(-225deg, #E33, #345);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.sobre01Conteudo .titulo01 p{
		text-align: left;
	}
	.sobre01ConteudoTexto{
		width: 100%;
	}
	.sobre01ConteudoTexto p{
		margin: 0 0 10px;
		font-size: 18px;
		line-height: 150%;
	}
	.sobre01ConteudoTexto p:last-of-type{
		font-weight: bold;
	}
	.sobre01ConteudoCta{
		margin: 50px 0 0;
		display: flex;
	}

/*SOBRE 02*/
	.sobre02{
		width: 100%;
		padding: 0 0 75px;
		background-image: linear-gradient(to bottom, #EEE, #FFF 50%);
	}
	.sobre02 .container{
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
		border-radius: 20px;
		overflow: hidden;
	}
	.sobre02Background{
		padding: 50px;
		border-radius: 20px;
		background-image: linear-gradient(-225deg, #E33E, #345E 50%);
	}
	.sobre02Background .titulo01 h2{
		background: -webkit-linear-gradient(-225deg, #09D, #FFF);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.sobre02Background .titulo01 p{
		color: #FFF;
	}	
	.sobre02Conteudo{
		width: 100%;
		margin: 50px 0 0;
		display: flex;
	}
	.sobre02ConteudoBg{
		width: 100%;
		margin: 0 20px;
		padding: 0 20px;
		display: flex;
		flex-wrap: wrap;
		border-right: 1px solid #FFF3;
		justify-content: center;
	}
	.sobre02ConteudoBg:last-of-type{
		border: none;
	}
	.sobre02ConteudoDestaque{
		border-radius: 100px;
		display: flex;
		align-items: center;
		justify-content: center;
		filter: grayscale(1);
	}
	.sobre02ConteudoDestaque img{
		width: 50px;
		filter:brightness(100);
	}
	.sobre02ConteudoTexto{
		width: 100%;
		margin: 15px 0 0;
	}
	.sobre02ConteudoTexto h3{
		margin: 0 0 5px;
		letter-spacing: 1px;
		text-align: center;
		color: #FFF;
	}
	.sobre02ConteudoTexto p{
		text-align: center;
		color: #FFF;
	}

/*SOBRE 03*/
	.sobre03{
		width: 100%;
		padding: 75px 0;
	}
	.sobre03 .container{
		align-items: center;
	}
	.sobre03Titulo{
		width: 100%;
		margin: 0 0 25px 0;
	}	
	.sobre03Conteudo{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.sobre03ConteudoBg{
		width: 31.33%;
		margin: 1%;
		position: relative;
		border-radius: 10px;
		background-image: linear-gradient(to bottom, #09D, #09DC);
	}
	.sobre03ConteudoBg:hover{
		background-size: cover;
		box-shadow: 0 0 20px #0003;
		transform: scale(1.05);
	}		
	.sobre03ConteudoBgBackground{
		padding: 100px 50px 25px 50px;
	}
	.sobre03ConteudoBg:nth-of-type(even){
		background-image: linear-gradient(to bottom, #345, #CCCC);
	}
	.sobre03ConteudoBg img{
		width: 75px;
		height: 75px;
		border: 5px solid #FFF;
		border-radius: 100px;
		background-color: #FFF;
		position: absolute;
		top: -15px;
		left: -15px;
		margin: 0 0 10px;
	}
	.sobre03ConteudoBg h3{
		font-size: 20px;
		color: #FFF;
	}
	.sobre03ConteudoBg p{
		margin: 15px 0 25px;
		font-size: 16px;
		color: #FFF;
	}

/*SERVICE 01*/
	.service01{
		width: 100%;
		background-color: #EEE;
		padding: 75px 0;
	}
	.service01Imagem{
		width: 75%;
		height: 600px;
		border-radius: 20px;
		display: flex;
		justify-content: center;
		overflow: hidden;
		position: relative;
		margin: 0 75px 0 0;
		background-size: cover;
		background-position: center;
	}
	.service01Conteudo{
		width: 100%;
		padding: 50px 0;
		position: relative;
	}	
	.service01Conteudo .titulo01{
		margin: 25px 0 25px;
		position: relative;
		z-index: 9;
	}
	.service01Conteudo .titulo01 h2{
		text-align: left;
		line-height: 110%;
		font-size: 36px;
		background: -webkit-linear-gradient(-225deg, #E33, #345);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.service01Conteudo .titulo01 p{
		text-align: left;
	}
	.service01ConteudoTexto{
		width: 100%;
	}
	.service01ConteudoTexto p{
		margin: 0 0 10px;
		font-size: 18px;
		line-height: 150%;
	}
	.service01ConteudoTexto ul{
		margin: 0 0 10px;
		padding: 0 20px;
		font-size: 16px;
		line-height: 150%;
		color: #345;
	}
	.service01ConteudoCta{
		margin: 50px 0 0;
		display: flex;
	}

/*SERVICE 02*/
	.service02{
		width: 100%;
		padding: 0 0 75px;
		background-image: linear-gradient(to bottom, #EEE, #FFF 50%);
	}
	.service02 .container{
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
		border-radius: 20px;
		overflow: hidden;
	}
	.service02Background{
		padding: 50px;
		border-radius: 20px;
		background-image: linear-gradient(-225deg, #E33E, #345E 50%);
	}
	.service02Background .titulo01 h2{
		background: -webkit-linear-gradient(-225deg, #09D, #FFF);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.service02Background .titulo01 p{
		color: #FFF;
	}	
	.service02Conteudo{
		width: 100%;
		margin: 50px 0 0;
		display: flex;
	}
	.service02ConteudoBg{
		width: 100%;
		margin: 0 20px;
		padding: 0 20px;
		display: flex;
		flex-wrap: wrap;
		border-right: 1px solid #FFF3;
		justify-content: center;
	}
	.service02ConteudoBg:last-of-type{
		border: none;
	}
	.service02ConteudoDestaque{
		border-radius: 100px;
		display: flex;
		align-items: center;
		justify-content: center;
		filter: grayscale(1);
	}
	.service02ConteudoDestaque img{
		width: 50px;
		filter:brightness(100);
	}
	.service02ConteudoTexto{
		width: 100%;
		margin: 15px 0 0;
	}
	.service02ConteudoTexto p{
		text-align: center;
		color: #FFF;
	}
	.service02ConteudoTexto p:first-of-type{
		font-size: 18px;
		font-weight: bold;
		margin: 0 0 10px;
	}

/*SERVICE 03*/
	.service03{
		width: 100%;
		padding: 25px 0 100px;
	}	
	.service03Titulo{
		width: 50%;
		margin: 0 50px 0 0;
	}	
	.service03Titulo .titulo02{
		margin: 25px 0 25px;
		position: relative;
		z-index: 9;
	}
	.service03Titulo .titulo02 h2{
		text-align: left;
		line-height: 110%;
		font-size: 36px;
		background: -webkit-linear-gradient(-225deg, #E33, #345);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.service03Titulo .titulo02 p{
		max-width: 350px;
		margin: 10px 0;
		font-size: 20px;
	}
	.service03Conteudo{
		width: 100%;
		display: flex;
	}
	.service03Conteudo{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	.service03ConteudoBg{
		width: 42%;
		margin: 1%;
		padding: 3%;
		display: flex;
		align-items: center;
		border-radius: 10px;
		background-image: linear-gradient(to bottom, #3451, #3453);
		box-shadow: 0 0 5px #0003;
	}
	.service03ConteudoBg img{
		width: 30px;
		margin: 0 10px 0 0;
	}
	.service03ConteudoBg p{
		font-weight: bold;
	}

/*CONTATO*/
	.contato01{
		width: 100%;
		padding: 100px 0;
		margin: 0 0 50px;
		background-color: #F9F9F9;
	}	
	.contatoInfo{
		width: 100%;
		display: flex;
		position: relative;
		flex-wrap: wrap;
		align-items: center;
		align-content: center;
		padding: 75px 50px;
		border-radius: 25px;
		background-image: linear-gradient(-225deg, #09D, #345 80%);		
	}
	.contatoInfoEfeito{
		width: 100px;
		height: 100%;
		position: relative;
	}
	.contatoInfoEfeito img{
		height: 600px;
		right: 20px;
		top: -140px;
		position: absolute;
	}
	.contatoInfo .titulo01{
		margin: 0;
	}
	.contatoInfo .titulo01 h2{
		text-align: left;
		color: #FFF;
	}
	.contatoInfoBg{
		width: 100%;
		margin: 20px 0 0;
		display: flex;
	}
	.contatoInfoImagem{
		padding: 0 10px 0 0;
		display: flex;
		align-items: center;
		justify-content: center;
		border-right: 2px solid #DDD;
	}
	.contatoInfoImagem img{
		width: 30px;
		filter: brightness(100);
	}
	.contatoInfoTexto{
		width: 100%;
		margin: 0 20px;
	}
	.contatoInfoTexto p:nth-child(1){
		font-size: 14px;
		text-transform: uppercase;
		color: #FFF;
	}
	.contatoInfoTexto p:nth-child(2){
		font-size: 18px;
		font-weight: bold;
		text-transform: uppercase;
		color: #FFF;
	}
	.contatoFormulario{
		width: 100%;
		margin: 0 100px 0 0;
		padding: 25px 0;
	}
	.contatoFormularioBg{
		width: 100%;
		margin: 10px 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
	.contatoFormularioBg p{
		width: 100%;
		font-weight: 500;		
		text-transform: uppercase;
		color: #999;
	}
	.contatoInput,
	.contatoTextarea{
		width: 100%;
		height: 30px;
		padding: 5px;
		border-radius: 5px;
		outline: none;
		font-size: 18px;
		font-weight: 500;
		border: 2px solid #CCC;
	}
	.contatoTextarea{
		height: 90px;
	}
	.contatoSubmit{
		width: 150px;
		height: 50px;
		border: 0;
		border-radius: 5px;
		font-weight: bold;
		letter-spacing: 1px;
		text-transform: uppercase;
		color: #FFF;
		background-image: linear-gradient(-225deg, #E33, #345 80%);
	}
	.contato02{
		width: 100%;
		margin: 100px 0 0;
		border-top: 2px solid #DDD;
	}
	.contato02 iframe{
		width: 100%;
		height: 400px;
		border: none;
		filter: grayscale(1);
	}

/*FOOTER*/
	footer{
		width: 100%;
		padding: 50px 0 25px;
		background-color: #234;
	}
	.footerConteudo{
		width: 100%;
		display: flex;
		justify-content: space-between;
	}
	.footerMarca{
		max-width: 300px;
		margin: 0 -50px 0 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}
	.footerMarca img{
		width: 200px;
		margin: 0 0 30px;
		max-width: 90%;
	}
	.footerMarca p{
		width: 300px;
		margin: 20px 0 0;
		max-width: 90%;
		font-size: 16px;
		font-weight: 300;
		line-height: 150%;
		color: #FFF;
	}
	.footerMenu{
		margin: 0 0 0 50px;
	}
	.footerMenu h2{
		margin: 0 0 10px;
		font-size: 20px;
		color: #FFF;
	}
	.footerMenu ul{
		list-style: none;
	}
	.footerMenu li{
		display: flex;
		margin: 10px 0 5px;
		font-weight: 300;
		color: #FFF;
	}	
	.footerMenu li:hover{
		font-weight: bold;
	}
	.footerMenu li span{
		font-size: 20px;
		color: #09D;
	}
	.footerContato{
		max-width: 300px;
		margin: 0 0 0 50px;
	}
	.footerContato h2{
		margin: 0 0 10px;
		font-size: 20px;
		color: #FFF;
	}
	.footerContatoBg{
		margin: 0 0 15px;
		display: flex;
		align-items: center;
	}
	.footerContatoBg img{
		margin: 0 10px 0 0;
		width: 15px;
	}
	.footerContatoBg p{
		color: #FFF;
		font-weight: 500;
	}
	.footerContatoBg p span{
		color: #FFF;
		font-weight: 300;
	}
	.footerCopyright{
		width: 100%;
		margin: 50px 0 0;
		padding: 25px 0 0 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		border-top: 1px solid #09D3;
	}
	.footerCopyright p:first-child{
		font-size: 14px;
		color: #FFF9;
	}

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

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

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

	/*HEADER*/
		header{
			position: fixed;
		}
		header .container{
			padding: 10px 0;
		}
		.headerMenuMobile{
			width: 40px;
			height: 40px;
			display: flex;
			justify-content: center;
			align-items: center;
			position: absolute;
			top: 20px;
			right: 0px;
			border-radius: 10px;
			background-image: linear-gradient(-225deg, #E33, #345 80%);
		}
		.headerMenuMobile p{
			font-size: 30px;
			margin: -4px 0 0;
			color: #FFF;
		}
		.headerMenu{
			width: 100%;
			position: fixed;
			top: 86px;
			bottom: 0px;
			right: 0px;
			left: 0px;
			margin: 0;
			background-color: #345;
		}
		.headerMenu ul{
			padding: 25px 0;
			flex-wrap: wrap;
			justify-content: center;
		}
		.headerMenu li{
			width: 100%;
			margin: 0;
			padding: 20px 0;
			text-align: center;
			font-size: 18px;
			border-top: none;
			border-bottom: 1px solid #09D3;
			color: #FFF;
		}
		.headerMenu li:last-of-type{			
			border-bottom: 0 solid #09D3;
		}
		.headerMenu li:nth-of-type(2n){
			display: none;
		}
		.headerMenu li:hover{
			color: #FFF;
		}
		.headerCta{
			width: 100%;
			position: fixed;
			bottom: 0;
			right: 0;
			left: 0;
			padding: 15px 0;
			border-radius: 0;
			border: none;
			background-image: linear-gradient(-225deg, #E33, #345 80%);
		}
		.headerCta p{
			text-align: center;
			color: #FFF;
		}

	/*CTA*/
		.cta01{
			width: 100%;
			margin: 0 10px;
		}
		.cta02{
			width: 100%;
			margin: 0 10px;
		}
		.cta01 p,
		.cta02 p{
			text-align: center;
		}

	/*TITULO*/
		.titulo01{
			width: 100%;
		}
		.titulo01 h2{
			font-size: 36px;
		}

	/*BANNER*/
		.banner{
			width: 100%;
			margin: 80px 0 0;
			background-size: cover;
			background-position: center;
		}
		.bannerBackground h1{
			font-size: 36px;
			text-align: center;
		}

	/*INICIAL BANNER*/
		.inicialBanner{
			margin: 80px 0 0;
			overflow: hidden;
		}
		.inicialBannerVideo{
			height: 600px;
			display: flex;
			justify-content: center;
		}
		.inicialBannerVideo video{
			width: auto;
			height: 600px;
		}	
		.inicialBannerBackground{
			padding: 0;
			height: 600px;
		}
		.inicialBannerTitulo p:first-of-type{
			width: 100%;
			margin: 0 auto 25px;
			text-align: center;
		}
		.inicialBannerTitulo h1{
			font-size: 36px;
			line-height: 100%;
			text-align: center;
			color: #345;
		}
		.inicialBannerTitulo p:last-of-type{
			margin: 25px 0;
			font-size: 18px;
			text-align: center;
		}
		.inicialBannerCta{
			width: 100%;
			flex-wrap: wrap;
		}
		.inicialBannerCta .cta02{
			margin: 10px;
		}		

	/*INICIAL DESTAQUE*/
		.inicialDestaque{
			width: 100%;
			height: auto;
			display: flex-wrap;
			margin: 25px 0 0;
		}
		.inicialDestaqueBg{
			width: 100%;
			padding: 0;
			margin: 0 0 10px;
			display: flex;
			align-items: center;
		}
		.inicialDestaqueImg{
			width: 80px;
			height: 40px;
			border-radius: 0 30px 30px 0;
			background-image: linear-gradient(to right, #EEE, #F9F9F9);
			margin: 0 0 0 -10px;
		}
		.inicialDestaqueImg img{
			margin: 10px 0 0 30px;
		}

	/*INICIAL SERVICO*/
		.inicialServicos{
			padding: 50px 0;
		}
		.inicialServicosConteudoBg{
			width: 100%;
			margin: 10px 1%;
		}

	/*INICIAL SOBRE*/
		.inicialSobre{
			width: 100%;
			background-color: #EEE;
			padding: 50px 0;
		}
		.inicialSobreVideo{
			width: 100%;
			margin: 0;
		}
		.inicialSobreVideo video{
			width: auto;
			height: 300px;
		}
		.inicialSobreVideoTexto{
			position: absolute;
			right: 0;
			top: auto;
			bottom: 0;
			border-radius: 10px 0 0 0;
		}
		.inicialSobreVideoTexto p:first-of-type{
			font-size:48px;
		}
		.inicialSobreVideoTexto p:last-of-type{
			font-size: 16px;
		}
		.inicialSobreConteudo{
			width: 100%;
			padding: 25px 0;
			position: relative;
		}	
		.inicialSobreConteudo .titulo01 h2{
			font-size: 30px;
		}

	/*INICIAL FUNCIONAMNETO*/
		.inicialFuncionamento{
			width: 100%;
			padding: 0 0 75px;
			background-image: linear-gradient(to bottom, #EEE, #FFF 50%);
		}
		.inicialFuncionamento .titulo01{
			position: relative;
			z-index: 999;
		}
		.inicialFuncionamentobackground{
			padding: 25px;
		}
		.inicialFuncionamentoConteudo{
			flex-wrap: wrap;
		}
		.inicialFuncionamentoConteudoBg{
			width: 100%;
			margin: 0 -1% 20px;
			flex-wrap: wrap;
		}	
		.inicialFuncionamentoConteudoBg hr{
			display: none;
		}
		.inicialFuncionamentoConteudoBg:first-of-type hr{
			display: none;
		}
		.inicialFuncionamentoConteudoTexto{
			width: 100%;
			margin: 10px 0 0;
		}
		.inicialFuncionamentoConteudoTexto p{
			padding: 0;
			text-align: center;
			line-height: 150%;
		}

	/*INICIAL AREAS*/
		.inicialAreas{
			padding: 0 0 50px;
		}	
		.inicialAreasTitulo{
			width: 100%;
			margin: 0 0 25px 0;
		}
		.inicialAreas .titulo01 h2{
			text-align: center;
			font-size: 30px;
		}
		.inicialAreas .titulo01 p{
			text-align: center;
		}
		.inicialAreasTituloCta{
			display: none;
		}
		.inicialAreasConteudoBg img{
			width: 20px;
			margin: 0 10px 0 0;
		}
		.inicialAreasConteudoBg p{
			font-size: 16px;
			letter-spacing: 0;
		}		
		.inicialAreasConteudoInfo p{
			font-size: 18px;
			text-align: center;
		}

	/*INICIAL FRASE*/
		.inicialFraseTexto{
			margin: 0 0 25px;
		}
		.inicialFraseTexto h2{
			font-size: 36px;
			text-align: center;
		}
		.inicialFraseTexto p{
			text-align: center;
		}
		.inicialFraseCta{
			width: 100%;
		}

	/*SOBRE 01*/
		.sobre01{
			padding: 50px 0;
		}
		.sobre01Video{
			width: 100%;
			order: 2;
			margin: 0;
		}
		.sobre01Video video{
			width: auto;
			height: 300px;
		}
		.sobre01VideoTexto{
			right: 0;
			bottom: 0;
			top: auto;
			border-radius: 10px 0 0 0;
		}
		.sobre01VideoTexto p:first-of-type{
			font-size: 48px;
		}
		.sobre01VideoTexto p:last-of-type{
			font-size: 16px;
		}
		.sobre01Conteudo{
			padding: 0;
		}
		.sobre01Conteudo .titulo01{
			margin: 0 0 25px;
		}
		.sobre01ConteudoCta{
			margin: 50px 0;
			display: flex;
			justify-content: center;
		}

	/*SOBRE 02*/
		.sobre02{
			padding: 0 0 50px;
		}
		.sobre02Background{
			padding: 25px;
		}
		.sobre02Conteudo{
			flex-wrap: wrap;
		}
		.sobre02ConteudoBg{
			width: 46%;
			margin: 0 2% 25px;
			padding: 0;
			border: none;
			align-items: flex-start;
			align-content: flex-start;
		}

	/*SOBRE 03*/
		.sobre03{
			padding: 0;
		}
		.sobre03ConteudoBg{
			width: 100%;
			margin: 0 0 25px;
		}
		.sobre03ConteudoBgBackground{
			padding: 75px 50px 25px;
		}

	/*SERVICE 01*/
		.service01{
			padding: 50px 0;
		}
		.service01Imagem{
			width: 100%;
			height: 300px;
			margin: 0;
		}
		.service01Conteudo{
			padding: 25px 0 0;
		}		
		.service01Conteudo .titulo01{
			margin: 25px 0;
		}
		.service01Conteudo .titulo01 h2{
			font-size: 30px;
		}

	/*SERVICE 02*/
		.service02{
			padding: 0 0 25px;
		}
		.service02Background{
			padding: 50px 25px;
		}
		.service02Conteudo{
			flex-wrap: wrap;
			align-items: flex-start;
			align-content: flex-start;
		}
		.service02ConteudoBg{
			width: 46%;
			margin: 0 2% 25px;
			padding: 0;
			border: none;
		}
		.service02ConteudoTexto p:first-of-type{
			margin: 0;
			font-size: 16px;
		}

	/*SERVICE 03*/
		.service03Titulo{
			width: 100%;
			margin: 0;
		}				
		.service03Titulo .titulo02 h2{
			font-size: 30px;
		}
		.service03Conteudo{
			flex-wrap: wrap;
		}
		.service03ConteudoBg{
			width: 100%;
			margin: 0 0 15px
		}

	/*CONTATO*/
		.contato01{
			padding: 50px 0;
		}	
		.contatoInfo{
			width: 100%;
			flex-wrap: nowrap;
			padding: 25px 20px;
			border-radius: 25px;
		}
		.contatoInfoEfeito{
			width: 40px;
		}
		.contatoInfoEfeito img{
			height: 300px;
			right: 0px;
			top: 0;
		}
		.contatoInfoBg{
			margin: 25px 0 0;
		}
		.contatoInfoImagem{
			padding: 0 10px 0 0;
		}
		.contatoInfoImagem img{
			width: 25px;
		}
		.contatoInfoTexto{
			margin: 0 10px;
		}
		.contatoInfoTexto p:nth-child(2){
			font-size: 15px;
		}
		.contatoFormulario{
			width: 100%;
			margin: 0;
			padding: 25px;
			background-color: #FFF;
			border-radius: 10px;
			border: 1px solid #EEE;
		}		
		.contatoFormularioBg p{
			font-size: 14px;
		}
		.contatoInput,
		.contatoTextarea{
			padding: 5px;
			font-size: 16px;
			border: 2px solid #DDD;
		}

	/*FOOTER*/
		.footerConteudo{
			flex-wrap: wrap;
		}
		.footerMarca{
			width: 100%;
			max-width: 100%;
			margin: 0 0 25px;
			text-align: center;
		}
		.footerMarca img{
			margin: 0 auto 20px;
		}
		.footerMarca p{
			margin: 0 auto 0;
		}
		.footerMenu{
			width: 100%;
			margin: 25px 0 0;
		}
		.footerMenu h2{
			text-align: center;
		}
		.footerMenu li{
			justify-content: center;
		}
		.footerMenu li span{
			display: none;
		}
		.footerContato{
			width: 100%;
			margin: 25px auto 0;
		}
		.footerContato h2{
			text-align: center;
		}
		.footerContatoBg{
			justify-content: center;
		}
		.footerContatoBg img{
			display: none;
		}
		.footerContatoBg p{
			text-align: center;
		}
		.footerCopyright{
			width: 100%;
			padding: 25px 0 60px 0;
		}
		.footerCopyright p:first-child{
			width: 100%;
			text-align: center;
		}
			
}