  :root {
    --bg: #0a0710;
    --bg2: #100d19;
    --bg3: #1a1228;
    --surface: #1e1630;
    --surface2: #261d3a;
    
    /* CORES DA LOGO PARNA FM */
    --purple: #4a148c;          /* Roxo escuro da bolinha */
    --purple-light: #9c27b0;    /* Roxo mais claro para textos */
    --purple-dim: rgba(74, 20, 140, 0.2);
    
    --yellow: #ffb300;          /* Amarelo dourado do texto PARNÁ */
    --yellow-light: #ffd54f;    /* Amarelo claro para hover */
    --yellow-dim: rgba(255, 179, 0, 0.15);
    
    --orange: #ff6d00;          /* Laranja da borda da bolinha */
    --orange-dim: rgba(255, 109, 0, 0.15);
    
    --green: #34d399;           /* Mantemos o verde para "Ao Vivo" */
    --green-dim: rgba(52,211,153,0.15);
    
    --text: #f5f0ff;
    --text2: #b8a9d4;
    --text3: #6b5f82;
    --border: rgba(255, 179, 0, 0.2);
    --border2: rgba(255,255,255,0.06);
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,7,16,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border2);
  }

  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

  .nav-logo-mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--purple);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 4px;
  }
  .nav-logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }

  .nav-logo-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; color: var(--text); }
  .nav-logo-freq { font-size: 11px; color: var(--text3); font-weight: 400; }

  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a { color: var(--text2); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: var(--yellow); }

  .nav-cta {
    display: flex; align-items: center; gap: 8px;
    background: var(--yellow); color: #1a0a2e; text-decoration: none;
    padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
    transition: background 0.2s, transform 0.15s; cursor: pointer;
  }
  .nav-cta:hover { background: var(--orange); transform: translateY(-1px); }

  .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 1.5s ease-in-out infinite;
    flex-shrink: 0;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 100px 40px 60px; overflow: hidden;
  }

  .hero-bg-glow {
    position: absolute; top: -200px; left: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,179,0,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-bg-glow2 {
    position: absolute; bottom: -200px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(74,20,140,0.2) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-dim); border: 1px solid rgba(52,211,153,0.25);
    color: var(--green); border-radius: 100px;
    padding: 5px 14px 5px 8px; font-size: 12px; font-weight: 500; margin-bottom: 24px;
  }

  h1 {
    font-family: 'Syne', sans-serif; font-size: clamp(42px, 5vw, 68px);
    font-weight: 800; line-height: 1.05; letter-spacing: -2px; margin-bottom: 20px;
  }
  h1 span { color: var(--yellow); }

  .hero-sub { font-size: 17px; color: var(--text2); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--yellow); color: #1a0a2e; text-decoration: none;
    padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 600;
    transition: all 0.2s; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,109,0,0.35); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--yellow-light); text-decoration: none;
    padding: 14px 28px; border-radius: 100px; font-size: 15px; font-weight: 500;
    border: 1px solid var(--border); transition: all 0.2s; cursor: pointer;
  }
  .btn-ghost:hover { color: var(--yellow); border-color: var(--yellow); background: var(--yellow-dim); }

  /* PLAYER HERO */
  .player-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 24px; padding: 28px; position: relative; overflow: hidden;
  }
  .player-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  }

  .player-now-label {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--text3); font-weight: 500; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px; transition: color 0.3s;
  }
  .player-now-label.tocando-agora { color: var(--green); }

  .player-artwork {
    width: 100%; aspect-ratio: 1; border-radius: 16px; background: var(--bg3);
    margin-bottom: 20px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .player-artwork-inner {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1155 50%, #1a1a3e 100%);
    display: flex; align-items: center; justify-content: center;
  }

  /* LOGO PADRÃO NO PLAYER */
  .player-logo-default {
      max-width: 60%;
      max-height: 60%;
      object-fit: contain;
      z-index: 1;
      opacity: 0.8;
  }

  .soundwave { display: flex; align-items: center; gap: 4px; height: 60px; z-index: 0; }
  .soundwave-bar {
    width: 4px; border-radius: 2px; background: var(--yellow);
    animation: wave 1.2s ease-in-out infinite; transition: opacity 0.3s;
  }
  .soundwave.pausado .soundwave-bar { animation-play-state: paused; opacity: 0.3; }
  .soundwave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
  .soundwave-bar:nth-child(2) { height: 40px; animation-delay: 0.1s; }
  .soundwave-bar:nth-child(3) { height: 55px; animation-delay: 0.2s; }
  .soundwave-bar:nth-child(4) { height: 35px; animation-delay: 0.3s; }
  .soundwave-bar:nth-child(5) { height: 50px; animation-delay: 0.4s; }
  .soundwave-bar:nth-child(6) { height: 30px; animation-delay: 0.5s; }
  .soundwave-bar:nth-child(7) { height: 45px; animation-delay: 0.6s; }
  .soundwave-bar:nth-child(8) { height: 20px; animation-delay: 0.7s; }

  @keyframes wave {
    0%, 100% { transform: scaleY(1); opacity: 0.7; }
    50% { transform: scaleY(0.4); opacity: 1; }
  }

  .player-freq-badge {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
    border: 1px solid var(--border2); color: var(--text);
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
    padding: 4px 10px; border-radius: 8px; z-index: 3;
  }

  .player-song { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 2px; }
  .player-artist { font-size: 13px; color: var(--text2); margin-bottom: 16px; }

  .player-progress { height: 3px; background: var(--surface2); border-radius: 2px; margin-bottom: 16px; overflow: hidden; }
  .player-progress-bar {
    height: 100%; width: 0%; border-radius: 2px; transition: width 0.3s;
    background: linear-gradient(90deg, var(--yellow), var(--orange));
  }
  .player-progress-bar.streaming {
    width: 100%;
    background: linear-gradient(90deg, var(--yellow), var(--orange), var(--yellow));
    background-size: 200% 100%;
    animation: barra-stream 2s linear infinite;
  }
  @keyframes barra-stream { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

  .player-volume { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 0 4px; }
  .player-volume svg { flex-shrink: 0; color: var(--text3); }
  .player-volume:hover svg { color: var(--yellow); }

  .vol-slider {
    -webkit-appearance: none; appearance: none; flex: 1; height: 3px;
    border-radius: 2px; outline: none; cursor: pointer; background: var(--surface2);
  }
  .vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); cursor: pointer; }
  .vol-slider::-moz-range-thumb { width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); border: none; cursor: pointer; }
  .vol-val { font-size: 11px; color: var(--text3); min-width: 28px; text-align: right; font-variant-numeric: tabular-nums; }

  .player-controls { display: flex; align-items: center; justify-content: center; gap: 20px; }
  .ctrl {
    background: none; border: none; color: var(--text2); cursor: pointer;
    padding: 8px; border-radius: 50%; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
  }
  .ctrl:hover { color: var(--text); background: var(--surface2); }

  .ctrl-play {
    width: 52px; height: 52px; background: var(--yellow); border-radius: 50%;
    border: none; color: #1a0a2e; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s; box-shadow: 0 8px 25px rgba(255,179,0,0.4);
  }
  .ctrl-play:hover { background: var(--orange); }
  .ctrl-play.tocando { background: var(--green); color: white; box-shadow: 0 8px 25px rgba(52,211,153,0.4); }

  /* TOAST */
  .toast-container {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--surface); border: 1px solid var(--border); color: var(--text);
    padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 500;
    z-index: 999; pointer-events: none; opacity: 0;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex; align-items: center; gap: 8px;
    backdrop-filter: blur(16px); box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  }
  .toast-container.visivel { opacity: 1; transform: translateX(-50%) translateY(0); }
  .toast-ponto { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .toast-ponto.verde { background: var(--green); }
  .toast-ponto.roxo { background: var(--yellow); }
  .toast-ponto.amarelo { background: #fbbf24; animation: pulse-dot 0.8s ease-in-out infinite; }

  /* STATS */
  .stats-band { background: var(--bg2); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); padding: 32px 40px; }
  .stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
  .stat-item { padding: 0 40px; border-right: 1px solid var(--border2); text-align: center; }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-right: none; padding-right: 0; }
  .stat-num { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -1px; }
  .stat-num span { color: var(--yellow); }
  .stat-label { font-size: 12px; color: var(--text3); margin-top: 2px; text-transform: uppercase; letter-spacing: 1px; }

  /* SECTIONS */
  section { padding: 80px 40px; position: relative; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    color: var(--yellow); margin-bottom: 8px;
  }
  .section-tag::before { content: ''; width: 20px; height: 2px; background: var(--yellow); border-radius: 1px; }
  h2 { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
  .view-all {
    color: var(--text2); text-decoration: none; font-size: 13px; font-weight: 500;
    display: flex; align-items: center; gap: 6px; padding-bottom: 4px;
    border-bottom: 1px solid var(--border); transition: color 0.2s;
  }
  .view-all:hover { color: var(--yellow); }

  /* NEWS */
  .news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; align-items: start; }
  .news-card {
    border-radius: 18px; overflow: hidden; cursor: pointer; text-decoration: none;
    display: flex; flex-direction: column; background: var(--surface);
    border: 1px solid var(--border2); transition: transform 0.2s, border-color 0.2s;
  }
  .news-card:hover { transform: translateY(-3px); border-color: var(--border); }
  .news-card.featured { grid-row: 1 / 3; min-height: 440px; }
  .news-card-img {
    width: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 48px; background: var(--bg3); position: relative; flex-shrink: 0;
  }
  .news-card.featured .news-card-img { height: 280px; }
  .news-card:not(.featured) .news-card-img { height: 110px; font-size: 32px; }
  .news-card-img .emoji-bg { font-size: 80px; opacity: 0.06; position: absolute; right: -10px; bottom: -10px; pointer-events: none; }
  .nc1 { background: linear-gradient(135deg, #0d0a24, #1a0f38); }
  .nc2 { background: linear-gradient(135deg, #0a1a0d, #0d2e15); }
  .nc3 { background: linear-gradient(135deg, #1a0a0a, #2e0d0d); }
  .nc4 { background: linear-gradient(135deg, #0a0d1a, #0d1530); }
  .nc5 { background: linear-gradient(135deg, #160a1a, #250d2e); }
  .news-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
  .news-cat { display: inline-block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 3px 8px; border-radius: 4px; margin-bottom: 8px; width: fit-content; }
  .cat-show { background: var(--yellow-dim); color: var(--yellow); }
  .cat-pop { background: rgba(52,211,153,0.12); color: var(--green); }
  .cat-cine { background: rgba(251,146,60,0.12); color: #fb923c; }
  .cat-music { background: rgba(96,165,250,0.12); color: #60a5fa; }
  .cat-news { background: rgba(248,113,113,0.12); color: #f87171; }
  .news-title { font-family: 'Syne', sans-serif; font-weight: 600; color: var(--text); line-height: 1.35; }
  .news-card.featured .news-title { font-size: 20px; }
  .news-card:not(.featured) .news-title { font-size: 13px; }
  .news-meta { font-size: 11px; color: var(--text3); margin-top: auto; padding-top: 8px; }

  /* PROGRAMACAO */
  .prog-section { background: var(--bg2); }
  .prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .prog-card {
    background: var(--surface); border: 1px solid var(--border2); border-radius: 18px;
    padding: 24px; transition: border-color 0.2s, transform 0.2s; position: relative; overflow: hidden;
  }
  .prog-card:hover { border-color: var(--border); transform: translateY(-2px); }
  .prog-card.active { border-color: var(--yellow); background: linear-gradient(135deg, var(--surface) 0%, var(--yellow-dim) 100%); }
  .prog-card.active::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--yellow), var(--orange)); }
  .prog-time { font-size: 11px; color: var(--text3); font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
  .prog-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
  .prog-host { font-size: 12px; color: var(--text2); margin-bottom: 16px; }
  .prog-bar-wrap { height: 3px; background: var(--surface2); border-radius: 2px; }
  .prog-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--yellow), var(--orange)); }
  .prog-live-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }

  /* AO VIVO */
  .live-section { background: var(--bg); }
  .live-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .live-text h2 { margin-bottom: 12px; }
  .live-text p { color: var(--text2); line-height: 1.8; margin-bottom: 28px; }

  .live-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green-dim); border: 1px solid rgba(52,211,153,0.25);
    border-radius: 10px; padding: 10px 16px; transition: all 0.3s;
  }
  .live-pill.desligado { background: var(--yellow-dim); border-color: rgba(255,179,0,0.25); }
  .live-pill span { font-size: 13px; color: var(--green); font-weight: 500; transition: color 0.3s; }
  .live-pill.desligado span { color: var(--yellow); }

  .live-player {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 24px; padding: 32px; position: relative; overflow: hidden;
  }
  .live-player::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--yellow), var(--orange), transparent);
  }

  .lp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
  .lp-left { display: flex; align-items: center; gap: 12px; }
  .lp-logo {
    width: 48px; height: 48px; border-radius: 14px; background: var(--purple);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden; padding: 6px;
  }
  .lp-logo img { width: 100%; height: 100%; object-fit: contain; }
  .lp-info h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; }
  .lp-info p { font-size: 12px; color: var(--text3); margin: 0; }

  .lp-badge {
    display: flex; align-items: center; gap: 6px;
    background: var(--green-dim); border: 1px solid rgba(52,211,153,0.25);
    border-radius: 100px; padding: 5px 12px;
    font-size: 11px; font-weight: 600; color: var(--green);
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s;
  }
  .lp-badge.desligado { background: var(--yellow-dim); border-color: rgba(255,179,0,0.25); color: var(--yellow); }
  .lp-badge .live-dot { transition: all 0.3s; }
  .lp-badge.desligado .live-dot { animation: none; opacity: 0.4; background: var(--yellow); }

  .lp-ondas {
    display: flex; align-items: center; justify-content: center; gap: 3px;
    height: 80px; background: var(--bg3); border-radius: 16px;
    margin-bottom: 24px; padding: 0 20px; overflow: hidden; position: relative;
  }
  .lp-ondas::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg3), rgba(255,179,0,0.04), var(--bg3)); pointer-events: none; }
  .lp-bar {
    width: 3px; border-radius: 2px; background: var(--yellow);
    animation: lp-onda 0.8s ease-in-out infinite alternate; transition: opacity 0.3s;
  }
  .lp-ondas.pausado .lp-bar { animation-play-state: paused; opacity: 0.2; }
  .lp-bar:nth-child(odd) { background: var(--orange); opacity: 0.8; }
  @keyframes lp-onda { 0% { transform: scaleY(0.3); } 100% { transform: scaleY(1); } }
  .lp-bar:nth-child(1)  { height: 15px; animation-delay: 0.00s; }
  .lp-bar:nth-child(2)  { height: 35px; animation-delay: 0.05s; }
  .lp-bar:nth-child(3)  { height: 55px; animation-delay: 0.10s; }
  .lp-bar:nth-child(4)  { height: 25px; animation-delay: 0.15s; }
  .lp-bar:nth-child(5)  { height: 65px; animation-delay: 0.20s; }
  .lp-bar:nth-child(6)  { height: 40px; animation-delay: 0.25s; }
  .lp-bar:nth-child(7)  { height: 70px; animation-delay: 0.30s; }
  .lp-bar:nth-child(8)  { height: 30px; animation-delay: 0.35s; }
  .lp-bar:nth-child(9)  { height: 50px; animation-delay: 0.40s; }
  .lp-bar:nth-child(10) { height: 60px; animation-delay: 0.45s; }
  .lp-bar:nth-child(11) { height: 20px; animation-delay: 0.50s; }
  .lp-bar:nth-child(12) { height: 45px; animation-delay: 0.55s; }
  .lp-bar:nth-child(13) { height: 35px; animation-delay: 0.60s; }
  .lp-bar:nth-child(14) { height: 55px; animation-delay: 0.65s; }
  .lp-bar:nth-child(15) { height: 25px; animation-delay: 0.70s; }
  .lp-bar:nth-child(16) { height: 65px; animation-delay: 0.75s; }
  .lp-bar:nth-child(17) { height: 40px; animation-delay: 0.80s; }
  .lp-bar:nth-child(18) { height: 50px; animation-delay: 0.85s; }
  .lp-bar:nth-child(19) { height: 30px; animation-delay: 0.90s; }
  .lp-bar:nth-child(20) { height: 20px; animation-delay: 0.95s; }

  .lp-controls { display: flex; align-items: center; gap: 16px; }
  .lp-play {
    width: 60px; height: 60px; border-radius: 50%; border: none;
    background: var(--yellow); color: #1a0a2e; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s; box-shadow: 0 8px 30px rgba(255,179,0,0.4); flex-shrink: 0;
  }
  .lp-play:hover { background: var(--orange); }
  .lp-play.tocando { background: var(--green); color: white; box-shadow: 0 8px 30px rgba(52,211,153,0.4); }

  .lp-right { flex: 1; display: flex; flex-direction: column; gap: 10px; }
  .lp-vol-row { display: flex; align-items: center; gap: 10px; }
  .lp-vol-row svg { flex-shrink: 0; color: var(--text3); }
  .lp-vol-row:hover svg { color: var(--yellow); }
  .lp-vol {
    -webkit-appearance: none; appearance: none; flex: 1; height: 4px;
    border-radius: 2px; outline: none; cursor: pointer; background: var(--surface2);
  }
  .lp-vol::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: var(--yellow); cursor: pointer; }
  .lp-vol::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--yellow); border: none; cursor: pointer; }
  .lp-vol-val { font-size: 12px; color: var(--text3); min-width: 32px; text-align: right; font-variant-numeric: tabular-nums; }

  /* ===== HISTÓRICO ===== */
  .history-section { background: var(--bg2); }
  .history-grid { display: flex; flex-wrap: wrap; gap: 8px; }
  .history-item {
    background: var(--surface); border: 1px solid var(--border2); border-radius: 100px;
    padding: 8px 18px; font-size: 13px; color: var(--text2); white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis; max-width: 320px; transition: all 0.2s; cursor: default;
  }
  .history-item:hover { border-color: var(--border); color: var(--text); }
  .history-empty { color: var(--text3); font-size: 13px; padding: 8px 0; }
  .history-note { font-size: 12px; color: var(--text3); margin-top: 16px; font-style: italic; }

  /* SOCIAL */
  .social-section { background: var(--bg); }
  .social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .social-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 32px 20px; border-radius: 18px; border: 1px solid var(--border2);
    background: var(--surface); text-decoration: none; transition: all 0.2s; gap: 12px;
  }
  .social-card:hover { transform: translateY(-4px); }
  .social-card.fb:hover { border-color: #3b82f6; box-shadow: 0 8px 30px rgba(59,130,246,0.15); }
  .social-card.ig:hover { border-color: #ec4899; box-shadow: 0 8px 30px rgba(236,72,153,0.15); }
  .social-card.tw:hover { border-color: #94a3b8; box-shadow: 0 8px 30px rgba(148,163,184,0.1); }
  .social-card.wa:hover { border-color: #34d399; box-shadow: 0 8px 30px rgba(52,211,153,0.15); }
  .social-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
  .social-icon.fb { background: rgba(59,130,246,0.15); }
  .social-icon.ig { background: rgba(236,72,153,0.15); }
  .social-icon.tw { background: rgba(148,163,184,0.1); }
  .social-icon.wa { background: rgba(52,211,153,0.12); }
  .social-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; }
  .social-handle { font-size: 12px; color: var(--text3); }

  /* APP */
  .app-section { background: var(--bg); border-top: 1px solid var(--border2); }
  .app-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .app-text h2 { margin-bottom: 12px; }
  .app-text p { color: var(--text2); line-height: 1.8; margin-bottom: 28px; }
  .app-store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 12px 20px; text-decoration: none; transition: all 0.2s;
  }
  .app-store-btn:hover { border-color: var(--yellow); background: var(--yellow-dim); transform: translateY(-2px); }
  .app-store-btn-icon { font-size: 28px; }
  .app-store-btn-sub { font-size: 10px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; }
  .app-store-btn-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; }

  .app-visual { position: relative; display: flex; justify-content: center; }
  .phone-mock { width: 220px; background: var(--surface); border: 1px solid var(--border); border-radius: 36px; padding: 20px 16px; box-shadow: 0 40px 80px rgba(0,0,0,0.4); }
  .phone-notch { width: 80px; height: 24px; background: var(--bg); border-radius: 12px; margin: 0 auto 16px; }
  .phone-app-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
  .phone-logo-sm { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 12px; color: var(--yellow); }
  .phone-live { display: flex; align-items: center; gap: 4px; font-size: 9px; color: var(--green); font-weight: 600; }
  .phone-player { background: var(--bg3); border-radius: 14px; padding: 14px; margin-bottom: 12px; text-align: center; }
  .phone-wave { display: flex; align-items: center; justify-content: center; gap: 2px; height: 30px; margin-bottom: 8px; }
  .phone-wave-bar { width: 2px; border-radius: 1px; background: var(--yellow); animation: wave 1.2s ease-in-out infinite; }
  .phone-wave-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
  .phone-wave-bar:nth-child(2) { height: 18px; animation-delay: 0.1s; }
  .phone-wave-bar:nth-child(3) { height: 24px; animation-delay: 0.2s; }
  .phone-wave-bar:nth-child(4) { height: 14px; animation-delay: 0.3s; }
  .phone-wave-bar:nth-child(5) { height: 20px; animation-delay: 0.4s; }
  .phone-wave-bar:nth-child(6) { height: 10px; animation-delay: 0.5s; }
  .phone-song-sm { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; }
  .phone-artist-sm { font-size: 9px; color: var(--text2); }
  .phone-list-item { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border2); }
  .phone-list-item:last-child { border-bottom: none; }
  .phone-list-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--surface2); flex-shrink: 0; }
  .phone-list-dot.on { background: var(--yellow); }
  .phone-list-text { font-size: 9px; color: var(--text2); flex: 1; }
  .phone-list-time { font-size: 8px; color: var(--text3); }

  /* MAPA */
  .map-section { background: var(--bg2); }
  .map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--border2); margin-top: 40px; }

  /* FOOTER */
  footer { background: var(--bg); border-top: 1px solid var(--border2); padding: 48px 40px 32px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
    margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border2);
  }
  .footer-brand p { font-size: 14px; color: var(--text2); line-height: 1.8; margin-top: 14px; max-width: 300px; }
  .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: var(--text2); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--yellow); }
  .footer-contact-item { display: flex; align-items: center; gap: 10px; color: var(--text2); font-size: 14px; margin-bottom: 12px; text-decoration: none; }
  .footer-contact-item:hover { color: var(--yellow); }
  .footer-contact-icon { width: 30px; height: 30px; background: var(--surface); border: 1px solid var(--border2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .footer-bottom p { font-size: 12px; color: var(--text3); }
  .footer-bottom a { color: var(--text3); text-decoration: none; }
  .footer-bottom a:hover { color: var(--yellow); }

  .hamburger { display: none; }

  /* MENU MOBILE E RESPONSIVO */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: rgba(10,7,16,0.97); backdrop-filter: blur(20px); flex-direction: column; padding: 20px; gap: 20px; border-bottom: 1px solid var(--border2); }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 101; }
    .hamburger span { width: 22px; height: 2px; background: var(--text2); border-radius: 1px; transition: all 0.3s; }
    .hero { padding: 90px 20px 50px; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .player-card { max-width: 360px; margin: 0 auto; }
    section { padding: 60px 20px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { border-right: none; padding: 0; border-bottom: 1px solid var(--border2); padding-bottom: 16px; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card.featured { grid-row: auto; min-height: auto; }
    .news-card.featured .news-card-img { height: 200px; }
    .prog-grid { grid-template-columns: 1fr; }
    .live-inner, .app-inner { grid-template-columns: 1fr; gap: 40px; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    h1 { font-size: 36px; letter-spacing: -1px; }
    h2 { font-size: 26px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .stats-band { padding: 24px 20px; }
    footer { padding: 40px 20px 24px; }
    .live-player { padding: 24px; }
    .lp-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .history-item { max-width: 260px; font-size: 12px; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; }
  }

  /* ===== CAPA DO ÁLBUM ===== */
  .player-capa {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; border-radius: 16px; z-index: 2;
    opacity: 0; transition: opacity 0.5s ease;
  }
  .player-capa.ativa { opacity: 1; }

  /* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
  .whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.4); z-index: 1000;
    display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease;
  }
  .whatsapp-float:hover { background-color: #128C7E; transform: scale(1.1); box-shadow: 4px 4px 15px rgba(0,0,0,0.5); }

  /* ===== PÁGINA DA EQUIPE ===== */
  .equipe-section { padding-top: 140px; padding-bottom: 80px; background: var(--bg); min-height: 100vh; }
  .equipe-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; margin-top: 20px; }
  .equipe-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
    padding: 40px 30px; width: 320px; display: flex; flex-direction: column;
    align-items: center; text-align: center; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
  }
  .equipe-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--yellow), transparent); }
  .equipe-card:hover { transform: translateY(-5px); border-color: var(--yellow); box-shadow: 0 15px 40px rgba(255, 179, 0, 0.2); }
  .equipe-img-wrap { width: 150px; height: 150px; border-radius: 50%; overflow: hidden; margin-bottom: 24px; border: 3px solid var(--yellow); display: flex; align-items: center; justify-content: center; background: var(--bg3); }
  .equipe-img { width: 100%; height: 100%; object-fit: cover; }
  .equipe-nome { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
  .equipe-cargo { font-size: 13px; color: var(--yellow); font-weight: 600; background: var(--yellow-dim); padding: 6px 16px; border-radius: 100px; border: 1px solid rgba(255,179,0,0.25); }