/* ==========================================================================
   Beneficios (justo encima del footer, presente en toda la web)
   ========================================================================== */

.oz-features {
	width: 100%;
	padding: 2.5rem 1rem;
	background: #fff;
	font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
	box-sizing: border-box;
}

.oz-features *,
.oz-features *::before,
.oz-features *::after {
	box-sizing: border-box;
}

.oz-features__inner {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.oz-features__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.oz-features__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border: 2px solid #123f86;
	border-radius: 999px;
	background: #fff;
	min-width: 0;
}

.oz-features__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #ffd400;
	color: #0b2a5c;
}

.oz-features__icon svg {
	width: 32px;
	height: 32px;
	display: block;
}

.oz-features__text {
	min-width: 0;
	flex: 1 1 auto;
}

.oz-features__title {
	margin: 0;
	color: #0b1220;
	font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.2px;
}

.oz-features__desc {
	margin: 0.25rem 0 0;
	color: #1f2937;
	font-size: 0.9rem;
	line-height: 1.35;
}

@media (max-width: 1023px) {
	.oz-features__list {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-left: auto;
		margin-right: auto;
		gap: 1rem;
	}

	.oz-features__item {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.oz-features {
		padding: 2rem 0.875rem;
	}

	.oz-features__item {
		gap: 0.875rem;
		padding: 0.85rem 1rem;
	}

	.oz-features__icon {
		width: 56px;
		height: 56px;
	}

	.oz-features__icon svg {
		width: 28px;
		height: 28px;
	}

	.oz-features__title {
		font-size: 1rem;
	}

	.oz-features__desc {
		font-size: 0.85rem;
	}
}

@media (max-width: 360px) {
	.oz-features__item {
		padding: 0.75rem 0.9rem;
		gap: 0.75rem;
	}

	.oz-features__icon {
		width: 50px;
		height: 50px;
	}

	.oz-features__icon svg {
		width: 24px;
		height: 24px;
	}

	.oz-features__title {
		font-size: 0.95rem;
	}

	.oz-features__desc {
		font-size: 0.8rem;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */

.oz-site-footer {
	background: var(--oz-footer-bg, #073275);
	color: var(--oz-footer-text, #ffffff);
	padding: 4.5rem 0 3rem;
	font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
}

.oz-site-footer * {
	box-sizing: border-box;
}

.oz-site-footer__inner {
	width: min(100% - 48px, 1320px);
	margin-inline: auto;
}

.oz-site-footer__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1fr 1.55fr;
	gap: 5.5rem;
	align-items: flex-start;
}

/* --------------------------------------------------------------------------
   Columna 1: Brand (logo + descripción + redes sociales)
   -------------------------------------------------------------------------- */

.oz-site-footer__col--brand {
	max-width: 334px;
}

.oz-site-footer__logo {
	margin: 0 0 1.5rem;
	line-height: 0;
}

.oz-site-footer__logo a {
	display: inline-block;
	max-width: 100%;
}

.oz-site-footer__logo .custom-logo,
.oz-site-footer__logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 247px;
	max-height: 120px;
	object-fit: contain;
}

.oz-site-footer__site-name {
	color: inherit;
	font-family: var(--OZ-Font-Headings, "Montserrat", sans-serif);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
}

.oz-site-footer__desc {
	margin: 0 0 1.5rem;
	color: inherit;
	font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

/* —— Redes sociales (administrables) —— */
.oz-site-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.oz-site-footer__social-item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.oz-site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	text-decoration: none;
	background: transparent;
	border: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.oz-site-footer__social-link:hover,
.oz-site-footer__social-link:focus-visible {
	transform: translateY(-2px);
	opacity: 0.85;
	outline: none;
}

.oz-site-footer__social-icon {
	display: block;
	width: 37px;
	height: 37px;
	object-fit: contain;
	background: transparent;
}

/* --------------------------------------------------------------------------
   Títulos (MENÚ / CATEGORÍAS / CONTACTO)
   -------------------------------------------------------------------------- */

.oz-site-footer__title {
	position: relative;
	margin: 0 0 1.5rem;
	padding-bottom: 0.75rem;
	color: #f3c839;
	font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.oz-site-footer__title::before,
.oz-site-footer__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
}

.oz-site-footer__title::before {
	width: 100%;
	max-width: 150px;
	background: rgba(255, 255, 255, 0.3);
}

.oz-site-footer__title::after {
	width: 40px;
	background: #f3c839;
}

.oz-site-footer__col--contact .oz-site-footer__title::before {
	max-width: 180px;
}

/* --------------------------------------------------------------------------
   Listas (Menú y Categorías)
   -------------------------------------------------------------------------- */

.oz-site-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.oz-site-footer__menu li {
	margin: 0 0 0.85rem;
	padding: 0;
	list-style: none;
}

.oz-site-footer__menu li:last-child {
	margin-bottom: 0;
}

.oz-site-footer__menu a {
	color: inherit;
	font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	text-decoration: none;
	transition: color 0.25s ease, padding-left 0.25s ease;
}

.oz-site-footer__menu a:hover,
.oz-site-footer__menu a:focus-visible {
	color: #f3c839;
	padding-left: 4px;
	outline: none;
}

/* --------------------------------------------------------------------------
   Columna 4: Contacto
   -------------------------------------------------------------------------- */

.oz-site-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.oz-site-footer__contact-item:last-child {
	margin-bottom: 0;
}

.oz-site-footer__contact-icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	background: transparent;
	border: 0;
}

.oz-site-footer__contact-icon img {
	display: block;
	max-width: 100%;
	height: auto;
	background: transparent;
}

.oz-site-footer__contact-content {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	min-width: 0;
}

.oz-site-footer__contact-label {
	margin: 0 0 0.15rem;
	color: #ffffff;
	font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.oz-site-footer__contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 1.5rem;
	row-gap: 0.4rem;
}

.oz-site-footer__contact-col {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.oz-site-footer__contact-content a,
.oz-site-footer__contact-content span {
	color: inherit;
	font-family: "Montserrat", "Inter", system-ui, -apple-system, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 20px;
	text-decoration: none;
	word-break: break-word;
	transition: color 0.25s ease;
}

.oz-site-footer__contact-content a:hover,
.oz-site-footer__contact-content a:focus-visible {
	color: #f3c839;
	outline: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* —— Laptop (1024 ≤ w ≤ 1279) —— */
@media (min-width: 1024px) and (max-width: 1279px) {
	.oz-site-footer {
		padding: 4rem 0 2.75rem;
	}

	.oz-site-footer__inner {
		width: min(100% - 40px, 1180px);
	}

	.oz-site-footer__grid {
		grid-template-columns: 1.05fr 0.85fr 1fr 1.45fr;
		gap: 1.5rem;
	}

	.oz-site-footer__col--brand {
		max-width: 100%;
		margin-left: 0;
		padding-right: 0;
	}

	.oz-site-footer__logo .custom-logo,
	.oz-site-footer__logo img {
		width: auto;
		height: auto;
		max-width: clamp(180px, 19vw, 220px);
		max-height: 110px;
		aspect-ratio: auto;
	}

	.oz-site-footer__desc {
		font-size: 14px;
		line-height: 19px;
	}

	.oz-site-footer__title::before {
		max-width: 130px;
	}

	.oz-site-footer__col--contact .oz-site-footer__title::before {
		max-width: 160px;
	}

	.oz-site-footer__contact-grid {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 0.35rem;
	}

	.oz-site-footer__contact-item {
		gap: 0.75rem;
		margin-bottom: 1rem;
	}

	.oz-site-footer__contact-content a,
	.oz-site-footer__contact-content span {
		font-size: 14px;
		line-height: 19px;
		overflow-wrap: anywhere;
	}
}

/* —— Tablet (768 ≤ w ≤ 1023): brand y contacto a fila completa —— */
@media (max-width: 1023px) {
	.oz-site-footer {
		padding: 3.5rem 0 2.5rem;
	}

	.oz-site-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.25rem 2rem;
	}

	.oz-site-footer__col--brand {
		grid-column: 1 / -1;
		max-width: 640px;
		margin-left: 0;
		padding-right: 0;
	}

	.oz-site-footer__col--contact {
		grid-column: 1 / -1;
	}

	.oz-site-footer__contact-grid {
		grid-template-columns: 1fr 1fr;
		column-gap: 2rem;
	}
}

/* —— Móvil (w ≤ 767) —— */
@media (max-width: 767px) {
	.oz-site-footer {
		padding: 2.75rem 0 2rem;
	}

	.oz-site-footer__inner {
		width: min(100% - 32px, 100%);
	}

	.oz-site-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.oz-site-footer__col--brand,
	.oz-site-footer__col--menu,
	.oz-site-footer__col--cats,
	.oz-site-footer__col--contact {
		grid-column: auto;
		max-width: 100%;
		margin-left: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.oz-site-footer__col--brand {
		width: 100%;
	}

	.oz-site-footer__logo .custom-logo,
	.oz-site-footer__logo img {
		width: auto;
		height: auto;
		max-width: clamp(180px, 56vw, 247px);
		max-height: 120px;
		aspect-ratio: auto;
	}

	.oz-site-footer__title::before {
		max-width: 100%;
	}

	.oz-site-footer__col--contact .oz-site-footer__title::before {
		max-width: 100%;
	}

	.oz-site-footer__desc {
		text-align: left;
	}

	.oz-site-footer__contact-grid {
		grid-template-columns: 1fr;
		column-gap: 0;
	}

	.oz-site-footer__socials {
		gap: 10px;
	}
}

/* —— Móvil pequeño (w ≤ 419) —— */
@media (max-width: 419px) {
	.oz-site-footer {
		padding: 2.25rem 0 1.75rem;
	}

	.oz-site-footer__social-icon {
		width: 34px;
		height: 34px;
	}

	.oz-site-footer__contact-item {
		gap: 0.75rem;
	}
}
