#navbar {
    background-color: var(--azul);
    color: #fff;
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;

    button {
        display: none;
    }

    ul {
        list-style: none;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;

        a {
            color: #fff;
            transition: color 0.3s ease;

            &:hover {
                color: #bbb;
            }

            &.active {
                font-weight: bold;
            }
        }
    }

    @media (max-width: 768px) {
        button {
            display: block;

            background: none;
            border: none;
            cursor: pointer;
            color: white;
            font-size: 1.5rem;
            padding: 0rem;
        }

        ul {
            display: none;
            flex-direction: column;
            gap: 0.4rem;
            background-color: var(--azul);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding-bottom: 1rem;

            &.active {
                display: flex;
            }
        }
    }
}
