/*-------------- Navegador ------------------*/
.nav {
    position: fixed;
    z-index:999;
    width: 100%;
    height: 110px;
    padding-left: 2vw;
    padding-right: 0;
    background-color: white;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: var(--ds-gray);
    display: flex;
    justify-content: space-between;
}

.nav__list {
    float: right;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.nav__img {
    margin-top: auto;
    margin-bottom: auto;
}
.nav__item {
    height: 100%;
    width: 230px; 
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    position: relative;
}
.nav__item a {
    width: 100%;
    height: 100%;
    color: inherit;
}

.nav__item:after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 0;
    bottom: 0;
    background-color:var(--ds-softblue-light);
    border-bottom-width: 0px;
    border-bottom-style: solid;
    border-bottom-color: var(--ds-darkblue);
    transition: all 500ms ease;
}

.nav__item:hover a {
    text-decoration: none;
    color: var(--ds-darkblue) !important;
    transition: all 500ms ease;
}

.nav__item:hover:after {    
    height: 100%;
    background-color:var(--ds-softblue-light);
    border-bottom-width: 6px;
    border-bottom-style: solid;
    border-bottom-color: var(--ds-darkblue);
}

.nav__item--active.nav__item:after {
    height: 100%;
    background-color:var(--ds-softblue-light);
    border-bottom-width: 6px;
    border-bottom-style: solid;
    border-bottom-color: var(--ds-darkblue);    
}

.navbar-toggler {
    display: none;
}

.nav--scroll {
    transform: scale(0.9);
    background-color: red !important;
}

@media only screen and (max-width: 1300px) {
    body {
        overflow-x: hidden;
    }
    .nav__list {
        display: none;
        flex-direction: column;
        position: absolute;
        height: 40vh;
        width: 100vw;
        top: 100px;
        background-color: white;
    }

    .nav__item {
        border-bottom-width: 3px;
        border-bottom-style: solid;
        border-bottom-color: var(--ds-softblue-light);
    }
    .nav__img {
        width: 190px;
        margin-left: 20px;
    }
    .navbar-toggler {
        display: block;
        height: 20px !important;
        width: 20px !important;
    }
    /*-

    .navbar-toggler::before {
        content: "";
        width: 40px;
        height: 40px;
        background-color: gray;
    }

    .navbar-toggler:checked + .nav__list {
        display: flex;
    }-*/

    .navbar-toggler {
        background-color: rgba(255, 255, 255, 0);
        appearance: none;
        outline: none;
        border: none;
        position: relative;
        cursor: pointer;
        top: 25px;
        margin-right: 60px;
    }

    .nav input[type=checkbox] {
        visibility: hidden;
    }
    .navbar-toggler:before {
        content: "";
        display: block;
        width: 63px;
        height: 63px;       
        background-image: url(../images/icon-menu.svg);       
    }
    .nav__list-mobile {
        display: flex;
        right: 0;
        height: 90vh;
        transition: all 250ms ease;
    }
    
    /*
    .navbar-toggler:active:after {
        content: "";
        display: block;
        width: 5px;
        height: 10px;
        border-bottom: gray;
        position: absolute;
        top: 5px;
        left: 9px;
      }
      
      
      .navbar-toggler:active + .nav__list {
        display: flex;
    }*/
}
/*--------------- Navegador FIM ------------------*/