/* ===================================================================
   Innova Car Wash — DS v3 "Máquina de visitas"
   Mobile-first (base 360px). Solo min-width: 480 / 600 / 768 / 1024.
   CERO max-width en este archivo. Tokens en tokens.css.
=================================================================== */

/* ===================================================================
   1. RESET + BASE + .wrap
=================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}
[id] {
	scroll-margin-top: calc(var(--header-h) + 8px);
}
body {
	font-family: var(--font);
	color: var(--on-surface);
	background: var(--surface);
	line-height: 1.6;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	/* espacio para sticky CTA */
	padding-bottom: 57px;
}
@media (min-width: 768px) {
	body {
		padding-bottom: 88px;
	}
}
body.nav-abierta {
	overflow: hidden;
}
img,
svg,
iframe {
	display: block;
	max-width: 100%;
}
img {
	height: auto;
}
a {
	color: var(--cyan-text);
	text-decoration: none;
}
:focus-visible {
	outline: 3px solid var(--cyan);
	outline-offset: 2px;
	border-radius: var(--r-sm);
}
.wrap {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 var(--sp-md);
	width: 100%;
}
@media (min-width: 768px) {
	.wrap {
		padding: 0 var(--sp-lg);
	}
}
.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--navy);
	color: #fff;
	padding: var(--sp-sm) var(--sp-md);
	border-radius: 0 0 var(--r-md) 0;
}
.skip:focus {
	left: 0;
}

/* ===================================================================
   2. TIPOGRAFÍA
=================================================================== */
h1,
h2,
h3 {
	line-height: 1.15;
	color: var(--navy);
	margin: 0 0 var(--sp-md);
}
h1 {
	font-size: clamp(1.9rem, 7vw, 3.4rem);
	font-weight: 800;
	text-wrap: balance;
}
h2 {
	font-size: clamp(1.4rem, 4vw, 2.2rem);
	font-weight: 700;
	text-wrap: balance;
}
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);
}
.accent {
	color: var(--cyan-soft);
}

/* ===================================================================
   3. HEADER STICKY (.hdr)
=================================================================== */
.hdr {
	position: sticky;
	top: 0;
	z-index: 50;
	/* Navy de marca SÓLIDO: sin transparencia -> ya no se enluda a gris sobre secciones claras.
	   backdrop-filter se conserva (aunque invisible bajo el sólido) porque es el containing block
	   del menú móvil .hdr__nav (position:fixed) — quitarlo rompería su altura 100dvh. */
	background: linear-gradient(180deg, #13294b 0%, #0e1a2b 100%);
	backdrop-filter: blur(20px) saturate(1.3);
	-webkit-backdrop-filter: blur(20px) saturate(1.3);
	border-bottom: 1px solid color-mix(in srgb, var(--cyan) 30%, transparent);
	box-shadow: 0 8px 24px -14px rgba(0, 0, 0, 0.55);
}
@supports not (background: color-mix(in srgb, red, blue)) {
	.hdr {
		border-bottom-color: rgba(19, 190, 232, 0.3);
	}
}
.hdr__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
	gap: var(--sp-md);
}
.hdr__logo {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	flex-shrink: 1;
}
.hdr__logo img {
	height: 30px;
	width: auto;
}
@media (min-width: 1024px) {
	.hdr__logo img {
		height: 38px;
	}
}
/* Nav móvil: hoja dvh bajo el header */
.hdr__nav {
	display: none;
	position: fixed;
	inset: var(--header-h) 0 auto 0;
	height: calc(100vh - var(--header-h));
	height: calc(100dvh - var(--header-h));
	background: linear-gradient(170deg, #0e1a2b 0%, #13294b 100%);
	overflow-y: auto;
	overscroll-behavior: contain;
	flex-direction: column;
	align-items: stretch;
	padding: var(--sp-xl) var(--sp-lg) var(--sp-3xl);
	gap: var(--sp-xs);
	z-index: 49;
}
.hdr__nav.is-open {
	display: flex;
}
.hdr__nav a {
	display: block;
	padding: 16px var(--sp-sm);
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.01em;
	color: var(--on-dark);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-decoration: none;
}
.hdr__nav a:hover {
	color: var(--cyan-soft);
}
/* Botón WhatsApp en header: solo ≥768px (especificidad > .btn) */
.hdr__row .hdr__cta {
	display: none;
}
@media (min-width: 768px) {
	.hdr__row .hdr__cta {
		display: inline-flex;
		min-height: 38px;
		padding: 8px 18px;
		font-size: 0.88rem;
		font-weight: 700;
		letter-spacing: 0.02em;
		background: transparent;
		border: 1px solid rgba(127, 208, 232, 0.45);
		color: var(--cyan-soft);
		box-shadow: none;
	}
	.hdr__row .hdr__cta:hover {
		background: rgba(127, 208, 232, 0.12);
		border-color: var(--cyan-soft);
		transform: none;
	}
}
/* Burger 44×44 */
.hdr__burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 0;
	color: var(--on-dark);
	flex-shrink: 0;
}
.hdr__burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition:
		transform 180ms ease,
		opacity 180ms ease;
}
.hdr__burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hdr__burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.hdr__burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
/* Desktop: nav horizontal ≥1024px */
@media (min-width: 1024px) {
	.hdr__nav {
		display: flex;
		position: static;
		inset: auto;
		overflow: visible;
		flex-direction: row;
		align-items: center;
		gap: var(--sp-lg);
		padding: 0;
		background: none;
		height: auto;
	}
	.hdr__nav a {
		padding: var(--sp-sm) 2px;
		border-bottom: 2px solid transparent;
		font-size: 0.92rem;
		display: inline-block;
	}
	.hdr__nav a:hover {
		border-bottom-color: var(--cyan);
	}
	.hdr__burger {
		display: none;
	}
}

/* ===================================================================
   4. BOTONES
=================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-sm);
	min-height: 46px;
	padding: 13px 26px;
	border-radius: var(--r-pill);
	font-family: var(--font);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	border: 2px solid transparent;
	text-decoration: none;
	transition:
		transform 0.15s ease,
		box-shadow 0.2s ease,
		filter 0.15s ease;
	text-align: center;
}
.btn:hover {
	transform: translateY(-2px);
}
.btn:active {
	transform: translateY(0);
	filter: brightness(0.97);
}
.btn:focus-visible {
	outline: 3px solid var(--cyan-soft);
	outline-offset: 3px;
}
/* WhatsApp: verde de marca reconocible, fill limpio, sombra propia (sin gloss) */
.btn--wa {
	background: var(--wa);
	color: #05271a;
	font-weight: 800;
	letter-spacing: 0.01em;
	box-shadow: 0 8px 20px -6px rgba(37, 211, 102, 0.55);
}
.btn--wa:hover {
	background: #1fc65d;
	box-shadow: 0 12px 26px -6px rgba(37, 211, 102, 0.6);
}
/* Cómo llegar: cyan de marca, primario visual sobre el hero */
.btn--maps {
	background: var(--cyan);
	color: var(--navy-deep);
	font-weight: 800;
	letter-spacing: 0.01em;
	box-shadow: 0 8px 20px -6px rgba(19, 190, 232, 0.55);
}
.btn--maps:hover {
	background: #2ccdf3;
	box-shadow: 0 12px 26px -6px rgba(19, 190, 232, 0.6);
}
/* Ghost claro */
.btn--ghost {
	border-color: var(--cyan);
	color: var(--cyan-text);
	background: transparent;
}
.btn--ghost:hover {
	background: rgba(25, 118, 148, 0.07);
}
/* Ghost oscuro (sobre fondos dark) */
.btn--ghost-dark {
	border-color: var(--cyan-soft);
	color: var(--cyan-soft);
	background: transparent;
}
.btn--ghost-dark:hover {
	background: rgba(127, 208, 232, 0.12);
}
/* Tamaño grande */
.btn--lg {
	padding: 16px 32px;
	font-size: 1.05rem;
}

/* ===================================================================
   5. HERO VIDEO (.hero-v)
=================================================================== */
.hero-v {
	position: relative;
	overflow: hidden;
	background: var(--navy-deep);
	color: var(--on-dark);
}
.hero-v__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-v__media video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
}
/* Overlay gradiente navy sobre video */
.hero-v::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		160deg,
		rgba(14, 26, 43, 0.72) 0%,
		rgba(19, 41, 75, 0.55) 55%,
		rgba(10, 22, 38, 0.7) 100%
	);
	pointer-events: none;
}
.hero-v__inner {
	position: relative;
	z-index: 2;
	padding-top: var(--sp-3xl);
	padding-bottom: var(--sp-2xl);
}
@media (min-width: 768px) {
	.hero-v__inner {
		padding-top: var(--sp-4xl);
		padding-bottom: var(--sp-3xl);
	}
}
/* Tilt 3D: profundidad al puntero (cards de plan y servicios). JS setea --rx/--ry. */
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
	.mo-tilt3d {
		--rx: 0deg;
		--ry: 0deg;
		transform: perspective(1000px) 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;
	}
}
.hero-v h1 {
	color: #fff;
	max-width: 18ch;
}
.hero-v .lead {
	color: var(--on-dark-muted);
	max-width: 52ch;
}
/* Badge "Abierto AHORA": pill de vidrio con tracking fino */
.abierto {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #86efac;
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 7px 16px;
	border-radius: var(--r-pill);
	margin-bottom: var(--sp-lg);
}
.abierto__dot {
	width: 8px;
	height: 8px;
	background: #22c55e;
	border-radius: 50%;
	animation: pulso 1.8s ease-in-out infinite;
}
@keyframes pulso {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.4;
	}
}
/* CTAs hero: columna móvil / fila ≥480px */
.hero-v__cta {
	display: flex;
	flex-direction: column;
	gap: var(--sp-md);
	margin-top: var(--sp-xl);
}
.hero-v__cta .btn {
	width: 100%;
}
@media (min-width: 480px) {
	.hero-v__cta {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.hero-v__cta .btn {
		width: auto;
	}
}
/* Variante centrada */
.hero-v__cta--center {
	justify-content: center;
}

/* ===================================================================
   6. CREDENCIAL + MÓDULO DE PRUEBA (de-genérico del hero)
=================================================================== */
/* ----- Credencial de 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;
}
.credencial--b2c {
	background: #ffffff;
	border: 1px solid rgba(19, 41, 75, 0.12);
	border-left: 3px solid var(--cd-cyan);
	box-shadow: 0 2px 10px rgba(19, 41, 75, 0.08);
}
.credencial--b2c .credencial__sello {
	color: var(--cd-cyan);
}
.credencial--b2c .credencial__linea--eyebrow {
	color: var(--cd-navy);
	opacity: 0.6;
}
.credencial--b2c .credencial__marca {
	color: var(--cd-navy);
}
a.credencial {
	text-decoration: none;
}
a.credencial:focus-visible {
	outline: 2px solid var(--cd-cyan);
	outline-offset: 2px;
}
@media (prefers-reduced-motion: no-preference) {
	a.credencial {
		transition:
			transform 0.15s ease,
			box-shadow 0.15s ease;
	}
	a.credencial:hover {
		transform: translateY(-1px);
	}
	.credencial--b2c a.credencial:hover {
		box-shadow: 0 4px 16px rgba(19, 41, 75, 0.14);
	}
}

/* ----- Módulo de prueba: evidencia, no dashboard decorativo ----- */
.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: 32ch;
}
.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;
}
.prueba--b2c {
	background: #ffffff;
	border: 1px solid rgba(19, 41, 75, 0.12);
	box-shadow: 0 2px 12px rgba(19, 41, 75, 0.06);
}
.prueba--b2c .prueba__kicker {
	color: #0e7ea3;
}
.prueba--b2c .prueba__titulo {
	color: var(--pr-navy);
}
.prueba--b2c .prueba__valor {
	color: var(--pr-navy);
}
.prueba--b2c .prueba__signo,
.prueba--b2c .prueba__unidad {
	color: var(--pr-cyan);
}
.prueba--b2c .prueba__etiqueta {
	color: var(--pr-navy);
}
.prueba--b2c .prueba__contexto {
	color: rgba(19, 41, 75, 0.65);
}

/* ----- Colocación en el hero ----- */
.hero-v__inner .credencial {
	position: relative;
	z-index: 2;
	margin-top: var(--sp-lg);
}
.hero-v__prueba {
	position: relative;
	z-index: 2;
	padding-block: var(--sp-xl);
}
@media (min-width: 768px) {
	.hero-v__prueba {
		padding-block: var(--sp-2xl);
	}
}

/* ===================================================================
   7. PASOS (.steps)
=================================================================== */
.steps {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-xl);
	margin-top: var(--sp-xl);
}
@media (min-width: 768px) {
	.steps {
		grid-template-columns: repeat(3, 1fr);
	}
}
.steps li {
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
}
.steps__n {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--cyan-soft);
	font-weight: 800;
	font-size: 1.2rem;
	flex-shrink: 0;
}
.steps li h3 {
	margin-bottom: 0;
}
.steps li p {
	margin: 0;
	color: var(--on-surface-muted);
}

/* ===================================================================
   8. CARDS DE SERVICIOS (.cards / .card)
=================================================================== */
.cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-lg);
	margin-top: var(--sp-xl);
}
@media (min-width: 768px) {
	.cards {
		grid-template-columns: repeat(3, 1fr);
	}
}
.card {
	background: var(--surface-card);
	border: 1px solid var(--outline);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-1);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease;
}
.card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-2);
}
.card__media {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--surface);
}
.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.card__body {
	padding: var(--sp-lg);
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
}
.card__body h3 {
	margin-bottom: 0;
}
.card__body p {
	margin: 0;
	color: var(--on-surface-muted);
	font-size: 0.95rem;
	flex: 1;
}
.card__body .btn {
	margin-top: var(--sp-md);
	align-self: flex-start;
}
/* Tilt suave hover (con .mo-tilt de motion) */
.mo-tilt {
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}
.mo-tilt:hover {
	transform: perspective(800px) rotateY(2deg) rotateX(-1deg) translateY(-3px);
	box-shadow: var(--shadow-2);
}

/* ===================================================================
   9. BANDA PLAN (.plan-teaser) — dark aurora, sin precios
=================================================================== */
.plan-teaser {
	text-align: center;
	padding-block: var(--sp-3xl);
}
.plan-teaser h2 {
	color: #fff;
}
.plan-teaser .lead {
	color: var(--on-dark-muted);
	max-width: 56ch;
	margin: 0 auto var(--sp-xl);
}
@media (min-width: 768px) {
	.plan-teaser {
		padding-block: var(--sp-4xl);
	}
}

/* ===================================================================
   10. RESEÑAS (.reviews)
=================================================================== */
.reviews {
	display: flex;
	flex-direction: column;
	gap: var(--sp-xl);
	align-items: flex-start;
}
@media (min-width: 768px) {
	.reviews {
		flex-direction: row;
		align-items: center;
		gap: var(--sp-3xl);
	}
}
.reviews__score {
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
}
.reviews__num {
	font-size: clamp(3rem, 8vw, 5rem);
	font-weight: 800;
	color: var(--navy);
	line-height: 1;
}
.reviews__stars {
	font-size: 1.4rem;
	color: #f59e0b;
}
.reviews__count {
	font-size: 0.9rem;
	color: var(--on-surface-muted);
}
.reviews__cta {
	flex: 1;
}
.reviews__cta p {
	color: var(--on-surface-muted);
	max-width: 44ch;
}

/* ===================================================================
   11. UBICACIÓN (.loc)
=================================================================== */
.loc {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-xl);
	align-items: start;
}
@media (min-width: 768px) {
	.loc {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}
.loc__info {
	display: flex;
	flex-direction: column;
	gap: var(--sp-md);
}
.loc__addr {
	font-weight: 600;
	color: var(--navy);
	margin: 0;
}
.loc__hours {
	color: var(--on-surface-muted);
	margin: 0;
}
.loc__cta {
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
	margin-top: var(--sp-sm);
}
@media (min-width: 480px) {
	.loc__cta {
		flex-direction: row;
		flex-wrap: wrap;
	}
}
.loc__map iframe {
	aspect-ratio: 4 / 3;
	width: 100%;
	border: 0;
	border-radius: var(--r-lg);
}

/* ===================================================================
   12. BANDA CLEAN CAR (.cleancar-band)
=================================================================== */
.cleancar-band {
	border-top: 2px solid var(--cyan);
}
.cleancar-band__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-xl);
	align-items: center;
	padding-block: var(--sp-3xl);
}
@media (min-width: 768px) {
	.cleancar-band__grid {
		grid-template-columns: 1fr 1fr;
		padding-block: var(--sp-4xl);
	}
}
.cleancar-band figure {
	margin: 0;
}
.cleancar-band figure img {
	width: 100%;
	border-radius: var(--r-lg);
}
.cleancar-band h2 {
	color: #fff;
}
.cleancar-band .lead {
	color: var(--on-dark-muted);
}

/* ===================================================================
   13. FORMULARIO (.cita-form / .field)
=================================================================== */
.form-wrap {
	max-width: 640px;
}
.cita-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-md);
	margin-top: var(--sp-xl);
}
@media (min-width: 600px) {
	.cita-form {
		grid-template-columns: 1fr 1fr;
	}
}
.field {
	display: flex;
	flex-direction: column;
	gap: var(--sp-xs);
}
.field--full {
	grid-column: 1 / -1;
}
.field label {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--navy);
}
.field input,
.field select,
.field 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);
	color: var(--on-surface);
	transition:
		border-color 0.15s ease,
		box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--cyan);
	box-shadow: 0 0 0 3px rgba(25, 118, 148, 0.25);
}
.form-actions {
	grid-column: 1 / -1;
	display: flex;
	gap: var(--sp-md);
}
.form-status {
	grid-column: 1 / -1;
	font-weight: 600;
	display: none;
}
.form-status.is-loading {
	display: block;
	color: var(--on-surface-muted);
}
.form-status.is-error {
	display: block;
	color: var(--error);
}

/* ===================================================================
   14. STICKY CTA MÓVIL (.cta-sticky) + WA FLOAT
=================================================================== */
.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.9rem;
	text-decoration: none;
}
.cta-sticky .cta-maps {
	background: var(--cyan);
	color: var(--navy-deep);
}
.cta-sticky .cta-wa {
	background: var(--wa);
	color: #073b1c;
}
/* Desktop: barra flotante centrada en vez de banda a sangre */
@media (min-width: 768px) {
	.cta-sticky {
		left: 50%;
		right: auto;
		bottom: 16px;
		transform: translateX(-50%);
		width: min(460px, calc(100% - 32px));
		border: 1px solid var(--outline);
		border-radius: var(--r-lg);
		overflow: hidden;
		box-shadow: var(--shadow-2);
	}
}

/* ===================================================================
   15. FAQ / SECCIONES / FOOTER / FOCUS / REDUCED-MOTION
=================================================================== */

/* FAQ */
.faq {
	margin-top: var(--sp-xl);
}
.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;
	list-style: none;
}
.faq summary::-webkit-details-marker {
	display: none;
}
.faq summary::after {
	content: "+";
	float: right;
	font-weight: 800;
	color: var(--cyan-text);
}
.faq details[open] summary::after {
	content: "\2212";
}
.faq details[open] summary {
	margin-bottom: var(--sp-sm);
}
.faq details p {
	margin: 0;
	color: var(--on-surface-muted);
}

/* Secciones genéricas */
.sec {
	padding: var(--sp-2xl) 0;
}
@media (min-width: 768px) {
	.sec {
		padding: var(--sp-3xl) 0;
	}
}
.sec--alt {
	background: var(--surface-card);
}
.sec--dark {
	background: linear-gradient(
		125deg,
		var(--navy-deep) 0%,
		var(--navy) 55%,
		var(--navy-soft) 100%
	);
	color: var(--on-dark);
}
.sec--dark h2,
.sec--dark h3 {
	color: #fff;
}
.sec--dark .lead,
.sec--dark p {
	color: var(--on-dark-muted);
}
.sec--dark a:not(.btn) {
	color: var(--cyan-soft);
}

/* CTA final */
.cta-final {
	text-align: center;
}
.cta-final h2 {
	color: #fff;
}

/* Página de gracias */
.gracias {
	min-height: 60vh;
	display: flex;
	align-items: center;
}
.gracias .wrap {
	text-align: center;
}

/* Footer */
.ftr {
	background: var(--navy-deep);
	color: var(--on-dark-muted);
	padding: var(--sp-2xl) 0 var(--sp-lg);
}
.ftr__inner {
	display: flex;
	flex-direction: column;
	gap: var(--sp-xl);
}
@media (min-width: 768px) {
	.ftr__inner {
		flex-direction: row;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: var(--sp-2xl);
	}
}
.ftr__logo img {
	height: 36px;
	width: auto;
}
.ftr__nap {
	font-style: normal;
	font-size: 0.9rem;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ftr__nap p {
	margin: 0;
}
.ftr__nap a {
	color: var(--on-dark-muted);
}
.ftr__nap a:hover {
	color: var(--cyan-soft);
}
.ftr__social {
	display: flex;
	gap: var(--sp-md);
}
.ftr__social a {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-sm);
	color: var(--on-dark-muted);
	font-size: 0.9rem;
}
.ftr__social a:hover {
	color: var(--cyan-soft);
}
.ftr__brand {
	width: 100%;
	font-size: 0.85rem;
	margin: 0;
}
.ftr__brand a {
	color: var(--cyan-soft);
}
.ftr__copy {
	width: 100%;
	font-size: 0.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: var(--sp-lg);
	margin-top: var(--sp-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.abierto__dot {
		animation: none;
	}
	.btn,
	.card,
	.mo-tilt,
	.wa-float {
		transition: none;
	}
	.hdr__burger span {
		transition: none;
	}
}

/* ===== Membresías / Planes (sección #plan, fondo oscuro) ===== */
.plan-intro {
	max-width: 62ch;
}
.planes-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--sp-lg);
	margin-top: var(--sp-2xl);
}
@media (min-width: 820px) {
	.planes-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: stretch;
	}
}
.plan-card {
	position: relative;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: var(--sp-sm);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(127, 208, 232, 0.22);
	border-radius: var(--r-lg);
	padding: var(--sp-xl);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.plan-card--top {
	border-color: var(--cyan-soft);
	box-shadow:
		0 0 0 1px var(--cyan-soft),
		var(--shadow-glow);
}
@media (min-width: 820px) {
	.plan-card--top {
		transform: scale(1.04);
	}
}
.plan-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--cyan);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: var(--r-pill);
	white-space: nowrap;
}
.plan-card__name {
	margin: 0;
	color: #fff;
	font-size: 1.3rem;
}
.plan-card__price {
	margin: 0;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1;
	display: flex;
	align-items: baseline;
	gap: 2px;
}
.plan-card__cop {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--cyan-soft);
}
.plan-card__per {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--on-dark-muted);
}
.plan-card__hook {
	color: var(--on-dark-muted);
	margin: 0 0 var(--sp-sm);
}
.plan-card__list {
	list-style: none;
	margin: 0 0 var(--sp-lg);
	padding: 0;
	display: grid;
	gap: 8px;
	flex: 1;
}
.plan-card__list li {
	position: relative;
	padding-left: 26px;
	color: var(--on-dark);
	font-size: 0.94rem;
	line-height: 1.45;
}
.plan-card__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--cyan-soft);
	font-weight: 800;
}
.plan-card .btn {
	width: 100%;
	justify-content: center;
	margin-top: auto;
}
.plan-nota {
	text-align: center;
	color: var(--on-dark-muted);
	font-size: 0.82rem;
	margin-top: var(--sp-lg);
}

/* ===================================================================
   14. FOOTER LEGAL (.ftr__legal) + CONSENTIMIENTO (.field--check)
=================================================================== */
.ftr__legal {
	width: 100%;
	font-size: 0.8rem;
	line-height: 1.6;
	color: var(--on-dark-muted);
	display: grid;
	gap: 2px;
}
.ftr__legal p {
	margin: 0;
}
.ftr__legal a {
	color: var(--cyan-soft);
}
.ftr__legal a:hover,
.ftr__legal a:focus-visible {
	text-decoration: underline;
}
.field--check {
	flex-direction: row;
}
.field--check label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400;
	font-size: 0.88rem;
	line-height: 1.45;
	cursor: pointer;
}
.field--check input[type="checkbox"] {
	width: 18px;
	height: 18px;
	min-width: 18px;
	margin-top: 2px;
	accent-color: var(--cyan);
	cursor: pointer;
}
.field--check a {
	color: var(--cyan);
	font-weight: 600;
}
.field--check a:hover,
.field--check a:focus-visible {
	text-decoration: underline;
}

/* ===================================================================
   15. PÁGINA LEGAL (.sec--legal / .prosa)
=================================================================== */
.sec--legal {
	padding-block: var(--sp-2xl);
}
.prosa {
	max-width: 720px;
}
.prosa h1 {
	margin-bottom: var(--sp-lg);
}
.prosa h2 {
	margin-top: var(--sp-xl);
	margin-bottom: var(--sp-sm);
	font-size: 1.15rem;
	color: var(--navy);
}
.prosa p {
	line-height: 1.7;
	color: var(--on-surface);
	margin-bottom: var(--sp-md);
}
.prosa a {
	color: var(--cyan);
	font-weight: 600;
}
.prosa a:hover,
.prosa a:focus-visible {
	text-decoration: underline;
}
.prosa__volver {
	margin-top: var(--sp-xl);
}

/* ===================================================================
   16. RESPALDO REAL (.respaldo)
=================================================================== */
.respaldo__inner {
	max-width: 820px;
}
.respaldo__kicker {
	margin: 0 0 var(--sp-sm);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cyan-soft);
}
.respaldo__lista {
	list-style: none;
	padding: 0;
	margin: var(--sp-xl) 0 0;
	display: grid;
	gap: var(--sp-md);
}
@media (min-width: 720px) {
	.respaldo__lista {
		grid-template-columns: 1fr 1fr;
	}
}
.respaldo__lista li {
	position: relative;
	padding-left: 28px;
	color: var(--on-dark);
	line-height: 1.5;
	font-size: 0.95rem;
}
.respaldo__lista li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--cyan-soft);
	font-weight: 800;
}
.respaldo__lista strong {
	color: #f4fbfd;
}
.respaldo__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-lg);
	margin-top: var(--sp-xl);
}
.respaldo__legal {
	color: var(--cyan-soft);
	font-size: 0.9rem;
	font-weight: 600;
}
.respaldo__legal:hover,
.respaldo__legal:focus-visible {
	text-decoration: underline;
}
