body {
  margin: 0;
  background-color: #000;
  color: white;
  font-family: sans-serif;
}

.how-boton-works-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem;
  background: transparent;
}

.how-boton-circle-wrapper {
  position: relative;
  width: 90vw;
  max-width: 650px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-container {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
}

.how-boton-step {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
}

.how-boton-step img {
  width: 5rem;
  height: 5rem;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.7));
}

.how-boton-step p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d8b4fe;
  width: 6rem;
  margin: 0 auto;
}

.how-boton-center {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .how-boton-step img {
    width: 10rem;
    height: 10rem;
    margin-bottom: 0.25rem;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.7));
  }
  .how-boton-center {
    position: absolute;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 640px) {
  .how-boton-step p {
    font-size: 1.125rem;
  }
}

.how-boton-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

@keyframes rotateClockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateCounterClockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.step-content {
  display: inline-block;
}
