/* ==========================================================================
   Footer del sitio — estilos equivalentes al footer de Elementor
   Incluir enqueue en functions.php o pegar dentro de tu hoja de estilos principal
   ========================================================================== */

.site-footer {
	font-family: inherit;
	color: #111;
	background: #fff;
}

/* --- Fila superior: 4 columnas --- */
.footer-top {
	padding: 60px 20px;
}

.footer-top__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-col .footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col .footer-menu li {
	margin-bottom: 12px;
}

.footer-col .footer-menu a {
	color: inherit;
	text-decoration: none;
}

.footer-col .footer-menu a:hover {
	text-decoration: underline;
}

/* --- Columna social / iconos --- */
.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.footer-icon {
	display: inline-flex;
	width: 22px;
	height: 22px;
	color: inherit;
}

.footer-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
	transition: transform .2s ease;
}

.footer-icon:hover svg {
	transform: scale(1.1);
}

.footer-icon--static {
	opacity: .8;
}

/* --- Columna newsletter --- */
.footer-heading {
	font-size: 1.1rem;
	margin: 0 0 20px;
}

.footer-newsletter-form {
	display: flex;
	flex-direction: column;
}

.footer-field {
	display: block;
	margin-bottom: 20px;
}

.footer-field input {
	width: 100%;
	height: 40px;
	border: none;
	border-bottom: 1px solid #111;
	background: transparent;
	font-size: 1rem;
}

.footer-field input:focus {
	outline: none;
	border-bottom-width: 2px;
}

.footer-newsletter-submit {
	width: 100%;
	height: 40px;
	background: transparent;
	border: 1px solid #111;
	color: #111;
	cursor: pointer;
	margin-top: 4px;
}

.footer-newsletter-submit:hover {
	background: #111;
	color: #fff;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* --- Franja de logos / partners --- */
.footer-partners {
	background: #f5f5f5;
	padding: 30px 20px;
}

.footer-partners__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	gap: 30px;
}

.footer-partner img {
	max-height: 60px;
	width: auto;
	display: block;
}

/* --- Barra inferior de copyright con divisor en V --- */
.footer-bottom {
	position: relative;
	background: #111;
	color: #fff;
	padding: 40px 20px 20px;
	text-align: center;
}

.footer-bottom__shape {
	position: absolute;
	top: -19px;
	left: 0;
	width: 100%;
	line-height: 0;
}

.footer-bottom__shape svg {
	width: 100%;
	height: 20px;
	display: block;
}

.footer-bottom__shape path {
	fill: #111;
}

.footer-copy {
	margin: 0;
	font-size: .85rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
	.footer-top__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.footer-top__inner {
		grid-template-columns: 1fr;
	}
}