/* ===========================================================
   footer-team-link.css
   Link discreto no footer pro login do funcionário — mesma cor
   de fundo do footer (tp-bg-secoundery), texto pequeno e opaco,
   não chama atenção mas está acessível.
=========================================================== */
.tp-footer-bottom-links {
  display: flex;
  align-items: center;
}

.tp-footer-team-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tp-footer-team-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 576px) {
  .tp-footer-team-link {
    font-size: 11px;
  }
}
