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

body{
    background:#000;
    overflow-x:hidden;
    font-family:Arial, Helvetica, sans-serif;
}

/* =========================
   NAVBAR
========================= */

.nav-overlay{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 30px;
    background:rgba(0,0,0,0.85);
    backdrop-filter:blur(6px);
    z-index:999;
    box-sizing:border-box;
    gap:0;
}

.nav-logo{
    height:56px;
    max-width:260px;
    width:auto;
    display:block;
    object-fit:contain;
    flex-shrink:0;
}

.nav-brand-index{
    display:flex;
    flex-direction:column;
    justify-content:center;
    flex-shrink:0;
}

.nav-brand{
    display:flex;
    flex-direction:column;
    justify-content:center;
    flex-shrink:0;
    cursor:pointer;
    transition:opacity 0.2s;
}

.nav-brand:hover{
    opacity:0.8;
}

.nav-title{
    color:#c9a46a;
    font-size:18px;
    font-weight:bold;
    letter-spacing:3px;
}

.nav-tagline{
    color:#c9a46a;
    font-size:10px;
    letter-spacing:2px;
    font-weight:300;
    opacity:0.85;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-overlay a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:bold;
    white-space:nowrap;
    transition:0.3s;
}

.nav-overlay a:hover{
    color:#00ffcc;
}

/* =========================
   BANNER VÍDEO
========================= */

.top-banner{
    width:100%;
    height:80vh;
    position:relative;
    overflow:hidden;
    margin-top:80px;
}

.alien-img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
    display:block;
    border:none;
}

/* =========================
   LOGO HERO
========================= */

.logo-section{
    width:100%;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 20px;
}

.logo-hero-img{
    max-width:420px;
    width:70%;
    height:auto;
    display:block;
    object-fit:contain;
}

.logo-tagline{
    display:none;
}

/* =========================
   SEÇÃO SERVIÇOS
========================= */

.servicos-section{
    width:100%;
    display:flex;
    justify-content:center;
}

.servicos-img{
    width:54%;
    height:auto;
    display:block;
    margin:0 auto;
    cursor:pointer;
    transition:opacity 0.2s ease;
}

.servicos-img:hover{
    opacity:0.92;
}

/* =========================
   ÁREA CENTRAL INDEX
========================= */

.artists-section{
    width:100%;
    min-height:460px;
    margin-top:10px;
    margin-bottom:20px;
    position:relative;
}

/* =========================
   PAINÉIS
========================= */

.style-panel{
    position:absolute;
    top:0;
    width:calc(50% - 150px - 4cm);
    height:200px;
    overflow:hidden;
}

.left-style{ left:1cm; }
.right-style{ right:1cm; }

.style-img{
    width:100%;
    height:100%;
    object-fit:fill;
    display:block;
}

/* =========================
   FOTO CENTRAL
========================= */

.artist-panel{
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:150px;
    height:200px;
    overflow:hidden;
}

.artist-panel a{
    width:100%;
    height:100%;
    display:block;
}

.artist-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s;
    border:none;
}

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

/* =========================
   LUZES DOS PAINÉIS
========================= */

.light{
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    background:linear-gradient(90deg,rgba(255,180,80,0),rgba(255,180,80,0.95),rgba(255,180,80,0));
    filter:blur(18px);
    opacity:0;
    pointer-events:none;
}

.light-1{ left:2%;  animation:light1 8s infinite; }
.light-2{ left:28%; animation:light2 8s infinite; }
.light-3{ left:54%; animation:light3 8s infinite; }
.light-4{ left:80%; animation:light4 8s infinite; }
.light-r1{ left:2%;  animation:light1 8s infinite; }
.light-r2{ left:28%; animation:light2 8s infinite; }
.light-r3{ left:54%; animation:light3 8s infinite; }
.light-r4{ left:80%; animation:light4 8s infinite; }

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

@keyframes light1{ 0%{opacity:1;} 24%{opacity:1;} 25%{opacity:0;} 100%{opacity:0;} }
@keyframes light2{ 0%{opacity:0;} 24%{opacity:0;} 25%{opacity:1;} 49%{opacity:1;} 50%{opacity:0;} 100%{opacity:0;} }
@keyframes light3{ 0%{opacity:0;} 49%{opacity:0;} 50%{opacity:1;} 74%{opacity:1;} 75%{opacity:0;} 100%{opacity:0;} }
@keyframes light4{ 0%{opacity:0;} 74%{opacity:0;} 75%{opacity:1;} 99%{opacity:1;} 100%{opacity:0;} }

/* =========================
   PÁGINA ARTISTAS
========================= */

.artists-page{
    background:#000;
    min-height:100vh;
    overflow-x:hidden;
    color:#fff;
}

.artists-header{
    position:relative;
    width:100%;
    height:340px;
    overflow:hidden;
}

.artists-banner{
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0.45;
}

.artists-back{
    position:absolute;
    top:30px;
    left:30px;
    z-index:10;
    color:#fff;
    text-decoration:none;
    font-size:20px;
}

.artists-grid{
    width:100%;
    display:flex;
    flex-wrap:nowrap;
    justify-content:center;
    align-items:flex-start;
    gap:20px;
    padding:45px 20px;
    overflow-x:auto;
}

.artist-card-page{
    width:170px;
    aspect-ratio:3/4;
    overflow:hidden;
    flex-shrink:0;
    transition:0.4s;
}

.artist-card-page img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border:none;
}

.artist-card-page:hover{ transform:scale(1.04); }

/* =========================
   PÁGINA INDIVIDUAL ARTISTA
========================= */

.artist-page{
    background:#000;
    min-height:100vh;
    color:white;
}

.artist-top{
    width:100%;
    height:33vh;
    position:relative;
    overflow:hidden;
}

.artist-top img{
    width:100%;
    height:100%;
    object-fit:fill;
    display:block;
}

.artist-back{
    position:absolute;
    top:25px;
    left:25px;
    color:white;
    text-decoration:none;
    font-size:22px;
    z-index:100;
}

.artist-name{
    text-align:center;
    margin-top:2cm;
    margin-bottom:2cm;
    color:#c9a46a;
    font-size:42px;
    letter-spacing:2px;
}

.artist-photo{
    width:240px;
    height:320px;
    object-fit:cover;
    display:block;
    margin:auto;
}

.platforms{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:0;
}

/* =========================
   FRASE ACIMA DAS PLATAFORMAS
========================= */

.platforms-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
    padding-top:20px;
}

.platforms-label{
    color:#c9a46a;
    font-family:Arial, Helvetica, sans-serif;
    font-size:13px;
    letter-spacing:2.5px;
    text-transform:uppercase;
    margin:0 0 14px;
    opacity:0.85;
    text-align:center;
}

.platforms img{
    width:42px;
    height:42px;
    object-fit:contain;
}

/* =========================
   BOTÃO DE MÚSICA
========================= */

.music-button{
    position:fixed;
    bottom:25px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.75);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:9999;
}

.music-button:hover{ transform:scale(1.05); }

/* =========================
   RODAPÉ
========================= */

.rodape-section{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:0;
    padding-bottom:80px;
}

.rodape-img{
    width:57%;
    height:auto;
    display:block;
    margin:0 auto;
}

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

@media(max-width:768px){

    .nav-overlay{
        height:60px;
        padding:0 15px;
    }

    .nav-logo{ height:48px; }

    .nav-links{ gap:10px; }

    .nav-overlay a{ font-size:12px; }

    .top-banner{
        height:30vh;
        margin-top:60px;
    }

    .servicos-img{ width:96%; }

    .artists-section{ min-height:360px; }

    .style-panel{
        width:calc(50% - 110px - 1cm);
        height:170px;
    }

    .artist-panel{
        width:110px;
        height:170px;
    }

    .artist-card-page{ width:120px; }

}

/* =========================
   VÍDEO DE FUNDO — PAGE HEADER
========================= */

.page-header{
    width:100%;
    height:260px;
    position:relative;
    overflow:hidden;
    margin-top:80px;
}



.page-header-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(6px) brightness(0.35);
    transform:scale(1.08);
    pointer-events:none;
}

.page-header img.page-banner{
    display:none;
}

.page-header-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.page-title{
    position:absolute;
    bottom:28px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
    font-family:Arial, Helvetica, sans-serif;
    font-size:38px;
    font-weight:bold;
    letter-spacing:4px;
    color:#c9a46a;
    white-space:nowrap;
}

/* =========================
   BOTÃO VOLTAR PADRÃO
========================= */

.btn-voltar{
    position:absolute;
    bottom:20px;
    left:25px;
    background:rgba(0,0,0,0.75);
    color:#c9a46a;
    padding:8px 20px;
    text-decoration:none;
    border-radius:10px;
    font-size:13px;
    font-family:Arial, Helvetica, sans-serif;
    border:1px solid rgba(201,164,106,0.35);
    transition:0.3s;
    z-index:10;
}

.btn-voltar:hover{
    background:#c9a46a;
    color:#000;
}

/* =========================
   CAIXA DE TEXTO PADRÃO
========================= */

.caixa-conteudo{
    width:88%;
    max-height:calc(100vh - 360px);
    margin:30px auto;
    padding:35px 45px;
    overflow-y:auto;
    background:#000;
    border:1px solid rgba(201,164,106,0.25);
    border-radius:18px;
    box-shadow:0 0 25px rgba(0,0,0,0.5);
}

.caixa-conteudo::-webkit-scrollbar{ width:8px; }
.caixa-conteudo::-webkit-scrollbar-track{ background:#000; }
.caixa-conteudo::-webkit-scrollbar-thumb{ background:#8C7558; border-radius:20px; }

.caixa-conteudo p{
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
    color:#c9a46a;
    text-align:justify;
}

.caixa-conteudo .destaque{
    color:#fff;
    font-weight:bold;
}

/* =========================
   PÁGINA ARTISTAS
========================= */

.artists-page{ background:#000; min-height:100vh; color:#c9a46a; }

.artists-grid{
    width:100%;
    display:flex;
    flex-wrap:nowrap;
    justify-content:center;
    align-items:flex-start;
    gap:20px;
    padding:45px 20px;
    overflow-x:auto;
    margin-top:80px;
}

/* =========================
   PÁGINA INDIVIDUAL ARTISTA
========================= */

.artist-page{ background:#000; min-height:100vh; color:#c9a46a; }

.artist-name{
    text-align:center;
    margin-top:2cm;
    margin-bottom:2cm;
    color:#c9a46a;
    font-size:42px;
    letter-spacing:2px;
    font-family:Arial, Helvetica, sans-serif;
}

/* =========================
   ARTISTA — FOTO SOBREPOSTA
========================= */

.artist-hero{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    /* sobe 130px sobre o banner mantendo fluxo normal do documento */
    transform: translateY(-130px);
    z-index: 10;
    margin-bottom: -130px; /* compensa o espaço que translateY abre */
}

.artist-glow-wrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* A foto propriamente dita — exibida completa, sem corte */
.artist-photo-new{
    width: 280px;
    height: auto;
    display: block;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}

/* Brilho musical — barrinhas animadas à esquerda */
.music-bars{
    position: absolute;
    bottom: 24px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    z-index: 3;
}

.music-bars.bars-left{ right: calc(100% + 14px); }
.music-bars.bars-right{ left: calc(100% + 14px); }

.music-bars span{
    display: block;
    width: 5px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, #c9a46a, #fff8e7);
    box-shadow: 0 0 8px rgba(201,164,106,0.8), 0 0 20px rgba(201,164,106,0.4);
    animation: barDance 1.1s ease-in-out infinite;
    transform-origin: bottom center;
}

.music-bars span:nth-child(1){ height: 18px; animation-delay: 0s;    animation-duration: 0.9s; }
.music-bars span:nth-child(2){ height: 30px; animation-delay: 0.15s; animation-duration: 1.1s; }
.music-bars span:nth-child(3){ height: 22px; animation-delay: 0.3s;  animation-duration: 0.8s; }
.music-bars span:nth-child(4){ height: 36px; animation-delay: 0.05s; animation-duration: 1.2s; }
.music-bars span:nth-child(5){ height: 16px; animation-delay: 0.4s;  animation-duration: 0.95s;}

@keyframes barDance{
    0%,100%{ transform: scaleY(1);   opacity: 1;    }
    50%     { transform: scaleY(0.3); opacity: 0.5;  }
}

/* Halo dourado ao redor da foto */
.artist-glow-wrap::before{
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 8px;
    background: radial-gradient(ellipse at center, rgba(201,164,106,0.22) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: haloBreath 3s ease-in-out infinite;
}

@keyframes haloBreath{
    0%,100%{ opacity: 0.7; transform: scale(1);    }
    50%     { opacity: 1;   transform: scale(1.04); }
}

/* =========================
   ARTISTA — RODAPÉ
========================= */

.artist-footer{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 40px;
}

.artist-footer-img{
    width: 57%;
    max-width: 700px;
    height: auto;
    display: block;
}

@media(max-width:768px){
    .artist-hero{ transform: translateY(-80px); margin-bottom: -80px; }
    .platforms-wrapper{ padding-top: 10px; }
    .artist-photo-new{ width: 220px; height: auto; }
    .artist-footer-img{ width: 90%; }
}

/* =========================
   BOTÃO CTA — ENTRE EM CONTATO
========================= */

.cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 20px 10px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #c9a46a;
    color: #c9a46a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 42px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 0 18px rgba(201, 164, 106, 0.2);
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #c9a46a;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
    z-index: 0;
    border-radius: 50px;
}

.cta-btn:hover::before {
    transform: scaleX(1);
}

.cta-btn:hover {
    color: #000;
    box-shadow: 0 0 36px rgba(201, 164, 106, 0.55);
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

/* =========================
   CONTATO — FORMULÁRIO
========================= */

.contato-container{
    width:90%;
    max-width:1000px;
    margin:40px auto;
    padding:0 0 40px;
    text-align:center;
    font-family:Arial, Helvetica, sans-serif;
}

.contato-container h1{
    color:#c9a46a;
    font-size:26px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.contato-container .intro{
    color:#c9a46a;
    margin-bottom:35px;
    line-height:1.8;
    font-size:15px;
}

.contato-container label{
    text-align:left;
    font-weight:bold;
    color:#c9a46a;
    display:block;
    margin-bottom:4px;
}

.contato-container input,
.contato-container textarea{
    background:#000;
    border:2px solid #c9a46a;
    color:#c9a46a;
    padding:14px;
    border-radius:8px;
    font-size:16px;
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
}

.contato-container input:focus,
.contato-container textarea:focus{
    outline:none;
    box-shadow:0 0 12px rgba(201,164,106,0.4);
}

.contato-container textarea{ min-height:180px; resize:vertical; }

.contato-container .erro{ color:#ff5555; text-align:left; display:none; font-size:13px; }

.contato-container button.enviar{
    background:#c9a46a;
    color:#000;
    border:none;
    padding:15px;
    font-size:18px;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
    opacity:0.4;
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
    letter-spacing:2px;
}

.contato-container button.enviar.ativo{ opacity:1; }
.contato-container button.enviar:disabled{ cursor:not-allowed; }

.contato-container .sucesso{
    display:none;
    margin-top:30px;
    color:#6cff6c;
    font-size:18px;
}

.contato-container .linha-dupla{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.contato-container .campo{
    flex:1;
    display:flex;
    flex-direction:column;
}

.form-group{ display:flex; flex-direction:column; gap:18px; }

@media(max-width:768px){
    .page-header{ height:180px; }
    .page-title{ font-size:26px; }
    .caixa-conteudo{ width:94%; padding:25px 20px; max-height:none; }
    .contato-container .linha-dupla{ flex-direction:column; }
    .artists-grid{ flex-wrap:wrap; }
}
