.vela {
  width: 140px;
  min-height: 180px;
  padding: 12px;
  background: #fffdf7;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  text-align: center;
  overflow: visible;
}

/* base da vela */
.corpo {
  width: 55px;
  height: 110px;
  background: linear-gradient(180deg, #ffffff, #f1e6d6);
  border-radius: 18px;
  margin: 20px auto 0;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.06);
  position: relative;
}

/* pavio */
.corpo::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background: #333;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* chama simples e bonita */
.chama {
  width: 14px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #fff6a0, #ff9800 60%, #ff5a00);
  border-radius: 50%;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  animation: flame 0.25s infinite alternate;
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.5);
}

@keyframes flame {
  0% { transform: translateX(-50%) scale(1) rotate(-1deg); }
  100% { transform: translateX(-50%) scale(1.1) rotate(1deg); }
}

.texto {
  margin-top: 10px;
  font-size: 13px;
  color: #333;
}

.status {
  font-size: 12px;
  margin-top: 6px;
  color: #666;
}