@media (max-width: 1000px) {

    #navegador{
        transition: background-color 0.6s;
        background-color: rgba(0, 0, 0, 0);
        display: flex;
        flex-direction: row;
    }

    #navegador nav{
        width: max-content;
    }

    #navegador nav ul{
        left: 0;
        transform: translate(110%,0);
        background-color: #1E1E1E;
        flex-direction: column;
        align-items: center;
        position: absolute;
        list-style: none;
        padding: 0rem;
        display: flex;
        height: 115vh;
        z-index: 4;
        transition: transform 0.7s;
        width:100vw;
    }

    #navegador nav ul li{
        margin-top: 2.5rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #fbfbfb;
    }

    #navegador nav ul li:nth-child(1){
        display: flex;
        flex-direction: row;
        justify-content:end;
        font-size: 2rem;
        color: #fbfbfb;
        font-weight: 800;
        margin-right: 3rem;
        align-items:end;
        border-bottom: 0px
    }

    #navegador nav ul li a{
        text-decoration: none;
        transition: color 0.6s;
        font-weight: 700;
        font-size: 3.0em;
        color: #fbfbfb;
    }

    #navegador nav ul li a:hover{
        color: #ffc057;
    }

    .img-nav:nth-child(1){
        margin-left: 2.0em;
        margin-top: 1.0em;
        width: 6.9em;
        height: 3.5em;
        background-image: url(../images/index/Recurso-8.svg);
    }

    .img-nav:nth-child(2){
        width: 2.5em;
        height: 2.5em;
        margin: 10px;
        margin-top: 1.5rem;
        margin-right: 4rem;
        background-image: url(../images/index/menu.svg);
    }

    #heroe-banner{
        border-radius: 0 0 0 0;
    }

    #heroe-banner{
        top: 0;
    }
}

/*********************************ZONA NAVEGADOR ****************************************/

@media (min-width: 1000px){

    #navegador{
        background-color: #fbfbfb;
    }
    
    #navegador #nav-container ul {
        display: flex;
        flex-direction: row;
        margin-top: 2.0em;  
    }
    
    #navegador nav ul li {
        display: flex;
        border: 2px solid rgba(255, 255, 255, 0);
        transition: border 0.6s;
        list-style-type: none;
        border-radius: 25px;
        margin-right: 20px;
        justify-content: center;
        align-items: center;
        width: 100px;
    }
    
    #navegador nav ul li:hover{
        border: 2px solid  #ffc057;
    }
        
    .img-nav:nth-child(1){
        margin-left: 2.0em;
        margin-top: 1.0em;
        width: 6.9em;
        height: 3.5em;
        background-image: url(../images/index/Recurso-3.svg);
    }
}
/**************************************************************************/

*{
    margin:0px;
    font-family: 'Bai Jamjuree';
}

#navegador{
    position: fixed;
    padding-bottom: 10px;
    width: 100%;
    z-index: 6;
    left: 0;
    top: 0;
}

#navegador nav  {
    justify-content: space-between;
    flex-direction: row;
    display: flex;
    width: 100%;
}

.img-nav{
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

a{
    color: black;
    text-decoration: none;
}