* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body {
	background-color: #eeeeee;
}

header {
	background-color: #3868d6;
	padding: 20px 0;
	margin-bottom: 30px;
}

header .container {
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header h1 {
	font-style: italic;
}

.container {
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 20px;
}

nav a {
	color: inherit;
	text-decoration: none;
	font-weight: bold;
}
nav ul {
	list-style: none;
}

section img {
	width: 100%;
}

section h2 {
	color: #3868d6;
	font-style: italic;
	border-bottom: 5px solid #3868d6;
	padding-bottom: 15px;
	margin: 30px 0;
}

.product {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-bottom: 30px;
}

.product button {
	background-color: #3868d6;
	color: #fff;
	border: none;
	font-weight: bold;
	font-size: 1em;
	border-radius: 8px;
	padding: 10px 20px;
	cursor: pointer;
}

@media screen and (min-width: 641px) and (max-width: 1023px) {
	nav ul {
		display: flex;
	}

	nav li {
		margin-right: 20px;
	}

	.produtos {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 3%;
	}
}

@media screen and (min-width: 1024px) {
	nav ul {
		display: flex;
	}
	nav li {
		margin-right: 20px;
	}

	.sobre {
		display: flex;
		gap: 5%;
	}

	.produtos {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 3%;
	}
}
