/* MENU DE NAVEGAÇÃO */

.navbar {
    position: fixed;
    top: 0;
    padding: 30px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.navbar li {
    margin: 0 20px;
}
.navbar a {
    color: #b19cd9;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
}
