* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Figtree", sans-serif;
	color: #222222;
	background-color: #F6F7F8;
}

.container {
	margin-top: 64px;
	margin-bottom: 64px;
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}

.title {
	color: #222222;
	font-weight: 600;
	font-size: 32px;
	line-height: 36px;
	letter-spacing: -0.4px;
	margin: 0 0 16px;
}

.voltar {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: #222222;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
}

.voltar:hover {
	color: #555555;
}

.card {
	padding: 64px;
	background-color: #fff;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	box-shadow: 0 14px 48px rgba(20, 42, 68, 0.08);
}

.section-title {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 24px;
}

.subsection-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 16px;
}

.section p,
.section li {
	font-size: 16px;
	line-height: 24px;
}

.section p {
	margin: 0;
}

.section ul {
	margin: 0;
	padding-left: 18px;
}

.section ul.no-bullets {
	list-style-type: none;
	padding-left: 0;
}

.stack-16 {
	margin-top: 16px;
}

@media screen and (max-width: 1000px) {
	.container {
		margin-left: 16px;
		margin-right: 16px;
	}

	.card {
		padding: 32px;
	}
}