/* =========================================================
 * Pie Aquavest — landing
 * Logo centrado + descripción + fila de contactos (WhatsApp / Instagram / Facebook).
 * Markup: footer.php · Datos: inc/site-footer.php
 * ========================================================= */

.ozf,
.ozf * {
	box-sizing: border-box;
}

.ozf {
	background: var(--ozh-bg, #0b2a33);
	color: #fff;
	font-family: var(--OZ-Font-Base, system-ui, -apple-system, "Segoe UI", sans-serif);
	padding: 56px 20px 48px;
}

.ozf__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

/* ---------- Logo ---------- */
.ozf__brand {
	display: inline-flex;
	align-items: center;
	margin-bottom: 26px;
}

.ozf__brand .custom-logo {
	display: block;
	width: auto;
	height: 62px;
	max-width: 100%;
	object-fit: contain;
}

.ozf__wordmark {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
}

/* ---------- Descripción ---------- */
.ozf__about {
	max-width: 660px;
	margin: 0 0 44px;
	color: rgba(255, 255, 255, .82);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
}

/* ---------- Contactos ---------- */
.ozf__contacts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 28px 72px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ozf__contact {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	transition: color .2s ease, opacity .2s ease;
}

a.ozf__contact:hover,
a.ozf__contact:focus-visible {
	color: var(--ozh-accent, #f1552b);
}

.ozf__contact svg {
	flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 767px) {
	.ozf {
		padding: 44px 20px 40px;
	}

	.ozf__brand .custom-logo {
		height: 50px;
	}

	.ozf__about {
		font-size: 15px;
		margin-bottom: 34px;
	}

	.ozf__contacts {
		flex-direction: column;
		gap: 20px;
	}
}
