/* A bolinha de título novo (#1372), nas duas fotos do jogador. */
.tit__ponto {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 0 2px #fff, 0 0 8px #ff3b3b;
  animation: tit-pulsa 1.4s ease-in-out infinite;
  pointer-events: none;
}
/* Zerg 22/09 (8º lote #8): "a bolinha vermelha de notificação está muito grande... avisar sem incomodar". Era 22%/16% do retrato — ~30% menor. */
.btf__retrato > .tit__ponto { top: 4%; right: 4%; width: 15%; height: 15%; }
.profile__avatar > .tit__ponto { top: 9%; right: 9%; width: 11%; height: 11%; }
@keyframes tit-pulsa { 0%, 100% { transform: scale(1) } 50% { transform: scale(1.25) } }
