 /* Estilos adicionais */
 .hero-bg {
    background-image: url('img/homebg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Opacidade */
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  /* Animação para o botão hamburger */
  #hamburger {
    transition: transform 0.3s ease;
  }
  #hamburger.rotate-90 {
    transform: rotate(90deg);
  }