/* ---------- FOOTER ---------- */
.sv-footer {
	background: var(--sv-light);
	padding: 60px 24px 30px;
	text-align: center;
	margin-top: 60px;
	border-radius: 32px 32px 0 0;
}
/* ---- columnas de páginas ---- */
.sv-footer-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px 24px;
	max-width: 1180px;
	margin: 0 auto 40px;
	text-align: left;
}
.sv-footer-col h4 {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--sv-dark);
}
.sv-footer-col h4 a { color: inherit; text-decoration: none; }
.sv-footer-col h4 a:hover { text-decoration: underline; }
.sv-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.sv-footer-col a {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 13.5px;
	line-height: 1.4;
	transition: color .2s;
}
.sv-footer-col ul a:hover { color: var(--sv-dark); }
@media (max-width: 900px) {
	.sv-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}
@media (max-width: 520px) {
	.sv-footer-cols { grid-template-columns: 1fr; gap: 24px; text-align: center; }
	.sv-footer-col ul { align-items: center; }
}
.sv-footer .sv-logo-mark {
	margin: 0 auto 30px;
	width: 80px;
	height: 80px;
}
.sv-footer-nav {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.sv-footer-nav a {
	color: #1a1a1a;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}
.sv-footer-social {
	display: flex;
	justify-content: center;
	gap: 22px;
	margin-bottom: 28px;
}
.sv-footer-social a { color: #1a1a1a; font-size: 18px; text-decoration: none; }
.sv-footer-copy {
	font-size: 11px;
	color: #1a1a1a;
	line-height: 1.6;
}
