@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,700,800&display=swap');

body::-webkit-scrollbar{
  width: 10px;
}
body::-webkit-scrollbar-track{
  background: #1b1f29;
}
body::-webkit-scrollbar-thumb{
  background: #23eb4b;
  border-radius: 5px;
  
}

body{
  /* font-family: 'Ubuntu', sans-serif; */
  font-family: 'Montserrat', sans-serif;
  background-color: #080e1e;
  background-image: url('../img/star2.png');
  background-attachment: fixed;
  color: white;
}
.bgp{
  background: rgba(0, 0, 0, 0.2);
}

.bg-gradient{
  background-image: linear-gradient(to top, #0a1227, #0a1125, #091022, #090f20, #080e1e);
}
.bg-gotas{
  background-image: url(../img/bg-gotas.png);
  height: 165px;
}
.bg-gotas-green{
  background-image: url(../img/bg-gotas-green.png);
  height: 165px;
}
.bg-gotas-green2{
  background-image: url(../img/bg-gotas-green2.png);
  height: 165px;
}
.bg-gotas-white{
  background-image: url(../img/bg-gotas-branca.png);
  height: 165px;
}


.rounded-10{
  border-radius: 10px;
}
.rounded-20{
  border-radius: 20px;
}
.myrounded-top{
  border-radius: 10px 10px 0px 0px;
}
.myrounded-base{
  border-radius: 0px 0px 10px 10px;
}


/* Espaçamento Linha */
.theight{
  line-height: 0.9;
}
.theight-normal{
  line-height: normal;
}


/* Size Text */
.text-12{
  font-size: 12px;
}
.text-18{
  font-size: 18px;
}
.text-13{
  font-size: 13px;
}
.text-20{
  font-size: 20px;
}
.text-24{
  font-size: 24px;
}
.text-30{
  font-size: 30px;
}
.text-btn{
  font-size: 30px;
}
.text-48{
  font-size: 48px;
}
.text-60{
  font-size: 60px;
}


/* Text Color*/
.text-green{
  color: #23eb4b;
}
.text-blue{
  color: #080e1e;
}

.botao{
  background: #e70a3e;
  max-width: 650px;
  transition:all 0.3s ;
  animation: boot 1s infinite;
}
@keyframes boot {
  0%   {transform: scale(0.95);}
  50%  {transform: scale(1);}
  100% {transform: scale(0.95);}
  
  }
.botao-green{
  border: 2px solid #23eb4b;
  max-width: 650px;
  transition:all 0.3s ;
  animation: boot 1s infinite;
}




.bg-blue{
  background: #080e1e;
}
.bg-cinza{
  background: #e6e6e6;
}
.bg-green{
  background-color: #23eb4b;
}




/* Peso Fonte */
.tw400{
  font-weight: 400;
}
.tw500{
  font-weight: 500;
}
.tw700{
  font-weight: 700;
}
.tw800{
  font-weight: 800;
}


/* Espaçamento Letras */
.ts1n{
  letter-spacing: -1px;
}
.ts5n{
  letter-spacing: -5px;
}



.barra-top{
  background: linear-gradient(270deg, #23eb4b 0%, #0b225f 100%);
  height: 10px;
  width: 100%;
}

.my-shadow{
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.1);
}

input[type=email]{
  width: 100%;
  border: solid 3px #e6e6e6;
  border-radius: 5px;
  transition: 0.5s;
  box-sizing: border-box;
  outline: none;
}
input[type=email]:focus {
  /* border: 3px solid #19992b; */
  box-shadow: 0px 0px 3px 1px #19992b;
  
}
.my-btn{
  width: 100%;
  background: linear-gradient(90deg, #f8136e 0%, #ff8f0f 100%);
  border:none;
  color: white;
  font-size: 18px;
  font-weight: 700;
  animation: boot 1s infinite;
  
}



@keyframes boot {
0%   {transform: scale(0.98);}
50%  {transform: scale(1);}
100% {transform: scale(0.98);}

}





.bg-daniel{
  background-image: url(../img/daniel.png);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0 5px 5px 0;
}



.mw50{
  max-width: 50%;
}
.box-carrossel{
  height: 306px;
  width: auto;
  position: relative;
  background-image: url("../img/bg-images.png");
  background-repeat: repeat-x;
  animation: mymove 50s infinite linear;
  background-size: cover;
 
  /* border-radius: 5px; */
  /* border: solid 10px white; */

}

@keyframes mymove {
  0% {
    background-position: -1920px center;
}
100% {
    background-position: 0 center;
}
}

.daniel{
  position: absolute;
  top: 245px;
  left: 50%;
  margin-left:-50px
}

[data-anime]{
  opacity: 0;
  transition: .3s;
}

[data-anime="left"]{
  transform: translate3d(-50px,0,0);
}
[data-anime="right"]{
  transform: translate3d(50px,0,0);
}
[data-anime="bottom"]{
  transform: translate3d(0,50px,0);
}


.anime-start {
	opacity: 1;
	transform: translate3d(0,0,0);
}


@media screen and (max-width: 500px) {

  .text-60{
      font-size: 40px;
  }
  .text-30{
    font-size: 27px;
}
.text-18{
  font-size: 15px;
}
  .text-24{
      font-size: 18px;
  }
  .text-btn{
      font-size: 20px;
  }
}