/* =====================================================================
   VSL Landing — "Pa'lais — botanical cookbook / warm cream + deep indigo"
   Light editorial theme. Warm cream paper canvas (#fbf9f6) with pure
   white cards, a single deep-indigo brand voice (#234386) owning
   headlines, links and primary buttons. Warm accents (honey-gold,
   burnt orange, warm sand, mint sage) appear only as small organic
   touches and hairline dividers — never as big flat fills.
   ===================================================================== */

/* --- Tipografías alojadas localmente (subconjunto latino) — sin peticiones externas --- */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/spacegrotesk-400.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/spacegrotesk-500.woff2') format('woff2'); }
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/spacegrotesk-600.woff2') format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/jetbrainsmono-400.woff2') format('woff2'); }

:root {
	/* Colors — Pa'lais tokens */
	--cream: #fbf9f6;        /* page canvas */
	--white: #ffffff;        /* cards */
	--indigo: #234386;       /* brand: headlines, links, filled CTA */
	--indigo-2: #1b3468;     /* hover / darker indigo */
	--indigo-3: #2c5099;     /* lighter indigo accent */
	--ink: #1a1c22;          /* body text */
	--ink-soft: #5b616e;     /* secondary text */
	--ink-faint: #838a97;    /* captions, disclaimers */

	--honey: #ffc400;        /* honey-gold accent — organic touches */
	--orange: #ed7328;       /* burnt orange — outlined actions, small touches */
	--sand: #d2b68c;         /* warm sand */
	--sage: #a2d3a6;         /* mint sage */
	--sky: #6aa8dc;          /* soft illustration blue */

	--hairline: rgba(35, 67, 134, 0.14);
	--hairline-strong: rgba(35, 67, 134, 0.24);
	--hairline-ink: rgba(26, 28, 34, 0.10);
	--surface-tint: rgba(35, 67, 134, 0.035);
	--surface-tint-2: rgba(35, 67, 134, 0.06);

	--error: #c0442b;
	--ok: #3f9a63;

	/* Typography */
	--font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-display: 'Space Grotesk', 'Inter', ui-sans-serif, system-ui, sans-serif;
	--font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

	/* Layout */
	--page-max: 1260px;

	/* Radius */
	--r-card: 8px;
	--r-input: 8px;
	--r-pill: 9999px;

	/* Elevation — soft asymmetric shadow (Pa'lais recipe card) */
	--elev-card: 0 1px 0 rgba(255, 255, 255, 0.9) inset, rgba(0, 0, 0, 0.10) -10px 12px 40px 0px;
	--elev-soft: rgba(0, 0, 0, 0.06) 0px 14px 30px 0px;
}

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

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

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
	color: var(--ink);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

/* ------------------------------------------------ Ambient background layers */
.bg {
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background:
		radial-gradient(1100px 620px at 50% -12%, rgba(255, 196, 0, 0.05), transparent 62%),
		radial-gradient(900px 560px at 88% 8%, rgba(162, 211, 166, 0.06), transparent 58%),
		var(--cream);
}
/* Very faint warm paper texture — kept extremely subtle */
.bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--bg-image, none);
	background-size: cover;
	background-position: center top;
	opacity: 0.15;
	mix-blend-mode: multiply;
	-webkit-mask-image: radial-gradient(130% 100% at 50% 0%, #000 40%, transparent 100%);
	mask-image: radial-gradient(130% 100% at 50% 0%, #000 40%, transparent 100%);
}
/* Faint botanical wash grid — softened to nearly invisible warm lines */
.bg__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(35, 67, 134, 0.025) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(35, 67, 134, 0.025) 1px, transparent 1px);
	background-size: 96px 96px;
	-webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 82%);
	mask-image: radial-gradient(120% 100% at 50% 0%, #000 30%, transparent 82%);
}
/* Organic honey blob replacing the old dark halo */
.bg__halo {
	position: absolute;
	top: -4%;
	left: 50%;
	width: 720px;
	height: 420px;
	transform: translateX(-50%);
	background:
		radial-gradient(closest-side, rgba(255, 196, 0, 0.14), transparent 70%),
		radial-gradient(closest-side at 70% 60%, rgba(237, 115, 40, 0.08), transparent 72%);
	-webkit-mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent 78%);
	mask-image: radial-gradient(70% 100% at 50% 0%, #000, transparent 78%);
	opacity: 0.9;
	filter: blur(6px);
}

/* --------------------------------------------------------- Top navigation */
/* Deep-indigo band with cream logo + wordmark and uppercase tracked nav */
.topbar {
	width: 100%;
	position: relative;
	z-index: 3;
	background: var(--indigo);
	box-shadow: inset 0 -2px 0 rgba(255, 196, 0, 0.55);
}
.topbar__inner {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 9px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.wordmark {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--white);
}
.wordmark__logo {
	display: block;
	height: 40px;
	width: auto;
	padding: 3px;
	border-radius: 10px;
	background: var(--cream);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
.wordmark__text {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 19px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--white);
}

/* Pill button — outlined ghost on the indigo band */
.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 40px;
	padding: 0 22px;
	border: 0;
	border-radius: var(--r-pill);
	background: transparent;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pill:hover { background: var(--honey); color: var(--indigo); box-shadow: none; }
.pill:active { transform: translateY(1px); }
/* Solid indigo pill — used on cream backgrounds (e.g. thanks screen) */
.pill--solid {
	background: var(--indigo);
	box-shadow: none;
	color: var(--white);
}
.pill--solid:hover { background: var(--indigo-2); color: var(--white); }

/* ----------------------------------------------------------------- main */
.main {
	flex: 1;
	width: 100%;
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 40px 32px 88px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Hero eyebrow + headline stack — compact */
.hero-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--indigo);
}
.eyebrow::before,
.eyebrow::after {
	content: "";
	width: 40px;
	height: 2px;
	border-radius: 2px;
	background: var(--honey);
}
.hero-title {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(34px, 6vw, 56px);
	line-height: 1.02;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--indigo);
}
.hero-sub {
	margin: 0;
	max-width: 580px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink-soft);
}

/* Contenedor único: vídeo + formulario (usado en gracias.php) */
.stage {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

/* --------------------------------- Two-column split: video LEFT / form RIGHT */
.split {
	width: 100%;
	max-width: var(--page-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}
.split__media {
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}
.split__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}
/* Stack on mobile — video first, form second */
@media (max-width: 860px) {
	.split {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: 560px;
	}
	.split__media { order: 1; }
	.split__form { order: 2; }
}

/* Video Plate — vertical (4:5) VSL video */
.video {
	position: relative;
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	max-height: 82vh;
	aspect-ratio: 4 / 5;
	background: #000;
	border-radius: var(--r-card);
	box-shadow: var(--elev-card);
	overflow: hidden;
}
.video::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px var(--hairline-ink);
	pointer-events: none;
	z-index: 7;
}
.video__el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	background: #000;
}
/* Video overlay keeps a dark scrim for legibility over footage */
.video__overlay {
	position: absolute;
	inset: 0;
	z-index: 6;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
	cursor: pointer;
	background: radial-gradient(120% 120% at 50% 45%, rgba(15, 20, 40, 0.32), rgba(10, 14, 28, 0.72));
	transition: opacity 0.3s ease, visibility 0.3s ease;
	-webkit-tap-highlight-color: transparent;
}
.video__overlay.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.video__play {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--indigo);
	box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.18), 0 12px 40px rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video__overlay:hover .video__play { transform: scale(1.06); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.22), 0 14px 48px rgba(0, 0, 0, 0.5); }
.video__play svg { fill: #fff; margin-left: 3px; }
.video__hint { color: #fff; text-align: center; }
.video__hint b { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.video__hint span { display: block; font-size: 13px; color: rgba(251, 249, 246, 0.78); margin-top: 6px; letter-spacing: 0.02em; }

/* Caption under the video */
.caption {
	margin: 0;
	max-width: 520px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
	color: var(--ink-faint);
}

/* ----------------------------------------------------------------- form */
.form-card {
	position: relative;
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	background: var(--white);
	border-radius: var(--r-card);
	box-shadow: var(--elev-card);
	padding: 30px 28px;
}
/* Inside the two-column split the card fills its column */
.split__form .form-card { max-width: none; }
.form-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px var(--hairline-ink);
	pointer-events: none;
}
.form-card__title {
	text-align: center;
	font-family: var(--font-display);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	margin: 0 0 8px;
	color: var(--indigo);
}
.form-card__sub {
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	color: var(--ink-soft);
	margin: 0 0 26px;
}

/* Distintivo informativo bajo el título del formulario */
.form-badge {
	display: block;
	width: fit-content;
	margin: 0 auto 24px;
	padding: 7px 16px;
	border-radius: var(--r-pill);
	background: transparent;
	box-shadow: inset 0 0 0 1.5px var(--orange);
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--orange);
}

.field { margin-bottom: 18px; }
.field__label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--indigo);
	margin: 0 0 8px;
}
.field__input {
	width: 100%;
	padding: 13px 16px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	color: var(--ink);
	background: var(--cream);
	border: 0;
	border-radius: var(--r-input);
	box-shadow: inset 0 0 0 1px var(--hairline-strong);
	outline: none;
	transition: box-shadow 0.18s ease, background 0.18s ease;
}
.field__input::placeholder { color: var(--ink-faint); }
.field__input:focus { box-shadow: inset 0 0 0 1.5px var(--indigo), 0 0 0 3px rgba(35, 67, 134, 0.12); background: var(--white); }

/* Grupo de teléfono con prefijo +34 */
.phone-group {
	display: flex;
	align-items: stretch;
	width: 100%;
	border-radius: var(--r-input);
	background: var(--cream);
	box-shadow: inset 0 0 0 1px var(--hairline-strong);
	overflow: hidden;
	transition: box-shadow 0.18s ease, background 0.18s ease;
}
.phone-group:focus-within { box-shadow: inset 0 0 0 1.5px var(--indigo), 0 0 0 3px rgba(35, 67, 134, 0.12); background: var(--white); }
.phone-prefix {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 0 13px;
	box-shadow: inset -1px 0 0 var(--hairline-strong);
	font-size: 15px;
	font-weight: 500;
	white-space: nowrap;
	color: var(--indigo);
}
.phone-flag { width: 22px; height: 16px; border-radius: 2px; object-fit: cover; display: block; }
.phone-group .field__input { background: transparent; box-shadow: none; border-radius: 0; flex: 1; min-width: 0; }
.phone-group .field__input:focus { box-shadow: none; background: transparent; }

/* Mensajes de validación */
.field__msg {
	display: none;
	margin: 8px 0 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	color: var(--error);
}
.field.has-error .field__msg { display: block; }
.field.has-error .field__input,
.field.has-error .phone-group { box-shadow: inset 0 0 0 1.5px var(--error); }
.field.is-valid .field__input,
.field.is-valid .phone-group { box-shadow: inset 0 0 0 1.5px rgba(63, 154, 99, 0.6); }

/* Submit — solid indigo CTA pill */
.btn-submit {
	width: 100%;
	height: 54px;
	margin-top: 8px;
	border: 0;
	border-radius: var(--r-pill);
	background: var(--indigo);
	box-shadow: none;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.15s ease;
}
.btn-submit:hover { background: var(--indigo-2); }
.btn-submit:active { transform: translateY(1px); }

/* Casilla de consentimiento (RGPD) */
.consent {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	align-items: start;
	margin: 4px 0 18px;
	cursor: pointer;
}
.consent__box {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	flex-shrink: 0;
	accent-color: var(--indigo);
	cursor: pointer;
}
.consent__text {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--ink-soft);
}
.consent__text a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--hairline-strong); }
.consent__text a:hover { text-decoration-color: var(--indigo); }
.consent__msg { grid-column: 1 / -1; margin: 0; }
.consent.has-error .consent__msg { display: block; }
.consent.has-error .consent__box { outline: 2px solid var(--error); outline-offset: 1px; border-radius: 3px; }

.disclaimer {
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--ink-faint);
	margin: 18px 0 0;
}

/* honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* --------------------------------------------------- Trust strip */
/* Uppercase tracked labels separated by honey hairline rules */
.trust {
	width: 100%;
	margin: 4px 0 0;
	display: flex;
	flex-direction: column;
}
.trust__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 2px;
	text-align: left;
	box-shadow: inset 0 -1px 0 var(--hairline);
}
.trust__item:last-child { box-shadow: none; }
.trust__item::before {
	content: "";
	flex: 0 0 auto;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	background: var(--honey);
}
.trust__label {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--indigo);
	line-height: 1.4;
}

/* ------------------------------------------- pantalla de agradecimiento */
.thanks-card {
	position: relative;
	width: 100%;
	max-width: 540px;
	margin: 64px auto 0;
	padding: 44px 32px;
	background: var(--white);
	border-radius: var(--r-card);
	box-shadow: var(--elev-card);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.thanks-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px var(--hairline-ink); pointer-events: none; }
.thanks-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 9999px;
	background: rgba(162, 211, 166, 0.22);
	box-shadow: inset 0 0 0 1.5px rgba(63, 154, 99, 0.45);
	color: var(--ok);
}
.thanks-card__icon svg { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.thanks-card__title {
	font-family: var(--font-display);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.1;
	margin: 0;
	color: var(--indigo);
}
.thanks-card__text { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.thanks-card__hint { font-size: 14px; line-height: 1.55; color: var(--ink-faint); margin: 0; }
.thanks-card .pill { margin-top: 8px; }

/* --------------------------------------------------------------- footer */
.footer {
	width: 100%;
	margin-top: auto;
	position: relative;
	z-index: 2;
	background: var(--indigo);
	color: var(--white);
}
.footer__inner {
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 72px 32px 40px;
}
.footer__top {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 32px;
	padding-bottom: 32px;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.14);
}
.footer__brand { max-width: 34ch; display: flex; flex-direction: column; gap: 12px; }
.footer__brand-head { display: inline-flex; align-items: center; gap: 12px; }
.footer__brand-logo { height: 32px; width: auto; }
.footer__brand-name {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.1;
	color: var(--white);
}
.footer__brand-tagline { margin: 0; font-size: 15px; font-weight: 400; color: rgba(251, 249, 246, 0.72); line-height: 1.55; }
.footer__nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; padding: 0; margin: 0; }
.footer__nav a {
	color: rgba(251, 249, 246, 0.82);
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: color 0.18s ease;
}
.footer__nav a:hover { color: var(--honey); }

.footer__body {
	display: grid;
	grid-template-columns: minmax(280px, 460px) 1fr;
	gap: 24px;
	padding: 32px 0;
}
.company {
	position: relative;
	padding: 26px;
	border-radius: var(--r-card);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
	text-align: left;
	align-self: start;
}
.company__name {
	display: block;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	line-height: 1.25;
	color: var(--white);
	padding-bottom: 16px;
	margin-bottom: 16px;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.14);
}
.company__grid { margin: 0; display: grid; gap: 14px; }
.company__row { display: grid; grid-template-columns: 104px 1fr; gap: 16px; align-items: baseline; }
.company__row dt {
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(251, 249, 246, 0.6);
}
.company__row dd { margin: 0; font-size: 15px; font-weight: 400; color: rgba(251, 249, 246, 0.92); word-break: break-word; }
.company__row dd a { color: var(--honey); text-decoration: none; box-shadow: inset 0 -1px 0 rgba(255, 196, 0, 0.4); transition: color 0.18s ease; }
.company__row dd a:hover { color: var(--white); }

.footer__notes { display: grid; gap: 16px; align-content: start; }
.note {
	padding: 24px;
	border-radius: var(--r-card);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
	text-align: left;
}
.note__title {
	display: block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--honey);
	margin-bottom: 10px;
}
.note__text { margin: 0; font-size: 14px; font-weight: 400; line-height: 1.6; color: rgba(251, 249, 246, 0.78); }
.footer__cnmv-link {
	display: inline-flex;
	align-items: center;
	margin-top: 14px;
	padding: 9px 16px;
	border-radius: var(--r-pill);
	background: transparent;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.3);
	color: var(--white);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease;
}
.footer__cnmv-link:hover { background: var(--honey); color: var(--indigo); box-shadow: none; }

.footer__risk {
	margin: 28px 0 0;
	padding-top: 24px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.65;
	color: rgba(251, 249, 246, 0.65);
}

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 6px 16px;
	padding-top: 28px;
}
.footer__bottom .copyright { margin: 0; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: rgba(251, 249, 246, 0.9); }
.footer__rights { margin: 0; font-size: 13px; font-weight: 400; color: rgba(251, 249, 246, 0.6); }

/* ------------------------------------------------- aviso de cookies */
.cookie-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 60;
	display: none;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: var(--page-max);
	margin: 0 auto;
	padding: 18px 22px;
	background: var(--white);
	border-radius: var(--r-card);
	box-shadow: rgba(0, 0, 0, 0.16) -6px 10px 40px 0px;
}
.cookie-banner::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px var(--hairline-ink); pointer-events: none; }
.cookie-banner.is-visible { display: flex; }
.cookie-banner__text { flex: 1 1 320px; margin: 0; font-size: 14px; font-weight: 400; line-height: 1.55; color: var(--ink-soft); }
.cookie-banner__text a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--hairline-strong); }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white);
	background: var(--indigo);
	box-shadow: none;
	border: 0;
	padding: 12px 24px;
	border-radius: var(--r-pill);
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease;
}
.cookie-btn:hover { background: var(--indigo-2); }
.cookie-btn--ghost { color: var(--indigo); background: transparent; box-shadow: inset 0 0 0 1.5px var(--indigo); }
.cookie-btn--ghost:hover { background: var(--indigo); color: var(--white); }
@media screen and (max-width: 640px) {
	.cookie-banner__actions { flex: 1 1 100%; }
	.cookie-btn { flex: 1; }
}

/* ------------------------------------------------- modal de contacto */
.modal {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: rgba(27, 52, 104, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	-webkit-tap-highlight-color: transparent;
}
.modal.is-open { display: flex; }
.modal__dialog { position: relative; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto; margin: 0; }
.modal__dialog .form-card { padding-top: 48px; }
.modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: var(--cream);
	box-shadow: inset 0 0 0 1px var(--hairline-strong);
	color: var(--indigo);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease;
}
.modal__close:hover { background: var(--indigo); color: var(--white); }

/* ----------------------------------------------------------- responsive */
@media (max-width: 640px) {
	.topbar__inner { padding: 9px 16px; }
	.main { padding: 24px 16px 72px; }
	.hero-head { margin-bottom: 20px; }
	.stage { gap: 20px; max-width: 460px; }
	.video { max-height: 74vh; }
	.form-card { padding: 24px 18px; }
	.footer__inner { padding: 48px 16px 32px; }
	.footer__top { flex-direction: column; gap: 20px; padding-bottom: 24px; }
	.footer__brand { max-width: none; }
	.footer__body { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
	.company { padding: 20px; }
	.company__row { grid-template-columns: 1fr; gap: 2px; }
	.note { padding: 20px; }
}
@media (min-width: 641px) and (max-width: 960px) {
	.footer__body { grid-template-columns: 1fr; }
	.footer__notes { grid-template-columns: 1fr 1fr; }
}
