* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: #fff;
}
body {
  background-color: #000;
}
html, body {
    overflow-x: hidden;
    margin: 0;
  }
header {
  position: fixed;
  height: 70px;
  margin: 30px auto;
  width: 99%;
  display: flex;
  border-radius: 10px;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  background-color: #121212f1;
  z-index: 999;
  border: 2px solid blueviolet;
}
header h1 {
  cursor: pointer;
}
header ul {
  display: flex;
  width: 95%;
  gap: 30px;
}
header ul li {
  position: relative;
  list-style: none;
  width: 70px;
  height: 70px;
  font-size: 20px;
  transition: 0.2s ease-in-out;
  z-index: 1;
}
header ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
header ul li a .icon {
  position: relative;
  display: block;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease-in-out;
}
header ul li:hover a .icon {
  transform: translateY(-25px);
  background-color: #8a2be2;
  border: 6px solid #000;
}

header ul li a .text {
  position: absolute;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translateY(5px);
}
header ul li:hover a .text {
  opacity: 1;
  transform: translateY(25px);
}
a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  color: blueviolet;
}
footer {
  margin-top: 100px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
  text-align: center;
  background-color: #121212;
  bottom: 0;
}
footer .redes {
  align-items: center;
  gap: 20px;
  display: flex;
  transition: 0.2s ease-in-out;
}
footer .redes a:hover {
  transform: scale(1.2);
}
footer .redes i:hover {
  color: blueviolet;
}
footer li {
  list-style: none;
  font-size: 20px;
}
.btn-zap {
  font-size: 3rem;
  color: green;
  position: fixed;
  top: 3.3%;
  right: 2%;
  transition: 0.2s ease-in-out;
  z-index: 1000;
}
.nav-footer ul {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.btn-zap:hover {
  transform: scale(1.2);
  color: blueviolet;
}
::-webkit-scrollbar-thumb {
  width: 10px;
  background-color: #121212;
}
::-webkit-scrollbar {
  width: 10px;
}

.redes {
  text-align: center;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  font-size: 2rem;
}
.redes a {
  padding: 5px;
}
.menu,
.menu-x {
  font-size: 1.7rem;
  padding: 0 6px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.2s ease-in-out;
  background-color: #121212;
  display: none;
}
.menu-x {
  z-index: 100;
  display: none;
  position: fixed;
  top: 45px;
  right: 15px;
}
header .logo {
  width: 50px;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  background-color: #121212;
  margin: 10px;
  transition: 0.3s ease-in-out;
}
header .logo:hover {
  transform: scale(1.3);
}
@media (max-width: 1200px) {
  .btn-zap {
    top: 90%;
  }
  footer {
    display: inline-block;
    align-items: center;
    text-align: center;
    width: 100vw;
  }
  footer .redes {
    text-align: center;
    align-items: center;
  }
  header {
    display: block;
    align-items: center;
    text-align: center;
  }
  .menu {
    z-index: 999999;
    display: block;
    position: fixed;
    top: 45px;
    right: 15px;
  }
  .nav-list {
    z-index: 500;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background-color: #121212;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transform: translateX(100%);
    transition: 0.3s all ease-in-out;
  }
  .nav-list li {
    top: 55px;
    margin-left: 0;
    opacity: 1;
  }
  .icon-x {
    display: block;
    z-index: 999999999;
  }
  header ul li a .text {
    opacity: 1;
    transform: translateY(25px);
  }
}
.nav-list.active {
  transform: translateX(0);
  opacity: 1;
}
.qrcode img {
  width: 180px;
  margin: 5px;
}

[data-anime] {
  opacity: 0;
  transition: .8s;
}
[data-anime="top"] {
  transform: translate3d(0, -100%, 0);
}
[data-anime="left"] {
  transform: translate3d(-100%, 0, 0);
}
[data-anime="right"] {
  transform: translate3d(100%, 0, 0);
}
[data-anime="bottom"] {
  transform: translate3d(0, 100%, 0);
}
[data-anime].animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
