/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0d1b2e 0%, #1a2f4a 60%, #15273c 100%);
  border-radius: 16px;
  padding: 44px 20px 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(31, 131, 216, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--laranja);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.hero-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  position: relative;
}

.hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 20px;
  position: relative;
}

.hero-search {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 14px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-search button {
  background: var(--azul);
  border: none;
  color: #fff;
  padding: 0 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.hero-search button:hover {
  background: var(--azul-escuro);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 22px;
  position: relative;
}

.hero-stat-num {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.hero-stat-lab {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Cabeçalho de seção ===== */
.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.label-row .secao-titulo {
  margin-bottom: 0;
}

.ver-mais {
  font-size: 13px;
  color: var(--azul);
  cursor: pointer;
}

/* ===== Artistas ===== */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.artist-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
  color: var(--text-primary);
}

.artist-card:hover {
  transform: translateY(-2px);
  border-color: var(--azul);
  text-decoration: none;
}

.artist-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-info {
  min-width: 0;
}

.artist-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-count {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== Duas colunas (mais acessadas | categorias) ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ===== Mais acessadas ===== */
.top-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-primary);
}

.top-item:hover {
  background: var(--surface-1);
  text-decoration: none;
}

.top-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 18px;
  text-align: center;
}

.top-info {
  flex: 1;
  min-width: 0;
}

.top-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-artist {
  font-size: 11px;
  color: var(--text-muted);
}

.top-actions {
  display: flex;
  gap: 4px;
  align-items: center;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  border-radius: 6px;
  display: flex;
}

.icon-btn:hover {
  color: var(--azul);
  background: var(--azul-suave);
}

.icon-btn.fav:hover {
  color: var(--laranja);
  background: var(--laranja-suave);
}

/* ===== Categorias ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}

.cat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.cat-card:hover {
  border-color: var(--azul);
  transform: translateY(-2px);
  text-decoration: none;
}

.cat-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.cat-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.cat-count {
  font-size: 10px;
  color: var(--text-muted);
}

/* ===== Últimas adicionadas ===== */
.ul-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ul-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-primary);
}

.ul-item:hover {
  border-color: var(--azul);
  text-decoration: none;
}

.ul-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--azul);
  flex-shrink: 0;
}

.ul-info {
  flex: 1;
  min-width: 0;
}

.ul-name {
  font-size: 13px;
  font-weight: 600;
}

.ul-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.ul-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.tag-blue {
  background: var(--azul-suave);
  color: var(--azul-escuro);
}

/* ===== Responsivo ===== */
@media (max-width: 760px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 22px;
  }
}
