body {
  margin: 0;
  width: 100vw;
  background: #6493aa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.title {
  font-size: 5vw;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin: 0px 0 10px;
  color: #293758;
  position: relative;
  top: 0%;
  text-align: center;
  align-items: center;
}
#main{
  display: flex;
  align-items: center;
}
.menu {
  align-items: center;
  text-align: center;
}

.orbMenu{
    align-items: center;
    text-align: center;   
    padding: 8rem;
}
.button-go {
  width: 100%;
  padding: 25px 1px;
  margin: 25px 0px;
font-size: 1vw;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  color: #d0e7ff;
  background: #2c74bf;
  cursor: pointer;
  box-shadow: 0px 10px 40px -12px #00264d;
}

img{
  border-radius: 50%;
  width: 30vw;
}
#orbital{
  height: 50%;
  position: relative;
  perspective: 800px;

}
#orbital span{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  border-radius: 50%;
  border-left: 5px #fff solid;
  border-top: 10px transparent solid;
  border-right: 5px #fff solid;
  backface-visibility: hidden; /* Garante que o span não seja visível na face de trás */

}
#orbital span:nth-last-of-type(1){
  animation: ani-1 1s linear infinite;
}
#orbital span:nth-last-of-type(2){
  animation: ani-2 1s linear infinite;
}
#orbital span:nth-last-of-type(3){
  animation: ani-3 1s linear infinite;
}
@keyframes ani-1{
  from{
    transform: rotateZ(360deg)
    rotateX(70deg)
    rotateZ(0deg);
  }to{
    transform: rotateZ(360deg)
    rotateX(70deg)
    rotateZ(360deg);
  }
}

@media only screen and (max-width: 950px) {
.orbMenu{
  padding: 1rem;
}
#main{
  flex-direction: column;
}.button-go {
  width: 20rem;
  font-size: 1rem;
  padding: 35px 20px;

}
}
@media only screen and (max-width: 780px) {
  .title{
    font-size: 2rem;
  }
}

@media only screen and (max-width: 500px) {
  .button-go {
    font-size: 3vw;
  
  }
}
