:root {
	--python-blue: #306998;
	--python-yellow: #FFD43B;
	--reddit-orange: #FF4500;
}

body {
	font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hero Section Customizada */
.hero-section {
	background: linear-gradient(135deg, #0f1216 0%, #1a202c 100%);
	padding: 5rem 0;
	border-bottom: 1px solid #2d3748;
}

.hero-title span {
	color: var(--python-yellow);
}

.btn-reddit {
	background-color: var(--reddit-orange);
	color: white;
	border: none;
	font-weight: 600;
}
.btn-reddit:hover {
	background-color: #e03d00;
	color: white;
}

/* Cards de Recursos */
.resource-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	border: 1px solid #2d3748;
}

.resource-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.3);
	border-color: var(--python-blue);
}

.icon-box {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--python-blue);
}

/* SEO Article Styles */
.seo-article h2 {
	color: var(--python-yellow);
	margin-top: 2rem;
}

.seo-article p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #a0aec0;
}
