/* ── Bloqueia arrasto horizontal apenas em touch devices ──────
   Desktop continua scroll vertical/horizontal normal.
   Mobile: bloqueia swipe-back do browser, mantém pan vertical. */
body {
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

/* Apenas dispositivos touch (sem mouse hover): bloqueia swipe horizontal */
@media (hover: none) and (pointer: coarse) {
  body { touch-action: pan-y; }
  /* Containers que precisam rolar horizontalmente em touch */
  .h-hscroll,
  .h-bcar-track,
  .h-bcar,
  .h-feed-tabs,
  .h-tabs,
  .h-mood,
  .h-recent,
  .h-tracklist,
  [data-scroll-x] {
    touch-action: pan-x pan-y;
  }
  .gs-sidebar { touch-action: pan-y; }
}

/* Home — premium glassmorphism style. Acentos: gs-primary + live-red. */
:root {
  --live-red: #ff3b30;
  --live-orange: #ff9500;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --h-text: #fff;
  --h-mute: rgba(255,255,255,.55);
  --h-dim: rgba(255,255,255,.32);
  --h-line: rgba(255,255,255,.08);
  --h-card: var(--glass);
  --h-card-hov: rgba(255,255,255,.06);
}

.h-wrap { max-width: 1300px; margin: 0 auto; padding: 32px 24px 100px; }

/* Header */
.h-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-bottom: 24px; margin-bottom: 40px;
  border-bottom: 1px solid var(--h-line);
}
.h-head .h-title h1 {
  font-size: clamp(24px, 5vw, 36px); font-weight: 900; letter-spacing: -.03em;
  margin: 0; line-height: 1;
  background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.h-head .h-title p { margin: 8px 0 0; font-size: 15px; color: var(--h-mute); font-weight: 500; }
.h-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: #000; background: #fff;
  border: none;
  padding: 12px 24px; border-radius: 12px;
  text-decoration: none !important; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.h-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1); background: var(--gs-primary); color: #fff; }

/* Section */
.h-section { margin-top: 48px; }
.h-section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 20px;
}
.h-section-title {
  font-size: 20px; font-weight: 800; letter-spacing: -.01em;
  color: var(--h-text); margin: 0;
  display: flex; align-items: center; gap: 10px;
}
.h-section-link {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--gs-primary); text-decoration: none !important;
  transition: opacity 0.2s;
}
.h-section-link:hover { opacity: 0.8; }

/* Banners (carousel) */
.h-bcar { position: relative; overflow: hidden; border-radius: 24px; margin-bottom: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); background: #000; }
.h-bcar-track { display: flex; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); width: 100%; }
.h-bslide { min-width: 100%; position: relative; aspect-ratio: 21/9; overflow: hidden; }
.h-bslide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s ease; }
.h-bslide:hover img { transform: scale(1.05); }
.h-bslide .ovl {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: center; padding: 48px;
  z-index: 2;
}
.h-bslide .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gs-gradient); color: #fff;
  padding: 5px 12px; border-radius: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 12px; width: fit-content;
  backdrop-filter: blur(8px);
}
.h-bslide h2 {
  font-size: clamp(22px, 4vw, 38px); font-weight: 900;
  margin: 0 0 10px; color: #fff; letter-spacing: -.02em;
}
.h-bslide p { font-size: 15px; color: rgba(255,255,255,0.6); margin: 0 0 20px; max-width: 500px; line-height: 1.5; }
.h-bslide .btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #000;
  padding: 12px 24px; border-radius: 12px;
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none !important; width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.h-bslide .btn:hover { background: var(--gs-primary); color: #fff; transform: translateY(-2px); }

.h-bcar-nav {
  position: absolute; top: 50%;
  width: 44px; height: 44px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.45); color: #fff; cursor: pointer;
  border-radius: 50%; font-size: 14px; z-index: 10;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, opacity .2s;
  opacity: .85;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.h-bcar-nav:hover { background: var(--gs-primary); border-color: var(--gs-primary); opacity: 1; transform: translateY(-50%) scale(1.08); }
.h-bcar-nav:active { transform: translateY(-50%) scale(0.96); }
.h-bcar-nav:focus-visible { outline: 2px solid var(--gs-primary); outline-offset: 2px; }
.h-bcar-nav.prev { left: 16px; }
.h-bcar-nav.next { right: 16px; }
/* Mobile: esconde setas — touch usa swipe nativo */
@media (hover: none) and (pointer: coarse) {
  .h-bcar-nav { display: none; }
}
.h-bcar-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.h-bcar-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.2); cursor: pointer; border: none; padding: 0;
  transition: all 0.3s ease;
}
.h-bcar-dot.active { background: #fff; width: 28px; }

/* Horizontal scroll lists */
.h-hscroll {
  display: flex; gap: 18px; overflow-x: auto; padding: 10px 0 24px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.h-hscroll::-webkit-scrollbar { display: none; }

/* Live card (16:9) */
.h-livecard {
  flex-shrink: 0; width: 260px; text-decoration: none !important; color: inherit;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 12px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.h-livecard .thumb {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #1a1a22; border-radius: 12px; overflow: hidden;
}
.h-livecard .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.h-livecard:hover .thumb img { transform: scale(1.08); }
.h-livecard .thumb.scheduled img { filter: brightness(.5) grayscale(0.5); }
.h-livecard .flag {
  position: absolute; top: 10px; left: 10px;
  background: var(--live-red); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .06em;
  padding: 4px 8px; border-radius: 6px; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.h-livecard .flag.sched { background: var(--live-orange); }
.h-livecard .listeners {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 6px;
  backdrop-filter: blur(4px);
}
.h-livecard h3 {
  font-size: 15px; font-weight: 700; margin: 12px 0 4px; line-height: 1.3;
  color: var(--h-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-livecard .meta {
  font-size: 12px; color: var(--h-mute);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-livecard:hover { transform: translateY(-8px); background: var(--h-card-hov); border-color: rgba(255,59,48,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* Trending (Em alta) — numbered list */
.h-trend {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px;
  max-width: 900px;
  margin: 0 auto;
  counter-reset: trend;
}
@media (max-width: 720px) {
  /* ── Lista Em alta refeita pra mobile: full-width seguro ── */
  .h-trend {
    display: flex; flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .h-trend-item {
    display: flex; align-items: center; gap: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 9px 12px 9px 8px;
    margin: 0;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
    /* desabilita translate horizontal que causava overflow */
    transform: none !important;
  }
  .h-trend-item:hover { transform: none !important; }
  .h-trend-item:active {
    background: rgba(233,30,99,0.08);
    transition: background 0.08s ease;
  }
  /* Rank number à esquerda — fixo em 22px */
  .h-trend-item::before {
    content: counter(trend);
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    font-size: 13px; font-weight: 800;
    color: var(--gs-primary);
    opacity: 0.55;
    font-variant-numeric: tabular-nums;
    line-height: 1;
  }
  .h-trend-item:nth-child(-n+3)::before { opacity: 1; }
  /* Cover compacto */
  .h-trend-item img {
    width: 42px; height: 42px;
    border-radius: 7px;
    flex-shrink: 0;
    object-fit: cover;
  }
  /* Info no centro — pode encolher */
  .h-trend-item .info {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
  .h-trend-item .info h4 {
    font-size: 13px; font-weight: 700;
    line-height: 1.25;
    margin: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 100%;
  }
  .h-trend-item .info p {
    font-size: 11px;
    line-height: 1.25;
    margin: 1px 0 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 100%;
    color: var(--h-mute);
  }
  /* Plays plana no canto direito */
  .h-trend-item .plays {
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 10px;
    font-weight: 700;
    color: var(--h-mute);
    gap: 3px;
  }
  .h-trend-item .plays i {
    font-size: 8px;
    color: var(--gs-primary);
    opacity: 0.65;
  }
  .h-trend-item:hover .plays { background: transparent; border: none; }
}
.h-trend-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 28px 12px 18px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; cursor: pointer; counter-increment: trend;
  transition: all 0.3s ease;
  text-align: left; width: 100%; color: inherit;
  font-family: inherit;
}
.h-trend-item:hover {
  background: var(--h-card-hov);
  border-color: var(--gs-primary);
  box-shadow: 0 4px 16px rgba(233,30,99,0.15);
}
@media (min-width: 721px) {
  .h-trend-item:hover { transform: translateX(4px); }
}
.h-trend-item::before {
  content: counter(trend);
  font-size: 18px; font-weight: 900; opacity: .15;
  width: 32px; text-align: center; flex-shrink: 0;
}
.h-trend-item img {
  width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
}
.h-trend-item .info { flex: 1; min-width: 0; }
.h-trend-item .info h4 {
  font-size: 14px; font-weight: 700; margin: 0; color: var(--h-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-trend-item .info p {
  font-size: 12px; color: var(--h-mute); margin: 2px 0 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-trend-item .plays {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  color: var(--h-mute);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px 9px; border-radius: 999px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  transition: all 0.2s ease;
}
.h-trend-item .plays i {
  font-size: 8px; color: var(--gs-primary);
  opacity: 0.85;
}
.h-trend-item .plays .n { line-height: 1; }
.h-trend-item:hover .plays {
  background: rgba(233,30,99,0.1);
  border-color: rgba(233,30,99,0.2);
  color: #fff;
}
.h-trend-item:hover .plays i { opacity: 1; }
@media (max-width: 600px) {
  .h-trend-item .plays { padding: 3px 7px; font-size: 10px; }
  .h-trend-item .plays i { font-size: 7px; }
}
@media (max-width: 768px) { .h-trend { grid-template-columns: 1fr; } }

/* Lançamentos / album-style 16:9 */
.h-album {
  flex-shrink: 0; width: 280px; text-decoration: none !important; color: inherit;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 12px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.h-album .cv {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #1a1a22; border-radius: 12px; overflow: hidden;
}
.h-album .cv img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.h-album:hover .cv img { transform: scale(1.08); }
.h-album.live .cv { box-shadow: 0 0 0 2px var(--live-red); }
.h-album .flag {
  position: absolute; top: 10px; left: 10px;
  background: var(--live-red); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .06em;
  padding: 4px 8px; border-radius: 6px; text-transform: uppercase;
}
.h-album h3 {
  font-size: 15px; font-weight: 700; margin: 12px 0 4px; line-height: 1.3;
  color: var(--h-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-album .meta {
  font-size: 12px; color: var(--h-mute);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-album:hover { transform: translateY(-8px); background: var(--h-card-hov); border-color: var(--gs-primary); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* Artists — circular premium */
.h-artists {
  display: grid; gap: 28px 24px;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  padding: 10px 0;
}

.h-artist {
  text-decoration: none !important; color: inherit; text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; align-items: center;
}

.h-artist .av {
  width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  background: var(--glass); border: 2px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.h-artist .av img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}

/* Fallback colorido único por artista — varia o gradiente via --hue */
.h-artist .av-fb {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  color: rgba(255,255,255,0.95); letter-spacing: -0.02em;
  background:
    radial-gradient(circle at 30% 20%, hsla(var(--hue, 330), 80%, 55%, 0.95) 0%, hsla(var(--hue, 330), 70%, 35%, 0.9) 60%, hsla(var(--hue, 330), 60%, 18%, 1) 100%);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  position: relative;
}
.h-artist .av-fb::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(255,255,255,0.18), transparent 50%);
  border-radius: inherit;
}

.h-artist:hover .av {
  transform: scale(1.05) translateY(-8px);
  border-color: hsla(var(--hue, 330), 80%, 60%, 0.6);
  box-shadow: 0 20px 40px hsla(var(--hue, 330), 70%, 40%, 0.3);
}

.h-artist:hover .av img { transform: scale(1.15); }

.h-artist h4 {
  font-size: 15px; font-weight: 700; margin: 16px 0 0; color: var(--h-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%; transition: color 0.2s;
}
.h-artist:hover h4 { color: hsl(var(--hue, 330), 80%, 70%); }

/* ── Artist 2026: stories ring + live + verified + meta + overlay ── */
.h-artist {
  position: relative;
  opacity: 0; transform: translateY(8px);
  animation: artistFadeIn 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes artistFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.h-artist .av {
  position: relative;
  /* leve recuo para o ring respirar fora */
  margin: 4px;
}

/* Story ring — gradiente colorido por hue indicando "ativo/novidade" */
.h-artist .av .ring {
  position: absolute; inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 200deg,
    hsl(var(--hue, 330), 85%, 65%),
    hsl(calc(var(--hue, 330) + 60), 80%, 60%),
    hsl(calc(var(--hue, 330) + 180), 80%, 55%),
    hsl(calc(var(--hue, 330) + 270), 80%, 60%),
    hsl(var(--hue, 330), 85%, 65%)
  );
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.6s ease;
  z-index: 0;
}
.h-artist .av::before {
  /* gap interno entre o ring e a foto/inicial */
  content: ''; position: absolute; inset: -1px;
  background: var(--gs-dark, #0e0e15);
  border-radius: 50%; z-index: 1;
}
.h-artist .av img,
.h-artist .av .av-fb {
  position: relative; z-index: 2;
}
.h-artist:hover .av .ring {
  opacity: 1; transform: rotate(180deg);
}

/* Live ring vermelho pulsante (override do story ring) */
.h-artist.is-live .av .ring {
  background: conic-gradient(
    from 0deg,
    var(--live-red, #ff3b30),
    #ff6b35,
    var(--live-red, #ff3b30)
  );
  opacity: 1;
  animation: liveRingSpin 4s linear infinite;
}
@keyframes liveRingSpin {
  to { transform: rotate(360deg); }
}

/* Live pill abaixo do nome no canto */
.h-artist .live-pill {
  position: absolute; top: -4px; right: -4px;
  background: var(--live-red, #ff3b30); color: #fff;
  font-size: 8px; font-weight: 900; letter-spacing: 0.06em;
  padding: 3px 7px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 4px;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(255,59,48,0.5);
}
.h-artist .live-pill .dot {
  width: 5px; height: 5px; border-radius: 50%; background: #fff;
  animation: pulseDot 1.5s ease infinite;
}

/* Verified badge no canto inferior direito */
.h-artist .badge-verified {
  position: absolute; bottom: 0; right: 4%;
  width: 24px; height: 24px; border-radius: 50%;
  background: #3b82f6; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  border: 3px solid var(--gs-dark, #0e0e15);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(59,130,246,0.4);
}

/* Hover overlay: escuro + ícone de fones (CTA "ouvir tudo") */
.h-artist .av-overlay {
  position: absolute; inset: 1px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  z-index: 3;
  color: #fff; font-size: 22px;
  backdrop-filter: blur(4px);
}
.h-artist:hover .av-overlay { opacity: 1; }
.h-artist:hover .av-overlay i { animation: headphonesShake 0.6s ease; }
@keyframes headphonesShake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

/* Meta line (followers / albums / following) */
.h-artist .artist-meta {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  flex-wrap: wrap;
  font-size: 11px; color: var(--h-mute);
  margin-top: 4px; line-height: 1.4;
}
.h-artist .artist-meta span { display: inline-flex; align-items: center; gap: 4px; }
.h-artist .artist-meta i { font-size: 9px; opacity: 0.7; }
.h-artist .artist-meta .following-tag {
  background: rgba(34,197,94,0.12); color: #4ade80;
  padding: 1px 7px; border-radius: 6px;
  font-size: 10px; font-weight: 700;
}
.h-artist .artist-meta .following-tag i { color: inherit; opacity: 1; }

/* Following: borda extra verde no anel (delicado) */
.h-artist.is-following:not(.is-live) .av .ring {
  background: conic-gradient(
    from 200deg,
    hsl(var(--hue, 330), 85%, 65%) 0%,
    #22c55e 30%,
    #4ade80 50%,
    hsl(var(--hue, 330), 85%, 65%) 100%
  );
  opacity: 0.85;
}

/* Smart playlists */
.h-smart { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.h-smart-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 12px 16px;
  text-decoration: none !important; color: inherit;
  transition: all 0.3s ease;
}
.h-smart-item:hover { background: var(--h-card-hov); border-color: rgba(168,85,247,.3); transform: translateY(-4px); }
.h-smart-item img {
  width: 56px; height: 56px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
}
.h-smart-item .info h4 { font-size: 14px; font-weight: 700; margin: 0; }
.h-smart-item .play { color: var(--gs-primary); opacity: .6; font-size: 14px; }

/* Composer Moderno */
.h-composer {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 24px; margin-bottom: 32px;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.h-composer textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border); border-radius: 16px;
  padding: 16px; color: #fff; font-size: 15px;
  transition: all 0.3s ease;
  line-height: 1.5;
}
.h-composer textarea:focus { background: rgba(255,255,255,.08); border-color: var(--gs-primary); box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1); }
.h-composer .pub {
  background: var(--gs-gradient); padding: 12px 28px; border-radius: 14px;
  font-size: 14px; font-weight: 800; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff; border: none; cursor: pointer;
}
.h-composer .pub:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3); }

/* Feed Moderno Refinado */
.h-post {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 24px; margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  backdrop-filter: blur(10px);
}
.h-post::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(233,30,99,0.04), rgba(168,85,247,0.02));
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.h-post:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.h-post:hover::before { opacity: 1; }
.h-post > * { position: relative; z-index: 1; }

.h-post-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.h-post-av {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--gs-gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; text-decoration: none;
  border: 2px solid var(--glass-border);
  transition: all 0.3s ease;
}
.h-post:hover .h-post-av { border-color: var(--gs-primary); transform: rotate(5deg) scale(1.05); }

.h-post-meta .name { font-size: 15px; font-weight: 750; color: #fff; text-decoration: none; }
.h-post-meta .name:hover { color: var(--gs-primary); }
.h-post-meta .time { font-size: 12px; color: var(--h-mute); margin-top: 3px; }

.h-post-text {
  font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.95);
  margin: 0 0 16px;
}

.h-post img.attach {
  width: 100%; border-radius: 18px; margin: 12px 0;
  border: 1px solid var(--glass-border);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.h-post img.attach:hover { transform: scale(1.02); }

.h-post-actions {
  display: flex; gap: 8px; margin-top: 20px;
  padding-top: 16px; border-top: 1px solid var(--h-line);
}
.h-post-actions button {
  flex: 1; background: rgba(255,255,255,0.03); border: 1px solid transparent;
  color: var(--h-mute); font-size: 14px; font-weight: 700; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 14px; cursor: pointer;
  transition: all 0.3s;
}
.h-post-actions button:hover {
  background: rgba(255,255,255,0.08); color: #fff;
  border-color: rgba(255,255,255,0.1);
}
.h-post-actions button.liked { background: rgba(233, 30, 99, 0.1); color: var(--gs-primary); border-color: rgba(233, 30, 99, 0.2); }
.h-post-actions button.liked i { animation: likePop 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
@keyframes likePop {
  0% { transform: scale(1); }
  40% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ── Feed 2026: filter tabs, time grouping, post types, reactions ── */

/* Filter tabs do feed */
.h-feed-tabs {
  display: flex; gap: 4px; padding: 4px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; margin-bottom: 20px; width: fit-content; max-width: 100%;
  overflow-x: auto; scrollbar-width: none;
}
.h-feed-tabs::-webkit-scrollbar { display: none; }
.h-feed-tab {
  background: transparent; border: none; color: var(--h-mute);
  font-size: 13px; font-weight: 700; padding: 8px 16px;
  border-radius: 10px; cursor: pointer; white-space: nowrap;
  transition: all 0.2s; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.h-feed-tab:hover { color: #fff; background: rgba(255,255,255,0.04); }
.h-feed-tab.active { background: #fff; color: #000; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* Time grouping divider */
.h-feed-day {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--h-mute); margin: 24px 0 12px;
  display: flex; align-items: center; gap: 12px;
}
.h-feed-day::before, .h-feed-day::after {
  content: ''; flex: 1; height: 1px; background: var(--h-line);
}
.h-feed-day:first-child { margin-top: 8px; }

/* Post type badge (estado: lançamento, comunidade, foto, etc) */
.h-post-type {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 9px; border-radius: 6px; margin-left: auto; margin-right: 8px;
  background: rgba(255,255,255,0.06); color: var(--h-mute);
  border: 1px solid var(--glass-border);
}
.h-post-type.release { background: rgba(168,85,247,0.12); color: #c084fc; border-color: rgba(168,85,247,0.25); }
.h-post-type.live { background: rgba(255,59,48,0.15); color: var(--live-red); border-color: rgba(255,59,48,0.3); }
.h-post-type.photo { background: rgba(14,165,233,0.12); color: #38bdf8; border-color: rgba(14,165,233,0.25); }
.h-post-type.talk { background: rgba(255,255,255,0.04); }

/* Album card maior, com play overlay (lançamento) */
.h-post-album {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 14px; margin: 12px 0;
  text-decoration: none !important; color: inherit;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.h-post-album:hover {
  background: rgba(168,85,247,0.1);
  border-color: rgba(168,85,247,0.35);
  transform: translateX(4px);
}
.h-post-album img {
  width: 96px; height: 96px; object-fit: cover; flex-shrink: 0;
  display: block;
}
.h-post-album .body {
  flex: 1; min-width: 0; padding: 14px 16px;
  display: flex; flex-direction: column; justify-content: center;
}
.h-post-album .body strong {
  font-size: 15px; font-weight: 800; color: #fff;
  display: block; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.h-post-album .body small {
  font-size: 12px; color: rgba(168,85,247,0.85); font-weight: 600;
  display: flex; align-items: center; gap: 5px;
}
.h-post-album .play-fab-sm {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gs-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  opacity: 0; transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(233,30,99,0.4);
}
.h-post-album:hover .play-fab-sm { opacity: 1; transform: translateY(-50%) scale(1); }

/* Reactions row: 🔥 🎶 💯 👏 + heart */
.h-reactions {
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
  margin-bottom: 12px;
}
.h-reaction {
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  font-size: 14px; padding: 5px 10px 5px 9px; border-radius: 14px;
  cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: inherit; color: var(--h-text);
}
.h-reaction:hover { background: rgba(255,255,255,0.1); transform: scale(1.05); }
.h-reaction.active { background: rgba(233,30,99,0.15); border-color: rgba(233,30,99,0.4); }
.h-reaction .count { font-size: 11px; font-weight: 700; color: var(--h-mute); }
.h-reaction.active .count { color: var(--gs-primary); }
.h-reaction .em { line-height: 1; transition: transform 0.2s; }
.h-reaction:hover .em { transform: scale(1.2) rotate(-8deg); }

/* Action bar com 4 botões: Curtir, Comentar, Repost, Salvar */
.h-post-actions {
  display: flex; gap: 4px; margin-top: 16px;
  padding-top: 14px; border-top: 1px solid var(--h-line);
}
.h-post-actions button {
  flex: 1; background: none; border: none;
  color: var(--h-mute); font-size: 13px; font-weight: 600; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px; border-radius: 10px; cursor: pointer;
  transition: all 0.2s;
}
.h-post-actions button:hover { background: rgba(255,255,255,0.05); color: #fff; }
.h-post-actions button.active { color: var(--gs-primary); background: rgba(233,30,99,0.08); }
.h-post-actions button.active.saved { color: #facc15; background: rgba(250,204,21,0.08); }
.h-post-actions button.active.boosted { color: #22c55e; background: rgba(34,197,94,0.08); }
.h-post-actions button.active i { animation: likePop 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* Skeleton loading mais polido */
.h-feed-skeleton .skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: skel 1.4s ease-in-out infinite;
  border-radius: 8px;
}
@keyframes skel {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state melhorado */
.h-feed-empty {
  text-align: center; padding: 48px 24px;
  background: var(--glass); border: 1px dashed var(--glass-border);
  border-radius: 20px;
}
.h-feed-empty .ico {
  font-size: 56px; margin-bottom: 12px; opacity: 0.4;
  display: inline-block;
  background: var(--gs-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.h-feed-empty h3 { font-size: 16px; margin: 0 0 4px; color: var(--h-text); font-weight: 800; }
.h-feed-empty p { font-size: 13px; color: var(--h-mute); margin: 0; }

/* "X publicações novas" pill flutuante */
.h-feed-new {
  position: sticky; top: 80px; z-index: 4;
  display: flex; justify-content: center; margin-bottom: -10px; pointer-events: none;
}
.h-feed-new button {
  pointer-events: auto;
  background: var(--gs-primary); color: #fff;
  border: none; padding: 8px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  cursor: pointer; box-shadow: 0 8px 20px rgba(233,30,99,0.4);
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.2s; font-family: inherit;
}
.h-feed-new button:hover { transform: translateY(-2px); }
.h-feed-new button i { font-size: 11px; }

/* ── 2026 trends: mood, continue listening, taste profile ── */

/* Mood chips: contexto temporal/atividade do user */
.h-mood {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding-top: 15px;
  margin: 0 0 32px;
}
.h-mood-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--h-text); font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 20px;
  text-decoration: none !important; cursor: pointer;
  transition: all 0.25s ease;
}
.h-mood-chip:hover {
  background: var(--h-card-hov); border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.h-mood-chip.active {
  background: var(--gs-primary); border-color: var(--gs-primary); color: #fff;
  box-shadow: 0 6px 16px rgba(233,30,99,0.3);
}
.h-mood-chip .emoji { font-size: 15px; line-height: 1; }

/* Continue ouvindo: cards horizontal scroll com play overlay */
.h-continue {
  display: flex; gap: 14px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 6px 0 18px;
}
.h-continue::-webkit-scrollbar { display: none; }
.h-continue-item {
  flex-shrink: 0; width: 200px;
  background: none; border: none; padding: 0;
  text-align: left; color: inherit; cursor: pointer;
  transition: transform 0.25s ease;
}
.h-continue-item:hover { transform: translateY(-4px); }
.h-continue-item .cv {
  position: relative; width: 100%; aspect-ratio: 1;
  border-radius: 12px; overflow: hidden;
  background: #1a1a22;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.h-continue-item .cv img { width: 100%; height: 100%; object-fit: cover; display: block; }
.h-continue-item .cv::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.25s ease;
}
.h-continue-item:hover .cv::after { opacity: 1; }
.h-continue-item .play-fab {
  position: absolute; bottom: 10px; right: 10px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gs-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 6px 14px rgba(233,30,99,0.4);
}
.h-continue-item:hover .play-fab { opacity: 1; transform: translateY(0); }
.h-continue-item h4 {
  font-size: 14px; font-weight: 700; margin: 10px 0 2px; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-continue-item .meta {
  font-size: 12px; color: var(--h-mute);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* Card de live ao vivo (badge animado, sem play-fab) */
.h-continue-item.is-live { text-decoration: none; display: block; }
.h-continue-item.is-live h4 a, .h-continue-item.is-live h4 { color: #fff; }
.h-continue-item.is-live .cv { box-shadow: 0 8px 22px rgba(239, 68, 68, .35); }
.h-continue-item .live-badge {
  position: absolute; top: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px; border-radius: 14px;
  background: rgba(239, 68, 68, .92); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.h-continue-item .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(0.7); }
}
/* Card de álbum ("Retomar CD" — link pra página + botão de tocar) */
.h-continue-item.is-album { position: relative; display: block; }
.h-continue-item.is-album .cv { display: block; }
.h-continue-item.is-album h4 a { color: #fff; text-decoration: none; }
.h-continue-item.is-album h4 a:hover { color: var(--gs-primary); }
.h-continue-item.is-album .album-badge {
  position: absolute; top: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px; border-radius: 14px;
  background: rgba(0,0,0,.65); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .04em;
  backdrop-filter: blur(6px);
}
.h-continue-item.is-album .album-badge i { font-size: 10px; opacity: .85; }
.h-continue-item.is-album .resume-play {
  position: absolute; bottom: 56px; right: 10px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gs-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; border: none; cursor: pointer;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 6px 14px rgba(233,30,99,0.4);
}
.h-continue-item.is-album:hover .resume-play { opacity: 1; transform: translateY(0); }

/* Setas pra rolar o carrossel horizontal (desktop only) */
.h-hscroll-wrap { position: relative; }
.h-scroll-arrow {
  display: none;
  position: absolute; top: calc(50% - 22px); transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(20, 20, 30, .92); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .08); color: #fff;
  cursor: pointer; z-index: 5; font-size: 13px;
  align-items: center; justify-content: center;
  transition: opacity .2s, background .2s, transform .15s;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}
.h-scroll-arrow.prev { left: -10px; }
.h-scroll-arrow.next { right: -10px; }
.h-scroll-arrow:hover { background: var(--gs-primary); border-color: var(--gs-primary); transform: translateY(-50%) scale(1.06); }
.h-scroll-arrow.is-disabled { opacity: 0; pointer-events: none; }
@media (hover: hover) and (min-width: 992px) {
  .h-scroll-arrow { display: flex; }
}

/* Taste profile: visualização do que o algoritmo conhece */
.h-taste-card {
  background: linear-gradient(135deg, rgba(233,30,99,0.08), rgba(168,85,247,0.06));
  border: 1px solid rgba(233,30,99,0.12);
  border-radius: 24px; padding: 24px 28px;
  position: relative; overflow: hidden;
}
.h-taste-card::before {
  content: ''; position: absolute;
  top: -50%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.h-taste-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 18px; position: relative;
}
.h-taste-head h3 {
  font-size: 16px; font-weight: 800; margin: 0; color: #fff;
}
.h-taste-head p {
  font-size: 12px; color: var(--h-mute); margin: 4px 0 0;
}
.h-taste-tune {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--gs-primary); text-decoration: none !important;
  background: rgba(233,30,99,0.1); padding: 6px 12px; border-radius: 8px;
  border: 1px solid rgba(233,30,99,0.2); transition: all 0.2s;
}
.h-taste-tune:hover { background: rgba(233,30,99,0.2); }
.h-taste-bars { display: flex; flex-direction: column; gap: 10px; position: relative; }
.h-taste-bar { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.h-taste-bar .name { width: 110px; font-weight: 700; color: #fff; flex-shrink: 0; }
.h-taste-bar .track {
  flex: 1; height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden;
}
.h-taste-bar .fill {
  height: 100%; border-radius: 4px;
  background: var(--bar-c, var(--gs-primary));
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 12px var(--bar-c, rgba(233,30,99,0.4));
}
.h-taste-bar .pct { width: 40px; text-align: right; color: var(--h-mute); font-weight: 600; flex-shrink: 0; }

/* Listening Party / Live destaque ampliado */
.h-party {
  display: block;
  background: linear-gradient(135deg, rgba(255,59,48,0.12), rgba(255,149,0,0.06));
  border: 1px solid rgba(255,59,48,0.2);
  border-radius: 24px; padding: 24px 28px;
  text-decoration: none !important; color: inherit;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.h-party:hover { border-color: rgba(255,59,48,0.4); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,59,48,0.15); }
.h-party-row { display: flex; align-items: center; gap: 20px; position: relative; }
.h-party-cover {
  width: 84px; height: 84px; border-radius: 16px; overflow: hidden;
  flex-shrink: 0; background: #1a1a22;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.h-party-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.h-party-info { flex: 1; min-width: 0; }
.h-party-info .badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--live-red); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 8px; margin-bottom: 6px;
}
.h-party-info .badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot { 0%,100% { opacity:1 } 50% { opacity:.4 } }
.h-party-info h3 {
  font-size: 18px; font-weight: 800; margin: 0 0 4px; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-party-info p {
  font-size: 13px; color: rgba(255,255,255,0.6); margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-party-cta {
  background: #fff; color: #000;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 10px 20px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0; transition: all 0.25s;
}
.h-party:hover .h-party-cta { background: var(--live-red); color: #fff; }

/* ── Search results 2026: Top result + tabs ─────────────────────── */

/* ── Best Match / Top Result (Spotify-style) ───────────────── */
.h-best {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 28px; align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(233,30,99,.05));
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 24px 28px;
  margin-bottom: 32px; position: relative; overflow: hidden;
  text-decoration: none !important; color: inherit;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  min-height: 220px;
}
.h-best::before {
  content: ''; position: absolute;
  top: -40%; right: -15%; width: 70%; height: 180%;
  background: radial-gradient(circle, rgba(233,30,99,0.12) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
  transition: opacity 0.3s ease;
}
.h-best:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(233,30,99,.08));
  border-color: rgba(233,30,99,0.3);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.35);
}
.h-best:hover::before { opacity: 0.7; }

/* Cover/avatar à esquerda */
.h-best-cv {
  width: 100%; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  background: #1a1a22; box-shadow: 0 16px 32px rgba(0,0,0,0.45);
  position: relative; z-index: 1;
}
.h-best-cv.circle { border-radius: 50%; box-shadow: 0 16px 36px rgba(0,0,0,0.5); }
.h-best-cv img,
.h-best-cv > div {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.h-best:hover .h-best-cv img,
.h-best:hover .h-best-cv > div { transform: scale(1.04); }

/* Info à direita */
.h-best-info {
  display: flex; flex-direction: column; gap: 12px;
  position: relative; z-index: 1; min-width: 0;
}

/* Tag "Melhor resultado" no topo */
.h-best-tag {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gs-primary);
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
}
.h-best-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gs-primary);
  box-shadow: 0 0 12px var(--gs-primary);
  animation: pulseDot 2s ease infinite;
}

/* Title HERO */
.h-best-info h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -0.025em;
  margin: 0; color: #fff; line-height: 1.05;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Linha "Artista · 2.4k seguidores" — meta unificada */
.h-best-info .meta-line {
  font-size: 14px; color: var(--h-mute);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.h-best-info .type-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(255,255,255,0.08); border: 1px solid var(--glass-border);
  padding: 5px 12px; border-radius: 999px;
  color: var(--h-text);
}
.h-best-info .meta-line strong { color: #fff; font-weight: 700; }
.h-best-info .meta-line .dot { opacity: 0.4; }

/* Hide legacy elements if present */
.h-best-info .by, .h-best-info .type-label { display: none; }

/* Play FAB — sempre visível, mas eleva em hover */
.h-best-play {
  position: absolute; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gs-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; border: none;
  box-shadow: 0 12px 28px rgba(233,30,99,0.5);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 3;
}
.h-best:hover .h-best-play { transform: scale(1.08); box-shadow: 0 16px 36px rgba(233,30,99,0.6); }
.h-best-play:hover { background: #f06292; }

/* Mobile: empilha vertical */
@media (max-width: 720px) {
  .h-best {
    grid-template-columns: 1fr; gap: 18px;
    padding: 20px; min-height: 0;
    text-align: left;
  }
  .h-best-cv { max-width: 140px; }
  .h-best-cv.circle { max-width: 120px; }
  .h-best-info h2 { font-size: 24px; }
  .h-best-play { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 16px; }
}

/* Filter tabs */
.h-tabs {
  display: flex; gap: 4px; margin-bottom: 24px; padding: 4px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; width: fit-content; max-width: 100%;
  overflow-x: auto; scrollbar-width: none;
}
.h-tabs::-webkit-scrollbar { display: none; }
.h-tab {
  background: transparent; border: none; color: var(--h-mute);
  font-size: 13px; font-weight: 700; padding: 8px 16px;
  border-radius: 10px; cursor: pointer; white-space: nowrap;
  transition: all 0.2s; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.h-tab:hover { color: #fff; background: rgba(255,255,255,0.04); }
.h-tab.active { background: #fff; color: #000; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.h-tab .badge {
  font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.08); padding: 2px 7px; border-radius: 6px;
  color: inherit;
}
.h-tab.active .badge { background: rgba(0,0,0,0.08); }

/* Lives section in search */
.h-lives-mini {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

/* Greeting com brilho sutil */
.h-greeting-wave {
  display: inline-block;
  animation: wave 1.5s ease infinite;
  transform-origin: 70% 70%;
}
@keyframes wave {
  0%, 60%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}

@media (max-width: 600px) {
  .h-wrap { padding: 20px 16px 80px; }
  .h-head .h-title h1 { font-size: 24px; }
  .h-livecard { width: 220px; }
  .h-album { width: 220px; }
  .h-bslide .ovl { padding: 24px; }
  .h-bslide h2 { font-size: 20px; }
  .h-artists { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .h-continue-item { width: 150px; }
  .h-party-row { flex-wrap: wrap; }
  .h-party-cta { width: 100%; justify-content: center; }
  .h-taste-card { padding: 18px 20px; }
  .h-taste-bar .name { width: 80px; font-size: 12px; }
}

/* ── Search 2026: autocomplete + voice + trending ───────────── */

/* ──── Container sticky (gruda no topo enquanto rola) ──────────── */
.h-stick {
  position: sticky;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  z-index: 50;
  margin: 0 -16px 18px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(10,10,18,.92) 0%, rgba(10,10,18,.78) 100%);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-radius: 16px;
}
@media (min-width: 992px) {
  .h-stick { margin: 0 0 22px; padding: 14px 0; background: transparent; backdrop-filter: none; }
}
.h-stick > form { width: 100%; }

/* ──── Input wrap responsivo (mobile-first 2026) ──────────────── */
.h-input-wrap {
  position: relative;
  /* fluid sizing — desktop tem 720px max (mais espaço pra leitura), mobile usa full width */
  max-width: min(720px, 100%);
  margin: 0 auto;
  transition: transform .2s, box-shadow .25s;
}
.h-input-wrap:focus-within {
  box-shadow: 0 12px 32px rgba(233, 30, 99, .18);
}

/* Input — font-size 16px (anti-zoom iOS) é base, escala para cima em desktop via clamp */
.h-input-wrap .h-input {
  width: 100%; box-sizing: border-box;
  padding: 0 90px 0 50px; /* +space pro mic + clear */
  height: 52px;
  /* 16px no mobile (anti-zoom Safari iOS), 14.5-15px no desktop */
  font-size: clamp(15px, 1.5vw + 12px, 16px);
  line-height: 1.2;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
  -webkit-appearance: none; appearance: none;
  transition: background .2s, border-color .2s;
}
.h-input-wrap:focus-within .h-input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(233,30,99,.45);
}
@media (min-width: 992px) {
  .h-input-wrap .h-input { height: 56px; border-radius: 16px; }
}
/* iOS Safari: campos search ganham X interno chato — tira */
.h-input::-webkit-search-cancel-button,
.h-input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }

/* Search icon (left) */
.h-input-wrap > i.fa-search {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  font-size: 14px; color: var(--h-mute); opacity: 0.6;
  pointer-events: none; transition: opacity 0.2s;
}
.h-input-wrap:focus-within > i.fa-search { opacity: 1; color: var(--gs-primary); }
.h-input:focus { background: rgba(255,255,255,0.08); }

/* Mic button — touch-friendly (40×40 min recomendado WCAG 2.5.5) */
.h-input-wrap .mic-btn {
  position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 10px;
  background: transparent; border: none;
  color: var(--h-mute); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background 0.2s, color 0.2s;
  padding: 0;
  /* Aumenta área de toque sem mudar visual (Safari) */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
/* Separador vertical sutil — campo "compound" */
.h-input-wrap .mic-btn::before {
  content: ''; position: absolute; left: -3px; top: 8px; bottom: 8px;
  width: 1px; background: var(--glass-border);
  transition: background 0.2s;
}
.h-input-wrap .mic-btn:hover,
.h-input-wrap .mic-btn:focus-visible {
  background: rgba(233,30,99,0.1); color: var(--gs-primary); outline: none;
}
.h-input-wrap .mic-btn:hover::before,
.h-input-wrap .mic-btn:focus-visible::before { background: rgba(233,30,99,0.25); }
.h-input-wrap .mic-btn:active { transform: translateY(-50%) scale(0.92); }
.h-input-wrap .mic-btn.recording {
  background: var(--live-red); color: #fff;
  animation: micPulse 1s ease infinite;
}
.h-input-wrap .mic-btn.recording::before { display: none; }
@keyframes micPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,59,48,0.25); }
  50% { box-shadow: 0 0 0 10px rgba(255,59,48,0); }
}

/* Mobile (≤600px): aumenta input + mic pra touch */
@media (max-width: 600px) {
  .h-input-wrap .h-input {
    height: 52px; padding: 0 60px 0 46px;
    font-size: 16px; /* trava 16px pra evitar zoom iOS independente da clamp */
    border-radius: 12px;
  }
  .h-input-wrap > i.fa-search { left: 18px; font-size: 15px; }
  .h-input-wrap .mic-btn {
    width: 44px; height: 44px; right: 4px; border-radius: 11px;
    font-size: 15px;
  }
}

/* Tablet/desktop pequeno (601-900px): mantém balanço */
@media (min-width: 601px) and (max-width: 900px) {
  .h-input-wrap { max-width: 100%; }
}

/* Wider — placeholder fica curto se input estreito (impede ellipsis cortando termo) */
@media (max-width: 380px) {
  .h-input::placeholder { font-size: 14px; }
}

/* Botão de limpar (X) — aparece quando o input tem texto */
.h-input-wrap .clear-btn {
  position: absolute; right: 50px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: none;
  color: rgba(255,255,255,.6); cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 11px; transition: background .15s, color .15s;
}
.h-input-wrap.has-value .clear-btn { display: flex; }
.h-input-wrap .clear-btn:hover { background: rgba(255,255,255,.16); color: #fff; }

/* Pílulas de pesquisas recentes */
.h-recent {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px; margin-top: 12px;
}
.h-recent .label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--h-mute); opacity: .6;
  margin-right: 2px;
}
.h-recent button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px 6px 12px; border-radius: 18px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.85); font-size: 12.5px; font-weight: 500;
  cursor: pointer; font-family: inherit; line-height: 1.2;
  transition: background .15s, border-color .15s, transform .12s;
}
.h-recent button:hover {
  background: rgba(233, 30, 99, .08);
  border-color: rgba(233, 30, 99, .25);
  color: #fff;
}
.h-recent button:hover .x { color: #ef4444; opacity: 1; }
.h-recent button > span:first-child::before {
  content: '\f1da'; font-family: 'Font Awesome 5 Free'; font-weight: 400;
  margin-right: 4px; opacity: .35; font-size: 10px;
}
.h-recent button .x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%; margin-left: 2px;
  font-size: 14px; opacity: .35; transition: opacity .15s, color .15s;
  line-height: 1;
}
.h-recent button .x:hover { background: rgba(239, 68, 68, .15); opacity: 1; }
@media (max-width: 600px) {
  .h-recent { gap: 6px; margin-top: 10px; }
  .h-recent .label { display: block; width: 100%; margin-bottom: 2px; }
  .h-recent button { font-size: 12px; padding: 5px 9px 5px 11px; }
}


/* Autocomplete dropdown */
.h-ac {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: rgba(18, 18, 28, 0.97); backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
  max-height: 520px; overflow-y: auto; z-index: 100;
  box-shadow: 0 24px 56px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,0,0,.2);
  animation: acFadeIn 0.2s ease-out;
  padding: 6px 0;
}
@keyframes acFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Scrollbar discreta */
.h-ac::-webkit-scrollbar { width: 6px; }
.h-ac::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 3px; }

.h-ac-section { padding: 6px 0; }
.h-ac-section + .h-ac-section { border-top: 1px solid rgba(255,255,255,0.05); }
.h-ac-section-title {
  padding: 10px 16px 6px; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--h-mute);
  display: flex; align-items: center; gap: 6px;
}
.h-ac-section-title i { font-size: 11px; opacity: .6; }
.h-ac-section-title.h-live-title { color: var(--live-red); }
.h-ac-section-title .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--live-red);
  animation: live-pulse 1.4s ease-in-out infinite;
}

.h-ac-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 14px; cursor: pointer;
  background: transparent; border: none; width: 100%;
  text-decoration: none !important; color: inherit;
  transition: background 0.12s;
  font-family: inherit; text-align: left;
}
.h-ac-item:hover, .h-ac-item.focused { background: rgba(255,255,255,0.06); }
.h-ac-item img,
.h-ac-item .ic {
  width: 42px; height: 42px; border-radius: 8px; flex-shrink: 0;
  object-fit: cover; background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: var(--h-mute); font-size: 14px;
}
.h-ac-item.artist .ic { border-radius: 50%; background: var(--gs-gradient); color: #fff; font-weight: 800; font-size: 16px; }
.h-ac-item .body { flex: 1; min-width: 0; }
.h-ac-item .body h5 {
  font-size: 13.5px; font-weight: 600; margin: 0; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-ac-item .body h5 mark {
  background: rgba(233, 30, 99, 0.18); color: var(--gs-primary);
  padding: 0 2px; border-radius: 3px; font-weight: 800;
}
.h-ac-item .body p {
  font-size: 11.5px; color: var(--h-mute); margin: 2px 0 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-ac-item .type {
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--h-dim); flex-shrink: 0;
  padding: 4px 8px; border-radius: 6px;
  transition: background .15s, color .15s;
}
.h-ac-item:hover .type { color: rgba(255,255,255,.85); }
.h-ac-item .live-pill {
  background: var(--live-red); color: #fff !important;
  border-radius: 10px; padding: 3px 9px; font-size: 9px;
}
.h-ac-item .play-pill {
  background: rgba(233, 30, 99, .15); color: var(--gs-primary) !important;
  border-radius: 50%; width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; font-size: 10px;
}
.h-ac-item:hover .play-pill {
  background: var(--gs-primary); color: #fff !important;
  transform: scale(1.06);
}

/* Top result — destaque maior */
.h-ac-section.h-ac-top { padding-bottom: 4px; }
.h-ac-section.h-ac-top .h-ac-section-title { color: var(--gs-primary); }
.h-ac-best {
  margin: 2px 8px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(233,30,99,.06), rgba(156,39,176,.05));
  border: 1px solid rgba(233,30,99,.14);
  padding: 12px 14px;
}
.h-ac-best:hover {
  background: linear-gradient(135deg, rgba(233,30,99,.14), rgba(156,39,176,.10));
  border-color: rgba(233,30,99,.32);
}
.h-ac-best img, .h-ac-best .ic { width: 52px; height: 52px; }
.h-ac-best .body h5 { font-size: 15px; }

/* Footer: ver todos os resultados */
.h-ac-item.h-ac-all {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(233,30,99,0.04);
  margin-top: 2px;
}
.h-ac-item.h-ac-all:hover { background: rgba(233,30,99,0.10); }
.h-ac-item.h-ac-all .ic { background: var(--gs-primary); color: #fff; }
.h-ac-item.h-ac-all .body h5 mark {
  background: transparent; color: var(--gs-primary); padding: 0;
}

.h-ac-empty, .h-ac-loading { padding: 20px 16px; text-align: center; color: var(--h-mute); font-size: 13px; }
.h-ac-loading i { margin-right: 6px; }
.h-ac-empty strong { color: var(--gs-primary); padding: 0 4px; }

/* ── Faixa que está tocando: destaque global em qualquer tracklist ── */
.is-playing, .is-paused {
  position: relative;
}
/* Texto/título em rosa master */
.is-playing h4, .is-playing .tr-title, .is-playing .h-track-title,
.is-playing h5, .is-playing .qi-title, .is-playing strong,
.is-paused h4, .is-paused .tr-title, .is-paused .h-track-title,
.is-paused h5, .is-paused .qi-title, .is-paused strong {
  color: var(--gs-primary) !important;
}
/* Cards (h-continue, sqgrid, etc): gradiente sutil + borda colorida */
.h-continue-item.is-playing, .h-continue-item.is-paused,
.h-sqcard.is-playing, .h-sqcard.is-paused,
.h-song.is-playing, .h-song.is-paused,
.h-best.is-playing, .h-best.is-paused {
  background: linear-gradient(135deg, rgba(233,30,99,.10), rgba(156,39,176,.06)) !important;
  box-shadow: 0 0 0 1px rgba(233,30,99,.35), 0 6px 18px rgba(233,30,99,.12);
}
/* Linhas de tracklist (album.html, playlist.html) */
.tr-row.is-playing, .tr-row.is-paused,
tr.is-playing, tr.is-paused {
  background: linear-gradient(90deg, rgba(233,30,99,.14), rgba(233,30,99,.04)) !important;
  border-left: 3px solid var(--gs-primary);
}
/* Ícone equalizer animado — substitui o número da faixa quando tocando */
.is-playing .tr-num span,
.is-playing .pos,
.is-playing .qi-num,
.is-playing .num {
  display: inline-flex !important;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.is-playing .tr-num span::before,
.is-playing .pos::before,
.is-playing .qi-num::before,
.is-playing .num::before,
.is-paused .tr-num span::before,
.is-paused .pos::before,
.is-paused .qi-num::before,
.is-paused .num::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--gs-primary), var(--gs-primary)) 1px 0/2px 100% no-repeat,
    linear-gradient(var(--gs-primary), var(--gs-primary)) 6px 0/2px 100% no-repeat,
    linear-gradient(var(--gs-primary), var(--gs-primary)) 11px 0/2px 100% no-repeat;
  animation: gs-eq 0.9s ease-in-out infinite;
}
.is-playing .tr-num span::before,
.is-playing .pos::before,
.is-playing .qi-num::before,
.is-playing .num::before {
  /* override do gradient pra animar três barras independentemente */
  background-image:
    linear-gradient(var(--gs-primary), var(--gs-primary)),
    linear-gradient(var(--gs-primary), var(--gs-primary)),
    linear-gradient(var(--gs-primary), var(--gs-primary));
  background-position: 1px 0, 6px 0, 11px 0;
  background-size: 2px 30%, 2px 70%, 2px 50%;
  background-repeat: no-repeat;
  animation: gs-eq-bars 0.85s ease-in-out infinite;
}
.is-paused .tr-num span::before,
.is-paused .pos::before,
.is-paused .qi-num::before,
.is-paused .num::before {
  /* Pausado: barras estáticas em altura média */
  background-image:
    linear-gradient(var(--gs-primary), var(--gs-primary)),
    linear-gradient(var(--gs-primary), var(--gs-primary)),
    linear-gradient(var(--gs-primary), var(--gs-primary));
  background-position: 1px 50%, 6px 50%, 11px 50%;
  background-size: 2px 50%, 2px 50%, 2px 50%;
  background-repeat: no-repeat;
  opacity: .7;
}
.is-playing .tr-num i,
.is-paused .tr-num i { display: none !important; }
@keyframes gs-eq-bars {
  0%, 100% { background-size: 2px 30%, 2px 70%, 2px 50%; }
  20% { background-size: 2px 80%, 2px 40%, 2px 90%; }
  40% { background-size: 2px 50%, 2px 90%, 2px 30%; }
  60% { background-size: 2px 90%, 2px 30%, 2px 70%; }
  80% { background-size: 2px 30%, 2px 60%, 2px 80%; }
}

/* Glow pulsante na capa do card que está tocando */
.h-continue-item.is-playing .cv,
.h-sqcard.is-playing .h-sq-cover {
  animation: gs-cover-pulse 2.4s ease-in-out infinite;
}
@keyframes gs-cover-pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(0,0,0,.3), 0 0 0 0 rgba(233,30,99,.45); }
  50% { box-shadow: 0 8px 20px rgba(0,0,0,.3), 0 0 0 8px rgba(233,30,99,0); }
}

/* ── Barra de progresso de download offline (global, fica no topo) ── */
.al-offline-bar {
  position: fixed;
  top: env(safe-area-inset-top, 0px); left: 0; right: 0;
  z-index: 30001;
  background: rgba(10, 10, 18, .94);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  animation: offlineSlide .25s ease-out;
}
@keyframes offlineSlide {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.al-offline-bar .row {
  max-width: 1100px; margin: 0 auto;
  padding: 10px 16px; display: flex; align-items: center; gap: 12px;
}
.al-offline-bar .ico {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(99,102,241,.15));
  color: #0ea5e9; display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  animation: offlinePulse 1.6s ease-in-out infinite;
}
@keyframes offlinePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, .35); }
  50% { box-shadow: 0 0 0 8px rgba(14, 165, 233, 0); }
}
.al-offline-bar.done .ico {
  background: rgba(34, 197, 94, .15); color: #22c55e;
  animation: none;
}
.al-offline-bar .info { flex: 1; min-width: 0; }
.al-offline-bar .info .t {
  font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: flex; align-items: center; gap: 6px;
}
.al-offline-bar .info .t .label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gs-primary); flex-shrink: 0;
}
.al-offline-bar.done .info .t .label { color: #22c55e; }
.al-offline-bar .info .t .name {
  flex: 1; min-width: 0; opacity: .85;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.al-offline-bar .progress {
  height: 4px; background: rgba(255,255,255,.06); border-radius: 2px; overflow: hidden;
}
.al-offline-bar .progress > div {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gs-primary), #9c27b0);
  border-radius: 2px;
  transition: width .35s ease-out;
}
.al-offline-bar.done .progress > div { background: #22c55e; }
.al-offline-bar .count {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5);
  min-width: 44px; text-align: right; flex-shrink: 0;
  font-family: ui-monospace, monospace;
}
.al-offline-bar .close {
  width: 28px; height: 28px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.5);
  cursor: pointer; flex-shrink: 0; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.al-offline-bar .close:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Empurra o conteúdo enquanto a barra está visível */
body.has-offline-bar { padding-top: 56px; }
@media (max-width: 600px) {
  .al-offline-bar .row { padding: 9px 12px; gap: 10px; }
  .al-offline-bar .ico { width: 32px; height: 32px; font-size: 13px; }
  .al-offline-bar .info .t { font-size: 12.5px; }
  .al-offline-bar .info .t .label { display: none; }
  body.has-offline-bar { padding-top: 52px; }
}

@media (max-width: 600px) {
  .h-ac { border-radius: 14px; max-height: calc(100vh - 240px); }
  .h-ac-item { padding: 10px 14px; gap: 10px; }
  .h-ac-item img, .h-ac-item .ic { width: 40px; height: 40px; }
  .h-ac-best img, .h-ac-best .ic { width: 48px; height: 48px; }
  .h-ac-section-title { padding: 9px 14px 5px; font-size: 9.5px; }
}

/* Trending searches no empty state */
.h-trending { display: flex; flex-direction: column; gap: 8px; }
.h-trending-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 10px 14px;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none !important; color: inherit;
  font-family: inherit; text-align: left; width: 100%;
}
.h-trending-item:hover {
  background: var(--h-card-hov); border-color: rgba(233,30,99,0.2);
  transform: translateX(4px);
}
.h-trending-item .rank {
  font-size: 16px; font-weight: 900; color: var(--gs-primary);
  width: 22px; text-align: center; flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.h-trending-item .term { flex: 1; font-size: 14px; font-weight: 600; color: #fff; }
.h-trending-item .trend {
  font-size: 11px; color: #22c55e; font-weight: 700;
  display: inline-flex; align-items: center; gap: 3px;
}

/* "Você quis dizer X?" suggestion */
.h-didyoumean {
  background: linear-gradient(135deg, rgba(255,149,0,0.08), rgba(233,30,99,0.04));
  border: 1px solid rgba(255,149,0,0.2);
  border-radius: 14px; padding: 14px 18px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.h-didyoumean .ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,149,0,0.15); color: #f59e0b;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.h-didyoumean .text { font-size: 13px; color: var(--h-mute); }
.h-didyoumean .sug { color: var(--gs-primary); font-weight: 800; text-decoration: none; font-size: 14px; }
.h-didyoumean .sug:hover { text-decoration: underline; }

/* Voice overlay (gravando) */
.h-voice-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px; animation: acFadeIn 0.2s ease;
}
.h-voice-mic {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--live-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; margin-bottom: 24px;
  animation: voiceMic 1.6s ease infinite;
}
@keyframes voiceMic {
  0% { box-shadow: 0 0 0 0 rgba(255,59,48,0.7); transform: scale(1); }
  70% { box-shadow: 0 0 0 30px rgba(255,59,48,0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); transform: scale(1); }
}
.h-voice-overlay .label { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.h-voice-overlay .hint { font-size: 13px; color: var(--h-mute); margin-bottom: 32px; max-width: 400px; text-align: center; }
.h-voice-overlay .text { font-size: 22px; font-weight: 700; color: #fff; min-height: 32px; text-align: center; }
.h-voice-overlay .cancel {
  margin-top: 32px; padding: 10px 24px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--glass-border);
  color: #fff; border-radius: 12px; cursor: pointer;
  font-size: 13px; font-weight: 700; font-family: inherit;
}
.h-voice-overlay .cancel:hover { background: rgba(255,255,255,0.1); }

/* Highlight do termo nos resultados */
mark { background: rgba(233,30,99,.2); color: #fff; border-radius: 2px; padding: 0 2px; }

/* ── Floating menu: edge pull-tab no meio da tela ────────────── */
.gs-menu-btn {
  /* override do top:12px left:12px do base.html */
  top: 50% !important;
  bottom: auto !important;
  left: 0 !important;
  /* pill vertical "colado" na borda */
  width: 22px !important;
  height: 56px !important;
  border-radius: 0 12px 12px 0 !important;
  background: rgba(18,18,31,0.6) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-left: none !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.5) !important;
  z-index: 95 !important;
  opacity: 0.7;
  backdrop-filter: blur(10px);
  transform: translateY(-50%) !important;
  transition: width 0.25s cubic-bezier(0.4,0,0.2,1),
              background 0.2s ease,
              opacity 0.25s ease,
              color 0.2s ease,
              transform 0.3s cubic-bezier(0.4,0,0.2,1) !important;
}
.gs-menu-btn:hover {
  width: 36px !important;
  background: var(--gs-primary) !important;
  color: #fff !important;
  border-color: var(--gs-primary) !important;
  opacity: 1;
}
.gs-menu-btn:active { transform: translateY(-50%) scale(0.95) !important; }

/* Auto-hide ao rolar pra baixo: desliza pra fora pela esquerda */
.gs-menu-btn.is-hidden {
  transform: translateY(-50%) translateX(-100%) !important;
  opacity: 0;
  pointer-events: none;
}

/* Mobile: levemente mais alto pra alcance do polegar */
@media (max-width: 600px) {
  .gs-menu-btn {
    width: 24px !important;
    height: 60px !important;
  }
  .gs-menu-btn:hover, .gs-menu-btn:focus {
    width: 40px !important;
  }
}

/* ── Album/CD square card (resultados busca / explorar) ── */
.h-sqgrid {
  display: grid; gap: 24px 18px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.h-sqcard {
  text-decoration: none !important; color: inherit;
  display: block; transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.h-sqcard .cv {
  position: relative; width: 100%; aspect-ratio: 1;
  border-radius: 8px; overflow: hidden;
  background: #1a1a22;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.h-sqcard .cv img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.h-sqcard .cv .play-fab {
  position: absolute; bottom: 10px; right: 10px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gs-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 8px 18px rgba(233,30,99,0.5);
}
.h-sqcard:hover .cv {
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
}
.h-sqcard:hover .cv img { transform: scale(1.06); }
.h-sqcard:hover .cv .play-fab { opacity: 1; transform: translateY(0); }
.h-sqcard:hover { transform: translateY(-3px); }

/* Título: peso normal (não bold), 2 linhas clamp, line-height confortável */
.h-sqcard h3 {
  font-size: 14px; font-weight: 600; margin: 12px 0 4px;
  color: var(--h-text); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  /* títulos em CAPS LOCK aparecem mais palatáveis em sentence case */
  text-transform: none;
}
.h-sqcard:hover h3 { color: var(--gs-primary); }
.h-sqcard .meta {
  font-size: 12px; color: var(--h-mute); margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Mobile: 2 colunas, tipografia menor */
@media (max-width: 600px) {
  .h-sqgrid {
    grid-template-columns: repeat(2, 1fr); gap: 18px 12px;
  }
  .h-sqcard h3 { font-size: 13px; margin: 10px 0 2px; }
  .h-sqcard .cv .play-fab { width: 38px; height: 38px; font-size: 12px; }
}
@media (max-width: 380px) {
  .h-sqgrid { gap: 14px 10px; }
}

/* ── Lista de músicas (resultados de busca) — UX 2026 ─────── */

/* Cabeçalho com ações em massa: tocar tudo, fila, mostrar mais */
.h-songs-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.h-songs-header .play-all {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gs-primary); color: #fff;
  padding: 9px 18px; border-radius: 24px;
  font-size: 13px; font-weight: 800; font-family: inherit;
  border: none; cursor: pointer;
  box-shadow: 0 8px 18px rgba(233,30,99,0.35);
  transition: all 0.2s;
}
.h-songs-header .play-all:hover { transform: scale(1.04); filter: brightness(1.1); }
.h-songs-header .play-all i { font-size: 11px; }
.h-songs-header .queue-all {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border);
  color: var(--h-text); font-size: 12px; font-weight: 700;
  padding: 8px 14px; border-radius: 20px;
  cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.h-songs-header .queue-all:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
}
.h-songs-header .total {
  margin-left: auto; font-size: 12px; color: var(--h-mute);
}

/* Lista — agora com numeração, hover trocando # por play */
.h-songs {
  display: grid; grid-template-columns: 1fr; gap: 2px;
}
@media (min-width: 720px) {
  .h-songs { grid-template-columns: 1fr 1fr; gap: 2px 32px; }
}
.h-song {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px; border-radius: 8px;
  background: none; border: 1px solid transparent;
  text-align: left; width: 100%; color: inherit;
  font-family: inherit; cursor: pointer;
  transition: background 0.15s ease;
  position: relative;
  outline: none;
}
.h-song:hover, .h-song:focus-visible {
  background: rgba(255,255,255,0.04);
}
.h-song:focus-visible { box-shadow: 0 0 0 2px var(--gs-primary); }
.h-song .info p .sep {
  margin: 0 4px; opacity: 0.4;
}
/* Track number (esquerda) — vira play em hover */
.h-song .pos {
  width: 22px; flex-shrink: 0; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--h-dim);
  font-variant-numeric: tabular-nums;
  position: relative;
}
.h-song .pos i.fa-play {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  color: var(--gs-primary); font-size: 11px;
}
.h-song:hover .pos span { opacity: 0; }
.h-song:hover .pos i.fa-play { display: flex; }

.h-song img {
  width: 40px; height: 40px; border-radius: 6px;
  object-fit: cover; flex-shrink: 0;
}
.h-song .info { flex: 1; min-width: 0; }
.h-song .info h4 {
  font-size: 14px; font-weight: 600; margin: 0; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.h-song .info p {
  font-size: 12px; color: var(--h-mute); margin: 1px 0 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.h-song .info p .album-link {
  color: var(--h-mute); text-decoration: none;
}
.h-song .info p .album-link:hover { color: #fff; text-decoration: underline; }

/* Duração à direita */
.h-song .dur {
  font-size: 12px; color: var(--h-mute);
  font-variant-numeric: tabular-nums; flex-shrink: 0;
  margin-left: 6px;
}
/* Botão play original some — agora vem em hover via .pos */
.h-song > i.fa-play.play { display: none; }

/* Quick actions (hover) */
.h-song .qa {
  display: flex; align-items: center; gap: 4px;
  opacity: 0; transition: opacity 0.15s;
  flex-shrink: 0;
}
.h-song:hover .qa { opacity: 1; }
.h-song .qa-btn {
  width: 28px; height: 28px; border-radius: 6px;
  background: transparent; border: none;
  color: var(--h-mute); cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: all 0.15s;
  font-family: inherit;
}
.h-song .qa-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
.h-song .qa-btn.saved { color: var(--gs-primary); }

/* Mostrar mais / menos */
.h-show-more {
  display: block; width: 100%;
  background: rgba(255,255,255,0.04); border: 1px dashed var(--glass-border);
  color: var(--h-text); font-size: 13px; font-weight: 700;
  padding: 12px; border-radius: 12px;
  margin-top: 12px; cursor: pointer; font-family: inherit;
  transition: all 0.2s;
}
.h-show-more:hover {
  background: rgba(255,255,255,0.08); border-color: var(--gs-primary); color: var(--gs-primary);
}

/* Resultado oculto até clicar em "Ver mais" */
.h-song.hidden-result { display: none; }
.h-songs.expanded .h-song.hidden-result { display: flex; }

/* Mobile: empilha 1 coluna mesmo no tablet */
@media (max-width: 720px) {
  .h-song { padding: 10px 8px; }
  .h-song img { width: 44px; height: 44px; }
  .h-song .qa { display: none; } /* Mobile: longpress / menu invocaria */
  .h-songs-header { flex-wrap: wrap; }
  .h-songs-header .total { margin-left: 0; flex-basis: 100%; }
}

/* ── Ao vivo: badge no título + empty hero ─────────────────── */
.badge-live-count {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.42em; font-weight: 800; vertical-align: middle;
  background: var(--live-red); color: #fff;
  padding: 5px 11px; border-radius: 999px;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-left: 12px;
  box-shadow: 0 4px 14px rgba(255,59,48,0.35);
}
.badge-live-count .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #fff;
  animation: pulseDot 1.5s ease infinite;
}

/* Empty hero quando 0 lives ativas */
.h-live-empty {
  text-align: center; padding: 60px 24px 40px;
  background: linear-gradient(180deg, rgba(255,59,48,0.05) 0%, transparent 100%);
  border: 1px dashed rgba(255,59,48,0.15);
  border-radius: 24px; margin-bottom: 36px;
  position: relative; overflow: hidden;
}
.h-live-empty::before {
  content: ''; position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,59,48,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.h-live-empty .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,59,48,0.1);
  color: var(--live-red);
  font-size: 28px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
  animation: emptyMicPulse 2s ease infinite;
}
@keyframes emptyMicPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,59,48,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(255,59,48,0); }
}
.h-live-empty h2 {
  font-size: clamp(20px, 3vw, 28px); font-weight: 800;
  color: #fff; margin: 0 0 8px;
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.h-live-empty p {
  font-size: 14px; color: var(--h-mute); margin: 0 0 24px;
  max-width: 380px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.h-live-empty .h-btn {
  position: relative; z-index: 1;
}

@media (max-width: 600px) {
  .h-live-empty { padding: 40px 20px 32px; border-radius: 18px; }
  .h-live-empty .ico { width: 60px; height: 60px; font-size: 22px; margin-bottom: 14px; }
  .h-live-empty h2 { font-size: 19px; }
  .badge-live-count { font-size: 0.4em; padding: 4px 9px; margin-left: 8px; }
}

/* ── Composer bar 2026: tools + counter + emoji picker ─────── */
.h-composer-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 12px;
}
.h-composer-tools { display: flex; gap: 4px; align-items: center; }
.ct-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: none; border-radius: 10px;
  color: var(--h-mute); cursor: pointer; padding: 0;
  font-size: 16px; font-family: inherit;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
  position: relative;
}
.ct-btn:hover { background: rgba(255,255,255,0.06); color: var(--h-text); }
.ct-btn:active { transform: scale(0.92); }
.ct-btn.active { color: var(--gs-primary); background: rgba(233,30,99,0.1); }

.h-composer-end { display: flex; align-items: center; gap: 12px; }
.ct-counter {
  font-size: 11px; font-weight: 600; color: var(--h-dim);
  font-variant-numeric: tabular-nums;
  transition: color 0.2s;
}
.ct-counter.warn { color: #f59e0b; }
.ct-counter.over { color: var(--live-red); }

.ct-pub {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gs-gradient); color: #fff; border: none;
  padding: 9px 18px; border-radius: 22px;
  font-size: 13px; font-weight: 800; cursor: pointer; font-family: inherit;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(233,30,99,0.35);
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
}
.ct-pub:hover:not(:disabled) {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 22px rgba(233,30,99,0.45);
}
.ct-pub:active:not(:disabled) { transform: translateY(0) scale(0.98); }
.ct-pub:disabled {
  opacity: 0.4; cursor: not-allowed; box-shadow: none;
  filter: saturate(0.5);
}
.ct-pub i { font-size: 11px; }

/* Emoji picker (grade compacta) */
.ct-emoji {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px; margin-top: 10px; padding: 10px;
  background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border);
  border-radius: 12px;
  animation: acFadeIn 0.2s ease-out;
}
.ct-emoji span {
  display: flex; align-items: center; justify-content: center;
  height: 36px; border-radius: 8px;
  cursor: pointer; font-size: 20px;
  transition: background 0.15s, transform 0.15s;
  user-select: none;
}
.ct-emoji span:hover { background: rgba(255,255,255,0.08); transform: scale(1.15); }
.ct-emoji span:active { transform: scale(0.9); }

/* Mobile: tools menores, publicar mais compacto */
@media (max-width: 600px) {
  .ct-btn { width: 36px; height: 36px; font-size: 15px; }
  .ct-pub { padding: 8px 14px; font-size: 12px; }
  .ct-pub span { display: none; } /* só ícone no mobile */
  .ct-pub { width: 38px; height: 38px; padding: 0; justify-content: center; border-radius: 50%; }
  .ct-emoji { grid-template-columns: repeat(7, 1fr); }
  .h-composer-end { gap: 8px; }
  .ct-counter { font-size: 10px; }
}

/* ── Genre tiles — cards coloridos estilo Spotify ──────────── */
.h-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.h-chip {
  position: relative;
  display: flex; align-items: flex-start;
  padding: 18px 16px;
  height: 92px;
  border-radius: 12px;
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      var(--chip-c, var(--gs-primary)) 0%,
      color-mix(in srgb, var(--chip-c, var(--gs-primary)) 55%, #000) 100%
    );
  overflow: hidden; isolation: isolate;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
/* Note decorativa rotacionada no canto inferior direito */
.h-chip::after {
  content: '♪';
  position: absolute; right: -12px; bottom: -22px;
  font-size: 80px; line-height: 1;
  color: rgba(0,0,0,0.22);
  transform: rotate(20deg);
  pointer-events: none;
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), color 0.3s ease;
}
.h-chip:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 28px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.1);
}
.h-chip:hover::after {
  transform: rotate(35deg) scale(1.1);
  color: rgba(255,255,255,0.22);
}
.h-chip:active { transform: translateY(-1px); }

/* Fallback se browser não suporta color-mix() */
@supports not (background: color-mix(in srgb, red, blue)) {
  .h-chip {
    background:
      linear-gradient(135deg,
        var(--chip-c, var(--gs-primary)) 0%,
        rgba(0,0,0,0.45) 100%
      );
  }
}

/* Mobile: 2 colunas, altura menor */
@media (max-width: 600px) {
  .h-chips {
    grid-template-columns: repeat(2, 1fr); gap: 10px;
  }
  .h-chip {
    height: 76px; padding: 14px; font-size: 15px;
    border-radius: 10px;
  }
  .h-chip::after { font-size: 64px; bottom: -18px; right: -10px; }
}
@media (max-width: 360px) {
  .h-chips { gap: 8px; }
  .h-chip { font-size: 14px; }
}
