:root {
	--hv-tinta: #241c2b;
	--hv-tinta-2: #33283a;
	--hv-terra: #b44f2c;
	--hv-terra-osc: #93401f;
	--hv-arena: #e9c6a5;
	--hv-crema: #fbf6f0;
	--hv-crema-2: #f3e9dd;
	--hv-salvia: #4e6e5d;
	--hv-gris: #635b6b;
	--hv-linea: #e0d3c4;
	--hv-radio: 4px;
	--hv-ancho: 1128px;
}

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background-color: var(--hv-crema);
	color: var(--hv-tinta);
	font-family: 'Karla', 'Helvetica Neue', Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	overflow-x: hidden;
}

img,
svg {
	max-width: 100%;
}

img {
	height: auto;
	display: block;
}

a {
	color: var(--hv-terra-osc);
}

:focus-visible {
	outline: 3px solid var(--hv-salvia);
	outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-weight: 600;
	line-height: 1.18;
	margin: 0;
	letter-spacing: -0.01em;
}

.hv_marco {
	width: 100%;
	max-width: var(--hv-ancho);
	margin: 0 auto;
	padding: 0 24px;
}

.hv_marco-angosto {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px;
}

.hv_salto-contenido {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--hv-tinta);
	color: var(--hv-crema);
	padding: 10px 18px;
	z-index: 99;
}

.hv_salto-contenido:focus {
	left: 8px;
	top: 8px;
}

/* ---------- Encabezado ---------- */

.hv_encabezado {
	background-color: var(--hv-crema);
	border-bottom: 1px solid var(--hv-linea);
	position: sticky;
	top: 0;
	z-index: 40;
}

.hv_encabezado-fila {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.hv_marca {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: inherit;
	flex-shrink: 0;
}

.hv_marca img {
	width: 44px;
	height: 44px;
}

.hv_marca-nombre {
	display: block;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.1;
}

.hv_marca-bajada {
	display: block;
	font-size: 12px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--hv-gris);
}

.hv_menu-boton {
	display: none;
	background: none;
	border: 1px solid var(--hv-linea);
	border-radius: var(--hv-radio);
	padding: 9px 12px;
	cursor: pointer;
	color: var(--hv-tinta);
	font: inherit;
	font-size: 14px;
	align-items: center;
	gap: 8px;
}

.hv_navegacion ul {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.hv_navegacion a {
	display: block;
	padding: 8px 12px;
	font-size: 15px;
	font-weight: 500;
	color: var(--hv-tinta);
	text-decoration: none;
	border-radius: var(--hv-radio);
	border-bottom: 2px solid transparent;
}

.hv_navegacion a:hover {
	background-color: var(--hv-crema-2);
}

.hv_navegacion a[aria-current='page'] {
	border-bottom-color: var(--hv-terra);
	color: var(--hv-terra-osc);
}

/* ---------- Botones ---------- */

.hv_boton {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 24px;
	background-color: var(--hv-terra);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	text-decoration: none;
	border: 2px solid var(--hv-terra);
	border-radius: var(--hv-radio);
	cursor: pointer;
	font-family: inherit;
	transition: background-color 0.18s ease;
}

.hv_boton:hover {
	background-color: var(--hv-terra-osc);
	border-color: var(--hv-terra-osc);
}

.hv_boton-linea {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 13px 24px;
	background-color: transparent;
	color: var(--hv-tinta);
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border: 2px solid var(--hv-tinta);
	border-radius: var(--hv-radio);
	transition: background-color 0.18s ease, color 0.18s ease;
}

.hv_boton-linea:hover {
	background-color: var(--hv-tinta);
	color: var(--hv-crema);
}

.hv_boton-claro {
	border-color: var(--hv-arena);
	color: var(--hv-arena);
}

.hv_boton-claro:hover {
	background-color: var(--hv-arena);
	color: var(--hv-tinta);
}

.hv_par-botones {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

/* ---------- Portada ---------- */

.hv_portada {
	padding: 64px 0 12px;
	background: linear-gradient(180deg, var(--hv-crema-2) 0%, var(--hv-crema) 100%);
}

.hv_portada-reja {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}

.hv_etiqueta {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--hv-salvia);
	border-left: 3px solid var(--hv-terra);
	padding-left: 10px;
	margin-bottom: 18px;
}

.hv_portada h1 {
	font-size: clamp(34px, 4.4vw, 52px);
}

.hv_portada-bajada {
	font-size: 19px;
	color: var(--hv-gris);
	margin: 22px 0 0;
	max-width: 34em;
}

.hv_portada-figura {
	position: relative;
}

.hv_portada-figura img {
	width: 100%;
	border-radius: var(--hv-radio);
	border: 1px solid var(--hv-linea);
}

.hv_portada-ficha {
	position: absolute;
	right: -18px;
	bottom: -26px;
	background: var(--hv-tinta);
	color: var(--hv-crema);
	padding: 16px 20px;
	border-radius: var(--hv-radio);
	max-width: 250px;
	box-shadow: 0 12px 30px rgba(36, 28, 43, 0.18);
}

.hv_portada-ficha strong {
	display: block;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 26px;
	color: var(--hv-arena);
	line-height: 1.1;
}

.hv_portada-ficha span {
	font-size: 13px;
	line-height: 1.45;
	display: block;
	margin-top: 4px;
	opacity: 0.86;
}

/* ---------- Tira de pasos ---------- */

.hv_tira {
	padding: 74px 0 0;
}

.hv_tira-reja {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--hv-linea);
	border-radius: var(--hv-radio);
	overflow: hidden;
	background: #fff;
}

.hv_paso {
	padding: 30px 28px;
	border-right: 1px solid var(--hv-linea);
}

.hv_paso:last-child {
	border-right: 0;
}

.hv_paso-num {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--hv-terra);
	letter-spacing: 0.1em;
	display: block;
	margin-bottom: 10px;
}

.hv_paso h3 {
	font-size: 20px;
	margin-bottom: 8px;
}

.hv_paso p {
	margin: 0;
	font-size: 15.5px;
	color: var(--hv-gris);
}

/* ---------- Secciones genéricas ---------- */

.hv_seccion {
	padding: 74px 0;
}

.hv_seccion-tinta {
	background-color: var(--hv-tinta);
	color: var(--hv-crema);
}

.hv_seccion-tinta h2,
.hv_seccion-tinta h3 {
	color: var(--hv-crema);
}

.hv_seccion-crema {
	background-color: var(--hv-crema-2);
}

.hv_titulo-seccion {
	font-size: clamp(27px, 3.1vw, 36px);
	max-width: 20em;
}

.hv_intro-seccion {
	color: var(--hv-gris);
	max-width: 44em;
	margin: 16px 0 0;
}

.hv_seccion-tinta .hv_intro-seccion {
	color: var(--hv-arena);
}

.hv_cabecera-seccion {
	margin-bottom: 40px;
}

/* ---------- Filas alternadas ---------- */

.hv_fila {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 56px;
}

.hv_fila:last-child {
	margin-bottom: 0;
}

.hv_fila-invertida .hv_fila-texto {
	order: 2;
}

.hv_fila img {
	width: 100%;
	border-radius: var(--hv-radio);
	border: 1px solid var(--hv-linea);
}

.hv_fila h3 {
	font-size: 25px;
	margin-bottom: 12px;
}

.hv_fila p {
	margin: 0 0 12px;
	color: var(--hv-gris);
}

/* ---------- Listas con marca ---------- */

.hv_lista-marcada {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.hv_lista-marcada li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 12px;
	font-size: 16px;
}

.hv_lista-marcada svg {
	flex-shrink: 0;
	margin-top: 4px;
}

/* ---------- Rejilla de tarjetas ---------- */

.hv_reja-fichas {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.hv_reja-dos {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.hv_ficha {
	background: #fff;
	border: 1px solid var(--hv-linea);
	border-radius: var(--hv-radio);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.hv_ficha img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.hv_ficha-cuerpo {
	padding: 22px 24px 26px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.hv_ficha-rubro {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hv-salvia);
	margin-bottom: 10px;
	display: block;
}

.hv_ficha h3 {
	font-size: 21px;
	margin-bottom: 10px;
}

.hv_ficha h3 a {
	color: inherit;
	text-decoration: none;
}

.hv_ficha h3 a:hover {
	color: var(--hv-terra-osc);
}

.hv_ficha p {
	margin: 0 0 16px;
	color: var(--hv-gris);
	font-size: 15.5px;
}

.hv_ficha-pie {
	margin-top: auto;
	font-size: 14px;
	font-weight: 700;
	color: var(--hv-terra-osc);
	text-decoration: none;
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.hv_ficha-datos {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	border-top: 1px solid var(--hv-linea);
}

.hv_ficha-datos li {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 8px 0;
	border-bottom: 1px solid var(--hv-linea);
	font-size: 14.5px;
}

.hv_ficha-datos span {
	color: var(--hv-gris);
}

.hv_ficha-datos b {
	font-weight: 700;
	text-align: right;
}

/* ---------- Cita de lectora ---------- */

.hv_cita {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 26px;
	align-items: start;
	background: #fff;
	border: 1px solid var(--hv-linea);
	border-left: 4px solid var(--hv-terra);
	border-radius: var(--hv-radio);
	padding: 32px 34px;
}

.hv_cita-inicial {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: var(--hv-salvia);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 30px;
}

.hv_cita blockquote {
	margin: 0;
	font-size: 19px;
	font-family: 'Fraunces', Georgia, serif;
	line-height: 1.45;
}

.hv_cita figcaption {
	margin-top: 14px;
	font-size: 14.5px;
	color: var(--hv-gris);
}

/* ---------- Llamado final ---------- */

.hv_llamado {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: center;
}

.hv_llamado h2 {
	font-size: clamp(26px, 3vw, 34px);
}

.hv_llamado p {
	color: var(--hv-arena);
	margin: 14px 0 0;
}

.hv_llamado-acciones {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-start;
}

/* ---------- Artículos ---------- */

.hv_articulo-tapa {
	padding: 52px 0 34px;
	background: var(--hv-crema-2);
	border-bottom: 1px solid var(--hv-linea);
}

.hv_migas {
	font-size: 13.5px;
	color: var(--hv-gris);
	margin-bottom: 16px;
}

.hv_migas a {
	color: var(--hv-gris);
}

.hv_articulo-tapa h1 {
	font-size: clamp(30px, 3.9vw, 44px);
	max-width: 18em;
}

.hv_meta-articulo {
	margin-top: 18px;
	font-size: 14px;
	color: var(--hv-gris);
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.hv_cuerpo {
	padding: 44px 0 74px;
}

.hv_cuerpo img {
	width: 100%;
	border-radius: var(--hv-radio);
	border: 1px solid var(--hv-linea);
	margin: 26px 0;
}

.hv_cuerpo h2 {
	font-size: 27px;
	margin: 40px 0 14px;
}

.hv_cuerpo h3 {
	font-size: 21px;
	margin: 28px 0 10px;
}

.hv_cuerpo p {
	margin: 0 0 16px;
}

.hv_cuerpo ul,
.hv_cuerpo ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.hv_cuerpo li {
	margin-bottom: 9px;
}

.hv_destacado {
	background: var(--hv-crema-2);
	border-left: 4px solid var(--hv-salvia);
	padding: 20px 24px;
	border-radius: var(--hv-radio);
	margin: 26px 0;
}

.hv_destacado p:last-child {
	margin-bottom: 0;
}

.hv_tabla-envase {
	overflow-x: auto;
	margin: 24px 0;
	border: 1px solid var(--hv-linea);
	border-radius: var(--hv-radio);
}

.hv_tabla {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	background: #fff;
	min-width: 480px;
}

.hv_tabla th,
.hv_tabla td {
	padding: 11px 16px;
	text-align: left;
	border-bottom: 1px solid var(--hv-linea);
}

.hv_tabla th {
	background: var(--hv-crema-2);
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
}

.hv_tabla tr:last-child td {
	border-bottom: 0;
}

/* ---------- Formulario ---------- */

.hv_reja-contacto {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.hv_formulario {
	background: #fff;
	border: 1px solid var(--hv-linea);
	border-radius: var(--hv-radio);
	padding: 30px 32px 34px;
}

.hv_campo {
	margin-bottom: 18px;
}

.hv_campo label,
.hv_campo-titulo {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 7px;
}

.hv_campo input[type='text'],
.hv_campo input[type='email'],
.hv_campo input[type='tel'],
.hv_campo select,
.hv_campo textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--hv-linea);
	border-radius: var(--hv-radio);
	font: inherit;
	font-size: 15.5px;
	background: var(--hv-crema);
	color: var(--hv-tinta);
}

.hv_campo textarea {
	min-height: 128px;
	resize: vertical;
}

.hv_ayuda {
	font-size: 13px;
	color: var(--hv-gris);
	margin: 6px 0 0;
}

.hv_opciones {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hv_opcion input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.hv_opcion label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 9px 15px;
	border: 1px solid var(--hv-linea);
	border-radius: var(--hv-radio);
	cursor: pointer;
	font-weight: 500;
	font-size: 14.5px;
	background: var(--hv-crema);
}

.hv_opcion input:checked + label {
	border-color: var(--hv-terra);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--hv-terra);
}

.hv_opcion input:focus-visible + label {
	outline: 3px solid var(--hv-salvia);
	outline-offset: 2px;
}

.hv_consentimiento {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	margin: 22px 0 6px;
	font-size: 14.5px;
	color: var(--hv-gris);
}

.hv_consentimiento input {
	margin-top: 5px;
	flex-shrink: 0;
	width: 17px;
	height: 17px;
	accent-color: var(--hv-terra);
}

.hv_datos-contacto {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hv_datos-contacto li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 0;
	border-bottom: 1px solid var(--hv-linea);
}

.hv_datos-contacto svg {
	flex-shrink: 0;
	margin-top: 3px;
}

.hv_datos-contacto b {
	display: block;
	font-size: 14px;
}

.hv_datos-contacto span,
.hv_datos-contacto a {
	color: var(--hv-gris);
	font-size: 15.5px;
}

/* ---------- Confirmación ---------- */

.hv_confirmacion {
	text-align: center;
	padding: 92px 0;
}

.hv_confirmacion-sello {
	width: 84px;
	height: 84px;
	margin: 0 auto 26px;
	border-radius: 50%;
	background: var(--hv-salvia);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hv_confirmacion h1 {
	font-size: clamp(28px, 3.6vw, 40px);
}

.hv_confirmacion p {
	color: var(--hv-gris);
	max-width: 36em;
	margin: 18px auto 0;
}

/* ---------- Pie ---------- */

.hv_pie {
	background: var(--hv-tinta);
	color: var(--hv-crema);
	padding: 58px 0 30px;
}

.hv_pie-reja {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 36px;
}

.hv_pie h4 {
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hv-arena);
	margin-bottom: 16px;
	font-family: 'Karla', sans-serif;
	font-weight: 700;
}

.hv_pie ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hv_pie li {
	margin-bottom: 9px;
}

.hv_pie a {
	color: var(--hv-crema);
	text-decoration: none;
	font-size: 15px;
	opacity: 0.85;
}

.hv_pie a:hover {
	opacity: 1;
	text-decoration: underline;
}

.hv_pie p {
	font-size: 15px;
	opacity: 0.85;
	margin: 0 0 10px;
}

.hv_pie-marca {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.hv_pie-marca img {
	width: 40px;
	height: 40px;
}

.hv_pie-marca span {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 21px;
}

.hv_pie-base {
	margin-top: 42px;
	padding-top: 22px;
	border-top: 1px solid rgba(233, 198, 165, 0.24);
	display: flex;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13.5px;
	opacity: 0.78;
}

/* ---------- Aviso de cookies ---------- */

.hv_aviso-cookies {
	position: fixed;
	left: 20px;
	bottom: 20px;
	width: min(400px, calc(100vw - 40px));
	background: #fff;
	border: 1px solid var(--hv-linea);
	border-top: 4px solid var(--hv-terra);
	border-radius: var(--hv-radio);
	padding: 22px 24px;
	box-shadow: 0 16px 42px rgba(36, 28, 43, 0.2);
	z-index: 60;
}

.hv_aviso-cookies h5 {
	font-size: 18px;
	margin-bottom: 8px;
}

.hv_aviso-cookies p {
	margin: 0 0 16px;
	font-size: 14.5px;
	color: var(--hv-gris);
}

.hv_aviso-acciones {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.hv_aviso-acciones button {
	font-size: 14px;
	padding: 10px 18px;
}

/* ---------- Adaptable ---------- */

@media (max-width: 900px) {
	.hv_portada-reja,
	.hv_fila,
	.hv_llamado,
	.hv_reja-contacto {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.hv_fila-invertida .hv_fila-texto {
		order: 0;
	}

	.hv_tira-reja,
	.hv_reja-fichas,
	.hv_reja-dos {
		grid-template-columns: 1fr;
	}

	.hv_paso {
		border-right: 0;
		border-bottom: 1px solid var(--hv-linea);
	}

	.hv_paso:last-child {
		border-bottom: 0;
	}

	.hv_pie-reja {
		grid-template-columns: 1fr 1fr;
	}

	.hv_portada-ficha {
		position: static;
		max-width: none;
		margin-top: 16px;
	}

	.hv_menu-boton {
		display: inline-flex;
	}

	.hv_navegacion {
		display: none;
		width: 100%;
		padding-bottom: 14px;
	}

	.hv_navegacion.hv_abierto {
		display: block;
	}

	.hv_navegacion ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.hv_navegacion a {
		padding: 12px 4px;
		border-bottom: 1px solid var(--hv-linea);
		border-radius: 0;
	}

	.hv_encabezado-fila {
		flex-wrap: wrap;
	}
}

@media (max-width: 620px) {
	body {
		font-size: 16.5px;
	}

	.hv_seccion,
	.hv_tira {
		padding: 52px 0;
	}

	.hv_portada {
		padding-top: 44px;
	}

	.hv_cita {
		grid-template-columns: 1fr;
		padding: 26px 24px;
	}

	.hv_pie-reja {
		grid-template-columns: 1fr;
	}

	.hv_aviso-cookies {
		left: 12px;
		bottom: 12px;
		width: calc(100vw - 24px);
	}
}
