* {
    padding: 0;
    margin: 0;
}

.navbar-inicial {
    display: grid;
    grid-template-columns: 25% 75%;
    margin-bottom: 4rem;
    height: 18vh;
}

.barra-navegacao {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    justify-content: space-around;
    text-align: center;
    align-items: center;
    list-style: none;
    height: 100%;
    margin: 0;
    padding: 0;
}

.barra-navegacao li:nth-child(1) {
    height: 100%;
    border-bottom-left-radius: 30px;
    background-color: var(--cor-roxa-navbar);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
}

.barra-navegacao li:nth-child(2) {
    height: 100%;
    background-color: var(--cor-verde-navbar);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
}

.barra-navegacao li:nth-child(3) {
    height: 100%;
    background-color: var(--cor-laranja-navbar);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
}

.barra-navegacao li:nth-child(4) {
    height: 100%;
    background-color: var(--cor-vermelho-navbar);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
}

.barra-navegacao li:nth-child(5) {
    height: 100%;
    border-bottom-right-radius: 30px;
    background-color: var(--cor-rosa-navbar);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
}

.link-nav {
    text-decoration: none;
    color: var(--cor-branco);
}

.link-nav:hover {
    text-decoration: none;
    color: var(--cor-branco);
    font-size: 28px;
    transition: 0.5s;
}

.logo-sistema {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-sistema {
    width: 90%;
}

.hamburger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    width: 30px;
}

.hamburger::before {
    content: " ";
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: #1F618D;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}

.line {
    content: " ";
    display: block;
    width: 30px;
    height: 4px;
    background-color: #1F618D;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}

.hamburger::after {
    content: " ";
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: #1F618D;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}
.link-nav.nav.ultimo {
    border-right: 3px solid #1F618D;
}

@media (max-width: 750px) {
    .hamburger.-tela-inicial{
        display: block;
    }

    .hamburger {
        display: none;
        border: none;
        background: none;
        cursor: pointer;
        width: 30px;
    }

    .navbar-inicial.inicial {
        justify-content: space-around;
        align-items: center;
    }

    .separacao {
        display: flex;
        width: 100% !important;
        justify-content: center;
        transform: rotate(90deg);

    }

    .navbar-inicial {
        display: grid;
        grid-template-columns: 40% 10%;
        margin-bottom: 2rem;
        height: 18vh;
        justify-content: space-between;
    }

    .navbar-inicial.active {
        display: grid;
        grid-template-columns: 40% 10%;
        grid-template-rows: 15% 85%;
        margin-bottom: 2rem;
        height: 100vh;
        justify-content: space-between;
    }

    .barra-navegacao, .barra-navegacao.navegacao {
        display: none;
        grid-template-columns: 100%;
        z-index: 1;
        grid-column: 1 / 3;
        align-self: center;
    }

    .navbar-inicial.active .barra-navegacao {
        display: flex;
        flex-direction: column;
        height: 265px;
    }

    .barra-navegacao li:nth-child(1) {
        height: 100%;
        border-bottom-left-radius: 0;
        background-color: var(--cor-roxa-navbar);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 300;
    }

    .barra-navegacao li:nth-child(2) {
        height: 100%;
        background-color: var(--cor-verde-navbar);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 300;
    }

    .barra-navegacao li:nth-child(3) {
        height: 100%;
        background-color: var(--cor-laranja-navbar);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 300;
    }

    .barra-navegacao li:nth-child(4) {
        height: 100%;
        background-color: var(--cor-vermelho-navbar);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 300;
    }

    .barra-navegacao li:nth-child(5) {
        height: 100%;
        border-bottom-right-radius: 0;
        background-color: var(--cor-rosa-navbar);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 300;
    }

    .link-nav.nav{
        border-left: none;
        border-bottom: 3px solid #1F618D;
    }

    .link-nav.nav.ultimo{
        border-right: none;
        border-bottom: 3px solid #1F618D;
    }
}
