html, body{
	padding:0px;
	margin:0px;
	overflow-x: hidden;
	background-color: #000;
	background-size: contain;
	background-image: url('../img/background01.webp');
}
a, ul, li, p, h1, h2, h3, h4, h5, h6, button, input, textarea{
	text-decoration:none;
	margin: 0px;
	padding: 0px;
	line-height: 125%;
	font-family: "Libre Franklin", sans-serif;
	color: #000;
}
p{
	font-size: 18px;
	color: #333;
}
a{
	color: inherit;
}
.container{
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

/*CTA*/
	.cta{
		padding: 15px 20px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border-radius: 5px;
		box-shadow: 0 0 20px #2C5;
		transition: .3s;
		font-size: 16px;
		font-weight: 800;
		text-transform: uppercase;
		text-decoration: none;
		letter-spacing: 0.5px;
		color: #000C;
		background-image: linear-gradient(to right, #2C5, #2D4);
	}
	.cta:hover{
		filter: brightness(1.1);
		box-shadow: 0 10px 30px #2D49;
		transform: translateY(-3px);
	}

/*TITULO*/
	.titulo{
		width: 100%;
	}
	.titulo h2{
		font-size:40px;
		font-weight:800;
		line-height:115%;
		color: #FC0;
	}
    .titulo h2 span{
		font-weight:300;
		color: #FFF;
    }

/*HEADER*/
	header{
		width: 100%;
		padding: 20px 0;
		position: absolute;
		z-index: 999;
		background-image: linear-gradient(to bottom, #000C, #0000);
	}
	header .container{
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 30px;
	}
	.headerMarca{
		margin: 0 50px 0 0;
		flex-shrink: 0;
	}
	.headerMarca img{
		width: 200px;
		display: block;
		filter: invert(1);
	}
	.headerConteudo{
		width: 100%;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 30px;
	}
	.headerMenu ul{
		display: flex;
		align-items: center;
		list-style: none;
		gap: 25px;
		margin: 0;
		padding: 0;
	}
	.headerMenu li a{
		color: #FFF;
		font-size: 16px;
		font-weight: 700;
		text-decoration: none;
		transition: .3s;
	}
	.headerMenu li a:hover{
		color: #ffcc00;
	}

/*SESSAO BANNER*/
	.sessaoBanner{
		width: 100%;
		position: relative;
		z-index: 1;
		overflow: hidden;
		background-size: cover;
		background-position: center;
		background-image: url(../img/sessao01Bg.webp);
	}
	.sessaoBanner::before,
	.sessaoBanner::after{
		content: "";
		width: 500px;
		height: 500px;
		position: absolute;
		z-index: 0;
		background: radial-gradient(circle, #FC05 0%, #FC01 40%, transparent 70%);
	}
	.sessaoBanner::before{
		top: -50px;
		left: -150px;		
		filter: blur(80px);
	}
	.sessaoBanner::after{
		bottom: -150px;
		right: -150px;
		filter: blur(100px);
	}
	.sessaoBannerBackground{
		width: 100%;
		padding: 100px 0 0;
		background-image: linear-gradient(to bottom, #000C, #000);
	}
	.sessaoBannerBackground .container{
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 50px;
		position: relative;
		z-index: 2;
	}
	.sessaoBannerConteudo{
		width: 50%;
		margin: 0;
	}
	.sessaoBannerConteudoTag{
		display: inline-block;
		margin: 0 0 20px 0;
	}
	.sessaoBannerConteudoTag p{
		font-size: 12px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1px;
		color: #FFF;
	}
	.sessaoBannerConteudoTitulo{
		width: 100%;
	}
	.sessaoBannerConteudoTitulo h1{
		margin: 0 0 20px 0;
		font-size: 50px;
		line-height: 115%;
		font-weight: 900;
		background: linear-gradient(90deg, #FC0, #FE6);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;		
	}
	.sessaoBannerConteudoTitulo p{
		margin: 0 50px 30px 0;
		font-size: 18px;
		font-weight: 300;
		line-height: 150%;
		color: #CCC;
	}
	.sessaoBannerImagem{
		width: 55%;
		height: 750px;
		margin: -100px -100px 0 0;
		position: relative;
	}
	.sessaoBannerImagemBg{
		width: 100%;
		height: 750px;
		margin: 0 -100px 0 0;
		display: flex;
		align-items: flex-start;
		justify-content: center;
	}
	.sessaoBannerImagemBg img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	.sessaoBannerItem{
		width: 100%;
		display: flex;
		margin: 25px 0;
		gap: 15px;
	}
	.sessaoBannerItem p{
		display: flex;
		align-items: center;
		font-size: 14px;
		line-height: 110%;
		color: #AAA;
	}
	.sessaoBannerItem p span{
		padding: 0 5px 0 0;
		font-size: 18px;
		color: #FC0;
	}
	.sessaoBannerEfeito01{
		width: 100%;
		height: 2px;
		position: absolute;
		bottom: 0;
		left: 0;
		position: relative;
		z-index: 3;
		background-image: linear-gradient(to right, #FC09, #FFF9, #0000 60%);
	}

/*SESSAO MODALIDADES*/
	.sessaoModalidades{
		width: 100%;
		padding: 100px 0;
		background-image: linear-gradient(to bottom, #000, #0006);
	}
	.sessaoModalidades .titulo{
		text-align: center;
	}
	.sessaoModalidadesConteudo{
		width: 100%;
		margin: 50px 0 0;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		box-sizing: border-box;
		gap: 25px;
	}
	.sessaoModalidadesCard{
		padding: 20px;
		display: flex;
		flex-direction: column;
		border-radius: 20px;
		border: 2px solid #333;
		transition: .3s ease;
		background-image: linear-gradient(180deg, #FFF0, #FFF1);
		box-shadow: 0 15px 40px #0003;
	}
	.sessaoModalidadesCard:hover{
		transform: translateY(-6px);
		border-color: #FC03;
		background-image: linear-gradient(180deg, #FFF0, #FFF2);
		box-shadow: 0 15px 45px #FC01;
	}
	.sessaoModalidadesImagem{
		width: 100%;
		height: 260px;
		margin: 0 0 25px;
		border-radius: 15px;
		overflow: hidden;
	}
	.sessaoModalidadesImagem img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	.sessaoModalidadesTexto{
		width: 100%;
	}
	.sessaoModalidadesTexto h3{
		margin: 0 0 10px;
		font-size: 24px;
		font-weight: 800;
		color: #CCC;
		text-align: center;
		letter-spacing: 1px;
	}
	.sessaoModalidadesTexto p{
		font-size: 16px;
		font-weight: 300;
		line-height: 150%;
		text-align: center;
		color: #DDD;
	}
	.sessaoModalidadesTexto p span{
		font-weight: 700;
	}
	.sessaoModalidadesCta{
		margin: 30px 0 0;
		display: none;
		justify-content: center;
	}
	.sessaoModalidadesCta a{
		width: 40px;
		height: 40px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0;
		background: #555;
		position: relative;
		transition: .3s ease;
	}
	.sessaoModalidadesCta a::before{
		content: "✚";
		font-size: 20px;
		color: #000;
	}
	.sessaoModalidadesCta a:hover{
		transform: rotate(90deg);
		background: #2C5;
	}
	.sessaoModalidadesAviso{
		margin-top: 45px;
		padding: 18px 24px;
		text-align: center;
		font-size: 16px;
		line-height: 1.5;
		color: #E5E5E5;
		max-width: 720px;
		margin-left: auto;
		margin-right: auto;
		letter-spacing: 1px;

		background: linear-gradient(180deg, #1A1A1A, #111);
		border: 1px solid #333;
		border-radius: 16px;
	}
	.sessaoModalidadesAviso span{
		font-weight: bold;
		font-size: 19px;
		letter-spacing: 0px;
		text-transform: uppercase;
		color: #FFF;
	}
	.sessaoModalidadesAviso a{
		margin: 25px 0 0;
	}

/*SESSAO ESTRUTURA*/
	.sessaoEstrutura{
		width: 100%;
		padding: 75px 0;
		position: relative;
		background-image: linear-gradient(to bottom, #0006, #000);
	}	
	.sessaoEstruturaConteudo{
		width: 100%;
		margin: 50px 0 0;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sessaoEstruturaConteudoArrows{
		width: 100%;
		height: 100px;
		position: absolute;
		top: -140px;
	}
	.sessaoEstruturaArrow{
		width: 60px;
		height: 60px;
		border-radius: 50%;
		transition: .3s ease;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 10;
		font-size: 24px;
		cursor: pointer;
		color: #000;
		background-color: #FFF;
	}
	.sessaoEstruturaArrow:hover{
		color: #000;
		background-color: #FC0;
	}
	.sessaoEstruturaArrow.prev{
		right: 100px;
	}
	.sessaoEstruturaArrow.next{
		right: 20px;
	}
	.sessaoEstruturaCarrosel{
		width: 100%;
		overflow: hidden;
		position: relative;
		height: 560px;
	}
	.sessaoEstruturaTrack{
		width: 100%;
		height: 100%;
		position: relative;
		cursor: grab;
	}
	.sessaoEstruturaTrack:active{
		cursor: grabbing;
	}
	.sessaoEstruturaItem{
		width: 30%;
		position: absolute;
		top: 50%;
		left: 50%;
		padding: 0 20px;
		box-sizing: border-box;
		border-radius: 30px;
		transition: all .45s ease;
		filter: grayscale(1);
		pointer-events: none;
		transform: translate(-50%, -50%);
	}
	.sessaoEstruturaItem img{
		width: 100%;
		height: 420px;
		object-fit: cover;
		display: block;
		border-radius: 32px;
	}
	.sessaoEstruturaItem img:hover{
		transition: 0.3s;
		transform: scale(1.02);
	}
	.sessaoEstruturaInfo{
		position: absolute;
		left: 50px;
		right: 50px;
		top: 430px;
		display: flex;
		opacity: 0;
		transition: .3s ease;
	}
	.sessaoEstruturaInfo h3{
		font-size: 18px;
		text-transform: uppercase;
		line-height: 115%;
		color: #DDD;
	}
	.sessaoEstruturaItem.is-active{
		filter: grayscale(0);
		transform: translate(-50%, -65%);
		z-index: 5;
		pointer-events: auto;
	}
	.sessaoEstruturaItem.is-active .sessaoEstruturaInfo{
		opacity: 1;		
	}
	.sessaoEstruturaItem.is-left-1{
		transform: translate(-145%, -50%);
		z-index: 4;
	}
	.sessaoEstruturaItem.is-left-2{
		transform: translate(-240%, -50%);
		z-index: 3;
	}
	.sessaoEstruturaItem.is-right-1{
		transform: translate(45%, -50%);
		z-index: 4;
	}
	.sessaoEstruturaItem.is-right-2{
		filter: grayscale(1);
		transform: translate(140%, -50%);
		z-index: 3;
	}
	.sessaoEstruturaItem.is-hidden{
		opacity: 0;
		transform: translate(-50%, -50%);
		z-index: -1;
	}
	.sessaoEstruturaEfeito01{
		width: 100%;
		height: 2px;
		position: absolute;
		bottom: -75px;
		left: 0;
		position: relative;
		z-index: 3;
		background-image: linear-gradient(to left, #FC09, #FFF9, #0000 80%);
	}

/*SESSAO PLANOS*/
	.sessaoPlanos{
		width: 100%;
		background-size: cover;
		background-position: center;
		background-image: url(../img/sessao01Bg.webp);
	}
	.sessaoPlanosBackground{
		width: 100%;
		padding: 100px 0;
		background-image: linear-gradient(to bottom, #000, #0009);
	}
	.sessaoPlanos .titulo{
		text-align: center;
	}
	.sessaoPlanosConteudo{
		width: 100%;
		margin: 50px 0;
		display: flex;
		justify-content: center;
		gap: 40px;
	}
	.sessaoPlanosCard{
		width: 100%;
		max-width: 380px;
		padding: 40px 30px;
		border-radius: 30px;
		background: linear-gradient(180deg, #222, #111);
		border: 2px solid #FFF1;
		box-shadow: 0 15px 40px #222;
		text-align: center;
		transition: .3s ease;
	}
	.sessaoPlanosCard:hover{
		transform: translateY(-6px);
		border-color: #FC03;
		box-shadow: 0 18px 45px #FC01;
	}
	.sessaoPlanosCardDestaque{
		background-image: linear-gradient(180deg, #555, #666);
	}
	.sessaoPlanosCard h3{
		margin: 0 0 20px;
		font-size: 24px;
		color: #FFF;
	}
	.sessaoPlanosPreco{
		display: flex;
		justify-content: center;
		margin-bottom: 0;
	}
	.sessaoPlanosPreco p{
		font-size: 60px;
		font-weight: 900;
		color: #FC0;
	}
	.sessaoPlanosPreco span{
		font-size: 22px;
		margin-right: 5px;
		color: #DDD;
	}
	.sessaoPlanosPreco small{
		font-size: 14px;
		letter-spacing: 1px;
		margin-left: 5px;
		color: #DDD;
	}
	.sessaoPlanosCard ul{
		list-style: none;
		margin: 0 0 30px;
		padding: 0;
	}
	.sessaoPlanosCard ul li{
		padding: 10px 0;
		border-bottom: 1px solid #444;
		font-size: 16px;
		color: #FFF;
	}

/*SESSAO SOBRE*/
	.sessaoSobre{
		width: 100%;
		padding: 100px 0;
		background-image: linear-gradient(to bottom, #000, #0006);
	}
	.sessaoSobre .container{
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 50px;
	}
	.sessaoSobreVideo{
		width: 45%;
		height: 600px;
		overflow: hidden;
		border-radius: 20px;
		position: relative;
		inset: 0;
		z-index: 1;
		overflow: hidden;
		background:#FC0;
	}
	.sessaoSobreVideo::after{
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(to right, #0002, transparent);
	}
	.sessaoSobreVideo iframe{
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100vw;
		height: 70vw; /* proporção 16:9 */
		min-width: 100%; /* 600 / 9 * 16 */
		min-height: 600px;
		transform: translate(-50%, -50%);
		border: 0;
		pointer-events: none;
	}
	.sessaoSobreConteudo{
		width: 55%;
	}	
	.sessaoSobreTexto{
		width: 100%;
		margin: 25px 0 50px;
	}
	.sessaoSobreTexto p{
		margin: 0 0 10px;
		font-weight: 300;
		line-height: 150%;
		color: #DDD;
	}
	.sessaoSobreNumeros{
		display: flex;
		gap: 25px;
		margin: 0 0 50px;
		text-align: center;
	}
	.sessaoSobreNumero{
		width: 100%;
		padding:25px 10px;
		display: flex;
		flex-direction: column;
		border-radius: 20px;
		border: 2px solid #333;
		transition: .3s ease;
		background-image: linear-gradient(180deg, #FFF0, #FFF1);
		box-shadow: 0 15px 40px #0003;
	}
	.sessaoSobreNumero h3{
		font-size: 30px;
		font-weight: 900;
		color: #FC0;
	}
	.sessaoSobreNumero h3 span{
		font-size: 48px;
	}
	.sessaoSobreNumero h3 sup{
		font-size: 30px;
		padding: 0 5px 0 0;
	}
	.sessaoSobreNumero p{
		margin: 0;
		font-size: 18px;
		color: #DDD;
	}

/*SESSAO MARQUEE*/
	.sessaoMarquee{
		width: 100%;
		padding: 20px 0;
		border-top: 1px solid #FFF1;
		border-bottom: 1px solid #FFF1;
		overflow: hidden;
		background-color: #FC0;
	}
	.sessaoMarqueeTrack{
		white-space: nowrap;
		display: flex;
	}
	.sessaoMarqueeTrack p{
		font-size: 28px;
		font-weight: 500;
		letter-spacing: 2px;
		color: #000;
		animation: marquee 20s linear infinite;
	}
	.sessaoMarqueeTrack p span{
		font-weight: 900;
	}
	/* animação */
	@keyframes marquee{
		from{
			transform: translateX(0);
		}
		to{
			transform: translateX(-50%);
		}
	}

/*SESSAO DEPOIMENTOS*/
	.sessaoDepoimentos{
		width: 100%;
		padding: 100px 0;
		background-image: linear-gradient(to bottom, #0006, #000);
	}
	.sessaoDepoimentosConteudo{
		width: 100%;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 75px;
	}	
	.sessaoDepoimentosTexto{
		width: 50%;
	}
	.sessaoDepoimentos .titulo h2{
		color: #FFF;
	}
	.sessaoDepoimentosLista{
		width: 100%;
		margin: 50px 0 0;
		position: relative;
		min-height: 150px;
	}
	.sessaoDepoimentosDescricao{
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(20px);
		transition: .4s ease;
	}
	.sessaoDepoimentosDescricao.ativo{
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		position: relative;
	}
	.sessaoDepoimentosDescricao p:nth-child(1){
		font-size: 20px;
		font-weight: 800;
		color: #DDD;
	}
	.sessaoDepoimentosDescricao p:nth-child(2){
		font-size: 18px;
		font-weight: 300;
		line-height: 150%;
		color: #DDD;
		margin: 15px 0;
	}
	.sessaoDepoimentosDescricao p:nth-child(3){
		font-size: 18px;
		color: #FC0;
	}
	.sessaoDepoimentosEfeito{
		width: 100%;
		height: 2px;
		position: relative;
		margin: 25px 0;
		z-index: 3;
		background-image: linear-gradient(to right, #FC09, #666, #0000 60%);
	}
	.sessaoDepoimentosFooter{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}
	.sessaoDepoimentosNav{
		display: flex;
		gap: 15px;
	}
	.sessaoDepoimentosNav button{
		width: 60px;
		height: 60px;
		border-radius: 10px;
		border: 2px solid #FC02;
		cursor: pointer;
		transition: .3s ease;
		font-weight: 900;
		font-size: 22px;
		color: #FFF;
		background-color: transparent;
	}
	.sessaoDepoimentosNav button:hover{
		border-color: #FC0;
		color: #000;
		background-color: #FC0;
	}
	.sessaoDepoimentosGoogle a{
		height: 60px;
		padding: 0 25px;
		border-radius: 10px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		border: 2px solid #FC02;
		transition: .3s ease;
		font-size: 16px;
		font-weight: 700;
		text-decoration: none;
		color: #000;
		background-color: #FC0;
	}
	.sessaoDepoimentosGoogle a:hover{
		filter: brightness(1.1);
	}
	.sessaoDepoimentosImagem{
		width: 480px;
		height: 480px;
		position: relative;
	}
	.sessaoDepoimentosImagem img{
		width: 280px;
		height: 280px;
		margin: 100px;
		position: absolute;
		filter: invert(1);
	}
	.sessaoDepoimentosImagem img:last-of-type{
		width: 300px;
		height: 300px;
		margin: 90px;
		animation: sessaoDepoimentosImagem 18s ease-in-out infinite;
	}
	@keyframes sessaoDepoimentosImagem{
		0%{
			transform: rotate(0);
		}
		100%{
			transform: rotate(360deg);
		}
	}

/*SESSAO FRASE*/
	.sessaoFrase{
		width: 100%;
		position: relative;
		overflow: hidden;
		background-size: cover;
		background-image:url(../img/background02.webp);
	}
	.sessaoFraseBackground{
		width: 100%;
		padding: 100px 0;
		background-image:linear-gradient(to right, #000, #0009);
	}
	.sessaoFrase::before{
		content: "";
		width: 500px;
		height: 100%;
		position: absolute;
		top: 0;
		left: -200px;
		z-index: 0;		
		transform: skew(-20deg);
		background-color: #111;
	}
	.sessaoFrase .container{
		display: flex;
		justify-content: space-between;
		position: relative;
		z-index: 2;
	}
	.sessaoFraseImagem{
		width: 300px;
		height: 100px;
		max-width: 300px;
	}
	.sessaoFraseImagem img{
		height: 500px;
		position: absolute;
		transform: scaleX(-1);
		top: -100px;
	}
	.sessaoFraseConteudo{
		width: 60%;
	}
	.sessaoFraseConteudo .titulo h2{
		line-height: 125%;
	}
	.sessaoFraseConteudo .titulo strong{
		color: #FFF;
	}
	.sessaoFraseConteudo .cta{
		margin: 50px 0 0;
	}

/*SESSAO FAQ*/
	.sessaoFaq{
		width: 100%;
		padding: 100px 0;
		background-image: linear-gradient(to top, #0006, #000);
	}
	.sessaoFaqConteudo{
		display: flex;
		align-items: flex-end;
		gap: 50px;
	}
	.sessaoFaqImagem{
		width: 40%;
		height: 400px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 20px;
		border: 2px solid #333;
		overflow: hidden;
		transition: 0.3s ease;
		box-shadow: 0 15px 40px #0003;
	}
	.sessaoFaqImagem img{
		width: 100%;
		display: block;
		transform: scaleX(-1);
	}
	.sessaoFaqImagem::before{
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 3;
		background: linear-gradient(to bottom, #0000, #FC01);
	}
	.sessaoFaqLista{
		width: 60%;
	}
	.sessaoFaqLista .titulo{
		margin: 0 0 50px 0;
	}
	.sessaoFaqItem{
		margin: 0 0 15px;
		padding: 20px;
		border: 2px solid #333;
		border-radius: 10px;
		cursor: pointer;
		transition: 0.3s ease;
		background-color: #111;
	}
	.sessaoFaqItem:last-of-type{
		margin: 0;
	}
	.sessaoFaqPergunta{
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 600;
	}
	.sessaoFaqPergunta p{
		font-size: 18px;
		letter-spacing: 1px;
		color: #FFF;
	}
	.sessaoFaqPergunta span{
		font-size: 22px;
		color: #FC0;
	}
	.sessaoFaqResposta{
		max-height: 0;
		overflow: hidden;
		transition: .3s ease;
	}
	.sessaoFaqResposta p{
		padding: 0 50px 0 0;
		font-weight: 300;
		font-size: 18px;
		line-height: 150%;
		color: #DDD;
	}
	.sessaoFaqItem.ativo .sessaoFaqResposta{
		max-height: 200px;
		margin-top: 10px;
	}

/*SESSAO CONTATO*/
	.sessaoContato{
		width: 100%;
		padding: 80px 0;
		background: #000;
	}
	.sessaoContato .container{
		display: flex;
		justify-content: space-between;
		gap: 25px;
	}
	.contatoItem{
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.contatoItemIcone{
		width: 50px;
		min-width: 50px;
		height: 50px;
		display: flex;
		grid-template: center;
		align-items: center;
		justify-content: center;
		border-radius: 10px;
		font-size: 20px;
		background-color: #FC0;
	}
	.contatoItemIcone:hover{
		filter: brightness(1.1);
	}
	.contatoItemIcone img{
		width: 30px;
	}
	.contatoItem p:first-of-type{
		font-size: 12px;
		font-weight: bold;
		text-transform: uppercase;
		margin-bottom: 5px;
		color: #FC0;
	}
	.contatoItem p:last-of-type{
		font-size: 18px;
		font-weight: 300;
		color: #FFF;
	}

/*SESSAO MAPA*/
	.sessaoMapa{
		width: 100%;
		height: 500px;
	}
	.sessaoMapa iframe{
		width: 100%;
		height: 100%;
		border: 0;
		filter: grayscale(1) brightness(.6);
	}

/*FOOTER*/
	footer{
		width: 100%;
		padding: 60px 0;
		background: #000;
	}
	.footerMarca{
		width: 100%;
		text-align: center;
	}
	.footerMarca img{
		width: 120px;
		margin: 0 0 25px;
	}
	.footerTexto{
		margin: 0 0 50px;
	}
	.footerTexto p{
		font-size: 22px;
		font-weight: 300;
		text-align: center;
		color: #CCC;
	}
	.footerTexto p span{
		font-weight: 400;
		letter-spacing: 1px;
		color: #FC0;		
	}
	.footerMenu{
		width: 100%;
	}
	.footerMenu ul{
		display: flex;
		justify-content: center;
		gap: 25px;
	}
	.footerMenu ul{
		font-size: 14px;
		text-transform: uppercase;
		letter-spacing: 1px;
	}
	.footerMenu a{
		text-decoration: none;
		transition: 0.3s;
		color: #CCC;
	}
	.footerMenu a:hover{
		color: #FC0;
	}
	.footerCopyright{
		width: 100%;
		margin: 50px 0 0;
	}
	.footerCopyright p{
		font-size: 12px;
		text-align: center;
		letter-spacing: 1px;
		color: #CCC;
	}
	.footerCopyright p:last-of-type{
		padding: 5px 0;
		font-size: 10px;
		color: #999;
	}

/*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;
	}
	.whatsappImagemBg img{
		width: 50px;
		height: 50px;
	}
	.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;
			filter: blur(0);
		}
		100%{
			transform: scale(1.5);
			background-color: #2D60;
			filter: blur(5px);
		}
	}







@media(max-width: 1024px){
	.sessaoEstruturaViewport{
		height: 460px;
	}

	.sessaoEstruturaItem{
		width: 42%;
	}

	.sessaoEstruturaItem img{
		height: 340px;
	}

	.sessaoEstruturaItem.is-left-2,
	.sessaoEstruturaItem.is-right-2{
		opacity: 0;
	}
}

@media(max-width: 768px){
	.sessaoEstruturaViewport{
		height: 400px;
	}

	.sessaoEstruturaItem{
		width: 78%;
	}

	.sessaoEstruturaItem img{
		height: 300px;
	}

	.sessaoEstruturaItem.is-left-1,
	.sessaoEstruturaItem.is-left-2,
	.sessaoEstruturaItem.is-right-1,
	.sessaoEstruturaItem.is-right-2{
		opacity: 0;
	}

	.sessaoEstruturaArrow.prev{
		left: 10px;
	}

	.sessaoEstruturaArrow.next{
		right: 10px;
	}
}