.artist-form-header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    font-family: "Source Sans Pro";
    box-shadow: 0px 0px 30px 0 rgba(0, 0, 0, 0.10);
    padding: 13px 23px;
    gap: 10px;
    z-index: 99999;
}

.header-title {
    padding: 0 0 0 30px;
}

.header-logo {
    width: 120px;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0 0 -9px 0;
}
.header-title {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.header-title a {
    flex-grow: 1;
    text-align: right;
    line-height: 1.2em;
    margin: 0;
    display: block;
    color: #000;
     white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}



a.header-dashboard-link {
    margin: 0px 0 20px;
    display: flex;
    text-align: right;
    color: #6c63ff;
    gap: 6px;
}


.header-actions {
    display: flex;
    align-content: center;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
a.sair_vgi {
    flex-shrink: 0;
    color: red;
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */
.artist-form-tabs-wrapper {
    max-width: 100%;
    margin: 20px 0;
}

/* ============================================
   NAVEGAÇÃO EM PÍLULAS - SCROLL HORIZONTAL
   ============================================ */
.artist-form-tabs-nav {
    margin-bottom: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #6c63ff #f0f0f5;
    padding: 4px 0 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.artist-form-tabs-nav::-webkit-scrollbar {
    height: 4px;
}

.artist-form-tabs-nav::-webkit-scrollbar-track {
    background: #f0f0f5;
    border-radius: 4px;
}

.artist-form-tabs-nav::-webkit-scrollbar-thumb {
    background: #6c63ff;
    border-radius: 4px;
}

.tabs-scroll-container {
    display: flex;
    gap: 10px;
    padding: 4px 2px;
    min-width: max-content;
}

/* ============================================
   BOTÕES PÍLULA
   ============================================ */
.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f0f0f5;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6c7781;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn .tab-icon {
    font-size: 16px;
    line-height: 1;
}

.tab-btn .tab-label {
    line-height: 1;
}

.tab-btn:hover {
    background: #e8e8f0;
    color: #4a4a5a;
    transform: translateY(-1px);
}

.tab-btn:active {
    transform: translateY(0px);
}

/* Estado Ativo */
.tab-btn.active {
    background: #6c63ff;
    color: #ffffff;
    border-color: #6c63ff;
    
}

.tab-btn.active:hover {
    background: #7a72ff;
    border-color: #7a72ff;
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
}

/* ============================================
   CONTEÚDO DAS TABS
   ============================================ */
.artist-form-tabs-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e8e8f0;
    min-height: 400px;
    transition: all 0.3s ease;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



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

/* Tablets e telas médias */
@media (max-width: 1024px) {
    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .tab-btn .tab-icon {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .artist-form-tabs-nav {
        margin-bottom: 20px;
        padding: 2px 0 10px 0;
    }
    
    .tabs-scroll-container {
        gap: 8px;
        padding: 2px 0;
    }
    
    .tab-btn {
        padding: 8px 14px;
        font-size: 12px;
        gap: 6px;
    }
    
    .tab-btn .tab-icon {
        font-size: 13px;
    }
    
    .artist-form-tabs-content {
        padding: 20px 15px;
        border-radius: 12px;
    }


.header-logo {
    width: 90px;
   
    margin: 0 0 -9px 0;
}


.header-title, a.sair_vgi {
    font-size: 14px;
}





}

/* Mobile pequeno */
@media (max-width: 480px) {
    .tab-btn {
        padding: 6px 12px;
        font-size: 11px;
        gap: 4px;
    }
    
    .tab-btn .tab-icon {
        font-size: 12px;
    }
    
    .artist-form-tabs-content {
        padding: 15px 10px;
        border-radius: 10px;
        min-height: 300px;
    }
}

/* ============================================
   ACESSIBILIDADE
   ============================================ */
.tab-btn:focus-visible {
    outline: 3px solid #6c63ff;
    outline-offset: 3px;
}