/* ===== STATUS ===== */
.status-box {
  text-align: center;
  padding: 24px 16px;
}
.status-icone { font-size: 3rem; margin-bottom: 8px; }
.status-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}
.st-aguardando { background: #e6a700; }
.st-pago       { background: #0a5; }
.st-enviado    { background: #2272e6; }
.st-entregue   { background: #16a34a; }
.st-cancelado  { background: #c0392b; }

.pedido-num { font-size: 1.4rem; font-weight: bold; color: #333; }
.pedido-data { color: #888; font-size: .85rem; margin-top: 4px; }

/* ===== TIMELINE ===== */
.timeline {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 12px; left: 8%; right: 8%;
  height: 3px; background: #e0e0e0; z-index: 0;
}
.tl-passo {
  flex: 1; text-align: center; position: relative; z-index: 1;
  font-size: .72rem; color: #999;
}
.tl-bola {
  width: 26px; height: 26px; border-radius: 50%;
  background: #e0e0e0; margin: 0 auto 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.tl-passo.ativo .tl-bola { background: #0a5; color: #fff; }
.tl-passo.ativo { color: #0a5; font-weight: bold; }

/* ===== ERRO ===== */
.erro-box { text-align: center; padding: 30px 16px; color: #c0392b; }
.erro-box .icone { font-size: 3rem; }
