* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
  }

  50% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
    -moz-transform: rotate(3deg);
  }

  100% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
  }
}

@keyframes spinToOne {
  0% {
    transform: translate(-50%, -50%) rotate(-80deg);
  }

  70% {
    transform: translate(-50%, -50%) rotate(1063deg);
  }

  80% {
    transform: translate(-50%, -50%) rotate(1054deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(1060deg);
  }
}

@keyframes spinToTwo {
  0% {
    transform: rotate(1060deg);
  }

  70% {
    transform: rotate(1875deg);
  }

  80% {
    transform: rotate(1865deg);
  }

  100% {
    transform: rotate(1870deg);
  }
}

@keyframes slidein {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(-100%);
  }
}

body {
  background-color: #42377b;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.menu {
  background-color: #342c63;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 7vh;
}

#img-logo {
  height: 50%;
  width: auto;
}

h1 {
  color: white;
  font-family: "Montserrat", sans-serif;
  padding-inline: 20px;
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2rem;
}

.roulette {
  position: relative;
  width: 100vw;
  height: 45vh;
  margin-top: 220px;
}

.roleta1,
.roleta2 {
  position: absolute;
  left: 50%;
  max-width: 550px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.spinner {
  animation: spinner 1.5s ease-in-out infinite;
  width: 100%;
}

#roleta3 {
  max-width: 150px;
  z-index: 10;
  padding-left: 16px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button-roulette {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -55px;
}

#button-cta {
  z-index: 9999999;
  width: 30%;
  height: 45px;
  background-color: #96ff00;
  border: none;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: black;
  box-shadow: 0px 0px 15px 1px #96ff00;
  animation: pulse 1s linear infinite;
}

.wheel__spinner_animated-1 {
  animation: 4s spinToOne ease-in-out 1;
  transform: translate(-50%, -50%) rotate(-20deg);
}

.wheel__spinner_animated-2 {
  animation: 4.5s spinToTwo ease-in-out 1 forwards;
}

.loading-bar {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  height: 15px;
  width: 80vw;
  align-items: center;
  margin: 0 auto;
  border-radius: 100px;
}

.load-ball {
  height: 50px;
  width: 50px;
  background-color: #fff;
  border-radius: 250px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-bar-texts {
  display: flex;
  justify-content: space-between;
  height: 15px;
  width: 80vw;
  align-items: center;
  margin: 0 auto;
  margin-top: 40px;
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.check {
  width: 35%;
}

#people-img {
  border-radius: 50px;
}

.privacy-terms {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #42377b;
  padding-block: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  height: 10vh;
  margin-block: 60px;
}

.people {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  padding-inline: 10px;
  padding-block: 12px;
  color: white;
  position: fixed;
  top: 100%;
  transform: translateY(-100%);
  width: 100vw;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.75);
  border-top: #342c63 1px solid;
  z-index: 999999999999999999999999999999999999999999999;
  transition: opacity 250ms;
}

.slide-animation {
  animation: slidein 1200ms;
}

.people img {
  width: 40px;
}

.tutorial-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#couponText {
  font-family: "Montserrat", sans-serif;
  background-color: rgba(0, 0, 0, 0.45);
  color: white;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 48px;
  padding: 8px;
}

#couponText span {
  display: block;
  color: #96ff00;
}

.coupon-list {
  font-weight: 700;
}

._tutorial-container p {
  margin: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  color: white;
}

._tutorial-container p strong {
  text-transform: uppercase;
  color: #96ff00;
}

#page-content {
  min-height: 100vh;
}

#page-content-tutorial .hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero img {
  object-position: 20% 0;
  object-fit: cover;
  width: 312px;
  height: 340px;
}

.hero .button-container {
  background-color: #342c63;
  border: 3px solid #96ff00;
  border-radius: 8px;
  width: 80%;
  color: white;
  text-align: center;
  padding: 18px 12px;
  box-shadow: 0 2px 2px 0 rgba(150, 255, 0, 0.5);
}

.button-container a {
  text-decoration: none;
  color: #f8f8f8;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}

.button-container a span {
  color: #96ff00;
  font-weight: 700;
}

._tutorial-list {
  text-align: center;
  text-transform: uppercase;
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check {
  width: 28px;
  height: 28px;
}

.list-wrapper {
  width: 100%;
  display: flex;
  gap: 12px;
}

.list-wrapper li {
  font-size: 18px;
  text-align: left;
}

.couponText {
  color: #96ff00;
  font-weight: 700;
}

.text-button {
  margin-top: 32px;
}

footer {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer span {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

footer .first-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .first-row img:first-child {
  width: 72px !important;
  height: auto;
}

footer .first-row img:last-child {
  width: 42px !important;
  height: auto;
}

footer > img {
  height: auto;
  width: 152px;
}

@media (min-width: 500px) {
  .text-button {
    margin-top: 32px;
  }
}

@media (max-width: 800px) {
  .menu {
    width: 100vw;
    padding-block: 5px;
  }

  .privacy-terms {
    padding-block: 20px;
    text-align: center;
    padding-inline: 10px;
  }

  #roleta1,
  #roleta2 {
    max-width: 95%;
    top: 50%;
    left: 50%;
    z-index: -1;
  }

  #roleta2 {
    width: 100%;
    z-index: 1;
  }

  #roleta3 {
    max-width: 30%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .roulette {
    margin-top: -28px;
    overflow: hidden;
  }

  .button-roulette {
    margin-top: -28px;
  }

  #button-cta {
    width: 70%;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

#second-button {
  background: none;
  color: #dadada;
  border: 0;
  border-radius: 6px;
  text-align: center;

  z-index: 9999999;
  padding: 0.5rem 1rem;
  height: 45px;
  background-color: #96ff00;
  border: none;
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: black;
  box-shadow: 0px 0px 15px 1px #96ff00;
  animation: pulse 1s linear infinite;
}

/* 3 steps */

@keyframes loading {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.steps {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 12px;
}

.step {
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.step p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0;
  font-family: sans-serif;
}

.step-loaded {
  background-color: #96ff00;
  height: 100%;
  width: 0;
  /* border-radius: 50%; */
}

.bar {
  width: 35px;
  height: 8px;
  background-color: #fff;
  margin-block: auto;
  margin-inline: -1px;
}

.bar-loaded {
  height: 100%;
  width: 0;
  background-color: #96ff00;
}

.loaded {
  animation: loading 0.7s linear;
  width: 100%;
}

.steps-h span {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  width: 60px;
  text-align: center;
}

.display-off {
  display: none;
}

.hide-me {
  display: none;
}

.page-content {
  display: none;
}
