.header {
  color:white;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(60deg, #995CF5 8%, rgb(81, 0, 116) 100%);
  
}

.header-fixed {
  z-index: 1;
  position: fixed;
}

.logo-home {
  width: 35%;
}

.content-home {
  font-family: 'Lato', sans-serif;
  letter-spacing: 2px;
  font-size: 19px;
  width: 70%;
}

.inner-header {
  padding: 9% 0;
  width:100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  height:20vh;
  text-align:center;                      
}



/*---------------menu---------------------------*/

.menu {
  width: 100%;
  padding: 10px 0px;
}

.menu__link {
  color: #ffffff;
  text-decoration: none;
  float: left;
  padding: 10px 25px;
  font-size: 18px;
}

.menu__link:hover {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}

.header__logo {
  height: 40px;
  padding: 0px 30px;
}

.menu__list {
  float: right;
  padding: 0px 30px;
}

#btn-mobile {
  display: none;
}

/*----------------resposivo-------------------------*/

@media screen and (max-width: 1186px) {
  #btn-mobile {
    display: inline;
    float: right;
    margin: 10px 30px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 10px;
  }

  .menu__list {
    display: none;
  }

  #menu.active .menu__list {
    display: flex;
  }
  
}

@media screen and (max-width: 568px) {
  .logo-home {
    display: none;
  }

  .content-home {
    padding-top: 10%;
  }
}