@charset "utf-8";

/* Botão hamburguer */
.open-button {
  border: none;
  background: transparent;
  padding: 12px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Barras do hambúrguer */
.open-button span {
  display: block;
  width: 40px;       /* comprimento das barras */
  height: 2px;       /* espessura fina */
  margin: 5px 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

/* Estado ativo (menu aberto) */
.open-button.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.open-button.active span:nth-child(2) {
  opacity: 0;
}

.open-button.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hover nas barras */
.open-button:hover span:nth-child(1) {
  transform: scaleX(1.2) translateY(1px);
}

.open-button:hover span:nth-child(2) {
  transform: scaleX(1.2);
}

.open-button:hover span:nth-child(3) {
  transform: scaleX(1.2) translateY(-1px);
}

/* Responsividade relacionada ao menu */
@media screen and (max-width: 768px) {
  .menu-force {
    color: #CCCCCC !important;
  }
  .menu-force-1 {
    padding-left: 3% !important;
  }
}

@media screen and (max-width: 720px) {
  .menu-force {
    color: #CCCCCC !important;
  }
  .menu-force-1 {
    padding-left: 3% !important;
  }
}

@media screen and (max-width: 480px) {
  .menu-force {
    color: #CCCCCC !important;
  }
  .menu-force-1 {
    padding-left: 3% !important;
  }
}
@media (max-width: 767.98px) {
  .menu-mobile-font {
    font-size: 2.2rem !important;
    line-height: 2 !important;
    white-space: nowrap;
  }
}