/* NAVEGAÇÃO / ABAS */
.nav-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dourado);
    margin-bottom: 12px;
    margin-left: 4px;
}

.tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 10px;
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
}

.tab-btn .icon-tab {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.tab-btn.active {
    background: var(--marsala);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(58, 29, 33, 0.25);
}

.tab-btn.active .icon-tab {
    color: var(--dourado);
    transform: scale(1.1);
}

.tab-btn:hover:not(.active) {
    color: var(--marsala);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.tab-btn:active {
    transform: scale(0.98);
}

/* CONTEÚDO DAS ABAS */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .tabs {
        flex-direction: column;
    }
}