
@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');
@import url('https://fonts.cdnfonts.com/css/bruno-ace-2');
@import url('https://fonts.cdnfonts.com/css/playstation');


/*------------------------------------------------------------------

  BODY

 -------------------------------------------------------------------*/
 html{
  scroll-behavior: smooth;
 }
 /*
 body{
  cursor: url('../images/cursor.png'), auto;
  background-color: #111;
  background-image:
  repeating-linear-gradient(
      to right, transparent 0 100px,
      #384b3c22 100px 101px
  ),
  repeating-linear-gradient(
      to bottom, transparent 0 100px,
      #304e2f22 100px 101px
  );
}


body::before{
  position: absolute;
  width: min(1400px, 90vw);
  top: 10%;
  left: 50%;
  height: 90%;
  transform: translateX(-50%);
  content: '';
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
}
*/


/*------------------------------------------------------------------

  Texto de boas vindas

 -------------------------------------------------------------------*/
 .titulo-centralizado2 {
  font-family: 'playstation', sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  justify-content: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1.8);
  margin-bottom: 20px;
  animation: animacao 4s ease-in-out;
}
 .titulo-centralizado {
  font-family: 'playstation', sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  justify-content: center;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 1.8);
  margin-bottom: 20px;
  animation: animacao2 6s ease-in-out;
}

@keyframes animacao {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes animacao2 {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.titulo-centralizado2:hover {
  transform: scale(1.1);
  color: #ffbb00;
}

.titulo-centralizado:hover {
  transform: scale(1.1);
  color: #ffbb00;
}

.totalcontas{
  font-family: 'playstation', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #ffbb00;
}

/*------------------------------------------------------------------

  Share Buttons

 -------------------------------------------------------------------*/
 .nk-share-buttons {
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #0000004b;
  border-radius: 15px;
  z-index: 999;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.9); /* Adicione essa linha para adicionar sombra */
}

.nk-share-buttons ul {
  padding: 0;
  margin: 0;
  list-style: none;
  pointer-events: auto;
}

.nk-share-buttons ul > li {
  position: relative;
}

.nk-share-buttons ul > li::after {
  content: "";
  display: table;
  width: 100%;
  clear: both;
}

.nk-share-buttons .nk-share-icon,
.nk-share-buttons .nk-share-name {
  display: inline-block;
}

.nk-share-buttons .nk-share-icon {
  position: relative;
  float: right;
  width: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  z-index: 1;
}

.nk-share-buttons .nk-share-icon:hover, .nk-share-buttons .nk-share-icon.hover {
  opacity: 1;
}

.nk-share-buttons .nk-share-icon:hover ~ .nk-share-name, .nk-share-buttons .nk-share-icon.hover ~ .nk-share-name {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.nk-share-buttons .nk-share-name {
  font-family: 'playstation', sans-serif;                                                                                                                 
  font-size: 1rem;
  font-weight: 600;
  padding: 0 1rem;
  padding-right: 20px;
  text-decoration: none;
  position: absolute;
  top: 0;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: .2s opacity, .2s visibility, .2s transform;
  -o-transition: .2s opacity, .2s visibility, .2s transform;
  transition: .2s opacity, .2s visibility, .2s transform;
  -webkit-transform: translateX(-50px);
      -ms-transform: translateX(-50px);
          transform: translateX(-50px);
  z-index: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
  border-radius: 5px;
  color: #fff; /* adicione essa linha para definir a cor da fonte */
}

.nk-share-buttons.nk-share-buttons-left {
  right: auto;
  left: 0;
}

.nk-share-buttons.nk-share-buttons-left .nk-share-icon {
  float: left;
  margin-right: 0px;
  margin-left: 0;
  margin-top: 0;
  
}

.nk-share-buttons.nk-share-buttons-left .nk-share-name {
  justify-content: center;
  align-self: center;
  top: 10;
  right: auto;
  left: 60px;
}

.nk-navbar1-left ~ .nk-share-buttons.nk-share-buttons-left {
  left: 300px;
}


@media (max-width: 991px) {
  .nk-navbar1-left ~ .nk-share-buttons.nk-share-buttons-left {
      display: none;
      left: 0;
  }
  .nk-share-buttons {
    display: none;
}
}

@media (max-width: 575px) {
  .nk-share-buttons .nk-share-icon {
      display: none;
  }
  .nk-share-buttons .nk-share-name {
      display: none;
  }
  .nk-share-buttons {
    display: none;
}
}

@media screen and (max-height: 500px) {
  .nk-share-buttons {
      display: none;
  }
}

body.nk-body-overflow .nk-share-buttons {
  opacity: 0;
}  

.icone-home {
	  margin-left: 20px;
    width: 50px;
    height: 50px;
}

.icone-infos {
	  margin-left: 20px;
    width: 50px;
    height: 50px;
}

.icone-votar {
	  margin-left: 20px;
    width: 50px;
    height: 50px;
}

.icone-face {
	  margin-left: 20px;
    width: 50px;
    height: 50px;
}
.icone-youtube {
  margin-left: 20px;
  width: 50px;
  height: 50px;
}

.icone-doar {
	  margin-left: 20px;
    width: 50px;
    height: 50px;
}

.icone-discord {
	margin-left: 20px;
    width: 50px;
    height: 50px;
}
.icone-instagram {
	margin-left: 20px;
    width: 50px;
    height: 50px;
}

.icone-home:hover {
  transform: scale(1.5); /* aumenta o tamanho do ícone em 20% */
  transition: transform 0.3s ease-in-out; /* adiciona uma transição suave */
  cursor: url('../images/cursorinicio.png'), pointer;
}

.icone-infos:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease-in-out;
  cursor: url('../images/cursorlogin.png'), pointer;
}

.icone-votar:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease-in-out;
  cursor: url('../images/cursorpointer.png'), pointer;
  
}

.icone-face:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease-in-out;
  cursor: url('../images/cursorpointer.png'), pointer;
}

.icone-doar:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease-in-out;
  cursor: url('../images/cursordoar.png'), pointer;
}

.icone-discord:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease-in-out;
  cursor: url('../images/cursorpointer.png'), pointer;
}
.icone-instagram:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease-in-out;
  cursor: url('../images/cursorpointer.png'), pointer;
}
.icone-youtube:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease-in-out;
  cursor: url('../images/cursorpointer.png'), pointer;
}
        
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*------------------------------------------------------------------

  NAV BAR MAIN

 -------------------------------------------------------------------*/
.navbar1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  top: 0;
  background: #121212;
  z-index: 999;
  transition: height 0.3s ease-in-out;
}

.navbar1-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 2rem;
  max-width: 1600px;
}
.navbar1-logo {
  font-family: 'playstation', sans-serif;                                                                                                                 
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0 2rem;
  text-decoration: none;
  cursor: url('../images/cursorpointer.png'), pointer;
}

.navbar1-container .navbar1-menu {
  display: flex;
  text-align: center;
  background: transparent;
  gap: 1.5rem;
  list-style: none;
}
.navbar1-container .navbar1-menu li a {
  font-family: 'playstation', sans-serif;                              
  text-decoration: none;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.7s ease;
  white-space: nowrap;
}
.navbar1-container .navbar1-menu li a:hover {
  color: #ffffff;
  background: #333;
  backdrop-filter: blur(10px);
}

.navbar1-toggle {
  display: none;
  background: transparent;
  justify-content: space-between;
  padding: 10px;
  border: none;
  cursor: url('../images/cursorpointer.png'), pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.btn-online{
  font-size: 10px;
  color: #00ff88;
  font-weight: 600;
}

.btn.cursor:hover{
  cursor: url('../images/cursorpointer.png'), pointer;
}
.btn.cursorlogin:hover{
  cursor: url('../images/cursorentrar.png'), pointer;
}

.btn::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
}
/* glow */
.btn::before {
  content: "";
  background: linear-gradient(
    45deg,
    #FF0000, #FF7300, #FFFB00, #48FF00,
    #00FFD5, #002BFF, #FF00C8, #FF0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 4px);
  height:  calc(100% + 4px);
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
  opacity: 0;
}

@keyframes glowing {
  0% {background-position: 0 0;}
  50% {background-position: 400% 0;}
  100% {background-position: 0 0;}
}

/* hover */
.btn:hover::before {
  opacity: 1;
}

.btn:active:after {
  background: transparent;
}

.btn:active {
  color: #000;
  font-weight: bold;
}

.navbar1.scrolled {
  height: 60px !important;
  transition: height 0.3s ease-in-out;
}


/*------------------------------------------------------------------

 navbar1 RESPONSIVO

 -------------------------------------------------------------------*/
@media (max-width: 880px) {
  .btn-download {
    display: none;
  }
  .navbar1{
    backdrop-filter: none;
  }
  .navbar1-container .navbar1-menu{
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem !important;
    position: absolute;
    height: 100vh;
    width: 250px;
    top: 0;
    right: 0;
    padding: 5rem 1.5rem;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
  }
  .navbar1-container .navbar1-menu.active {
    display: flex;
  }
  .navbar1-toggle{
    display: block;
    z-index: 999;
  }

  .navbar1-toggle.active .bar:nth-child(2){
    opacity: 0;
  }
  .navbar1-toggle.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .navbar1-toggle.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* NAV BAR RESPONSIVO */
@media (max-width: 480px) {
  .btn-download {
    display: none;
  }
  .navbar1-container{
    padding: 0 1rem;
  }
  .navbar1-logo {
    margin-right: 150px;
    font-size: 1.7rem;
  }

  .navbar1-container .navbar1-menu li a {
    font-size: 1.2rem;
    padding: 3px 15px;
  }

}


/*------------------------------------------------------------------

  BANNER OFICIAL

 -------------------------------------------------------------------*/
.banner{
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.banner .slider{
    position: absolute;
    width: 200px;
    height: 250px;
    top: 10%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 40s linear infinite;
    z-index: 2;
}
@keyframes autoRun{
    from{
        transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
    }to{
        transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
    }
}
/* Pausar a animação quando o mouse passar sobre o slider */
.banner .slider:hover {
  animation-play-state: paused;
}
.banner .slider .item{
    position: absolute;
    inset: 0 0 0 0;
    transform: 
        rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(550px);
      transition: transform 0.5s ease-in-out; /* Adicionando a transição suave */
}
.banner .slider .item:hover {
  transform: 
      rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
      translateZ(400px) scale(1.2); /* Amplia o item ao passar o mouse */
      cursor: url('../images/cursorpointer.png'), pointer; /* Altera o cursor para o modelo de clique */
}
.banner .slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .content{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 100vw);
    height: max-content;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.banner .content h1{
    font-family: 'ICA Rubrik';
    font-size: 12em;
    line-height: 1em;
    color: rgb(255, 187, 0);
    position: relative;
}
.banner .content h1::after{
    position: absolute;
    inset: 0 0 0 0;
    content: attr(data-content);
    z-index: 2;
    -webkit-text-stroke: 2px #d2d2d2;
    color: transparent;
}
.banner .content .author{
    font-family: Poppins;
    color: #FFF;
    text-align: right;
    max-width: 200px;
    text-shadow: 0 5px 10px #000000;
}
.banner .content h2{
    font-size: 3em;
}
.banner .content .model{
    background-image: url('../images/model.png');
    width: 100%;
    height: 75vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 1;
}
@media screen and (max-width: 1023px) {
    .banner .slider{
        width: 110px;
        height: 200px;
        left: calc(50% - 80px);
    }
    .banner .slider .item{
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(300px);
      transition: transform 0.5s ease-in-out; /* Adicionando a transição suave */
    }
    .banner .content h1{
        text-align: center;
        width: 100%;
        text-shadow: 0 10px 20px #000;
        font-size: 7em;
    }
    .banner .content .author{
        color: #ffffff;
        padding: 20px;
        text-shadow: 0 20px 20px #000;
        z-index: 2;
        max-width: unset;
        width: 100%;
        text-align: center;
        padding: 0 30px;
    }
}
@media screen and (max-width: 767px) {
    .banner .slider{
        width: 100px;
        height: 150px;
        left: calc(50% - 50px);
    }
    .banner .slider .item{
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(180px);
      transition: transform 0.5s ease-in-out; /* Adicionando a transição suave */
    }
    .banner .content h1{
        font-size: 5em;
    }
}

.banner1 {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.banner1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/valentin-petrov-m-mal-01.jpg');
  background-size: cover;
  background-position: center;
  animation: bgZoomIn 4s ease-in-out 1 forwards;
  z-index: -1;
  pointer-events: none;
}
.banner1::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/after.png');
  background-size: cover;
  background-position: top;
  transform: scale(2);
  animation: bgZoomOut 4s ease-in-out 1 forwards;
  background-color: rgba(0, 0, 0, 0.3); /* ajuste a opacidade aqui */
  z-index: -1;
  pointer-events: none;
}
@keyframes bgZoomIn {
  from {
    transform: scale(1.2);
  } to {
    transform: scale(1);
  }
}
@keyframes bgZoomOut {
  from {
    transform: scale(1);
  } to {
    transform: scale(2);
  }
}

svg path {
  fill: transparent;
  stroke: #fff;
  stroke-width: 1.0;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: textAnimation 4s ease-in-out 1 forwards;
}
@keyframes textAnimation {
  0% {
    stroke-dashoffset: 50;
  }
  80% {
    fill: transparent;
  }
  100% {
    fill: #fff;
    stroke-dashoffset: 0;
  }
}

/*------------------------------------------------------------------

  BANNER

 -------------------------------------------------------------------*/
 .banner3{
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image:
  repeating-linear-gradient(
        to right, transparent 0 150px, #0001 150px 151px
    ),
    repeating-linear-gradient(
        to bottom, transparent 0 150px, #0001 150px 151px
    ),
    linear-gradient(to right, #000000cc, #705577cc),
    url(../images/background.jpg);
}
.banner3 img{
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -999;
}

/*------------------------------------------------------------------

  BANNER RATES

 -------------------------------------------------------------------*/
 .rates{
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
 }
.rates img{
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -999;
}

/*------------------------------------------------------------------

  BUTTTON

 -------------------------------------------------------------------*/

@keyframes pulse {
  10% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.btn-download {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* button */
.btn-tt.cursorinicio2:hover{
  cursor: url('../images/cursorlogin.png'), pointer;
}
.btn-tt.cursorinicio:hover{
  cursor: url('../images/cursorinicio.png'), pointer;
}
.btn-tt.cursorlogin:hover{
  cursor: url('../images/cursorentrar.png'), pointer;
}
.btn-tt {
  margin: 15px;
  padding: 10px;
  border: none;
  outline: none;
  font-family: 'playstation', sans-serif;   
  font-size: 1.6rem;
  color: #FFF;
  position: relative;
  z-index: 0;
  width: 230px;
  height: 60px;
  border-radius: 12px;
  animation: pulse 5s infinite;
  cursor: url('../images/cursorpointer.png'), pointer;
}
.btn-tt::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 230px;
  height: 60px;
  background-color: #222222;
  left: 0;
  top: 0;
  border-radius: 10px;

}

/* glow */
.btn-tt::before {
  content: "";
  background: linear-gradient(
    45deg,
    #FF0000, #FF7300, #FFFB00, #48FF00,
    #00FFD5, #002BFF, #FF00C8, #FF0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: 230px;
  height: 60px;
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
  opacity: 0;
}

@keyframes glowing {
  0% {background-position: 0 0;}
  50% {background-position: 400% 0;}
  100% {background-position: 0 0;}
}

/* hover */
.btn-tt:hover::before {
  opacity: 1;
}

.btn-tt:active:after {
  background: transparent;
}

.btn-tt:active {
  color: #000;
  font-weight: bold;
}



/*------------------------------------------------------------------

  FOOTER

 -------------------------------------------------------------------*/
 .footer {
  background-color: #121212;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-copyright {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-developed {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links li {
  margin-right: 20px;
  margin-bottom: 10px;
}

.footer-links li:last-child {
  margin-right: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ccc;
}

.link-designer {
  font-size: 20px;
  color: #d1a000;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 20px;
  }
  .footer-links ul {
    flex-direction: column;
    align-items: center;
  }
  .footer-links li {
    margin-right: 0;
  }
}

.slider {
  display: flex;
  gap: 12px;
}

.item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.item img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

/* ?? Nome escondido inicialmente */
.item {
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.item::before {
  content: attr(style);
  display: none;
}

.item span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6px 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Hover = exibe o nome */
.item:hover span {
  opacity: 1;
}
