/* Reset e Variáveis */
:root {
  --bg-main: #09090b;       /* Fundo super escuro */
  --bg-card: #121216;       /* Fundo dos cartões e cabeçalho */
  --bg-player: #141419;     /* Player escuro destacado */
  --text-main: #f4f4f5;     /* Texto claro */
  --text-muted: #a1a1aa;    /* Texto secundário */
  
  /* Cores Nostálgicas Vibrantes */
  --color-70s: #fbbf24;     /* Amarelo/Ouro Disco */
  --color-80s: #ec4899;     /* Rosa Neon/Magenta */
  --color-90s: #06b6d4;     /* Ciano/Azul Vibrante */
  --color-romance: #ef4444; /* Vermelho Paixão */
  
  /* Glassmorphism */
  --glass-bg: rgba(20, 20, 25, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

/* Layout Principal */
.app-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* --- Cabeçalho Fixo --- */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 0 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Logo Estilizada com Disco de Vinil */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  cursor: pointer;
}

.vinyl-logo {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle, #3f3f46 0%, #18181b 30%, #09090b 60%, #000000 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 8s linear infinite;
  transition: animation-duration 0.3s ease;
}

.logo-wrapper:hover .vinyl-logo {
  animation-duration: 2s;
}

/* Ranhuras do Vinil */
.vinyl-grooves {
  position: absolute;
  top: 3px; left: 3px; right: 3px; bottom: 3px;
  border-radius: 50%;
  border: 1px double rgba(255, 255, 255, 0.04);
  box-shadow: 
    inset 0 0 0 3px rgba(0,0,0,0.9),
    inset 0 0 0 4px rgba(255,255,255,0.02),
    inset 0 0 0 7px rgba(0,0,0,0.9),
    inset 0 0 0 8px rgba(255,255,255,0.02);
  pointer-events: none;
}

/* Brilho/Efeito Reflexo do Disco */
.vinyl-logo::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 40deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.12) 35deg,
    transparent 70deg,
    transparent 180deg,
    rgba(255, 255, 255, 0.12) 215deg,
    transparent 250deg
  );
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Selo central colorido */
.vinyl-label {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-80s) 0%, var(--color-90s) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 3px rgba(0,0,0,0.4);
}

/* Furo central do vinil */
.vinyl-center {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--bg-main);
  position: absolute;
  z-index: 3;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-virtual {
  color: var(--text-main);
  letter-spacing: 2px;
}

.logo-flashback {
  background: linear-gradient(90deg, var(--color-80s), var(--color-90s));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-size: 1.05rem;
}

/* --- Área Principal de Conteúdo --- */
.main-content {
  margin-top: 70px; /* Compensa a barra de topo fixa */
  padding: 32px 16px;
  flex-grow: 1;
  background: linear-gradient(180deg, #101014 0%, var(--bg-main) 100%);
  display: flex;
  justify-content: center;
}

.content-wrapper {
  width: 100%;
  max-width: 820px; /* Coluna única centralizada estreita e limpa */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Banner */
.banner-wrapper {
  display: flex;
  justify-content: center;
  padding: 6px 0 14px;
}

.banner-img {
  max-width: 520px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.banner-img:hover {
  opacity: 1;
}

/* Barra de Pesquisa */
.search-section {
  margin-bottom: 8px;
}

.search-bar-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 18px;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.2s;
}

#search-input {
  width: 100%;
  padding: 16px 50px 16px 52px;
  background-color: rgba(20, 20, 25, 0.7);
  border: 1.5px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-main);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#search-input:focus {
  background-color: rgba(24, 24, 30, 0.9);
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15), 0 4px 10px rgba(0, 0, 0, 0.3);
}

#search-input:focus + .search-icon {
  color: var(--color-90s);
}

.clear-search-btn {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: none; /* Controlado via JS */
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.2s;
}

.clear-search-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.clear-search-btn svg {
  width: 18px;
  height: 18px;
}

/* Botões de Ação (Tocar Aleatório e Trocar Fileira) */
.controls-section {
  margin-bottom: 8px;
}

.controls-buttons-container {
  display: flex;
  gap: 16px;
  width: 100%;
}

.action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
}

/* Botão Tocar Aleatório */
#shuffle-play-btn {
  background: linear-gradient(90deg, var(--color-80s) 0%, #a855f7 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25);
}

#shuffle-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

#shuffle-play-btn:active {
  transform: translateY(0);
}

/* Botão Trocar Fileira (Outline) */
#swap-batch-btn {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--glass-border);
  color: var(--text-main);
}

#swap-batch-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

#swap-batch-btn:active {
  transform: translateY(0);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* --- Lista de Músicas --- */
.tops-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.list-container-header {
  padding: 18px 24px;
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-title-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.song-list-flat {
  display: flex;
  flex-direction: column;
}

.song-row {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  transition: all 0.2s;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.song-row:last-child {
  border-bottom: none;
}

.song-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.song-play-btn-left {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.song-play-btn-left svg {
  width: 16px;
  height: 16px;
}

.song-row:hover .song-play-btn-left {
  color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* Cores específicas de play por década */
.song-play-btn-left.play-btn-70s:hover, .song-row.playing .song-play-btn-left.play-btn-70s {
  background: var(--color-70s);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.song-play-btn-left.play-btn-80s:hover, .song-row.playing .song-play-btn-left.play-btn-80s {
  background: var(--color-80s);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.song-play-btn-left.play-btn-90s:hover, .song-row.playing .song-play-btn-left.play-btn-90s {
  background: var(--color-90s);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.song-play-btn-left.play-btn-romance:hover, .song-row.playing .song-play-btn-left.play-btn-romance {
  background: var(--color-romance);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.song-row .row-icon-play {
  display: block;
}

.song-row .row-icon-pause {
  display: none;
}

.song-row.playing .row-icon-play {
  display: none;
}

.song-row.playing .row-icon-pause {
  display: block;
}

.song-row.playing.paused-state .row-icon-play {
  display: block;
}

.song-row.playing.paused-state .row-icon-pause {
  display: none;
}

.song-info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  min-width: 0; /* Permite truncamento do texto */
}

/* Bloco dos textos da música */
.song-text-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-grow: 1;
}

.song-title {
  font-weight: 600;
  font-size: 0.88rem; /* reduzido para caber melhor em uma linha */
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-artist {
  font-size: 0.76rem; /* reduzido para caber melhor em uma linha */
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* Tags de década/Romance */
.song-tags {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 12px;
}

.tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-70s {
  background-color: rgba(251, 191, 36, 0.12);
  color: var(--color-70s);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.tag-80s {
  background-color: rgba(236, 72, 153, 0.12);
  color: var(--color-80s);
  border: 1px solid rgba(236, 72, 153, 0.2);
}

.tag-90s {
  background-color: rgba(6, 182, 212, 0.12);
  color: var(--color-90s);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.tag-romance {
  background-color: rgba(239, 68, 68, 0.12);
  color: var(--color-romance);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Animação do Equalizador ("Hits mexendo") no meio */
.equalizer-bars {
  display: none; /* Só visível quando tocando */
  align-items: flex-end;
  gap: 2.5px;
  height: 16px;
  width: 22px;
  margin-left: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.song-row.playing .equalizer-bars {
  display: flex;
}

.bar {
  width: 3px;
  height: 100%;
  border-radius: 1px;
  background-color: var(--color-90s);
  transform-origin: bottom;
  animation: bounce 0.8s ease-in-out infinite alternate;
}

/* Variação de tempo das barras do equalizador */
.bar:nth-child(1) { animation-delay: 0.1s; animation-duration: 0.75s; background-color: var(--color-80s); }
.bar:nth-child(2) { animation-delay: 0.3s; animation-duration: 0.6s; background-color: var(--color-90s); }
.bar:nth-child(3) { animation-delay: 0.0s; animation-duration: 0.9s; background-color: var(--color-80s); }
.bar:nth-child(4) { animation-delay: 0.4s; animation-duration: 0.7s; background-color: var(--color-70s); }

/* Congela a animação quando pausado */
.song-row.playing.paused-state .bar {
  animation-play-state: paused;
}

.song-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 40px;
  text-align: right;
  flex-shrink: 0;
}

.song-row:hover .song-duration {
  color: var(--text-main);
}

/* Mensagem de Sem Resultados */
.no-results-msg {
  padding: 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.no-results-msg svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
}

.no-results-msg p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.clear-search-link {
  background: none;
  border: none;
  color: var(--color-90s);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}

.clear-search-link:hover {
  color: #22d3ee;
}

/* Espaçador inferior */
.padding-bottom-spacer {
  height: 110px;
}

/* --- Player Fixo Inferior --- */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background-color: var(--bg-player);
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

/* Track Info */
.player-track-info {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 30%;
  min-width: 180px;
}

.track-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.track-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-main);
}

.track-artist {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.like-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  margin-left: 12px;
  display: flex;
  transition: color 0.2s;
  flex-shrink: 0;
}

.like-btn:hover, .like-btn.liked {
  color: var(--color-romance);
}

.like-btn svg {
  width: 18px;
  height: 18px;
}

/* Player Controls */
.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  max-width: 500px;
}

.control-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 6px;
}

.control-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.control-btn:hover {
  color: var(--text-main);
  background-color: rgba(255,255,255,0.03);
}

.control-btn:active {
  transform: scale(0.92);
}

.control-btn svg {
  width: 18px;
  height: 18px;
}

.play-pause-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--text-main);
  color: var(--bg-main);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 10px rgba(255,255,255,0.15);
}

.play-pause-btn:hover {
  transform: scale(1.08);
  background-color: #ffffff;
}

.play-pause-btn:active {
  transform: scale(0.95);
}

.play-pause-btn svg {
  width: 18px;
  height: 18px;
}

.play-pause-btn .icon-play {
  margin-left: 2px;
}

.hidden {
  display: none !important;
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.time-current, .time-total {
  font-size: 0.72rem;
  color: var(--text-muted);
  min-width: 32px;
}

.time-current {
  text-align: right;
}

.progress-bar {
  flex-grow: 1;
  height: 4px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: height 0.15s;
}

.progress-bar:hover {
  height: 6px;
}

.progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background-color: var(--text-main);
  border-radius: 2px;
}

.progress-bar:hover .progress-fill {
  background-color: var(--color-90s);
}

/* Volume / Extras */
.player-extras {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 30%;
  min-width: 150px;
}

.volume-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.2s;
}

.volume-btn:hover {
  background-color: rgba(255,255,255,0.03);
  color: var(--text-main);
}

.volume-icon {
  width: 18px;
  height: 18px;
}

.volume-bar {
  width: 90px;
  height: 4px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: height 0.15s;
}

.volume-bar:hover {
  height: 6px;
}

.volume-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background-color: var(--text-main);
  border-radius: 2px;
}

.volume-bar:hover .volume-fill {
  background-color: var(--color-90s);
}

/* Filtro por Década */
.decade-filter-group {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.decade-btn {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
}

.decade-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.15);
}

.decade-btn.active-all {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.decade-btn.active-70s {
  border-color: var(--color-70s);
  color: var(--color-70s);
  background: rgba(251, 191, 36, 0.1);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.15);
}

.decade-btn.active-80s {
  border-color: var(--color-80s);
  color: var(--color-80s);
  background: rgba(236, 72, 153, 0.1);
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.15);
}

.decade-btn.active-90s {
  border-color: var(--color-90s);
  color: var(--color-90s);
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

/* --- KEYFRAMES --- */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce {
  0% {
    transform: scaleY(0.2);
  }
  100% {
    transform: scaleY(1);
  }
}

/* --- Responsividade --- */
@media (max-width: 768px) {
  .fixed-header {
    height: 65px;
  }
  
  .main-content {
    margin-top: 65px;
    padding: 20px 12px;
  }
  
  .logo-text {
    font-size: 1.05rem;
  }
  
  .logo-flashback {
    font-size: 0.88rem;
  }
  
  .controls-buttons-container {
    gap: 10px;
  }

  .action-btn {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .decade-filter-group {
    gap: 6px;
  }

  .decade-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  #search-input {
    padding: 12px 42px 12px 44px;
    font-size: 0.9rem;
  }
  
  .search-icon {
    left: 14px;
    width: 18px;
    height: 18px;
  }
  
  .song-row {
    padding: 12px 16px;
  }
  
  .song-play-btn {
    opacity: 1; /* Sempre visível no mobile */
    transform: scale(1);
    margin-right: 6px;
  }
  
  .song-tags {
    padding-left: 8px;
  }
  
  .tag {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
  
  .equalizer-bars {
    margin-right: 12px;
    width: 18px;
    gap: 2px;
  }
  
  .bar {
    width: 2.5px;
  }

  .song-title {
    font-size: 0.8rem;
  }
  
  .song-artist {
    font-size: 0.7rem;
  }

  .player-bar {
    padding: 0 16px;
    height: 80px;
  }
  
  .track-name {
    font-size: 0.85rem;
  }
  
  .track-artist {
    font-size: 0.72rem;
  }
  
  .player-extras {
    display: none; /* Esconde volume no mobile */
  }
  
  .player-controls {
    width: auto;
    flex-grow: 1;
    max-width: none;
    padding-left: 12px;
  }
}

@media (max-width: 480px) {
  /* No mobile muito pequeno, oculta as tags nas linhas de música se o espaço for crítico
     ou deixa quebrar. Vamos apenas esconder a tag de Romance para não apertar */
  .tag-romance {
    display: none;
  }
}
