.accordion-btn {
  display: flex;
  justify-content: space-between;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  color: #28282a;
  text-decoration: none;
  font-weight: 600;
}

.accordion-btn:hover {
  color: #28282a;
  text-decoration: none;
}

.card-header {
}

.card-body {
  padding: 20px 32px;
  background: #e9e9e9;
}

.plus-less {
  content: "";
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  border: 1px solid var(--color-bg-orange);
  border-radius: 50px;
}

.vert {
  position: absolute;
  width: 2px;
  height: 10px;
  background: var(--color-bg-orange);
  transition: 0.3s ease;
}

.horizon {
  position: absolute;
  width: 10px;
  height: 2px;
  background: var(--color-bg-orange);
}

.rotated {
  transform: rotate(90deg); /* Aplica rotação na linha vertical */
}
