/* Default */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #252d31;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.04em;
}

body {
  background: #fafafa;
}

header,
section {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 120px;
}

/* Header */
header h1 {
  font-weight: normal;
  font-size: min(40px, 5vw);
  max-width: 750px;
  text-align: center;
}

header .logos {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin-bottom: 48px;
}

header .logos img {
  max-width: 50%;
  padding: 48px;
}

/* Section */
section span {
  display: inline-block;
}

section.dark {
  background: rgba(240, 242, 244, 0.51);
}

/* Step grids */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 150px;
  text-align: center;
  font-size: min(24px, 4vw);
}

.step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.step h4 {
  margin-bottom: 10px;
}

.step p {
  font-size: 20px;
  color: #706967;
}

.step img {
  max-width: 300px;
}

.step .stores {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
  margin-right: -24px;
}

.step .stores a {
  height: 50px;
  margin-right: 24px;
  margin-top: 10px;
}

.step .stores img {
  height: 100%;
}

/* Usage section */
.usage .title {
  max-width: 40rem;
  text-align: center;
  margin-bottom: 150px;
}

.usage h2 {
  margin-bottom: 24px;
  font-size: min(50px, 8vw);
  font-weight: 600;
}

.usage h3 {
  font-size: min(40px, 4vw);
  font-weight: normal;
}

.download {
  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-weight: 600;
  font-size: 18px;

  height: 56px;
  width: 100%;

  border-radius: 12px;
  background-image: linear-gradient(to right, #ff925a, #ff2527);
  text-decoration: none;
}

.terminos {
  margin-top: 56px;
  font-size: 14px;
  font-weight: 600;
  color: #a6a6a6;
}

@media only screen and (max-width: 799px) {
  header .logos img {
    width: auto;
    padding: 48px 24px;
  }

  .step img {
    max-width: 100% !important;
  }

  .usage h2 {
    font-size: min(20px, 8vw);
    font-weight: 600;
  }

  .usage h3 {
    font-size: min(16px, 4vw);
    font-weight: normal;
  }
}

@media only screen and (max-width: 1279px) {
  body {
    background: white;
  }

  header,
  section {
    padding: 50px 32px;
  }

  .steps {
    grid-template-columns: unset;
    grid-template-rows: 1fr;
    grid-gap: 150px;
  }

  .step {
    max-width: 95%;
    margin: auto;
  }

  .step img {
    max-width: min(100%, 800px);
  }

  .usage .title {
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 1279px) {
  .stores a {
    pointer-events: none;
  }

  .step p {
    margin-bottom: 32px;
  }

  .download {
    display: none;
  }
}
