/* SmartMap — sitio institucional (compartido con 404.html) */

/* ============ Tokens ============ */
:root {
	--bg: #e6e9ee;
	--bg-fallback: linear-gradient(168deg, #eceef2 0%, #e6e9ee 42%, #dde1e8 100%);
	--bg-page: #fbfcfd;
	--text: #2a2d32;
	--text-muted: #6b7078;
	--accent: #1e5fa8;
	--accent-soft: rgba(30, 95, 168, 0.35);
	--line: rgba(13, 45, 77, 0.14);
	--panel-bg: rgba(255, 255, 255, 0.86);
	--panel-border: rgba(42, 45, 50, 0.07);
	--card-bg: #ffffff;
	--card-border: rgba(13, 45, 77, 0.08);
	--card-shadow: 0 1px 2px rgba(13, 45, 77, 0.05), 0 8px 24px rgba(13, 45, 77, 0.06);
	--font: "DM Sans", system-ui, -apple-system, sans-serif;
	--font-display: "Plus Jakarta Sans", var(--font);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--brand-blue-dark: #0d2d4d;
	--brand-green: #2fa36b;
	--brand-blue-tech: #1e5fa8;
	--form-error: #c94a2a;
	--form-error-soft: rgba(201, 74, 42, 0.12);
	--form-field-invalid: rgba(22, 26, 29, 0.28);
	--form-field-invalid-soft: rgba(22, 26, 29, 0.07);
	--header-h: 60px;
	--radius: 14px;
}

@media (min-width: 900px) {
	:root {
		--header-h: 68px;
	}
}

/* ============ Base ============ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	-webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body.landing {
	min-height: 100%;
	font-family: var(--font);
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	background: var(--bg-page);
	-webkit-font-smoothing: antialiased;
	--wm-reveal-end: 0.93s;
	--headline-delay: calc(var(--wm-reveal-end) + 0.1s);
	--tagline-delay: calc(var(--headline-delay) + 0.2s);
	--cta-delay: calc(var(--tagline-delay) + 0.15s);
	--sectors-delay: calc(var(--cta-delay) + 0.12s);
	--float-delay: calc(var(--sectors-delay) + 0.15s);
	--map-bg-delay: calc(var(--cta-delay) + 1s);
	--map-bg-fade: 1.25s;
}

body.landing--home {
	overflow-x: hidden;
	--map-bg-delay: 0.7s;
	--float-delay: 1.6s;
}

/* La 404 conserva el layout de pantalla única */
body.landing--404 {
	height: 100%;
	overflow: hidden;
	background: var(--bg);
	background: var(--bg-fallback);
	--map-bg-delay: calc(var(--tagline-delay) + 0.9s);
}

img {
	max-width: 100%;
	height: auto;
}

:focus-visible {
	outline: 2px solid var(--brand-blue-tech);
	outline-offset: 2px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0.75rem;
	z-index: 300;
	padding: 0.6rem 1rem;
	border-radius: 8px;
	background: var(--brand-blue-dark);
	color: #fff;
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
}

.skip-link:focus {
	left: 0.75rem;
}

/* Wordmark (compartido: header, footer y 404) */
.wm-part {
	display: inline-block;
}

.wm-smart {
	color: var(--brand-blue-dark);
}

.wm-map {
	color: var(--brand-green);
}

/* ============ Botones y chips ============ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1.4rem;
	border-radius: 10px;
	border: 1px solid transparent;
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.008em;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition:
		transform 0.32s var(--ease),
		box-shadow 0.32s var(--ease),
		background 0.32s ease,
		border-color 0.32s ease,
		color 0.32s ease;
}

.btn--lg {
	padding: 0.85rem 1.75rem;
	font-size: 0.95rem;
}

.btn--primary {
	border-color: rgba(255, 255, 255, 0.1);
	background: linear-gradient(135deg, var(--brand-blue-dark) 0%, #134060 72%, #1a6b52 100%);
	color: #fff;
	box-shadow:
		0 2px 10px rgba(13, 45, 77, 0.12),
		0 1px 2px rgba(13, 45, 77, 0.06);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background: linear-gradient(135deg, #0f3558 0%, #154a70 72%, #1f7659 100%);
	box-shadow:
		0 4px 16px rgba(13, 45, 77, 0.16),
		0 1px 4px rgba(47, 163, 107, 0.1);
	transform: translateY(-1px);
}

.btn--ghost {
	border-color: rgba(13, 45, 77, 0.2);
	background: rgba(255, 255, 255, 0.6);
	color: var(--brand-blue-dark);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
	border-color: rgba(47, 163, 107, 0.45);
	background: rgba(255, 255, 255, 0.92);
	transform: translateY(-1px);
}

.btn--light {
	background: #fff;
	color: var(--brand-blue-dark);
	box-shadow: 0 2px 12px rgba(4, 16, 28, 0.25);
}

.btn--light:hover,
.btn--light:focus-visible {
	background: #f0f6f2;
	transform: translateY(-1px);
}

.chip {
	display: inline-block;
	padding: 0.22rem 0.6rem;
	font-family: var(--font);
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.01em;
	color: rgba(13, 45, 77, 0.62);
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(13, 45, 77, 0.09);
	border-radius: 999px;
	white-space: nowrap;
}

/* ============ Header ============ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 90;
	height: var(--header-h);
	background: rgba(251, 252, 253, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
	border-bottom-color: rgba(13, 45, 77, 0.08);
	box-shadow: 0 2px 16px rgba(13, 45, 77, 0.06);
}

.site-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: 100%;
	width: min(100% - 2rem, 1160px);
	margin-inline: auto;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.site-brand__logo {
	display: block;
	width: 39px;
	height: 39px;
	flex-shrink: 0;
}

.site-brand__name {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	white-space: nowrap;
}

.nav-toggle {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(13, 45, 77, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: var(--brand-blue-dark);
	transition: transform 0.28s var(--ease), opacity 0.2s ease;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	padding: 1rem;
	background: #fff;
	border: 1px solid rgba(13, 45, 77, 0.08);
	border-radius: var(--radius);
	box-shadow: 0 16px 40px rgba(13, 45, 77, 0.14);
}

.site-nav.is-open {
	display: block;
}

.site-nav__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.site-nav__link {
	display: block;
	padding: 0.6rem 0.7rem;
	border-radius: 8px;
	font-family: var(--font);
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--brand-blue-dark);
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
	background: rgba(30, 95, 168, 0.07);
	color: var(--brand-blue-tech);
}

@media (min-width: 900px) {
	.site-brand__logo {
		width: 45px;
		height: 45px;
	}

	.site-brand__name {
		font-size: 1.61rem;
	}

	.nav-toggle {
		display: none;
	}

	.site-nav {
		display: flex;
		align-items: center;
		gap: 1.1rem;
		position: static;
		padding: 0;
		background: transparent;
		border: none;
		border-radius: 0;
		box-shadow: none;
	}

	.site-nav__list {
		flex-direction: row;
		gap: 0.15rem;
	}

	.site-nav__link {
		padding: 0.45rem 0.7rem;
		font-size: 0.88rem;
	}
}

/* ============ Hero ============ */
.hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: calc(var(--header-h) + clamp(2.4rem, 7vw, 5rem)) 0 clamp(2rem, 5vw, 3.5rem);
	background: linear-gradient(168deg, #fbfcfe 0%, #f4f7fa 45%, #edf1f6 100%);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 72% 58% at 50% 34%, rgba(30, 95, 168, 0.055) 0%, transparent 68%),
		radial-gradient(ellipse 42% 38% at 68% 55%, rgba(47, 163, 107, 0.05) 0%, transparent 72%),
		radial-gradient(ellipse 38% 34% at 32% 58%, rgba(13, 45, 77, 0.03) 0%, transparent 70%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.8rem, 4.5vw, 3rem);
	align-items: center;
	width: min(100% - 2.5rem, 1160px);
	margin-inline: auto;
}

.hero__copy {
	order: 2;
	text-align: center;
}

.hero__kicker {
	display: inline-block;
	padding: 0.3rem 0.8rem;
	border-radius: 999px;
	border: 1px solid rgba(47, 163, 107, 0.28);
	background: rgba(47, 163, 107, 0.08);
	font-family: var(--font);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #1c7a4e;
	animation: landing-rise 0.9s var(--ease) 0.08s both;
}

@media (max-width: 979px) {
	.hero__kicker {
		display: none;
	}
}

.hero__title {
	margin: clamp(0.9rem, 2.5vw, 1.3rem) auto 0;
	max-width: 21ch;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 4.6vw, 2.64rem);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.028em;
	color: var(--brand-blue-dark);
	text-wrap: balance;
	animation: landing-rise 0.95s var(--ease) 0.2s both;
}

.hero__lead {
	margin: clamp(0.85rem, 2.2vw, 1.15rem) auto 0;
	max-width: 34rem;
	font-size: clamp(0.95rem, 1.6vw, 1.08rem);
	line-height: 1.65;
	color: var(--text-muted);
	text-wrap: pretty;
	animation: landing-rise 0.95s var(--ease) 0.34s both;
}

.hero__ctas {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-top: clamp(1.15rem, 2.8vw, 1.6rem);
	animation: landing-rise 0.95s var(--ease) 0.48s both;
}

.hero__media {
	order: 1;
	animation: landing-rise 1.05s var(--ease) 0.6s both;
}

.media.hero__figure {
	margin: 0 auto;
	max-width: 620px;
	background: #fff;
	box-shadow:
		0 2px 6px rgba(13, 45, 77, 0.06),
		0 24px 60px rgba(13, 45, 77, 0.14);
}

.hero__sectors {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.45rem;
	width: min(100% - 2.5rem, 860px);
	margin: clamp(1.8rem, 4.5vw, 2.8rem) auto 0;
	animation: landing-rise 1s var(--ease) 0.75s both;
}

.hero__sectors-label {
	flex-basis: 100%;
	margin-bottom: 0.35rem;
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
	color: rgba(13, 45, 77, 0.45);
}

@media (min-width: 980px) {
	.hero__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	}

	.hero__copy {
		order: initial;
		text-align: left;
	}

	.hero__media {
		order: initial;
	}

	.hero__title,
	.hero__lead {
		margin-left: 0;
		margin-right: 0;
	}

	.hero__ctas {
		justify-content: flex-start;
	}
}

/* Mock ilustrativo de la app (placeholder del hero) */
.app-mock {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.app-mock__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0.55rem 0.75rem;
	border-bottom: 1px solid rgba(13, 45, 77, 0.07);
	background: #f6f8fa;
}

.app-mock__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(13, 45, 77, 0.14);
}

.app-mock__search {
	flex: 1;
	margin-left: 0.5rem;
	padding: 0.32rem 0.7rem;
	border-radius: 999px;
	border: 1px solid rgba(13, 45, 77, 0.09);
	background: #fff;
	font-size: 0.68rem;
	color: rgba(13, 45, 77, 0.42);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-mock__map {
	position: relative;
	flex: 1;
	background:
		radial-gradient(ellipse 70% 60% at 60% 40%, rgba(47, 163, 107, 0.07) 0%, transparent 70%),
		radial-gradient(ellipse 60% 55% at 25% 70%, rgba(30, 95, 168, 0.07) 0%, transparent 70%),
		linear-gradient(rgba(13, 45, 77, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(13, 45, 77, 0.045) 1px, transparent 1px),
		#f2f5f8;
	background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

.app-mock__route {
	position: absolute;
	left: 22%;
	top: 62%;
	width: 48%;
	height: 2.5px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(30, 95, 168, 0.25) 0%, rgba(47, 163, 107, 0.55) 100%);
	transform: rotate(-24deg);
	transform-origin: 0 50%;
}

.app-mock__pin {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	background: var(--brand-blue-tech);
	box-shadow: 0 2px 6px rgba(13, 45, 77, 0.3);
}

.app-mock__pin::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
}

.app-mock__pin--a {
	left: 18%;
	top: 30%;
}

.app-mock__pin--b {
	left: 68%;
	top: 20%;
	background: var(--brand-green);
}

.app-mock__pin--c {
	left: 63%;
	top: 40%;
	background: var(--brand-blue-dark);
}

.app-mock__me {
	position: absolute;
	left: 22%;
	top: 62%;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--brand-green);
	border: 2.5px solid #fff;
	box-shadow: 0 0 0 4px rgba(47, 163, 107, 0.22), 0 2px 6px rgba(13, 45, 77, 0.25);
	transform: translate(-50%, -50%);
}

.app-mock__card {
	position: absolute;
	right: 6%;
	bottom: 9%;
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: min(46%, 190px);
	padding: 0.65rem 0.75rem;
	border-radius: 10px;
	border: 1px solid rgba(13, 45, 77, 0.08);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 8px 24px rgba(13, 45, 77, 0.12);
}

.app-mock__card-title {
	font-family: var(--font-display);
	font-size: 0.66rem;
	font-weight: 600;
	color: var(--brand-blue-dark);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-mock__card-line {
	display: block;
	height: 6px;
	border-radius: 999px;
	background: rgba(13, 45, 77, 0.09);
}

.app-mock__card-line--short {
	width: 55%;
}

/* ============ Secciones ============ */
.section {
	padding: clamp(3rem, 8vw, 5.5rem) 0;
	scroll-margin-top: calc(var(--header-h) + 8px);
}

.section--alt {
	background:
		linear-gradient(180deg, rgba(230, 233, 238, 0.55) 0%, rgba(238, 241, 245, 0.9) 100%);
	border-top: 1px solid rgba(13, 45, 77, 0.05);
	border-bottom: 1px solid rgba(13, 45, 77, 0.05);
}

.section__inner {
	width: min(100% - 2.5rem, 1120px);
	margin-inline: auto;
}

.section__head {
	max-width: 44rem;
	margin: 0 auto clamp(1.9rem, 4.5vw, 3rem);
	text-align: center;
}

.section__kicker {
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--brand-green);
}

.section__title {
	margin-top: 0.55rem;
	font-family: var(--font-display);
	font-size: clamp(1.45rem, 3.6vw, 2.15rem);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.025em;
	color: var(--brand-blue-dark);
	text-wrap: balance;
}

.section__lead {
	margin-top: 0.8rem;
	font-size: clamp(0.92rem, 1.5vw, 1.02rem);
	line-height: 1.65;
	color: var(--text-muted);
	text-wrap: pretty;
}

/* Pilares */
.pillars {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.pillar {
	padding: 1.5rem 1.35rem;
	border-radius: var(--radius);
	border: 1px solid var(--card-border);
	background: var(--card-bg);
	box-shadow: var(--card-shadow);
}

.pillar__icon,
.cap-card__icon,
.use-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	color: var(--brand-blue-tech);
	background: rgba(30, 95, 168, 0.08);
}

.pillar__icon svg,
.cap-card__icon svg,
.use-card__icon svg {
	width: 24px;
	height: 24px;
}

.pillar__title {
	margin-top: 0.9rem;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--brand-blue-dark);
}

.pillar__text {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	line-height: 1.62;
	color: var(--text-muted);
}

@media (min-width: 760px) {
	.pillars {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.15rem;
	}
}

/* Split texto + imagen */
.split {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.4rem, 4vw, 2.75rem);
	align-items: center;
	margin-top: clamp(2.2rem, 5.5vw, 3.75rem);
}

.split__title {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.6vw, 1.55rem);
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--brand-blue-dark);
	text-wrap: balance;
}

.split__text {
	margin-top: 0.75rem;
	font-size: 0.94rem;
	line-height: 1.65;
	color: var(--text-muted);
}

.check-list {
	list-style: none;
	margin-top: 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.check-list li {
	position: relative;
	padding-left: 1.7rem;
	font-size: 0.92rem;
	line-height: 1.55;
	color: var(--text);
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.28em;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background:
		url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="m6 12.5 4 4 8-9"/></svg>') center / 9px no-repeat,
		var(--brand-green);
}

@media (min-width: 900px) {
	.split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.split--reverse .split__media {
		order: 2;
	}

	.split--reverse .split__copy {
		order: 1;
	}
}

/* Placeholders de imagen */
.media {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	border: 1px solid rgba(13, 45, 77, 0.09);
	box-shadow: var(--card-shadow);
}

.media--4x3 {
	aspect-ratio: 4 / 3;
}

.media--16x10 {
	aspect-ratio: 16 / 10;
}

.media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-ph {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	width: 100%;
	height: 100%;
	padding: 1.5rem;
	text-align: center;
	background:
		radial-gradient(ellipse 75% 65% at 65% 30%, rgba(47, 163, 107, 0.09) 0%, transparent 70%),
		radial-gradient(ellipse 65% 60% at 25% 75%, rgba(30, 95, 168, 0.1) 0%, transparent 70%),
		linear-gradient(rgba(13, 45, 77, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(13, 45, 77, 0.05) 1px, transparent 1px),
		linear-gradient(160deg, #eef2f6 0%, #e4e9ef 100%);
	background-size: auto, auto, 32px 32px, 32px 32px, auto;
}

.media-ph__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	color: var(--brand-blue-tech);
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(13, 45, 77, 0.1);
	box-shadow: 0 4px 14px rgba(13, 45, 77, 0.08);
}

.media-ph__icon svg {
	width: 28px;
	height: 28px;
}

.media-ph__label {
	max-width: 18rem;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: rgba(13, 45, 77, 0.55);
}

/* Capacidades */
.cap-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
}

.cap-card {
	padding: 1.35rem 1.25rem;
	border-radius: var(--radius);
	border: 1px solid var(--card-border);
	background: var(--card-bg);
	box-shadow: var(--card-shadow);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

@media (hover: hover) {
	.cap-card:hover {
		transform: translateY(-3px);
		box-shadow: 0 2px 4px rgba(13, 45, 77, 0.05), 0 16px 36px rgba(13, 45, 77, 0.1);
	}
}

.cap-card__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
}

.cap-card__icon svg {
	width: 22px;
	height: 22px;
}

.cap-card__title {
	margin-top: 0.8rem;
	font-family: var(--font-display);
	font-size: 0.96rem;
	font-weight: 700;
	letter-spacing: -0.012em;
	line-height: 1.3;
	color: var(--brand-blue-dark);
}

.cap-card__text {
	margin-top: 0.45rem;
	font-size: 0.85rem;
	line-height: 1.58;
	color: var(--text-muted);
}

@media (min-width: 640px) {
	.cap-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1080px) {
	.cap-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Aplicaciones */
.uses-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
}

.use-card {
	display: flex;
	flex-direction: column;
	padding: 1.35rem 1.25rem;
	border-radius: var(--radius);
	border: 1px solid var(--card-border);
	background: var(--card-bg);
	box-shadow: var(--card-shadow);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

@media (hover: hover) {
	.use-card:hover {
		transform: translateY(-3px);
		box-shadow: 0 2px 4px rgba(13, 45, 77, 0.05), 0 16px 36px rgba(13, 45, 77, 0.1);
	}
}

.use-card__icon {
	color: var(--brand-green);
	background: rgba(47, 163, 107, 0.1);
}

.use-card__title {
	margin-top: 0.85rem;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.012em;
	color: var(--brand-blue-dark);
}

.use-card__text {
	margin-top: 0.45rem;
	font-size: 0.87rem;
	line-height: 1.6;
	color: var(--text-muted);
}

.uses-extra {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.45rem;
	margin-top: clamp(1.4rem, 3.5vw, 2rem);
}

.uses-extra__label {
	font-size: 0.78rem;
	font-weight: 600;
	color: rgba(13, 45, 77, 0.5);
	margin-right: 0.2rem;
}

@media (min-width: 640px) {
	.uses-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.uses-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Pasos */
.steps {
	list-style: none;
	counter-reset: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
}

.step {
	position: relative;
	padding: 1.5rem 1.35rem;
	border-radius: var(--radius);
	border: 1px solid var(--card-border);
	background: var(--card-bg);
	box-shadow: var(--card-shadow);
}

.step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, var(--brand-blue-tech) 0%, var(--brand-green) 130%);
	box-shadow: 0 4px 12px rgba(30, 95, 168, 0.22);
}

.step__title {
	margin-top: 0.85rem;
	font-family: var(--font-display);
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--brand-blue-dark);
}

.step__text {
	margin-top: 0.5rem;
	font-size: 0.88rem;
	line-height: 1.62;
	color: var(--text-muted);
}

@media (min-width: 820px) {
	.steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.15rem;
	}
}

/* ============ CTA band / Contacto ============ */
.cta-band {
	position: relative;
	overflow: hidden;
	padding: clamp(3.25rem, 8vw, 5.5rem) 0;
	scroll-margin-top: calc(var(--header-h) + 8px);
	background: linear-gradient(140deg, var(--brand-blue-dark) 0%, #113a5e 55%, #14523f 130%);
}

.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.5;
	background:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 30%, transparent 95%);
	mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, #000 30%, transparent 95%);
}

.cta-band__inner {
	position: relative;
	width: min(100% - 2.5rem, 720px);
	margin-inline: auto;
	text-align: center;
}

.cta-band__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
	color: #fff;
}

.cta-band__text {
	margin: 0.9rem auto 0;
	max-width: 34rem;
	font-size: clamp(0.92rem, 1.6vw, 1.04rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	text-wrap: pretty;
}

.cta-band .btn {
	margin-top: 1.5rem;
}

.cta-band__note {
	margin-top: 1rem;
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.55);
}

/* ============ Footer ============ */
.site-footer {
	padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(1.5rem, 3vw, 2rem);
	background: #0a2138;
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.1rem;
	width: min(100% - 2.5rem, 1120px);
	margin-inline: auto;
	text-align: center;
}

.site-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.site-footer__logo {
	display: block;
	width: 30px;
	height: 30px;
}

.site-brand__name--footer {
	font-size: 1.1rem;
}

.site-brand__name--footer .wm-smart {
	color: rgba(255, 255, 255, 0.92);
}

.site-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem 1.25rem;
}

.site-footer__nav a {
	font-size: 0.82rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
	color: #fff;
}

.site-footer__tagline {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal {
	margin-top: 0.4rem;
	padding-top: 1rem;
	padding-bottom: env(safe-area-inset-bottom, 0px);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	width: 100%;
	font-size: 0.68rem;
	line-height: 1.5;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.42);
	overflow-wrap: anywhere;
}

/* ============ Reveal on scroll ============ */
.reveal-ready .reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-ready .reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* ============ Fondo mapa vivo (hero y 404) ============ */
.map-live-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: 0;
	animation: map-live-fade-in var(--map-bg-fade) var(--ease) var(--map-bg-delay) forwards;
	background-image:
		radial-gradient(circle at 16% 28%, rgba(13, 45, 77, 0.124) 0 2.5px, transparent 3.5px),
		radial-gradient(circle at 78% 22%, rgba(30, 95, 168, 0.11) 0 2.5px, transparent 3.5px),
		radial-gradient(circle at 84% 68%, rgba(47, 163, 107, 0.096) 0 2.5px, transparent 3.5px),
		radial-gradient(circle at 12% 72%, rgba(13, 45, 77, 0.089) 0 2px, transparent 3px),
		radial-gradient(circle at 62% 78%, rgba(30, 95, 168, 0.083) 0 2px, transparent 3px),
		radial-gradient(circle at 38% 18%, rgba(47, 163, 107, 0.076) 0 2px, transparent 3px),
		radial-gradient(circle at 48% 52%, rgba(13, 45, 77, 0.055) 0 1.5px, transparent 2.5px);
	background-repeat: no-repeat;
	-webkit-mask-image: radial-gradient(ellipse 88% 78% at 50% 44%, #000 22%, transparent 92%);
	mask-image: radial-gradient(ellipse 88% 78% at 50% 44%, #000 22%, transparent 92%);
}

.landing--404 .map-live-bg {
	z-index: -1;
}

.map-live-bg::before {
	content: "";
	position: absolute;
	inset: -18%;
	opacity: 0.536;
	background-image:
		linear-gradient(rgba(13, 45, 77, 0.033) 1px, transparent 1px),
		linear-gradient(90deg, rgba(13, 45, 77, 0.033) 1px, transparent 1px);
	background-size: 48px 48px;
	animation: map-grid-drift 40s linear infinite;
	will-change: transform;
}

.map-live-pin {
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.map-live-pin::before,
.map-live-pin::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.map-live-pin::before {
	width: 7px;
	height: 7px;
	background: currentColor;
	opacity: 0.383;
	box-shadow: 0 0 4px currentColor;
}

.map-live-pin::after {
	width: 7px;
	height: 7px;
	border: 1.5px solid currentColor;
	opacity: 0;
	animation: map-pin-pulse 5s var(--ease) infinite;
	will-change: transform, opacity;
}

.map-live-pin--1 {
	left: 18%;
	top: 28%;
	color: rgba(30, 95, 168, 0.447);
}

.map-live-pin--1::after {
	animation-delay: 0s;
}

.map-live-pin--2 {
	left: 76%;
	top: 22%;
	color: rgba(47, 163, 107, 0.413);
}

.map-live-pin--2::after {
	animation-delay: 0.8s;
}

.map-live-pin--3 {
	left: 14%;
	top: 72%;
	color: rgba(13, 45, 77, 0.379);
}

.map-live-pin--3::after {
	animation-delay: 1.6s;
}

.map-live-pin--4 {
	left: 82%;
	top: 68%;
	color: rgba(30, 95, 168, 0.4);
}

.map-live-pin--4::after {
	animation-delay: 2.4s;
}

.map-live-pin--5 {
	left: 30%;
	top: 82%;
	color: rgba(47, 163, 107, 0.358);
}

.map-live-pin--5::after {
	animation-delay: 3.2s;
}

.map-live-pin--6 {
	left: 62%;
	top: 58%;
	color: rgba(13, 45, 77, 0.345);
}

.map-live-pin--6::after {
	animation-delay: 4s;
}

.map-live-route {
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 2px;
	transform-origin: 0 50%;
	pointer-events: none;
	overflow: visible;
	opacity: 0;
}

.map-live-route.is-active {
	opacity: 0.765;
}

.map-live-route__pulse {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	transform: translateY(-50%) scaleX(0);
	transform-origin: 0 50%;
	opacity: 0;
	background: linear-gradient(
		90deg,
		rgba(30, 95, 168, 0.096) 0%,
		rgba(47, 163, 107, 0.262) 72%,
		rgba(47, 163, 107, 0.4) 94%,
		rgba(47, 163, 107, 0.138) 100%
	);
	filter: blur(0.65px);
	will-change: transform, opacity;
}

.map-live-route__pulse.is-animating {
	animation: map-route-draw var(--route-duration, 1.4s) ease-out forwards;
}

.map-live-route__pulse.is-arrived {
	transform: translateY(-50%) scaleX(1);
	opacity: 0.428;
	transition: opacity 0.16s ease;
}

.map-live-route.is-fading .map-live-route__pulse {
	opacity: 0;
}

.map-live-pin.is-route-hit::before {
	opacity: 0.62;
	transform: translate(-50%, -50%) scale(1.35);
	transition: transform 0.2s var(--ease), opacity 0.2s ease;
}

@keyframes map-route-draw {
	0% {
		opacity: 0;
		transform: translateY(-50%) scaleX(0);
	}

	8% {
		opacity: 0.536;
	}

	100% {
		opacity: 0.536;
		transform: translateY(-50%) scaleX(1);
	}
}

@keyframes map-live-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 0.9;
	}
}

@keyframes map-grid-drift {
	to {
		transform: translate(48px, 48px);
	}
}

@keyframes map-pin-pulse {
	0%,
	70%,
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1);
	}

	8% {
		opacity: 0.383;
	}

	36% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(4.2);
	}
}

@keyframes landing-rise {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============ 404 (pantalla única) ============ */
.landing-main {
	position: relative;
	z-index: 1;
	display: block;
	min-height: 100%;
}

.landing-shell {
	position: relative;
	z-index: 0;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	overflow: hidden;
	isolation: isolate;
}

.landing-hero {
	position: relative;
	z-index: 1;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	min-height: 100dvh;
	padding: clamp(1.25rem, 4vw, 2rem);
	isolation: isolate;
	overflow: hidden;
}

.landing-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 72% 58% at 50% 40%, rgba(30, 95, 168, 0.07) 0%, transparent 68%),
		radial-gradient(ellipse 42% 38% at 68% 55%, rgba(47, 163, 107, 0.055) 0%, transparent 72%),
		radial-gradient(ellipse 38% 34% at 32% 58%, rgba(13, 45, 77, 0.045) 0%, transparent 70%);
}

.brand-lockup {
	position: relative;
	z-index: 10;
	width: min(88vw, 980px);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	text-align: center;
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

.landing-brand {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(0.45rem, 1.4vw, 0.7rem);
	margin: 0 auto;
	opacity: 0;
	transform: translateY(14px);
	animation: landing-rise 1s var(--ease) 0.12s forwards;
}

.landing-logo {
	display: block;
	width: clamp(4.03rem, 13.65vw, 6.18rem);
	height: auto;
	flex-shrink: 0;
	opacity: 0;
	transform: translateY(8px) scale(0.96);
	animation: landing-logo-reveal 0.65s var(--ease) 0.18s forwards;
}

@keyframes landing-logo-reveal {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.landing-brand::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(320px, 70vw);
	height: min(120px, 28vw);
	transform: translate(-50%, -52%);
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(30, 95, 168, 0.1) 0%, rgba(47, 163, 107, 0.05) 42%, transparent 72%);
	filter: blur(18px);
	pointer-events: none;
	z-index: -1;
}

.smartmap-wordmark {
	display: inline-flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: baseline;
	-webkit-tap-highlight-color: transparent;
	font-family: var(--font-display);
	font-size: clamp(1.72rem, 4.03vw, 3.22rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	text-shadow: none;
	white-space: nowrap;
}

.smartmap-wordmark--reveal .wm-smart {
	animation: smartmap-part-reveal 0.55s var(--ease) 0.2s both;
}

.smartmap-wordmark--reveal .wm-map {
	animation: smartmap-part-reveal 0.55s var(--ease) 0.38s both;
}

@keyframes smartmap-part-reveal {
	0% {
		opacity: 0;
		transform: translateY(0.2em) scale(0.96);
		filter: blur(2px);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

.landing-404-message {
	margin: 20px 0 0;
	width: 100%;
	font-family: var(--font-display);
	font-size: clamp(0.9rem, 1.8vw, 1.35rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.015em;
	color: rgba(22, 26, 29, 0.52);
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(8px);
	animation: landing-rise 1.05s var(--ease) var(--tagline-delay) forwards;
}

.landing-404-link {
	display: inline-block;
	margin: 1.25rem auto 0;
	font-size: 0.82rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: rgba(22, 26, 29, 0.42);
	text-decoration: none;
	opacity: 0;
	transform: translateY(6px);
	animation: landing-rise 1s var(--ease) calc(var(--tagline-delay) + 0.45s) forwards;
	transition: color 180ms ease;
}

.landing-404-link:hover,
.landing-404-link:focus-visible {
	color: rgba(22, 26, 29, 0.78);
	outline: none;
}

/* ============ Contacto — acceso icónico flotante ============ */
.signal-trigger--icon {
	position: fixed;
	right: clamp(1.1rem, 2.4vw, 2rem);
	bottom: clamp(1.1rem, 2.4vw, 2rem);
	z-index: 40;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(13, 45, 77, 0.14);
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1;
	color: rgba(13, 45, 77, 0.58);
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 2px 8px rgba(13, 45, 77, 0.12);
	cursor: pointer;
	opacity: 0;
	transform: translateY(8px);
	animation: landing-rise 0.9s var(--ease) var(--float-delay) forwards;
	transition:
		transform 0.28s var(--ease),
		color 0.28s ease,
		border-color 0.28s ease,
		background 0.28s ease,
		box-shadow 0.28s var(--ease);
}

.signal-trigger--icon:hover,
.signal-trigger--icon:focus-visible {
	transform: translateY(-2px);
	color: var(--brand-blue-dark);
	border-color: rgba(47, 163, 107, 0.35);
	background: rgba(255, 255, 255, 0.92);
	box-shadow:
		0 4px 14px rgba(13, 45, 77, 0.12),
		0 0 0 3px rgba(47, 163, 107, 0.08);
	outline: none;
}

.signal-trigger--icon:focus-visible {
	box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px rgba(13, 45, 77, 0.12);
}

.signal-trigger--icon::after {
	content: "Contacto";
	position: absolute;
	right: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--font);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(13, 45, 77, 0.55);
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease, transform 0.28s var(--ease);
}

.signal-trigger--icon:hover::after,
.signal-trigger--icon:focus-visible::after {
	opacity: 1;
	transform: translateY(-50%) translateX(-2px);
}

/* ============ Modal de contacto ============ */
.signal-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	background: rgba(230, 233, 238, 0.6);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.signal-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.signal-panel {
	position: relative;
	width: 100%;
	max-width: 22rem;
	padding: 1.85rem 1.5rem 1.5rem;
	background: var(--panel-bg);
	border: 1px solid var(--panel-border);
	border-radius: 12px;
	box-shadow: 0 16px 48px rgba(42, 45, 50, 0.12);
	transform: translateY(10px) scale(0.98);
	opacity: 0;
	transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.signal-overlay.is-open .signal-panel {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.signal-close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	width: 2rem;
	height: 2rem;
	border: none;
	background: transparent;
	font-size: 1.25rem;
	line-height: 1;
	color: var(--text-muted);
	cursor: pointer;
	border-radius: 6px;
	transition: color 0.2s ease;
}

.signal-close:hover,
.signal-close:focus-visible {
	color: var(--text);
	outline: none;
}

.signal-panel-title {
	margin-bottom: 0.35rem;
	font-family: var(--font-display);
	font-size: 1.02rem;
	font-weight: 700;
	letter-spacing: -0.015em;
	color: var(--brand-blue-dark);
}

.signal-intro {
	margin-bottom: 1.2rem;
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-muted);
}

.signal-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--text-muted);
}

.signal-form label + input,
.signal-form label + textarea {
	margin-bottom: 1.05rem;
}

.signal-form input:not([type="hidden"]),
.signal-form textarea {
	width: 100%;
	padding: 0.65rem 0.6rem;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.75);
	font-family: var(--font);
	font-size: 0.9rem;
	color: var(--text);
	resize: vertical;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signal-form input:not([type="hidden"]) {
	resize: none;
}

.signal-form input::placeholder,
.signal-form textarea::placeholder {
	color: rgba(107, 112, 120, 0.5);
}

.signal-form input:not([type="hidden"]):focus,
.signal-form textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(30, 95, 168, 0.1);
}

.signal-form textarea {
	min-height: 4.25rem;
}

.signal-submit {
	display: block;
	width: 100%;
	margin-top: 0.2rem;
	padding: 0.7rem 1rem;
	border: 1px solid var(--brand-green);
	border-radius: 8px;
	background: var(--brand-green);
	font-family: var(--font-display);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #fff;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.2s ease;
}

.signal-submit:hover:not(:disabled),
.signal-submit:focus-visible:not(:disabled) {
	background: var(--brand-blue-dark);
	border-color: var(--brand-blue-dark);
	color: #fff;
	outline: none;
}

.signal-submit:disabled {
	opacity: 0.55;
	cursor: wait;
}

.signal-feedback {
	margin-top: 0.8rem;
	font-size: 0.76rem;
	line-height: 1.45;
	color: var(--accent);
	min-height: 1.2em;
}

.signal-feedback.is-error {
	color: var(--form-error);
}

.signal-form input.is-error,
.signal-form textarea.is-error,
.signal-form input[aria-invalid="true"],
.signal-form textarea[aria-invalid="true"] {
	border-color: var(--form-field-invalid);
	box-shadow: 0 0 0 3px var(--form-field-invalid-soft);
}

.signal-form input.is-error:focus,
.signal-form textarea.is-error:focus,
.signal-form input[aria-invalid="true"]:focus,
.signal-form textarea[aria-invalid="true"]:focus {
	border-color: var(--form-field-invalid);
	box-shadow: 0 0 0 3px var(--form-field-invalid-soft);
}

.signal-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* ============ Ajustes mobile ============ */
@media (max-width: 640px) {
	.smartmap-wordmark {
		font-size: clamp(1.51rem, 6.65vw, 2.1rem);
		letter-spacing: -0.026em;
	}

	.landing-logo {
		width: clamp(3.71rem, 18.2vw, 4.68rem);
	}

	.landing-404-message {
		margin: 0.55rem auto 0;
		padding-left: 0.25rem;
		padding-right: 0.25rem;
		font-size: clamp(0.82rem, 3.4vw, 0.92rem);
		line-height: 1.58;
		max-width: 21.5rem;
	}

	.signal-trigger--icon {
		width: 42px;
		height: 42px;
		right: 1rem;
		bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
	}

	.site-footer__legal {
		padding-left: 3.25rem;
		padding-right: 3.25rem;
	}

	.chip {
		white-space: normal;
		text-align: center;
	}

	.signal-trigger--icon::after {
		display: none;
	}

	.map-live-pin--3,
	.map-live-pin--5,
	.map-live-pin--6 {
		display: none;
	}

	.map-live-pin--1 {
		left: 9%;
		top: 14%;
	}

	.map-live-pin--2 {
		left: 91%;
		top: 12%;
	}

	.map-live-pin--4 {
		left: 92%;
		top: 86%;
	}

	.map-live-bg::before {
		animation-duration: 90s;
	}
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
	.landing-brand,
	.landing-logo,
	.landing-404-message,
	.landing-404-link,
	.signal-trigger--icon,
	.hero__kicker,
	.hero__title,
	.hero__lead,
	.hero__ctas,
	.hero__media,
	.hero__sectors {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.smartmap-wordmark--reveal .wm-part {
		animation: none;
		opacity: 1;
		transform: none;
		filter: none;
	}

	.reveal-ready .reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.btn,
	.cap-card,
	.use-card,
	.nav-toggle__bar {
		transition: none;
	}

	.btn--primary:hover,
	.btn--primary:focus-visible,
	.btn--ghost:hover,
	.btn--ghost:focus-visible,
	.btn--light:hover,
	.btn--light:focus-visible {
		transform: none;
	}

	.map-live-bg {
		animation: none;
		opacity: 0.9;
	}

	.map-live-bg::before,
	.map-live-pin::after,
	.map-live-route__pulse.is-animating {
		animation: none;
	}

	.map-live-bg::before {
		transform: none;
	}

	.map-live-pin::after,
	.map-live-route,
	.map-live-route__pulse {
		opacity: 0;
	}
}
