/* ═══════════ STREAK DIÁRIO ═══════════ */
.streak-chip{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px 10px;
  background:linear-gradient(135deg, rgba(255,107,43,0.18), rgba(245,200,66,0.12));
  border:1px solid rgba(255,107,43,0.35);
  border-radius:14px;
  font-weight:800;
  font-size:0.78rem;
  color:#ff6b2b;
  cursor:default;
  animation:streak-pulse 2.2s ease-in-out infinite;
}
.streak-flame{
  font-size:0.9rem;
  filter:drop-shadow(0 0 4px rgba(255,107,43,0.6));
}
.streak-num{
  color:var(--gold);
  text-shadow:0 0 6px rgba(245,200,66,0.4);
}
@keyframes streak-pulse{
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,43,0.0); }
  50%      { box-shadow: 0 0 12px 0 rgba(255,107,43,0.25); }
}

/* Card detalhado (no perfil) */
.streak-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  background:linear-gradient(135deg, rgba(255,107,43,0.12), rgba(245,200,66,0.08));
  border:1px solid rgba(255,107,43,0.30);
  border-radius:12px;
  margin-bottom:14px;
}
.streak-card-em{
  font-size:2.6rem;
  animation:streak-flame 1.6s ease-in-out infinite;
}
@keyframes streak-flame{
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}
.streak-card-body{ flex:1; min-width:0; }
.streak-card-num{
  font-size:1.2rem;
  font-weight:900;
  color:#ff6b2b;
  font-family:'Cinzel Decorative', serif;
}
.streak-card-sub{
  font-size:0.74rem;
  color:var(--muted2);
  margin-top:2px;
}
