/* PAGE: TERMS (como la captura) */

.tm-terms {
  min-height: 100vh;
  background: #ededed;
}

/* escenario con degradé a la derecha */
.tm-terms__stage {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(90deg,
      rgba(237, 237, 237, 1) 0%,
      rgba(237, 237, 237, 1) 68%,
      rgba(255, 75, 75, 1) 86%,
      rgba(255, 41, 41, 1) 100%);
  display: flex;
  justify-content: center;
  padding: 80px 16px 60px;
}

/* “hoja” central */
.tm-terms__paper {
  /* width: min(620px, 100%); */
  /* background: #ffffff; */
  /* box-shadow: 0 10px 30px rgba(0,0,0,.08); */
  border-radius: 2px;
  padding: 24px 36px 8%;
  padding-right: 25%;
}

/* header */
.tm-terms__head {
  margin-bottom: 12px;
}

.tm-terms__title {
  font-family: "SerialB", system-ui, sans-serif;
  font-weight: 100;
  letter-spacing: -0.02em;
  color: #0f0f0f;
  font-size: 70px;
  line-height: 1.05;
  margin: 0;
  margin-bottom: 1.75rem;
  width: 50%;
  letter-spacing: normal;
}

.tm-terms__meta {
  margin-top: 6px;
  font-family: "Authentic", system-ui, sans-serif;
  font-size: 10px;
  color: rgba(0, 0, 0, .55);
}

/* cuerpo */
.tm-terms__body {
  font-family: "MD-IO";
  color: rgba(0, 0, 0, .78);
  font-size: 16px;
  line-height: 1.4;
}

.tm-terms__body p {
  margin: 0 0 20px;
  letter-spacing: 1px;
  line-height: 1.6;
}

.tm-terms__body a {
  color: rgba(255, 0, 0, 0.85);
  font-style: italic;
}

.tm-terms__section {
  margin-top: 12px;
}

.tm-terms h2 {
  font-family: "Asfalt";
  font-size: 10rem;
  font-weight: 100;
}

.tm-terms__body h3 {
  font-family: "SerialB", system-ui, sans-serif;
  font-weight: 400;
  font-size: 28px;
  margin: 10px 0 6px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .75);
}

/* responsive */
@media (max-width: 480px) {
  .tm-terms__stage {
    padding-top: 70px;
  }

  .tm-terms__paper {
    padding: 18px 4px 22px;
  }

  .tm-terms__title {
    font-size: 26px;
    width: 100%;
  }

  .tm-terms__body h3 {
    font-size: 18px;
    font-weight: 100;
  }

  .tm-terms h2 {
    font-size: 4rem;
  }
}

/* .tm-terms__body h2 {
  font-family: "SerialB", system-ui, sans-serif;
  font-weight: 900;
  font-size: 11px;
  margin: 12px 0 6px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .85);
} */