body {
	background: #000 url('../img/fundo.png') no-repeat center;
	height: 100vh;
	overflow: hidden;
}

.conent_main {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content_main .logo {
	display: flex;
	justify-content: center;
	margin-top: 100px;
}

.content_main .icon {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.content_main .icon div {
	display: flex;
	gap: 40px;
}

.content_main .map {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 50px;
}

.content_main .map .txt {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}

.content_main .map .txt p {
	color: #fff;
	font-size: 35px;
	margin-bottom: 5px;
	font-weight: 200;
}

.rodape {
	display: flex;
	width: 100%;
	height: 25px;
	background-color: #f5821f;
	position: fixed;
	bottom: 0;
}

@media (max-width: 1024px) {
	.content_main .logo {
		margin-top: 50px;
	}

	.content_main .logo img {
		width: 200px;
	}

	.content_main .icon img {
		width: 35px;
	}

	.content_main .map {
		flex-direction: column;
		justify-content: end;
		align-items: center;
		margin-top: 80px;
	}

	.content_main .map iframe {
		width: 90%;
		height: 350px;
	}

	.content_main .map .txt {
		margin-top: 0px;
	}

	.content_main .map .txt p {
		text-align: center;
		font-size: 20px;
	}

	.rodape {
		display: flex;
		width: 100%;
		height: 25px;
		background-color: #f5821f;
		position: fixed;
		bottom: 0;
	}
}

/* PAGE INSTA */

.page_insta {
	background-color: #000;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 50px 0;
}

.page_insta .buttons {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
	max-width: 440px;
	margin: auto;
}

.page_insta .buttons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	background-color: #fff;
	color: #000;
	font-size: 25px;
	font-weight: 600;
	transition: all 0.2s;
}

.page_insta .buttons a:hover {
	transform: skewX(-15deg);
	background-color: #f5821f;
	color: #fff;
}

.page_insta .info h3 {
	text-align: center;
	font-size: 30px;
	font-weight: 600;
	color: #f5821f;
}

.page_insta .info h3 span {
	color: #fff;
}

.page_insta .info h3 span a {
	color: #fff;
}

@media (max-width: 1200px) {
	.page_insta .logo {
		width: 200px;
	}

	.page_insta .buttons {
		gap: 30px;
	}

	.page_insta .buttons a {
		height: 45px;
		font-size: 20px;
	}

	.page_insta .info h3 {
		font-size: 25px;
	}
}

@media (max-width: 1200px) {
	.page_insta .logo {
		width: 200px;
	}

	.page_insta .buttons {
		gap: 30px;
	}

	.page_insta .buttons a {
		height: 45px;
		font-size: 20px;
	}

	.page_insta .info h3 {
		font-size: 25px;
	}
}

@media (max-width: 500px) {
	.page_insta {
		padding: 30px 15px;
		padding-bottom: 50px;
	}

	.page_insta .logo {
		width: 120px;
	}

	.page_insta .buttons {
		gap: 20px;
	}

	.page_insta .buttons a {
		height: 40px;
		font-size: 16px;
	}

	.page_insta .info h3 {
		font-size: 18px;
	}
}

/* PAGE INDIQUE UM AMIGO */

.page_indique_amigo {
	width: 100%;
	min-height: 100vh;
	background: url('../img/fundo_dark.png');
}

.page_indique_amigo header {
	box-shadow: 0 0 70px #00000052;
	display: flex;
	justify-content: center;
}

.page_indique_amigo header img:nth-child(2),
.page_indique_amigo header img:nth-child(3) {
	display: none;
}

.page_indique_amigo .__text {
	color: #fff;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	margin-top: 40px;
	padding: 0 20px;
}

.page_indique_amigo .__text h3 {
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 30px;
}

.page_indique_amigo .__text p {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	margin-bottom: 15px;
}

.page_indique_amigo .__text p span {
	font-weight: 600;
	color: #f5821f;
}

.page_indique_amigo .__text .__display {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 55px;
}

.page_indique_amigo footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 55px;
	align-items: end;
	margin-top: 30px;
}

.page_indique_amigo footer .info {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.page_indique_amigo footer .info h3 {
	text-align: start;
	font-size: 25px;
	font-weight: 600;
	color: #f5821f;
	margin-bottom: 0;
}

.page_indique_amigo footer .info h3 span {
	color: #fff;
}

.page_indique_amigo footer .info h3 span a {
	color: #fff;
}

.page_indique_amigo footer .info h3 span img {
	width: 30px;
}

.page_indique_amigo footer .logo {
	width: 150px;
}

@media (max-width: 1400px) {
	.page_indique_amigo .__text {
		margin-top: 15px;
	}

	.page_indique_amigo .__text h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.page_indique_amigo .__text p {
		margin-bottom: 10px;
	}

	.page_indique_amigo .__text .__display {
		gap: 30px;
	}

	.page_indique_amigo footer {
		gap: 30px;
		margin-top: 10px;
	}

	.page_indique_amigo footer .info h3 {
		font-size: 20px;
	}

	.page_indique_amigo footer .info h3 span img {
		width: 25px;
	}

	.page_indique_amigo footer .logo {
		width: 100px;
	}
}

@media (max-width: 1000px) {
	.page_indique_amigo header img:nth-child(1) {
		display: none;
	}
	.page_indique_amigo header img:nth-child(2) {
		display: initial;
	}
	.page_indique_amigo header img:nth-child(3) {
		display: none;
	}

	.page_indique_amigo .__text {
		margin-top: 10px;
	}

	.page_indique_amigo .__text h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.page_indique_amigo .__text p {
		font-size: 14px!important;
		margin-bottom: 15px;
	}

	.page_indique_amigo .__text .__display {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.page_indique_amigo footer {
		grid-template-columns: 1fr;
		gap: 0px;
		margin-top: 10px;
	}
	.page_indique_amigo footer .info {
		display: initial;
	}
	.page_indique_amigo footer .info h3 {
		font-size: 15px!important;
	}
	.page_indique_amigo footer .info.v2 {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.page_indique_amigo footer .logo {
		width: 100px;
		margin-left: auto;
	}
}

@media (max-width: 500px) {
	.page_indique_amigo header img:nth-child(1) {
		display: none;
	}
	.page_indique_amigo header img:nth-child(2) {
		display: none;
	}
	.page_indique_amigo header img:nth-child(3) {
		display: initial;

	}
	.page_indique_amigo footer .info.v2 {
		grid-template-columns: 1fr;
	}
	.page_indique_amigo footer .info h3 {
		text-align: center;
		margin-bottom: 10px;
	}
	.page_indique_amigo footer .logo {
		margin: auto;
	}
}