section.voce-vai-aprender {
  display: flex;
  flex-direction: column;
  align-items: center;

  height: 880px;
  width: 100%;

  padding: 40px 0;

  background-image: url('../assets/background-aprender.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section.voce-vai-aprender div.container {
  margin-top: 32px;
}

section.voce-vai-aprender div.container h2 {
  margin-bottom: 48px;

  font-size: 32px;
  text-align: center;
}

section.voce-vai-aprender div.container ol {
  list-style: none;
  counter-reset: custom-counter;
}

section.voce-vai-aprender div.container ol li {
  counter-increment: custom-counter;
}

li.aprender-item-list {
  font-size: 20px;
  font-weight: 700;
}

li.aprender-item-list + li.aprender-item-list {
  margin-top: 18px;
}

li.aprender-item-list::before {
  content: counter(custom-counter) ". ";
  color: var(--highlight);
  font-weight: 700;
}

@media (max-width: 768px) {
  section.voce-vai-aprender {
    height: fit-content;

    padding: 32px 20px;
  }
  
  section.voce-vai-aprender div.container h2 {
    font-size: 14px;
  }

  li.aprender-item-list {
    font-size: 14px;
  }
}