/* ==========================================================================
   RAPSÓDIA DESIGN SYSTEM — REPERTÓRIO & PARTITURAS
   ========================================================================== */

.repertorio-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.music-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.music-card-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.music-card-item:hover {
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.music-card-header {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  background: var(--bg-surface);
}

.music-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.music-disc-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--wine-50);
  color: var(--wine-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.music-titles h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-main);
}

.music-titles p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.music-sheet-section {
  padding: 16px 20px;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sheet-files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-3);
}

.sheet-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: var(--shadow-xs);
}

.sheet-chip span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}
