I have seen countless examples of using the Newton-Raphson method to find the roots of a system of equations. But I cannot find anything on the possibility of finding the zeros of a scalar function of multiple variables with a similar approach.
As an example, suppose we try to find the zeros of
$$f(x,y) = -x^2 - y^2 + C $$
The solution is a curve (circle), instead of a point. Is there anything similar to Newton-Raphson to approach the solution numerically?

Following the suggestions from some of the comments to my question, we can solve for all the $x$ values by using the standard Newton-Raphson method for each $y$ value.
I leave some Matlab code that does this