

:root{
    --primary:#ffffff;
    --dark:#000000;
    --gray:#888;
    --glass:rgba(255,255,255,0.06);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#000;
}

::-webkit-scrollbar-thumb{
    background:#333;
    border-radius:10px;
}

/* LOADER */

.loader{
    position:fixed;
    width:100%;
    height:100%;
    background:#000;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    transition:1s;
}

.loader img{
    width:120px;
}

.loader h3{
    margin-top:20px;
    font-size:18px;
    color:#aaa;
    font-weight:400;
}

.loader h1{
    font-size:60px;
    font-weight:900;
    letter-spacing:8px;
    margin-top:10px;
}

.loader p{
    color:#777;
    letter-spacing:4px;
    margin-top:10px;
}

/* NAVBAR */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    padding:25px 40px;

    background:rgba(0,0,0,0.5) !important;

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    transition:0.4s ease;

}

.navbar.scrolled{

    background:rgba(0,0,0,0.5) !important;

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,0.08);

    padding:15px 40px;

}

.navbar-brand img{
    width:120px;
}

.nav-link{
    color:#fff !important;
    font-size:13px;
    font-weight:600;
    margin-left:18px;
    letter-spacing:2px;
    position:relative;
}

.nav-link::after{
    content:'';
    width:0;
    height:2px;
    background:#fff;
    position:absolute;
    left:0;
    bottom:-6px;
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* HERO */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:750px;
    overflow:hidden;
}

.hero video{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:-2;
}

.hero::before{
    content:'';
    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

    background:linear-gradient(
    to bottom,
   rgba(0,0,0,0.45),
rgba(0,0,0,0.92));

    z-index:-1;
}

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

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;

    text-align:center;

    padding:20px;
}

.hero-logo{
    width:500px;
    max-width:90%;
    margin-bottom:30px;
}

.hero h2{
    font-size:22px;
    font-weight:300;
    letter-spacing:8px;
    color:#ddd;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero-buttons a{
    text-decoration:none;
    color:#fff;

    padding:16px 40px;

    border:1px solid rgba(255,255,255,0.2);

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(10px);

    transition:0.4s;

    letter-spacing:2px;

    font-size:13px;
    font-weight:600;
}

.hero-buttons a:hover{
    background:#fff;
    color:#000;
    transform:translateY(-3px);
}

/* GENERAL */

section{
    padding:120px 0;
        
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:55px;
    font-weight:900;
    letter-spacing:6px;
}

.section-title p{
    color:#888;
    margin-top:15px;
    letter-spacing:2px;
}

/* RELEASE */

.release-img{
    width:100%;
    border-radius:25px;
}

.release-content h3{
    font-size:42px;
    font-weight:800;
    margin-bottom:25px;
}

.release-content p{
    color:#aaa;
    line-height:2;
    margin-bottom:20px;
}

/* METRICS */

.metric-card{
    background:var(--glass);

    border:1px solid rgba(255,255,255,0.08);

    border-radius:25px;

    padding:50px 20px;

    text-align:center;

    transition:0.4s;

    height:100%;
}

.metric-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.08);
}

.metric-card h2{
    font-size:55px;
    font-weight:900;
}

.metric-card p{
    color:#999;
    letter-spacing:2px;
}

/* GALLERY */

.media-box{
    position:relative;
    overflow:hidden;
    border-radius:25px;
}

.media-box img{
    width:100%;
    transition:0.5s;
}

.media-box:hover img{
    transform:scale(1.05);
}

.media-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.3);
    top:0;
    left:0;
}

/* PLAYER */

.player iframe{
    width:100%;
    height:350px;
    border:none;
    border-radius:25px;
}

/* TOUR */

.table{
    color:#fff;
}

.table tr{
    border-color:rgba(255,255,255,0.08);
}

.badge-tour{
    background:#fff;
    color:#000;
    padding:10px 20px;
    border-radius:50px;
    font-size:12px;
}

/* CTA */

.cta{
    position:relative;
    height:80vh;
    min-height:600px;
    overflow:hidden;
}

.cta video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.cta::before{
    content:'';

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.7);

    top:0;
    left:0;
}

.cta-content{
    position:relative;
    z-index:2;

    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;

    text-align:center;

    padding:20px;
}

.cta-content h2{
    font-size:70px;
    font-weight:900;
    letter-spacing:5px;
    margin-bottom:30px;
}

.cta-content a{
    text-decoration:none;

    color:#000;

    background:#fff;

    padding:18px 45px;

    font-weight:700;

    letter-spacing:2px;

    transition:0.4s;
}

.cta-content a:hover{
    transform:scale(1.05);
}

/* FOOTER */

footer{
    background:#050505;
    padding:80px 0 40px;
    text-align:center;
}

.footer-logo{
    width:220px;
    margin-bottom:35px;
}

.social-icons a{
    color:#fff;
    font-size:24px;
    margin:0 12px;
    transition:0.4s;
}

.social-icons a:hover{
    color:#888;
}

.footer-text{
    color:#666;
    margin-top:40px;
    font-size:14px;
}

/* RESPONSIVE */

@media (max-width: 991px){

    .navbar{
        padding:15px 20px;
    }

    .navbar.scrolled{
        padding:12px 20px;
    }

    .navbar-collapse{
    background:rgba(0,0,0,0.92);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    padding:20px;

    border-radius:20px;

    margin-top:15px;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

    .nav-link{
        margin:12px 0;
    }

    .navbar-brand img{
        width:95px;
    }

    .hero{
        min-height:700px;
    }

    .hero-logo{
        width:280px;
    }

    .hero h2{
        font-size:14px;
        letter-spacing:3px;
        line-height:1.8;
        padding:0 15px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        padding:0 20px;
    }

    .hero-buttons a{
        width:100%;
        text-align:center;
    }

    section{
        padding:80px 0;
    content-visibility:auto;
    }

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:32px;
        letter-spacing:3px;
    }

    .release-content{
        text-align:center;
    }

    .release-content h3{
        font-size:28px;
    }

    .release-content p{
        font-size:14px;
        line-height:1.9;
    }

    .metric-card{
        padding:40px 20px;
    }

    .metric-card h2{
        font-size:40px;
    }

    .player iframe{
        height:220px;
        border-radius:20px;
    }

    .cta{
        min-height:500px;
    }

    .cta-content h2{
        font-size:34px;
        line-height:1.4;
        letter-spacing:2px;
    }

    .cta-content a{
        width:100%;
        max-width:280px;
        text-align:center;
    }

    .footer-logo{
        width:180px;
    }

    .social-icons a{
        font-size:20px;
        margin:0 8px;
    }

    .loader h1{
        font-size:38px;
    }

}

        
        
        
        
  .soundcloud-section{
    padding:80px 20px;
    background:#000;
}

.soundcloud-section h2{
    color:#fff;
    font-size:42px;
    margin-bottom:30px;
    text-align:center;
    letter-spacing:3px;
}

.soundcloud-wrapper{
    max-width:1200px;
    margin:auto;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
}      
        
.spotify-section{
    background:#000;
    padding:100px 20px;
}

.spotify-section h2{
    color:#fff;
    text-align:center;
    font-size:48px;
    letter-spacing:4px;
    margin-bottom:40px;
}

.spotify-wrapper{
    max-width:1200px;
    margin:auto;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 80px rgba(0,0,0,.6);
}        
        
        /* DOWNLOADS */

.downloads-section{

    background:#050505;

    border-top:1px solid rgba(255,255,255,0.05);

    padding:120px 0;

}

.download-left h2{

    font-size:38px;

    font-weight:900;

    letter-spacing:4px;

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.download-line{

    width:4px;

    height:40px;

    background:#fff;

    display:block;

}

.download-left p{

    color:#888;

    line-height:1.9;

    margin-bottom:35px;

}

.download-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.download-buttons a{

    text-decoration:none;

    color:#fff;

    border:1px solid rgba(255,255,255,0.08);

    padding:14px 24px;

    border-radius:12px;

    transition:0.4s;

    background:rgba(255,255,255,0.03);

    font-size:13px;

    letter-spacing:1px;

}

.download-buttons a:hover{

    background:#fff;

    color:#000;

}

.download-buttons i{

    margin-right:10px;

}

.download-column h5{

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:20px;

    color:#fff;

}

.download-column ul{

    list-style:none;

    padding:0;

}

.download-column ul li{

    margin-bottom:12px;

}

.download-column ul li a{

    text-decoration:none;

    color:#777;

    transition:0.3s;

    font-size:13px;

}

.download-column ul li a:hover{

    color:#fff;

    padding-left:5px;

}

.social-downloads{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.social-downloads a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,0.05);

    color:#fff;

    text-decoration:none;

    transition:0.4s;

}

.social-downloads a:hover{

    background:#fff;

    color:#000;

}

/* RESPONSIVO */

@media(max-width:991px){

    .downloads-section{

        padding:80px 0;

    }

    .download-left{

        text-align:center;

    }

    .download-left h2{

        justify-content:center;

        font-size:28px;

    }

    .download-buttons{

        justify-content:center;

    }

    .download-column{

        margin-top:20px;

        text-align:center;

    }

    .social-downloads{

        justify-content:center;

    }

}
        
        
        
        
             
.presskit-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:20px;
}

.presskit-gallery img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    transition:0.3s;
    border:2px solid rgba(255,255,255,0.08);
}

.presskit-gallery img:hover{
    transform:scale(1.03);
    border-color:#fff;
}

/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:20px;
}

.lightbox img{
    max-width:95%;
    max-height:95%;
    border-radius:14px;
}

.fechar-lightbox{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}

        
        
.logo-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.logo-item{
    background:rgba(255,255,255,0.03);
    border-radius:14px;
    padding:15px;
    text-align:center;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.08);
}

.logo-item:hover{
    transform:translateY(-4px);
    border-color:#fff;
}

.logo-item img{
    width:100%;
    height:120px;
    object-fit:contain;
    background:#000;
    border-radius:10px;
    padding:10px;
    cursor:pointer;
}

.logo-item a{
    display:block;
    margin-top:12px;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    letter-spacing:1px;
}

.pdf-downloads{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.pdf-downloads a{
    background:rgba(255,255,255,0.05);
    padding:12px;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
    text-align:center;
}

.pdf-downloads a:hover{
    background:#fff;
    color:#000;
}
        

.vj-gallery{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:20px;
}

.vj-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    height:220px;
    display:block;
    text-decoration:none;
    background:#000;
}

.vj-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.vj-card:hover img{
    transform:scale(1.08);
}

.vj-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.2));
    
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:20px;
}

.play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    
    width:70px;
    height:70px;
    
    border-radius:50%;
    
    background:rgba(255,255,255,0.15);
    
    backdrop-filter:blur(10px);

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

    font-size:28px;
    color:#fff;

    transition:0.3s;
}

.vj-card:hover .play-btn{
    transform:translate(-50%,-50%) scale(1.1);
}

.vj-overlay h4{
    color:#fff;
    margin:0;
    font-size:22px;
    letter-spacing:1px;
}

.vj-overlay span{
    color:#ccc;
    font-size:13px;
    margin-top:5px;
}           
        
        
        
   
.brand-assets{
    display:flex;
    flex-direction:column;
    gap:25px;
    margin-top:20px;
}

.brand-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    overflow:hidden;
    transition:0.3s;
}

.brand-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,255,255,0.25);
}

.brand-preview{
    background:#000;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.brand-preview img{
    width:100%;
    max-height:140px;
    object-fit:contain;
    cursor:pointer;
    transition:0.3s;
}

.brand-preview img:hover{
    transform:scale(1.03);
}

.brand-info{
    padding:20px;
}

.brand-info h4{
    color:#fff;
    margin-bottom:18px;
    letter-spacing:2px;
    font-size:18px;
}

.brand-buttons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.brand-buttons a{
    background:rgba(255,255,255,0.05);
    color:#fff;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    text-align:center;
    font-size:13px;
    transition:0.3s;
}

.brand-buttons a:hover{
    background:#fff;
    color:#000;
}     
 
        



.photo-card{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    height:200px;
}

.photo-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

.photo-card:hover img{
    transform:scale(1.08);
}

.photo-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.15)
    );

    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:10px;

    padding:15px;

    opacity:0;
    transition:0.3s;
}

.photo-card:hover .photo-overlay{
    opacity:1;
}

.photo-overlay button,
.photo-overlay a{

    border:none;
    background:rgba(255,255,255,0.12);

    color:#fff;

    padding:10px 14px;

    border-radius:10px;

    text-decoration:none;

    font-size:12px;

    backdrop-filter:blur(10px);

    cursor:pointer;

    transition:0.3s;
}

.photo-overlay button:hover,
.photo-overlay a:hover{

    background:#fff;
    color:#000;

}
        
        
        
        .hero::after{
    content:'';
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at center,
    rgba(255,255,255,0.04),
    transparent 60%);

    z-index:-1;
}
        
        .hero-logo{
    filter:drop-shadow(0 0 30px rgba(255,255,255,0.15));
}
        
        
  
        
        .supported-section{
    padding:120px 0;
    background:#030303;
}

.supported-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:40px;
}

.supported-item{
    border:1px solid rgba(255,255,255,0.08);

    background:rgba(255,255,255,0.03);

    padding:30px;

    text-align:center;

    border-radius:18px;

    letter-spacing:2px;

    font-weight:700;

    transition:0.4s;
}

.supported-item:hover{
    transform:translateY(-5px);

    background:#fff;

    color:#000;
}
      
        
        @media(max-width:991px){

    .photo-overlay{
        opacity:1;
    }


        
        
        
        .brand-card,
.photo-card,
.metric-card,
.vj-card{
    will-change:transform;
}
   /* ==========================
   GALERIA
========================== */
.gallery-section{
    padding:80px 0;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:15px;
}

.gallery-item{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:12px;
    height:220px !important;
}

.gallery-item img{
    width:100%;
    height:220px !important;
    object-fit:cover;
    display:block;
}

.gallery-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.3s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay i{
    color:#fff;
    font-size:24px;
}

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item,
    .gallery-item img{
        height:180px !important;
    }

}                
                
                