/* Estilos del Footer - Resyglass */

.site-footer {
	background-color: #FFFFFF;
	padding: 64px 0 48px;
}

.site-footer__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.site-footer__top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	margin-bottom: 64px;
}

/* Logo del footer */
.site-footer__logo {
	height: 80px;
	width: 113px;
}

.site-footer__logo img {
	height: 80px;
	width: auto;
	object-fit: contain;
	display: block;
}

/* Menú del footer */
.site-footer__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.site-footer__nav .wp-block-navigation-item a {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #2f2f2f;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer__nav .wp-block-navigation-item a:hover,
.site-footer__nav .wp-block-navigation-item a:focus {
	color: #005C59;
}

/* Item activo del menú */
.site-footer__nav .wp-block-navigation-item.current-menu-item>a,
.site-footer__nav .wp-block-navigation-item.current-menu-ancestor>a {
	color: #005C59;
}

/* Iconos sociales */
.site-footer__social {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: center;
}

.site-footer__social .wp-block-social-link {
	margin: 0;
	padding: 0 !important;
	background: none !important;
}

.site-footer__social .wp-block-social-link a {
	font-size: 28px;
	color: #005C59;
	padding: 0 !important;
	background: none !important;
	border: none;
}

/* Separador */
.site-footer__separator {
	border-color: #EAECF0;
	border-top-width: 1px;
	margin: 0;
}

/* Footer bottom */
.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	padding-top: 32px;
	margin-top: 0;
}

/* Copyright */
.site-footer__copyright {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #475467;
	margin: 0;
	text-align: center;
}

/* Links legales */
.site-footer__legal {
	align-items: start;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.site-footer__legal .wp-block-navigation-item a {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #475467;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer__legal .wp-block-navigation-item a:hover,
.site-footer__legal .wp-block-navigation-item a:focus {
	color: #005C59;
}


@media (max-width: 1023px) {
	.site-footer__bottom {
		align-items: flex-start;
	}
}

/* Desktop (1024px y más) */
@media (min-width: 1024px) {
	.site-footer__nav {
		flex-direction: row;
		gap: 40px;
	}

	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.site-footer__copyright {
		text-align: left;
	}

	.site-footer__legal {
		align-items: center;
		flex-direction: row;
		gap: 24px;
	}
}