* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

img,
video,
svg {
	display: block;
	width: 100%;
	height: auto;
}

:root {
	--azulescuro: #09004D;
	--azulclaro: #7BC2F7;
	--roxo: #73185F;
	--roza: #FF276E;
	--vermelho: #EF052A;
	--laranja: #FB5A1C;
	--amarelo: #FED047;
	--verde: #1EA134;
	--verdefotter: #154e1e76;
	--castanho: #8B4A15;
	--branco: #FCF9F0;
	--cinzento: #908A78;
	--preto: #100413;

}


.banda {
	width: 100%;
}

.relativo {
	position: relative;
}



.azulescuro {
	background-color: var(--branco);

}

.roxo {
	background-color: var(--roxo);
}

.branco {
	background-color: var(--branco);
}

.max {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.max2000 {
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
}

.grelha {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	column-gap: 24px;
}




@font-face {
	font-family: formiga-medium;
	src: url(tipos_fonts/formiga/60810.otf);
	font-weight: normal;
}


@font-face {
	font-family: formiga-bold;
	src: url(tipos_fonts/formiga/60812.otf);
	font-weight: bold;
}


@font-face {
	font-family: formiga-light;
	src: url(tipos_fonts/formiga/60815.otf);
	font-weight: 100;
}



@font-face {
	font-family: opensans;
	src: url(tipos_fonts/open_sans/OpenSans-VariableFont_wdth\,wght.ttf);
}

h1 {
	font-family: formiga-light;
	font-size: 128px;
	line-height: 80px;
	color: var(--branco);
	text-align: left;
}

h2 {
	font-family: formiga-medium;
	font-size: 32px;
	line-height: 44px;
	color: var(--branco);
	margin-bottom: 35px;
	text-align: left;
}

h3 {
	font-family: opensans;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
	color: var(--branco);
	margin-bottom: 35px;
	text-align: left;
}

h5 {
	font-family: opensans;
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	color: var(--branco);
	text-align: left;
	margin-bottom: 20px;
}

h6 {
	font-family: opensans;
	font-size: 14px;
	font-weight: 500;
	line-height: 29px;
	color: var(--branco);
	text-align: left;
	margin-bottom: 40px;
}


p {
	font-family: opensans;
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	color: var(--branco);
	margin-bottom: 25px;
	text-align: left;
}

body {
	background-color: var(--azulescuro);
}


.destaquebranco {
	font-weight: 700;
}

.destaquepreto {
	color: var(--preto);
}

.destaquepretobold {
	color: var(--preto);
	font-weight: 700;
}

.inputs {
	border: 2px solid var(--branco);
	background-color: transparent;
	border-radius: 10px;
	padding: 15px;
	font-family: opensans;
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	color: var(--branco);
	text-align: left;

}

.inputs::placeholder {
	color: var(--branco);
}

.inputs:focus {
	outline: none;
}

.destaques_n {
	grid-column: auto/ span 4;
	border: 3px solid var(--amarelo);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 250px;
}

.destaques_n h3 {
	grid-column: auto/ span 4;
	margin-top: 48px;
	margin-bottom: 10px;
}

.destaques_n h3,
.destaques_n p {
	color: var(--preto);
	padding-right: 32px;
	padding-left: 32px;
	padding-bottom: 25px;
}



#header {
	margin-top: 30px;
	display: grid;
}

#logoheader1 {
	grid-column: 1 / 5;
	width: 200px;
	margin-left: 24px;
	align-self: center;
	display: block;
}


#hamburgermenu {
	display: none;
}

.visible {
	display: none !important;
}


#close {
	display: none;
}



#navmobile {
	margin-top: 150px;
	grid-column: 2/12;
}



#navmobile a {
	text-decoration: none;
	color: var(--branco);
	text-align: center;
	margin-bottom: 50px;
	display: block;
	font-family: opensans;
	font-size: 18px;
	font-weight: 600;
}

#navmobile a:hover{
	color: var(--amarelo);
	cursor: pointer;
}



nav {
	grid-column: -1 / -9;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	align-items: center;
}

nav a {
	color: var(--branco);
	text-decoration: none;
	font-family: opensans;
	font-size: 18px;
	font-weight: 600;
	padding: 0px 24px;
	position: relative;
}

nav a:hover{
	color: var(--amarelo);
	cursor: pointer;
}

.menuflex {
	height: 100vh !important;
}


#menumobile {
	width: 100%;
	height: 0;
	z-index: 10000;
	position: fixed;
	transition: height .5s;
	top: 100px;
	overflow: hidden;
	background-color: var(--azulescuro);
}

#navmobile {
	margin-top: 150px;
	grid-column: 1/13;
	grid-row: 1;
	z-index: 100;
}

#menumobile img {
	grid-row: 1;
	grid-column: 1/13;
}


#navmobile a {
	color: var(--branco);
	text-decoration: none;
	font-family: opensans;
	font-size: 18px;
	font-weight: 600;
}

#composicaosobre {
	margin-top: 30px;
	grid-column: 1/13;
	grid-row: 2/4;
	z-index: -100;
	position: relative;
	top: 100px;
}

#composicaosobre_mobile {
	display: none;
}


#sobretitle {
	text-align: center;
	grid-column: 1/13;
	align-self: center;
	grid-row: 2;
	margin-top: 350px;
}


#txt1 {
	grid-column: 1 / 6;
	grid-row: 1;
	margin-top: 200px;
}

#imgs_sobre_1 {
	grid-column: 6 / 13;
	display: grid;
	column-gap: 24px;
	grid-template-columns: repeat(7, 1fr);
	grid-template-rows: auto auto 1fr;
	grid-row: 1;
	margin-top: 290px;

}

#imgs_sobre_1 img:nth-child(1) {
	grid-column: 2/5;
	grid-row: 1;
	margin-bottom: 24px;
	border-radius: 10px;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	animation: popUp linear forwards;
	animation-timeline: view();
	animation-range: entry 25% entry 100%;
}

#imgs_sobre_1 img:nth-child(2) {
	grid-column: 5/8;
	grid-row: 1/3;
	border-radius: 10px;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	animation: popUp linear forwards;
	animation-timeline: view();
	animation-range: entry 25% entry 100%;
}

#imgs_sobre_1 img:nth-child(3) {
	grid-column: 1/5;
	grid-row: 2/4;
	border-radius: 10px;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	animation: popUp linear forwards;
	animation-timeline: view();
	animation-range: entry 25% entry 100%;

}

#imgs_sobre_1 img:nth-child(4) {
	grid-column: 5/8;
	grid-row: 3;
	margin-top: 24px;
	border-radius: 10px;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	animation: popUp linear forwards;
	animation-timeline: view();
	animation-range: entry 25% entry 100%;
}

#imgs_sobre_1 img:nth-child(5) {
	display: none;
}

#imgs_sobre_1 img:nth-child(6) {
	display: none;
}


#txt2 {
	grid-column: 7 / 12;
	grid-row: 2;
	margin-top: 50px;
}

@keyframes popUp {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

#imgs_sobre_2 {
	grid-column: 1 / 6;
	display: grid;
	column-gap: 24px;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: auto auto 1fr;
	grid-row: 2;
	margin-top: 50px;

}

#imgs_sobre_2 img:nth-child(1) {
	grid-column: 2/6;
	grid-row: 1;
	margin-bottom: 24px;
	border-radius: 10px;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	animation: popUp linear forwards;
	animation-timeline: view();
	animation-range: entry 25% entry 100%;
}

#imgs_sobre_2 img:nth-child(2) {
	grid-column: 1/4;
	grid-row: 2;
	border-radius: 10px;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	animation: popUp linear forwards;
	animation-timeline: view();
	animation-range: entry 25% entry 100%;
}


#imgs_sobre_2 img:nth-child(3) {
	grid-column: 4/6;
	grid-row: 2;
	border-radius: 10px;
	margin-bottom: 200px;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	animation: popUp linear forwards;
	animation-timeline: view();
	animation-range: entry 25% entry 100%;
}

#imgs_sobre_2 img:nth-child(4) {
	display: none;
}

#imgs_sobre_2 img:nth-child(5) {
	display: none;
}


#bandeiras_v_v_sobre {
	margin-top: 200px;
	position: absolute;
}



#txt3 {
	grid-row: 1;
	grid-column: 4/10;
	margin-top: 150px;
	margin-bottom: 100px;
}


#txt3 h2 {
	text-align: center;
	margin-bottom: 20px;

}

#txt3 p {
	margin-top: 35px;
	text-align: center;
}



#sao_joao {
	grid-row: 1;
	grid-column: 4/10;
	margin-top: 150px;
	position: relative;
	top: 400px;
}

#sao_joao_800 {
	display: none;
}

#txt4 {
	grid-column: 1 / 6;
	grid-row: 1;
	margin-top: 100px;
}

#bailarinos {
	grid-column: 8 /12;
	grid-row: 1;
	margin-top: 100px;
}

#polaroides_sobre_1 {
	grid-column: 1 / 7;
	grid-row: 2;
	margin-bottom: 100px;
	position: relative;
	top: -50px;
}

#txt5 {
	grid-column: 8 /13;
	grid-row: 2;
	margin-top: 100px;
}

#txt6 {
	grid-column: 1 / 6;
	grid-row: 1;
	margin-top: 200px;
}

#bailarinas {
	grid-column: 7 /13;
	grid-row: 1;
	margin-top: 200px;
}

#polaroides_sobre_2 {
	grid-column: 1 / 7;
	grid-row: 2;
	margin-bottom: 100px;
	position: relative;
	top: -50px;
}


#polaroides_sobre_1_mobile {
	display: none;
}


#polaroides_sobre_2_mobile {
	display: none;
}

#txt7 {
	grid-column: 8 /13;
	grid-row: 2;
	margin-top: 100px;
}

#luzes {
	display: block;
}

#luzesmobile {
	display: none;
}

#destaquesssss {
	grid-column: 1/13;
	color: var(--preto);
	margin-top: 250px;
	margin-bottom: 100px;
}

#txt8 {
	grid-column: 5/9;
	grid-row: 1;
	margin-top: 100px;
}

#txt8 h2 {
	text-align: center;
	margin-bottom: 20px;
}

#txt8 h3 {
	text-align: center;
	color: var(--amarelo);
	margin-bottom: 80px;
}


#nome {
	grid-row: 2;
	grid-column: 4/7;
}


#email {
	grid-row: 2;
	grid-column: 7/10;
}

#mensagem {
	grid-row: 3;
	grid-column: 4/10;
	margin-top: 24px;
	margin-bottom: 30px;
}

#submeter {
	grid-row: 5;
	background-color: var(--branco);
	color: var(--roxo);
	grid-column: 7/10;
	margin-top: 24px;
	margin-bottom: 200px;
	text-decoration: none;
	text-align: center;

}

#submeter:hover {
	background-color: var(--amarelo);
	color: var(--roxo);
	cursor: pointer;

}





.grelhaacao {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto auto 1fr;
	column-gap: 24px;
}


#txteight {
	grid-column: 1/6;
	grid-row: 1;
	margin-top: 250px;

}

#txteight h2,
#txteight p {
	grid-column: 1/13;
}



#imgapp {
	grid-column: 6/13;
	grid-row: 1/4;
	margin-top: 200px;
	margin-bottom: 200px;
}

#imgappmobile {
	display: none;
}

#botoes {
	grid-column: 1/5;
	grid-row: 2;
	display: flex;
	gap: 20px;
	justify-content: flex-start;
}



#botoes a {
	height: 40px;
	width: auto;
	margin-top: 25px;
}

#botoes a img {
	transition: transform 0.3s ease;
}

#botoes a:hover img {
	transform: scale(1.1);
	cursor: pointer;
}


#botaodesaltar1 {
	position: fixed;
	right: 10px;
	bottom: 70px;
	z-index: 1000000000000;
	width: 70px;
	height: 70px;
	cursor: pointer;
	transition: transform 0.3s ease;
	display: none;

}

#botaodesaltar1 img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: opacity 0.4s ease;
}

.img-default {
	opacity: 1;
}

.img-hover {
	opacity: 0;
}

#botaodesaltar1:hover {
	transform: scale(1.2);
}


#botaodesaltar1:hover .img-default {
	opacity: 0;
}

#botaodesaltar1:hover .img-hover {
	opacity: 1;
}

#botaodesaltar1.active .img-default {
	opacity: 0;
}

#botaodesaltar1.active .img-hover {
	opacity: 1;
}


.mostrar_balao {
	display: block !important;
}

footer {
	display: grid;
	grid-template-rows: 65% auto 5%;
}

#fotterbackground {
	background-image: url(imgs/fotter.svg);
	background-repeat: no-repeat;
	background-size: 1600px;
	background-position: center top;
	height: 1000px;
}

#verdeescuro {
	background-color: var(--verdefotter);
	border-radius: 70px;
	grid-column: 1;
	grid-row: 2;
	z-index: 10;
}

#footermangerico {
	grid-column: 1;
	grid-row: 1/4;
	display: none;
}

#footermangerico973 {
	display: none;
}

#footermangerico835 {
	display: none;
}

#footermangerico642 {
	display: none;
}

#footermangerico445 {
	display: none;
}


#footermangericofinal {
	display: none;
}



#logofooter {
	grid-column: 1/13;
	grid-row: 1;
	width: 250px;
	margin-top: 45px;
	margin-bottom: 45px;
	justify-self: center;
}

footer .container {
	grid-area: auto/span 3;
	padding-left: 24px;
}

footer a {
	text-decoration: none;
}


#socials {
	display: flex;
	justify-content: space-between;
}

#socials a {
	width: 30px;
	height: 30px;
}


#socials a img {
	transition: transform 0.3s ease;
}

#socials a:hover img {
	transform: scale(1.2);
	cursor: pointer;
}


#separador {
	border-top: 3px solid var(--branco);
	grid-column: 1/13;
	margin-left: 24px;
	margin-right: 24px;
	margin-bottom: 20px;
}


#cameramdporto {
	grid-column: 1 / 8;
	padding-left: 24px;
	;
}

#desenvolvidopormap {
	grid-column: 8 / 13;
	text-align: right;
	padding-right: 24px;
}

#slider{
	display: none;
}



/* ------------------- RESPONSIVE -------------------- */



@media only screen and (max-width: 1200px) {

	h2 {
		padding-left: 24px;
		padding-right: 24px;
	}

	p {
		padding-left: 24px;
		padding-right: 24px;
	}

	#botoes {
		padding-left: 24px;
		padding-right: 24px;

	}

	footer {
		grid-template-rows: 30% auto 5%;
	}

	#fotterbackground {
		background-image: none;
		height: auto;

	}


	#footermangerico {
		display: block;
		grid-column: 1;
		grid-row: 1/4;
	}

}

@media only screen and (max-width: 985px) {

	h1 {
		font-size: 90px;
	}

	h2 {
		font-size: 28px;
		line-height: 42px;
	}

	p {
		font-size: 17px;
		line-height: 27px;

	}

	nav a {
		display: none;
	}


	#logoheader1 {
		width: 100%;
		max-width: 160px;
	}

	#hamburgermenu {
		width: 100%;
		max-width: 40px;
		margin-right: 24px;
	}

	#close {
		width: 100%;
		max-width: 64px;
		padding-right: 24px;

	}

	.visible {
		display: block !important;
	}


	#separador {
		margin-top: 30px;
	}

	#txt1 {
		grid-column: 1 / 8;
		grid-row: 1;
		margin-top: 200px;
	}

	#imgs_sobre_1 {
		grid-column: 7 / 13;
		grid-template-columns: repeat(7, 1fr);
		grid-template-rows: auto auto 1fr;
		grid-row: 1;
		margin-top: 290px;
		margin-bottom: 100px;

	}

	#imgs_sobre_1 img:nth-child(3) {
		display: none;
	}

	#txt2 {
		grid-column: 6 / 13;
		grid-row: 2;
	}


	#txt4 {
		grid-column: 1 / 8;
		grid-row: 1;
		margin-top: 100px;
	}

	#bailarinos {
		grid-column: 9 /13;
	}

	#polaroides_sobre_1 {
		grid-column: 1 / 6;
		grid-row: 2;
		margin-top: 100px;
		margin-bottom: 100px;
		position: relative;
		top: -0px;
	}

	#txt5 {
		grid-column: 6 /13;
		grid-row: 2;
		margin-top: 100px;
	}

	#txt6 {
		grid-column: 1 / 8;

	}

	#bailarinas {
		grid-column: 9 /13;
	}

	#txt7 {
		grid-column: 6 / 13;

	}

	#txt8 {
		grid-column: 4 / 10;

	}

	#polaroides_sobre_2 {
		grid-column: 1 / 6;
		margin-top: 100px;
		margin-bottom: 100px;
		position: relative;
		top: -0px;
	}

	.destaques_n {
		grid-column: auto/ span 6;
		border: 3px solid var(--amarelo);
		border-radius: 20px;
		overflow: hidden;
		margin-bottom: 200px;
	}

	.destaques_n h3 {
		grid-column: auto/ span 6;
	}


	#nome {
		grid-row: 2;
		grid-column: 3/7;
	}


	#email {
		grid-row: 2;
		grid-column: 7/11;
	}

	#mensagem {
		grid-row: 3;
		grid-column: 3/11;
		margin-top: 24px;
	}


	#submeter {
		grid-row: 4;
		grid-column: 7/11;
	}

	#txteight {
		grid-column: 1/8;
		margin-top: 150px;

	}

	#imgapp {
		grid-column: 6/13;
		grid-row: 3;
		margin-top: 100px;
		margin-bottom: 150px;
	}

	#botoes {
		grid-column: 1/7;
	}


	#footermangerico {
		display: none;
	}


	footer .container {
		grid-area: auto/span 4;
		padding-right: 24px;
	}


	footer {
		grid-template-rows: 20% auto 5%;
	}

	#footermangerico835 {
		grid-column: 1;
		grid-row: 1/4;
		display: block;
	}

	#footermangerico973 {
		display: none;
	}



	#cameramdporto {
		grid-column: 1 / 13;
		padding-left: 24px;
		padding-right: 24px;
	}

	#desenvolvidopormap {
		grid-column: 1 / 13;
		text-align: left;
		padding-left: 24px;
	}


}

@media only screen and (max-width: 800px) {

	#sobretitle {
		grid-row: 2/3;
		margin-top: 250px;
	}

	#txt3 {
		grid-column: 1/8;
	}

	#txt3 h2 {
		text-align: left;
		margin-bottom: 30px;

	}

	#txt3 p {
		margin-top: 0px;
		text-align: left;
	}

	#bandeiras_v_v_sobre {
		display: none;
	}

	#sao_joao {
		display: none;
	}

	#banda_sagrado_vs_profano {
		display: none;
	}

	#sao_joao_800 {
		display: block;
		grid-column: 1/13;
		grid-row: 2;
	}

	footer .container {
		grid-area: auto/span 5;
		padding-right: 24px;
	}


}

@media only screen and (max-width: 642px) {

	#sobretitle {
		grid-row: 2/3;
		margin-top: 150px;
	}

	h1 {
		font-size: 64px;
	}

	#txt1 {
		grid-column: 1 / 11;
		grid-row: 1;
		margin-top: 200px;
	}

	#imgs_sobre_1 {
		grid-row: 2;
		grid-column: 1 / 13;
		margin-top: 100px;
	}

	#imgs_sobre_1 img:nth-child(1) {
		grid-column: 1/5;
		grid-row: 1;
	}

	#imgs_sobre_1 img:nth-child(4) {
		grid-column: 4/8;
	}
	

	#txt2 {
		grid-column: 1 / 11;
		grid-row: 3;

	}

	#imgs_sobre_2 {
		grid-row: 4;
		grid-column: 1 / 13;
		margin-top: 100px;
	}

	#txt3 {
		grid-column: 1 / 11;

	}

	#txt4 {
		grid-column: 1 / 11;

	}

	#bailarinos {
		grid-column: 3 /13;
		grid-row: 2;
		margin-bottom: 100px;
	}



	#txt5 {
		grid-column: 1 / 11;
		grid-row: 3;
	}



	#polaroides_sobre_1 {
		grid-column: 2 / 11;
		grid-row: 4;
		margin-bottom: 100px;
		position: relative;
		top: -50px;
	}

	#txt6 {
		grid-column: 1 / 11;

	}


	#bailarinas {
		grid-column: 3 /13;
		grid-row: 2;
		margin-top: 100px;
		margin-bottom: 100px;
	}


	#txt7 {
		grid-column: 1 / 11;
		grid-row: 3;

	}

	#polaroides_sobre_2 {
		grid-column: 2 / 11;
		grid-row: 4;
		margin-bottom: 100px;
		position: relative;
		top: -50px;
	}


	#txt8 {
		grid-column: 2 / 12;

	}


	.destaques_n {
		grid-column: auto/ span 8;
		border: 3px solid var(--amarelo);
		border-radius: 20px;
		overflow: hidden;
		margin-bottom: 100px;
	}

	.destaques_n h3 {
		grid-column: auto/ span 8;
	}


	#nome {
		grid-row: 2;
		grid-column: 2/7;
		margin-top: 50px;
	}


	#email {
		grid-row: 2;
		grid-column: 7/12;
		margin-top: 50px;
	}

	#mensagem {
		grid-row: 3;
		grid-column: 2/12;
		margin-top: 24px;
	}

	#submeter {
		grid-row: 4;
		grid-column: 7/12;
	}


	#txteight {
		grid-column: 1/11;
		margin-top: 150px;

	}

	#botoes {
		grid-column: 1/13;
	}

	#imgapp {
		grid-column: 3/13;
	}




	footer .container {
		grid-area: auto/span 10;
		padding-right: 24px;
	}

	#footermangerico835 {
		display: none;
	}

	#footermangerico642 {
		display: block;
		grid-column: 1;
		grid-row: 1/4;
	}

	#verdeescuro {
		grid-template-rows: repeat(7, auto) 1fr;

	}

	#verdeescuro h3 {
		margin-bottom: 45px;
		margin-top: 45px;
	}

	#verdeescuro h5 {
		margin-top: 20px;
		margin-bottom: 0px;
	}

	#verdeescuro h6 {
		margin-top: 0px;
		margin-bottom: 0px;
	}

	#socials a {
		width: 40px;
		height: 40px;

	}


	#logofooter {
		width: 200px;
		margin-top: 45px;
		margin-bottom: 45px;
		justify-self: center;
	}

	footer {
		grid-template-rows: 10% auto 5%;
	}

	footer .container h3 {
		margin-top: 60px;
		margin-bottom: 40px;
	}

}

@media only screen and (max-width: 485px) {

	#navmobile {
		margin-top: 70px;
	}

	#navmobile a {
		font-size: 20px;
	}

	#sobretitle {
		text-align: center;
		grid-column: 1/13;
		align-self: center;
		grid-row: 2/3;
		margin-top: 0px;
	}

	h2 {
		font-size: 28px;
		line-height: 42px;
	}


	#composicaosobre {
		display: none;
	}

	#composicaosobre_mobile {
		display: block;
		margin-top: 0px;
		grid-column: 1/13;
		grid-row: 2;
		z-index: -100;
		position: relative;
		top: 30px;
	}

	#botaodesaltar1 {
		width: 40px;
		height: 40px;
	}

	#txt1 {
		grid-column: 1 / 13;
		margin-top: 150px;
	}

	#imgs_sobre_1 img:nth-child(1) {
		display: none;
	}

	#imgs_sobre_1 img:nth-child(2) {
		display: none;
	}

	#imgs_sobre_1 img:nth-child(4) {
		display: none;
	}


	#imgs_sobre_1 img:nth-child(5) {
		display: block;
		grid-column: 1/13;
		margin-bottom: 24px;
		opacity: 0;
		transform: translateY(40px) scale(0.95);
		animation: popUp linear forwards;
		animation-timeline: view();
		animation-range: entry 25% entry 100%;
	}

	#imgs_sobre_1 img:nth-child(6) {
		display: block;
		grid-column: 1/13;
		grid-row: 2;
		opacity: 0;
		transform: translateY(40px) scale(0.95);
		animation: popUp linear forwards;
		animation-timeline: view();
		animation-range: entry 25% entry 100%;
	}

	#imgs_sobre_2 img:nth-child(4) {
		display: block;
		grid-column: 1/13;
		grid-row: 2;
		margin-bottom: 200px;
		opacity: 0;
		transform: translateY(40px) scale(0.95);
		animation: popUp linear forwards;
		animation-timeline: view();
		animation-range: entry 25% entry 100%;
	}

	#imgs_sobre_2 img:nth-child(5) {
		display: block;
		grid-column: 1/13;
		grid-row: 1;
		margin-bottom: 24px;
		opacity: 0;
		transform: translateY(40px) scale(0.95);
		animation: popUp linear forwards;
		animation-timeline: view();
		animation-range: entry 25% entry 100%;
	}

	#imgs_sobre_2 img:nth-child(1) {
		display: none;
	}

	#imgs_sobre_2 img:nth-child(2) {
		display: none;
	}

	#imgs_sobre_2 img:nth-child(3) {
		display: none;
	}

	#txt2 {
		grid-column: 1 / 13;
	}

	#txt3 {
		grid-column: 1 / 13;
	}

	#txt3 h2 {
		margin-bottom: 0px;

	}

	#txt3 p {
		margin-top: 35px;
	}

	#txt4 {
		grid-column: 1 / 13;
	}

	#bailarinos {
		grid-column: 2 /13;
	}

	#txt5 {
		grid-column: 1 / 13;
	}

	#txt6 {
		grid-column: 1 / 13;
	}

	#bailarinas {
		grid-column: 1 /13;
	}

	#polaroides_sobre_1 {
		display: none;
	}

	#polaroides_sobre_1_mobile {
		display: block;
		grid-column: 1 / 13;
		position: relative;
		top: -0px;
		margin-top: 100px;
		margin-bottom: 150px;
	}


	#polaroides_sobre_2 {
		display: none;
	}

	#polaroides_sobre_2_mobile {
		display: block;
		grid-column: 1 / 13;
		position: relative;
		top: -0px;
		margin-top: 100px;
		margin-bottom: 150px;
	}


	#txt7 {
		grid-column: 1 / 13;
	}

	#luzes {
		display: none;
	}

	#luzesmobile {
		display: block;
	}

	#txt8 {
		grid-column: 1 / 13;
	}

	#txt8 h3 {
		padding-left: 24px;
		padding-right: 24px;
		margin-bottom: 25px;
	}

	.destaques_n {
		grid-column: auto/ span 13;
		margin-left: 24px;
		margin-right: 24px;
	}

	.destaques_n h3 {
		grid-column: auto/ span 13;
	}

	.hide{
		display: none;
	}


	#nome {
		grid-row: 2;
		grid-column: 1/13;
		margin-top: 70px;
		margin-right: 24px;
		margin-left: 24px;
	}


	#email {
		grid-row: 3;
		grid-column: 1/13;
		margin-top: 30px;
		margin-right: 24px;
		margin-left: 24px;
	}

	#mensagem {
		grid-row: 4;
		grid-column: 1/13;
		margin-top: 30px;
		margin-right: 24px;
		margin-left: 24px;
		margin-bottom: 0px;
	}


	#submeter {
		grid-row: 5;
		grid-column: 1/13;
		margin-top: 30px;
		margin-right: 24px;
		margin-left: 24px;
	
	}


	#imgapp {
		display: none;
	}

	#imgappmobile {
		display: block;
		grid-column: 1/13;
		grid-row: 3;
		margin-top: 100px;
		margin-bottom: 200px;

	}


	#txteight {
		grid-column: 1/13;

	}

	#txteight p {
		margin-bottom: 50px;

	}

	#botoes {
		grid-column: 1/13;
		padding-left: 24px;
		padding-right: 24px;
	}

	#botoes a {
		height: auto;
		width: 100%;
		margin-top: 25px;
	}

	#footermangerico642 {
		display: none;
	}


	#footermangerico445 {
		display: block;
		grid-column: 1;
		grid-row: 1/4;
	}


	#desenvolvidopormap {
		padding-bottom: 25px;
	}

	#slider{
		display: block;
		grid-column: 1/13;
		margin-bottom: 150px;
	}

}




@media only screen and (max-width: 411px) {


	#footermangericofinal {
		display: block;
		grid-column: 1;
		grid-row: 1/4;
	}


	#footermangerico445 {
		display: none;
	}


}