/* BASE */
body{
margin:0;
font-family:sans-serif;
background:#000;
color:#fff;
overflow-x:hidden;
}

/* HEADER */
header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:center;
background:rgba(0,0,0,0.6);
z-index:10;
backdrop-filter:blur(10px);
}

nav{
max-width:1100px;
width:100%;
display:flex;
justify-content:flex-end;
padding:20px;
flex-wrap:wrap;
}

header a{
color:#fff;
margin:5px 10px;
text-decoration:none;
position:relative;
transition:0.3s;
}

header a::after{
content:'';
position:absolute;
bottom:-5px;
left:0;
width:0;
height:2px;
background:#ff0040;
transition:0.3s;
}

header a:hover{
color:#ff0040;
}

header a:hover::after{
width:100%;
}

/* HERO */
.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0.95;
z-index:0;
}

.hero::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:1;
}

.hero-content{
position:relative;
z-index:2;
}

/* LOGO */
.logo-home{
max-width:300px;
width:100%;
margin-bottom:20px;
}

/* BOTÃO HERO */
.hero .btn{
background:#ff0040;
color:#fff;
padding:15px 35px;
border-radius:30px;
font-weight:bold;
display:inline-block;
box-shadow:0 0 10px rgba(255,0,64,0.6);
animation:glowBtn 1.5s infinite alternate;
}

@keyframes glowBtn{
from{box-shadow:0 0 10px rgba(255,0,64,0.5);}
to{box-shadow:0 0 25px rgba(255,0,64,0.9);}
}

/* SECTION */
.section{
padding:100px 0;
text-align:center;
}

.section > *{
max-width:1100px;
margin:auto;
padding:0 20px;
}

/* TITULO */
.section h2{
font-size:28px;
letter-spacing:3px;
margin-bottom:20px;
text-transform:uppercase;
}

.section h2::after{
content:'';
display:block;
width:80px;
height:3px;
margin:10px auto 30px;
background:linear-gradient(90deg,#ff0040,#ffd700);
box-shadow:0 0 10px #ff0040, 0 0 20px gold;
}

/* DARK */
.dark{
background:#111;
}

/* RELEASE BG */
.release-bg{
background:
linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.95)),
url('../../img/bg-release.jpg') center/cover no-repeat;
padding:120px 20px;
text-align:center;
}

.release-bg .container{
max-width:800px;
margin:auto;
}

.release-bg p{
margin:20px 0;
line-height:1.7;
opacity:0.9;
}

/* AGENDA */
.agenda-list{
display:flex;
gap:20px;
flex-wrap:wrap;
justify-content:center;
margin-top:30px;
}

.agenda-item{
background:linear-gradient(145deg,#111,#1a1a1a);
padding:18px 25px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.08);
box-shadow:0 0 10px rgba(0,0,0,0.5);
transition:0.3s;
position:relative;
overflow:hidden;
max-width:350px;
width:100%;
}

.agenda-item::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(120deg,transparent,rgba(255,0,64,0.3),transparent);
transition:0.5s;
}

.agenda-item:hover{
transform:translateY(-5px) scale(1.02);
border-color:#ff0040;
box-shadow:0 0 20px rgba(255,0,64,0.5);
}

.agenda-item:hover::before{
left:100%;
}

/* VIDEO */
.video-main{
margin-bottom:50px;
}

.video-main iframe{
width:100%;
max-width:750px;
aspect-ratio:16/9;
border-radius:12px;
border:none;
}

.video-grid{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.video-grid iframe{
width:260px;
aspect-ratio:16/9;
border-radius:10px;
border:none;
transition:0.3s;
}

.video-grid iframe:hover{
transform:scale(1.05);
}

/* 🔥 YOUTUBE AJUSTADO */
.titulo-img{
max-width:160px;
width:100%;
margin:0 auto 30px;
}

/* 🔥 PLATAFORMAS AJUSTADAS */
.platforms{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
margin-top:40px;
}

.platform{
background:linear-gradient(145deg,#111,#1a1a1a);
padding:15px;
border-radius:12px;
width:140px;
text-align:center;
text-decoration:none;
color:#fff;
transition:0.3s;
border:1px solid rgba(255,255,255,0.05);
}

.platform i{
font-size:20px;
margin-bottom:6px;
}

.platform span{
font-size:13px;
}

.platform:hover{
transform:scale(1.05);
background:linear-gradient(145deg,#ff0040,#ff7a00);
box-shadow:0 0 20px rgba(255,0,64,0.5);
}

/* SPOTIFY PLAYER */
.spotify-player iframe{
display:block;
margin:40px auto 0;
max-width:500px;
width:100%;
height:140px;
border-radius:12px;
border:none;
}

/* CONTATO */
.contato-box{
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

/* BOTÕES */
.btn{
padding:14px 28px;
border-radius:30px;
color:#fff;
text-decoration:none;
transition:0.3s;
}

.btn-whats{background:#25D366;}
.btn-presskit{background:#ff0040;}

.btn:hover{
transform:scale(1.05);
filter:brightness(1.2);
}

/* WHATS FIXO */
.whats{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
}

/* FOOTER */
.footer{
text-align:center;
padding:20px;
color:#777;
font-size:12px;
}

/* MOBILE */
@media (max-width:768px){

nav{
justify-content:center;
flex-wrap:wrap;
gap:10px;
}

header a{
font-size:14px;
}

.hero{
height:85vh;
}

.logo-home{
max-width:220px;
}

.section{
padding:70px 10px;
}

.section h2{
font-size:22px;
}

.agenda-list{
flex-direction:column;
align-items:center;
}

.agenda-item{
width:90%;
}

.video-grid{
flex-direction:column;
align-items:center;
}

.video-grid iframe{
width:90%;
}

.platform{
width:120px;
}

.platform i{
font-size:18px;
}

.spotify-player iframe{
width:90%;
height:130px;
}

.contato-box{
flex-direction:column;
}

.whats{
width:50px;
height:50px;
}
}