* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	background-color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
}

main {
	width: 100vh;
	/* height: 100vh; */
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

h4 {
	margin: 2vh;
}

.logo {
	max-width: 220px;
	margin-bottom: 30px;
}

.button {
	background-color: rgb(229, 40, 108, 0.50);
	color: white;
	border: none;
	padding: 14px 20px;
	margin: 10px 0;
	border-radius: 10px;
	width: 80%;
	display: flex;
	align-items: center;
	text-align: center;
	/* justify-content: center; */
	text-decoration: none;
	transition:
		background-color 1100ms ease,
		box-shadow 1100ms ease,
		transform 600ms ease;
	/* transform mais rápido */
}

.button:hover {
	background-color: rgba(229, 40, 108, 0.8);
	box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.4);
	transform: scale(1.1);
}

.button img {
	max-height: 3.5vh;
	margin-right: 2vh;
}

#email {
	max-height: 2.7vh;
	margin-right: 2vh;
}

iframe {
	border-radius: 16px;
}

iframe:hover {
	transform: scale(1.1);
	transition: 600ms;
}

#neia {
	background-color: rgb(85, 32, 9, 0.80);

}

#neia:hover {
	/* background-color: rgb(85, 32, 9); */
	background-color: rgb(229, 40, 108);
	transition: 1000ms;
	transform: scale(1.06);

}

hr {
	width: 80%;
	border: none;
	height: 1px;
	/* background-color: #734C1D; */
	background-color: rgb(229, 40, 108);

	margin: 30px 0 10px;
}

footer {
	margin-top: 40px;
	color: #aaa;
	text-align: center;
	margin-bottom: 2vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


footer a:hover {
	color: #ffffff;
}

@media (max-width: 1030px) {

	main,
	footer {
		max-width: 80%;

	}

	.button {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.button {
		font-size: 80%
	}

	.button img {
		max-height: 2vh;
	}

	#email {
		max-height: 1.5vh;
	}

}

@media (max-width: 330px) {
	.button {
		font-size: 60%
	}
}

/* Desenvolvido por Jerry Leonardo */

.redes {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 25px;
}

.redes a {
	padding-top: 2vh;
	display: inline-block;
	transition: transform 0.3s ease;
}

.redes a:hover {
	transform: scale(1.1);
}

.redes img {
	width: 4vh;
	height: 4vh;
}


details {
	position: relative;
	width: fit-content;
}

summary {
	list-style: none;
	cursor: pointer;
	position: relative;
	padding-right: 2.5vh; 
	/* espaço para a seta */
	padding-left: 0.5vh;
	/* para afastar o details do copy*/
}

summary::after {
	content: '▶';
	/* seta fechada */
	position: absolute;
	right: 0;
	top: -3px;
	/* para alinhar no meio do texto*/
	transition: transform 0.3s ease;
}

details[open] summary::after {
	transform: rotate(90deg);
	/* seta aponta para baixo */
}
