
/* Linhas do hambúrguer */
.hamburger-line {
  display: block;
  width: 2rem;          /* equivalente a w-8 */
  height: 3px;          /* equivalente a h-[3px] */
  background-color: #fff; /* text-gray-700 */
  border-radius: 0.25rem;    /* rounded */
  transition: all 0.3s ease; /* transition-all duration-300 */
}

/* Animações quando o botão está aberto */
.open .top {
  transform: translateY(9px) rotate(45deg);
}

.open .middle {
  opacity: 0;
}

.open .bottom {
  transform: translateY(-9px) rotate(-45deg);
}

#bg-img-casos{
  background-image: url('../assets/bachgroundcasos.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  padding: 32px;
}