/* Estilos de footer migrados del proyecto React */
.footerSection {
	background: transparent; /* Fondo transparente para mostrar el body */
	position: relative;
	padding: 60px 20px 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.footerContainer {
	max-width: 960px;
	width: 100%;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.footerLinks {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.footerLink {
	color: #f4f7fb;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footerLink:hover {
	color: #FFC229;
}

.footerCopy {
	color: rgba(244, 247, 251, 0.8);
	font-size: 14px;
	font-weight: 400;
}

@media (max-width: 1024px) {
	.footerSection {
		padding: 56px 18px 36px;
	}

	.footerLink {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.footerSection {
		padding: 48px 16px 32px;
	}

	.footerLinks {
		gap: 18px;
	}

	.footerDivider {
		width: 40px;
	}
}

@media (max-width: 480px) {
	.footerLinks {
		gap: 14px;
	}

	.footerLink {
		font-size: 14px;
	}

	.footerDivider {
		width: 34px;
	}

	.footerCopy {
		font-size: 13px;
	}
}

