.navbar {
    color: #F2F2F6;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(to bottom, #4F4FA3 0%, #159ABF 100%);
    border-bottom: 1px solid #4F4FA3;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.navbar__apresentacao {
    display: flex;
    align-items: center;
    width: 50%;

}

.navbar__titulo {
    font-family: "caveat";
    color: #F2F2F6;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.navbar__links {
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
    list-style-type: none;
    align-items: center;
    font-family: var(--fonte-principal);
    display: flex;
}

.navbar__link {
    display: flex;
    align-items: center;
    text-align: center;
    color: #F2F2F6;
    text-decoration: none;
    margin-left: 1rem;
    display: flex;
    font-weight: 600;
}

.navbar__link:hover{
    color: #159ABF;
}

.menu-hamburguer {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 50%;
    display: none;
}

