@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/*Geral*/
body{
    height: 100vh;
    line-height: 1;
    background: #173b0d;
    font-family: 'Poppins', sans-serif;
}

table,h1,h2,h3,h4,h5,h6,p,select{
  color: #444;
  font: 16px rubik,Arial,Tahoma,Verdana,sans-serif;
  text-decoration: none
}

html,body,div,h1,h2,h3,h4,h5,h6,p,ul{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline
}

html {
  box-sizing: border-box
}

*,*::before,*::after {
  box-sizing: inherit
}

html {
  background: #173b0d;
}




/*Animações carregar página*/

@keyframes aparecer{
  0%{
    opacity: 0;
  }

  100%{
    opacity: 1;
  }
}

@keyframes desaparecer {
  0%{
    opacity: 0.5;
    transform: scale(0.950);
  }

  100%{
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fade-up{
  0%{
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  100%{
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}

@keyframes fade-down{
  0%{
    opacity: 0.3;
    transform: translateY(-15px) scale(0.920);
  }

  100%{
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}





/* Crypto Caindo*/
section{
  width: 100%;
  height: 100vh;
}

section .set img{
  height: 25px;
  width: 25px;
}

section .set{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 4;
  max-width: 66%;
}

section .set div{
  position: absolute;
  display: block;
}

section .set div:nth-child(1){
  left: 20%;
  animation: animate 15s linear infinite;
  animation-delay: -7s;
}

section .set div:nth-child(2){
  left: 50%;
  animation: animate 20s linear infinite;
  animation-delay: -5s;
}

section .set div:nth-child(3){
  left: 70%;
  animation: animate 20s linear infinite;
  animation-delay: 0s;
}

section .set div:nth-child(4){
  left: 0%;
  animation: animate 15s linear infinite;
  animation-delay: -5s;
}

section .set div:nth-child(5){
  left: 85%;
  animation: animate 18s linear infinite;
  animation-delay: -10s;
}

section .set div:nth-child(6){
  left: 0%;
  animation: animate 12s linear infinite;
} 

section .set div:nth-child(7){
  left: 15%;
  animation: animate 14s linear infinite;
}

section .set div:nth-child(8){
  left: 60%;
  animation: animate 15s linear infinite;
}


@keyframes animate{
  0%{
    opacity: 0;
    top: -10%;
    transform: translateX(20px) rotate(0deg);
  }

  10%{
    opacity: 1;
  }

  20%{
    transform: translateX(-20px) rotate(45deg);
  }

  40%{
    transform: translateX(-20px) rotate(90deg);
  }

  60%{
    transform: translateX(20px) rotate(180deg);
  }

  80%{
    transform: translateX(-20px) rotate(180deg);
  }

  99%{
    top: 110%;
    transform: translateX(-20px) rotate(225deg);
  }

  100%{
    opacity: 0;
  }
}

.set2{
  transform: scale(1.9) rotateY(180deg);
  filter: blur(0.2px);
  width: 100%;
  z-index: 2;
}

.set3{
  transform: scale(2) rotateX(180deg);
  filter: blur(0.6px);
  width: 100%;
  z-index: 1;
}





/*Header*/
.navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 67px;
    padding: 0.5rem 7%;
    background-color: #0b1a06;
    border-bottom: 1px solid #ffb7423d;
    z-index: 999;
    position: fixed;
    width: 100%;
}

.navbar h2{
    font-weight: 600;
    font-size: 32px;
    animation: fade-down 0.5s;
}

.navbar h2 a{
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

.navbar h2:hover a{
    color: #ffb742;
}




/* Escolher Criptomoeda */
.menu, .content{
  width: 100%;
}

.menu{
  text-align: center;
}

select{
  width: 100%;
  max-width: 500px;
  padding: 15px;
  font-size: 16px;
  font-weight: 650;
  font-family: 'Poppins', sans-serif;
  border: none;
  border-radius: 8px;
  border: 2px solid #3f51b5;
  box-shadow: 0 15px 15px #00000081;
  appearance: none;
  background: #e8eaf6 url(../images/arrow.png) no-repeat;
  background-position: 95% 55%;
  background-size: 22px;
  z-index: 31;
}

.bloco {
  margin: 0 auto;
  width: 1250px;
  position: relative;
  z-index: 31;
}





/* Títulos */
.titulo-item {
  display: block;
  margin: 0 0 80px;
  color: #ffb742;
  z-index: 3;
  font-size: 30px;
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 2px;
  text-align: center;
  padding: 15 15 15px;
  position: relative;
  animation: aparecer 0.4s;
}

.titulo-item:after {
  content: '';
  animation: float 3s ease-in-out infinite;
  background: #ff9d00;
  width: 200px;
  height: 3px;
  position: absolute;
  bottom: -40%;
  left: 50%;
  margin-left: -100px
}

@keyframes float{
  0%, 100%{
      transform: translateX(309px);
      width: 100px;
  }
  50%{
      transform: translateX(-211px);
      width: 100px;
  }
  
}

.titulo-item2 {
  display: block;
  margin: 20px 10px 10px;
  color: #ffffff;
  letter-spacing: 0.5px;
  font-size: 15px;
  font-weight: 600;
  line-height: 110%;
  padding: 20px 0 10px;
  position: relative
}



#menutipo {
  text-align: center;
  font-size: 0;
  font-weight: 700;
  display: flex;
  margin: 0 0 45px;
  
}

#menutipo li {
  display: inline-table;
  width: 55%;
  cursor: pointer;
  flex-direction: row;
  margin: 0 6px 15px;
  flex-grow: 1;
  z-index: 31;
}

#menutipo li a {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  font-weight: 500;
  padding: 10px;
  border: 2px #dfdfdf solid;
  border-radius: 10px;
  text-decoration: none;
  
}

#menutipo .ativo a:hover{
  border: 2px #ff9d00 solid;
}

#menutipo .ativo a {
  border-color: #bb7300;
  background: linear-gradient(135deg, #ffe15bb3, rgba(255, 228, 110, 0.6));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000;
  box-shadow: 5px 5px 15px #0b1a06;
  letter-spacing: 0.5px;
  transition: border .2s linear;
  animation: aparecer 0.4s;
}

#menutipo .ativo1 a:hover{
  border: 2px #ffb742 solid;
}

#menutipo .ativo1 a {
  border: 2px #9b9b9b solid;
  color: #Fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  box-shadow: 5px 5px 15px #0b1a06;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0.5px;
  transition: border .2s linear;
  animation: aparecer 0.4s;
}




/* Tabela HASHRATE E EFICIÊNCIA */
#tabprods {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 0;
  animation: desaparecer 1s;
}

#tabprods .container {
  background: #ebebeb;
  width: calc(50% - 20px);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.801);
  z-index: 30;
}

#tabprods .titulo {
  color: #911e16;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 31px
}


#tabprods .titulo2 {
  color: #a37d2a;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 31px
}

#tabprods .tabprod {
  width: 100%
}

#tabprods .nome {
  width: 1px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  text-align: right;
  padding: 0 10px 0 0
}

#tabprods .valor {
  position: relative
}

#tabprods .barra {
  height: 13px;
  position: relative;
  background: #911e16;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
}


#tabprodefic .barra {
  background: #fdb107;
  white-space: nowrap;
}

#tabprods .barra p {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 0;
  line-height: 13px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  margin: 0;
  padding: 0 3px
}

#tabprods .alt {
  position: absolute;
  left: 1px;
  top: 25%;
  line-height: 13px;
  color: #000;
  font-size: 11px;
  font-weight: 500;
  margin: 0;
  padding: 0 0 0 4px
}




/* Copyright */
#rodape {
  background: #091304ee;
  clear: both;
  padding: 1rem;
  margin-top: 3rem;
  position: relative;
}

#rodape .bloco {
  display: table;
}

#rodape .bloco>div {
  display: table-cell;
  vertical-align: middle;
}


#rodape #copyright {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.6px;
  margin: auto;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 0;
  font-weight: 400
}




/* Responsivo */
/* 1305px */
@media screen and (max-width: 1305px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 65%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 1%;
    width: 100%;
  }


  /* Tabelas */
  #tabprods {

    margin: 75px 20px 0;
  }

  #tabprods .container {
    width: calc(197% - 20px);
  }
  
  .container{
    margin: 0 10px 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -35%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(308px);
        width: 100px;
    }
    50%{
        transform: translateX(-213px);
        width: 100px;
    }
  }


  /* Universal */
  .bloco{
    width: 98%;
  }

}



/* 1000px */
@media screen and (max-width: 1000px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 65%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 1%;
    width: 100%;
  }


  /* Tabelas */
  #tabprods {

    margin: 75px 20px 0;
  }

  #tabprods .container {
    width: calc(197% - 20px);
  }
  
  .container{
    margin: 0 10px 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -35%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(308px);
        width: 100px;
    }
    50%{
        transform: translateX(-213px);
        width: 100px;
    }
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}


@media screen and (max-width: 850px) {
  
  /* Títulos */
  @keyframes float{
    0%, 100%{
        transform: translateX(302px);
        width: 100px;
    }
    50%{
        transform: translateX(-209px);
        width: 100px;
    }
  }
  
}


/* 750px */
@media screen and (max-width: 750px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 64%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 1.5%;
    width: 62%;
  }


  /* Tabelas */
  #tabprods {
   
    margin: 75px 20px 0;
  }

  #tabprods .container {
    width: calc(197% - 20px);
  }
  
  .container{
    margin: 0 10px 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -32%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(308px);
        width: 100px;
    }
    50%{
        transform: translateX(-215px);
        width: 100px;
    }
  }

  /* Universal */
  .bloco{
    width: 100%;
  }

}


/* 710px */
@media screen and (max-width: 710px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 63%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 1.5%;
    width: 90%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 57px 0;
  }

  #tabprods .container {
    width: calc(250% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -35%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(305px);
        width: 100px;
    }
    50%{
        transform: translateX(-211px);
        width: 100px;
    }
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}



/* 680px */
@media screen and (max-width: 680px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 63%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 2%;
    width: 90%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 34px 0;
  }

  #tabprods .container {
    width: calc(255% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -10%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(305px);
        width: 100px;
    }
    50%{
        transform: translateX(-208px);
        width: 100px;
    }
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}



/* 652px */
@media screen and (max-width: 652px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 63%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 2%;
    width: 90%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 35px 0;
  }

  #tabprods .container {
    width: calc(248% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -10%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(305px);
        width: 100px;
    }
    50%{
        transform: translateX(-205px);
        width: 100px;
    }
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}



/* 631px */
@media screen and (max-width: 631px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 63%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 2%;
    width: 90%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 34px 0;
  }

  #tabprods .container {
    width: calc(237% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -10%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(260px);
        width: 100px;
    }
    50%{
        transform: translateX(-162px);
        width: 100px;
    }
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}



/* 605px */
@media screen and (max-width: 605px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 63%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 2%;
    width: 90%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 34px 0;
  }

  #tabprods .container {
    width: calc(225% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -10%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(260px);
        width: 100px;
    }
    50%{
        transform: translateX(-162px);
        width: 100px;
    }
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}



/* 577px */
@media screen and (max-width: 577px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 63%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 2%;
    width: 90%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 35px 0;
  }

  #tabprods .container {
    width: calc(215% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -10%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(260px);
        width: 100px;
    }
    50%{
        transform: translateX(-162px);
        width: 100px;
    }
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}



/* 552px */
@media screen and (max-width: 552px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 63%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 2%;
    width: 90%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 35.5px 0;
  }

  #tabprods .container {
    width: calc(205% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -10%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(260px);
        width: 100px;
    }
    50%{
        transform: translateX(-162px);
        width: 100px;
    }
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}


/* 535px */
@media screen and (max-width: 535px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 63%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 2%;
    width: 90%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 30px 0;
  }

  #tabprods .container {
    width: calc(200% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -10%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(260px);
        width: 100px;
    }
    50%{
        transform: translateX(-162px);
        width: 100px;
    }
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}


/* 527px */
@media screen and (max-width: 527px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 63%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 2%;
    width: 90%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 30px 0;
  }

  #tabprods .container {
    width: calc(200% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: -10%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(260px);
        width: 100px;
    }
    50%{
        transform: translateX(-162px);
        width: 100px;
    }
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}


/* 516px */
@media screen and (max-width: 516px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 62%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 2%;
    width: 95%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 23px 0;
  }

  #tabprods .container {
    width: calc(197% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: 0%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(155px);
        width: 100px;
    }
    50%{
        transform: translateX(-60px);
        width: 100px;
    }
  }

  .titulo-item2 {
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 2px;
    font-weight: 500
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}


/* 500px */
@media screen and (max-width: 500px) {
  
  /* Crypto Caindo */
  section .set img{
    height: 12px;
    width: 12px;
  }

  section .set{
    width: 100%;
    height: 100%;
    max-width: 62%;
  }


  /* Escolher a Criptomoeda */
  select{
    margin-left: 3%;
    width: 95%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 20px 0;
  }

  #tabprods .container {
    width: calc(197% - 20px);
  }
  
  .container{
    margin: 0 0 50px;
  }

  #tabprods .tabprod {
    width: 100%;
  }


  /* Titulos */
  .titulo-item {
    margin: 0 0 60px;
  }

  .titulo-item:after {
    bottom: 0%;
  }

  @keyframes float{
    0%, 100%{
        transform: translateX(155px);
        width: 100px;
    }
    50%{
        transform: translateX(-60px);
        width: 100px;
    }
  }

  .titulo-item2 {
    font-size: 13px;
    line-height: 23px;
    letter-spacing: 2px;
    font-weight: 500
  }


  /* Escolhas */
  #menutipo .ativo1 a{
    line-height: 25px;
  }


  /* Universal */
  .bloco{
    width: 100%;
  }

}


/* 428px */
@media screen and (max-width: 428px) {

  /* Escolher a Criptomoeda */
  select{
    margin-left: 2.5%;
    width: 95%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 26px 0;
  }

  #tabprods .container {
    width: calc(165% - 20px);
  }

  section .set div:nth-child(3){
    display: none;
    visibility: hidden;
  } 

  section .set div:nth-child(4){
    display: none;
    visibility: hidden;
  } 
  
  section .set div:nth-child(5){
    display: none;
    visibility: hidden;
  }

  section .set div:nth-child(6){
    display: none;
    visibility: hidden;
  } 
  
  section .set div:nth-child(7){
    display: none;
    visibility: hidden;
  }
  
  section .set div:nth-child(8){
    display: none;
    visibility: hidden;
  }
  
}


/* 414px */
@media screen and (max-width: 414px) {

  /* Escolher a Criptomoeda */
  select{
    margin-left: 2.5%;
    width: 95%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 20px 0;
  }

  #tabprods .container {
    width: calc(165% - 20px);
  }
  

}



/* 393px */
@media screen and (max-width: 393px) {

  /* Escolher a Criptomoeda */
  select{
    margin-left: 2.5%;
    width: 95%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 20px 0;
  }

  #tabprods .container {
    width: calc(160% - 20px);
  }
  

}


/* 390px */
@media screen and (max-width: 390px) {

  /* Escolher a Criptomoeda */
  select{
    margin-left: 2.5%;
    width: 95%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 18px 0;
  }

  #tabprods .container {
    width: calc(160% - 20px);
  }

}




/* 375px */
@media screen and (max-width: 375px) {

  /* Escolher a Criptomoeda */
  select{
    margin-left: 2.5%;
    width: 95%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 22px 0;
  }

  #tabprods .container {
    width: calc(158% - 20px);
  }
  

}


/* 360px */
@media screen and (max-width: 360px) {

  /* Escolher a Criptomoeda */
  select{
    margin-left: 2.5%;
    width: 95%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 24px 0;
  }

  #tabprods .container {
    width: calc(150% - 20px);
  }


  /* Escolhas */
  #menutipo li {
    margin: 0 5px 15px;
    padding: 2px;
  }

  /* Universal */
  .bloco{
    width: 100%;
  }
  

}


/* 320px */
@media screen and (max-width: 320px) {

  /* Escolher a Criptomoeda */
  select{
    margin-left: 2.5%;
    width: 95%;
  }


  /* Tabelas */
  #tabprods {
    display: grid;
    margin: 75px 14px 0;
  }

  #tabprods .container {
    width: calc(150% - 20px);
  }
  

}