/* ===========================================================================
   TFQ inc. — hoja de estilo del tema
   Paleta tomada del logotipo: azul marino, azul, turquesa y el rojo de la hoja.
   Sin dependencias externas: ni fuentes de Google, ni frameworks, ni CDN.
   =========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
	--navy-900: #061731;
	--navy-800: #0a2354;
	--navy-700: #123064;
	--navy-600: #1b4184;
	--blue-500: #1a5fc4;
	--blue-400: #3d7fdd;
	--blue-100: #dbe7f9;
	--blue-050: #eef4fd;
	--teal-500: #07a3ae;
	--teal-600: #068390;
	--teal-050: #e4f6f7;
	--red-500: #d31e2c;

	--ink-900: #10192b;
	--ink-700: #2f3d55;
	--ink-500: #5a6883;
	--ink-300: #9aa5b8;
	--line: #e2e7f0;
	--line-soft: #eef1f6;
	--paper: #ffffff;
	--paper-tint: #f6f8fc;

	--sans: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	--serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;

	--wrap: 1140px;
	--gap: clamp(1rem, 2.5vw, 1.75rem);
	--radius: 14px;
	--radius-sm: 9px;
	--shadow-sm: 0 1px 2px rgba(10, 35, 84, .06), 0 2px 8px rgba(10, 35, 84, .05);
	--shadow-md: 0 4px 12px rgba(10, 35, 84, .07), 0 16px 40px rgba(10, 35, 84, .08);
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* --- 2. Base ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink-700);
	font-family: var(--sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
	font-family: var(--serif);
	color: var(--navy-800);
	line-height: 1.18;
	letter-spacing: -.012em;
	margin: 0 0 .5em;
	font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; letter-spacing: -.004em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-500); text-decoration-color: rgba(26, 95, 196, .35); text-underline-offset: 3px; }
a:hover { color: var(--navy-700); text-decoration-color: currentColor; }

strong { color: var(--navy-800); font-weight: 650; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
	outline: 3px solid var(--teal-500);
	outline-offset: 3px;
	border-radius: 4px;
}

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--navy-800); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
@media (max-width: 560px) { .wrap { width: calc(100% - 2rem); } }

.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- 3. Botones --------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	padding: .82em 1.5em;
	border: 1px solid transparent;
	border-radius: 999px;
	font: inherit; font-size: .975rem; font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
	white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy-700); color: #fff; box-shadow: var(--shadow-md); }

.btn--accent { background: var(--teal-500); color: #04333a; }
.btn--accent:hover { background: var(--teal-600); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { background: var(--blue-050); border-color: var(--blue-100); color: var(--navy-800); }

.btn--onnavy { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .3); }
.btn--onnavy:hover { background: #fff; color: var(--navy-800); }

.btn--sm { padding: .6em 1.15em; font-size: .9rem; }

/* --- 4. Cabecera -------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 1px 14px rgba(10, 35, 84, .06); }

.site-header__inner {
	display: flex; align-items: center; gap: 1.25rem;
	min-height: 76px;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img, .brand svg { height: 38px; width: auto; }
.brand__name { display: none; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
	display: block; padding: .5rem .7rem; border-radius: 8px;
	color: var(--ink-700); font-size: .93rem; font-weight: 550; text-decoration: none;
	transition: background-color .15s var(--ease), color .15s var(--ease);
}
.nav a:hover { background: var(--blue-050); color: var(--navy-800); }
.nav a.is-active { color: var(--navy-800); background: var(--blue-050); }

.langs { display: flex; gap: 2px; padding: 3px; background: var(--paper-tint); border: 1px solid var(--line); border-radius: 999px; }
.langs button {
	appearance: none; border: 0; background: transparent; cursor: pointer;
	font: inherit; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	color: var(--ink-500); padding: .34rem .6rem; border-radius: 999px;
	transition: background-color .15s var(--ease), color .15s var(--ease);
}
.langs button:hover { color: var(--navy-800); }
.langs button[aria-pressed="true"] { background: var(--navy-800); color: #fff; }

.nav-toggle { display: none; }

@media (max-width: 1040px) {
	.nav-toggle {
		display: inline-flex; align-items: center; justify-content: center;
		width: 44px; height: 44px; padding: 0;
		background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
		color: var(--navy-800);
	}
	.nav-toggle span { position: relative; display: block; width: 19px; height: 1.6px; background: currentColor; border-radius: 2px; transition: transform .22s var(--ease), opacity .18s var(--ease); }
	.nav-toggle span::before, .nav-toggle span::after {
		content: ""; position: absolute; left: 0; width: 19px; height: 1.6px; background: currentColor; border-radius: 2px;
		transition: transform .22s var(--ease);
	}
	.nav-toggle span::before { top: -6px; }
	.nav-toggle span::after { top: 6px; }
	.nav-toggle[aria-expanded="true"] span { background: transparent; }
	.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
	.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

	.site-header__inner { flex-wrap: wrap; }
	.nav {
		order: 10; flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 0;
		max-height: 0; overflow: hidden; visibility: hidden;
		transition: max-height .3s var(--ease), visibility 0s linear .3s;
	}
	.nav.is-open { max-height: 70vh; overflow-y: auto; visibility: visible; transition-delay: 0s; padding-bottom: 1rem; }
	.nav a { padding: .8rem .5rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; font-size: 1rem; }
	.nav .btn { margin-top: .9rem; align-self: flex-start; }
}

/* --- 5. Secciones ------------------------------------------------------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--paper-tint); border-block: 1px solid var(--line-soft); }
.section--navy { background: var(--navy-800); color: rgba(255, 255, 255, .82); }
.section--navy h2, .section--navy h3 { color: #fff; }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
	display: inline-flex; align-items: center; gap: .5rem;
	margin: 0 0 .9rem;
	font-family: var(--sans); font-size: .765rem; font-weight: 700;
	letter-spacing: .13em; text-transform: uppercase;
	color: var(--teal-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--teal-500); border-radius: 2px; }
.section--navy .eyebrow { color: #6fd8e0; }
.section--navy .eyebrow::before { background: #6fd8e0; }
.section__head--center .eyebrow::before { display: none; }

.lead { font-size: 1.1rem; color: var(--ink-500); max-width: 42rem; }
.section--navy .lead { color: rgba(255, 255, 255, .72); }

/* --- 6. Hero ------------------------------------------------------------ */
.hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(1100px 520px at 88% -12%, rgba(7, 163, 174, .16), transparent 62%),
		radial-gradient(900px 480px at 8% 0%, rgba(26, 95, 196, .18), transparent 60%),
		linear-gradient(168deg, var(--navy-900) 0%, var(--navy-800) 45%, #0d2a63 100%);
	color: rgba(255, 255, 255, .8);
	padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.hero::after {
	content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
	background: linear-gradient(90deg, var(--blue-500) 0%, var(--teal-500) 55%, var(--red-500) 100%);
}
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.15fr .85fr; } }

.hero h1 { color: #fff; margin-bottom: .55em; text-wrap: balance; }
.hero .lead { color: rgba(255, 255, 255, .78); font-size: clamp(1.05rem, 1.5vw, 1.19rem); max-width: 34rem; }
.hero .eyebrow { color: #7fdfe6; }
.hero .eyebrow::before { background: #7fdfe6; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255, 255, 255, .14); }
.hero__badges li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255, 255, 255, .72); }
.hero__badges svg { flex: none; width: 17px; height: 17px; color: var(--teal-500); }

/* tarjeta de resumen del hero */
.hero__card {
	background: rgba(255, 255, 255, .055);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 18px;
	padding: clamp(1.5rem, 3vw, 2rem);
	backdrop-filter: blur(6px);
}
.hero__card h2 { font-size: 1.05rem; font-family: var(--sans); font-weight: 700; letter-spacing: .02em; color: #fff; margin-bottom: 1.25rem; }
.hero__card dl { display: grid; gap: .9rem; margin: 0; }
.hero__card div { display: grid; gap: .15rem; padding-bottom: .9rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.hero__card div:last-child { border-bottom: 0; padding-bottom: 0; }
.hero__card dt { font-size: .775rem; text-transform: uppercase; letter-spacing: .1em; color: #7fdfe6; font-weight: 700; }
.hero__card dd { margin: 0; color: rgba(255, 255, 255, .86); font-size: .95rem; }

/* --- 7. Rejillas y tarjetas -------------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

.card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(1.35rem, 2.4vw, 1.85rem);
	box-shadow: var(--shadow-sm);
	transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-500); font-size: .96rem; margin: 0; }

.card__icon {
	display: grid; place-items: center;
	width: 46px; height: 46px; margin-bottom: 1.1rem;
	border-radius: 12px;
	background: var(--blue-050); color: var(--blue-500);
	border: 1px solid var(--blue-100);
}
.card__icon svg { width: 22px; height: 22px; }
.card:nth-child(3n+2) .card__icon { background: var(--teal-050); color: var(--teal-600); border-color: #c7e9ec; }

/* tarjetas de público (trabajador / empresa) */
.audience { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)); }
.audience .card { display: flex; flex-direction: column; }
.audience .card__tag {
	display: inline-block; align-self: flex-start;
	margin-bottom: 1rem; padding: .3rem .8rem;
	border-radius: 999px; background: var(--navy-800); color: #fff;
	font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
}
.audience .card:nth-child(2) .card__tag { background: var(--teal-600); }
.audience ul { margin-top: 1.25rem; display: grid; gap: .6rem; }
.audience li { position: relative; padding-left: 1.6rem; font-size: .95rem; color: var(--ink-700); }
.audience li::before {
	content: ""; position: absolute; left: 0; top: .5em;
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--teal-500); box-shadow: 0 0 0 3px var(--teal-050);
}

/* --- 8. Proceso (pasos numerados) --------------------------------------- */
.steps { counter-reset: step; display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr)); }
.step { position: relative; padding-top: 2.9rem; }
.step::before {
	counter-increment: step; content: counter(step, decimal-leading-zero);
	position: absolute; top: 0; left: 0;
	font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--blue-500);
	background: var(--blue-050); border: 1px solid var(--blue-100);
	width: 46px; height: 46px; border-radius: 12px;
	display: grid; place-items: center;
}
.step::after {
	content: ""; position: absolute; top: 23px; left: 58px; right: -1.5rem; height: 1px;
	background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }
@media (max-width: 900px) { .step::after { display: none; } }
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-500); font-size: .95rem; margin: 0; }

/* --- 9. Documentos ------------------------------------------------------ */
.docs { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 940px) { .docs { grid-template-columns: 21rem 1fr; align-items: start; } }

.doclist { display: grid; gap: .85rem; }
.doclist li {
	position: relative;
	padding: .1rem 0 .1rem 2.1rem;
	font-size: .96rem; color: var(--ink-700);
}
.doclist li::before {
	content: ""; position: absolute; left: 0; top: .18em;
	width: 20px; height: 20px; border-radius: 6px;
	background: var(--paper); border: 1.5px solid var(--blue-100);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%231a5fc4' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3.2 3.2L15 7'/%3E%3C/svg%3E");
	background-size: 15px; background-position: center; background-repeat: no-repeat;
}
.doclist--emp li::before { border-color: #c7e9ec; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23068390' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3.2 3.2L15 7'/%3E%3C/svg%3E"); }

.doc-send {
	display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: .5rem;
	margin-top: 1.4rem; padding: .7rem 1.15rem;
	background: var(--teal-050); border: 1px solid #c7e9ec; border-radius: 999px;
	font-size: .95rem; color: var(--ink-700);
}
.doc-send a { font-weight: 650; color: var(--teal-600); }

.note {
	margin-top: var(--gap);
	padding: 1.25rem 1.4rem;
	background: #fff8f8;
	border: 1px solid #f6d9dc;
	border-left: 3px solid var(--red-500);
	border-radius: var(--radius-sm);
	font-size: .93rem; color: var(--ink-700);
}
.note strong { color: var(--red-500); }

/* --- 10. Fechas --------------------------------------------------------- */
.timeline { display: grid; gap: 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.timeline > div {
	display: grid; gap: .25rem 2rem; align-items: baseline;
	grid-template-columns: 1fr;
	padding: 1.15rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (min-width: 700px) { .timeline > div { grid-template-columns: 11rem 1fr; } }
.timeline dt { font-family: var(--serif); font-size: 1.16rem; color: #fff; font-weight: 600; }
.timeline dd { margin: 0; color: rgba(255, 255, 255, .74); font-size: .96rem; }

/* --- 11. Tarifas -------------------------------------------------------- */
.price { display: flex; flex-direction: column; }
.price__amount {
	margin: .35rem 0 .85rem;
	font-family: var(--serif); font-size: 2.1rem; font-weight: 600; color: var(--navy-800);
	line-height: 1;
}
.price__amount[data-empty="true"] { font-size: 1.25rem; color: var(--ink-300); font-style: italic; }
.price h3 { font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-600); font-weight: 700; }

/* --- 12. FAQ ------------------------------------------------------------ */
.faq { max-width: 52rem; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
	display: flex; align-items: flex-start; gap: 1rem;
	padding: 1.3rem .25rem;
	cursor: pointer; list-style: none;
	font-family: var(--serif); font-size: 1.13rem; font-weight: 600; color: var(--navy-800);
	transition: color .15s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue-500); }
.faq summary::after {
	content: ""; flex: none; margin-left: auto; margin-top: .3em;
	width: 13px; height: 13px;
	border-right: 2px solid var(--blue-500); border-bottom: 2px solid var(--blue-500);
	transform: rotate(45deg); transform-origin: 65% 65%;
	transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq__answer { padding: 0 3rem 1.5rem .25rem; color: var(--ink-500); font-size: .99rem; }

/* --- 13. Contacto ------------------------------------------------------- */
.contact { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact { grid-template-columns: .9fr 1.1fr; } }

.contact__list { display: grid; gap: 1.35rem; margin-top: 2rem; }
.contact__item { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.contact__item svg { width: 20px; height: 20px; color: var(--teal-500); }
.contact__item .ico {
	display: grid; place-items: center; width: 44px; height: 44px;
	border-radius: 12px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
}
.contact__item dt { font-size: .77rem; text-transform: uppercase; letter-spacing: .1em; color: #7fdfe6; font-weight: 700; margin-bottom: .15rem; }
.contact__item dd { margin: 0; }
.contact__item a { color: #fff; text-decoration-color: rgba(255, 255, 255, .35); font-size: 1.02rem; }
.contact__item a:hover { color: #7fdfe6; }
.contact__item span { color: rgba(255, 255, 255, .8); }
.contact__item .muted { color: rgba(255, 255, 255, .5); font-style: italic; font-size: .93rem; }

.form {
	background: #fff; color: var(--ink-700);
	border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.15rem);
	box-shadow: var(--shadow-md);
}
.form h3 { margin-bottom: 1.4rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: .85rem; font-weight: 650; color: var(--navy-800); margin-bottom: .38rem; }
.field input, .field select, .field textarea {
	width: 100%; padding: .72rem .9rem;
	font: inherit; font-size: .97rem; color: var(--ink-900);
	background: var(--paper-tint);
	border: 1px solid var(--line); border-radius: var(--radius-sm);
	transition: border-color .15s var(--ease), background-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
	outline: none; background: #fff;
	border-color: var(--blue-400); box-shadow: 0 0 0 3px var(--blue-050);
}
.field--row { display: grid; gap: 1.05rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }

.form__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.form__note { margin-top: 1.1rem; font-size: .84rem; color: var(--ink-500); line-height: 1.55; }

/* --- 14. Pie ------------------------------------------------------------ */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .6); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; font-size: .92rem; }
.site-footer__grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { display: grid; gap: .55rem; }
.site-footer__brand img { height: 40px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1.1rem; }
.site-footer__legal {
	margin-top: 2.75rem; padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
	font-size: .82rem; color: rgba(255, 255, 255, .45);
}
.site-footer__legal p { max-width: 58ch; margin: 0; }

/* --- 15. Animación de entrada ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- 16. Utilidades ----------------------------------------------------- */
[hidden] { display: none !important; }
.is-hidden { display: none !important; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }

/* Impresión: la lista de documentos es lo que la gente imprime. */
@media print {
	.site-header, .hero__actions, .form, .site-footer__grid, .nav-toggle, .langs { display: none !important; }
	body { font-size: 11pt; color: #000; }
	.section { padding: 1rem 0; }
	.section--navy, .hero { background: #fff !important; color: #000 !important; }
	.section--navy h2, .section--navy h3, .hero h1 { color: #000 !important; }
	.card { box-shadow: none; border-color: #999; break-inside: avoid; }
}
