/**
 * Hexfy Footer - Widget Elementor
 * Fondo oscuro: logo (icono + texto), enlaces, copyright
 */

.hexfy-footer {
	--hexfy-footer-bg: #1f2329;
	--hexfy-footer-text: #fff;
	--hexfy-footer-muted: #94a3b8;
	--hexfy-footer-accent: #3b82f6;
	--hexfy-footer-radius: 8px; 
}

.hexfy-footer {
	background: var(--hexfy-footer-bg);
	color: var(--hexfy-footer-muted);
	padding: 1.5rem 1.5rem;
}

.hexfy-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

/* Logo */
.hexfy-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: var(--hexfy-footer-text);
	font-weight: 700;
	font-size: 1.125rem;
	letter-spacing: 0.02em;
	transition: opacity 0.2s;
}

.hexfy-footer__logo:hover {
	opacity: 0.9;
	color: var(--hexfy-footer-text);
}

.hexfy-footer__logo-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: var(--hexfy-footer-accent);
	border-radius: var(--hexfy-footer-radius);
	overflow: hidden;
	flex-shrink: 0;
}

.hexfy-footer__logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.hexfy-footer__logo-text {
	text-transform: uppercase;
}

/* Enlaces */
.hexfy-footer__nav {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.hexfy-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	justify-content: center;
}

.hexfy-footer__link-item {
	margin: 0;
}

.hexfy-footer__link {
	font-size: 0.9375rem;
	color: var(--hexfy-footer-muted);
	text-decoration: none;
	transition: color 0.2s;
}

.hexfy-footer__link:hover {
	color: var(--hexfy-footer-text);
}

/* Copyright */
.hexfy-footer__copyright {
	margin: 0;
	font-size: 0.875rem;
	color: var(--hexfy-footer-muted);
	text-align: right;
}

/* Móvil */
@media (max-width: 767px) {
	.hexfy-footer__inner {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.hexfy-footer__nav {
		order: 2;
		width: 100%;
	}

	.hexfy-footer__copyright {
		order: 3;
		text-align: center;
		width: 100%;
	}
}
