/* =========================================================
   Topbar — datos de contacto sobre fondo oscuro
   ========================================================= */

.tla-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.tla-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--green-600);
  color: #fff;
  font: 600 13px var(--font-display);
  border-radius: 0 0 8px 0;
}
.tla-skip-link:focus { left: 0; outline: 0; }

.tla-topbar {
  background: var(--neutral-900);
  color: var(--fg-on-dark);
  font-size: 12px;
}
.tla-topbar__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.tla-topbar__contact {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.tla-topbar__link {
  color: var(--fg-on-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-fast) var(--ease);
}
.tla-topbar__link:hover { color: var(--green-300); }

.tla-topbar__social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.tla-topbar__social-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--fg-on-dark-muted);
}
.tla-topbar__social-link {
  color: var(--fg-on-dark);
  display: inline-grid;
  place-items: center;
  transition: color var(--dur-fast) var(--ease);
}
.tla-topbar__social-link:hover { color: var(--green-300); }

@media (max-width: 720px) {
  .tla-topbar__inner { padding: 8px 20px; gap: 10px; font-size: 11.5px; }
  .tla-topbar__contact { gap: 14px; }
  .tla-topbar__link span { display: none; }
  .tla-topbar__link { padding: 4px; }
}
