header {
    display: block;
    align-items: center;
    justify-content: center; /* Centraliza os itens na tela */
    max-width: 1280px;
    padding: 20px;
    height: 80px;
    
  }
.navbar-dark .navbar-nav .nav-link {
    color: #000000;
    padding: 12px;
    transition: 0.6s all; /* Cor dos links quando não estão em estado de hover */
}
.navbar{
  transition: 0.7s all;
  background-color: #fff;
  box-shadow: 0px 7px rgba(247, 14, 255, 0.212);
  border-bottom: 7px solid #67418862;
}
.navbar.scrolled {
  transition: 0.7s ease all;
  background-color: #fff;
  border-radius: 5px;
  color: black;
  box-shadow: 0px 5px rgba(0, 0, 0, 0.137);
  border-bottom: none;
}
.navbar-dark .navbar-nav .nav-link:hover {
  transition: 0.6s ease all;
    color: #E177FF;
}
  header img{
    width: 20px;
    height: 10px;
  }
  .navbar-dark .navbar-nav .nav-link.current {
    color: #000;
  }
  .nav-link {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 15px;
    transition: 0.4s ease all;
  }
  
  .nav-link:hover {
    color: #000000;
    transition: 0.4s ease all;
  }
  
  .btn-home {
    background-color: #674188;
    border: 1px solid #00000079;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.btn-home:hover {
    border: 1px solid #9d01c9;
    color: white;
    transition: 0.5s all;
}
  .content {
    transition: margin-left 0.3s;
    padding: 20px;
  }
  
  body {
    overflow-x: hidden;
  }
  .navbar-brand {
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .nav-link {
      font-size: 12px;
    }
    .logo {
      width: 70px;
    }
    .navbar-toggler-icon {
      filter: invert(100%);
      font-size: 25px;
  }
    header {
      height: auto;
      padding-bottom: 20px;
    }
  }