/**
 * Landings de servicio (desvare, recarga).
 *
 * Se apoya en el design system de home.css. Aquí solo van los bloques
 * propios de estas páginas: cinturón de datos, pasos, tabla de tiempos,
 * síntomas y el slot de imagen pendiente.
 *
 * @package CarBatteryChild
 */

/* ============================================================
   Slot de imagen pendiente de elegir
   ============================================================ */

.cb-slot-imagen {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	aspect-ratio: 1 / 1;
	padding: 2rem;
	border: 2px dashed rgba(255, 255, 255, 0.35);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.04);
	text-align: center;
}

.cb-slot-imagen__marca {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cb-slot-imagen__nota {
	max-width: 22ch;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	line-height: 1.5;
}

.cb-hero__image-wrapper--framed {
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cb-hero__image-wrapper--framed .cb-hero__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* ============================================================
   Cinturón de datos del servicio
   ============================================================ */

.cb-datos-bar {
	padding: 2rem 0;
	border-bottom: 1px solid #e2e8f0;
	background: #ffffff;
	box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

.cb-datos-bar__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.cb-dato {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid #f1f5f9;
	border-radius: 12px;
	background: #f8fafc;
}

/* Los iconos de la cinta son SVG inline: los emoji los convertia
 WordPress en imagenes servidas desde s.w.org, un CDN externo. */
.cb-dato__icono svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cb-dato__icono--azul { color: #2563eb; }
.cb-dato__icono--verde { color: #16a34a; }
.cb-dato__icono--naranja { color: #ea580c; }
.cb-dato__icono--morado { color: #9333ea; }

.cb-dato__icono {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	border-radius: 10px;
	font-size: 1.5rem;
}

.cb-dato__icono--azul {
	background: #eff6ff;
}

.cb-dato__icono--verde {
	background: #f0fdf4;
}

.cb-dato__icono--naranja {
	background: #fff7ed;
}

.cb-dato__icono--morado {
	background: #faf5ff;
}

.cb-dato__valor {
	display: block;
	margin-bottom: 0.2rem;
	color: #0f172a;
	font-size: 1.1rem;
	line-height: 1.25;
}

.cb-dato__texto {
	color: #64748b;
	font-size: 0.875rem;
	line-height: 1.45;
}

/* ============================================================
   Pasos del servicio
   ============================================================ */

.cb-pasos {
	padding: 4rem 0;
	background: #ffffff;
}

.cb-pasos__header,
.cb-tiempos__header,
.cb-sintomas__header {
	max-width: 760px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.cb-pasos .cb-pasos__header h2.cb-pasos__title,
.cb-tiempos .cb-tiempos__header h2.cb-tiempos__title,
.cb-sintomas .cb-sintomas__header h2.cb-sintomas__title {
	margin: 0 0 0.75rem;
	color: #0f172a;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.25;
}

.cb-pasos__description,
.cb-tiempos__description,
.cb-sintomas__description {
	margin: 0;
	color: #64748b;
	font-size: 1rem;
	line-height: 1.6;
}

.cb-pasos__lista {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.cb-paso {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1rem;
	padding: 1.5rem;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cb-paso:hover {
	transform: translateY(-2px);
	border-color: #bfdbfe;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.cb-paso__numero {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 0.85rem;
	font-weight: 700;
}

.cb-pasos .cb-paso h3.cb-paso__titulo {
	margin: 0 0 0.4rem;
	color: #0f172a;
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.35;
}

.cb-paso__texto {
	margin: 0;
	color: #475569;
	font-size: 0.9rem;
	line-height: 1.6;
}

/* ============================================================
   Tabla de tiempos por zona
   ============================================================ */

.cb-tiempos {
	padding: 4rem 0;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border-top: 1px solid #e2e8f0;
}

.cb-tiempos__tabla-wrap {
	max-width: 760px;
	margin: 0 auto;
	overflow-x: auto;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.cb-tiempos__tabla {
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.cb-tiempos__tabla th,
.cb-tiempos__tabla td {
	padding: 0.9rem 1.25rem;
	border-bottom: 1px solid #e2e8f0;
	text-align: left;
}

.cb-tiempos__tabla thead th {
	background: #eef2f7;
	color: #0f172a;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cb-tiempos__tabla tbody tr:last-child th,
.cb-tiempos__tabla tbody tr:last-child td {
	border-bottom: 0;
}

.cb-tiempos__tabla tbody th {
	color: #0f172a;
	font-weight: 600;
}

.cb-tiempos__tabla tbody th a {
	color: #1d4ed8;
	text-decoration: none;
	font-weight: 600;
}

.cb-tiempos__tabla tbody th a:hover,
.cb-tiempos__tabla tbody th a:focus-visible {
	color: #ea580c;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cb-tiempos__tabla tbody td {
	color: #475569;
	white-space: nowrap;
}

/* ============================================================
   Síntomas: batería, alternador o mixto
   ============================================================ */

.cb-sintomas {
	padding: 4rem 0;
	background: #ffffff;
}

.cb-sintomas__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.25rem;
}

.cb-sintoma {
	padding: 1.5rem;
	border: 1px solid #e2e8f0;
	border-left-width: 4px;
	border-radius: 12px;
	background: #f8fafc;
}

.cb-sintoma--bateria {
	border-left-color: #2563eb;
}

.cb-sintoma--alternador {
	border-left-color: #ea580c;
}

.cb-sintoma--mixto {
	border-left-color: #9333ea;
}

.cb-sintomas .cb-sintoma h3.cb-sintoma__titulo {
	margin: 0 0 0.5rem;
	color: #0f172a;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
}

.cb-sintoma__texto {
	margin: 0;
	color: #475569;
	font-size: 0.9rem;
	line-height: 1.6;
}

.cb-sintomas__nota {
	max-width: 760px;
	margin: 2rem auto 0;
	padding: 1.15rem 1.35rem;
	border: 1px solid #bfdbfe;
	border-radius: 12px;
	background: #eff6ff;
	color: #1e3a8a;
	font-size: 0.95rem;
	line-height: 1.6;
	text-align: center;
}

/* ============================================================
   ¿Se puede rodar el carro?
   ============================================================ */

.cb-rodar,
.cb-casos {
	padding: 4rem 0;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	border-top: 1px solid #e2e8f0;
}

.cb-rodar__header,
.cb-casos__header {
	max-width: 760px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.cb-rodar .cb-rodar__header h2.cb-rodar__title,
.cb-casos .cb-casos__header h2.cb-casos__title {
	margin: 0 0 0.75rem;
	color: #0f172a;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.25;
}

.cb-rodar__description,
.cb-casos__description {
	margin: 0;
	color: #64748b;
	font-size: 1rem;
	line-height: 1.6;
}

.cb-rodar__grid,
.cb-casos__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.25rem;
}

.cb-rodar-card,
.cb-caso {
	padding: 1.75rem;
	border: 1px solid #e2e8f0;
	border-top-width: 4px;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.cb-rodar-card--si,
.cb-caso--si {
	border-top-color: #16a34a;
}

.cb-rodar-card--no,
.cb-caso--no {
	border-top-color: #dc2626;
}

.cb-rodar-card__encabezado,
.cb-caso__encabezado {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.cb-rodar .cb-rodar-card h3.cb-rodar-card__caja,
.cb-casos .cb-caso h3.cb-caso__titulo {
	margin: 0;
	color: #0f172a;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.3;
}

.cb-rodar-card__veredicto,
.cb-caso__veredicto {
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.cb-rodar-card--si .cb-rodar-card__veredicto,
.cb-caso--si .cb-caso__veredicto {
	background: #f0fdf4;
	color: #15803d;
}

.cb-rodar-card--no .cb-rodar-card__veredicto,
.cb-caso--no .cb-caso__veredicto {
	background: #fef2f2;
	color: #b91c1c;
}

.cb-rodar-card__texto,
.cb-caso__texto {
	margin: 0;
	color: #475569;
	font-size: 0.92rem;
	line-height: 1.65;
}

.cb-rodar__aviso,
.cb-casos__aviso {
	max-width: 820px;
	margin: 2rem auto 0;
	padding: 1.25rem 1.5rem;
	border: 1px solid #fed7aa;
	border-radius: 12px;
	background: #fff7ed;
	color: #7c2d12;
	font-size: 0.93rem;
	line-height: 1.65;
}

/* Estado intermedio: el problema no está donde el cliente cree. */

.cb-caso--parcial {
	border-top-color: #ea580c;
}

.cb-caso--parcial .cb-caso__veredicto {
	background: #fff7ed;
	color: #c2410c;
}

/* ============================================================
   Batería suelta para cargar en la sede
   ============================================================ */

.cb-suelta {
	padding: 0 0 4rem;
	background: #ffffff;
}

.cb-suelta__caja {
	max-width: 860px;
	margin: 0 auto;
	padding: 2.25rem 2.5rem;
	border: 1px solid #bfdbfe;
	border-radius: 16px;
	background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.cb-suelta .cb-suelta__caja h2.cb-suelta__title {
	margin: 0 0 0.75rem;
	color: #0f172a;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.3;
}

.cb-suelta__texto {
	margin: 0 0 1.5rem;
	color: #475569;
	font-size: 0.98rem;
	line-height: 1.65;
}

/* ============================================================
   Tarjetas de marca enlazadas a su categoría
   ============================================================ */

.cb-brand-card__link {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.cb-brand-card--enlazada {
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cb-brand-card--enlazada:hover,
.cb-brand-card--enlazada:focus-within {
	transform: translateY(-2px);
	border-color: #bfdbfe;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.10);
}

.cb-brand-card--enlazada:focus-within {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

.cb-brand-card--enlazada:hover .cb-brand-card__name {
	color: #1d4ed8;
}

/* ============================================================
   Responsivo
   ============================================================ */

@media (max-width: 768px) {
	.cb-pasos,
	.cb-tiempos,
	.cb-sintomas {
		padding: 2.75rem 0;
	}

	.cb-pasos .cb-pasos__header h2.cb-pasos__title,
	.cb-tiempos .cb-tiempos__header h2.cb-tiempos__title,
	.cb-sintomas .cb-sintomas__header h2.cb-sintomas__title {
		font-size: 1.5rem;
	}

	.cb-datos-bar__grid {
		grid-template-columns: 1fr;
		gap: 0.875rem;
	}

	.cb-rodar {
		padding: 2.75rem 0;
	}

	.cb-rodar .cb-rodar__header h2.cb-rodar__title,
	.cb-casos .cb-casos__header h2.cb-casos__title {
		font-size: 1.5rem;
	}

	.cb-suelta__caja {
		padding: 1.75rem 1.5rem;
	}

	.cb-suelta .cb-suelta__caja h2.cb-suelta__title {
		font-size: 1.35rem;
	}

	.cb-tiempos__tabla th,
	.cb-tiempos__tabla td {
		padding: 0.75rem 1rem;
	}
}

/* ============================================================
   Archivo de etiqueta de vehículo
   ============================================================ */

.cb-products__vacio {
	max-width: 620px;
	margin: 0 auto;
	padding: 1.5rem;
	border: 1px dashed #cbd5e1;
	border-radius: 12px;
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.6;
	text-align: center;
}

.cb-vehiculo-texto {
	padding: 4rem 0;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border-top: 1px solid #e2e8f0;
}

.cb-vehiculo-texto__caja {
	max-width: 820px;
	margin: 0 auto;
}

.cb-vehiculo-texto .cb-vehiculo-texto__caja h2.cb-vehiculo-texto__title {
	margin: 0 0 1.25rem;
	color: #0f172a;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.25;
}

.cb-vehiculo-texto__cuerpo {
	color: #475569;
	font-size: 1rem;
	line-height: 1.75;
}

.cb-vehiculo-texto__cuerpo p {
	margin: 0 0 1rem;
}

.cb-vehiculo-texto__cuerpo p:last-child {
	margin-bottom: 0;
}

.cb-vehiculo-texto__cuerpo a {
	color: #1d4ed8;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cb-vehiculo-texto .cb-vehiculo-texto__cuerpo h2,
.cb-vehiculo-texto .cb-vehiculo-texto__cuerpo h3 {
	margin: 1.75rem 0 0.75rem;
	color: #0f172a;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.cb-vehiculo-texto {
		padding: 2.75rem 0;
	}

	.cb-vehiculo-texto .cb-vehiculo-texto__caja h2.cb-vehiculo-texto__title {
		font-size: 1.5rem;
	}
}

/* ============================================================
   Hero de vehículo (cb-vhero)

   Sustituye al hero anterior, que cargaba una foto de fondo de 60 KB más un
   overlay PNG de 12 KB por CSS: peso decorativo que no se puede diferir y
   que compite con la única imagen que sí aporta. Aquí el ambiente lo dan un
   gradiente y dos focos de luz, que no pesan nada.
   ============================================================ */

.cb-vhero {
	position: relative;
	overflow: hidden;
	padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
	background: linear-gradient(155deg, #151257 0%, #1e1b4b 45%, #0f172a 100%);
	color: #ffffff;
	isolation: isolate;
}

.cb-vhero__fondo {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 82% 18%, rgba(234, 88, 12, 0.28), transparent 42%),
		radial-gradient(circle at 8% 78%, rgba(37, 99, 235, 0.30), transparent 45%),
		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: auto, auto, 46px 46px, 46px 46px;
	-webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 55%, transparent 100%);
	mask-image: radial-gradient(ellipse at 50% 40%, #000 55%, transparent 100%);
}

.cb-vhero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}

.cb-vhero__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1.25rem;
	padding: 0.45rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.82rem;
	font-weight: 600;
}

.cb-vhero__pill-icono svg {
	display: block;
	width: 15px;
	height: 15px;
	fill: #fb923c;
}

.cb-vhero .cb-vhero__contenido h1.cb-vhero__titulo {
	margin: 0 0 0.85rem;
	color: #ffffff;
	font-size: clamp(2rem, 3.6vw, 2.9rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.1;
	text-wrap: balance;
}

.cb-vhero__bajada {
	max-width: 52ch;
	margin: 0 0 1.5rem;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.02rem;
	line-height: 1.6;
}

.cb-vhero__bajada strong {
	color: #fdba74;
	font-weight: 700;
}

/* El precio lo imprime WooCommerce con su propio marcado. */
.cb-vhero__bajada .woocommerce-Price-amount {
	color: #ffffff;
	font-weight: 700;
	white-space: nowrap;
}

/*
 * El naranja solido esta reservado al boton principal: si otro elemento lo
 * usa como relleno, compiten por la atencion y el CTA pierde. Aqui el
 * bloque se distingue por el filo naranja de la izquierda y por la
 * tipografia, no por el color de fondo.
 */
.cb-vhero__permuta {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	max-width: 30rem;
	margin: 0 0 1.5rem;
	padding: 1rem 1.15rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-left: 3px solid #ea580c;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(8px);
}

.cb-vhero__permuta-etiqueta {
	flex-shrink: 0;
	padding: 0.22rem 0.6rem;
	border: 1px solid rgba(251, 146, 60, 0.55);
	border-radius: 999px;
	background: transparent;
	color: #fdba74;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cb-vhero__permuta-texto {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	line-height: 1.5;
}

.cb-vhero__permuta-texto strong {
	color: #ffffff;
	font-weight: 800;
}

.cb-vhero__ventajas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.5rem;
	margin: 0 0 1.75rem;
	padding: 0;
	list-style: none;
}

.cb-vhero__ventaja {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.92rem;
	font-weight: 500;
}

.cb-vhero__check {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(34, 197, 94, 0.22);
}

.cb-vhero__check svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke: #4ade80;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cb-vhero__acciones {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 1.35rem;
}

.cb-vhero__prueba {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.88rem;
}

.cb-vhero__estrella {
	color: #fbbf24;
	font-size: 1rem;
}

.cb-vhero__separador {
	color: rgba(255, 255, 255, 0.35);
}

.cb-vhero__marco {
	position: relative;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 26px 60px rgba(3, 7, 18, 0.5);
	overflow: hidden;
}

.cb-vhero__imagen {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.cb-vhero__badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	padding: 0.55rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.72);
	backdrop-filter: blur(10px);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.82rem;
	font-weight: 600;
}

.cb-vhero__badge strong {
	color: #fdba74;
	font-size: 1.05rem;
	font-weight: 800;
}

.cb-vhero__tarjetas {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.85rem;
	margin-top: 0.85rem;
}

.cb-vhero__tarjeta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(8px);
}

.cb-vhero__tarjeta-icono {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 10px;
	background: rgba(234, 88, 12, 0.2);
}

.cb-vhero__tarjeta-icono svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: #fdba74;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cb-vhero__tarjeta-texto {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.82rem;
	line-height: 1.35;
}

.cb-vhero__tarjeta-titulo {
	display: block;
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 700;
}

@media (max-width: 900px) {
	.cb-vhero__grid {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}

	.cb-vhero__visual {
		order: -1;
	}
}

@media (max-width: 620px) {
	.cb-vhero__acciones {
		flex-direction: column;
		align-items: stretch;
	}

	.cb-vhero__permuta {
		flex-direction: column;
		gap: 0.6rem;
	}
}

/* La descripcion del termino trae tabla de compatibilidad y encabezados
   propios. Se les da el mismo lenguaje visual que a la tabla de tiempos. */

.cb-vehiculo-texto__cuerpo table {
	width: 100%;
	margin: 1.5rem 0;
	border-collapse: collapse;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	font-size: 0.93rem;
	overflow: hidden;
}

.cb-vehiculo-texto__cuerpo th,
.cb-vehiculo-texto__cuerpo td {
	padding: 0.8rem 1.1rem;
	border-bottom: 1px solid #e2e8f0;
	text-align: left;
	vertical-align: top;
}

.cb-vehiculo-texto__cuerpo thead th {
	background: #eef2f7;
	color: #0f172a;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.cb-vehiculo-texto__cuerpo tbody tr:last-child th,
.cb-vehiculo-texto__cuerpo tbody tr:last-child td {
	border-bottom: 0;
}

.cb-vehiculo-texto__cuerpo tbody td:first-child {
	color: #0f172a;
	font-weight: 600;
}

/* En movil la tabla scrollea dentro de su caja, nunca la pagina. */
.cb-vehiculo-texto__cuerpo {
	overflow-x: auto;
}

/* ============================================================
   Ficha técnica aproximada del vehículo.

   Reemplaza las tablas que se escribían a mano dentro de la descripción
   del término. Aquellas no tenían una sola regla propia: heredaban los
   estilos por defecto del tema y quedaban en 294 px, apretadas contra
   el borde de la columna.
   ============================================================ */

.cb-ficha {
	padding: clamp(56px, 6vw, 80px) 0;
	background: var(--cb-white, #fff);
}

.cb-ficha__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: stretch;
}

.cb-ficha__title {
	margin: 0;
	color: var(--cb-primary, #151257);
	font-size: clamp(1.7rem, 2.8vw, 2.3rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.18;
	text-wrap: balance;
}

.cb-ficha__nota {
	margin: 16px 0 0;
	color: #5b6270;
	font-size: 0.93rem;
	line-height: 1.7;
}

.cb-ficha__tabla {
	width: 100%;
	height: 100%;
	border: 1px solid rgba(21, 18, 87, 0.1);
	border-radius: 18px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(21, 18, 87, 0.045);
}

.cb-ficha__tabla tr:nth-child(odd) {
	background: rgba(21, 18, 87, 0.022);
}

.cb-ficha__tabla th,
.cb-ficha__tabla td {
	padding: 16px 24px;
	border: 0;
	border-bottom: 1px solid rgba(21, 18, 87, 0.07);
	font-size: 0.93rem;
	line-height: 1.55;
	text-align: left;
	vertical-align: middle;
}

.cb-ficha__tabla tr:last-child th,
.cb-ficha__tabla tr:last-child td {
	border-bottom: 0;
}

.cb-ficha__tabla th {
	width: 42%;
	color: #5b6270;
	font-weight: 600;
}

.cb-ficha__tabla td {
	color: var(--cb-primary, #151257);
	font-weight: 700;
}

@media (max-width: 860px) {
	.cb-ficha__layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.cb-ficha__tabla th {
		width: 46%;
	}
}

/* ------------------------------------------------------------
   Tablas heredadas dentro del texto del término.

   Las 44 etiquetas que aún no migran traen su tabla escrita a mano
   dentro de la descripción, con la clase tabla-bateria o sin ninguna.
   No tenían estilo propio y se apoyaban en lo que trajera el tema.
   Se les da el mismo aspecto que a la ficha para que ninguna se vea
   rota mientras se decide si migrarlas.
   ------------------------------------------------------------ */

.cb-vehiculo-texto__cuerpo table {
	width: 100%;
	margin: 28px 0;
	border: 1px solid rgba(21, 18, 87, 0.1);
	border-radius: 18px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(21, 18, 87, 0.045);
}

.cb-vehiculo-texto__cuerpo table th,
.cb-vehiculo-texto__cuerpo table td {
	padding: 14px 20px;
	border: 0;
	border-bottom: 1px solid rgba(21, 18, 87, 0.07);
	font-size: 0.93rem;
	line-height: 1.5;
	text-align: left;
	vertical-align: top;
}

/* El encabezado de estas tablas viene con colspan y hace de título. */
.cb-vehiculo-texto__cuerpo table thead th {
	background: rgba(21, 18, 87, 0.045);
	color: var(--cb-primary, #151257);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.cb-vehiculo-texto__cuerpo table tbody tr:nth-child(odd) {
	background: rgba(21, 18, 87, 0.022);
}

.cb-vehiculo-texto__cuerpo table tbody tr:last-child th,
.cb-vehiculo-texto__cuerpo table tbody tr:last-child td {
	border-bottom: 0;
}

.cb-vehiculo-texto__cuerpo table tbody td:first-child {
	width: 42%;
	color: #5b6270;
	font-weight: 600;
}

.cb-vehiculo-texto__cuerpo table tbody td:last-child {
	color: var(--cb-primary, #151257);
	font-weight: 700;
}

@media (max-width: 620px) {
	.cb-vehiculo-texto__cuerpo table th,
	.cb-vehiculo-texto__cuerpo table td {
		padding: 12px 14px;
		font-size: 0.87rem;
	}
}

/* Pasos para identificar la batería actual, en la columna de la ficha. */

.cb-ficha__pasos {
	margin: 30px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: cb-paso;
}

.cb-ficha__paso {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding: 16px 0;
	border-top: 1px solid rgba(21, 18, 87, 0.08);
}

.cb-ficha__paso:first-child {
	border-top: 0;
	padding-top: 0;
}

.cb-ficha__paso-icono {
	display: grid;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 59, 18, 0.09);
	color: var(--cb-accent, #ff3b12);
	place-items: center;
}

.cb-ficha__paso-icono svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

/* El número refuerza que es una secuencia, no una lista suelta. */
.cb-ficha__paso strong {
	display: block;
	color: var(--cb-primary, #151257);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.4;
}

.cb-ficha__paso strong::before {
	counter-increment: cb-paso;
	content: counter(cb-paso) ". ";
	color: var(--cb-accent, #ff3b12);
}

.cb-ficha__paso p {
	margin: 5px 0 0;
	color: #5b6270;
	font-size: 0.87rem;
	line-height: 1.6;
}

@media (max-width: 860px) {
	.cb-ficha__tabla {
		height: auto;
	}
}

/* ------------------------------------------------------------
   Hero de las etiquetas sin foto.

   Son 120 de las 171. Antes se dibujaba un recuadro punteado que anunciaba
   la ausencia de la imagen; ahora el marco no existe y el hero se centra
   con lo que sí tiene. Las tarjetas de instalación y revisión pasan a ser
   una fila bajo el texto, en vez de una columna al lado de un hueco.
   ------------------------------------------------------------ */

.cb-vhero--sin-imagen .cb-vhero__grid {
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
	max-width: 780px;
	margin-inline: auto;
	text-align: center;
}

.cb-vhero--sin-imagen .cb-vhero__bajada,
.cb-vhero--sin-imagen .cb-vhero__permuta-texto {
	margin-inline: auto;
}

.cb-vhero--sin-imagen .cb-vhero__acciones,
.cb-vhero--sin-imagen .cb-vhero__prueba {
	justify-content: center;
}

.cb-vhero--sin-imagen .cb-vhero__permuta {
	margin-inline: auto;
	text-align: left;
}

.cb-vhero--sin-imagen .cb-vhero__visual {
	width: 100%;
}

.cb-vhero--sin-imagen .cb-vhero__tarjetas {
	justify-content: center;
}
