/* ============ Clean Car Colombia — DS v2 "Clean Car Tech" (mobile-first) ============ */
:root {
	--navy: #13294b;
	--navy-deep: #0e1a2b;
	--navy-soft: #1d3a5f;
	--cyan: #13bee8;
	--cyan-text: #0e7a96; /* derivado AA sobre claro; contraste ≥ 4.5:1 vs blanco (~5.4:1) */
	--cyan-soft: #8fe0f2;
	--surface: #f5f8fa;
	--surface-card: #ffffff;
	--on-surface: #1b1c1c;
	--on-surface-muted: #46535b;
	--outline: #dde4e9;
	--on-dark: #eaf2fb;
	--on-dark-muted: #c4d4e3;
	--error: #ba1a1a;
	--font: "Montserrat", system-ui, -apple-system, sans-serif;
	--sp-xs: 4px;
	--sp-sm: 8px;
	--sp-md: 16px;
	--sp-lg: 24px;
	--sp-xl: 32px;
	--sp-2xl: 48px;
	--sp-3xl: 64px;
	--sp-4xl: 96px;
	--r-md: 12px;
	--r-lg: 16px;
	--r-xl: 24px;
	--r-pill: 9999px;
	--shadow-1: 0 4px 16px rgba(13, 37, 63, 0.07);
	--shadow-2: 0 12px 32px rgba(13, 37, 63, 0.12);
	--glow-cyan: 0 0 40px rgba(19, 190, 232, 0.35);
	--maxw: 1180px;
	--header-h: 56px;
}
@media (min-width: 768px) {
	:root {
		--header-h: 68px;
	}
}

* {
	box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}
[id] {
	scroll-margin-top: calc(var(--header-h) + 8px);
}
body {
	margin: 0;
	font-family: var(--font);
	color: var(--on-surface);
	background: var(--surface);
	line-height: 1.6;
	font-size: 16px;
}
body.nav-abierta {
	overflow: hidden;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
.container {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--sp-md);
}
@media (min-width: 768px) {
	.container {
		padding: 0 var(--sp-lg);
	}
}

h1,
h2,
h3 {
	line-height: 1.15;
	color: var(--navy);
	margin: 0 0 var(--sp-md);
}
h1 {
	font-size: clamp(1.7rem, 6vw, 3.2rem);
	font-weight: 800;
}
h2 {
	font-size: clamp(1.35rem, 4vw, 2.2rem);
	font-weight: 700;
}
h3 {
	font-size: clamp(1.05rem, 3vw, 1.2rem);
	font-weight: 700;
}
p {
	margin: 0 0 var(--sp-md);
}
.lead {
	font-size: clamp(1rem, 2.5vw, 1.15rem);
	color: var(--on-surface-muted);
}
a {
	color: var(--cyan-text);
}
:focus-visible {
	outline: 3px solid var(--cyan);
	outline-offset: 2px;
	border-radius: 4px;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--navy);
	color: #fff;
	padding: var(--sp-sm) var(--sp-md);
	z-index: 100;
	border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus {
	left: 0;
}

/* ---- Header / nav (mobile-first) ---- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--outline);
}
.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	gap: var(--sp-md);
}
.brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
}
.brand img {
	height: 34px;
	width: auto;
	border-radius: 0;
}
@media (min-width: 768px) {
	.brand img {
		height: 38px;
	}
}
.nav-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	font-size: 1.5rem;
	background: none;
	border: 0;
	color: var(--navy);
	cursor: pointer;
}
/* Hoja móvil: pantalla completa bajo el header, con scroll propio.
   El backdrop-filter del header lo vuelve containing block del fixed:
   por eso la altura es explícita en dvh y no por inset top/bottom. */
.nav-menu {
	display: none;
	position: fixed;
	inset: var(--header-h) 0 auto 0;
	height: calc(100vh - var(--header-h));
	height: calc(100dvh - var(--header-h));
	background: var(--surface-card);
	overflow-y: auto;
	overscroll-behavior: contain;
	flex-direction: column;
	align-items: stretch;
	padding: var(--sp-lg) var(--sp-md) var(--sp-3xl);
	gap: var(--sp-xs);
	list-style: none;
	margin: 0;
	z-index: 49;
}
.nav-menu.is-open {
	display: flex;
}
.nav-menu > li > a,
.nav-drop-btn {
	display: block;
	width: 100%;
	text-align: left;
	text-decoration: none;
	color: var(--navy);
	font-weight: 600;
	font-size: 1.05rem;
	padding: 14px var(--sp-sm);
	border: 0;
	background: none;
	font-family: inherit;
	cursor: pointer;
	border-bottom: 1px solid var(--outline);
}
.nav-menu > li > a.nav-cta {
	background: var(--cyan);
	color: var(--navy-deep);
	border-radius: var(--r-pill);
	text-align: center;
	margin-top: var(--sp-md);
	border-bottom: none;
	padding: 14px var(--sp-lg);
}
.nav-drop {
	position: relative;
}
.nav-sub {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0 0 0 var(--sp-md);
}
.nav-drop.is-open .nav-sub {
	display: block;
}
.nav-sub a {
	display: block;
	padding: 11px var(--sp-md);
	text-decoration: none;
	color: var(--navy);
	border-radius: var(--r-md);
	font-size: 0.95rem;
	font-weight: 500;
}
.nav-sub a:hover {
	background: var(--surface);
	color: var(--cyan-text);
}
/* Desktop: barra horizontal con dropdowns flotantes */
@media (min-width: 1024px) {
	.nav-toggle {
		display: none;
	}
	.nav-menu {
		display: flex;
		position: static;
		inset: auto;
		overflow: visible;
		flex-direction: row;
		align-items: center;
		gap: var(--sp-md);
		padding: 0;
		background: none;
	}
	.nav-menu > li > a,
	.nav-drop-btn {
		width: auto;
		font-size: 0.95rem;
		font-weight: 600;
		white-space: nowrap;
		padding: var(--sp-sm) 2px;
		border-bottom: 2px solid transparent;
		transition:
			color 0.15s ease,
			border-color 0.15s ease;
	}
	.nav-menu > li > a[aria-current="page"] {
		color: var(--cyan-text);
		border-bottom-color: var(--cyan);
	}
	.nav-menu > li > a:hover,
	.nav-drop-btn:hover {
		border-bottom-color: var(--cyan);
	}
	.nav-menu > li > a.nav-cta {
		margin-top: 0;
		padding: var(--sp-sm) var(--sp-lg);
	}
	.nav-cta:hover {
		filter: brightness(1.08);
	}
	.nav-sub {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 250px;
		background: var(--surface-card);
		border: 1px solid var(--outline);
		border-radius: var(--r-lg);
		box-shadow: var(--shadow-2);
		padding: var(--sp-sm);
	}
	.nav-drop:hover .nav-sub,
	.nav-drop:focus-within .nav-sub {
		display: block;
	}
}

/* ---- CTA sticky móvil ---- */
.cta-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--outline);
	border-top: 1px solid var(--outline);
	padding-bottom: env(safe-area-inset-bottom, 0);
}
.cta-sticky a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 8px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
}
.cta-sticky .cta-wa {
	background: #25d366;
	color: #073b1c;
}
.cta-sticky .cta-cotizar {
	background: var(--navy);
	color: #fff;
}
@media (min-width: 768px) {
	.cta-sticky {
		display: none;
	}
}
/* el flotante de WhatsApp solo en desktop (en móvil lo cubre la sticky) */
.wa-float {
	display: none;
}
@media (min-width: 768px) {
	.wa-float {
		position: fixed;
		right: 20px;
		bottom: 20px;
		z-index: 60;
		width: 56px;
		height: 56px;
		background: #25d366;
		color: #fff;
		border-radius: var(--r-pill);
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: var(--shadow-2);
	}
	.wa-float:hover {
		transform: scale(1.06);
	}
}
body {
	padding-bottom: 57px;
} /* espacio para la sticky en móvil */
@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}
}

/* ---- Hero (banda dark) ---- */
.hero {
	background: linear-gradient(
		125deg,
		var(--navy-deep),
		var(--navy) 55%,
		var(--navy-soft)
	);
	color: var(--on-dark);
	padding: var(--sp-2xl) 0;
	position: relative;
	overflow: hidden;
}
@media (min-width: 768px) {
	.hero {
		padding: var(--sp-4xl) 0;
	}
}
.hero h1 {
	color: #fff;
	max-width: 17ch;
}
.hero .accent {
	color: var(--cyan-soft);
}
.hero .lead {
	color: var(--on-dark-muted);
	max-width: 52ch;
}
.hero-ctas {
	display: flex;
	gap: var(--sp-md);
	flex-wrap: wrap;
	margin-top: var(--sp-xl);
}
.hero-ctas--center {
	justify-content: center;
}
.mt-lg {
	margin-top: var(--sp-lg);
}

/* ---- Hero full-bleed (home): media a sangre + texto encima ---- */
.hero-full {
	position: relative;
	min-height: clamp(580px, 92vh, 860px);
	display: flex;
	align-items: center;
	padding: var(--sp-4xl) 0;
	overflow: hidden;
	text-align: center;
}
.hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.hero-scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(
			ellipse 90% 70% at 50% 42%,
			rgba(8, 16, 28, 0.35),
			rgba(8, 16, 28, 0.72) 100%
		),
		linear-gradient(
			to bottom,
			rgba(8, 16, 28, 0.55) 0%,
			rgba(8, 16, 28, 0.4) 38%,
			rgba(8, 16, 28, 0.82) 100%
		);
}
.hero-full-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	border-radius: var(--r-pill);
	border: 1px solid rgba(143, 224, 242, 0.28);
	background: rgba(19, 190, 232, 0.1);
	color: var(--cyan-soft);
	font-size: 0.85rem;
	font-weight: 600;
	margin: 0 0 var(--sp-lg);
}
.hero-badge svg {
	color: var(--cyan-soft);
}
.hero-title {
	color: #fff;
	max-width: 16ch;
	font-size: clamp(2.4rem, 6vw, 4.5rem);
	line-height: 1.04;
	letter-spacing: -0.03em;
	text-wrap: balance;
	margin: 0;
}
.hero-accent {
	color: var(--cyan-soft);
}
.hero-title {
	text-shadow: 0 2px 24px rgba(8, 16, 28, 0.5);
}
.hero-full .lead {
	color: rgba(255, 255, 255, 0.92);
	max-width: 56ch;
	margin: var(--sp-lg) auto 0;
	text-shadow: 0 1px 12px rgba(8, 16, 28, 0.55);
}
.hero-full .hero-ctas {
	justify-content: center;
}
.hero-full .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
/* Stats en fila con divisores (estilo del referente) */
.hero-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: var(--sp-lg);
	margin: var(--sp-2xl) 0 0;
}
.hero-stat {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 0 var(--sp-lg);
	min-width: 130px;
}
.hero-stat + .hero-stat::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12%;
	height: 76%;
	width: 1px;
	background: rgba(196, 212, 227, 0.22);
}
.hero-stat dt {
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	font-weight: 800;
	color: var(--cyan-soft);
	line-height: 1;
}
.hero-stat dd {
	margin: 0;
	font-size: 0.76rem;
	color: var(--on-dark-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	max-width: 16ch;
}
.hero-stats-note {
	color: var(--on-dark-muted);
	font-size: 0.78rem;
	max-width: 60ch;
	margin: var(--sp-md) auto 0;
	opacity: 0.85;
}
@media (max-width: 600px) {
	.hero-stat + .hero-stat::before {
		display: none;
	}
}

/* Entrada escalonada en carga (no gated por scroll: anima al render).
   Estado final visible siempre; reduced-motion lo muestra al instante. */
.hero-enter {
	animation: hero-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-enter:nth-child(1) {
	animation-delay: 0.05s;
}
.hero-enter:nth-child(2) {
	animation-delay: 0.16s;
}
.hero-enter:nth-child(3) {
	animation-delay: 0.27s;
}
.hero-enter:nth-child(4) {
	animation-delay: 0.38s;
}
.hero-enter:nth-child(5) {
	animation-delay: 0.5s;
}
.hero-enter:nth-child(6) {
	animation-delay: 0.62s;
}
.hero-enter:nth-child(7) {
	animation-delay: 0.72s;
}
@keyframes hero-rise {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (prefers-reduced-motion: reduce) {
	.hero-enter {
		animation: none;
	}
}

/* Hero 3D (home): render flotante sobre aurora con capas */
.hero-3d .hero-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-xl);
	align-items: center;
}
@media (min-width: 1024px) {
	.hero-3d .hero-split {
		grid-template-columns: 1.05fr 0.95fr;
		gap: var(--sp-2xl);
	}
}
.hero-render {
	margin: 0;
	position: relative;
	display: flex;
	justify-content: center;
}
.hero-render img {
	width: min(100%, 560px);
	filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45))
		drop-shadow(0 0 60px rgba(19, 190, 232, 0.25));
}
.hero-render::before {
	content: "";
	position: absolute;
	inset: auto 8% 4% 8%;
	height: 22px;
	background: radial-gradient(
		ellipse at center,
		rgba(19, 190, 232, 0.4),
		transparent 70%
	);
	filter: blur(8px);
}

/* Escenario del giro animado (3D desktop / video móvil / poster) */
.hero-stage {
	position: relative;
	width: min(100%, 600px);
	aspect-ratio: 16 / 9;
	border-radius: var(--r-xl);
	overflow: hidden;
	background: linear-gradient(160deg, #0e1a2b, #1d3a5f);
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.45),
		0 0 60px rgba(19, 190, 232, 0.22);
}
.hero-stage > img,
.hero-stage > video,
.hero-stage > model-viewer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Hero de categoría (producto) */
.hero-producto .hero-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-xl);
	align-items: center;
}
@media (min-width: 768px) {
	.hero-producto .hero-split {
		grid-template-columns: 1.1fr 0.9fr;
	}
}
.hero-producto .hero-render img {
	width: min(100%, 440px);
}

/* ---- Botones ---- */
.btn {
	display: inline-block;
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--r-pill);
	padding: 13px 26px;
	font-size: 1rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition:
		transform 0.15s ease,
		filter 0.15s ease;
}
.btn:hover {
	transform: translateY(-1px);
	filter: brightness(1.06);
}
.btn-primary {
	background: var(--cyan);
	color: var(--navy-deep);
}
.btn-ghost {
	border-color: var(--cyan);
	color: var(--cyan-soft);
	background: transparent;
}
.btn-ghost-dark {
	border-color: var(--navy);
	color: var(--navy);
	background: transparent;
}

/* ---- Secciones / cards ---- */
.section {
	padding: var(--sp-2xl) 0;
}
@media (min-width: 768px) {
	.section {
		padding: var(--sp-3xl) 0;
	}
}
.section-alt {
	background: var(--surface-card);
}
.section-dark {
	background: linear-gradient(125deg, var(--navy-deep), var(--navy));
	color: var(--on-dark);
}
.section-dark h2,
.section-dark h3 {
	color: #fff;
}
.section-dark .lead,
.section-dark p {
	color: var(--on-dark-muted);
}
.kicker {
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--cyan-text);
	margin-bottom: var(--sp-sm);
}
.section-dark .kicker,
.hero .kicker {
	color: var(--cyan-soft);
}
.grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-lg);
}
.grid-2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-xl);
	align-items: center;
}
@media (min-width: 768px) {
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
	.grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}
}
.card {
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-radius: var(--r-xl);
	padding: var(--sp-lg);
	box-shadow: var(--shadow-1);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease;
}
@media (min-width: 768px) {
	.card {
		padding: var(--sp-xl);
	}
}
a.card {
	text-decoration: none;
	color: inherit;
	display: block;
}
.card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-2);
}
.card-link {
	color: var(--cyan-text);
	font-weight: 700;
	font-size: 0.9rem;
}
.glass-panel {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--r-xl);
	padding: var(--sp-lg);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}
@supports not (backdrop-filter: blur(14px)) {
	.glass-panel {
		background: rgba(19, 41, 75, 0.85);
	}
}

/* ---- Métricas ---- */
.stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-lg);
	text-align: center;
}
@media (min-width: 768px) {
	.stats {
		grid-template-columns: repeat(4, 1fr);
	}
}
.stat-value {
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	font-weight: 800;
	color: var(--cyan-text);
}
.stat-label {
	font-size: 0.85rem;
	color: var(--on-surface-muted);
}
.stats-dark .stat-label {
	color: var(--on-dark-muted);
}
.card .stats {
	grid-template-columns: repeat(2, 1fr);
}
/* Bloque destacado MK8 (home) */
.mk8-media {
	margin: 0;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-2);
}
.mk8-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mk8-stats {
	grid-template-columns: repeat(2, 1fr);
	text-align: left;
	gap: var(--sp-md) var(--sp-lg);
	margin: var(--sp-lg) 0;
}
.mk8-stats dd {
	margin: 0;
}
.mk8-stats .stat-value {
	font-size: clamp(1.4rem, 3vw, 1.9rem);
}
/* Diferenciadores: la ingeniería de los túneles (iconos a medida) */
.difs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: var(--sp-2xl) var(--sp-lg);
	margin-top: var(--sp-2xl);
}
.dif {
	text-align: center;
}
.dif-ico {
	width: 52px;
	height: 52px;
	color: var(--navy);
	margin: 0 auto var(--sp-md);
	display: block;
}
.dif-ico .acc {
	stroke: var(--cyan);
}
.dif h3 {
	font-size: 1.02rem;
	margin-bottom: var(--sp-sm);
}
.dif p {
	color: var(--on-surface-muted);
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}
/* Diagrama SVG dentro de una card (recuperación de agua) */
.card-diagram {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
	background: #f5f8fa;
	border: 1px solid var(--outline);
	border-radius: var(--r-md);
	margin-bottom: var(--sp-md);
	padding: var(--sp-sm);
}
/* Diagrama SVG en el hero de la página de producto: respeta su aspecto, sin glow de render */
.hero-render img[src$=".svg"] {
	width: min(100%, 640px);
	aspect-ratio: 1000 / 520;
	height: auto;
	border-radius: var(--r-lg);
	filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}
/* Tilt 3D reactivo al cursor (premium): rota hacia el mouse con perspectiva real */
.mo-tilt3d {
	--rx: 0deg;
	--ry: 0deg;
	transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
	transform-style: preserve-3d;
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.3s ease;
	will-change: transform;
}
.mo-tilt3d.is-tilting {
	transition: box-shadow 0.3s ease;
}
/* Las cards de soluciones: el tilt gana al translateY del hover (mayor especificidad) */
a.card.mo-tilt3d {
	transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
}
a.card.mo-tilt3d.is-tilting {
	box-shadow:
		var(--shadow-2),
		0 24px 48px rgba(13, 37, 63, 0.16);
}
.mk8-media.mo-tilt3d.is-tilting {
	box-shadow:
		var(--shadow-2),
		0 30px 60px rgba(13, 37, 63, 0.22);
}
@media (prefers-reduced-motion: reduce) {
	.mo-tilt3d {
		transform: none;
	}
}
/* Franja de confianza bajo el hero */
.trust-strip {
	background: var(--surface-card);
	border-top: 1px solid var(--outline);
	border-bottom: 1px solid var(--outline);
	padding: var(--sp-md) 0;
}
.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-sm) var(--sp-xl);
	justify-content: center;
	align-items: center;
}
.trust-item {
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--navy-soft);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.trust-item::before {
	content: "✓";
	color: var(--cyan-text);
	font-weight: 800;
}
/* Módulo "Calcula tu retorno" (conversión) */
.roi-block {
	align-items: center;
}
.roi-card {
	display: flex;
	flex-direction: column;
	gap: var(--sp-md);
}
.roi-card .roi-title {
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--navy);
	margin: 0;
}
.roi-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--on-surface-muted);
}
.roi-field input {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--navy);
	padding: 12px 14px;
	border: 1.5px solid var(--outline);
	border-radius: var(--r-md);
	font-family: var(--font);
	background: #fff;
}
.roi-field input:focus {
	outline: none;
	border-color: var(--cyan);
	box-shadow: 0 0 0 3px rgba(19, 190, 232, 0.15);
}
.roi-out {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: var(--sp-md);
	background: var(--surface);
	border-radius: var(--r-md);
	text-align: center;
}
.roi-out-label {
	font-size: 0.74rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--cyan-text);
	font-weight: 700;
}
.roi-card .roi-value {
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	font-weight: 800;
	color: var(--navy);
	line-height: 1.1;
}
.roi-card .roi-nota {
	font-size: 0.78rem;
	color: var(--on-surface-muted);
	margin: 0;
}
.roi-card .btn {
	justify-content: center;
}
/* ===== Hero cinematográfico: full-bleed, carro real en el túnel ===== */
.hero-cine {
	position: relative;
	min-height: min(86vh, 760px);
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--navy-deep);
}
.hero-cine-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-cine-media img,
.hero-cine-media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero-cine-scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			95deg,
			rgba(8, 17, 28, 0.94) 0%,
			rgba(8, 17, 28, 0.72) 38%,
			rgba(8, 17, 28, 0.18) 70%,
			rgba(8, 17, 28, 0.04) 100%
		),
		linear-gradient(0deg, rgba(8, 17, 28, 0.5), transparent 42%);
}
.hero-cine-inner {
	position: relative;
	z-index: 2;
	color: #fff;
	padding-top: var(--sp-2xl);
	padding-bottom: var(--sp-2xl);
}
.hero-cine-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--cyan-soft);
	background: rgba(19, 190, 232, 0.12);
	border: 1px solid rgba(143, 224, 242, 0.35);
	padding: 6px 14px;
	border-radius: var(--r-pill);
	margin: 0 0 var(--sp-md);
}
.hero-cine h1 {
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.02;
	margin: 0 0 var(--sp-md);
	max-width: 16ch;
	text-wrap: balance;
}
.hero-cine h1 span {
	color: var(--cyan);
}
.hero-cine-sub {
	font-size: 1.08rem;
	color: var(--on-dark-muted);
	max-width: 46ch;
	margin: 0 0 var(--sp-xl);
	line-height: 1.55;
}
.hero-cine-ctas {
	display: flex;
	gap: var(--sp-md);
	flex-wrap: wrap;
	margin-bottom: var(--sp-2xl);
}
.btn-hero-ghost {
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.45);
	color: #fff;
}
.btn-hero-ghost:hover {
	background: rgba(255, 255, 255, 0.16);
}
.hero-cine-stats {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-md) var(--sp-xl);
	margin: 0;
}
.hero-cine-stats dt {
	font-family: var(--font);
	font-size: clamp(1.6rem, 3.4vw, 2.3rem);
	font-weight: 800;
	color: #fff;
	line-height: 1;
}
.hero-cine-stats dd {
	font-size: 0.76rem;
	color: var(--on-dark-muted);
	margin: 6px 0 0;
	font-weight: 600;
	letter-spacing: 0.02em;
}
@media (max-width: 640px) {
	.hero-cine-scrim {
		background: linear-gradient(
			0deg,
			rgba(8, 17, 28, 0.92) 0%,
			rgba(8, 17, 28, 0.6) 50%,
			rgba(8, 17, 28, 0.32) 100%
		);
	}
}
/* ===== Túneles: gamas MATIK'S (renders reales del fabricante) ===== */
.gamas-intro {
	max-width: 62ch;
}
.gamas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: var(--sp-md);
	margin: var(--sp-xl) 0;
}
.gama-card {
	position: relative;
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-1);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}
.gama-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-2);
}
.gama-card.is-flag {
	border-color: var(--cyan);
	box-shadow:
		0 0 0 2px rgba(19, 190, 232, 0.25),
		var(--shadow-1);
}
.gama-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}
.gama-flag {
	position: absolute;
	top: 10px;
	left: 10px;
	background: var(--cyan);
	color: #04222b;
	font-weight: 800;
	font-size: 0.66rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 3px 9px;
	border-radius: var(--r-pill);
}
.gama-body {
	padding: var(--sp-md);
}
.gama-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
}
.gama-name {
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--navy);
	letter-spacing: 0.04em;
}
.gama-cap {
	font-weight: 800;
	color: var(--cyan-text);
	font-size: 0.95rem;
	white-space: nowrap;
}
.gama-body p {
	font-size: 0.85rem;
	color: var(--on-surface-muted);
	margin: 6px 0 0;
	line-height: 1.5;
}
.tuneles-specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-md);
	margin: var(--sp-xl) 0;
	text-align: center;
}
@media (min-width: 768px) {
	.tuneles-specs {
		grid-template-columns: repeat(4, 1fr);
	}
}
.tuneles-specs dt {
	font-weight: 800;
	font-size: clamp(1.4rem, 3vw, 2rem);
	color: var(--navy);
	line-height: 1;
}
.tuneles-specs dd {
	font-size: 0.78rem;
	color: var(--on-surface-muted);
	margin: 5px 0 0;
	font-weight: 600;
}
.gamas-cta {
	display: flex;
	gap: var(--sp-md);
	flex-wrap: wrap;
	justify-content: center;
}
.metrics-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-lg);
	text-align: center;
	padding-block: var(--sp-xl);
}
@media (min-width: 768px) {
	.metrics-grid {
		grid-template-columns: repeat(4, 1fr);
		padding-block: var(--sp-2xl);
	}
}
.metrics-grid > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.metric-n {
	font-size: clamp(1.7rem, 6vw, 3rem);
	font-weight: 800;
	color: var(--cyan-soft);
	line-height: 1;
}
.metric-l {
	font-size: 0.78rem;
	color: var(--on-dark-muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
}
.metric-note {
	font-size: 0.72rem;
	color: var(--on-dark-muted);
	font-weight: 400;
	line-height: 1.35;
	max-width: 26ch;
	margin-top: 4px;
}

/* ---- Listas con check ---- */
.check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--sp-lg);
}
.check-list li {
	padding-left: 30px;
	position: relative;
	margin-bottom: var(--sp-sm);
}
.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--cyan-text);
	font-weight: 800;
}

/* ---- FAQ ---- */
.faq details {
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-radius: var(--r-lg);
	padding: var(--sp-md) var(--sp-lg);
	margin-bottom: var(--sp-md);
}
.faq summary {
	font-weight: 700;
	color: var(--navy);
	cursor: pointer;
}
.faq details[open] summary {
	margin-bottom: var(--sp-sm);
}

/* ---- Formulario ---- */
.form-grid {
	display: grid;
	gap: var(--sp-md);
	max-width: 560px;
}
.form-grid label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--navy);
}
.form-grid input,
.form-grid select,
.form-grid textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid var(--outline);
	border-radius: var(--r-md);
	font-family: var(--font);
	font-size: 1rem;
	background: var(--surface-card);
	margin-top: var(--sp-xs);
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
	border-color: var(--cyan);
	box-shadow: 0 0 0 3px rgba(19, 190, 232, 0.35);
}
.form-error {
	color: var(--error);
	font-size: 0.85rem;
	display: none;
}
.form-status {
	font-weight: 600;
	display: none;
}
.form-status.is-error {
	display: block;
	color: var(--error);
}
.form-status.is-loading {
	display: block;
	color: var(--on-surface-muted);
}
.opcional {
	font-weight: 400;
	color: var(--on-surface-muted);
	font-size: 0.85em;
}
.form-visita {
	border: 1px solid rgba(19, 41, 75, 0.15);
	border-radius: 12px;
	padding: 12px 14px;
	display: grid;
	gap: 10px;
}
.form-visita legend {
	font-weight: 700;
	padding: 0 6px;
}
.form-visita .checkbox {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.form-visita .checkbox input {
	margin-top: 3px;
}
.form-block {
	align-items: start;
}
.form-sello {
	display: flex;
	align-items: center;
	gap: var(--sp-sm);
	margin: 0 0 var(--sp-sm);
}
.form-sello img {
	height: 32px;
	width: auto;
}
.form-sello span {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--cyan-text);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ---- Banda CTA final ---- */
.cta-band {
	position: relative;
	z-index: 0;
	background: linear-gradient(125deg, var(--navy-deep), var(--navy));
	color: var(--on-dark);
	text-align: center;
}
.cta-band h2 {
	color: #fff;
}
/* El .lead por defecto es texto oscuro muted: sobre la banda navy/aurora
   queda ilegible. Forzar texto claro AA (reportado por Jimmy 2026-06-26). */
.cta-band .lead {
	color: var(--on-dark);
}
.cta-band .container {
	position: relative;
	z-index: 1;
}

/* ---- Footer ---- */
.site-footer {
	background: var(--navy-deep);
	color: var(--on-dark-muted);
	padding: var(--sp-2xl) 0 var(--sp-lg);
	margin-top: var(--sp-3xl);
}
.footer-logo img {
	height: 40px;
	width: auto;
	margin-bottom: var(--sp-md);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-xl);
}
@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr;
		gap: var(--sp-2xl);
	}
}
.footer-title {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: var(--sp-sm);
}
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-links a {
	color: var(--on-dark-muted);
	text-decoration: none;
	line-height: 2;
	font-size: 0.9rem;
}
.footer-links a:hover {
	color: var(--cyan-soft);
}
.footer-muted {
	font-size: 0.9rem;
}
.footer-legal {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	margin-top: var(--sp-xl);
	padding-top: var(--sp-lg);
	font-size: 0.8rem;
}

/* ---- Fichas híbridas de modelo ---- */
.modelos-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-xl);
	margin-top: var(--sp-xl);
}
@media (min-width: 768px) {
	.modelos-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.modelo {
	display: flex;
	flex-direction: column;
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-radius: var(--r-xl);
	overflow: hidden;
}
.galeria {
	position: relative;
	background: linear-gradient(160deg, #f2f6f9, #e6eef4);
}
.galeria-pista {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.galeria-pista::-webkit-scrollbar {
	display: none;
}
.galeria-pista > figure {
	flex: 0 0 100%;
	margin: 0;
	scroll-snap-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	padding: var(--sp-md);
}
.galeria-pista img {
	max-height: 100%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}
.galeria-dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
}
.galeria-dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: rgba(19, 41, 75, 0.25);
	cursor: pointer;
}
.galeria-dots button.is-active {
	background: var(--cyan-text);
}
.modelo-info {
	padding: var(--sp-lg);
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
	flex: 1;
}
.modelo h3 {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	margin-bottom: var(--sp-xs);
}
.modelo-capacidad {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--cyan-text);
}
.specs-clave {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--sp-sm) var(--sp-md);
	list-style: none;
	padding: var(--sp-md);
	margin: 0;
	background: var(--surface);
	border-radius: var(--r-md);
}
.specs-clave li {
	font-size: 0.85rem;
}
.specs-clave .sk-k {
	display: block;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--on-surface-muted);
}
.specs-clave .sk-v {
	font-weight: 700;
	color: var(--navy);
}
.specs-acordeon {
	border: 1px solid var(--outline);
	border-radius: var(--r-md);
	padding: var(--sp-sm) var(--sp-md);
	background: var(--surface);
}
.specs-acordeon summary {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--navy);
	cursor: pointer;
}
.specs-acordeon dl {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px 16px;
	margin: var(--sp-md) 0 0;
}
@media (min-width: 480px) {
	.specs-acordeon dl {
		grid-template-columns: 1fr 1fr;
	}
}
.specs-acordeon dt {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--on-surface-muted);
}
.specs-acordeon dd {
	margin: 0 0 6px;
	font-weight: 600;
	font-size: 0.9rem;
}
.modelo-ctas {
	margin-top: auto;
	display: flex;
	gap: var(--sp-sm);
	flex-wrap: wrap;
	padding-top: var(--sp-md);
}
.modelos-mas {
	margin-top: var(--sp-xl);
	font-weight: 600;
}
.tabla-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 16px 0;
}
.tabla-versiones {
	border-collapse: collapse;
	width: 100%;
	min-width: 560px;
	font-size: 0.88rem;
	background: var(--surface-card);
}
.tabla-versiones caption {
	text-align: left;
	font-weight: 700;
	padding: 8px 4px;
}
.tabla-versiones th,
.tabla-versiones td {
	padding: 8px 14px;
	border-bottom: 1px solid #e3e8ee;
	text-align: left;
}
.tabla-versiones thead th {
	background: var(--navy);
	color: #fff;
}
.tabla-versiones .grupo-row th {
	background: #eef4f8;
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 0.05em;
	color: var(--navy);
}
.disclaimer {
	margin-top: 32px;
	font-size: 0.85rem;
	color: #5b6770;
}

/* ---- Químicos por etapa ---- */
.etapas {
	counter-reset: etapa;
	display: grid;
	gap: var(--sp-xl);
	margin-top: var(--sp-xl);
}
.etapa {
	position: relative;
	padding-left: 56px;
}
.etapa::before {
	counter-increment: etapa;
	content: counter(etapa);
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--navy);
	color: var(--cyan-soft);
	font-weight: 800;
	font-size: 1.1rem;
}
.etapa-productos {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-md);
	margin-top: var(--sp-md);
}
@media (min-width: 768px) {
	.etapa-productos {
		grid-template-columns: repeat(2, 1fr);
	}
}
.quimico {
	display: flex;
	gap: var(--sp-md);
	align-items: flex-start;
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-radius: var(--r-lg);
	padding: var(--sp-md);
}
.quimico svg {
	flex: 0 0 40px;
	color: var(--cyan-text);
}
.quimico h4 {
	margin: 0 0 4px;
	font-size: 0.95rem;
	color: var(--navy);
}
.quimico p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--on-surface-muted);
}
.quimico .dosis {
	display: block;
	margin-top: 4px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--cyan-text);
}

/* ---- Estimador ---- */
.estimador-simple-wrap {
	max-width: 720px;
}
.estimador-simple {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-lg);
	margin-top: var(--sp-lg);
}
@media (min-width: 600px) {
	.estimador-simple {
		grid-template-columns: 1fr 1fr;
	}
}
.estimador-resultado {
	grid-column: 1 / -1;
	background: rgba(19, 190, 232, 0.1);
	border-radius: 12px;
	padding: 1rem 1.25rem;
}
.estimador-cifra {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--navy);
	margin: 0.25rem 0;
}
.estimador-cta {
	grid-column: 1 / -1;
	margin: 0;
}

/* ---- Ecosistema (cross-sell) ---- */
.ecosistema-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-lg);
	margin-top: var(--sp-xl);
}
@media (min-width: 768px) {
	.ecosistema-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---- Hero render enmarcado (renders opacos, sin alpha) ---- */
.hero-render img {
	border-radius: var(--r-xl);
	border: 1px solid rgba(19, 190, 232, 0.35);
	box-shadow:
		0 0 50px rgba(19, 190, 232, 0.28),
		0 24px 48px rgba(0, 0, 0, 0.4);
	filter: none;
}
.hero-render::before {
	content: none;
}

/* ---- Imágenes lifestyle (home: sectores y asesoría) ---- */
.card-sector img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--r-md);
	margin-bottom: var(--sp-md);
}
.form-media {
	margin: var(--sp-lg) 0 0;
}
.form-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: top;
	border-radius: var(--r-lg);
}

/* ============ Túneles MATIKS 2026 — gamas, resultados, componentes ============ */
/* ---- Escalera de gamas ---- */
.gamas-escalera {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-xl);
	margin-top: var(--sp-2xl);
}
@media (min-width: 900px) {
	.gamas-escalera {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1180px) {
	.gamas-escalera {
		grid-template-columns: repeat(3, 1fr);
	}
}
.gama-card {
	display: flex;
	flex-direction: column;
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--shadow-1);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}
@media (prefers-reduced-motion: no-preference) {
	.gama-card:hover {
		transform: translateY(-4px);
		box-shadow: var(--shadow-2);
		border-color: var(--cyan);
	}
}
/* Escalonado que comunica progresión START→SIGNATURE (solo desktop) */
@media (min-width: 1180px) and (prefers-reduced-motion: no-preference) {
	.gamas-escalera .gama-card:nth-child(2) {
		transform: translateY(18px);
	}
	.gamas-escalera .gama-card:nth-child(3) {
		transform: translateY(36px);
	}
	.gamas-escalera .gama-card:nth-child(2):hover {
		transform: translateY(14px);
	}
	.gamas-escalera .gama-card:nth-child(3):hover {
		transform: translateY(32px);
	}
}
.gama-render {
	margin: 0;
	background: linear-gradient(160deg, #0e1a2b, #1d3a5f);
}
.gama-render img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}
.gama-body {
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
	padding: var(--sp-lg);
}
.gama-body .kicker {
	font-size: 1.1rem;
	letter-spacing: 0.12em;
	color: var(--navy);
	margin: 0;
}
.gama-cap {
	display: inline-block;
	align-self: flex-start;
	background: var(--cyan);
	color: var(--navy-deep);
	font-weight: 700;
	font-size: 0.8rem;
	padding: 2px 10px;
	border-radius: var(--r-pill);
}
.gama-body h3 {
	font-size: 1.15rem;
	color: var(--navy);
	margin: var(--sp-xs) 0 0;
}
.gama-serie {
	list-style: none;
	padding: 0;
	margin: var(--sp-sm) 0 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.gama-serie li {
	position: relative;
	padding-left: 22px;
	font-size: 0.9rem;
	color: var(--on-surface-muted);
}
.gama-serie li::before {
	content: "›";
	position: absolute;
	left: 0;
	color: var(--cyan-text);
	font-weight: 800;
}
.gama-para {
	margin: var(--sp-md) 0 0;
	display: grid;
	gap: 4px;
	border-top: 1px solid var(--outline);
	padding-top: var(--sp-md);
}
.gama-para dt {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--cyan-text);
	font-weight: 700;
}
.gama-para dd {
	margin: 0 0 var(--sp-sm);
	font-size: 0.9rem;
	color: var(--on-surface);
}
/* ---- Venta por resultado ---- */
.resultados-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-lg);
	margin-top: var(--sp-xl);
}
@media (min-width: 768px) {
	.resultados-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.resultados-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.resultado {
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-left: 3px solid var(--cyan);
	border-radius: var(--r-lg);
	padding: var(--sp-lg);
}
.resultado h3 {
	margin: 0 0 var(--sp-xs);
	color: var(--navy);
	font-size: 1.05rem;
}
.resultado p {
	margin: 0;
	color: var(--on-surface-muted);
	font-size: 0.92rem;
}
/* ---- Componentes / módulos ---- */
.componentes-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-lg);
	margin-top: var(--sp-xl);
}
@media (min-width: 768px) {
	.componentes-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.componentes-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.componente {
	display: flex;
	gap: var(--sp-md);
	align-items: flex-start;
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-radius: var(--r-lg);
	padding: var(--sp-lg);
}
.componente svg {
	flex: 0 0 auto;
	color: var(--cyan-text);
}
.componente h3 {
	margin: 0 0 4px;
	color: var(--navy);
	font-size: 1rem;
}
.componente p {
	margin: 0;
	color: var(--on-surface-muted);
	font-size: 0.9rem;
}
/* ---- Bloque destacado (lavado de trenes) ---- */
.destacado {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-lg);
	align-items: start;
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-radius: var(--r-xl);
	padding: var(--sp-xl);
	box-shadow: var(--shadow-1);
}
@media (min-width: 768px) {
	.destacado {
		grid-template-columns: auto 1fr;
		gap: var(--sp-2xl);
		padding: var(--sp-2xl);
	}
}
.destacado-icono {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: var(--r-lg);
	background: rgba(19, 190, 232, 0.12);
	color: var(--cyan-text);
}
.destacado-icono svg {
	width: 40px;
	height: 40px;
}
.destacado-body h2 {
	margin: 4px 0 var(--sp-sm);
}

/* ---- Subtítulo de agrupación por gama en la sección de modelos ---- */
.grupo-gama {
	grid-column: 1 / -1;
	margin: var(--sp-xl) 0 0;
	color: var(--navy);
	font-size: 1.3rem;
	display: flex;
	align-items: baseline;
	gap: var(--sp-sm);
}
.grupo-gama-cap {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--cyan-text);
}

/* ============ Páginas de sector — hero branded Clean Car ============ */
.hero-sector {
	padding: clamp(var(--sp-2xl), 6vw, var(--sp-4xl)) 0;
}
.hero-sector-aura {
	position: absolute;
	z-index: 0;
	top: -25%;
	right: -12%;
	width: 62%;
	height: 130%;
	background: radial-gradient(
		ellipse at center,
		rgba(19, 190, 232, 0.22),
		transparent 64%
	);
	filter: blur(36px);
	pointer-events: none;
}
.hero-sector-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-2xl);
	align-items: center;
}
@media (min-width: 920px) {
	.hero-sector-grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: var(--sp-3xl);
	}
}
.hero-sector-copy {
	min-width: 0;
}
.hero-sector .hero-badge {
	margin-bottom: var(--sp-md);
}
.hero-sector h1 {
	font-size: clamp(1.75rem, 3.4vw, 2.6rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	max-width: 24ch;
	text-wrap: balance;
	margin: 0;
}
.hero-sector .lead {
	color: var(--on-dark-muted);
	max-width: 50ch;
	margin-top: var(--sp-md);
}
.hero-sector .btn-primary,
.hero-producto .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.hero-sector .btn-primary svg,
.hero-producto .btn-primary svg {
	transition: transform var(--dur-fast, 0.18s) var(--ease-out-soft, ease);
}
.hero-sector .btn-primary:hover svg,
.hero-producto .btn-primary:hover svg {
	transform: translateX(3px);
}

/* Marco de la imagen branded: realce cyan sobre el navy del hero */
.hero-sector-media {
	position: relative;
	margin: 0;
	border-radius: var(--r-xl);
	overflow: hidden;
	border: 1px solid rgba(19, 190, 232, 0.38);
	box-shadow:
		0 0 50px rgba(19, 190, 232, 0.22),
		0 28px 56px rgba(0, 0, 0, 0.45);
}
.hero-sector-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}
.hero-sector-tag {
	position: absolute;
	left: var(--sp-md);
	bottom: var(--sp-md);
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	border-radius: var(--r-pill);
	background: rgba(8, 17, 28, 0.74);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(143, 224, 242, 0.32);
	color: var(--cyan-soft);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}
.hero-sector-tag svg {
	color: var(--cyan);
}

/* Tarjetas de solución: card completa clicable, estética Clean Car */
.soluciones-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-lg);
	margin-top: var(--sp-lg);
}
@media (min-width: 760px) {
	.soluciones-grid {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	}
}
.card-solucion {
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
}
.card-solucion h3 {
	margin: 0;
	color: var(--navy);
}
.card-solucion .card-link {
	margin-top: auto;
	padding-top: var(--sp-xs);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.card-solucion .card-link svg {
	transition: transform var(--dur-fast, 0.18s) var(--ease-out-soft, ease);
}
@media (prefers-reduced-motion: no-preference) {
	.card-solucion {
		transition:
			transform 0.2s ease,
			box-shadow 0.2s ease,
			border-color 0.2s ease;
	}
	.card-solucion:hover {
		transform: translateY(-4px);
		box-shadow: var(--shadow-2);
		border-color: var(--cyan);
	}
	.card-solucion:hover .card-link svg {
		transform: translateX(4px);
	}
}

/* Feedback de presión para todos los botones (pulido Clean Car) */
.btn:active {
	transform: translateY(0);
	filter: brightness(0.97);
}

/* Destacado con render (trenes): imagen + cuerpo en 2 columnas */
.destacado-media {
	margin: 0;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-1);
}
.destacado-media img {
	width: 100%;
	aspect-ratio: 5 / 3;
	object-fit: cover;
	display: block;
}
@media (min-width: 760px) {
	.destacado--media {
		grid-template-columns: 1.05fr 1fr;
		align-items: center;
	}
}

/* Diagrama "cómo funciona" (recuperación del agua) */
.diagrama-media {
	margin: var(--sp-lg) 0 0;
	border-radius: var(--r-xl);
	overflow: hidden;
	border: 1px solid var(--outline);
	background: #fff;
	box-shadow: var(--shadow-1);
}
.diagrama-media img {
	width: 100%;
	height: auto;
	display: block;
}
.diagrama-pasos {
	list-style: none;
	counter-reset: paso;
	margin: var(--sp-lg) 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-sm);
}
.diagrama-pasos li {
	counter-increment: paso;
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(19, 190, 232, 0.08);
	border: 1px solid rgba(19, 190, 232, 0.22);
	border-radius: var(--r-pill);
	padding: 8px 16px 8px 8px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--navy);
}
.diagrama-pasos li::before {
	content: counter(paso);
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--cyan);
	color: #fff;
	font-weight: 800;
	font-size: 0.8rem;
	flex-shrink: 0;
}

/* Loop de fotos reales del caso de éxito (cover, banda ancha) */
.galeria-caso {
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--shadow-2);
	margin-top: var(--sp-lg);
}
.galeria-caso .galeria-pista > figure {
	aspect-ratio: 4 / 3;
	padding: 0;
}
.galeria-caso .galeria-pista img {
	width: 100%;
	height: 100%;
	max-height: none;
	max-width: none;
	object-fit: cover;
}
@media (min-width: 768px) {
	.galeria-caso .galeria-pista > figure {
		aspect-ratio: 21 / 9;
	}
}

/* ===== Credencial de distribuidor / operación insignia ===== */
.credencial {
	--cd-cyan: #13bee8;
	--cd-cyan-soft: #8fe0f2;
	--cd-navy: #13294b;
	--cd-navy-deep: #0e1a2b;
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.75rem 1.1rem;
	border-radius: 8px;
	font-family: "Montserrat", system-ui, sans-serif;
	max-width: 100%;
}
.credencial__sello {
	flex: 0 0 auto;
	display: inline-flex;
	font-size: 2.25rem;
	line-height: 1;
}
.credencial__sello-svg {
	display: block;
}
.credencial__texto {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}
.credencial__linea {
	font-size: 0.7rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	font-weight: 600;
}
.credencial__linea--eyebrow {
	opacity: 0.85;
}
.credencial__marca {
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.15;
	white-space: nowrap;
}
@media (max-width: 420px) {
	.credencial__marca {
		white-space: normal;
	}
}
.credencial--b2b {
	background: linear-gradient(
			180deg,
			rgba(19, 190, 232, 0.08),
			rgba(19, 190, 232, 0.02)
		)
		var(--cd-navy-deep);
	border: 1px solid rgba(19, 190, 232, 0.35);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.credencial--b2b .credencial__sello {
	color: var(--cd-cyan);
}
.credencial--b2b .credencial__linea--eyebrow {
	color: var(--cd-cyan-soft);
}
.credencial--b2b .credencial__marca {
	color: #f4fbfd;
}

/* ===== Módulo de prueba: evidencia, no dashboard decorativo ===== */
.prueba-wrap {
	padding-top: 0;
}
.prueba {
	--pr-cyan: #13bee8;
	--pr-cyan-soft: #8fe0f2;
	--pr-navy: #13294b;
	--pr-navy-deep: #0e1a2b;
	font-family: "Montserrat", system-ui, sans-serif;
	padding: 1.5rem 1.25rem;
	border-radius: 10px;
}
.prueba__cabecera {
	margin-bottom: 1.25rem;
	text-align: left;
}
.prueba__kicker {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.prueba__titulo {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	max-width: 42ch;
}
.prueba__lista {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
}
.prueba__item {
	display: flex;
	flex-direction: column;
	padding: 0.9rem 0;
	border-top: 1px dashed rgba(19, 190, 232, 0.3);
}
.prueba__item:last-child {
	border-bottom: 1px dashed rgba(19, 190, 232, 0.3);
}
.prueba__valor {
	order: 1;
}
.prueba__etiqueta {
	order: 2;
}
.prueba__contexto {
	order: 3;
}
.prueba__valor {
	margin: 0;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.01em;
}
.prueba__signo,
.prueba__unidad {
	font-size: 1rem;
	font-weight: 700;
	margin-left: 0.15rem;
	vertical-align: super;
}
.prueba__unidad {
	vertical-align: baseline;
	font-size: 1.15rem;
	margin-left: 0.3rem;
}
.prueba__etiqueta {
	margin: 0.15rem 0 0;
	font-size: 0.85rem;
	font-weight: 600;
}
.prueba__contexto {
	margin: 0.35rem 0 0;
	font-size: 0.75rem;
	font-weight: 400;
	opacity: 0.75;
}
@media (min-width: 720px) {
	.prueba__lista {
		grid-template-columns: repeat(4, 1fr);
	}
	.prueba__item {
		border-top: none;
		border-left: 1px dashed rgba(19, 190, 232, 0.3);
		padding: 0 1.5rem;
	}
	.prueba__item:first-child {
		border-left: none;
		padding-left: 0;
	}
	.prueba__item:last-child {
		border-bottom: none;
	}
}
.prueba--b2b {
	background: var(--pr-navy-deep);
	border: 1px solid rgba(19, 190, 232, 0.25);
}
.prueba--b2b .prueba__kicker {
	color: var(--pr-cyan);
}
.prueba--b2b .prueba__titulo {
	color: #f4fbfd;
}
.prueba--b2b .prueba__valor {
	color: #ffffff;
}
.prueba--b2b .prueba__signo,
.prueba--b2b .prueba__unidad {
	color: var(--pr-cyan-soft);
}
.prueba--b2b .prueba__etiqueta {
	color: var(--pr-cyan-soft);
}
.prueba--b2b .prueba__contexto {
	color: #c7d6e6;
}
