:root{
  --tl-blue:#102039;
  --tl-red:#EA1826;
  --tl-text:rgba(255,255,255,.92);
  --tl-muted:rgba(255,255,255,.75);
  --tl-line:rgba(255,255,255,.18);
  --tl-max:1200px;
}

.tl-footer{
  background:var(--tl-blue);
  color:var(--tl-text);
  padding:44px 14px 28px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.tl-footer *{box-sizing:border-box}

.tl-footer__wrap{
  max-width:var(--tl-max);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.25fr 2fr;
  gap:56px;
  align-items:start;
}

/* LOGO */
.tl-footer__logoLink{display:inline-flex; text-decoration:none}
.tl-footer__logoImg{
  width:270px;
  max-width:100%;
  height:auto;
  display:block;
}

/* Tagline */
.tl-footer__tagline{
  margin:18px 0 0;
  max-width:360px;
  color:var(--tl-muted);
  line-height:1.55;
  font-size:16px;
}

/* Social */
.tl-footer__social{display:flex; gap:12px; margin-top:22px}
.tl-footer__socialBtn{
  width:44px;height:44px;
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--tl-red);
  border-radius:10px;
  text-decoration:none;
  transition:transform .15s ease, filter .15s ease;
}
.tl-footer__socialBtn:hover{transform:translateY(-1px);filter:brightness(1.05)}
.tl-footer__socialBtn svg{width:20px;height:20px;fill:#fff}

/* Columnas */
.tl-footer__cols{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:64px;
}
.tl-footer__title{
  margin:0 0 18px;
  font-size:26px;
  letter-spacing:.2px;
  color:#fff !important;
  font-weight:700;
}
.tl-footer__list{
  list-style:none;
  margin:0;padding:0;
  display:grid;
  gap:14px;
}
.tl-footer__list a{
  color:var(--tl-muted);
  text-decoration:none;
  font-size:18px;
}
.tl-footer__list a:hover{color:#fff;text-decoration:underline}

/* Contacto */
.tl-footer__contact{
  list-style:none;
  margin:0;padding:0;
  display:grid;
  gap:14px;
}
.tl-footer__contact li{
  display:grid;
  grid-template-columns:20px 1fr;
  gap:12px;
  align-items:start;
  color:var(--tl-muted);
  font-size:18px;
  line-height:1.4;
}
.tl-footer__contact a{color:var(--tl-muted);text-decoration:none}
.tl-footer__contact a:hover{color:#fff;text-decoration:underline}
.tl-footer__icon svg{
  width:18px;height:18px;
  fill:#fff;
  opacity:.9;
  transform:translateY(2px);
}

/* Bottom */
.tl-footer__hr{
  max-width:var(--tl-max);
  margin:34px auto 18px;
  border:none;
  height:1px;
  background:var(--tl-line);
}
.tl-footer__bottom{
  max-width:var(--tl-max);
  margin:0 auto;
  color:rgba(255,255,255,.82);
  font-size:18px;
}

@media (max-width:980px){
  .tl-footer__wrap{grid-template-columns:1fr;gap:34px}
  .tl-footer__cols{grid-template-columns:1fr;gap:34px}
  .tl-footer__title{font-size:22px;margin-bottom:12px}
  .tl-footer__list a,.tl-footer__contact li{font-size:16px}
  .tl-footer__bottom{font-size:16px}
  .tl-footer__logoImg{width:240px}
}
