@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");

* {
  font-family: "Source Code Pro", monospace;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
}

main .container {
  padding: 40px 20px;
  border-radius: 0 0 4px 4px;
  position: relative;
  margin-top: 60px;
  background: #e9e2e9;
}
.container {
  width: 820px;
  margin: 0 auto;
}

h1 {
  color: #0a0211;
  font-size: 24px;
  text-align: center;
}

h2 {
  background-color: #4e3051;
  font-size: 18px;
  position: relative;
  padding: 20px 15px;
  margin-bottom: 60px;
}

h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 35px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #4e3051;
}

.etapas {
  margin-top: 40px;
}

a,
button {
  display: grid;
  grid-template-columns: auto 1fr;
  text-align: left;
  height: 42px;
  align-items: center;
  border: none;
  gap: 10px;
  font-size: 20px;
  cursor: pointer;
  background: #fff;
  color: #0a0211;
  transition: 0.5s;
}
button span,
a span {
  background: #6d328f;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 5px 20px;
  transition: 0.5s;
  text-transform: uppercase;
}

a:hover span,
button:hover span {
  background: #0a0211;
}
a:hover,
button:hover {
  color: #0a0211;
}
.alternativas {
  display: grid;
  gap: 20px;
}

footer {
  margin-top: 90px;
  bottom: 0;
  width: 100%;
  padding: 30px 10px;
  background: #0a0211 !important;
  text-align: center;
}
footer span {
  text-align: center;
  display: flex;
  justify-content: center !important;
  margin-top: 10px;
  gap: 20px;
}
.progre {
  width: 100%;
  height: 3px;
  background: #c1a4c8;
  position: absolute;
  top: 0;
  left: 0;
}
.percent {
  height: 100%;
  background: #9469a5;
  transition: 0.4s;
}
/* controles */
.etapa {
  display: none;
}
.menu_footer a {
  background: #0a0211 !important;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  text-align: center !important;
  display: block;
}
.menu_footer a:hover {
  text-decoration: underline;
}
@media (max-width: 960px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 769px) {
  h1 {
    font-size: 18px;
    line-height: 24px;
  }
  .container {
    margin-top: 30px;
  }
  main .container {
    margin-top: 30px !important;
    padding: 20px 10px;
  }
  a,
  button {
    width: 100%;
  }
}
@media (max-width: 426px) {
  h2 {
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    margin-bottom: 40px;
  }
  .alternativas {
    grid-template-columns: 1fr;
    place-items: center;
  }

  footer * {
    font-size: 14px;
    line-height: 20px;
  }
}
