/* ============================================================
   Teknify 2026 — main.css
   Dark tech theme · Paleta basada en identidad de marca
   ============================================================ */

:root {
	/* ── Fondos ─────────────────────────────────────────── */
	--tk-color-bg: #0A0F18;
	/* Midnight blue · fondo principal */
	--tk-color-bg-soft: #0D1520;
	/* Sección alternada */
	--tk-color-bg-card: #111827;
	/* Tarjetas */
	--tk-color-bg-input: #0D1520;
	/* Inputs del formulario */

	/* ── Texto ───────────────────────────────────────────── */
	--tk-color-dark: #FFFFFF;
	/* Títulos / texto fuerte */
	--tk-color-text: #CBD5E1;
	/* Cuerpo de texto */
	--tk-color-muted: #94A3B8;
	/* Texto secundario */

	/* ── Bordes ──────────────────────────────────────────── */
	--tk-color-border: #1E293B;

	/* ── Acentos de marca ────────────────────────────────── */
	--tk-color-primary: #00BFFF;
	/* Cyan · técnico / reparación */
	--tk-color-primary-dark: #0099CC;
	--tk-color-yellow: #FFE600;
	/* Amarillo eléctrico · domicilio */
	--tk-color-magenta: #FF00CC;
	/* Magenta · insumos / tintas */
	--tk-color-accent: #25D366;
	/* WhatsApp */
	--tk-color-star: #FFE600;

	/* ── Degradado espectro (línea divisoria de marca) ───── */
	--tk-gradient-spectrum: linear-gradient(90deg,
			#FFE600 0%, #00FF88 25%, #00BFFF 50%, #3366FF 75%, #FF00CC 100%);

	/* ── Layout ──────────────────────────────────────────── */
	--tk-radius: 14px;
	--tk-shadow: 0 4px 24px rgba(0, 0, 0, .4);
	--tk-shadow-lg: 0 14px 48px rgba(0, 0, 0, .55);
	--tk-container: 1180px;
	--tk-font: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont,
		'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	/* ── Mapa SVG ────────────────────────────────────────── */
	--tk-map-neutral: #1E3A5F;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--tk-font);
	color: var(--tk-color-text);
	background: var(--tk-color-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--tk-color-primary);
	text-decoration: none;
	transition: color .2s ease;
}

a:hover {
	color: var(--tk-color-primary-dark);
}

.tk-container {
	max-width: var(--tk-container);
	margin: 0 auto;
	padding: 0 24px;
}

.tk-skip-link {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

.tk-skip-link:focus {
	left: 16px;
	top: 16px;
	background: #000;
	color: #fff;
	padding: 8px 12px;
	z-index: 9999;
	border-radius: 6px;
}

/* ──────────────────── Línea espectro de marca ───────────────── */
.tk-spectrum {
	height: 3px;
	border: none;
	margin: 0;
	background: var(--tk-gradient-spectrum);
}

/* ──────────────────────── Header / Nav ─────────────────────── */
.tk-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 15, 24, .92);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--tk-color-border);
}

.tk-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

.tk-header__brand-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.tk-header__logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.tk-header__brand-name {
	font-size: 20px;
	font-weight: 800;
	color: var(--tk-color-dark);
	letter-spacing: -.01em;
}

.tk-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.tk-menu {
	list-style: none;
	display: flex;
	gap: 22px;
	padding: 0;
	margin: 0;
}

.tk-menu li {
	position: relative;
}

.tk-menu a {
	color: var(--tk-color-text);
	font-weight: 500;
	font-size: 15px;
	padding: 8px 2px;
}

.tk-menu a:hover,
.tk-menu .current-menu-item>a,
.tk-menu .current_page_item>a {
	color: var(--tk-color-primary);
}

.tk-menu .sub-menu {
	list-style: none;
	padding: 8px;
	margin: 0;
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 200px;
	background: var(--tk-color-bg-card);
	border: 1px solid var(--tk-color-border);
	border-radius: 12px;
	box-shadow: var(--tk-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: all .2s ease;
}

.tk-menu li:hover>.sub-menu,
.tk-menu li:focus-within>.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tk-menu .sub-menu a {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	color: var(--tk-color-text);
}

.tk-menu .sub-menu a:hover {
	background: var(--tk-color-bg-soft);
	color: var(--tk-color-dark);
}

.tk-nav__cta {
	display: inline-block;
	padding: 10px 18px;
	background: var(--tk-color-primary);
	color: #0A0F18 !important;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	transition: filter .2s ease;
}

.tk-nav__cta:hover {
	filter: brightness(1.1);
}

.tk-nav-toggle {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	width: 44px;
	height: 44px;
	padding: 0;
	position: relative;
}

.tk-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--tk-color-dark);
	margin: 5px auto;
	transition: all .25s ease;
}

.tk-nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.tk-nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.tk-nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 860px) {
	.tk-nav-toggle {
		display: inline-block;
	}

	.tk-nav {
		position: fixed;
		inset: 72px 0 0 0;
		z-index: 90;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--tk-color-bg-card);
		padding: 24px;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform .25s ease;
	}

	.tk-nav.is-open {
		transform: translateX(0);
	}

	.tk-menu {
		flex-direction: column;
		gap: 0;
	}

	.tk-menu>li {
		border-bottom: 1px solid var(--tk-color-border);
	}

	.tk-menu a {
		padding: 14px 0;
		display: block;
		font-size: 16px;
	}

	.tk-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding-left: 12px;
	}

	.tk-nav__cta {
		margin-top: 16px;
		text-align: center;
	}
}

/* ──────────────────────────── Hero ─────────────────────────── */
.tk-hero {
	position: relative;
	background: #0A0F18;
	color: #fff;
	overflow: hidden;
	padding: 0;
}

/* Imagen opcional de fondo */
.tk-hero[style*="--hero-bg"]::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--hero-bg) center/cover no-repeat;
	opacity: .12;
}

/* Orbs de luz */
.tk-hero__orbs {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
}

.tk-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	animation: tk-orb-float 10s ease-in-out infinite;
}

.tk-hero__orb--cyan {
	width: 600px;
	height: 600px;
	background: #00BFFF;
	opacity: .12;
	top: -200px;
	left: -150px;
	animation-delay: 0s;
}

.tk-hero__orb--magenta {
	width: 500px;
	height: 500px;
	background: #FF00CC;
	opacity: .10;
	bottom: -100px;
	right: -50px;
	animation-delay: -4s;
}

.tk-hero__orb--yellow {
	width: 350px;
	height: 350px;
	background: #FFE600;
	opacity: .07;
	top: 40%;
	right: 15%;
	animation-delay: -7s;
}

@keyframes tk-orb-float {

	0%,
	100% {
		transform: translateY(0) scale(1);
	}

	50% {
		transform: translateY(-40px) scale(1.06);
	}
}

/* Cuadrícula de fondo */
.tk-hero__grid {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
	background-size: 64px 64px;
}

/* Layout dos columnas */
.tk-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 56px;
}

/* Imagen izquierda */
.tk-hero__visual {
	flex: 0 0 auto;
	width: clamp(260px, 32vw, 460px);
	padding: 0px 0 40px 40px;
	transform: scale(1.3);
}

.tk-hero__printer-img {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 0 48px rgba(0, 191, 255, .35)) drop-shadow(0 24px 40px rgba(0, 0, 0, .5));
}

/* Contenido */
.tk-hero__body {
	flex: 1;
	min-width: 0;
	padding: 60px 0 0;
}

/* Badge pulsante */
.tk-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(0, 191, 255, .1);
	border: 1px solid rgba(0, 191, 255, .25);
	color: var(--tk-color-primary);
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.tk-hero__badge-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--tk-color-primary);
	flex-shrink: 0;
	animation: tk-pulse 2s ease-in-out infinite;
}

@keyframes tk-pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(0, 191, 255, .6);
	}

	50% {
		opacity: .8;
		transform: scale(1.2);
		box-shadow: 0 0 0 8px rgba(0, 191, 255, 0);
	}
}

/* Título */
.tk-hero__title {
	font-size: clamp(38px, 6vw, 72px);
	font-weight: 800;
	line-height: 1.05;
	margin: 0 0 20px;
	letter-spacing: -.03em;
	color: #fff;
}

/* Línea espectro bajo el título */
.tk-hero__spectrum-line {
	height: 4px;
	width: 200px;
	margin-bottom: 28px;
	background: var(--tk-gradient-spectrum);
	border-radius: 999px;
}

/* Subtítulo */
.tk-hero__sub {
	font-size: clamp(16px, 1.8vw, 19px);
	color: var(--tk-color-muted);
	margin: 0 0 40px;
	max-width: 580px;
	line-height: 1.7;
}

/* CTAs */
.tk-hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 56px;
}

/* Stats */
.tk-hero__stats {
	display: flex;
	align-items: center;
	gap: 0;
	border-top: 1px solid var(--tk-color-border);
	padding-top: 32px;
	padding-bottom: 56px;
	flex-wrap: wrap;
	gap: 0;
}

.tk-hero__stat {
	padding: 0 36px 0 0;
}

.tk-hero__stat:first-child {
	padding-left: 0;
}

.tk-hero__stat-value {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -.01em;
	line-height: 1.2;
}

.tk-hero__stat-label {
	display: block;
	font-size: 13px;
	color: var(--tk-color-muted);
	margin-top: 3px;
}

.tk-hero__stat-sep {
	width: 1px;
	height: 40px;
	background: var(--tk-color-border);
	margin-right: 36px;
	flex-shrink: 0;
}

/* Línea espectro inferior */
.tk-hero__bottom-spectrum {
	height: 3px;
	width: 100%;
	background: var(--tk-gradient-spectrum);
}

/* Hero secundario (páginas internas) */
.tk-hero--secondary {
	padding: 72px 0 56px;
	background: radial-gradient(ellipse at 50% 50%, #0D2040 0%, var(--tk-color-bg) 70%);
}

.tk-hero--secondary .tk-hero__orbs {
	display: none;
}

.tk-hero--secondary .tk-hero__grid {
	display: none;
}

.tk-hero--secondary .tk-hero__body {
	padding: 0;
	max-width: 100%;
}

.tk-hero--secondary .tk-hero__title {
	font-size: clamp(30px, 4vw, 46px);
	margin-bottom: 14px;
}

.tk-hero--secondary .tk-hero__subtitle {
	max-width: 640px;
	margin: 0;
	font-size: 17px;
	line-height: 1.6;
	color: var(--tk-color-muted);
}

/* Hero — Servicio a Domicilio (mapa SVG a la derecha) */
.tk-hero--domicilio {
	padding: 0 0 40px;
}

.tk-hero--domicilio .tk-hero__inner {
	gap: 20px;
	align-items: flex-start;
}

.tk-hero--domicilio .tk-map-legend {
	margin-top: 2px;
}

.tk-hero--domicilio .tk-comunas__note {
	margin-top: 4px;
	margin-bottom: 55px;
}

.tk-hero--domicilio .tk-hero__bottom-spectrum {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
}

.tk-hero--domicilio .tk-hero__title {
	font-size: clamp(30px, 4vw, 52px);
}

.tk-hero--domicilio .tk-hero__sub {
	font-size: clamp(14px, 1.4vw, 16px);
	max-width: 520px;
}

.tk-hero--domicilio .tk-hero__body {
	flex: 1 1 58%;
	min-width: 0;
	padding: 80px 0 40px;
}

.tk-hero__visual--map {
	flex: 1 1 42%;
	width: auto;
	max-width: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	padding: 40px 0;
}

.tk-hero__visual--map .tk-mapa-svg {
	width: 100%;
	max-width: 400px;
	filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .5));
}

/* Responsive */
@media (max-width: 768px) {
	.tk-hero__inner {
		flex-direction: column;
		gap: 0;
	}

	/* En mobile se ocultan los visuales del hero, incluido el mapa de cobertura. */
	.tk-hero__visual {
		display: none;
	}

	.tk-hero--domicilio .tk-hero__body {
		padding: 64px 0 0;
	}

	.tk-hero__body {
		padding-top: 24px;
	}

	/* Sobre Nosotros: descripción centrada solo en mobile. */
	.tk-hero--secondary .tk-hero__subtitle {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 640px) {
	.tk-hero__body {
		padding-top: 16px;
	}

	.tk-hero__stat-sep {
		display: none;
	}

	.tk-hero__stat {
		padding: 12px 0;
		flex: 1 1 45%;
	}

	.tk-hero__stats {
		padding-bottom: 40px;
	}
}

/* ──────────────────────────── Botones ───────────────────────── */
.tk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all .2s ease;
	text-decoration: none;
}

.tk-btn--primary {
	background: var(--tk-color-primary);
	color: #0A0F18;
}

.tk-btn--primary:hover {
	background: var(--tk-color-primary-dark);
	color: #fff;
}

.tk-btn--yellow {
	background: var(--tk-color-yellow);
	border-color: var(--tk-color-yellow);
	color: #0A0F18;
}

.tk-btn--yellow:hover {
	filter: brightness(1.1);
	border-color: var(--tk-color-yellow);
	color: #0A0F18;
}

.tk-btn--ghost {
	border-color: rgba(255, 255, 255, .3);
	color: #fff;
}

.tk-btn--ghost:hover {
	background: rgba(255, 255, 255, .08);
	color: #fff;
}

.tk-btn--ghost-light {
	border-color: #fff;
	color: #fff;
	background: transparent;
}

.tk-btn--ghost-light:hover {
	background: #fff;
	color: var(--tk-color-bg);
}

.tk-btn--ghost-light svg {
	width: 18px;
	height: 18px;
}

.tk-btn--lg {
	padding: 16px 28px;
	font-size: 16px;
}

/* ──────────────────────────── Secciones ─────────────────────── */
.tk-section {
	padding: 72px 0;
}

.tk-section__head {
	text-align: center;
	margin: 20px auto 48px;
	max-width: 720px;
}

.tk-section__title {
	font-size: clamp(26px, 3.5vw, 38px);
	font-weight: 700;
	color: var(--tk-color-dark);
	margin: 0 0 12px;
	letter-spacing: -.01em;
}

.tk-section__title::after {
	content: '';
	display: block;
	height: 3px;
	width: 60px;
	margin: 12px auto 0;
	background: var(--tk-gradient-spectrum);
}

.tk-section__sub {
	color: var(--tk-color-muted);
	font-size: 17px;
	margin: 0;
}

/* ──────────────────────────── Scroll reveal ─────────────────── */
/* Solo se aplica si JS está activo (clase js-reveal en <html>),
   así sin JavaScript el contenido siempre es visible. */

/* El header entra deslizándose desde arriba al cargar la página. */
.js-reveal .tk-header {
	animation: tk-header-in 1s cubic-bezier(.16, 1, .3, 1) backwards;
}

@keyframes tk-header-in {
	from { opacity: 0; transform: translateY(-100%); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes tk-header-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* En móvil el menú es position:fixed y vive dentro del header.
   Tanto un `transform` como un `backdrop-filter` en el header lo
   "atraparían" (lo medirían contra el header de 72px en vez de la
   pantalla), rompiendo el desplegable. Por eso en móvil el header
   entra solo con fade (sin transform) y sin backdrop-filter. */
@media (max-width: 860px) {
	.js-reveal .tk-header {
		animation-name: tk-header-fade;
	}
	.tk-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(10, 15, 24, .98);
	}
}
.js-reveal .tk-section,
.js-reveal [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 1.1s cubic-bezier(.16, 1, .3, 1),
	            transform 1.1s cubic-bezier(.16, 1, .3, 1);
	will-change: opacity, transform;
}

.js-reveal .tk-section.is-visible,
.js-reveal [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* Variantes opcionales con data-reveal="left|right|zoom" */
.js-reveal [data-reveal="left"]  { transform: translateX(-32px); }
.js-reveal [data-reveal="right"] { transform: translateX(32px); }
.js-reveal [data-reveal="zoom"]  { transform: scale(.94); }
.js-reveal [data-reveal].is-visible { transform: none; }

/* Escalonado de hijos: data-reveal-stagger en el contenedor */
.js-reveal [data-reveal-stagger] > * {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .9s cubic-bezier(.16, 1, .3, 1),
	            transform .9s cubic-bezier(.16, 1, .3, 1);
}
.js-reveal [data-reveal-stagger].is-visible > * {
	opacity: 1;
	transform: none;
}
.js-reveal [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: .08s; }
.js-reveal [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: .16s; }
.js-reveal [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: .24s; }
.js-reveal [data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: .32s; }
.js-reveal [data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
	.js-reveal .tk-section,
	.js-reveal [data-reveal],
	.js-reveal [data-reveal-stagger] > * {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.js-reveal .tk-header {
		animation: none !important;
	}
}

.tk-empty {
	color: var(--tk-color-muted);
	font-style: italic;
	text-align: center;
}

/* ──────────────────────────── Marcas ────────────────────────── */
.tk-marcas {
	background: var(--tk-color-bg-soft);
}

.tk-marcas__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 24px;
	align-items: center;
}

.tk-marcas__item {
	background: var(--tk-color-bg-card);
	padding: 24px;
	border-radius: var(--tk-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	box-shadow: var(--tk-shadow);
	border: 1px solid var(--tk-color-border);
	transition: transform .2s ease, border-color .2s ease;
	cursor: pointer;
}

.tk-marcas__item:hover {
	transform: translateY(-3px);
	border-color: var(--tk-color-primary);
}

.tk-marcas__item svg {
	width: 130px;
	height: auto;
	display: block;
	fill: var(--tk-color-muted);
	transition: fill .2s ease;
}

.tk-marcas__item--hp svg {
	width: 52px;
}

.tk-marcas__item:hover svg {
	fill: var(--tk-color-primary);
}

/* ──────────────────── Cards (Servicios) ─────────────────────── */
.tk-cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	cursor: pointer;
}

.tk-card {
	background: var(--tk-color-bg-card);
	border: 1px solid var(--tk-color-border);
	border-radius: var(--tk-radius);
	padding: 28px;
	transition: all .25s ease;
	display: flex;
	flex-direction: column;
}

.tk-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--tk-shadow-lg);
	border-color: var(--tk-color-primary);
}

.tk-card__icon {
	font-size: 32px;
	margin-bottom: 14px;
	line-height: 1;
	color: var(--tk-color-primary);
}

.tk-card__icon svg {
	width: 1em;
	height: 1em;
	display: block;
}

.tk-card__title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--tk-color-dark);
}

.tk-card__text {
	color: var(--tk-color-muted);
	font-size: 14px;
	line-height: 1.6;
	flex: 1;
	margin-bottom: 20px;
}

.tk-card__cta {
	align-self: flex-start;
	font-size: 14px;
}

/* Tarjeta CTA — light */
.tk-card--cta {
	background: #0D2040;
	border-color: rgba(0, 191, 255, .2);
	display: flex;
	align-items: stretch;
}

.tk-card--cta:hover {
	border-color: var(--tk-color-primary);
	box-shadow: 0 14px 48px rgba(0, 191, 255, .15);
	transform: translateY(-4px);
}

.tk-card--cta__inner {
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
}

.tk-card--cta__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--tk-color-primary);
	margin: 0;
}

.tk-card--cta__title {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	margin: 0;
	line-height: 1.2;
}

.tk-card--cta__text {
	font-size: 14px;
	color: var(--tk-color-muted);
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

/* ──────────────────────── Reviews ──────────────────────────── */
.tk-reviews {
	background: var(--tk-color-bg-soft);
}

/* ── Proof bar ── */
.tk-reviews__proof {
	display: flex;
	align-items: center;
	gap: 40px;
	background: var(--tk-color-bg-card);
	border: 1px solid var(--tk-color-border);
	border-radius: var(--tk-radius);
	padding: 28px 36px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.tk-reviews__proof-score {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.tk-reviews__proof-number {
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
	color: var(--tk-color-dark);
	letter-spacing: -.03em;
}

.tk-reviews__proof-stars {
	font-size: 22px;
	color: var(--tk-color-star);
	letter-spacing: 3px;
}

.tk-reviews__proof-count {
	font-size: 13px;
	color: var(--tk-color-muted);
}

.tk-reviews__proof-sep {
	width: 1px;
	height: 64px;
	background: var(--tk-color-border);
	flex-shrink: 0;
}

.tk-reviews__proof-source {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tk-reviews__google-logo {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}

.tk-reviews__proof-platform {
	font-size: 18px;
	font-weight: 700;
	color: var(--tk-color-dark);
}

/* ── Widget ── */
.tk-reviews__widget {
	width: 100%;
}

.tk-reviews__proof-cta {
	margin-left: auto;
}

/* ── Overrides Trustindex → dark theme ── */
.ti-widget.ti-goog {
	border-radius: 16px;
}

.ti-widget.ti-goog .ti-widget-container {
	max-width: 100%;
	padding: 40px 3px;
	border-radius: 20px !important;
}

.tk-reviews__widget .ti-widget,
.tk-reviews__widget .ti-review-item {
	background: var(--tk-color-bg-card) !important;
	color: var(--tk-color-text) !important;
	border-color: var(--tk-color-border) !important;
}

.tk-reviews__widget .ti-review-header,
.tk-reviews__widget .ti-review-reviewer-name,
.tk-reviews__widget .ti-review-body {
	color: var(--tk-color-text) !important;
}

.tk-reviews__widget .ti-stars .ti-star {
	color: var(--tk-color-star) !important;
}

.tk-reviews__widget .ti-widget-header,
.tk-reviews__widget .ti-header-score {
	color: var(--tk-color-dark) !important;
}

@media (max-width: 640px) {
	.tk-reviews__proof {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		padding: 24px;
	}

	.tk-reviews__proof-sep {
		display: none;
	}

	.tk-reviews__proof-score {
		align-items: flex-start;
	}

	.tk-reviews__proof-cta {
		margin-left: 0;
	}
}

/* ──────────────── CTA Band (Domicilio en Home) ──────────────── */
.tk-cta-band {
	background: linear-gradient(135deg, #0A0F18, #0D2040);
	border-top: 1px solid var(--tk-color-border);
	border-bottom: 1px solid var(--tk-color-border);
}

.tk-cta-band__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 56px;
}

.tk-cta-band__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tk-cta-band__eyebrow {
	margin-bottom: -8px;
}

.tk-cta-band__badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(0, 191, 255, .1);
	border: 1px solid rgba(0, 191, 255, .25);
	color: var(--tk-color-primary);
	padding: 5px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.tk-cta-band__title {
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 700;
	margin: 0;
	color: #fff;
	line-height: 1.2;
}

.tk-cta-band__title strong {
	color: #fff;
	font-weight: 800;
}

.tk-cta-band__text {
	margin: 0;
	color: var(--tk-color-muted);
	font-size: 17.5px;
	line-height: 1.7;
}

.tk-cta-band__text strong {
	color: #fff;
}

.tk-cta-band__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tk-cta-band__list li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--tk-color-muted);
	font-size: 16px;
}

.tk-cta-band__list li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--tk-color-primary);
	flex-shrink: 0;
}

.tk-cta-band__list strong {
	color: #fff;
}

.tk-cta-band__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	padding-top: 4px;
}

/* Imagen */
.tk-cta-band__visual {
	width: 100%;
}

.tk-cta-band__img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	border-radius: var(--tk-radius);
	box-shadow: var(--tk-shadow-lg);
}

/* Placeholder */
.tk-cta-band__placeholder {
	width: 100%;
	height: 340px;
	border-radius: var(--tk-radius);
	border: 2px dashed var(--tk-color-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	color: var(--tk-color-muted);
	font-size: 13px;
	text-align: center;
	line-height: 1.5;
}

.tk-cta-band__placeholder svg {
	width: 40px;
	height: 40px;
	opacity: .4;
}

@media (max-width: 768px) {
	.tk-cta-band__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.tk-cta-band__img,
	.tk-cta-band__placeholder {
		height: 220px;
	}

	/* En mobile se oculta el texto de apoyo para una lista fluida de una línea. */
	.tk-cta-band__list-extra {
		display: none;
	}

	.tk-cta-band__list li {
		font-size: 15px;
	}
}

/* ──────────────────────── Repuestos ─────────────────────────── */
.tk-repuestos {
	background: var(--tk-color-bg);
}

.tk-repuestos__subtitle {
	color: var(--tk-color-muted);
	font-size: 16px;
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.7;
}

.tk-repuestos__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 16px;
}

.tk-repuestos__item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--tk-color-bg-card);
	border: 1px solid var(--tk-color-border);
	border-radius: var(--tk-radius);
	padding: 20px 24px;
	transition: all .25s ease;
}

.tk-repuestos__item:hover {
	border-color: var(--tk-color-primary);
	transform: translateY(-2px);
	box-shadow: var(--tk-shadow);
}

.tk-repuestos__media {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	background: #F2F6FB;
	border-radius: 10px;
	padding: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.tk-repuestos__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.tk-repuestos__info {
	flex: 1;
	min-width: 0;
}

.tk-repuestos__name {
	font-size: 15px;
	font-weight: 700;
	color: var(--tk-color-dark);
	margin: 0 0 4px;
}

.tk-repuestos__desc {
	font-size: 13px;
	color: var(--tk-color-muted);
	margin: 0;
	line-height: 1.5;
}

.tk-repuestos__cta {
	flex-shrink: 0;
	font-size: 13px;
	padding: 8px 16px;
	white-space: nowrap;
}

@media (max-width: 560px) {
	.tk-repuestos__item {
		flex-wrap: wrap;
	}
	.tk-repuestos__media {
		width: 48px;
		height: 48px;
	}
	.tk-repuestos__cta {
		width: 100%;
		text-align: center;
	}
}

/* ──────────────────────── Contacto ──────────────────────────── */
.tk-contacto {
	background: var(--tk-color-bg-soft);
}

.tk-contacto__inner {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 56px;
	align-items: start;
}

@media (max-width: 860px) {
	.tk-contacto__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

.tk-contacto__form-wrap {
	min-width: 0;
}

/* Info lateral */
.tk-contacto__info {
	background: var(--tk-color-bg-card);
	border: 1px solid var(--tk-color-border);
	border-radius: var(--tk-radius);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.tk-contacto__info-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--tk-color-dark);
	margin: 0 0 20px;
}

.tk-contacto__info-subtitle {
	font-size: 14px;
	font-weight: 700;
	color: var(--tk-color-dark);
	margin: 0 0 12px;
}

.tk-contacto__info-list {
	list-style: none;
	padding: 0;
	margin: 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tk-contacto__info-list li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	font-size: 14px;
	color: var(--tk-color-muted);
	line-height: 1.5;
}

.tk-contacto__info-list a {
	color: var(--tk-color-muted);
}

.tk-contacto__info-list a:hover {
	color: var(--tk-color-primary);
}

.tk-contacto__info-icon {
	flex-shrink: 0;
	line-height: 0;
}

.tk-contacto__info-icon svg {
	width: 20px;
	height: 20px;
	color: var(--tk-color-primary);
	display: block;
}

.tk-contacto__info-sep {
	height: 1px;
	background: var(--tk-color-border);
	margin: 20px 0;
}

.tk-contacto__social {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tk-contacto__social a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--tk-color-muted);
	font-size: 14px;
}

.tk-contacto__social a:hover {
	color: var(--tk-color-primary);
}

.tk-contacto__social a span {
	flex-shrink: 0;
	line-height: 0;
}

.tk-contacto__social a svg {
	width: 18px;
	height: 18px;
	display: block;
	color: var(--tk-color-primary);
}

.tk-form {
	max-width: 100%;
	margin: 0;
}

.tk-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

@media (max-width: 600px) {
	.tk-form__row {
		grid-template-columns: 1fr;
	}
}

.tk-form__field {
	display: block;
	margin-bottom: 18px;
}

.tk-form__field span {
	display: block;
	font-weight: 600;
	font-size: 14px;
	color: var(--tk-color-dark);
	margin-bottom: 6px;
}

.tk-form input,
.tk-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--tk-color-border);
	border-radius: 10px;
	font: inherit;
	background: var(--tk-color-bg-input);
	color: var(--tk-color-text);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.tk-form input:focus,
.tk-form textarea:focus {
	outline: none;
	border-color: var(--tk-color-primary);
	box-shadow: 0 0 0 3px rgba(0, 191, 255, .15);
}

.tk-form input::placeholder,
.tk-form textarea::placeholder {
	color: var(--tk-color-muted);
}

.tk-alert {
	max-width: 680px;
	margin: 0 auto 24px;
	padding: 14px 18px;
	border-radius: 10px;
	font-weight: 500;
}

.tk-alert--ok {
	background: rgba(0, 255, 136, .1);
	color: #00FF88;
	border: 1px solid rgba(0, 255, 136, .3);
}

.tk-alert--error {
	background: rgba(255, 0, 100, .1);
	color: #FF6699;
	border: 1px solid rgba(255, 0, 100, .2);
}

/* ────────────────────────── Mapa ────────────────────────────── */
.tk-mapa {
	background: var(--tk-color-bg);
}

.tk-mapa__address {
	color: var(--tk-color-text);
	font-weight: 600;
	font-size: 16px;
	margin: 8px 0 0;
}

.tk-mapa__embed {
	border-radius: var(--tk-radius);
	overflow: hidden;
	box-shadow: var(--tk-shadow);
	width: 100%;
	height: 390px;
}

.tk-mapa__embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.tk-mapa__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}

/* ─────────────────── Sobre Nosotros · Zigzag ─────────────────── */
.tk-zz__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 56px;
}

.tk-zz__row+.tk-zz__row {
	margin-top: 80px;
}

/* Por defecto: texto a la izquierda, media a la derecha. Reverse invierte. */
.tk-zz__media {
	order: 2;
}

.tk-zz__row--reverse .tk-zz__media {
	order: 0;
}

.tk-zz__media {
	border-radius: var(--tk-radius);
	overflow: hidden;
	background: var(--tk-color-bg-card);
	border: 1px solid var(--tk-color-border);
	aspect-ratio: 4 / 3;
}

.tk-zz__media img,
.tk-zz__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tk-zz__icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(0, 191, 255, .12);
	color: var(--tk-color-primary);
	margin-bottom: 18px;
}

.tk-zz__icon svg {
	width: 26px;
	height: 26px;
}

.tk-zz__eyebrow {
	display: block;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 13px;
	font-weight: 700;
	color: var(--tk-color-primary);
	margin-bottom: 8px;
}

.tk-zz__title {
	font-size: 30px;
	font-weight: 800;
	color: var(--tk-color-dark);
	margin: 0 0 18px;
	line-height: 1.2;
}

.tk-zz__text {
	color: var(--tk-color-text);
	font-size: 16px;
	line-height: 1.7;
}

.tk-zz__text p {
	margin: 0 0 14px;
}

.tk-zz__text p:last-child {
	margin-bottom: 0;
}

.tk-zz__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 22px;
}

.tk-zz__cta-icon {
	display: inline-flex;
}

.tk-zz__cta-icon svg {
	width: 18px;
	height: 18px;
}

/* ─────────────────── Sobre Nosotros · Valores ────────────────── */
.tk-values {
	background: var(--tk-color-bg-soft);
}

.tk-values__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.tk-values__card {
	background: var(--tk-color-bg-card);
	border: 1px solid var(--tk-color-border);
	border-radius: var(--tk-radius);
	padding: 28px 24px;
	text-align: center;
	transition: border-color .2s ease, transform .2s ease;
}

.tk-values__card:hover {
	border-color: var(--tk-color-primary);
	transform: translateY(-4px);
}

.tk-values__icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 191, 255, .12);
	color: var(--tk-color-primary);
	margin-bottom: 16px;
}

.tk-values__icon svg {
	width: 28px;
	height: 28px;
}

.tk-values__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--tk-color-dark);
	margin: 0 0 8px;
}

.tk-values__text {
	font-size: 14px;
	color: var(--tk-color-muted);
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 768px) {
	.tk-zz__row {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.tk-zz__row+.tk-zz__row {
		margin-top: 56px;
	}

	.tk-zz__media,
	.tk-zz__row--reverse .tk-zz__media {
		order: 0;
	}

	.tk-zz__title {
		font-size: 25px;
	}
}

/* ────────────────────────── Comunas ─────────────────────────── */
.tk-comunas {
	background: var(--tk-color-bg);
}

.tk-comunas__list {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
}

.tk-comunas__list li {
	background: var(--tk-color-bg-card);
	border: 1px solid var(--tk-color-border);
	border-radius: 10px;
	padding: 12px 16px;
	font-weight: 500;
	color: var(--tk-color-text);
}

.tk-comunas__note {
	font-size: 13px;
	color: var(--tk-color-muted);
	margin-top: 12px;
	font-style: italic;
}

/* En mobile la lista de comunas en grilla pareja de 2 columnas iguales. */
@media (max-width: 640px) {
	.tk-comunas__list {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
		margin-bottom: 28px;
	}

	.tk-comunas__list li {
		padding: 10px 12px;
		font-size: 14px;
	}
}

.tk-multimarca__text {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
	color: var(--tk-color-muted);
}

/* ─────────────────────────── Footer ─────────────────────────── */
.tk-footer {
	background: #070C14;
	color: var(--tk-color-muted);
	padding-top: 64px;
	border-top: 1px solid var(--tk-color-border);
}

.tk-footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr auto;
	align-items: start;
	gap: 40px;
}

.tk-footer__title {
	color: var(--tk-color-dark);
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 16px;
}

.tk-footer__list,
.tk-footer__menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tk-footer__list li,
.tk-footer__menu li {
	padding: 6px 0;
	font-size: 14px;
	line-height: 1.5;
}

/* Items con ícono (contacto y redes) */
.tk-footer__list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tk-footer__list a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.tk-footer__ico {
	flex-shrink: 0;
	line-height: 0;
	color: var(--tk-color-primary);
}

.tk-footer__ico svg {
	width: 16px;
	height: 16px;
	display: block;
}

.tk-footer a {
	color: var(--tk-color-muted);
}

.tk-footer a:hover {
	color: var(--tk-color-primary);
}

/* El botón WhatsApp conserva el contraste del .tk-btn--primary (texto/ícono oscuro sobre cyan) */
.tk-footer .tk-btn--primary,
.tk-footer .tk-btn--primary:hover {
	color: #0A0F18;
}

.tk-footer__col--brand {
	max-width: 360px;
}

.tk-footer__logo {
	height: 40px;
	width: auto;
	margin-bottom: 16px;
}

.tk-footer__about {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 8px;
}

.tk-footer__tagline {
	font-size: 14px;
	color: var(--tk-color-primary);
	font-weight: 600;
	margin: 0;
}

.tk-footer__wa {
	margin-top: 20px;
}

.tk-footer__wa svg {
	width: 16px;
	height: 16px;
}

.tk-footer__bottom {
	border-top: 1px solid var(--tk-color-border);
	margin-top: 48px;
	padding: 22px 0;
	font-size: 13px;
	color: var(--tk-color-muted);
}

.tk-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.tk-footer__social li {
	padding: 4px 0;
}

@media (max-width: 860px) {
	.tk-footer__inner {
		grid-template-columns: 1fr 1fr;
	}

	.tk-footer__col--brand {
		grid-column: 1 / -1;
		max-width: 100%;
	}
}

@media (max-width: 560px) {
	.tk-footer__inner {
		grid-template-columns: 1fr;
	}
}

/* ─────────────────── Botones flotantes ──────────────────────── */
.tk-floats {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tk-float {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	color: #0A0F18 !important;
	text-decoration: none;
	box-shadow: var(--tk-shadow-lg);
	transition: transform .2s ease, filter .2s ease;
}

.tk-float:hover {
	transform: translateY(-2px);
	filter: brightness(1.1);
}

.tk-float--map {
	background: var(--tk-color-yellow);
}

.tk-float__icon {
	font-size: 18px;
}

@media (max-width: 600px) {
	.tk-float__label {
		display: none;
	}

	.tk-float {
		padding: 14px;
	}

	.tk-float__icon {
		font-size: 22px;
	}
}

/* ──────────────────── Mapa SVG interactivo ──────────────────── */
.tk-mapa-svg {
	position: relative;
}

.santiagoMap {
	display: flex;
	min-width: 100% !important;
	height: auto !important;
	margin-bottom: 50px;
	margin-top: 90px;
}


.santiagoMap path.itemMap {
	cursor: pointer;
	transition: filter .15s ease, opacity .15s ease;
}

.santiagoMap path.itemMap:hover {
	filter: brightness(1.4);
}

.santiagoMap .textMap {
	pointer-events: none;
}

.tk-map-tooltip {
	display: none;
	position: absolute;
	z-index: 20;
	background: var(--tk-color-bg-card);
	color: var(--tk-color-dark);
	border: 1px solid var(--tk-color-border);
	padding: 5px 10px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	pointer-events: none;
	white-space: nowrap;
	box-shadow: var(--tk-shadow);
	transform: translate(-50%, -100%);
}

.tk-map-legend {
	display: flex;
	gap: 20px;
	margin-top: 18px;
	justify-content: center;
	flex-wrap: wrap;
}

.tk-map-legend__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--tk-color-text);
}

.tk-map-legend__item::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	flex-shrink: 0;
}

.tk-map-legend__item--covered::before {
	background: var(--tk-color-primary);
}

.tk-map-legend__item--none::before {
	background: var(--tk-color-border);
}

/* ──────────────────────── Página genérica ───────────────────── */
.tk-page {
	max-width: 820px;
}

.tk-page__content h2 {
	margin-top: 1.6em;
	color: var(--tk-color-dark);
}

.tk-page__content img {
	border-radius: var(--tk-radius);
}

/* ─────────────────────── Posts (índice) ─────────────────────── */
.tk-post {
	padding: 24px 0;
	border-bottom: 1px solid var(--tk-color-border);
}

.tk-post__title {
	margin: 0 0 8px;
	font-size: 22px;
	color: var(--tk-color-dark);
}

.tk-pagination {
	margin-top: 32px;
}
