.custom_toggler .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: all 0.3s ease;
}

.custom_toggler {
  background-color: var(--principal-azul);
  border: none;
  padding: 15px;
}

.custom_toggler .navbar-toggler-icon::before,
.custom_toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.custom_toggler .navbar-toggler-icon::before {
  top: -7px;
}

.custom_toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.custom_toggler .navbar-toggler-icon::after {
  top: 7px;
}

.custom_toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.custom_toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

.custom_toggler:focus {
  box-shadow: none;
}

.btn_cor_principal {
  background-color: var(--principal-laranja);
  color: white;
}

.btn_cor_principal:hover {
  background-color: var(--principal-laranja);
  color: white;
}

.wpp_button {
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 999999;
  filter: drop-shadow(rgb(153, 153, 153) 2px 4px 6px);
}

.wpp_button_svg {
  width: 50px;
  height: 50px;
}

.accordion-button {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--principal-azul);
    color: #fff;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
