body {
	font-family: "Junge", serif;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: #f8f7f6;
}

.wrapper-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
	border-radius: 50%;
	border: 2px solid #333;
	padding: 35px;
	height: 160px;
	width: 160px;
	box-shadow: 0px 0px 10px #e9df8a;
	animation: glow-animation 2s linear infinite;
	filter: url(#glow-effect);
}

/* Animação de brilho */
@keyframes glow-animation {
	0% {
		box-shadow: 0 0 7px rgba(233, 223, 138, 0.5),
			0 0 20px rgba(233, 223, 138, 0.4);
	}
	50% {
		box-shadow: 0 0 10px rgba(233, 223, 138, 0.8),
			0 0 40px rgba(233, 223, 138, 0.6);
	}
	100% {
		box-shadow: 0 0 7px rgba(233, 223, 138, 0.5),
			0 0 20px rgba(233, 223, 138, 0.4);
	}
}

.logo {
	height: 100%;
}

iframe {
	border: none;
	border-radius: 10px;
}

.content-container {
	flex: 1;
	display: flex;
	justify-content: center;
	padding: 2rem;
}

.content-wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	max-width: 900px;
	padding: 2rem;
}

.text-content {
	flex: 1;
}

.image-content {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.featured-image {
	max-width: 100%;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

h1 {
	font-size: 2.4rem;
	margin-bottom: 1rem;
}

h2 {
	font-size: 1.6rem;
	margin-bottom: 2rem;
}

.containerButton {
	display: flex;
	justify-content: center;
}

.whatsappButton {
	border-radius: 50px;
	background-color: #25d366;
	padding: 10px 20px;
	color: white;
	font-size: 1.6rem;
	width: fit-content;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

a {
	color: white;
	text-decoration: none;
	align-self: center;
	font-weight: bold;
}

footer {
	background-color: #333;
	color: white;
	text-align: center;
	padding: 10px 0;
	box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

.wrapper-socials {
	max-width: 900px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.wrapper-social {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 200px;
	background-color: #2c1a08;
	color: white;
	font-size: 1.6rem;
	width: 50px;
	height: 35px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
	&:hover {
		color: #e9df8a;
		transition: 0.3s;
	}
}

.wrapper-info-buttons {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.info-button {
	border-radius: 50px;
	background-color: #ffffff;
	padding: 10px 20px;
	color: #2c1a08;
	font-size: 1.4rem;
	width: 90%;
	max-width: 900px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
	text-align: center;
	border: 2px solid #2c1a08;
	&:hover {
		background-color: #2c1a08;
		color: #e9df8a;
		transition: 0.3s;
	}
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
	.image-content {
		margin-top: 2rem;
	}
	h1 {
		font-size: 2rem;
	}
	h2 {
		font-size: 1.4rem;
	}
}

@media (max-width: 480px) {
	.content-container {
		padding: 1rem;
	}
	h1 {
		font-size: 1.8rem;
	}
	h2 {
		font-size: 1.2rem;
	}
	iframe {
		height: 450px;
	}
}
