.team-modern {
  position: relative;
}

.team-modern-flag {
  position: absolute;
  bottom: 10px; /* Ajuste conforme necessário */
  right: 10px; /* Ajuste conforme necessário */
  width: 30px; /* Ajuste o tamanho da bandeira */
  height: auto; /* Proporção automática */
  border-radius: 3px; /* Opcional: Arredondamento */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Opcional: Sombra */
}

.vagas-esgotadas {
  position: absolute; 
  top: 20px; 
  right: -60px; 
  width: 200px; 
  background: rgba(255, 0, 0, 0.7); 
  color: white; 
  text-align: center; 
  padding: 10px 0; 
  transform: rotate(25deg);
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 10;
}

a.button.disabled {
  pointer-events: none;       /* Bloqueia cliques */
  cursor: not-allowed;        /* Mostra cursor "não permitido" */
  opacity: 0.7;               /* Deixa o botão semi-transparente */
  background-color: #ccc !important;
  color: #666 !important;
  border-color: #999 !important;
  text-decoration: none;      /* Remove sublinhado (se houver) */
}

/* Remove efeitos hover (se o botão tiver animações) */
a.button.disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}