* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: rgb(34, 34, 34);
	color: white;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px;
}

header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background-color: #222;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	margin-bottom: 30px;
}

#title {
	display: flex;
	flex-direction:column;
	align-items: flex-start;
	line-height: 1.2;
}

nav {
	margin-top: 10px;
}

nav ul {
	display: flex;
}

nav li {
	margin: 0 10px;
}

a {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

a:hover {
	color: rgb(132, 14, 201);
}

#inscreva {
	border: solid;
	padding: 8px;
	border-radius: 15px;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
	width: auto;
	font-size: 14px;
	text-align: center;
	cursor: pointer;
	outline: none;
	background-color: transparent;
	color: rgb(132, 14, 201);
}

#inscreva:hover {
	background-color: rgb(132, 14, 201);
	color: white;
}

main {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

section {
	margin-bottom: 30px;
}

h2 {
	font-size: 24px;
	line-height: 1.2;
	font-family: 'Poppins', sans-serif;
	color: #222;
	margin-bottom: 10px;
}

span {
	color: rgb(132, 14, 201);
}

p {
	line-height: 1.4;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	color: #555;
	margin-bottom: 20px;
}

form {
	display: flex;
	flex-direction: column;
	max-width: 400px;
}

input {
	margin-top: 10px;
	height: 40px;
	padding: 10px;
	border-radius: 20px;
	border: none;
	font-size: 15px;
}

[type="submit"] {
	height: 50px;
	width: 100%;
	background-color: rgb(132, 14, 201);
	color: white;
	font-weight: bold;
	border: none;
	border-radius: 25px;
	margin-top: 20px;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}

[type="submit"]:hover {
	background-color: rgb(132, 14, 201, 0.8);
}

img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease-in-out;
}

img:hover {
	transform: scale(1.1);
}

footer {
	background-color: #222;
	padding: 20px;
	color: white;
	text-align: center;
	border-radius: 10px;
	margin-top: 30px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.footer-logo {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-menu-item {
	margin: 0 10px;
	border-radius: 5px;
	transition: background-color 0.3s ease-in-out;
}

.footer-menu-item:first-child {
	margin-left: 0;
}

.footer-menu-link {
	color: white;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

.footer-menu-link:hover {
	color: rgb(132, 14, 201);
}

.footer-menu-item:hover {
	background-color: rgb(132, 14, 201);
}

@media (min-width: 768px) {
	header {
		flex-direction: column;
		align-items: flex-start;
	}

	nav {
		margin-top: 20px;
	}

	main {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	section {
		width: 50%;
	}

	h2 {
		font-size: 32px;
	}

	form {
		width: 80%;
	}

	footer {
		padding: 30px;
	}

	.footer-container {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.footer-menu {
		justify-content: flex-end;
	}
}

@media (max-width: 767px) {
	header {
		flex-direction: column;
		align-items: center;
		padding: 10px;
	}

	#title {
		text-align: center;
		margin-top: 10px;
	}

	nav {
		margin-top: 20px;
	}

	main {
		margin-top: 20px;
	}

	section {
		width: 100%;
	}

	h2 {
		font-size: 20px;
		text-align: center;
	}

	p {
		text-align: center;
	}

	form {
		margin: 0 auto;
	}

	img {
		margin: 0 auto;
	}

	footer {
		padding: 10px;
	}
}
