@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');
@import url('footer.css');

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	background: #0d0d0d;
	color: #f5f5f5;
	font-family: 'Manrope', sans-serif;
}

.artigos-topo {
	border-bottom: 1px solid #2e2e2e;
	background:
		radial-gradient(circle at 14% 18%, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 36%),
		linear-gradient(160deg, #101010 0%, #171717 100%);
	padding: clamp(32px, 6vw, 56px) 16px;
}

.artigos-topo-conteudo {
	max-width: 1180px;
	margin: 0 auto;
}

.topo-voltar {
	display: inline-flex;
	color: #d4af37;
	text-decoration: none;
	font-weight: 700;
	border-bottom: 1px solid rgba(212, 175, 55, 0.45);
	padding-bottom: 2px;
}

.topo-voltar:hover {
	color: #ffffff;
	border-bottom-color: rgba(255, 255, 255, 0.65);
}

.topo-kicker {
	margin: 16px 0 0;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.78rem;
	font-weight: 700;
	color: #d4af37;
}

.artigos-topo h1 {
	margin: 10px 0 0;
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 3vw, 2.85rem);
	line-height: 1.1;
	color: #ffffff;
}

.topo-subtitulo {
	margin: 12px 0 0;
	max-width: 72ch;
	line-height: 1.55;
	color: #d7d7d7;
}

.artigos-main {
	padding: clamp(26px, 5vw, 44px) 16px clamp(36px, 6vw, 60px);
}

.artigos-section {
	max-width: 1180px;
	margin: 0 auto;
}

.artigos-section h2 {
	margin: 0;
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.4rem, 2.4vw, 1.95rem);
	color: #ffffff;
}

.artigos-grid {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.artigo-card {
	background: linear-gradient(165deg, #171208 0%, #231a0d 50%, #171208 100%);
	border: 1px solid #4d3c16;
	border-radius: 14px;
	padding: 22px;
	color: #f8f8f8;
	min-height: 280px;
	display: flex;
	flex-direction: column;
}

.artigo-card h3 {
	margin: 0;
	font-size: clamp(1.2rem, 1.8vw, 1.6rem);
	line-height: 1.22;
	font-family: 'Playfair Display', serif;
	color: #ffffff;
}

.artigo-card p {
	margin: 12px 0 0;
	font-size: 0.98rem;
	line-height: 1.55;
	color: #dcdcdc;
}

.artigo-btn {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 12px;
	border: 1px solid #8b6a2f;
	color: #d4af37;
	background: #1b1b1b;
	padding: 11px 14px;
	font-weight: 700;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.artigo-btn:hover {
	transform: translateY(-1px);
	background: #262014;
}

@media (max-width: 1100px) {
	.artigos-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.artigos-topo {
		padding: 28px 14px;
	}

	.artigos-main {
		padding: 22px 14px 30px;
	}

	.artigos-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.artigo-card {
		min-height: auto;
		padding: 18px;
	}

	.artigo-card p {
		font-size: 0.94rem;
	}
}
