.tab {
  overflow: hidden;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 960px) {
  .tab {
    display: block;
  }
}

.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  border-radius: 15px;
}

.tab button:hover {
  background-color: #3D94DB;
  color: white;
}

.tab button.active {
  background-color: #1D72BD;
  color: white;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.tabcontent.show {
  display: block;
}

#valor-aplicacao::before {
  content: "R$ ";
}

.range {
  width: 60%;
}

.space {
  padding: 20px 0;
}

.button-container {
  display: flex;
  justify-content: space-between;
}