.procedimentos-container {
	padding: 60px 0;
	min-height: 70vh;
}

.page-header-custom {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 20px;
	border-bottom: 3px solid var(--verde-medio);
}

.page-header-custom h1 {
	color: var(--verde-escuro);
	font-size: 2.5em;
	font-weight: bold;
	margin-bottom: 15px;
}

.page-header-custom p {
	color: var(--cinza-escuro);
	font-size: 1.2em;
	margin: 0;
}

.download-cards {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 40px;
}

.download-card {
	background: white;
	border-radius: 12px;
	padding: 40px 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	flex: 1;
	max-width: 450px;
	min-width: 300px;
	text-align: center;
	border: 2px solid transparent;
}

.download-card:hover {
	box-shadow: 0 8px 20px rgba(49, 150, 133, 0.3);
	border-color: var(--verde-medio);
}

.download-card-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, var(--verde-medio), var(--verde-claro));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	color: white;
}

.download-card h3 {
	color: var(--verde-escuro);
	font-size: 1.4em;
	margin-bottom: 15px;
	font-weight: bold;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.download-card p {
	color: #666;
	margin-bottom: 25px;
	line-height: 1.6;
}

.btn-download {
	background: linear-gradient(135deg, var(--verde-medio), var(--verde-claro));
	color: white;
	border: none;
	padding: 15px 35px;
	font-size: 1.1em;
	font-weight: bold;
	border-radius: 30px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-download:hover {
	background: linear-gradient(135deg, var(--verde-escuro), var(--verde-medio));
	color: white;
	transform: scale(1.05);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.btn-download i {
	margin-right: 8px;
}

@media (max-width: 768px) {
	.page-header-custom h1 {
		font-size: 1.8em;
	}

	.download-cards {
		gap: 20px;
	}

	.download-card {
		max-width: 100%;
		padding: 30px 20px;
	}

	.download-card h3 {
		font-size: 1.2em;
		min-height: auto;
	}
}
