@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Plus+Jakarta+Sans:wght@200;400;700&display=swap');
/*#################################### CORES GLOBAIS #################################### */
:root {
    --accent: #00f2ff;
    --accent-2: #ff0054;
    --bg-dark: #121212;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --primary-glow: #00f2ff;
    --secondary-glow: #7000ff;
    --text-muted: rgba(255, 255, 255, 0.6);
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: move 25s infinite alternate;
}

.orb-1 { width: 300px; height: 400px; background: var(--accent); top: -10%; left: -10%; }
.orb-2 { width: 300px; height: 300px; background: var(--accent-2); bottom: -10%; right: -5%; }

/*#################################### GERAIS #################################### */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    scroll-behavior: smooth; 
}

html {
    /* Diminui a escala global sem quebrar cliques ou nitidez */
    /* 13px é aprox. 80% do padrão (16px) */
    font-size: 13px; 
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    margin: 0 auto;
}

.bg-scene {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}



@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(150px, 100px) scale(1.3); }
}

#cursor-aura {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out;
}


/*######################################################################################################################*/

/* =========================================================
   CAMADA DE FUSÃO VISUAL (OVERLAY)
   Finalidade: Criar transição suave entre a imagem do artista 
   e o conteúdo, garantindo contraste e profundidade.
========================================================= */


@media (max-width: 768px) {
    .glass-nav { padding: 15px 25px; }
    .hero-main-title { font-size: 2.8rem; } /* Ajustado para não quebrar */
    .sub-hero { letter-spacing: 4px; font-size: 0.9rem; }
    .artist-grid { grid-template-columns: 1fr; }
    
    .profile-split { flex-direction: column; height: auto; }
    .artist-stage { height: 50vh; flex: none; width: 100%; }
    .image-overlay { background: linear-gradient(to bottom, transparent 0%, #050505 100%); }
}

/* 3. LAYOUT PERFIL DIVIDIDO (PÁGINA DO MÚSICO) */
.profile-body {
    background: #050505;
    /* overflow: hidden;  <-- Removido para garantir que o scroll funcione no mobile */
}

.profile-split {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Coluna Esquerda: Imagem */
.artist-stage {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 100vh;
    background: #000; /* Fundo de segurança caso a imagem demore a carregar */
}

.artist-image-fixed {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Efeito de zoom na imagem ao passar o mouse na área */
.artist-stage:hover .artist-image-fixed {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    /* Mantendo seus gradientes originais e adicionando um leve noise */
    background: linear-gradient(to right, transparent 50%, #050505 100%),
                linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
    pointer-events: none; /* Garante que o clique passe para o que estiver abaixo */
    z-index: 2;
}

/* --- INPUTS MODERNOS --- */
.input-modern {
    margin-bottom: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

/* Linha de brilho que expande no foco */
.input-modern::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.input-modern:focus-within::after {
    width: 100%;
}

.input-modern select {
    width: 100%;
    background: transparent;
    border: none;
    padding: 15px 0;
    color: #fff;
    font-family: inherit;
    font-size: 1.1rem;
    outline: none;
    appearance: none;
    cursor: pointer;
    position: relative;
}

/* Seta customizada para o select (Cyber Style) */
.input-modern-arrow {
    position: absolute;
    right: 0;
    bottom: 20px;
    color: var(--accent);
    font-size: 0.7rem;
    pointer-events: none;
}

.input-modern select option {
    background-color: #111;
    color: white;
    padding: 10px;
}

.label-fixed {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- BOTÃO --- */
.btn-profile-action {
    width: 100%;
    padding: 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px; /* Estilo mais moderno que o arredondado total */
    font-weight: 900;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    position: relative;
}

.btn-profile-action:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent);
    transform: translateY(-2px);
}

.btn-profile-action:active {
    transform: scale(0.97);
}


/*######################################################################################################################*/


/* =========================================================
   3. BACKGROUND ANIMADO / CURSOR
========================================================= */
.bg-scene {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: move 25s infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-2);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #7000ff;
    top: 30%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(150px, 100px) scale(1.3); }
}

#cursor-aura {
    position: fixed;
    width: 300px;
    height: 300px;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, rgba(0,242,255,0.1) 0%, transparent 70%);
    transition: transform 0.1s ease-out;
}



.artist-titles {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 2;
}

.artist-main-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 900; /* Um peso maior ajuda a ver o degradê */
    
    /* Efeito de Degradê de baixo para cima */
    background: linear-gradient(to top, rgba(255,255,255,0.2) 0%, rgba(255,255,255,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Sombra externa para destacar do fundo */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.8));
    
    white-space: normal;
    word-wrap: break-word;
}



.artist-details {
    width: 700px; /* Largura fixa para o painel não "expandir" infinitamente */
    min-width: 400px;
    background: #050505;
    padding: 40px 30px; /* Padding mais controlado */
    overflow-y: auto;
}

.artist-details::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   5. COMPONENTES DE UI
========================================================= */


.btn-back-minimal {
    display: inline-flex;
    align-items: center;
    margin-bottom: 40px;
    font-size: 0.8rem; /* Aumentado levemente para legibilidade */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff; /* Texto branco destaca mais que o cinza no fundo preto */
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Uma borda lateral sutil à esquerda para dar presença */
    border-left: 3px solid #00fd15; 
    padding-left: 12px;
}

.btn-back-minimal:hover {
    color: #00fd15; /* Muda para o verde no hover */
    transform: translateX(5px); /* Move para frente, indicando interação */
    border-left-width: 8px; /* A bordinha cresce suavemente */
}

.section-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    opacity: 0.8;
}

.info-group { margin-bottom: 40px; }
.genre-badge { font-size: 1.2rem; font-weight: 400; }
.bio-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}


/*######################################################################################################################*/


/* =========================================================
   FEEDBACK & COMUNIDADE
========================================================= */

/* --- CONTAINER DO FORMULÁRIO --- */
.feedback-form-card {
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    margin-bottom: 40px;
}

.feedback-form-card h3 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 4px;
    font-family: ''Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif';
}

.feedback-form-card p {
    font-size: 0.65rem;
    color: #666;
    margin-bottom: 15px;
}

/* --- GRID DO FORMULÁRIO --- */
.feedback-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-inputs {
    display: flex;
    align-items: center;
    gap: 20px;
}

.input-nome input {
    width: 220px;
    height: 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #fff;
    padding: 0 12px;
    font-size: 0.8rem;
    outline: none;
    transition: 0.2s;
}

.rating-selection {
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
    font-size: 1.3rem;
}

.rating-selection input { display: none; }
.rating-selection label { cursor: pointer; color: rgba(255,255,255,0.1); transition: 0.3s; }

.rating-selection input:checked ~ label,
.rating-selection label:hover,
.rating-selection label:hover ~ label {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.input-comentario textarea {
    width: 320px;
    max-width: 100%;
    height: 60px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #fff;
    padding: 10px 12px;
    font-size: 0.8rem;
    outline: none;
    resize: none;
    transition: 0.2s;
}

.input-nome input:focus,
.input-comentario textarea:focus {
    border-color: var(--accent);
}

#btn-enviar-feedback {
    width: 320px;
    max-width: 100%;
    padding: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

#btn-enviar-feedback:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,242,255,0.3);
}

/* --- MURAL DE COMUNIDADE --- */
.mural-container {
    background: transparent;
    padding: 10px 0;
    overflow: hidden;
}

.mural-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.mural-title::after {
    content: "● LIVE FEED";
    font-size: 0.55rem;
    color: #00ff88;
    letter-spacing: 3px;
    animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Área de Scroll */
.mural-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 15px 5px 40px 5px; /* Mais espaço para a barra respirar */
    cursor: grab;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.mural-scroll:active { cursor: grabbing; }

/* --- BARRA DE ROLAGEM ULTRA MODERNA (BLINDADA) --- */
@media (min-width: 1024px) {
    /* 1. Remove qualquer estilo padrão do Windows/Navegador */
    .mural-scroll::-webkit-scrollbar {
        height: 4px !important;
        background: transparent !important;
    }

    /* 2. Força o trilho a ser invisível para não ficar branco */
    .mural-scroll::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.02) !important;
        border-radius: 20px;
        margin: 0 100px; /* Deixa a barra mais curta no centro */
    }

    /* 3. O "Dedo" de arrasto - Discreto por padrão */
    .mural-scroll::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 20px;
        border: none !important;
    }

    /* 4. O Efeito Moderno: Acende no Hover do container */
    .mural-scroll:hover::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2) !important;
    }

    /* 5. A cor de destaque quando clica ou passa o mouse na barra */
    .mural-scroll::-webkit-scrollbar-thumb:hover {
        background: var(--accent) !important;
        box-shadow: 0 0 10px var(--accent);
    }

    /* 6. Mata botões de seta brancos das pontas */
    .mural-scroll::-webkit-scrollbar-button {
        display: none !important;
    }
}

/* Cards do Mural */
.vibe-card {
    flex: 0 0 260px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid var(--accent);
    border-radius: 4px;
    padding: 20px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.vibe-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-top-color: #fff;
}

.vibe-user {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 1px;
}

.vibe-rating {
    font-size: 0.6rem;
    color: #ffd700;
    letter-spacing: 2px;
    margin-top: 4px;
    display: block;
}

.vibe-text {
    font-size: 0.8rem;
    color: #efefef;
    line-height: 1.6;
    margin: 15px 0;
    font-weight: 500;
}

.vibe-date {
    font-size: 0.55rem;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
}


/*######################################################################################################################*/

/* =========================================================
   FEEDBACK / MURAL
========================================================= */
.feedback-form-card {
    padding: 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.feedback-form-card h3 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 4px;
}

.feedback-form-card p {
    font-size: 0.65rem;
    color: #666;
    margin-bottom: 12px;
}

/* Estrelas Modernas */
.rating-selection {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
    font-size: 1.4rem; /* Reduzido de 2rem */
    margin-bottom: 12px;
}

.rating-selection input { display: none; }

.rating-selection label {
    cursor: pointer;
    color: rgba(255,255,255,0.1);
    transition: 0.3s;
}

.rating-selection input:checked ~ label,
.rating-selection label:hover,
.rating-selection label:hover ~ label {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

/* Inputs Modernos (Igual ao formulário de reserva) */
.input-nome input,
.input-comentario textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #fff;
    padding: 8px 12px;
    font-size: 0.8rem;
    outline: none;
    transition: 0.2s;
}

.input-nome { margin-bottom: 8px; }

.input-nome input { 
    height: 32px; 
    width: 220px; /* Largura do nome mantida conforme pedido anterior */
}

/* AJUSTE SOLICITADO: TEXTAREA MENOS CUMPRIDO NA HORIZONTAL */
.input-comentario textarea {
    width: 420px; /* Largura reduzida na horizontal */
    max-width: 100%;
    height: 60px; /* Mantive sua altura original de 60px */
    resize: none;
    margin-bottom: 12px;
    display: block;
}

.input-nome input:focus,
.input-comentario textarea:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.05);
}

/* Botão Enviar (Com sua transição Syne) */
#btn-enviar-feedback {
    width: 320px; /* Alinhado com a largura da descrição */
    max-width: 100%;
    padding: 10px;
    font-size: 0.7rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
}

/* Bolha de Comentário que já existe no Mural */
.feedback-bubble {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 2px solid var(--accent);
    margin-bottom: 10px;
}


/*######################################################################################################################*/


/* =========================================================
   BOTÃO ENVIAR MURAL
========================================================= */
.btn-mural {
    /* Mantendo suas propriedades exatas */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-user-status {
    /* Aplicando o estilo "encurtado" e retangular */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;         /* Reduzido para ficar mais fino */
    font-size: 0.65rem;        /* Sincronizado com os outros botões */
    border-radius: 4px;        /* Retangular para combinar com o Form e Agenda */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
}

/* Hover seguindo o padrão de cor e movimento suave */
.btn-user-status:hover,
.btn-mural:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
}


/*######################################################################################################################*/


/* =========================================================
   AGENDA - GRID QUADRADO E INFOS LADO A LADO
========================================================= */

/* CONTAINER PRINCIPAL */
.agenda-list {
    display: flex;
    flex-direction: column; /* Lista vertical em vez de grid */
    gap: 15px;
    padding: 10px 0;
}

/* O CARD ESTILO TICKET */
.agenda-item-card-public {
    display: flex;
    background: linear-gradient(145deg, rgba(40,40,40,0.9), rgba(20,20,20,0.95)) !important;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05) !important;
    min-height: 80px;
}

/* FAIXA LATERAL DA DATA */
.card-side-date {
    background: #00d4ff; /* Cor azul de destaque */
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000 !important;
}

.date-number {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* CONTEÚDO CENTRAL */
.card-main-content {
    padding: 12px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.show-title {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.show-details {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.show-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    color: rgba(255,255,255,0.4);
}

.separator {
    color: #00d4ff;
}

/* ESTILO DO TÍTULO DA SEÇÃO */
.section-label {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 4px solid #00d4ff;
    padding-left: 12px;
}


/*######################################################################################################################*/


/* =========================================================
   8. BOTÃO SOLICITAR ORÇAMENTO
========================================================= */
.btn-plasma {
    grid-column: span 2;
    margin-top: 5px;        /* Reduzido de 10px */
    padding: 8px;           /* Reduzido de 12px para ficar fino */
    font-size: 0.65rem;     /* Leve redução para legibilidade densa */
    font-weight: 900;
    letter-spacing: 1.5px;  /* Espaçamento sutilmente menor */
    text-transform: uppercase;
    background: #fff;
    color: #000;
    border-radius: 4px;     /* Arredondamento menor seguindo os inputs */
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-plasma:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,242,255,0.15); /* Sombra mais discreta */
}


/*######################################################################################################################*/


/* =========================================================
   SOLICITAR ORÇAMENTO (UNIFICADO & COMPACTO)
========================================================= */
/* Card de Reserva */
.booking-glass-card {
    max-width: 100%;
    padding: 16px;
    margin: 15px 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    backdrop-filter: blur(15px);
}

.booking-glass-card form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

/* 1. BASE COMUM (Inputs e Trigger do Select) */
.input-modern input,
.input-modern select,
.select-trigger {
    width: 100%;
    padding: 6px 10px;
    font-size: 0.8rem;
    color: #fff;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    outline: none;
    height: 32px; /* Altura compacta sincronizada */
    transition: 0.2s ease;
}

/* 2. LABELS */
.label-fixed {
    display: block;
    margin-bottom: 2px;
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent);
}

/* 3. ALINHAMENTO LADO A LADO (Local e Tipo) */
.input-modern, 
.custom-select-container {
    grid-column: span 1; /* Ocupam metade da linha cada um */
    position: relative;
}

.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

/* 4. MENU DROP-DOWN */
.select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    z-index: 10000;
    max-height: 180px;
    overflow-y: auto;
    display: none;
    background: #0a0a0a;
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

.select-options.active { display: block !important; }

/* Itens do Menu */
.option-group { padding: 6px 10px 2px; font-size: 0.55rem; color: #00d2ff; font-weight: 800; text-transform: uppercase; }
.option-item { padding: 8px 10px; font-size: 0.75rem; color: rgba(255,255,255,0.7); cursor: pointer; }
.option-item:hover { background: rgba(0, 210, 255, 0.1); color: #fff; }

/* 5. ÁREA DE TEXTO (Ocupa a linha toda) */
.input-modern textarea {
    width: 100%;
    height: 45px;
    min-height: 45px;
    grid-column: span 2;
    padding: 6px 10px;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #fff;
    outline: none;
}


/*######################################################################################################################*/


/* =========================================================
    BARRA FÂS E AVALIAÇÕES
========================================================= */

.stats-bar-modern {
    display: inline-flex; /* Ocupa apenas o espaço necessário */
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 8px 15px;    /* Reduzido de 15px para 8px/15px */
    margin: 15px 0;       /* Margem reduzida drasticamente */
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;             /* Gap menor entre ícone e texto */
    cursor: pointer;
    transition: 0.3s;
}

.stat-icon {
    width: 28px;          /* Reduzido de 35px */
    height: 28px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f3ff;
    font-size: 0.8rem;    /* Reduzido de 0.9rem */
}

/* Ícone de destaque */
.stat-item:nth-child(3) .stat-icon {
    color: #ffcc00;
}

.stat-value {
    font-size: 0.9rem;    /* Reduzido de 1.1rem */
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.5rem;    /* Reduzido de 0.6rem */
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 15px;         /* Reduzido de 30px */
    background: rgba(255, 255, 255, 0.1);
}


/*######################################################################################################################*/


/* =========================================================
    COMPACT GLASS PLAYER (REFINADO)
========================================================= */
.glass-player {
    display: inline-flex;    /* Ocupa apenas o espaço necessário */
    align-items: center;
    gap: 12px;
    padding: 8px 16px;       /* Mais fino e equilibrado */
    margin-bottom: 20px;
    border-radius: 50px;     /* Estilo pílula (mais moderno) */
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.play-icon {
    font-size: 0.9rem;       /* Ícone menor e elegante */
    color: var(--accent);
    cursor: pointer;
    transition: 0.3s;
}

.play-icon:hover {
    transform: scale(1.1);
    text-shadow: 0 0 10px var(--accent);
}

.glass-player p {
    font-size: 0.7rem;       /* Fonte minúscula e densa */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    color: rgba(255,255,255,0.8);
}


/*######################################################################################################################*/


/* =========================================================
   DIVISOR DE SEÇÃO
========================================================= */
.section-divider {
    width: 100%;
    max-width: 650px;
    height: 1px;
    margin: 20px 0;
    background: linear-gradient(
        to right,
        rgba(0,242,255,0) 0%,
        rgba(0,242,255,0.3) 50%,
        rgba(0,242,255,0) 100%
    );
    border: none;
}


/*######################################################################################################################*/


/* =========================================================
   REDES SOCIAIS - ESTILO CIRCULAR
========================================================= */
.artist-social-links {
    display: flex;
    gap: 10px; /* Espaçamento entre os círculos */
    flex-wrap: wrap;
}

.social-icon-link {
    display: flex; /* Necessário para centralizar o ícone */
    align-items: center;
    justify-content: center;
    
    width: 40px;  /* Tamanho do círculo */
    height: 40px; /* Tamanho do círculo */
    
    font-size: 1.4rem; /* Ajuste o tamanho do ícone dentro do círculo */
    color: #fff;
    background: rgba(255, 255, 255, 0.1); /* Fundo leve para o círculo */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Borda opcional */
    border-radius: 50%; /* Faz o círculo */
    
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    color: #fff;
    background: #00d2ff; /* Cor de fundo no hover */
    border-color: #00d2ff;
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.1);
}


/*######################################################################################################################*/


/* =========================================================
   BOTÕES - PERFIL CONTATO AGENDA COMUNIDADE
========================================================= */
.nav-links-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.btn-nav-link {
    text-decoration: none;
    color: #888;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-nav-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Scroll suave para quando clicar no link */
html {
    scroll-behavior: smooth;
}


#link-compartilhar {
    color: #00fd15 !important;
}

#link-compartilhar i {
    color: #00fd15 !important;
}

#link-compartilhar span {
    color: #00fd15 !important;
}

/* Efeito ao passar o mouse apenas neste botão */
#link-compartilhar:hover, 
#link-compartilhar:hover i, 
#link-compartilhar:hover span {
    color: #ffffff !important;
    text-shadow: 0 0 10px #00fd15;
}

/* Esconde o botão de ícone por padrão (Desktop) */
.share-mobile-only {
    display: none !important;
    color: #00fd15 !important;
}

/* --- Dispositivos Móveis (Geralmente abaixo de 768px) --- */
@media (max-width: 768px) {
    
    /* Esconde o botão de texto do menu lateral */
    .share-desktop-only {
        display: none !important;
    }

    /* Mostra o botão de ícone ao lado das redes sociais */
    .share-mobile-only {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px; /* Tamanho igual aos outros ícones */
        height: 45px;
        border-radius: 50%;
    }

    /* Ajuste para os ícones ficarem em linha se o container for pequeno */
    .artist-social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
    }
}
/* ==========================================================================
   CONFIGURAÇÃO GLOBAL (DESKTOP)
   ========================================================================== */

/* Esconde as tabs mobile no Desktop por padrão */
.mobile-tabs {
    display: none !important;
}

/* Garante que o conteúdo das tabs (seções) apareça no desktop se não houver troca de abas */
@media (min-width: 993px) {
    .tab-section, .tab-content {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ==========================================================================
   SISTEMA DE OTIMIZAÇÃO MOBILE (FIX TOTAL)
   Foco: Imagem visível, textos contidos e navegação tipo App
   ========================================================================== */

@media (max-width: 992px) {
    
    /* 1. RESET E LIMPEZA DE INTERFACE */
    .glass-nav, nav, header, .navbar { 
        display: none !important; 
    }

    body, html {
        overflow-x: hidden; /* Impede a tela de "dançar" pros lados */
        background: #050505;
        height: auto !important;
    }

    /* 2. ESTRUTURA DE EMPILHAMENTO (COLLAPSE) */
    .profile-split {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh;
    }

    /* 3. FIX DA IMAGEM DO ARTISTA (VISIBILIDADE TOTAL) */
    .artist-stage {
        width: 100% !important;
        height: 45vh !important; /* Altura fixa garantida no mobile */
        min-height: 320px;
        position: relative !important;
        flex: none !important;
        overflow: hidden;
        background: #111; /* Cor de fundo caso a imagem falhe */
        z-index: 1;
        display: block !important;
    }

    /* Força a imagem a aparecer se estiver como background-image no HTML */
    .artist-image-fixed {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        transform: none !important; /* Remove zooms que possam esconder a imagem */
    }

    .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, 
            transparent 0%, 
            rgba(5, 5, 5, 0.4) 50%, 
            #050505 100%) !important;
        z-index: 2;
        pointer-events: none;
    }

    /* 4. ÁREA DE DETALHES (CONTENÇÃO DE TEXTO) */
    .artist-details {
        width: 100% !important;
        padding: 30px 18px 120px 18px !important;
        margin-top: -50px; /* Sobe suavemente sobre a imagem */
        background: #050505;
        border-radius: 32px 32px 0 0;
        position: relative;
        z-index: 10;
        box-sizing: border-box !important;
        margin-left: -5px;
    }

    /* 5. CONTROLE DE DESCRIÇÕES E NOMES LONGOS (ANTI-BAGUNÇA) */
    .artist-main-name {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 20px;
        color: #fff;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    /* Regra de ouro para Bio/Descrição Grande */
    .artist-bio, .vibe-text, p, .description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: #b0b0b0 !important;
        max-width: 100% !important;
        display: block !important;
        /* Impede o texto de "empurrar" a largura da tela */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        margin-bottom: 25px;
    }

    /* 6. CARDS E FORMULÁRIOS (RESPONSIVOS) */
    .vibe-card, .feedback-form-card, .input-modern {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* 7. NAVEGAÇÃO INFERIOR (ESTILO NATIVO) */
    .mobile-tabs {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 75px;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 99999;
        justify-content: space-around;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .tab-btn {
        flex: 1;
        background: none;
        border: none;
        color: #555;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        transition: 0.3s;
    }

    .tab-btn.active {
        color: var(--accent, #00f2ff);
    }

    .tab-btn i { font-size: 1.3rem; }
    .tab-btn span { 
        font-size: 0.65rem; 
        font-weight: 800; 
        text-transform: uppercase; 
        letter-spacing: 0.5px;
    }

    /* 8. LÓGICA DE EXIBIÇÃO DE SEÇÕES */
    .tab-section, .tab-content, .section-target {
        display: none;
        width: 100% !important;
    }

    .tab-section.active, .tab-content.active, .section-target.active {
        display: block !important;
        animation: tabFadeUp 0.4s ease-out forwards;
    }
}

/* ANIMAÇÃO DE ENTRADA MOBILE */
@keyframes tabFadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}


.vibracao-local-card {
    width: 100%;
    max-width: 400px; /* Impede que ele fique largo e feio */
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin: 10px 0;
    animation: fadeIn 0.5s ease;
}

/* Ajuste fino para o seu ícone original no estado desativado */
.glass-player {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px; /* Estilo pílula */
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}