section {
  padding: 48px 16px;
  max-width: 1450px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  section {
    padding: 60px 15px;
  }
}

p {
  margin-bottom: 0;
  font-family: 'Latam-Sans-Regular';
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  font-family: 'Latam-Sans-Bold';
  font-weight: 700;
}

.btn {
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0px;
  transition: all 0.2s ease-in-out;
  border: none;
  outline: none;
  vertical-align: middle;

  img {
    object-fit: contain;
    object-position: center;
    width: 14px;
    height: 14px;
  }
}

.btn-primary {
  background-color: #2C31C9;
  color: #fff;
}

.btn-primary:disabled {
  background-color: #9F9F9F52;
  color: #9F9F9FA3;
}

.btn-primary:hover {
  background-color: #0A0E80;
  color: #fff;
}

.btn-primary:focus {
  background-color: #0A0E80;
  color: #fff;
}

.btn-ghost {
  background-color: transparent;
  color: #2C31C9;
}

.btn-ghost:hover {
  background-color: #FFFFFF10;
  color: #0A0E80;
}

.btn-ghost:focus {
  background-color: #FFFFFF10;
  color: #0A0E80;
}

.badge {
  background-color: #E7E8FD;
  padding: 5px 8px;
  border-radius: 16px;

  p {
    font-family: 'Latam-Sans-Bold';
    font-size: 14px;
    line-height: 14px;
    color: #070B64;
    font-weight: 700;
    vertical-align: middle;
    text-align: center;
  }
}