/* style.css - Estilos compartilhados do Rifador */

:root {
  --brand-600: #3d63d6;
  --brand-700: #2f4bab;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fade-in .3s ease-out; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.card-shadow {
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.number-btn {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease;
  user-select: none;
  border: 1px solid #e2e8f0;
}
.number-btn:hover:not(.taken) { transform: scale(1.06); }
.number-btn.available {
  background: #f8fafc;
  color: #334155;
}
.number-btn.selected {
  background: #3d63d6;
  color: #fff;
  border-color: #2f4bab;
}
.number-btn.taken {
  background: #fca5a5;
  color: #7f1d1d;
  cursor: not-allowed;
  opacity: 0.85;
  border-color: #f87171;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.step-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: #e2e8f0;
  color: #64748b;
}
.step-dot.active {
  background: #3d63d6;
  color: #fff;
}
.step-dot.done {
  background: #10b981;
  color: #fff;
}
.step-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
}
.step-line.done { background: #10b981; }

.scrollbar-thin::-webkit-scrollbar { height: 6px; width: 6px; }
.scrollbar-thin::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
