@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  max-width: 100% !important;
}

body {
  width: 100%;
  background-image: url(imagens/background.png);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden !important;
  max-width: 100% !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#menu {
  width: 100%;
  height: 100px;
  margin: auto;
}

.logo {
  position: relative;
  top: 15px;
  width: 250px;
}

.menuItens {
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.menuItens a {
  min-width: 80px;
  text-align: center;
  height: 60px;
  color: #595959;
  text-decoration: none;
  font-size: 1.5rem;
  float: left;
  margin-left: 10px;
  line-height: 60px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.menuItens a:hover {
  color: #000;
}



.menuItens a:hover::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: #ffcc00;
  margin-left: calc(50% - 10px);
  -webkit-clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
  position: relative;
  bottom: 20px;
  -webkit-animation: setinha 1s 1;
  animation: setinha 1s 1;
}

@-webkit-keyframes setinha {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes setinha {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sociais {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.social {
  float: left;
  margin: 5px;
}

.hamburguer {
  display: none;
  width: 20px;
  height: 20px;
  background-image: url(imagens/menuMobile.png);
  background-size: 100% 100%;
  z-index: 99999999999999999999999999;
}

#venhaConhecer {
  width: 100%;
  height: 600px;
}

#text {
  width: 500px;
  font-size: 3.2rem;
  font-weight: 700;
  margin: 5%;
  margin-bottom: 2%;
}

#text b {
  font-weight: 900;
}

#comoPossoJogar {
  margin-left: 5%;
  font-size: 2rem;
}

#comoPossoJogar::after {
  content: '';
  display: block;
  width: 10rem;
  margin-left: 110px;
  height: 7px;
  background: #ffcc00;
}

#botao {
  width: 470px;
  margin-left: 5%;
  font-size: 3rem;
  height: 5rem;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 5px #ffde5c;
  box-shadow: 0px 0px 5px #ffde5c;
  font-weight: 900;
  background-image: linear-gradient(20deg, #f7d345, #f7d345, #ffcc00);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  margin-top: 10px;
  cursor: pointer;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  margin-top: 30px;
}

#botao:hover {
  background-image: linear-gradient(20deg, #f1d255, #f1d255, #ffd11a);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

#infosVenha {
  width: 60%;
  float: left;
}

#imagemBGVenha {
  width: 550px;
  height: 1000px;
  background: url(imagens/PERSONAGEM1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  float: left;
}

/* VIP COMEÇA AQUI */
#vip {
  width: 100%;
  margin-top: 198px;
  margin-bottom: 198px;
  height: 695px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-image: url(imagens/DINHEIRO.png);
  background-position: 40% 40%;
  background-repeat: no-repeat;
}

#imagemVip {
  width: 500px;
  height: 103%;
  background: red;
  background: url(imagens/PERSONAGEM2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  bottom: 12px;
}

#titleVip {
  width: 300px;
  height: 80%;
  margin-top: 560px;
  position: absolute;
}

#titleFaq {
  width: 300px;
  height: 80%;
  position: absolute;
}

#textTitle {
  width: 70%;
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
}

#textTitle::after {
  content: '';
  display: block;
  width: 105%;
  height: 0.5rem;
  background: #ffcc00;
}

#infoVIP {
  width: 600px;
  height: 400px;
  text-align: center;
  margin-left: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: url(imagens/vipefeito.png);
  background-position: 40% 40%;
  background-repeat: no-repeat;
  font-size: 2rem;
}

#textoVIP {
  width: 100%;
  font-size: 2rem;
}


a #botaoVIP {
  width: 300px;
  height: 80px;
  color: #fff;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #2EBCFA;
  -webkit-box-shadow: 0px 5px 5px #5dc4f09c;
  box-shadow: 0px 5px 5px #5dc4f09c;
  cursor: pointer;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

#botaoVIP:hover {
  background-image: linear-gradient(20deg, #2EBCFA, #2EBCFA, #00b3ff);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* AQUI COMEÇA A PARTE DO COMO JOGAR */
#comoJogar {
  width: 100%;
  height: 700px;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#comoJogarTitle {
  width: 18rem;
  float: right;
  font-size: 2rem;
  font-weight: 900;
  position: relative;
  top: 60px;
  text-align: left;
}

#comoJogarTitle:after {
  content: '';
  display: block;
  width: 25rem;
  height: 7px;
  background: #ffcc00;
}

.passos {
  width: 70%;
  height: 170px;
  background: #fafafa;
  background-size: 100px 100%;
  background-repeat: no-repeat;
  background-position: left;
  margin-top: 10px;
  position: relative;
  top: 230px;
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.112);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.112);
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.passos::after {
  content: '';
  display: block;
  position: relative;
  width: 90%;
  top: 15px;
  border-radius: 0 0px 15px 15px;
  height: 10px;
  -webkit-box-shadow: 0px 2px 1px #C7C7C7;
  box-shadow: 0px 2px 1px #C7C7C7;
  background: #DDDDDD;
}

.icon {
  width: 120px;
  height: 120px;
  background-size: 100%;
  margin: 10px;
  float: left;
}

.textPassos {
  width: 80%;
  height: 120px;
  font-size: 1.5rem;
  margin: auto;
}

.icon, .textPassos {
  position: relative;
  top: 15px;
}

#faq {
  width: 100%;
  min-height: 800px;
  float: left;
  position: relative;
  top: 270px;
}

.faqs {
  width: 70%;
  min-height: 65px;
  position: relative;
  top: 40px;
  margin: auto;
  margin-top: 20px;
  cursor: pointer;
}

.iconFaq {
  width: 45px;
  height: 45px;
  background: url(imagens/iconpergunta.png);
  background-position: center;
  background-repeat: no-repeat;
  float: left;
  margin: 10px;
}

.topoFaq {
  width: 100%;
  height: 65px;
  font-weight: 700;
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px #0000005a;
  box-shadow: 0px 0px 20px #0000005a;
}

.titleFaq {
  width: calc(100% - 100px);
  height: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.baixoFaq {
  width: 100%;
  min-height: 200px;
  background: rgba(153, 153, 153, 0.434);
  font-size: 1.5rem;
  padding-left: 2.5%;
  padding-right: 2.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  display: none;
}

footer {
  width: 100%;
  height: 80px;
  background: #1a1a1a;
  float: left;
  margin-top: 225px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#topoFooter {
  width: 100%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

#baixoFooter {
  width: 100%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

#baixoFooter a {
  margin-left: 10px;
  color: #fff;
}

@media (max-width: 1080px) {
  body {
    font-size: 93.75%;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 87.5%;
  }
}


#espacamento{
    display: none;
}

@media screen and (min-width: 200px) and (max-width: 1158px) {
    #espacamento{
        display: block;
        float: left;
        width: 100%;
        height: 100px;
    }
  .social {
    display: none;
  }
  .menuItens {
    visibility: hidden;
  }
  .hamburguer {
    display: block;
    position: relative;
    padding: 10px;
    bottom: 15px;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
  }
  .hamburguer:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  .logo {
    width: 120px;
  }
  .backgroundMobile {
    width: 103% !important;
    height: 100vh;
    position: fixed;
    z-index: 99999999999999 !important;
    top: 0;
    left: 0;
    background: #1a1a1a;
    margin: 0;
  }
  .backgroundMobile a {
    color: #fff;
  }
  .backgroundMobile a:hover {
    color: #ffcc00;
  }
  #paraMobile {
    width: 100%;
    height: calc(100vh - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #text {
    min-width: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
  }
  #botaoVIP {
    font-size: 1.6rem;
  }
  #venhaConhecer {
    width: 90%;
    height: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #infosVenha {
    width: 100%;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #text b {
    font-weight: 900;
  }
  #fundoComoPosso {
    width: 100%;
    height: 30px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #comoPossoJogar {
    font-size: 1rem;
    position: relative;
    right: 17px;
    z-index: -1;
  }
  #comoPossoJogar::after {
    content: '';
    display: block;
    width: 5rem;
    margin-left: 58px;
    height: 3px;
    background: #ffcc00;
  }
  #botao {
    width: 200px;
    margin-left: 5%;
    font-size: 1rem;
    height: 2.5rem;
    border-radius: 2px;
    -webkit-box-shadow: 0px 0px 5px #ffde5c;
    box-shadow: 0px 0px 5px #ffde5c;
    font-weight: 900;
    background-image: linear-gradient(20deg, #f7d345, #f7d345, #ffcc00);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    margin: auto;
    margin-top: 30px;
  }
  #imagemBGVenha, #imagemVip {
    display: none;
  }
  #vip {
    zoom: 0.5;
    width: 100%;
    margin-bottom: 198px;
    height: 305px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #titleVip {
    margin-top: 0px;
    height: 50%;
    left: 0;
  }
  #comoJogarTitle{
    display: none;
  }
  #comoJogar {
    zoom: 0.5;
    position: relative;
    display: none;
    
  }
  #infoVIP {
    width: 80%;
    margin: auto;
  }
  .passos {
    width: 90%;
    font-size: 1rem;
    position: relative;
    top: 30px;
    height: 280px;
    margin-top: 30px;
    -webkit-box-shadow: 0 0  30px #00000030;
    box-shadow: 0 0  30px #00000030;
  }
  .textPassos {
    position: relative;
    left: 50px;
    top: 0;
  }
  .icon {
    display: none;
  }
  #comoJogarTitle {
    font-size: 1rem;
    position: relative;
    left: 175px;
  }
  #comoJogarTitle:after {
    content: '';
    display: block;
    position: relative;
    right: -30px;
    width: 8rem;
    height: 2px;
    background: #ffcc00;
  }
  .passos::after {
    display: none;
  }
  #faq {
    zoom: 0.8;
    
  }
  .faqs {
    width: 70%;
    min-height: 65px;
    position: relative;
    top: 130px;
    margin: auto;
    margin-top: 20px;
    cursor: pointer;
  }
  .iconFaq {
    width: 45px;
    height: 45px;
    background: url(imagens/iconpergunta.png);
    background-position: center;
    background-repeat: no-repeat;
    float: left;
    margin: 10px;
  }
  .topoFaq {
    width: 100%;
    height: 65px;
    font-weight: 700;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px #0000005a;
    box-shadow: 0px 0px 20px #0000005a;
  }
  .titleFaq {
    width: calc(100% - 100px);
    height: 100%;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.95rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .baixoFaq {
    width: 100%;
    min-height: 200px;
    background: rgba(153, 153, 153, 0.434);
    font-size: 1.4rem;
    padding-left: 2.5%;
    padding-right: 2.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    display: none;
  }
  footer {
    font-size: 0.7rem;
    margin-top: 270px;
  }
  
  #faq {
    zoom: 0.7;
    margin-top: 170px;
  }
}

@media screen and (min-width: 1270px) and (max-width: 1400px) {
  body {
    background-size: 112%;
  }
  .logo {
    width: 200px;
  }
  #imagemBGVenha {
    width: 400px;
    height: 900px;
    background: url(imagens/PERSONAGEM1.png);
    background-size: 100%;
    background-repeat: no-repeat;
    float: left;
  }
  #imagemVip {
    display: none;
  }
  #vip {
    zoom: 0.8;
    width: 100%;
    margin-top: 108px;
    margin-bottom: 198px;
    height: 505px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #titleVip {
    margin-top: 300px;
    left: 0;
  }
}

/* O DE BAIXO É O MENORZINHO QUE O COMO JOGAR BUGA O LINEHEIGHT */
@media screen and (min-width: 280px) and (max-width: 350px) {
  .menuItens a:nth-child(3) {
    line-height: 30px;
  }
}

a{
    text-decoration: none !important;
}
/*# sourceMappingURL=style.css.map */