
.fluxo-wrapper {
  max-width: 1000px;
  margin: 0px auto;
  padding: 20px;
  position: relative;
}

/* Linha com bolinhas */
.linha-fluxo {
  position: absolute;
  left: 50%;
  width: 8px;
  background:
    radial-gradient(circle, #1ed760 3px, transparent 4px);
  background-size: 8px 18px;
  animation: fluxo 1.2s linear infinite;
  transform: translateX(-50%);
  opacity: 0.6;
  z-index: 1;
}

@keyframes fluxo {
  from { background-position-y: 0; }
  to { background-position-y: 18px; }
}

/* Etapas */
.etapa {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 3;
}

.numero {
  width: 48px;
  height: 48px;
  background: #1ed760;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 16px;
}

/* Card */
.cartao {
  background: #F5F5F5;
  border-radius: 14px;
  padding: 20px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

.cartao h4 {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 22px;
  opacity:1;
color: #000;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;

}

.tag {
  background: #222;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  color: #ffffff;
}

/* Print do sistema */
.print-sistema {
  position: relative;
  z-index: 2;
  margin: 60px auto 120px;
  max-width: 720px;
  /* background: #ffffff; */
  border-radius: 6px;
/*   padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(30,215,96,0.3); */
}

.print-sistema img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

