:root {
  --dark-purple: #4E4395;
  --light-purple: #9A77B3;
  --light-purple-2: #655272;
  --light-black: #2b2929;
  --black: #000000;
  --dark-gray: #33313F;
  --white: #ffffff;
  --white-transparent: #ffffff1a;
  --grey: #CECECE;
  --border-right: 6px;
  --text-stroke-color: rgba(255, 255, 255, 0.6);
  --animation-color: #37FF8B;
}

/* INÍCIO TAGS */

.dev,
.link-href {
  text-decoration: none !important;
  color: var(--white) !important;
}

.dev:hover,
.link-href:hover {
  background-position: 0;
}

.dev:hover::before,
.link-href:hover::before {
  width: 100%;
}


/* FIM TAGS */
/* INICIO CLASSES E IDS */
.link-href {
  background-image: linear-gradient(to right,
      var(--light-purple),
      var(--light-purple) 50%,
      var(--white) 50%) !important;
  background-size: 200% 100% !important;
  background-position: -100% !important;
  display: inline-block !important;
  padding: 5px 0 !important;
  position: relative !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  transition: all 0.3s ease-in-out !important;
}

.link-href:before {
  content: '';
  background-color: #044285;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

#btn-mobile {
  display: none;
}

.navbar {
  width: 100% !important;
  height: 80px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 4rem !important;
  display: none !important;
  z-index: 300 !important;
}

.navbar .logo a {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .links {
  display: flex !important;
  gap: 2rem !important;
  font-size: 1rem !important;
}

.logo-mobile {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  padding: 22px !important;
}

/* FIM CLASSES E IDS */
/* INÍCIO MEDIA QUERIES */

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

  body {
    margin: 0;
  }

  .sidebar {
    display: none;
  }

  header {
    display: flex;
    background-color: #000611;
  }

  .link-href-hidden {
    display: block !important;
  }

  .button {
    display: none;
  }

  .links li .link-href {
    font-size: 20px;
    padding: 12px !important;
    margin-top: 5px !important;
    width: 100%;
  }

  .links {
    padding: 0 !important;
  }

  .link {
    gap: 40px !important;
    margin-top: 50px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .link i {
    display: inline-flex;
    margin-right: 1px !important;
    padding: 0 !important;
    height: 40px !important;
    min-width: 40px !important;
  }

  #menu {
    display: block !important;
    position: absolute !important;
    width: 100%;
    top: 70px;
    right: 0px;
    background-color: #000611;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }

  #nav.active #menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }

  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }

  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
    color: var(--white);
  }

  #hamburger {
    border-top: 2px solid;
    margin-top: 3.5px;
    width: 20px;
  }

  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }

  #nav.active #hamburger {
    border-top-color: transparent;
  }

  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }

  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }

  .navbar .links {
    display: none;
    /* Oculta os links no modo responsivo, caso necessário */
  }

  .navbar {
    padding: 0 !important;
    display: flex !important;
  }

  .dev {
    font-size: 16px !important;
  }

  .button {
    visibility: hidden;
  }

  .link-href-login {
    visibility: visible;
  }



  @keyframes fade-in {
    5% {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    95% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes progress {
    to {
      transform: scaleX(1);
    }
  }
}