.div-menu-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin: 0 10px;
  height: 100%;
}

.button-menu {
  font-family: Roboto, Arial, sans-serif;
  background-color: transparent;
  border: none;
  border-right: 2px solid var(--color-action);
  padding-right: 15px;
  color: var(--color-text-dark);
  font-size: 18px;
  cursor: pointer;
  height: 50px;
  transition: color 0.15s;
}
.button-menu:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--color-text-muted);
}
.button-menu.active {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--color-action);
}
