html, body{
	padding:0px;
	margin:0px;
	overflow-x: hidden;
	background-image:url(../img/background.jpeg);
}
a, ul, li, p, h1, h2, h3, h4, h5, h6, button, input, textarea{
	font-family: "Noto Serif", 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: fixed;
		z-index: 999;
		border-bottom:1px solid #EDD;
		background:#FFF;
	}
	header .flex{
		display:flex;
		align-items:center;
		gap:30px
	}
	.headerMarca{
		width: auto;
		padding: 10px 0;
	}
	.headerMarca img{
		width: 150px
	}
	.headerMenu{
		margin:0 0 0 auto
	}
	.headerMenu ul{
		display: flex;
		gap:25px;
		align-items:center;
		list-style: none;
	}
	.headerMenu li{
		margin:0;
		font-size:14px;
		font-weight:600;
		text-transform:none;
		color:#277;
	}
	.headerMenu li:hover{
		filter: brightness(0.8);
	}
	.headerLanguages{
		display:flex;
		align-items:center;
		gap:5px;
		border-left:1px solid #5BC;
		padding:0 0 0 20px
	}
	.headerLanguages button{
		border:0;
		padding:5px;
		font-size: 12px;
		font-weight: bold;
		color:#BBB;
		background:transparent;
		cursor: pointer;
	}
	.headerLanguages button:hover{
		color:#277;
	}
	.headerLanguages button.is-active{
		color:#5BC;
		text-decoration:underline;
		text-underline-offset:5px
	}
	.headerMobile{
		display: none;
	}

/*CTA*/
	.cta{
		height:auto;
		padding:10px 15px;
		border-radius: 5px;
		font-size:14px;
		white-space:nowrap;
		color: #FFF;
		background-image:linear-gradient(45deg, #E93, #C71);
		box-shadow: 0 0 10px #E93;
	}
	.cta:hover{
		filter: brightness(1.1);
	}
	
/*BANNER*/
	.banner{
		width: 100%;
		margin: 100px 0 0;
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
	}
	.bannerBackground{
		width: 100%;
		height: 500px;
		padding: 30px 0;
		display: flex;
		align-items: center;
		background-color: #299C;
	}
	.bannerConteudo{
		width: 100%;
	}
	.bannerTitulo{
		width: 100%;
		max-width: 600px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	.bannerTitulo p:first-of-type{
		margin: 0 0 25px;
		padding: 7px 15px;
		font-size: 14px;
		text-transform: uppercase;
		letter-spacing: 1.5px;
		border-radius: 5px;
		color: #FFFE;
		background-image: linear-gradient(45deg, #39A, #178);
	}
	.bannerTitulo h1{
		font-size: 60px;
		font-weight: bold;
		line-height: 100%;
		color: #FFF;
	}
	.bannerTitulo h1 span{
		color: #FC9;
	}
	.bannerTitulo p:last-of-type{
		max-width: 500px;
		margin: 15px 0;
		font-size: 24px;
		font-weight: 300;
		line-height: 125%;
		color: #FFF;
	}
	.bannerCta{
		width: 190px;
		margin: 25px 0 0;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.bannerImagem{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.bannerImagem img{
		width: 100%;
		filter: brightness(100);
		opacity: 0.5;
	}

/*APRESENTACAO*/
	.apresentacao{
		width: 100%;
		padding: 75px 0;
		background: #FFF;
	}
	.apresentacao .container{
		align-items: center;
		gap: 100px;
	}
	.apresentacaoImagem{
		width: 100%;
		border-radius: 20px;
		overflow: hidden;
	}
	.apresentacaoImagem img{
		width: 100%;
		height: 100%;
		aspect-ratio: 1 / 1;
		object-fit: cover;
	}
	.apresentacaoTexto{
		width: 100%;
	}
	.apresentacaoTexto p{
		font-size: 14px;
		letter-spacing: 2px;
		color: #C71;
	}
	.apresentacaoTexto h2{
		margin: 10px 0 25px;
		font-size: 36px;
		line-height: 125%;
		color: #277;
	}
	.apresentacaoConteudo{
		width: 100%;
	}
	.apresentacaoConteudo p{
		margin: 0 0 10px;
		font-size: 18px;
		font-weight: 300;
		letter-spacing: 1px;
		color: #0009;
	}
	.apresentacaoConteudo p:last-child{
		margin-bottom: 0;
	}

/*TRATAMENTO*/
	.tratamentos{
		width: 100%;
		padding: 75px 0;
	}
	.tratamentosTitulo{
		width: 100%;
		margin: 0 0 25px;
		background-size: cover;
		background-position: center;
	}
	.tratamentosTitulo h2{
		font-size: 36px;
		font-weight: 900;
		text-transform: uppercase;
		text-align: center;
		line-height: 100%;
		color: #277;
	}
	.tratamentosTitulo p{
		width: 100%;
		max-width: 600px;
		margin: 10px auto;
		font-size: 20px;
		font-weight: 300;
		text-align: center;
		color: #0009;
	}
	.tratamentosConteudo{
		width: 100%;
		display: grid;
		gap: 50px;
		grid-template-columns: repeat(3, 1fr)
	}	
	.tratamentosConteudoBg{
		width: 100%;
		min-height: 450px;
		border-radius: 10px;
		overflow: hidden;
		display: flex;
		align-items: flex-end;
		align-content: flex-end;
		flex-wrap: wrap;
		background-size: cover;
		background-position: center;
		box-shadow: 0 0 30px #0001;
	}
	.tratamentosConteudoTexto{
		width: 100%;
		min-height: 115px;
		padding: 100px 20px 20px;
		background-image: linear-gradient(to bottom, #FFF0, #2999, #299);
	}
	.tratamentosConteudoBg:hover .tratamentosConteudoTexto{
		width: 100%;
		padding: 100px 20px 20px;
		background-image: linear-gradient(to bottom, #FFF0, #299, #299);
	}
	.tratamentosConteudoTexto h3{
		font-size: 24px;
		font-weight: bold;
		text-transform: uppercase;
		letter-spacing: 2px;
		line-height: 125%;
		color: #FFF;
	}
	.tratamentosConteudoTexto p{
		width: 100%;
		padding: 10px 0 0;
		font-size: 17px;
		font-weight: 300;
		line-height: 150%;
		color: #FFF;
	}
	.tratamentosConteudoBg:hover p{
		display: block;
	}
	.tratamentosConteudoCta{
		display: none;
	}
	.tratamentosConteudoBg:hover .tratamentosConteudoCta{
		width: 100%;
		padding: 0 20px 20px;
		display: flex;
		background-color: #532C;
	}
	.tratamentosConteudoCta img{
		width: 20px;
		margin: 0 5px 0 0;
	}
	.tratamentosConteudoCta p{
		font-size: 14px;
		font-weight: 900;
		text-transform: uppercase;
		letter-spacing: 1px;
		color: #FFF;
	}
	.tratamentosCta{
		width:200px;
		height:auto;
		display: flex;
		justify-content: center;
		margin: 50px auto 0;
	}

/*DEPOIMENTO*/
	.depoimento{
		width: 100%;
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
	}
	.depoimentoBackground{
		width: 100%;
		padding: 75px 0;
		background-image:linear-gradient(to bottom, #299B, #299);
	}
	.depoimentoTexto{
		width: 100%;
	}	
	.depoimentoTexto h2{
		margin: 0 0 35px;
		font-size: 36px;
		letter-spacing: 2px;
		text-align: center;
		color: #FFF;
	}	
	.depoimentoDepoimentos{
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 30px;
		margin: auto;
	}
	.depoimentoDepoimentosBg{
		padding: 30px;
		border-radius: 10px;
		background: #0229;
	}
	.depoimentoDepoimentosBg p{
		margin: 15px 0;
		font-size: 16px;
		font-weight: 300;
		line-height: 150%;
		letter-spacing: 1px;
		color: #FFF;
	}
	.depoimentoDepoimentosBg span{
		font-size: 13px;
		letter-spacing: 3px;
		color: #F90;
	}
	.depoimentoDepoimentosBg strong{
		font-size: 14px;
		font-weight: bold;
		letter-spacing: 1px;
		text-transform: uppercase;
		color: #5BC;
	}
	.depoimentoGoogle{
		width: max-content;
		margin: 30px auto 0;
		display: flex;
		gap: 10px;
		align-items: center;
		padding: 10px 40px;
		border-radius: 10px;
		cursor: pointer;
		color: #FFF;
		background-image:linear-gradient(45deg, #E93, #C71);
	}
	.depoimentoGoogle:hover{
		filter: brightness(1.1);
	}
	.depoimentoGoogle p{
		gap: 10px;
		align-items: center;
		font-size: 12px;
		text-transform: uppercase;
		text-align: center;
		line-height: 200%;
		color: #FFF;
	}
	.depoimentoGoogle strong{
		font-size: 22px;
		line-height: 1;
		color: #FFF;
	}
	.depoimentoGoogle span{
		font-size: 12px;
		letter-spacing: 2px;
		color: #FFF;
	}

/*DESTAQUE*/
	.equipe{
		width: 100%;
		padding: 50px 0;
	}
	.equipe .container{
		align-items: center;
	}
	.equipeTitulo{
		width: 30%;
		padding: 0 50px 0 0;
	}	
	.equipeTitulo h2{
		font-size: 36px;
		font-weight: bold;
		color: #277;
	}
	.equipeTitulo p:last-of-type{
		margin: 10px 0 0;
		font-size: 18px;
		font-weight: 200;
		line-height: 175%;
		color: #0009;
	}	
	.equipeConteudo{
		width: 70%;
	}
	.equipeConteudoBg{
		width: 100%;
		border-radius: 150px;
		overflow: hidden;
		margin: 0 10px;
		background-size: cover;
		background-position: center;
	}
	.equipeConteudoBgTexto{
		width: 100%;
		min-height: 350px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		align-content: center;
		padding: 150px 0 0;
		background-image: linear-gradient(to bottom, #FFF0, #532C);
	}
	.equipeConteudoBgTexto h3{
		width: 100%;
		font-size: 28px;
		font-weight: 700;
		text-align: center;
		text-transform: uppercase;
		line-height: 125%;
		letter-spacing: 2px;
		color: #FFF;
	}
	.equipeConteudoBg p{
		display: block;
		width: 100%;
		padding: 0 20px;
		font-size: 18px;
		font-weight: 300;
		text-align: center;
		line-height: 150%;
		color: #FFF;
	}

/*INSTAGRAM*/
	.instagram{
		padding: 75px 0;
	}
	.instagramTitulo{
		margin: 0 0 50px;
		text-align: center;
	}
	.instagramTitulo p:first-of-type{
		font-size: 14px;
		letter-spacing: 2px;
		color: #C71;
	}
	.instagramTitulo p:last-of-type{
		font-size: 18px;
		letter-spacing: 2px;
		color: #0009;
	}
	.instagramTitulo h2{
		margin: 10px 0 0;
		font-size: 36px;
		line-height: 125%;
		color: #277;
	}

/*GALERIA*/
	.galeria{
		width: 100%;
		display: flex;
		background-color: #000;
	}
	.galeriaBg{
		width: 100%;
		height: 250px;
		background-size: cover;
		background-position: center;
		opacity: 0.7;
	}
	.galeriaBg:hover{
		opacity: 1;
	}
	#galeriaSlider{
		display:block;
		overflow:hidden;
		background:#000;
	}
	#galeriaSlider .galeriaTrack{
		display:flex;
		width:max-content;
		height:360px;
		animation:galeriaMovimento 28s linear infinite;
	}
	#galeriaSlider .galeriaBg{
		width:20vw;
		height:360px;
		display:block;
		flex:0 0 20vw;	
		opacity:1;
	}
	@keyframes galeriaMovimento{
		from{transform:translateX(-50%);}
		to{transform:translateX(0);}
	}

/*CONTATO*/
	.contato{
		width: 100%;
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
	}
	.contatoBackground{
		width: 100%;
		padding: 75px 0;
		display: flex;
		align-items: center;
		background-color: #299C;
	}
	.contatoTitulo{
		width: ;
	}
	
	.contatoTitulo{
		width: 100%;
	}
	.contatoTitulo h2{
		margin: 10px 0 0;
		font-size: 36px;
		line-height: 125%;
		text-align: center;
		color: #022;
	}
	.contatoTitulo p{
		font-size: 18px;
		text-align: center;
		letter-spacing: 2px;
		color: #FFF;
	}
	.contatoConteudo{
		width: 100%;
		margin: 50px 0 0;
		display: flex;
	}	
	.contatoMapa{
		width: 100%;
		min-height: 420px;
		overflow: hidden;
	}
	.contatoMapa iframe{
		width: 100%;
		height: 100%;
		min-height: 420px;
		border: 0;
	}
	.contatoInfo{
		width: 100%;
		padding: 10px 0;
		margin: 0 0 0 50px;
	}
	.contatoInfoBg{
		width: 100%;
		margin: 0 0 20px;
		display: flex;
		align-items: center;
	}
	.contatoInfoBg img{
		width: 25px;
		margin: 0 10px 0 0;
	}
	.contatoInfoBg p{
		font-size: 18px;
		color: #FFF;
	}
	.contatoInfoBg p span{
		font-size: 14px;
		font-weight: bold;
		text-transform: uppercase;
		color: #022;
	}
	.contatoHorario{
		margin: 25px 0;
		padding: 25px 0;
		display: flex;
		align-items: start;
		border-top: 1px solid #5BC;
		border-bottom: 1px solid #5BC;
	}
	.contatoHorario img{
		width: 25px;
		margin: 0 10px 0 0;
	}
	.contatoHorario p{
		font-size: 18px;
		color: #FFF;
	}
	.contatoHorario p span{
		font-size: 14px;
		font-weight: bold;
		text-transform: uppercase;
		color: #022;
	}
	.contatoAcoes{
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
	}
	.contatoAcoes a{
		padding: 12px 16px;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 1px;
		color: #FFF;
		background: #022;
	}
	.contatoAcoes a:last-child{
		background-image:linear-gradient(45deg, #E93, #C71);
	}

/*FOOTER*/
	footer{
		width: 100%;
		padding: 50px 0 0;
	}
	.footer01{
		width: 100%;
	}
	.footerMarca{
		width: 100%;
		text-align: center;
	}
	.footerMarca img{
		width: 100%;
		max-width: 200px;
	}
	.footerTexto{
		width: 100%;
		margin: 25px 0 0;
	}
	.footerTexto p{
		font-size: 14px;
		text-align: center;
		text-transform: uppercase;
		line-height: 125%;
	}
	.footerTexto p:first-of-type{
		font-weight: 500;
	}
	.footerTexto p:last-of-type{
		font-weight: 300;
	}
	.footer02{
		margin: 50px 0 0;
		padding: 25px 0;
		border-top: 5px solid #022;
		background-color: #277;
	}
	.footer02 p{
		font-size: 14px;
		text-align: center;
		color: #FFF;
	}

/*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:767px){
	.flex{
		flex-wrap: wrap;
	}

	/*HEADER*/
		.headerMarca img{
			width: 120px;
		}
		.headerMobile{
			display: flex;
			justify-content: center;
			align-items: center;
			width: 30px;
			height: 50px;
			position: absolute;
			top: 20px;
			right: 0px;
			border-radius: 50px;
			background-color: #277;
		}
		.headerMobile p{
			color: #FFF;
		}
		.headerMenu{
			width: 104%;
			height: 100vh;
			position: absolute;
			top: 90px;
			left: 0;
			margin: 0 -2%;
			background-color: #5bC;
		}
		.headerMenu ul{
			flex-wrap: wrap;
			padding: 25px 0 0;
		}
		.headerMenu li{
			width: 100%;
			font-size: 20px;
			text-align: center;
			margin: 0 0 10px;
			color: #FFF;
		}
		.headerLanguages{
			border-left:0;
			padding:0 50px 0 0
		}
		.headerLanguages button{
			font-size: 14px;
		}
		.headerCta{
			width: 100%;
			height: auto;
			position: fixed;
			bottom: 0px;
			left: 0;
			padding:0;
			background-color: red;
		}
		.headerCta .cta{
			width: 100%;
			display: flex;
			align-items: center;
			justify-content: center;
			height: 50px;
			border-radius: 0;
			position: fixed;
			bottom: 0px;
			left: 0;
			padding:0;
			font-weight: bold;
			letter-spacing: 2px;
			font-size: 16px;
		}
		
	/*BANNER*/
		.banner{
			margin: 90px 0 0;
		}
		.bannerBackground{
			height: auto;
		}
		.bannerTitulo p:first-of-type{
			margin: 50px auto 25px;
		}
		.bannerTitulo h1{
			width: 100%;
			text-align: center;
			font-size: 42px;
		}
		.bannerTitulo p:last-of-type{
			max-width: 100%;
			margin: 15px auto;
			font-size: 20px;
			text-align: center;
		}
		.bannerCta{
			margin: 25px auto 0;
		}
		.bannerImagem{
			margin: 25px 0 0;
		}

	/*APRESENTACAO*/
		.apresentacao{
			padding: 50px 0;
		}
		.apresentacao .container{
			gap: 50px;
		}
		.apresentacaoImagem img{
			width: 100%;
			height: 300px;
			aspect-ratio: auto;
		}	

	/*TRATAMENTO*/
		.tratamentos{
			padding: 50px 0;
		}
		.tratamentosConteudo{
			gap: 25px;
			grid-template-columns: repeat(1, 1fr)
		}	
		.tratamentosConteudoBg{
			width: 100%;
			min-height: 400px;
		}

	/*DEPOIMENTO*/
		.depoimentoBackground{
			padding: 50px 0;
			background-image:linear-gradient(to bottom, #299B, #299);
		}			
		.depoimentoDepoimentos{
			grid-template-columns: repeat(1, minmax(0, 1fr));
			gap: 25px;
		}

	/*EQUIPE*/
		.equipeTitulo{
			width: 100%;
			padding: 0 0 25px;
		}	
		.equipeTitulo h2{
			text-align: center;
		}
		.equipeTitulo p:last-of-type{
			text-align: center;
		}	
		.equipeConteudo{
			width: 90%;
			max-width: 300px;
			margin: auto;
		}	

	/*GALERIA*/
		#galeriaSlider .galeriaTrack{
			height:auto;
		}
		#galeriaSlider .galeriaBg{
			width:50vw;
			flex:0 0 50vw;	
		}

	/*CONTATO*/
		.contatoBackground{
			padding: 50px 0;
		}
		.contatoConteudo{
			flex-wrap: wrap;
		}	
		.contatoMapa{
			width: 100%;
			height: 300px;
			min-height: 300px;
			border-radius: 10px;
			overflow: hidden;
		}
		.contatoMapa iframe{
			min-height: 300px;
		}
		.contatoInfo{
			width: 100%;
			padding: 10px 0;
			margin: 25px 0 0;
		}		
		.contatoAcoes{
			display: flex;
			flex-wrap: wrap;
			gap: 12px;
		}
		.contatoAcoes a{
			width: 100%;
			height: 40px;
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: center;
			border-radius: 10px;
		}
		.contatoAcoes a:last-child{
			background-image:linear-gradient(45deg, #E93, #C71);
		}

	/*FOOTER*/
		footer{
			width: 100%;
			padding: 50px 0;
		}


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