/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  display: flex;
  justify-content: space-between;
  background-color: var(--branco);
  color: var(--cor-titulos);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-weight: bold;
  font-size: 18px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#accordionMenu {
  padding: 5px 5%;
}

.accordion:after {
  content: '+';
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
}

.accordion.active:after {
  content: '-';
}

#accordionMenu:after {
  content: '';
}

#accordionMenu.active:after {
  content: '';
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: var(--cor-principal);
  color: var(--branco);
}

#accordionMenu.active, #accordionMenu.accordion:hover {
  background-color: transparent;
  color: var(--branco);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 20px;
  background-color: white;
  color: var(--cor-font);
  display: none;
  overflow: hidden;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}