:root {
    --corprincipal: #04050a;
    --corsecundaria: #e8d282;
    --cordetalhes: #d68111;
    --coricones: rgb(245, 182, 9);
    --botao: #ede9de;
    --botaohover: #e8d282;
  }

  /* menu */

#nav-desk {
    display: none;
  }
  
  nav {
    background-color: #242929;
    height: 20vh;
  }
  
  .sidepanel {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: #000;
    overflow-x: hidden;
    padding-top: 60px;
  }
  
  .sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
  }
  
  .sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 40px;
    margin-left: 50px;
  }
  
  .sidepanel {
    transition: 0.5s;
  }
  
  .sidepanel a:hover {
    color: #f1f1f1;
  }
  
  .hambuguer {
    display: block;
    margin-top: 15px;
    margin-right: 15px;
    float: right;
    cursor: pointer;
  }
  
  .bar1,
  .bar2,
  .bar3 {
    width: 50px;
    height: 8px;
    background-color: #fff;
    margin: 6px 0;
  }
  
  /* header */
  .header_index {
    display: flex;
    height: 50vh;
    position: relative;
    width: 100%;
  }
  
  /* Bottom right text */
  .text-block {
    position: absolute;
    bottom: 0px;
    right: 10px;
    background-color: black;
    color: white;
    padding-left: 5px;
    padding-right: 5px;
  }


  @media only screen and (min-width: 600px) {
      
    .sidepanel .closebtn {
      font-size: 100px;
    }
  
    .sidepanel a {
      font-size: 40px;
    }
  
    /* nav */
  
    .nav-mobile {
      display: none;
    }
  
    nav {
      justify-content: space-around;
      height: 15vh;
    }

    .ul-nav{
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

    .ul-nav li {
      float: left;
    }
  
    #nav-desk {
      display: block;
    }
  
    #nav-desk ul li {
      display: inline;
      padding: 20px 20px 20px 30px;
    }
  
    #nav-desk ul li a {
      color: #ede9de;
    }
  
    #nav-tel {
      margin-left: 15px;
      background-color: var(--cordetalhes);
    }
}