/*Versao 1024+ */
/* Responsividades */
@media (min-width: 1024px){
  header{
    background-color: #f8f9fa;
    height: auto;
    padding: 10px 0px;
    margin-bottom: 2em;
  }
    .container-fluid{
      display: flex;  
      align-items: center;
      justify-content: space-around; 
      margin-top: 0;
      width: 100%;
      height: 100%;
      background-color: none;
      }
      img.logo{
        width: 200px;  
        margin-left: 1em;
      }
      div#navbarNavDropdown.collapse.navbar-collapse{
        display: flex;
        justify-content: right;
        padding-right: 5em;
      }
      a.nav-link{
        margin-left: .7em;
      }
      .navbar-light .nav-link:hover {
        font-weight: bold;
        color:black ;
        background-color: #f8961e;
        border-radius: 1em;
    }
      i.fas{
        display: none;
      }
      i.fa{
        display: flex;
      }
      li{
        display: block;
        margin: auto;
        width: 100%;
      }
      ul.dropdown-menu.show{
        max-width: 70%;
        border-radius: 1em;
        
      }
      .dropdown-item{
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        white-space: wrap;        
        display: block;
        justify-content: center;
        margin: auto;
        align-items: center;
        text-align: center;
      }
      .dropdown-item:hover{
        background-color: #f8961e;
        border-radius: 1em;
        color: black;
        font-weight: bold;
      }
      #item2-tutorial{
        border-top: 1px solid gray ;
        border-bottom: 1px solid gray ;
        margin: 10px 0 10px 0;
        padding:10px 0 10px 0 ;
      }
  }

  /* versao Cell*/
  @media (max-width: 1023px) {
    .container-fluid{
      width: 100%;
      height: auto;
      display: flex;
      justify-content: left;
    }
    
      img.logo{
        width: 160px;
        height: auto;
        display: flex;
        margin-left: auto;
      }
    .navbar-toggler{
      transition: width 0.2s linear;
    }
    nav {
      width: 100%;
      height: auto;
      top: 0;
      bottom: 0;
      right: 0;
      transition: width 0.2s linear;
      z-index: 1000;   
      } 
      .container-fluid{
        width: 100%;
      }
    .fas {
        position: relative;
        width: 20px;
        font-size: 18px;
        text-align: center;
        margin-right: 3px;
    }
    ul.dropdown-menu.show{
      max-width: 70%;
      border-radius: 1em;
    }
    .dropdown-item{
      width: 70%;
      display: flex;
      flex-wrap: wrap;
      white-space: wrap;
      justify-content: left;
      align-items: center;
    }
  }
  