:root {
	--bg: hsl(224, 40%, 90%);
	--text: #1e293b;
	--text-muted: #64748b;
	--accent: #2563eb;
	--accent-light: hsl(222, 60%, 87%);
	--border: hsl(222, 25%, 80%);
	--full-color: #f2f2f2;
	--block-bg: transparent;
	--radius: 14px;
	--max-width: 1000px;
	--transition: 0.2s ease;
}

body {
	margin: 0;
	font-family: system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
}

/* HERO */
.hero {
	padding: 80px 20px;
	text-align: center;
	background: linear-gradient(to bottom, var(--full-color), var(--bg));
	border-bottom: 1px solid var(--border);
}

.hero h1 {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.hero p {
	max-width: 600px;
	margin: 0 auto 20px;
	color: var(--text-muted);
	font-size: 1.1rem;
}

.hero .lang-link,
.hero .lang-link * {
	color: var(--accent);
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
}

/* CONTAINER */
.container {
	max-width: var(--max-width);
	margin: auto;
	padding: 40px 20px;
}

h2 {
	font-size: 1.9rem;
	margin-bottom: 10px;
}

p.section-desc {
	color: var(--text-muted);
	margin-bottom: 30px;
}

section.hero,
footer,
.shadow {
	box-shadow: 0 0 4px var(--border);
}

/* PORTFÓLIO */
.portfolio-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.project {
	background-color: var(--block-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 0 4px var(--border);
	color: inherit;
	display: block;
	padding: 20px;
	text-decoration: none;
	transition: var(--transition);
}

.project:hover {
	border-color: var(--accent);
}

.project img {
	width: 100%;
	border-radius: var(--radius);
	margin-bottom: 12px;
}

/* PLANOS */
.plans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	margin-top: 30px;
}

.plan {
	background-color: var(--block-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	transition: var(--transition);
}

.plan:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.plan.recommended {
	border: 2px solid var(--accent);
	background: var(--accent-light);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.plan h3 {
	margin-bottom: 6px;
	font-size: 1.2rem;
}

.price {
	font-size: 1.5rem;
	color: var(--accent);
	margin-bottom: 14px;
	font-weight: 600;
}

.features {
	list-style: none;
	padding: 0;
	margin: 16px 0;
}

.features li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.yes {
	color: #16a34a;
	font-weight: bold;
}

.no {
	color: #dc2626;
	font-weight: bold;
}

/* PERGUNTAS */
.questions {
	background-color: var(--block-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	margin-top: 20px;
}

.questions li {
	margin-bottom: 12px;
}

.questions li::marker {
	font-weight: bolder;
}

/* CONTATO */
.contact {
	background-color: var(--block-bg);
	margin-top: 20px;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.contact a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
}

footer {
	text-align: center;
	padding: 20px;
	color: var(--text-muted);
	font-size: 0.85rem;
	border-top: 1px solid var(--border);
	margin-top: 40px;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: hsl(222, 80%, 4%);
		--text: hsl(217, 33%, 83%);
		--text-muted: hsl(215, 16%, 53%);
		--accent: hsl(221, 83%, 47%);
		--accent-light: hsl(219, 100%, 10%);
		--border: hsl(222, 25%, 14%);
		--full-color: black;
		--block-bg: hsl(222, 60%, 8%);
	}

	.hero {
		background: linear-gradient(to bottom, var(--full-color), var(--bg));
	}

	.plan.recommended {
		box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
	}

	.yes {
		color: #16a34a;
	}

	.no {
		color: #dc2626;
	}
}
