.common-flow-container {
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
}
.title-common-flow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  text-align: center;
  padding-bottom: 20px;
}
.linha-horizontal {
  width: 100%;
  height: 1px;
  background-color: #000;
  margin-top: 20px;
}
.circulo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.circulo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  top: -25px;
  background-color: #f6fafa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer; /* Adiciona cursor para indicar que é arrastável */
  transition: border-color 0.3s ease; /* Adiciona transição suave para a mudança de cor da borda */
}

.circulo:hover {
  border: 2px solid #007bff; /* Adiciona uma borda azul quando o mouse estiver sobre o elemento */
}

.circulo:hover {
  animation-name: pulse; /* Adiciona animação pulse quando o mouse estiver sobre o elemento */
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.texto-circulo {
  text-align: center;
  position: absolute;
  bottom: -50px;
  width: 120%;
  font-size: 10px;
}
.icone-circulo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
