/* =========================================================
   HOME 2026 — sistema visual del índice (ámbito: body.home)
   Todo va prefijado con .home para no afectar al resto del site.
   ========================================================= */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/dm-sans-v17-latin-600.woff2') format('woff2');
}

.home {
  /* Paleta: los cuatro acentos son los modos reales del tacógrafo */
  --ink: #0E141C;
  --slate: #273347;
  --road: #E63C39;
  /* conducción · acción */
  --rest: #159E8B;
  /* pausa · cumplimiento */
  --rest-deep: #0C6B5F;
  /* descanso diario */
  --avail: #E9A13B;
  /* disponibilidad */
  --paper: #F6F8FB;
  --line: #DCE2EB;
  --muted: #5C6B7E;

  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;

  --fs-display: clamp(2.3rem, 1.1rem + 4.4vw, 4.1rem);
  --fs-h2: clamp(1.8rem, 1.1rem + 2.4vw, 2.9rem);
  --fs-h3: clamp(1.2rem, 1rem + .9vw, 1.55rem);
  --fs-lead: clamp(1.02rem, .96rem + .3vw, 1.2rem);

  --gap-section: clamp(3.5rem, 7vw, 7rem);
  --r: 14px;
}

/* ---------- Ritmo y tipografía base ---------- */
.home .section-padding {
  padding-top: var(--gap-section);
  padding-bottom: var(--gap-section);
}

.home h1,
.home h2 {
  letter-spacing: -.028em;
  line-height: 1.06;
}

.home h3 {
  letter-spacing: -.018em;
  line-height: 1.18;
}

.home h2 {
  font-size: var(--fs-h2);
}

.home h3 {
  font-size: var(--fs-h3);
}

.home .lead {
  font-size: var(--fs-lead);
  line-height: 1.62;
}

.home p {
  max-width: 68ch;
}

.home .tt-measure {
  max-width: 62ch;
}

/* subrayado de énfasis: trazo, no <u> del navegador */
.home u {
  text-decoration: none;
  background-image: linear-gradient(var(--road), var(--road));
  background-repeat: no-repeat;
  background-size: 100% .14em;
  background-position: 0 92%;
  padding-bottom: .06em;
}

/* ---------- Eyebrow: la regla de modos en miniatura ---------- */
.home .tt-eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.home .tt-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 38px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(90deg,
      var(--road) 0 46%, var(--rest) 46% 70%, var(--avail) 70% 84%, var(--slate) 84% 100%);
}

.home .bg-brand-dark .tt-eyebrow,
.home .tt-eyebrow--light {
  color: rgba(255, 255, 255, .68);
}

/* ---------- Etiquetas de dato (mono) ---------- */
.home .tt-data {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}

/* ---------- Botones ---------- */
.home .btn {
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.home .btn-danger {
  background: var(--road);
  border-color: var(--road);
  box-shadow: 0 6px 18px -6px rgba(230, 60, 57, .55);
}

.home .btn-danger:hover {
  background: #cf3230;
  border-color: #cf3230;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -8px rgba(230, 60, 57, .6);
}

.home .btn-outline-light:hover {
  transform: translateY(-2px);
}

.home a:focus-visible,
.home button:focus-visible {
  outline: 3px solid var(--avail);
  outline-offset: 3px;
  border-radius: 6px;
}

.home .tt-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: var(--ink);
  padding: .8rem 1.2rem;
  font-weight: 700;
  border-radius: 0 0 10px 0;
}

.home .tt-skip:focus {
  left: 0;
}

/* ---------- Navbar: hairline y menús más limpios ---------- */
.home .navbar {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.home .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .5rem;
  box-shadow: 0 18px 40px -18px rgba(14, 20, 28, .35);
}

.home .dropdown-item {
  border-radius: 8px;
  padding: .5rem .7rem;
}

.home .dropdown-header {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   HERO — la lectura de una jornada, en directo
   ========================================================= */
.home .tt-hero {
  position: relative;
  min-height: min(92svh, 860px);
  overflow: hidden;
}

/* anulamos el degradado cian heredado de custom.css */
.home .tt-hero::after {
  display: none;
}

/* custom.css deja .video-wrap en z-index:-1, así que cualquier fondo
   de la sección lo taparía. Lo subimos a 0 y el color va aquí. */
.home .tt-hero .video-wrap {
  z-index: 0;
  background: var(--ink);
}

/* Velo ligero: el vídeo se ve, el texto sigue legible. */
.home .tt-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(9, 13, 19, .86) 0 24%, rgba(9, 13, 19, .58) 52%, rgba(9, 13, 19, .22) 100%),
    linear-gradient(to top, rgba(9, 13, 19, .8), rgba(9, 13, 19, 0) 42%);
  pointer-events: none;
}

.home .tt-hero__inner {
  position: relative;
  z-index: 5;
  padding-top: clamp(3rem, 8vw, 5.5rem);
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.home .tt-hero h1 {
  font-size: var(--fs-display);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.1rem;
  /* red de seguridad si el vídeo pasa por un fotograma claro */
  text-shadow: 0 2px 24px rgba(9, 13, 19, .55);
}

.home .tt-hero h1 .tt-hl {
  color: var(--road);
}

.home .tt-hero .lead {
  color: rgba(255, 255, 255, .88);
  max-width: 54ch;
  text-shadow: 0 1px 16px rgba(9, 13, 19, .6);
}

.home .tt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(230, 60, 57, .16);
  border: 1px solid rgba(230, 60, 57, .5);
  border-radius: 999px;
  padding: .45rem .95rem;
  margin-bottom: 1.6rem;
}

.home .tt-hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--road);
}

/* ---------- El READOUT: elemento firma ---------- */
.home .tt-readout {
  margin: 0;
  /* opaco de por sí: el velo del hero es suave y detrás pasa el vídeo */
  background: rgba(10, 14, 20, .58);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: clamp(1.15rem, 2.4vw, 1.7rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .8);
}

.home .tt-readout__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  padding-bottom: .85rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.home .tt-readout__head b {
  color: #fff;
  font-weight: 600;
}

.home .tt-strip {
  display: flex;
  height: 58px;
  border-radius: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
}

/* Estado por defecto: visible. La animación solo la dibuja al entrar,
   así que si no llega a ejecutarse la banda se ve igual. */
.home .tt-seg {
  flex: var(--w) 1 0%;
  transform-origin: left center;
  animation: tt-draw .55s cubic-bezier(.22, .8, .3, 1) both;
  animation-delay: calc(.35s + var(--i) * .12s);
}

@keyframes tt-draw {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.home .tt-seg--drive {
  background: var(--road);
}

.home .tt-seg--break {
  background: var(--rest);
}

.home .tt-seg--work {
  background: #4A5A70;
}

.home .tt-seg--avail {
  background: var(--avail);
}

.home .tt-seg--rest {
  background: var(--rest-deep);
}

.home .tt-scale {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .58);
  margin-top: .45rem;
}

.home .tt-legend {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .5rem 1.1rem;
}

.home .tt-legend li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--mono);
  font-size: .74rem;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, .82);
}

.home .tt-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex: 0 0 auto;
}

.home .tt-legend span {
  color: rgba(255, 255, 255, .68);
}

.home .tt-readout__note {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .74);
  max-width: none;
}

.home .tt-readout__note i.bi {
  color: var(--rest);
  font-size: 1rem;
  line-height: 1.35;
}

.home .tt-readout__stats {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.4rem;
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .6);
}

.home .tt-readout__stats b {
  color: #fff;
  font-weight: 600;
}

/* =========================================================
   BANDA DE GARANTÍAS (bajo el hero)
   ========================================================= */
.home .tt-assure {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.home .tt-assure__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.home .tt-assure__item {
  background: #fff;
  padding: clamp(1.3rem, 2.6vw, 1.9rem);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.home .tt-assure__ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: rgba(39, 51, 71, .07);
  color: var(--slate);
}

.home .tt-assure__item:nth-child(1) .tt-assure__ico {
  background: rgba(230, 60, 57, .1);
  color: var(--road);
}

.home .tt-assure__item:nth-child(2) .tt-assure__ico {
  background: rgba(21, 158, 139, .12);
  color: var(--rest);
}

.home .tt-assure__title {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .25rem;
  letter-spacing: -.01em;
}

.home .tt-assure__text {
  display: block;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--muted);
}

/* =========================================================
   BANDAS A SANGRE (confianza / hoy-futuro / carretera)
   ========================================================= */
.home .hoy-futuro .hf-inner {
  max-width: 620px;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.home .bg-brand-dark {
  background: var(--ink) !important;
}

.home .bg-brand-dark h1,
.home .bg-brand-dark h2,
.home .bg-brand-dark h3,
.home .bg-brand-dark .fw-bold {
  color: #fff;
}

.home .bg-brand-dark p,
.home .bg-brand-dark li {
  color: #C3CEDB;
}

.home .bg-brand-dark .text-muted {
  color: #94A5B8 !important;
}

.home #section_hoy_futuro .text-white li,
.home #section_hoy_futuro .text-white p {
  color: #fff;
}

.home .confia-img {
  width: 100%;
  object-fit: cover;
  height: 340px;
  display: block;
}

@media (min-width: 992px) {
  .home #section_confianza .row {
    min-height: 480px;
  }

  .home .confia-img {
    height: 100%;
  }
}

/* chapa de sección dentro de bandas */
.home .tt-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .38rem .85rem;
}

.home .tt-chip--now {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
}

.home .tt-chip--soon {
  background: rgba(14, 20, 28, .28);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}

.home .tt-hf__ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

/* =========================================================
   PERFILES — tres puertas de entrada (grandes, con acento propio)
   ========================================================= */
.home .tt-profile {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.home .tt-profile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--accent);
}

.home .tt-profile:hover,
.home .tt-profile:focus-visible {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 22px 45px -24px rgba(14, 20, 28, .45);
}

.home .tt-profile__ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  background: var(--accent);
  margin-bottom: 1rem;
}

.home .tt-profile__title {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: .55rem;
}

.home .tt-profile__text {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.3rem;
}

.home .tt-profile__go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--accent);
}

.home .tt-profile__go .bi {
  transition: transform .22s ease;
}

.home .tt-profile:hover .tt-profile__go .bi {
  transform: translateX(5px);
}

/* =========================================================
   HERRAMIENTAS — cuatro fichas compactas
   ========================================================= */
.home .tt-tool {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home .tt-tool:hover,
.home .tt-tool:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(230, 60, 57, .45);
  box-shadow: 0 20px 40px -22px rgba(14, 20, 28, .4);
}

.home .tt-tool__ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(39, 51, 71, .07);
  color: var(--slate);
  margin-bottom: 1rem;
  transition: background-color .2s ease, color .2s ease;
}

.home .tt-tool:hover .tt-tool__ico {
  background: var(--road);
  color: #fff;
}

.home .tt-tool__title {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -.015em;
  margin-bottom: .35rem;
}

.home .tt-tool__text {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.home .tt-tool__go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--road);
}

.home .tt-tool__go .bi {
  transition: transform .22s ease;
}

.home .tt-tool:hover .tt-tool__go .bi {
  transform: translateX(4px);
}

/* =========================================================
   DIRECTORIO DE TEMAS — es un índice, así que parece un índice
   ========================================================= */
.home .tt-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  column-gap: clamp(1.5rem, 3vw, 3rem);
  row-gap: 0;
}

.home .tt-index__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem .55rem;
  border-top: 1px solid var(--line);
  text-decoration: none;
  position: relative;
  transition: background-color .18s ease, padding-left .18s ease;
}

.home .tt-index__row::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 3px;
  background: var(--road);
  transform: scaleY(0);
  transition: transform .2s ease;
}

.home .tt-index__row:hover,
.home .tt-index__row:focus-visible {
  background: #fff;
  padding-left: 1.1rem;
}

.home .tt-index__row:hover::before {
  transform: scaleY(1);
}

.home .tt-index__ico {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--slate);
  background: rgba(39, 51, 71, .07);
  transition: background-color .18s ease, color .18s ease;
}

.home .tt-index__row:hover .tt-index__ico {
  background: var(--slate);
  color: #fff;
}

.home .tt-index__title {
  display: block;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.012em;
  margin-bottom: .2rem;
}

.home .tt-index__text {
  display: block;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
}

.home .tt-index__arrow {
  margin-left: auto;
  align-self: center;
  color: var(--line);
  transition: color .18s ease, transform .18s ease;
}

.home .tt-index__row:hover .tt-index__arrow {
  color: var(--road);
  transform: translateX(3px);
}

/* =========================================================
   CÓMO FUNCIONA — aquí sí hay secuencia, así que se numera
   ========================================================= */
.home .tt-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.home .tt-step {
  display: flex;
  gap: 1.1rem;
  padding-bottom: 1.6rem;
  position: relative;
}

.home .tt-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(230, 60, 57, .55), rgba(255, 255, 255, .12));
}

.home .tt-step__n {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  background: var(--road);
  position: relative;
  z-index: 1;
}

.home .tt-step__title {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: .3rem;
  letter-spacing: -.015em;
}

.home .tt-step__text {
  display: block;
  color: #A9B8C8;
  font-size: .95rem;
  line-height: 1.6;
  max-width: 52ch;
}

/* =========================================================
   GESTIÓN 360º — selector: las cuatro áreas siempre a la vista,
   la captura sigue a la que está abierta
   ========================================================= */
.home .tt-switch {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

@media (min-width: 992px) {
  .home .tt-switch {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .home .tt-switch__media {
    grid-column: 2;
    grid-row: 1;
  }

  .home .tt-switch__list {
    grid-column: 1;
    grid-row: 1;
  }
}

/* --- captura --- */
.home .tt-switch__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  overflow: hidden;
}

/* va después de la regla base, si no `position:relative` gana por orden */
@media (min-width: 992px) {
  .home .tt-switch__media {
    position: sticky;
    top: 100px;
  }
}

.home .tt-switch__shot {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: clamp(.9rem, 2vw, 1.6rem);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s .35s;
}

.home .tt-switch__shot.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility 0s 0s;
}

.home .tt-switch__shot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
}

/* --- lista --- */
.home .tt-switch__item {
  border-top: 1px solid var(--line);
}

.home .tt-switch__item:last-child {
  border-bottom: 1px solid var(--line);
}

.home .tt-switch__h {
  margin: 0;
  font-size: inherit;
  letter-spacing: normal;
}

.home .tt-switch__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .9rem;
  background: none;
  border: 0;
  padding: 1.2rem .25rem;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: padding-left .3s ease;
}

.home .tt-switch__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}

.home .tt-switch__item.is-open .tt-switch__head::before {
  transform: scaleY(1);
}

.home .tt-switch__item.is-open .tt-switch__head,
.home .tt-switch__item.is-open .tt-switch__panelInner {
  padding-left: 1.1rem;
}

.home .tt-switch__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.015em;
}

.home .tt-switch__head:hover .tt-switch__title {
  color: var(--accent);
}

.home .tt-switch__hint {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.home .tt-switch__sign {
  margin-left: auto;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  position: relative;
}

.home .tt-switch__sign::before,
.home .tt-switch__sign::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: transform .3s ease, background-color .3s ease;
}

.home .tt-switch__sign::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
}

.home .tt-switch__sign::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
}

.home .tt-switch__item.is-open .tt-switch__sign::before {
  background: var(--accent);
}

.home .tt-switch__item.is-open .tt-switch__sign::after {
  transform: scaleY(0);
}

/* --- panel desplegable --- */
.home .tt-switch__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.home .tt-switch__item.is-open .tt-switch__panel {
  grid-template-rows: 1fr;
}

.home .tt-switch__panelInner {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0s .35s, padding-left .3s ease;
}

.home .tt-switch__item.is-open .tt-switch__panelInner {
  visibility: visible;
  transition: visibility 0s 0s, padding-left .3s ease;
}

.home .tt-switch__body {
  padding: 0 .25rem 1.6rem;
}

.home .tt-switch__sub {
  font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 .6rem;
  line-height: 1.2;
}

.home .tt-switch__body .lead {
  color: var(--muted);
  margin-bottom: 0;
}

.home .tt-switch__body .tt-check {
  margin-top: 1.1rem;
}

.home .tt-check {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.home .tt-check li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: .8rem;
  color: var(--slate);
}

.home .tt-check .bi {
  color: var(--rest);
  font-size: 1.05rem;
  line-height: 1.5;
  flex: 0 0 auto;
}

/* =========================================================
   CONTACTO
   ========================================================= */
.home .tt-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 26px 60px -34px rgba(14, 20, 28, .5);
}

.home .tt-contact-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: rgba(230, 60, 57, .1);
  color: var(--road);
  font-size: 1.15rem;
}

.home .tt-map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 420px;
  background: var(--paper);
}

/* =========================================================
   FOOTER
   ========================================================= */
.home .site-footer {
  background: var(--ink) !important;
}

.home .site-footer h6 {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home .footer-links a {
  transition: color .18s ease, padding-left .18s ease;
}

.home .footer-links a:hover {
  color: #fff !important;
  padding-left: 4px;
}

.home .social-icons .btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* =========================================================
   RESPONSIVE + ACCESIBILIDAD
   ========================================================= */
@media (max-width: 575.98px) {
  .home .tt-strip {
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .home *,
  .home *::before,
  .home *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .home .tt-seg {
    transform: scaleX(1);
  }
}
