/**
 * Footer styles (extracted from style.css)
 * @package GuiaSaude
 */

.site-footer-modern {
	background-color: var(--dark-gray);
	color: #fff;
}

.footer-newsletter {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-content {
	max-width: 42rem;
	margin: 0 auto;
	text-align: center;
	padding: 3rem 1rem;
}

.footer-newsletter-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #fff;
}

.footer-newsletter-description {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 1.5rem;
}

.footer-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 28rem;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.footer-newsletter-form {
		flex-direction: row;
	}
}

.footer-newsletter-input {
	flex: 1;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 1rem;
}

.footer-newsletter-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	background-color: var(--primary-color);
	color: #fff;
	border: none;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.footer-main {
	padding: 3rem 1rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 3rem;
	}
}

.footer-brand {
	grid-column: span 2;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	text-decoration: none;
	color: #fff;
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
}

.footer-column-title {
	font-weight: 600;
	margin-bottom: 1rem;
	color: #fff;
	font-size: 1rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.footer-link {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.875rem;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 1rem;
}

