#comprassuscripciones{
    margin-top: 15px;
}

.wrapper {
  display: flex;
  justify-content: center;
}

.segmented {
  display: inline-flex;
  background: #e9e9e9;
  padding: 4px;
  border-radius: 30px;
  gap: 4px;
}

.segmented button {
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  background: transparent;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}

.segmented button.active {
  background: #3b3f45;
  color: white;
}

.segmented button:not(.active) {
  background: white;
  border: 1px solid #cfcfcf;
}

.btn-ver {
  padding: 6px 22px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(180deg, #7fb2d9 0%, #6aa0c9 100%);
  color: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
}

.btn-ver:hover {
  background: linear-gradient(180deg, #8bbbe0 0%, #74a9d2 100%);
}