/* === MINIPLAYER DA RÁDIO === */
.radio-player {
  position: fixed;
  left: 24px;
  bottom: 94px;
  z-index: 997;
  width: min(360px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(135deg, rgba(14,31,77,.98), rgba(26,58,143,.98));
  border: 1px solid rgba(244,211,107,.38);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(7,18,56,.3);
  backdrop-filter: blur(12px);
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.radio-player[hidden] { display: none; }
.radio-player[data-playing="true"] { box-shadow: 0 14px 34px rgba(7,18,56,.42), 0 0 0 3px rgba(212,160,23,.12); }
.radio-player__toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: #10245e;
  background: #f4d36b;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .18s ease, background .18s ease;
}
.radio-player__toggle:hover { transform: scale(1.06); background: #ffe08a; }
.radio-player__toggle:active { transform: scale(.96); }
.radio-player__toggle:focus-visible,
.radio-player__close:focus-visible,
.radio-player__link:focus-visible,
.radio-player__volume:focus-visible { outline: 3px solid rgba(244,211,107,.85); outline-offset: 3px; }
.radio-player__body { min-width: 0; }
.radio-player__label {
  display: block;
  margin-bottom: 2px;
  color: rgba(255,255,255,.62);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.radio-player__title {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: .94rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.radio-player__status {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
}
.radio-player__status[data-state="live"] { color: #b7f7c9; }
.radio-player__status[data-state="error"] { color: #ffd0c8; }
.radio-player__status[data-state="loading"] { color: #ffe7a6; }
.radio-player__actions { display: flex; align-items: center; gap: 6px; }
.radio-player__link,
.radio-player__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.radio-player__link:hover,
.radio-player__close:hover { color: #fff; background: rgba(255,255,255,.2); }
.radio-player__volume { width: 64px; accent-color: #f4d36b; cursor: pointer; }
.radio-player__volume-label { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,.72); }
.radio-player__volume-label i { font-size: .78rem; }

@media (max-width: 768px) {
  .radio-player {
    left: 12px;
    right: 12px;
    bottom: 78px;
    width: auto;
    grid-template-columns: auto 1fr auto;
    padding: 9px 10px;
    border-radius: 16px;
  }
  .radio-player__toggle { width: 40px; height: 40px; }
  .radio-player__volume { width: 52px; }
  .radio-player__label { font-size: .62rem; }
  .radio-player__title { font-size: .84rem; }
}

@media (max-width: 480px) {
  .radio-player { bottom: 76px; }
  .radio-player__volume-label { display: none; }
  .radio-player__actions { gap: 4px; }
}
