.barra-nav {
    width: 100%;
    padding: 20px;
    background: 
        linear-gradient(45deg, var(--cor-principal-1-sombra), var(--cor-principal-2-sombra)),
        var(--barra-nav-background-image-url)
    ;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-blend-mode: screen; */
    /* background: linear-gradient(45deg, var(--cor-principal-1), var(--cor-principal-2)); */
    height: 130px;
}

.barra-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-direction: row;
    height: 100%;
}

.barra-nav-logo img {
    width: 300px;
    height: auto;
    margin-right: 10px;
}

.barra-nav-menu {
    height: 100%;
    display: flex;
    /* align-items: end; */
    align-items: center;
    padding: 5px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    color: white;
    font-size: 1em;
    font-weight: bold;
}

.barra-nav-menu a {
    margin-left: 2%;
    text-decoration: none;
}

.barra-nav-menu a:hover {
    color: white;
    text-decoration: underline;
}

.barra-nav-menu a:active {
    color: white;
}

.barra-nav-menu a:visited {
    color: white;
}

.barra-nav-menu a:link {
    color: white;
}

.barra-nav-menu-mobile {
    display: none;
    margin-top: 9px;
    text-align: center;
}

.barra-nav-menu-mobile a {
    font-size: 14px;
    margin-left: 2%;
    text-decoration: none;
}

.barra-nav-menu-mobile a:hover {
    color: white;
    text-decoration: underline;
}

.barra-nav-menu-mobile a:active {
    color: white;
}

.barra-nav-menu-mobile a:visited {
    color: white;
}

.barra-nav-menu-mobile a:link {
    color: white;
}

.barra-nav-login {
    height: 100%;
    
    display: flex;
    align-items: center;
}

.barra-nav-login-btn {
    background-color: var(--cor-principal-1);
    color: white;
    font-weight: 900;
    border: none;
    padding: 2px 4px;
    border-radius: 24px;
    cursor: pointer;
    text-decoration: none;
}

.barra-nav-login-btn:hover {
    color: white;
    text-decoration: underline;

}

.barra-nav-login-btn:active {
    color: white;
}

.barra-nav-login-btn:visited {
    color: white;
}

.barra-nav-login-btn:link {
    color: white;
}

@media screen and (max-width: 768px) {
    .barra-nav-logo img {
        width: 200px;
    }

    .barra-nav-menu {
        display: none;
    }

    .barra-nav-menu-mobile {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .barra-nav{
        height: 140px;
        display: flex;
        flex-direction: column;
    }
    .barra-nav-menu {
        display: none;
    }
}