:root
{
	--hj-azul-oscuro: #12324A;
	--hj-azul: #1F6F9F;
	--hj-azul-claro: #EEF7FB;
	--hj-verde: #21A67A;
	--hj-verde-oscuro: #16845F;
	--hj-rojo: #D64545;
	--hj-amarillo: #F4B740;
	--hj-gris-texto: #2F3A40;
	--hj-gris-suave: #F5F7F8;
	--hj-gris-borde: #DDE7EC;
	--hj-blanco: #FFFFFF;

	--hj-radio: 18px;
	--hj-radio-sm: 12px;
	--hj-sombra: 0 18px 45px rgba(18, 50, 74, 0.12);
	--hj-sombra-suave: 0 10px 24px rgba(18, 50, 74, 0.08);
}

/* =========================================================
   RESET BÁSICO
========================================================= */

*,
*::before,
*::after
{
	box-sizing: border-box;
}

html
{
	min-height: 100%;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body
{
	min-height: 100%;
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--hj-gris-texto);
	background:
		radial-gradient(circle at top left, rgba(31, 111, 159, 0.18), transparent 34rem),
		linear-gradient(180deg, #FFFFFF 0%, var(--hj-azul-claro) 100%);
}

a
{
	color: inherit;
	text-decoration: none;
}

img
{
	max-width: 100%;
	display: block;
}

button,
input,
select,
textarea
{
	font: inherit;
}

/* =========================================================
   ESTRUCTURA GENERAL
========================================================= */

.hj-body
{
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.hj-main
{
	width: 100%;
	flex: 1;
}

/* =========================================================
   CABECERA
========================================================= */

.hj-header
{
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(221, 231, 236, 0.8);
}

.hj-header__inner
{
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	min-height: 72px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.hj-logo
{
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--hj-azul-oscuro);
}

.hj-logo__mark
{
	width: 42px;
	height: 42px;
	border-radius: 14px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	color: var(--hj-blanco);
	font-weight: 800;
	font-size: 1.2rem;
	background: linear-gradient(135deg, var(--hj-azul-oscuro), var(--hj-azul));
	box-shadow: 0 8px 18px rgba(18, 50, 74, 0.18);
}

.hj-logo__text
{
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.hj-logo__text strong
{
	font-size: 1.08rem;
	letter-spacing: -0.03em;
}

.hj-logo__text small
{
	margin-top: 4px;
	color: var(--hj-azul);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hj-nav
{
	display: flex;
	align-items: center;
	gap: 10px;
}

.hj-nav__link
{
	padding: 10px 16px;
	border-radius: 999px;
	color: var(--hj-azul-oscuro);
	font-weight: 700;
	border: 1px solid var(--hj-gris-borde);
	background: var(--hj-blanco);
}

.hj-nav__link:hover
{
	border-color: var(--hj-azul);
}

/* =========================================================
   HERO
========================================================= */

.hj-hero
{
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 48px 0 28px;

	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 42px;
}

.hj-hero__content
{
	max-width: 620px;
}

.hj-badge
{
	display: inline-flex;
	align-items: center;
	gap: 9px;

	padding: 8px 13px;
	margin-bottom: 18px;

	border-radius: 999px;
	color: var(--hj-azul-oscuro);
	font-weight: 700;
	font-size: 0.9rem;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--hj-gris-borde);
	box-shadow: var(--hj-sombra-suave);
}

.hj-badge__dot
{
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--hj-verde);
	box-shadow: 0 0 0 4px rgba(33, 166, 122, 0.14);
}

.hj-hero__title
{
	margin: 0;
	color: var(--hj-azul-oscuro);
	font-size: clamp(2.5rem, 8vw, 5.2rem);
	line-height: 0.95;
	letter-spacing: -0.075em;
}

.hj-hero__subtitle
{
	margin: 22px 0 0;
	max-width: 560px;
	font-size: clamp(1.12rem, 3vw, 1.45rem);
	line-height: 1.45;
	color: #4C5A61;
}

.hj-hero__actions
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.hj-hero__note
{
	margin: 20px 0 0;
	max-width: 520px;
	color: #66767E;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* =========================================================
   BOTONES
========================================================= */

.hj-btn
{
	min-height: 52px;
	padding: 0 22px;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	border-radius: 999px;
	font-weight: 800;
	font-size: 1rem;
	border: 1px solid transparent;
	cursor: pointer;
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease,
		border-color 0.15s ease;
}

.hj-btn:hover
{
	transform: translateY(-1px);
}

.hj-btn--primary
{
	color: var(--hj-blanco);
	background: linear-gradient(135deg, var(--hj-verde), var(--hj-verde-oscuro));
	box-shadow: 0 14px 24px rgba(33, 166, 122, 0.22);
}

.hj-btn--primary:hover
{
	box-shadow: 0 18px 30px rgba(33, 166, 122, 0.30);
}

.hj-btn--secondary
{
	color: var(--hj-azul-oscuro);
	background: rgba(255, 255, 255, 0.9);
	border-color: var(--hj-gris-borde);
	box-shadow: var(--hj-sombra-suave);
}

.hj-btn--secondary:hover
{
	border-color: var(--hj-azul);
}

/* =========================================================
   MOCKUP TELÉFONO
========================================================= */

.hj-hero__card
{
	display: flex;
	justify-content: center;
}

.hj-phone
{
	width: min(320px, 100%);
	padding: 14px;
	border-radius: 38px;
	background: #0F2738;
	box-shadow: var(--hj-sombra);
	transform: rotate(3deg);
}

.hj-phone__top
{
	width: 80px;
	height: 6px;
	margin: 0 auto 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.24);
}

.hj-phone__screen
{
	min-height: 520px;
	padding: 28px 22px;
	border-radius: 28px;
	background:
		radial-gradient(circle at top right, rgba(33, 166, 122, 0.18), transparent 12rem),
		linear-gradient(180deg, #FFFFFF, #EEF7FB);

	display: flex;
	flex-direction: column;
}

.hj-phone__logo
{
	width: 50px;
	height: 50px;
	border-radius: 16px;
	margin-bottom: 34px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: var(--hj-blanco);
	font-weight: 900;
	font-size: 1.4rem;
	background: linear-gradient(135deg, var(--hj-azul-oscuro), var(--hj-azul));
}

.hj-phone__line
{
	height: 13px;
	width: 100%;
	margin-bottom: 12px;
	border-radius: 999px;
	background: #DDE7EC;
}

.hj-phone__line--large
{
	height: 26px;
	width: 82%;
	background: var(--hj-azul-oscuro);
}

.hj-phone__line--short
{
	width: 58%;
	margin-bottom: 30px;
}

.hj-phone__box
{
	display: flex;
	align-items: center;
	gap: 12px;

	margin-bottom: 14px;
	padding: 16px;
	border-radius: 18px;

	background: var(--hj-blanco);
	border: 1px solid var(--hj-gris-borde);
	box-shadow: 0 8px 16px rgba(18, 50, 74, 0.06);
}

.hj-phone__box span
{
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(33, 166, 122, 0.14);
	position: relative;
}

.hj-phone__box span::after
{
	content: "";
	position: absolute;
	left: 9px;
	top: 6px;
	width: 8px;
	height: 13px;
	border: solid var(--hj-verde);
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}

.hj-phone__box strong
{
	font-size: 0.95rem;
	color: var(--hj-azul-oscuro);
}

.hj-phone__button
{
	height: 48px;
	margin-top: auto;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--hj-verde), var(--hj-verde-oscuro));
}

/* =========================================================
   BLOQUES INFORMATIVOS
========================================================= */

.hj-info
{
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
	padding: 18px 0 54px;

	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.hj-info-card
{
	padding: 24px;
	border-radius: var(--hj-radio);
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(221, 231, 236, 0.9);
	box-shadow: var(--hj-sombra-suave);
}

.hj-info-card__icon
{
	width: 38px;
	height: 38px;
	margin-bottom: 16px;
	border-radius: 13px;

	display: flex;
	align-items: center;
	justify-content: center;

	color: var(--hj-blanco);
	font-weight: 900;
	background: var(--hj-azul-oscuro);
}

.hj-info-card h2
{
	margin: 0 0 8px;
	color: var(--hj-azul-oscuro);
	font-size: 1.12rem;
	letter-spacing: -0.03em;
}

.hj-info-card p
{
	margin: 0;
	color: #617079;
	line-height: 1.5;
}

/* =========================================================
   FOOTER
========================================================= */

.hj-footer
{
	border-top: 1px solid rgba(221, 231, 236, 0.9);
	background: rgba(255, 255, 255, 0.76);
}

.hj-footer__inner
{
	width: min(1120px, calc(100% - 32px));
	min-height: 76px;
	margin: 0 auto;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;

	color: #65747B;
	font-size: 0.92rem;
}

.hj-footer__links
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.hj-footer__links a
{
	color: var(--hj-azul-oscuro);
	font-weight: 700;
}

.hj-footer__links a:hover
{
	color: var(--hj-azul);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 860px)
{
	.hj-hero
	{
		grid-template-columns: 1fr;
		padding-top: 34px;
		gap: 30px;
	}

	.hj-hero__content
	{
		max-width: none;
	}

	.hj-hero__card
	{
		display: none;
	}

	.hj-info
	{
		grid-template-columns: 1fr;
		padding-bottom: 34px;
	}
}

@media (max-width: 520px)
{
	.hj-header__inner
	{
		width: min(100% - 24px, 1120px);
		min-height: 66px;
	}

	.hj-logo__mark
	{
		width: 38px;
		height: 38px;
		border-radius: 12px;
	}

	.hj-nav__link
	{
		padding: 9px 13px;
		font-size: 0.92rem;
	}

	.hj-hero
	{
		width: min(100% - 24px, 1120px);
		padding-top: 28px;
	}

	.hj-hero__title
	{
		font-size: clamp(3.1rem, 17vw, 4.8rem);
	}

	.hj-hero__subtitle
	{
		font-size: 1.12rem;
	}

	.hj-hero__actions
	{
		flex-direction: column;
		align-items: stretch;
	}

	.hj-btn
	{
		width: 100%;
		min-height: 56px;
	}

	.hj-info
	{
		width: min(100% - 24px, 1120px);
	}

	.hj-info-card
	{
		padding: 20px;
	}

	.hj-footer__inner
	{
		width: min(100% - 24px, 1120px);
		padding: 18px 0;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
}

/* =========================================================
   PÁGINA REGISTRO / FORMULARIOS PÚBLICOS
   Compatibilidad con registro.php
========================================================= */

.contenedor
{
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

/* Cabecera pública usada por registro.php */
.cabecera-publica
{
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(221, 231, 236, 0.8);
}

.cabecera-publica__interior
{
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.marca-publica
{
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--hj-azul-oscuro);
}

.marca-publica__icono
{
	width: 42px;
	height: 42px;
	border-radius: 14px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	color: var(--hj-blanco);
	font-weight: 800;
	font-size: 1.2rem;
	background: linear-gradient(135deg, var(--hj-azul-oscuro), var(--hj-azul));
	box-shadow: 0 8px 18px rgba(18, 50, 74, 0.18);
}

.marca-publica__texto
{
	color: var(--hj-azul-oscuro);
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.nav-publica
{
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-publica a
{
	padding: 10px 16px;
	border-radius: 999px;
	color: var(--hj-azul-oscuro);
	font-weight: 700;
	border: 1px solid var(--hj-gris-borde);
	background: var(--hj-blanco);
}

.nav-publica a:hover
{
	border-color: var(--hj-azul);
}

/* Página pública de formulario */
.pagina-publica
{
	width: 100%;
}

.seccion-formulario
{
	padding: 44px 0 56px;
}

.contenedor-formulario
{
	max-width: 760px;
}

.bloque-intro-formulario
{
	margin-bottom: 24px;
	text-align: center;
}

.etiqueta-seccion
{
	display: inline-flex;
	align-items: center;
	justify-content: center;

	margin: 0 0 14px;
	padding: 8px 13px;

	border-radius: 999px;
	color: var(--hj-azul-oscuro);
	font-weight: 800;
	font-size: 0.9rem;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--hj-gris-borde);
	box-shadow: var(--hj-sombra-suave);
}

.bloque-intro-formulario h1
{
	margin: 0;
	color: var(--hj-azul-oscuro);
	font-size: clamp(2.15rem, 7vw, 3.7rem);
	line-height: 1;
	letter-spacing: -0.06em;
}

.bloque-intro-formulario p
{
	margin: 16px auto 0;
	max-width: 620px;
	color: #4C5A61;
	font-size: 1.08rem;
	line-height: 1.5;
}

.tarjeta-formulario
{
	padding: 28px;
	border-radius: var(--hj-radio);
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(221, 231, 236, 0.92);
	box-shadow: var(--hj-sombra);

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.tarjeta-exito
{
	display: block;
}

.grupo-formulario
{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.grupo-formulario label
{
	color: var(--hj-azul-oscuro);
	font-weight: 800;
	font-size: 0.95rem;
}

.grupo-formulario input
{
	width: 100%;
	min-height: 52px;
	padding: 0 15px;

	border-radius: 14px;
	border: 1px solid var(--hj-gris-borde);
	background: var(--hj-blanco);
	color: var(--hj-gris-texto);
	outline: none;
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease;
}

.grupo-formulario input:focus
{
	border-color: var(--hj-azul);
	box-shadow: 0 0 0 4px rgba(31, 111, 159, 0.12);
}

.ayuda-formulario
{
	margin: 0;
	color: #66767E;
	font-size: 0.88rem;
}

.bloque-consentimientos
{
	grid-column: 1 / -1;
	margin-top: 2px;
	padding: 20px;
	border-radius: 16px;
	background: var(--hj-azul-claro);
	border: 1px solid var(--hj-gris-borde);
}

.bloque-consentimientos h2
{
	margin: 0 0 14px;
	color: var(--hj-azul-oscuro);
	font-size: 1.15rem;
	letter-spacing: -0.03em;
}

.check-legal
{
	display: flex;
	align-items: flex-start;
	gap: 12px;

	margin-top: 12px;
	padding: 14px;
	border-radius: 14px;

	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(221, 231, 236, 0.9);

	color: #4C5A61;
	line-height: 1.45;
	cursor: pointer;
}

.check-legal input
{
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: var(--hj-verde);
	flex: 0 0 auto;
}

.check-legal a
{
	color: var(--hj-azul);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.check-legal strong
{
	color: var(--hj-azul-oscuro);
}

.acciones-formulario
{
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 4px;
}

.boton
{
	min-height: 52px;
	padding: 0 22px;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	border-radius: 999px;
	font-weight: 800;
	font-size: 1rem;
	border: 1px solid transparent;
	cursor: pointer;

	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease,
		border-color 0.15s ease;
}

.boton:hover
{
	transform: translateY(-1px);
}

.boton-principal
{
	color: var(--hj-blanco);
	background: linear-gradient(135deg, var(--hj-verde), var(--hj-verde-oscuro));
	box-shadow: 0 14px 24px rgba(33, 166, 122, 0.22);
}

.boton-principal:hover
{
	box-shadow: 0 18px 30px rgba(33, 166, 122, 0.30);
}

.boton-secundario
{
	color: var(--hj-azul-oscuro);
	background: rgba(255, 255, 255, 0.9);
	border-color: var(--hj-gris-borde);
	box-shadow: var(--hj-sombra-suave);
}

.boton-secundario:hover
{
	border-color: var(--hj-azul);
}

.boton-grande
{
	min-width: 220px;
	min-height: 56px;
}

.texto-pie-formulario
{
	grid-column: 1 / -1;
	margin: 0;
	text-align: center;
	color: #66767E;
}

.texto-pie-formulario a
{
	color: var(--hj-azul);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.aviso
{
	margin-bottom: 18px;
	padding: 18px 20px;
	border-radius: 16px;
	border: 1px solid var(--hj-gris-borde);
	background: var(--hj-blanco);
	box-shadow: var(--hj-sombra-suave);
}

.aviso h2
{
	margin: 0 0 10px;
	color: var(--hj-azul-oscuro);
}

.aviso p
{
	margin: 10px 0 0;
	line-height: 1.5;
}

.aviso ul
{
	margin: 10px 0 0;
	padding-left: 20px;
}

.aviso-error
{
	color: #7A2424;
	background: #FFF2F2;
	border-color: rgba(214, 69, 69, 0.35);
}

.aviso-ok
{
	color: #155F46;
	background: #EFFBF6;
	border-color: rgba(33, 166, 122, 0.35);
}

.texto-debug
{
	padding: 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.72);
	word-break: break-all;
	font-size: 0.9rem;
}

/* Footer público usado por registro.php */
.footer-publico
{
	border-top: 1px solid rgba(221, 231, 236, 0.9);
	background: rgba(255, 255, 255, 0.76);
}

.footer-publico__interior
{
	min-height: 76px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;

	color: #65747B;
	font-size: 0.92rem;
}

.footer-publico nav
{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.footer-publico a
{
	color: var(--hj-azul-oscuro);
	font-weight: 700;
}

.footer-publico a:hover
{
	color: var(--hj-azul);
}

@media (max-width: 760px)
{
	.seccion-formulario
	{
		padding: 30px 0 38px;
	}

	.contenedor
	{
		width: min(100% - 24px, 1120px);
	}

	.cabecera-publica__interior
	{
		min-height: 66px;
	}

	.marca-publica__icono
	{
		width: 38px;
		height: 38px;
		border-radius: 12px;
	}

	.tarjeta-formulario
	{
		grid-template-columns: 1fr;
		padding: 22px;
		gap: 16px;
	}

	.bloque-consentimientos
	{
		padding: 16px;
	}

	.check-legal
	{
		padding: 13px;
	}

	.acciones-formulario
	{
		align-items: stretch;
	}

	.boton
	{
		width: 100%;
	}

	.footer-publico__interior
	{
		padding: 18px 0;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
}


.texto-legal
{
	max-width: 860px;
}

.texto-legal h2
{
	margin: 28px 0 10px;
	color: var(--hj-azul-oscuro);
	font-size: 1.22rem;
	letter-spacing: -0.03em;
}

.texto-legal h2:first-child
{
	margin-top: 0;
}

.texto-legal p
{
	margin: 0 0 14px;
	color: #4C5A61;
	line-height: 1.65;
}

.texto-legal a
{
	color: var(--hj-azul);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}


/* =========================================================
   PÁGINAS LEGALES
========================================================= */

.texto-legal
{
	display: block !important;
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

.texto-legal h2
{
	display: block;
	width: 100%;
	margin: 30px 0 10px;
	color: var(--hj-azul-oscuro);
	font-size: 1.22rem;
	line-height: 1.25;
	letter-spacing: -0.03em;
}

.texto-legal h2:first-child
{
	margin-top: 0;
}

.texto-legal p
{
	display: block;
	width: 100%;
	margin: 0 0 15px;
	color: #4C5A61;
	line-height: 1.65;
}

.texto-legal > a,
.texto-legal p a
{
	color: var(--hj-azul);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Evita que los enlaces legales rompan el estilo de los botones */
.texto-legal .acciones-formulario
{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 34px;
}

.texto-legal .acciones-formulario a,
.texto-legal a.boton
{
	text-decoration: none !important;
}

.texto-legal a.boton-principal
{
	color: var(--hj-blanco) !important;
}

.texto-legal a.boton-secundario
{
	color: var(--hj-azul-oscuro) !important;
}



/* =========================================================
   OFERTAS DESTACADAS EN PORTADA
========================================================= */

.hj-ofertas-home
{
	width: min(1120px, calc(100% - 32px));
	margin: 8px auto 28px;
	padding: 26px;

	border-radius: 26px;
	background:
		radial-gradient(circle at top right, rgba(33, 166, 122, 0.16), transparent 18rem),
		linear-gradient(135deg, rgba(18, 50, 74, 0.98), rgba(31, 111, 159, 0.94));
	box-shadow: var(--hj-sombra);
	color: var(--hj-blanco);
	overflow: hidden;
	position: relative;
}

.hj-ofertas-home::before
{
	content: "";
	position: absolute;
	inset: auto -80px -120px auto;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.hj-ofertas-home__header
{
	position: relative;
	z-index: 1;

	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 22px;

	margin-bottom: 22px;
}

.hj-ofertas-home__eyebrow
{
	display: inline-flex;
	align-items: center;
	gap: 8px;

	margin-bottom: 10px;
	padding: 7px 12px;

	border-radius: 999px;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.22);

	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hj-ofertas-home__eyebrow::before
{
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--hj-verde);
	box-shadow: 0 0 0 4px rgba(33, 166, 122, 0.18);
}

.hj-ofertas-home h2
{
	margin: 0;
	max-width: 720px;

	font-size: clamp(1.75rem, 4vw, 2.7rem);
	line-height: 1;
	letter-spacing: -0.055em;
	color: var(--hj-blanco);
}

.hj-ofertas-home__header p
{
	margin: 12px 0 0;
	max-width: 680px;

	color: rgba(255, 255, 255, 0.78);
	font-size: 1rem;
	line-height: 1.5;
}

.hj-ofertas-home__toplink
{
	flex: 0 0 auto;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 46px;
	padding: 0 18px;

	border-radius: 999px;
	background: var(--hj-blanco);
	color: var(--hj-azul-oscuro);
	font-weight: 900;
	box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);

	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease;
}

.hj-ofertas-home__toplink:hover
{
	transform: translateY(-1px);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.hj-ofertas-home__grid
{
	position: relative;
	z-index: 1;

	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.hj-oferta-mini
{
	min-height: 176px;
	padding: 19px;

	display: flex;
	flex-direction: column;

	border-radius: 20px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.34);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);

	color: var(--hj-azul-oscuro);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease;
}

.hj-oferta-mini:hover
{
	transform: translateY(-3px);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.hj-oferta-mini h3
{
	margin: 0;
	color: var(--hj-azul-oscuro);
	font-size: 1.12rem;
	line-height: 1.15;
	letter-spacing: -0.035em;
}

.hj-oferta-mini p
{
	margin: 12px 0 18px;
	color: #5E6E76;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.4;
}

.hj-oferta-mini__sep
{
	margin: 0 5px;
	color: var(--hj-verde);
}

.hj-oferta-mini__link
{
	margin-top: auto;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 42px;
	padding: 0 15px;

	border-radius: 999px;
	background: linear-gradient(135deg, var(--hj-verde), var(--hj-verde-oscuro));
	color: var(--hj-blanco);
	font-weight: 900;
	font-size: 0.95rem;
	box-shadow: 0 10px 18px rgba(33, 166, 122, 0.22);
}

.hj-oferta-mini__link:hover
{
	box-shadow: 0 14px 24px rgba(33, 166, 122, 0.30);
}

/* Responsive ofertas portada */

@media (max-width: 980px)
{
	.hj-ofertas-home__grid
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px)
{
	.hj-ofertas-home
	{
		width: min(100% - 24px, 1120px);
		margin-top: 2px;
		padding: 22px;
		border-radius: 22px;
	}

	.hj-ofertas-home__header
	{
		flex-direction: column;
		align-items: stretch;
	}

	.hj-ofertas-home__toplink
	{
		width: 100%;
	}

	.hj-ofertas-home__grid
	{
		grid-template-columns: 1fr;
	}

	.hj-oferta-mini
	{
		min-height: 150px;
	}
}

.hj-oferta-mini__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
}

.hj-oferta-mini__login {
	color: #14506f;
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.hj-oferta-mini__login:hover {
	text-decoration: underline;
}

@media (max-width: 640px) {
	.hj-oferta-mini__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hj-oferta-mini__login {
		text-align: center;
	}
}