/* style.css - NaldoA Official (Versão Final Completa v10) */

:root {
  --bg: #030313;           /* Cor de fundo principal (quase preto) */
  --accent1: #ffcc00;      /* Dourado (Cor da marca) */
  --accent2: #3be8ff;      /* Azul Cyber (Cor secundária) */
  --spotify: #1DB954;      /* Verde oficial Spotify */
  --amazon: #00a8e1;       /* Azul oficial Amazon */
  --max-width: 1200px;     /* Largura máxima do site no PC */
}

/* === 1. RESET & ESTRUTURA BÁSICA === */
/* Remove margens padrão de todos os elementos para ter controle total */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  height: 100%;
  overflow-y: scroll; /* Garante rolagem suave */
}

body {
  min-height: 100vh;
  font-family: 'Inter', system-ui, Arial, sans-serif; /* Fonte moderna */
  color: #eef3ff; /* Texto quase branco */
  position: relative;
  overflow-x: hidden; /* Impede rolagem lateral indesejada */
  background-color: var(--bg);
}

/* Links padrão */
a { color: inherit; text-decoration: none; transition: 0.2s; }

/* === 2. FUNDO ANIMADO (CANVAS) === */
#bgCanvas {
  position: fixed; /* Fica preso na tela, não rola */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10; /* Fica atrás de tudo */
  background: #030313;
}

/* Camada escura por cima do fundo para facilitar leitura */
.overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -5;
  pointer-events: none; /* Deixa o clique passar através */
  background: radial-gradient(circle at center, transparent 10%, #000000 90%);
  opacity: 0.8;
}

/* === 3. CABEÇALHO (TOPO FIXO) === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 20; /* Fica acima do conteúdo */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  /* Fundo vidro fosco */
  background: linear-gradient(180deg, rgba(0,0,0,0.9), transparent);
  backdrop-filter: blur(4px);
}

/* Logo e Nome */
.brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.brand-logo {
  width: 48px; height: 48px; object-fit: cover;
  border-radius: 10px; border: 2px solid rgba(255,255,255,0.1);
}
.brand-title { font-family: 'Orbitron', sans-serif; font-size: 20px; color: var(--accent1); }

/* Lado Direito do Menu */
.header-right { display: flex; align-items: center; gap: 12px; }

/* Links Sociais (Pequenos botões no topo) */
.socials a {
  display: inline-block; padding: 6px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.05); font-size: 13px; color: #fff;
}
.socials a:hover { background: rgba(255,255,255,0.1); color: var(--accent1); }

/* Área do Player de Rádio */
.radio-area { display: flex; align-items: center; gap: 10px; }
.radio-mini { width: 38px; height: 38px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); }
.radio-mini img { width: 100%; height: 100%; object-fit: contain; }

/* Botão Play da Rádio */
.radio-btn {
  padding: 9px 16px; border-radius: 50px; border: 0;
  background: linear-gradient(90deg, var(--accent1), #ffaa00);
  color: #000; font-weight: 800; cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
  transition: 0.3s;
}
.radio-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 204, 0, 0.5); }
.radio-btn.playing { background: #fff; color: #000; animation: pulseBtn 2s infinite; }

/* Animação do botão pulsando quando toca */
@keyframes pulseBtn { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); } 70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

/* === 4. SEÇÃO HERO (PRINCIPAL) === */
main { position: relative; z-index: 5; padding-top: 96px; min-height: 100vh; max-width: var(--max-width); margin: 0 auto; }

.hero { display: flex; align-items: center; gap: 28px; padding: 36px 18px; }
.hero-left { max-width: 720px; }
.eyebrow { display: inline-block; padding: 6px 12px; border-radius: 50px; background: linear-gradient(90deg, var(--accent2), var(--accent1)); color: #000; font-weight: 700; font-size: 12px; margin-bottom: 10px; }
.hero-title { font-family: 'Orbitron', sans-serif; font-size: 42px; margin-bottom: 15px; text-shadow: 0 0 20px rgba(0,0,0,0.8); }
.lead { color: rgba(255,255,255,0.9); line-height: 1.6; font-size: 18px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

/* === 5. BOTÕES DE STREAMING (ESTILO GLASSMORPHISM) === */
.buttons-wrapper {
  display: flex;
  gap: 20px; /* Espaço entre botões no PC */
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  z-index: 10;
  position: relative;
}

/* Estilo Base dos Botões */
.btn-gold, .btn-spotify, .btn-ytmusic, .btn-amazonMusic {
  background: rgba(0, 0, 0, 0.4); /* Fundo transparente escuro */
  backdrop-filter: blur(4px);      /* Efeito embaçado atrás */
  color: #fff;
  padding: 16px 32px;              /* Tamanho grande no PC */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Cores e Efeitos Hover */
.btn-gold { border-color: #d4af37; color: #d4af37; }
.btn-gold:hover { background: #d4af37; color: #000; box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); transform: scale(1.05); }

.btn-ytmusic { border-color: #ff0000; color: #ff4d4d; }
.btn-ytmusic:hover { background: #ff0000; color: #fff; box-shadow: 0 0 20px rgba(255, 0, 0, 0.8); transform: scale(1.05); }

.btn-spotify { border-color: #1DB954; color: #1DB954; }
.btn-spotify:hover { background: #1DB954; color: #fff; box-shadow: 0 0 20px rgba(29, 185, 84, 0.8); transform: scale(1.05); }

.btn-amazonMusic { border-color: #00a8e1; color: #319fc4; }
.btn-amazonMusic:hover { background: #00a8e1; color: #fff; box-shadow: 0 0 20px rgba(0, 168, 225, 0.8); transform: scale(1.05); }

/* === 6. VISUALIZER (BARRINHAS NO TOPO) === */
.music-waves {
  display: flex; align-items: flex-end; gap: 3px; height: 20px; margin-left: 10px;
  opacity: 0.3; transition: opacity 0.3s;
}
.music-waves span {
  width: 4px; height: 3px; background: linear-gradient(to top, var(--accent1), var(--accent2));
  border-radius: 2px; animation: none;
}
/* Só anima quando a classe is-playing estiver ativa */
body.is-playing .music-waves { opacity: 1; }
body.is-playing .music-waves span { animation: equalizer 0.8s infinite ease-in-out; }

@keyframes equalizer { 0% { height: 3px; } 50% { height: 100%; } 100% { height: 3px; } }
/* Atrasos para criar o efeito de onda */
.music-waves span:nth-child(1) { animation-delay: 0.0s; }
.music-waves span:nth-child(2) { animation-delay: 0.2s; }
.music-waves span:nth-child(3) { animation-delay: 0.4s; }
.music-waves span:nth-child(4) { animation-delay: 0.1s; }
.music-waves span:nth-child(5) { animation-delay: 0.3s; }

.top-waves { display: none; }
@media (min-width: 768px) { .top-waves { display: flex; } }
.bottom-waves { justify-content: center; height: 40px; margin-bottom: 15px; }
.bottom-waves span { width: 6px; }

/* === 7. SEÇÕES E TEXTOS === */
.section { padding: 20px; }
.section h3 { font-family: 'Orbitron', sans-serif; font-size: 24px; margin-bottom: 20px; border-left: 4px solid var(--accent1); padding-left: 15px; text-shadow: 0 2px 4px #000; }

/* Barra de Streaming (Título) */
.streaming-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  text-align: center;
}
.streaming-bar p {
  font-size: 12px; opacity: 0.7; letter-spacing: 1px; margin-bottom: 15px;
  text-transform: uppercase; font-weight: bold;
}

/* === 8. GRADE DE VÍDEOS === */
#videoGrid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.video-card { flex: 1 1 300px; max-width: 400px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: 0.3s; background: #000; }
.video-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.8); }
.video-card iframe { width: 100%; height: 225px; border: none; display: block; }

/* === 9. MODAL (JANELA POPUP) === */
.modal { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.9); z-index: 50; opacity: 0; pointer-events: none; transition: 0.3s; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-box { width: 90%; max-width: 900px; background: #000; border-radius: 12px; overflow: hidden; position: relative; box-shadow: 0 0 50px rgba(59, 232, 255, 0.2); }
.modal-box iframe { width: 100%; height: 500px; border: 0; display: block; }
.modal-close { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.1); border: 0; color: #fff; padding: 10px; border-radius: 50%; cursor: pointer; font-size: 20px; width: 40px; height: 40px; }
.modal-close:hover { background: red; }

/* === 10. RODAPÉ === */
.site-footer { text-align: center; padding: 40px 20px; background: #000; color: rgba(255,255,255,0.5); font-size: 14px; position: relative; z-index: 10; border-top: 1px solid rgba(255,255,255,0.1); }

/* === 11. TELA DE BOAS-VINDAS (NOVO) === */

/* Impede rolagem enquanto a tela de boas-vindas estiver ativa */
body.welcome-active { overflow: hidden; }

#welcome-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  /* Fundo com sua foto + película escura 70% */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/Image_67.jpeg') no-repeat center center/cover;
  background-color: #030313; /* Cor de segurança */
  z-index: 9999; /* Fica acima de TUDO */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out, visibility 0.8s;
}

/* Classe para esconder suavemente */
#welcome-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Caixa do botão */
.welcome-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* O Botão que Brilha */
.glowing-btn {
  padding: 20px 40px;
  font-size: 22px;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  color: #fff;
  background: transparent;
  border: 2px solid var(--accent1);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* Brilho Dourado Inicial */
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.4), inset 0 0 20px rgba(255, 204, 0, 0.2);
  animation: pulseGlow 2s infinite ease-in-out;
}

.glowing-btn:hover {
  background: var(--accent1);
  color: #000;
  box-shadow: 0 0 40px rgba(255, 204, 0, 0.8), 0 0 80px rgba(59, 232, 255, 0.4);
  transform: scale(1.05);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 20px rgba(255, 204, 0, 0.4), inset 0 0 10px rgba(255, 204, 0, 0.2); }
  50% { box-shadow: 0 0 50px rgba(255, 204, 0, 0.7), 0 0 30px rgba(59, 232, 255, 0.5), inset 0 0 20px rgba(255, 204, 0, 0.5); border-color: var(--accent2); color: var(--accent2); }
  100% { box-shadow: 0 0 20px rgba(255, 204, 0, 0.4), inset 0 0 10px rgba(255, 204, 0, 0.2); }
}

/* === 12. RESPONSIVO MOBILE (VERSÃO FINAL: TUDO OTIMIZADO) === */
@media (max-width: 768px) {
  
  /* --- AJUSTES DO HEADER --- */
  .site-header {
    display: flex; flex-wrap: wrap; align-items: center;
    padding: 8px 12px; height: auto; gap: 0; 
  }

  .brand { flex: 0 0 40%; order: 1; }
  .brand-title { display: none; } /* Esconde texto NaldoA */

  .header-right { display: contents; }
  
  /* Rádio + Foto (Direita) */
  .radio-area {
    flex: 0 0 60%; order: 2; 
    justify-content: flex-end; margin: 0;
  }
  .radio-mini {
    display: block !important;
    width: 28px; height: 28px; margin-right: 6px;
  }
  .music-waves { display: none; }
  
  .radio-btn {
    padding: 6px 12px; font-size: 11px;
    height: 30px; display: flex; align-items: center;
  }

  /* --- MENU SOCIAL (ROLAGEM HORIZONTAL) --- */
  .socials {
    order: 3; width: 100%; margin-top: 8px; 
    display: flex; overflow-x: auto; padding-bottom: 5px; gap: 6px; 
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .socials::-webkit-scrollbar { display: none; } 

  .socials a {
    flex-shrink: 0; 
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 12px; border-radius: 50px; 
    font-size: 11px; white-space: nowrap; height: 28px; 
    display: flex; align-items: center;
  }

  /* --- HERO E CONTEÚDO --- */
  .hero { padding-top: 15px; flex-direction: column; text-align: center; }
  .hero-title { font-size: 26px; }
  
  /* --- BOTÕES DE STREAMING (NO MOBILE: DIVIDEM ESPAÇO) --- */
  .buttons-wrapper {
    gap: 6px; flex-wrap: nowrap; 
    margin-top: 15px; padding: 0 2px;
  }
  
  .btn-gold, .btn-spotify, .btn-ytmusic, .btn-amazonMusic {
    flex: 1; /* Divide o espaço igualmente */
    padding: 12px 0; /* Altura confortável */
    font-size: 11px; height: auto;      
    display: flex; justify-content: center; align-items: center;
    border-radius: 50px; 
    white-space: nowrap;
    overflow: hidden; text-overflow: ellipsis; 
  }

  /* --- VÍDEOS (1 POR LINHA) --- */
  #videoGrid { padding: 0; }
  .video-card { flex: 1 1 100%; max-width: 100%; }
  .video-card iframe { height: 225px; }

  /* --- AJUSTE DA TELA DE BOAS VINDAS NO CELULAR --- */
  .glowing-btn {
      font-size: 16px; /* Letra menor */
      padding: 15px 30px; /* Botão menor */
  }
  .welcome-content {
      width: 90%; /* Ocupa quase a tela toda */
      padding: 30px 20px;
  }

} /* <--- FIM DO ARQUIVO */

/* ===== TOP RADIO BAR FUTURISTA ===== */

/* ===== DJ RADIO BAR ULTRA NEON ===== */

.dj-radio-bar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:65px;
  background:#050510;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
  z-index:4000;
  border-bottom:2px solid var(--accent2);
  box-shadow:0 0 30px rgba(59,232,255,0.4);
}

/* Empurra header */
.site-header{ top:65px; }
main{ padding-top:160px; }

.dj-left{
  display:flex;
  align-items:center;
  gap:10px;
}

.dj-logo{
  width:42px;
  height:42px;
  border-radius:50%;
  border:2px solid var(--accent2);
  box-shadow:0 0 15px var(--accent2);
}

/* AO VIVO */

.live-badge{
  font-size:12px;
  font-weight:bold;
  color:#ff0033;
  display:flex;
  align-items:center;
  gap:6px;
}

.live-dot{
  width:8px;
  height:8px;
  background:#ff0033;
  border-radius:50%;
  animation:livePulse 1s infinite;
}

@keyframes livePulse{
  0%{opacity:1;}
  50%{opacity:0.2;}
  100%{opacity:1;}
}

/* LETRAS PASSANDO BRILHANTES */

.dj-marquee-container{
  flex:1;
  overflow:hidden;
  margin:0 20px;
}

.dj-marquee{
  white-space:nowrap;
  overflow:hidden;
}

.dj-marquee span{
  display:inline-block;
  padding-left:100%;
  font-weight:700;
  font-size:14px;
  letter-spacing:1.5px;

  color: var(--accent1); /* DOURADO DA MARCA */

  /* Brilho leve elegante */
  text-shadow:
    0 0 4px rgba(255,204,0,0.4),
    0 0 8px rgba(255,204,0,0.2);

  animation: neonScroll 28s linear infinite;
}

@keyframes neonScroll{
  0%{transform:translateX(0);}
  100%{transform:translateX(-100%);}
}

/* PLAY ISOLADO */

.dj-play{
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:linear-gradient(45deg,var(--accent1),var(--accent2));
  color:#000;
  font-size:20px;
  cursor:pointer;
  transition:.3s;
}

.dj-play:hover{
  transform:scale(1.15);
  box-shadow:0 0 25px var(--accent1);
}

/* Glow quando tocando */

body.is-playing .dj-marquee span{
  text-shadow:
    0 0 6px rgba(255,204,0,0.6),
    0 0 12px rgba(255,204,0,0.3);
}

body.is-playing .dj-radio-bar{
  box-shadow:0 0 40px rgba(255,204,0,0.6);
}

/* MOBILE */

@media(max-width:768px){

  .dj-radio-bar{
    height:75px;
    padding:10px;
  }

  .dj-marquee span{
    font-size:12px;
  }

  main{
    padding-top:190px;
  }
}

.radio-pro{

position:sticky;
top:0;

display:flex;
align-items:center;
gap:15px;

padding:10px 20px;

background:#020214;

border-bottom:2px solid #00eaff;

box-shadow:0 0 25px #00eaff20;

z-index:999;
}

.radio-cover{

width:55px;
height:55px;

border-radius:50%;

object-fit:cover;

box-shadow:0 0 15px #00eaff;
}

.radio-meta{

flex:1;
min-width:0;
}

.radio-title{

font-family:Orbitron;
color:#ffcc00;
font-weight:bold;
}

.radio-song{

font-size:14px;
opacity:.9;

white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

.radio-stats{

font-size:12px;
opacity:.6;
}

.radio-controls{

display:flex;
align-items:center;
gap:10px;
}

#playBtn{

width:45px;
height:45px;

border-radius:50%;

border:none;

font-size:20px;

cursor:pointer;

background:linear-gradient(45deg,#00eaff,#00ff9d);

box-shadow:0 0 15px #00eaff;
}

#volume{

width:90px;
}

@media(max-width:700px){

.radio-pro{

flex-direction:column;
text-align:center;
gap:8px;
}

.radio-controls{

justify-content:center;
}

}
.radio-bar{

position:fixed;
top:0;
left:0;

width:100%;

display:flex;
align-items:center;
justify-content:space-between;

padding:10px 20px;

background:#030313;

border-bottom:2px solid #00eaff;

z-index:9999;

}

.radio-left{
display:flex;
align-items:center;
gap:10px;
}

.radio-logo{

width:50px;
height:50px;

border-radius:50%;

object-fit:cover;
}

.radio-info{

display:flex;
flex-direction:column;
}

.radio-name{

font-family:Orbitron;
color:#ffcc00;
font-weight:bold;
}

#radioSong{

font-size:13px;
opacity:.8;
}

.radio-right{

display:flex;
align-items:center;
gap:10px;
}

#playBtn{

width:45px;
height:45px;

border-radius:50%;

border:none;

background:linear-gradient(45deg,#00eaff,#00ff9d);

font-size:20px;

cursor:pointer;
}

#volume{

width:90px;
}

@media(max-width:700px){

.radio-bar{

padding:6px 10px;
gap:8px;

}

.radio-logo{

width:36px;
height:36px;

}

.radio-name{

font-size:14px;

}

#radioSong{

font-size:12px;

}

#playBtn{

width:32px;
height:32px;
font-size:16px;

}

#volume{

width:60px;

}

.dj-marquee span{

font-size:12px;

}

}
@media(max-width:700px){

#playBtn{
width:30px;
height:30px;
font-size:14px;
}

.radio-logo{
width:32px;
height:32px;
}

#volume{
width:50px;
}

}
/* ================================
   INTRO DJ NALDOA
================================ */

#djIntro{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:#000;
display:flex;
align-items:center;
justify-content:center;
z-index:99999;
overflow:hidden;
font-family:Arial, Helvetica, sans-serif;
}

/* container */

.introContent{
text-align:center;
position:relative;
z-index:2;
animation:introZoom 2s ease;

display:flex;
flex-direction:column;
align-items:center;
}


/* LOGO */

.introLogo{
width:200px;
display:block;
background:none;
background-color:transparent;
}



/* NOME */

.djTitle{
margin-top:20px;
font-size:42px;
letter-spacing:5px;
font-weight:700;
position:relative;
display:inline-block;
}

/* NALDO branco */

.djWhite{
color:#ffffff;
text-shadow:
0 0 5px #fff,
0 0 15px #fff,
0 0 30px #fff;
}

/* A dourado */

.djGold{
color:#FFD700;
text-shadow:
0 0 5px #FFD700,
0 0 15px #FFD700,
0 0 30px #FFD700;
}

/* brilho passando */



/* PARTICULAS */

#introParticles{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
}

/* ================================
   ANIMAÇÕES
================================ */

@keyframes introZoom{

0%{
transform:scale(.4);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

@keyframes logoGlow{

0%{
filter:drop-shadow(0 0 10px gold);
}

100%{
filter:drop-shadow(0 0 40px gold);
}

}

@keyframes shineMove{

0%{
left:-120%;
}

100%{
left:120%;
}

}

/* ================================
   RESPONSIVO
================================ */

@media(max-width:600px){

.djTitle{
font-size:32px;
letter-spacing:3px;
}

.introLogo{
width:140px;
}

}
