/*==============================================================
  TLC S.A.S. - Propuesta de rediseño v3 (página /propuesta)
  --------------------------------------------------------------
  Hoja independiente de tlc.css: no afecta la réplica del sitio.

  Concepto: centro de control + película de scroll.
  - Portada: mapa vectorial de Colombia con las rutas reales entre
    sedes, camiones en movimiento y datos de la flota.
  - Resto: escenas cinematográficas (GSAP + ScrollTrigger + Lenis).
  - Sin JavaScript o con movimiento reducido, todo se ve completo:
    los estados iniciales de las animaciones los pone el JS.

  Tipografía: Archivo con eje de ancho (expandida en titulares),
  IBM Plex Mono para datos. Amarillo TLC solo como acento.
==============================================================*/

:root {
  --tlc-night: #0e0f11;
  --tlc-carbon: #17181b;
  --tlc-carbon-2: #1f2125;
  --tlc-graphite: #2c2e33;
  --tlc-yellow: #ffd714;
  --tlc-yellow-soft: rgba(255, 215, 20, 0.14);
  --tlc-ink: #111214;
  --tlc-text: #2a2c30;
  --tlc-muted: #6b6f76;
  --tlc-muted-dark: #8f939a;
  --tlc-light: #eef0ee;
  --tlc-line: #dcdfdc;
  --tlc-white: #ffffff;
  --tlc-red: #d6262e;

  --tlc-font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --tlc-mono: "IBM Plex Mono", Consolas, "Courier New", monospace;

  --tlc-header-h: 76px;
  --tlc-radius: 14px;
  --tlc-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-padding-top: calc(var(--tlc-header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--tlc-font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--tlc-text);
  background: var(--tlc-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--tlc-font);
  font-stretch: 125%;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--tlc-ink);
  text-wrap: balance;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--tlc-yellow);
  color: var(--tlc-ink);
}

:focus-visible {
  outline: 2px solid var(--tlc-yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

.tlc-wrap {
  width: min(1320px, 100%);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

.tlc-mono {
  font-family: var(--tlc-mono);
}

.tlc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--tlc-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tlc-muted);
}

.tlc-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tlc-yellow);
  box-shadow: 0 0 0 4px var(--tlc-yellow-soft);
}

.tlc-h2 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.tlc-h2 em {
  font-style: normal;
  color: var(--tlc-yellow);
}

.tlc-lead {
  max-width: 60ch;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--tlc-muted);
}

/* Escenas oscuras */
.tlc-dark {
  background: var(--tlc-night);
  color: #c9ccd1;
}

.tlc-dark h1,
.tlc-dark h2,
.tlc-dark h3 {
  color: var(--tlc-white);
}

.tlc-dark .tlc-eyebrow,
.tlc-dark .tlc-lead {
  color: var(--tlc-muted-dark);
}

/* Palabras de titulares para la animación de revelado */
.tlc-split-word {
  display: inline-block;
  overflow: hidden;
  padding-top: 0.12em;
  margin-top: -0.12em;
  vertical-align: bottom;
}

.tlc-split-word > span {
  display: inline-block;
}

/*--------------------------------------------------------------
# Botones
--------------------------------------------------------------*/
.tlc-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--tlc-font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  background: var(--tlc-yellow);
  color: var(--tlc-ink);
  cursor: pointer;
  transition: transform 0.4s var(--tlc-ease), color 0.4s var(--tlc-ease);
}

/* Relleno que crece desde abajo */
.tlc-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--tlc-white);
  transform: translateY(101%);
  transition: transform 0.45s var(--tlc-ease);
}

.tlc-btn:hover {
  transform: translateY(-2px);
  color: var(--tlc-ink);
}

.tlc-btn:hover::before {
  transform: translateY(0);
}

.tlc-btn__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: -10px;
  border-radius: 50%;
  background: var(--tlc-ink);
  color: var(--tlc-yellow);
  font-size: 0.9rem;
  transition: transform 0.45s var(--tlc-ease);
}

.tlc-btn:hover .tlc-btn__icon {
  transform: rotate(-45deg);
}

.tlc-btn--dark {
  background: var(--tlc-ink);
  color: var(--tlc-white);
}

.tlc-btn--dark::before {
  background: var(--tlc-yellow);
}

.tlc-btn--dark .tlc-btn__icon {
  background: var(--tlc-yellow);
  color: var(--tlc-ink);
}

.tlc-btn--line {
  background: transparent;
  color: currentColor;
  box-shadow: inset 0 0 0 1.5px currentColor;
}

.tlc-btn--line::before {
  background: var(--tlc-yellow);
}

.tlc-btn--line:hover {
  box-shadow: inset 0 0 0 1.5px var(--tlc-yellow);
}

.tlc-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
}

.tlc-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--tlc-yellow);
  transform-origin: right;
  transition: transform 0.45s var(--tlc-ease);
}

.tlc-link:hover::after {
  transform: scaleX(0);
  transform-origin: left;
}

/*--------------------------------------------------------------
# Encabezado (transparente sobre la portada, sólido al bajar)
--------------------------------------------------------------*/
.tlc-header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 50;
  height: var(--tlc-header-h);
  margin-bottom: calc(var(--tlc-header-h) * -1);
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.tlc-header.is-solid {
  background: rgba(14, 15, 17, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tlc-header .tlc-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.tlc-header__logo img {
  height: 50px;
  width: auto;
}

.tlc-nav {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tlc-nav a {
  display: block;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 999px;
  color: #d9dce0;
  transition: background 0.3s ease, color 0.3s ease;
}

.tlc-nav a:hover,
.tlc-nav a.is-active {
  background: var(--tlc-white);
  color: var(--tlc-ink);
}

.tlc-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tlc-header__actions .tlc-btn {
  padding: 11px 18px;
  font-size: 0.88rem;
}

.tlc-header__link {
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  color: #d9dce0;
}

.tlc-header__link:hover {
  color: var(--tlc-yellow);
}

.tlc-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  font-size: 1.35rem;
  border: 0;
  border-radius: 50%;
  background: var(--tlc-yellow);
  color: var(--tlc-ink);
}

@media (max-width: 1140px) {
  .tlc-menu-btn {
    display: grid;
    place-items: center;
  }

  .tlc-header__actions .tlc-btn,
  .tlc-header__link {
    display: none;
  }

  .tlc-nav {
    position: fixed;
    top: calc(var(--tlc-header-h) + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    padding: 10px;
    border-radius: var(--tlc-radius);
    background: rgba(14, 15, 17, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .tlc-nav[hidden] {
    display: none !important;
  }

  .tlc-nav a {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 10px;
  }
}

@media (min-width: 1141px) {
  .tlc-nav[hidden] {
    display: flex !important;
  }
}

/*--------------------------------------------------------------
# Portada: centro de control
--------------------------------------------------------------*/
.tlc-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 72% 42%, rgba(255, 215, 20, 0.09), transparent 70%),
    var(--tlc-night);
  color: #c9ccd1;
}

/* Retícula técnica de fondo */
.tlc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 60% 45%, #000 30%, transparent 85%);
  pointer-events: none;
}

.tlc-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.tlc-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 14px 7px 10px;
  font-family: var(--tlc-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #d9dce0;
}

.tlc-hero__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6);
  animation: tlc-live 2s infinite;
}

@keyframes tlc-live {
  70% { box-shadow: 0 0 0 10px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

.tlc-hero h1 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 3.7vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tlc-white);
}

.tlc-hero h1 .tlc-accent {
  display: block;
  color: var(--tlc-yellow);
}

.tlc-hero__lead {
  max-width: 48ch;
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.65;
  color: #aeb2b8;
}

.tlc-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.tlc-hero__cta .tlc-btn--line {
  color: var(--tlc-white);
}

/* Datos de la flota bajo el texto */
.tlc-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: clamp(24px, 3vw, 44px);
  margin: 36px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tlc-hero__facts dt {
  font-family: var(--tlc-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-muted-dark);
}

.tlc-hero__facts dd {
  margin: 4px 0 0;
  font-stretch: 125%;
  font-weight: 700;
  font-size: 1.35rem;
  white-space: nowrap;
  color: var(--tlc-white);
}

/* Mapa */
.tlc-hero__map {
  position: relative;
  justify-self: center;
  /* El ancho sigue a la altura disponible para que el mapa entero quepa en pantalla */
  width: min(100%, 470px, calc((max(100svh, 640px) - var(--tlc-header-h) - 130px) * 0.728));
}

.tlc-geo {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.tlc-geo__dpto {
  fill: #191b1f;
  stroke: #2e3137;
  stroke-width: 0.7;
  stroke-linejoin: round;
  transition: fill 0.4s ease;
}

.tlc-geo__dpto.is-sede {
  fill: #25241c;
}

.tlc-geo__route-base {
  fill: none;
  stroke: rgba(255, 215, 20, 0.16);
  stroke-width: 6;
  stroke-linecap: round;
}

.tlc-geo__route {
  fill: none;
  stroke: var(--tlc-yellow);
  stroke-width: 2.2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 215, 20, 0.55));
}

.tlc-geo__dot {
  fill: var(--tlc-yellow);
  stroke: var(--tlc-night);
  stroke-width: 3;
}

.tlc-geo__pulse {
  fill: none;
  stroke: var(--tlc-yellow);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: tlc-map-pulse 2.6s var(--tlc-ease) infinite;
}

.tlc-geo__city:nth-child(2) .tlc-geo__pulse { animation-delay: 0.5s; }
.tlc-geo__city:nth-child(3) .tlc-geo__pulse { animation-delay: 1s; }
.tlc-geo__city:nth-child(4) .tlc-geo__pulse { animation-delay: 1.5s; }
.tlc-geo__city:nth-child(5) .tlc-geo__pulse { animation-delay: 2s; }

@keyframes tlc-map-pulse {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(4.2); opacity: 0; }
}

.tlc-geo__city.is-hq .tlc-geo__dot {
  fill: var(--tlc-white);
  stroke: var(--tlc-yellow);
  stroke-width: 3;
}

.tlc-geo__label {
  font-family: var(--tlc-font);
  font-weight: 600;
  font-size: 13px;
  fill: #d9dce0;
  paint-order: stroke;
  stroke: var(--tlc-night);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.tlc-geo__label.is-hq {
  font-weight: 800;
  fill: var(--tlc-white);
}

.tlc-geo__truck {
  opacity: 0;
}

.tlc-geo__truck-halo {
  fill: rgba(255, 255, 255, 0.18);
}

.tlc-geo__truck-core {
  fill: var(--tlc-white);
}

/* Tarjetas flotantes sobre el mapa */
.tlc-float {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(23, 24, 27, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #d9dce0;
  font-size: 0.85rem;
}

.tlc-float--gps {
  left: -14%;
  bottom: 3%;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
}

.tlc-float--gps i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  font-size: 1.1rem;
  border-radius: 10px;
  background: var(--tlc-yellow);
  color: var(--tlc-ink);
}

.tlc-float strong {
  display: block;
  color: var(--tlc-white);
}

.tlc-float--routes {
  right: -10%;
  top: 57%;
  width: 262px;
}

.tlc-float__title {
  margin-bottom: 8px;
  font-family: var(--tlc-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-muted-dark);
}

.tlc-float__routes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tlc-float__routes li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.8rem;
  white-space: nowrap;
  color: #9ea2a8;
  transition: color 0.3s ease;
}

.tlc-float__routes li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a3d43;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.tlc-float__routes li.is-on {
  color: var(--tlc-white);
}

.tlc-float__routes li.is-on::before {
  background: var(--tlc-yellow);
  box-shadow: 0 0 0 4px var(--tlc-yellow-soft);
}

/* Carrusel: las diapositivas se apilan en la misma celda, así la
   portada toma la altura de la más alta y no salta al cambiar */
.tlc-hero__slides {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.tlc-slide {
  position: relative;
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  min-height: max(100svh, 640px);
  padding-top: calc(var(--tlc-header-h) + 12px);
  padding-bottom: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}

.tlc-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.9s ease, visibility 0s;
}

/* Diapositivas con foto de la operación */
.tlc-slide--foto {
  background: var(--tlc-night);
}

.tlc-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.08);
  transition: transform 9s linear;
}

.tlc-slide.is-active .tlc-slide__img {
  transform: scale(1);
}

.tlc-slide--foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 15, 17, 0.94) 0%, rgba(14, 15, 17, 0.78) 38%, rgba(14, 15, 17, 0.2) 72%, rgba(14, 15, 17, 0.05) 100%),
    linear-gradient(0deg, rgba(14, 15, 17, 0.85) 0%, transparent 32%),
    linear-gradient(180deg, rgba(14, 15, 17, 0.7) 0%, transparent 22%);
}

.tlc-slide__body {
  position: relative;
  z-index: 1;
}

.tlc-slide__title {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 3.7vw, 3.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--tlc-white);
}

.tlc-slide__title .tlc-accent {
  color: var(--tlc-yellow);
}

.tlc-slide--foto .tlc-hero__lead {
  color: #d3d6db;
}

.tlc-slide__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tlc-slide__tags a {
  padding: 11px 20px;
  font-family: var(--tlc-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  color: var(--tlc-white);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.tlc-slide__tags a:hover {
  background: var(--tlc-yellow);
  box-shadow: inset 0 0 0 1px var(--tlc-yellow);
  color: var(--tlc-ink);
}

/* Entrada escalonada del texto de las fotos */
@media (prefers-reduced-motion: no-preference) {
  .tlc-slide--foto .tlc-slide__body > * {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .tlc-slide--foto.is-active .tlc-slide__body > * {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s ease, transform 1.1s var(--tlc-ease);
  }

  .tlc-slide--foto.is-active .tlc-slide__body > :nth-child(1) { transition-delay: 0.25s; }
  .tlc-slide--foto.is-active .tlc-slide__body > :nth-child(2) { transition-delay: 0.35s; }
  .tlc-slide--foto.is-active .tlc-slide__body > :nth-child(3) { transition-delay: 0.5s; }
  .tlc-slide--foto.is-active .tlc-slide__body > :nth-child(4) { transition-delay: 0.62s; }
}

/* Controles del carrusel */
.tlc-hero__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: none;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 26px;
}

.tlc-hero.is-carousel .tlc-hero__controls {
  display: flex;
}

.tlc-hero__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  flex: 1;
  max-width: 720px;
}

.tlc-hero__tab {
  position: relative;
  padding: 14px 0 2px;
  font-family: var(--tlc-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: none;
  color: var(--tlc-muted-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.tlc-hero__tab:hover,
.tlc-hero__tab.is-active {
  color: var(--tlc-white);
}

.tlc-hero__tab-num {
  margin-right: 6px;
  font-family: var(--tlc-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--tlc-yellow);
}

.tlc-hero__tab-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 2px;
  background: var(--tlc-yellow);
  transform: scaleX(0);
  transform-origin: left;
}

.tlc-hero__tab.is-active .tlc-hero__tab-bar {
  transform: scaleX(1);
}

/* La barra de la pestaña activa marca el tiempo; al terminar, el JS avanza */
.tlc-hero.is-playing .tlc-hero__tab.is-active .tlc-hero__tab-bar {
  animation: tlc-slide-progress 9s linear forwards;
}

.tlc-hero.is-playing .tlc-hero__controls:hover .tlc-hero__tab-bar,
.tlc-hero.is-playing:focus-within .tlc-hero__tab-bar,
.tlc-hero.is-offscreen .tlc-hero__tab-bar {
  animation-play-state: paused !important;
}

@keyframes tlc-slide-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.tlc-hero__arrows {
  display: flex;
  gap: 8px;
}

.tlc-hero__arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 1.05rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  color: var(--tlc-white);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.tlc-hero__arrow:hover {
  background: var(--tlc-yellow);
  color: var(--tlc-ink);
}

/* Pantallas de poca altura (portátiles): el mapa se reduce y las tarjetas se separan */
@media (min-width: 981px) and (max-height: 820px) {
  .tlc-float {
    padding: 11px 13px;
  }

  .tlc-float--gps {
    left: -30%;
  }

  .tlc-float--routes {
    top: 60%;
  }

  .tlc-hero__status {
    margin-bottom: 16px;
  }

  .tlc-hero h1,
  .tlc-slide__title {
    margin-bottom: 16px;
  }

  .tlc-hero__lead {
    margin-bottom: 22px;
  }

  .tlc-hero__facts {
    margin-top: 26px;
    padding-top: 16px;
  }
}

@media (max-width: 980px) {
  .tlc-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-hero__map {
    width: min(100%, 440px);
  }

  .tlc-float--routes {
    top: auto;
    right: 0;
    bottom: 0;
  }

  .tlc-float--gps {
    left: 0;
    top: auto;
    bottom: 30%;
  }

  /* En pantallas angostas la foto va detrás y el texto arriba */
  .tlc-slide--foto {
    align-content: start;
    padding-top: calc(var(--tlc-header-h) + 32px);
  }

  .tlc-slide--foto::after {
    background:
      linear-gradient(180deg, rgba(14, 15, 17, 0.95) 0%, rgba(14, 15, 17, 0.75) 45%, rgba(14, 15, 17, 0.25) 75%, rgba(14, 15, 17, 0.85) 100%);
  }

  .tlc-slide__img {
    object-position: center;
  }

  /* Deja libre la esquina del botón flotante de WhatsApp */
  .tlc-hero__controls {
    gap: 16px;
    padding-right: 84px;
  }
}

@media (max-width: 560px) {
  .tlc-hero__facts {
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    gap: 12px;
  }

  .tlc-hero__facts dd {
    font-size: clamp(0.92rem, 4.4vw, 1.05rem);
  }

  .tlc-float--routes {
    display: none;
  }

  /* Titulares a la medida de la pantalla: "TRANSPORTANDO" debe caber en una línea */
  .tlc-hero h1,
  .tlc-slide__title {
    font-size: min(2.3rem, 7.6vw);
  }

  /* Solo el número en las pestañas; el nombre sigue disponible para lectores de pantalla */
  .tlc-hero__tabs {
    gap: 8px;
  }

  .tlc-hero__tab {
    font-size: 0;
  }

  .tlc-hero__tab-num {
    margin: 0;
    font-size: 0.72rem;
  }

  .tlc-hero__arrows {
    gap: 6px;
  }

  .tlc-hero__arrow {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Cifras
--------------------------------------------------------------*/
.tlc-stats {
  padding-block: clamp(70px, 9vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tlc-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tlc-stat {
  padding: 8px clamp(16px, 3vw, 44px);
}

.tlc-stat + .tlc-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.tlc-stat:first-child {
  padding-left: 0;
}

.tlc-stat__num {
  display: block;
  font-stretch: 125%;
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--tlc-white);
  font-variant-numeric: tabular-nums;
}

.tlc-stat__num sup {
  font-size: 0.45em;
  font-weight: 600;
  vertical-align: 0.9em;
  color: var(--tlc-yellow);
}

.tlc-stat__label {
  display: block;
  margin-top: 18px;
  font-family: var(--tlc-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-muted-dark);
}

@media (max-width: 760px) {
  .tlc-stats__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .tlc-stat,
  .tlc-stat:first-child {
    padding: 0;
  }

  .tlc-stat + .tlc-stat {
    border-left: 0;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/*--------------------------------------------------------------
# Escena: 20 años (la foto se abre a pantalla completa)
--------------------------------------------------------------*/
.tlc-reel {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--tlc-night);
}

.tlc-reel__media {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 0 round 0);
}

.tlc-reel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlc-reel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 15, 17, 0.85) 0%, rgba(14, 15, 17, 0.2) 55%, rgba(14, 15, 17, 0.35) 100%);
}

.tlc-reel__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(40px, 8vh, 90px);
  z-index: 2;
}

.tlc-reel__caption h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 7.5vw, 7.4rem);
  text-transform: uppercase;
  color: var(--tlc-white);
}

.tlc-reel__caption h2 em {
  font-style: normal;
  color: var(--tlc-yellow);
}

.tlc-reel__tag {
  display: block;
  margin-bottom: 18px;
  font-family: var(--tlc-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9dce0;
}

/*--------------------------------------------------------------
# Quiénes somos
--------------------------------------------------------------*/
.tlc-about {
  padding-block: clamp(80px, 11vw, 150px);
}

.tlc-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}

.tlc-about__side {
  position: sticky;
  top: calc(var(--tlc-header-h) + 30px);
}

.tlc-about__photo {
  margin-top: 36px;
  overflow: hidden;
  border-radius: var(--tlc-radius);
  aspect-ratio: 4 / 5;
}

.tlc-about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlc-about__body > p {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.5;
  color: var(--tlc-text);
}

.tlc-about__body > p strong {
  color: var(--tlc-ink);
}

.tlc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 56px;
  padding: 10px 18px 10px 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  background: var(--tlc-light);
  color: var(--tlc-ink);
}

.tlc-badge i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tlc-yellow);
}

.tlc-mv {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.tlc-mv article {
  padding: 28px;
  border-radius: var(--tlc-radius);
  background: var(--tlc-light);
}

.tlc-mv h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.tlc-mv p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--tlc-muted);
}

@media (max-width: 900px) {
  .tlc-about__grid,
  .tlc-mv {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-about__side {
    position: static;
  }

  .tlc-about__photo {
    aspect-ratio: 16 / 10;
  }
}

/*--------------------------------------------------------------
# Servicios: escena anclada líquida → seca
--------------------------------------------------------------*/
.tlc-services {
  position: relative;
  background: var(--tlc-night);
  color: #c9ccd1;
}

.tlc-services__intro {
  padding-block: clamp(80px, 10vw, 130px) clamp(40px, 5vw, 60px);
}

.tlc-services__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px 60px;
  align-items: end;
}

.tlc-services__intro h2 {
  color: var(--tlc-white);
}

.tlc-services__intro p {
  margin: 0;
  color: var(--tlc-muted-dark);
}

.tlc-stage {
  position: relative;
}

.tlc-stage__layer {
  position: relative;
  min-height: max(100svh, 640px);
  overflow: hidden;
}

/* Modo anclado (lo activa propuesta.js en escritorio) */
.tlc-stage.is-pinned {
  height: 100svh;
  min-height: 620px;
}

.tlc-stage.is-pinned .tlc-stage__layer {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.tlc-stage__layer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlc-stage__layer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(14, 15, 17, 0.94) 0%, rgba(14, 15, 17, 0.72) 42%, rgba(14, 15, 17, 0.1) 100%);
}

.tlc-stage__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.tlc-stage__index {
  margin-bottom: 20px;
  font-family: var(--tlc-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--tlc-yellow);
}

.tlc-stage h3 {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  text-transform: uppercase;
  color: var(--tlc-white);
}

.tlc-stage p {
  max-width: 52ch;
  font-size: 1.12rem;
  color: #c9ccd1;
}

.tlc-spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 640px;
  margin: 18px 0 32px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.tlc-spec div {
  padding: 16px 18px;
  background: rgba(14, 15, 17, 0.72);
  backdrop-filter: blur(6px);
}

.tlc-spec dt {
  margin-bottom: 4px;
  font-family: var(--tlc-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-yellow);
}

.tlc-spec dd {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.4;
  color: var(--tlc-white);
}

.tlc-stage .tlc-link {
  color: var(--tlc-white);
}

/* Rombo de mercancía peligrosa clase 3 */
.tlc-hazmat {
  position: relative;
  flex-shrink: 0;
  width: 0.62em;
  height: 0.62em;
  margin: 0.12em;
  background: var(--tlc-red);
  border: 3px solid var(--tlc-white);
  outline: 3px solid var(--tlc-red);
  transform: rotate(45deg);
}

.tlc-hazmat span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.34em;
  font-weight: 800;
  color: var(--tlc-white);
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .tlc-services__intro-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-stage__layer {
    min-height: 640px;
  }

  .tlc-stage__layer::before {
    background: linear-gradient(0deg, rgba(14, 15, 17, 0.96) 0%, rgba(14, 15, 17, 0.8) 55%, rgba(14, 15, 17, 0.25) 100%);
  }

  .tlc-stage__content {
    justify-content: flex-end;
    padding-block: 80px 48px;
  }

  .tlc-spec {
    grid-template-columns: minmax(0, 1fr);
  }
}

/*--------------------------------------------------------------
# Seguridad en cada trayecto
--------------------------------------------------------------*/
.tlc-safety {
  padding-block: clamp(80px, 10vw, 140px);
}

.tlc-safety__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px 60px;
  align-items: end;
  margin-bottom: 56px;
}

.tlc-safety__head p {
  margin: 0;
}

.tlc-pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tlc-pillar {
  position: relative;
  padding: 26px 22px 28px;
  overflow: hidden;
  border-radius: var(--tlc-radius);
  background: var(--tlc-carbon);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.5s var(--tlc-ease), box-shadow 0.5s var(--tlc-ease);
}

/* Luz que sigue al mouse (posición en --mx / --my) */
.tlc-pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 215, 20, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tlc-pillar:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(255, 215, 20, 0.35);
}

.tlc-pillar:hover::before {
  opacity: 1;
}

.tlc-pillar > * {
  position: relative;
}

.tlc-pillar i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 40px;
  font-size: 1.3rem;
  border-radius: 12px;
  background: rgba(255, 215, 20, 0.12);
  color: var(--tlc-yellow);
}

.tlc-pillar h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.tlc-pillar p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--tlc-muted-dark);
}

@media (max-width: 1100px) {
  .tlc-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlc-safety__head {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .tlc-pillars {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Videos: portada de YouTube y reproductor al hacer clic */
.tlc-videos {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 80px;
}

.tlc-video {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--tlc-radius);
  background: var(--tlc-carbon);
  aspect-ratio: 16 / 9;
}

.tlc-video:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.tlc-video__play {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  color: var(--tlc-white);
  text-align: left;
}

.tlc-video__play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--tlc-ease);
}

.tlc-video__play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 15, 17, 0.9) 0%, rgba(14, 15, 17, 0.1) 60%);
}

.tlc-video__play:hover img {
  transform: scale(1.05);
}

.tlc-video__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  font-size: 1.8rem;
  border-radius: 50%;
  background: var(--tlc-yellow);
  color: var(--tlc-ink);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(255, 215, 20, 0.2);
  transition: transform 0.45s var(--tlc-ease), box-shadow 0.45s var(--tlc-ease);
}

.tlc-video__play:hover .tlc-video__icon {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 16px rgba(255, 215, 20, 0.14);
}

.tlc-video__caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  font-stretch: 125%;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.tlc-video:first-child .tlc-video__caption {
  font-size: 1.5rem;
}

.tlc-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 760px) {
  .tlc-videos {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-video:first-child {
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }
}

/*--------------------------------------------------------------
# Historia: recorrido horizontal
--------------------------------------------------------------*/
.tlc-history {
  position: relative;
  overflow: hidden;
  background: var(--tlc-light);
}

.tlc-history__pin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding-block: clamp(80px, 9vw, 120px) 60px;
}

.tlc-history__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px 60px;
  align-items: end;
  margin-bottom: 56px;
}

.tlc-history__head p {
  margin: 0;
}

.tlc-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 48px);
  list-style: none;
}

/* Modo anclado: carril horizontal (lo activa propuesta.js en escritorio) */
.tlc-history.is-pinned .tlc-track {
  display: flex;
  width: max-content;
  margin: 0;
  padding-left: max(clamp(16px, 4vw, 48px), calc((100vw - 1320px) / 2 + 48px));
}

.tlc-stop {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 30px;
  border-radius: var(--tlc-radius);
  background: var(--tlc-white);
  box-shadow: 0 1px 0 rgba(17, 18, 20, 0.04), 0 18px 40px rgba(17, 18, 20, 0.06);
}

.tlc-stop__year {
  display: block;
  margin-bottom: auto;
  font-stretch: 125%;
  font-weight: 800;
  font-size: clamp(4rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--tlc-ink);
}

.tlc-stop__year.is-now {
  color: var(--tlc-yellow);
  -webkit-text-stroke: 2px var(--tlc-ink);
}

.tlc-stop h3 {
  margin: 30px 0 10px;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.tlc-stop p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--tlc-muted);
}

.tlc-history.is-pinned .tlc-stop {
  width: min(440px, 80vw);
  min-height: 380px;
}

.tlc-stop--photo {
  padding: 0;
  overflow: hidden;
  background: var(--tlc-ink);
}

.tlc-stop--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carretera bajo las tarjetas */
.tlc-road {
  display: none;
  position: relative;
  height: 16px;
  margin-top: 36px;
  background: var(--tlc-ink);
}

.tlc-history.is-pinned .tlc-road {
  display: block;
}

.tlc-road::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--tlc-yellow) 0 36px, transparent 36px 64px);
}

.tlc-road__truck {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--tlc-red);
  transform: translateX(var(--tlc-truck-x, 24px));
}

@media (max-width: 900px) {
  .tlc-history__head {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-stop {
    min-height: 0;
  }

  .tlc-stop--photo {
    aspect-ratio: 16 / 10;
  }
}

/*--------------------------------------------------------------
# Certificaciones y políticas
--------------------------------------------------------------*/
.tlc-compliance {
  padding-block: clamp(80px, 10vw, 140px);
}

.tlc-compliance__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px 60px;
  align-items: end;
  margin-bottom: 56px;
}

.tlc-compliance__head p {
  margin: 0;
}

.tlc-compliance__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.tlc-panel-light {
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--tlc-radius);
  background: var(--tlc-light);
}

.tlc-panel-light h3 {
  margin-bottom: 22px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.tlc-certs-img {
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 10px;
  background: var(--tlc-white);
}

.tlc-register {
  margin: 0;
}

.tlc-register div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--tlc-line);
  font-size: 0.93rem;
}

.tlc-register dt {
  font-weight: 600;
  color: var(--tlc-ink);
}

.tlc-register dd {
  margin: 0;
  font-family: var(--tlc-mono);
  font-size: 0.8rem;
  text-align: right;
  white-space: nowrap;
  color: var(--tlc-muted);
}

.tlc-docs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tlc-docs a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  margin-inline: -14px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 10px;
  color: var(--tlc-ink);
  transition: background 0.3s ease;
}

.tlc-docs a:hover {
  background: var(--tlc-white);
}

.tlc-docs a > i:first-child {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: var(--tlc-white);
  color: var(--tlc-red);
  transition: background 0.3s ease;
}

.tlc-docs a:hover > i:first-child {
  background: var(--tlc-yellow);
  color: var(--tlc-ink);
}

.tlc-docs .bi-arrow-up-right {
  margin-left: auto;
  color: var(--tlc-muted);
  transition: transform 0.35s var(--tlc-ease);
}

.tlc-docs a:hover .bi-arrow-up-right {
  transform: translate(3px, -3px);
  color: var(--tlc-ink);
}

@media (max-width: 900px) {
  .tlc-compliance__head,
  .tlc-compliance__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/*--------------------------------------------------------------
# Sedes: línea de ruta entre ciudades
--------------------------------------------------------------*/
.tlc-offices {
  padding-block: clamp(80px, 10vw, 140px);
}

.tlc-offices__head {
  margin-bottom: 56px;
}

.tlc-line-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* La ruta que une las sedes */
.tlc-line-map::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 11px;
  right: 11px;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--tlc-yellow) 0 14px, rgba(255, 215, 20, 0.25) 14px 22px);
}

.tlc-city {
  position: relative;
  padding-top: 48px;
}

.tlc-city::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--tlc-night);
  box-shadow: inset 0 0 0 5px var(--tlc-yellow);
  transition: transform 0.4s var(--tlc-ease);
}

.tlc-city.is-hq::before {
  background: var(--tlc-yellow);
  box-shadow: inset 0 0 0 5px var(--tlc-white), 0 0 0 6px var(--tlc-yellow-soft);
}

.tlc-city:hover::before {
  transform: scale(1.25);
}

.tlc-city h3 {
  margin-bottom: 6px;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  text-transform: uppercase;
}

.tlc-city__tag {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--tlc-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tlc-yellow);
}

.tlc-city p {
  margin: 0 0 4px;
  font-size: 0.93rem;
  line-height: 1.45;
  color: var(--tlc-muted-dark);
}

.tlc-city a {
  font-family: var(--tlc-mono);
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--tlc-white);
}

.tlc-city a:hover {
  color: var(--tlc-yellow);
}

@media (max-width: 1000px) {
  .tlc-line-map {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .tlc-line-map::before {
    top: 11px;
    bottom: 11px;
    left: 11px;
    right: auto;
    width: 3px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--tlc-yellow) 0 14px, rgba(255, 215, 20, 0.25) 14px 22px);
  }

  .tlc-city {
    padding: 0 0 36px 52px;
  }
}

/*--------------------------------------------------------------
# Clientes
--------------------------------------------------------------*/
.tlc-clients {
  padding-block: 70px;
  overflow: hidden;
  background: var(--tlc-white);
}

.tlc-clients__label {
  margin-bottom: 36px;
  text-align: center;
  font-family: var(--tlc-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tlc-muted);
}

.tlc-marquee {
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.tlc-marquee__track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: tlc-marquee 50s linear infinite;
}

.tlc-marquee:hover .tlc-marquee__track {
  animation-play-state: paused;
}

.tlc-marquee img {
  height: 64px;
  width: auto;
  max-width: none;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.55;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.tlc-marquee img:hover {
  filter: none;
  opacity: 1;
}

@keyframes tlc-marquee {
  to { transform: translateX(-50%); }
}

/*--------------------------------------------------------------
# PQRSDF
--------------------------------------------------------------*/
.tlc-pqrs {
  padding-block: clamp(80px, 10vw, 140px);
}

.tlc-pqrs__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 20px 60px;
  align-items: end;
  margin-bottom: 20px;
}

.tlc-pqrs__head p {
  margin: 0;
}

.tlc-pqrs__law {
  margin: 0 0 44px;
  font-family: var(--tlc-mono);
  font-size: 0.78rem;
  color: var(--tlc-muted-dark);
}

.tlc-letters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 60px;
}

.tlc-letter {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--tlc-radius);
  background: var(--tlc-carbon);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: background 0.5s var(--tlc-ease);
}

.tlc-letter:hover {
  background: var(--tlc-yellow);
}

.tlc-letter__big {
  position: absolute;
  right: 12px;
  top: -18px;
  font-stretch: 125%;
  font-weight: 800;
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  transition: color 0.5s var(--tlc-ease), transform 0.6s var(--tlc-ease);
}

.tlc-letter:hover .tlc-letter__big {
  color: rgba(17, 18, 20, 0.12);
  transform: translateY(8px);
}

.tlc-letter dt {
  position: relative;
  margin-bottom: 10px;
  font-stretch: 125%;
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--tlc-white);
  transition: color 0.4s ease;
}

.tlc-letter dd {
  position: relative;
  margin: 0;
  font-size: 0.92rem;
  color: var(--tlc-muted-dark);
  transition: color 0.4s ease;
}

.tlc-letter .tlc-letter__time {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--tlc-mono);
  font-size: 0.76rem;
  color: var(--tlc-yellow);
}

.tlc-letter:hover dt,
.tlc-letter:hover dd,
.tlc-letter:hover .tlc-letter__time {
  color: var(--tlc-ink);
}

.tlc-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px 60px;
  align-items: center;
  padding: 30px;
  border-radius: var(--tlc-radius);
  background: var(--tlc-carbon);
}

.tlc-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  counter-reset: paso;
  margin: 0;
  padding: 0;
}

.tlc-steps li {
  position: relative;
  padding-top: 46px;
  font-size: 0.86rem;
  color: var(--tlc-muted-dark);
}

.tlc-steps li::before {
  counter-increment: paso;
  content: counter(paso, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--tlc-mono);
  font-size: 0.8rem;
  color: var(--tlc-yellow);
}

.tlc-steps li::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  right: -16px;
  height: 1px;
  background: linear-gradient(90deg, var(--tlc-yellow), rgba(255, 215, 20, 0.1));
}

.tlc-steps li:last-child::after {
  right: 0;
}

.tlc-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
  color: var(--tlc-white);
}

.tlc-pqrs__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tlc-pqrs__actions .tlc-btn--line {
  color: var(--tlc-white);
}

@media (max-width: 1100px) {
  .tlc-pqrs__head,
  .tlc-flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-letters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tlc-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-steps li {
    padding: 0 0 6px 48px;
  }

  .tlc-steps li::after {
    display: none;
  }

  .tlc-pqrs__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .tlc-letters {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-letter {
    min-height: 0;
  }
}

/*--------------------------------------------------------------
# Trabaje con nosotros
--------------------------------------------------------------*/
.tlc-join {
  padding-block: clamp(80px, 10vw, 140px);
}

.tlc-join__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: calc(var(--tlc-radius) + 6px);
  background: var(--tlc-light);
}

.tlc-join__photo {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.tlc-join__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tlc-join__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
}

.tlc-join__body h2 {
  margin-bottom: 18px;
}

.tlc-join__list {
  margin: 10px 0 32px;
}

.tlc-join__list div {
  padding: 14px 0;
  border-top: 1px solid var(--tlc-line);
}

.tlc-join__list dt {
  font-weight: 700;
  color: var(--tlc-ink);
}

.tlc-join__list dd {
  margin: 2px 0 0;
  font-size: 0.93rem;
  color: var(--tlc-muted);
}

.tlc-join__body .tlc-btn {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .tlc-join__card {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-join__photo {
    min-height: 280px;
  }
}

/*--------------------------------------------------------------
# Cierre: cotización
--------------------------------------------------------------*/
.tlc-final {
  position: relative;
  padding-block: clamp(90px, 12vw, 170px);
  overflow: hidden;
}

.tlc-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 70% at 80% 100%, rgba(255, 215, 20, 0.16), transparent 70%),
    radial-gradient(40% 50% at 10% 0%, rgba(255, 215, 20, 0.06), transparent 70%);
  pointer-events: none;
}

.tlc-final__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px 80px;
  align-items: end;
}

.tlc-final h2 {
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.tlc-final h2 em {
  font-style: normal;
  color: var(--tlc-yellow);
}

.tlc-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.tlc-final__actions .tlc-btn--line {
  color: var(--tlc-white);
}

.tlc-channels {
  margin: 0;
}

.tlc-channels div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tlc-channels dt {
  padding-top: 3px;
  font-family: var(--tlc-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-muted-dark);
}

.tlc-channels dd {
  margin: 0;
  font-weight: 600;
  overflow-wrap: anywhere;
  color: var(--tlc-white);
}

.tlc-channels a {
  text-decoration: none;
}

.tlc-channels a:hover {
  color: var(--tlc-yellow);
}

@media (max-width: 900px) {
  .tlc-final__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/*--------------------------------------------------------------
# Pie de página
--------------------------------------------------------------*/
.tlc-footer {
  padding-block: 70px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.93rem;
}

.tlc-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.tlc-footer__logo {
  width: 170px;
  margin-bottom: 18px;
}

.tlc-footer p {
  max-width: 36ch;
  color: var(--tlc-muted-dark);
}

.tlc-footer h2 {
  margin-bottom: 16px;
  font-family: var(--tlc-mono);
  font-stretch: 100%;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tlc-muted-dark);
}

.tlc-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tlc-footer li {
  padding: 4px 0;
}

.tlc-footer a {
  color: #d9dce0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tlc-footer a:hover {
  color: var(--tlc-yellow);
}

.tlc-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--tlc-mono);
  font-size: 0.74rem;
  color: var(--tlc-muted-dark);
}

@media (max-width: 900px) {
  .tlc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .tlc-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* WhatsApp flotante */
.tlc-whatsapp {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  font-size: 1.7rem;
  border-radius: 50%;
  background: #25d366;
  color: var(--tlc-white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s var(--tlc-ease);
}

.tlc-whatsapp:hover {
  color: var(--tlc-white);
  transform: scale(1.08);
}

/*--------------------------------------------------------------
# Movimiento reducido
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .tlc-geo__truck {
    display: none;
  }
}

/*--------------------------------------------------------------
# Páginas internas: encabezado, formularios y consulta PQRSDF
--------------------------------------------------------------*/
.tlc-page-hero {
  position: relative;
  padding-top: calc(var(--tlc-header-h) + clamp(36px, 4.5vw, 64px));
  padding-bottom: clamp(32px, 4vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 78% 30%, rgba(255, 215, 20, 0.1), transparent 70%),
    var(--tlc-night);
}

.tlc-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 85%);
  pointer-events: none;
}

.tlc-page-hero .tlc-wrap {
  position: relative;
}

/* Más contenido que la portada: el titular va un escalón por debajo */
.tlc-page-hero__title {
  max-width: 20ch;
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--tlc-white);
}

.tlc-page-hero__lead {
  max-width: 62ch;
  margin: 0;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.6;
  color: var(--tlc-muted-dark);
}

.tlc-section {
  padding-block: clamp(56px, 7vw, 100px);
}

/* Un escalón por debajo del titular de la página */
.tlc-h3 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  text-transform: uppercase;
}

/* Dos columnas: apoyo a la izquierda, formulario a la derecha */
.tlc-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.tlc-form-aside .tlc-h3 {
  margin-bottom: 22px;
}

.tlc-mini-letters {
  margin: 0 0 32px;
}

.tlc-mini-letters > div {
  padding: 14px 0;
  border-top: 1px solid var(--tlc-line);
}

.tlc-mini-letters dt {
  font-family: var(--tlc-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-ink);
}

.tlc-mini-letters dd {
  margin: 6px 0 0;
  font-size: 0.95rem;
  color: var(--tlc-muted);
}

.tlc-aside-note {
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: var(--tlc-radius);
  background: var(--tlc-light);
}

.tlc-aside-note h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.tlc-aside-note p {
  font-size: 0.95rem;
  color: var(--tlc-muted);
}

.tlc-aside-note .tlc-btn--line {
  color: var(--tlc-ink);
}

.tlc-legal {
  margin: 24px 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--tlc-muted);
}

/* Tarjeta del formulario */
.tlc-form-card {
  padding: clamp(24px, 3vw, 44px);
  border-radius: var(--tlc-radius);
  background: var(--tlc-white);
  box-shadow: 0 30px 60px rgba(17, 18, 20, 0.1), inset 0 0 0 1px var(--tlc-line);
}

.tlc-form-card--narrow {
  width: min(560px, 100%);
}

.tlc-form-card__intro {
  margin-bottom: 26px;
  font-size: 0.95rem;
  color: var(--tlc-muted);
}

.tlc-form-card__foot {
  margin: 22px 0 0;
  font-size: 0.9rem;
  color: var(--tlc-muted);
}

.tlc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tlc-field {
  display: grid;
  gap: 7px;
}

.tlc-field--full {
  grid-column: 1 / -1;
}

.tlc-field label {
  font-family: var(--tlc-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tlc-muted);
}

.tlc-field input,
.tlc-field select,
.tlc-field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--tlc-font);
  font-size: 1rem;
  color: var(--tlc-ink);
  background: var(--tlc-white);
  border: 1px solid var(--tlc-line);
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.tlc-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.tlc-field input:focus,
.tlc-field select:focus,
.tlc-field textarea:focus {
  outline: none;
  border-color: var(--tlc-yellow);
  box-shadow: 0 0 0 4px var(--tlc-yellow-soft);
}

.tlc-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tlc-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--tlc-yellow);
  flex-shrink: 0;
}

.tlc-check label {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--tlc-muted);
}

.tlc-form .tlc-btn {
  justify-content: center;
}

/* Consulta de estado (nombre propio: .tlc-track es la línea de tiempo de Historia) */
.tlc-consulta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  justify-items: center;
}

/* Una sola columna centrada: formulario, radicado y resultado con el mismo ancho */
.tlc-consulta > *,
.tlc-consulta .tlc-form-card--narrow,
.tlc-consulta .tlc-radicado,
.tlc-consulta .tlc-track-result {
  width: min(640px, 100%);
}

.tlc-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--tlc-light);
  font-size: 0.95rem;
  color: var(--tlc-muted);
}

.tlc-note i {
  color: var(--tlc-ink);
}

.tlc-track-result {
  width: 100%;
  border-radius: var(--tlc-radius);
  background: var(--tlc-night);
  color: #c9ccd1;
  overflow: hidden;
}

.tlc-track-result__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tlc-track-result__label {
  display: block;
  margin-bottom: 4px;
  font-family: var(--tlc-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-muted-dark);
}

.tlc-track-result__head strong {
  font-stretch: 112%;
  font-size: 1.15rem;
  color: var(--tlc-white);
}

/* Línea de estados: los alcanzados se marcan en amarillo */
.tlc-track-result__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
}

.tlc-track-result__steps li {
  padding-top: 14px;
  border-top: 2px solid rgba(255, 255, 255, 0.14);
  font-family: var(--tlc-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tlc-muted-dark);
}

.tlc-track-result__steps li.is-done {
  border-top-color: var(--tlc-yellow);
  color: var(--tlc-white);
}

.tlc-track-result__body {
  padding: 0 clamp(22px, 3vw, 32px) clamp(24px, 3vw, 36px);
}

.tlc-track-result__body h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: var(--tlc-white);
}

.tlc-track-result__answer {
  margin-top: 26px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tlc-track-result__answer p {
  margin: 0;
  color: var(--tlc-white);
}

.tlc-track-result__pending {
  margin: 0;
  color: var(--tlc-muted-dark);
}

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

  .tlc-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .tlc-track-result__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Canales de contacto */
.tlc-aside-text {
  margin-bottom: 26px;
  color: var(--tlc-muted);
}

.tlc-channels-page {
  margin: 0 0 32px;
}

.tlc-channels-page > div {
  padding: 16px 0;
  border-top: 1px solid var(--tlc-line);
}

.tlc-channels-page dt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-family: var(--tlc-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-ink);
}

.tlc-channels-page dd {
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: var(--tlc-muted);
}

.tlc-channels-page a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.tlc-channels-page a:hover {
  color: var(--tlc-ink);
  border-bottom-color: var(--tlc-yellow);
}

.tlc-aside-note .tlc-btn + .tlc-btn {
  margin-top: 10px;
}

/* Campo trampa para robots: fuera de la vista, nunca enfocable */
.tlc-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.tlc-map-section {
  padding-bottom: clamp(56px, 7vw, 100px);
}

.tlc-map {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  border: 0;
}

/* Requisitos para trabajar con TLC */
.tlc-reqs {
  display: grid;
  gap: 14px;
}

.tlc-req {
  border-radius: var(--tlc-radius);
  background: var(--tlc-light);
  overflow: hidden;
}

.tlc-req summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(18px, 2.2vw, 26px);
  font-family: var(--tlc-font);
  font-stretch: 112%;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  text-transform: uppercase;
  color: var(--tlc-ink);
  cursor: pointer;
  list-style: none;
}

.tlc-req summary::-webkit-details-marker {
  display: none;
}

.tlc-req summary::after {
  content: "\F282";
  margin-left: auto;
  font-family: "bootstrap-icons";
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.3s var(--tlc-ease);
}

.tlc-req[open] summary::after {
  transform: rotate(180deg);
}

.tlc-req__num {
  font-family: var(--tlc-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--tlc-muted);
}

.tlc-req__body {
  padding: 0 clamp(18px, 2.2vw, 26px) clamp(20px, 2.4vw, 30px);
}

.tlc-req__body h3 {
  margin: 18px 0 10px;
  font-size: 0.82rem;
  font-family: var(--tlc-mono);
  font-stretch: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-muted);
}

.tlc-req__body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--tlc-text);
}

.tlc-req__body li {
  margin-bottom: 7px;
  line-height: 1.55;
}

/* Texto corrido: política de privacidad, 404 */
.tlc-prose {
  max-width: 72ch;
}

.tlc-prose h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  text-transform: uppercase;
}

.tlc-prose p,
.tlc-prose li {
  color: var(--tlc-text);
  line-height: 1.75;
}

.tlc-prose ul {
  padding-left: 18px;
}

.tlc-prose li {
  margin-bottom: 8px;
}

.tlc-prose a {
  color: var(--tlc-ink);
  text-decoration: underline;
  text-decoration-color: var(--tlc-yellow);
  text-underline-offset: 3px;
}

/* Aviso de validación dentro de un formulario */
.tlc-form-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(214, 38, 46, 0.07);
  box-shadow: inset 0 0 0 1px rgba(214, 38, 46, 0.28);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--tlc-ink);
}

.tlc-form-error i {
  margin-top: 2px;
  color: var(--tlc-red);
}

.tlc-form-error a {
  color: var(--tlc-ink);
  text-decoration: underline;
  text-decoration-color: var(--tlc-yellow);
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* El navegador marca el campo en cuanto la persona intenta enviarlo */
.tlc-field input:user-invalid,
.tlc-field select:user-invalid,
.tlc-field textarea:user-invalid {
  border-color: var(--tlc-red);
}

/* Confirmación de radicación */
.tlc-radicado {
  width: 100%;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--tlc-radius);
  background: var(--tlc-night);
  color: #c9ccd1;
}

.tlc-radicado__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--tlc-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tlc-muted-dark);
}

.tlc-radicado__label i {
  color: #3ddc84;
  font-size: 1rem;
}

.tlc-radicado__num {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.tlc-radicado__num strong {
  font-family: var(--tlc-mono);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  letter-spacing: 0.02em;
  color: var(--tlc-yellow);
  user-select: all;
}

.tlc-radicado__hint {
  max-width: 60ch;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--tlc-muted-dark);
}

/* Botón de copiar */
.tlc-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-family: var(--tlc-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  color: var(--tlc-white);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.tlc-copy:hover {
  background: var(--tlc-yellow);
  box-shadow: inset 0 0 0 1px var(--tlc-yellow);
  color: var(--tlc-ink);
}

.tlc-copy.is-copied {
  background: #3ddc84;
  box-shadow: inset 0 0 0 1px #3ddc84;
  color: var(--tlc-ink);
}

.tlc-track-result__head .tlc-copy {
  margin-top: 8px;
  padding: 6px 12px;
  font-size: 0.68rem;
}

/* Acceso al panel: discreto, en la barra inferior del pie */
.tlc-footer__acceso {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--tlc-muted-dark);
  transition: color 0.3s ease;
}

.tlc-footer__acceso:hover {
  color: var(--tlc-yellow);
}
