.footer-links {
	text-align: center;
	padding: 15px 0;
	font-size: 0.9rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.footer-link-btn {
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 20px;
	background: linear-gradient(135deg, #667EEA 0%, #764ba2 100%);
	display: inline-block;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
	min-width: 150px;
	text-align: center;
}

.footer-link-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
	background: linear-gradient(135deg, #764ba2 0%, #667EEA 100%);
}

.footer-separator {
	color: #ddd;
	font-size: 1.2rem;
	user-select: none;
}

.footer-stats {
	font-size: 0.85rem;
	color: #999;
}

/* Modal flottante */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 5000;
	justify-content: center;
	align-items: center;
	padding: 20px;
	backdrop-filter: blur(5px);
}

.modal-overlay.active {
	display: flex !important;
}

.modal-content {
	background: white;
	border-radius: 12px;
	padding: 30px;
	max-width: 600px;
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
	animation: slideUp 0.3s ease-out;
	position: relative;
}

.modal-content h2 {
	color: #667EEA;
	margin-top: 0;
	margin-bottom: 20px;
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	color: #999;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	transition: color 0.3s;
}

.modal-close:hover {
	color: #333;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.footer-links {
		padding: 12px 0;
		font-size: 0.85rem;
		gap: 10px;
	}

	.footer-link-btn {
		display: block;
		margin: 8px 0;
	}

	.footer-stats {
		font-size: 0.7rem !important;
		word-break: break-word;
	}

	.modal-content {
		padding: 20px;
		max-width: 95%;
	}

	.modal-content h2 {
		font-size: 1.3rem;
	}

	.modal-content p {
		font-size: 0.9rem;
		line-height: 1.5;
	}
}
