 /* Container principal */
a {
      color: #999;
      text-decoration: none;
}

.header {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem;
      height: 7.6875rem;
      font-size: 20px;

      background: linear-gradient(135deg,#0d0e20 0%, #0d0e20 85%, #0d1f29 92%, #15173e 100%);
      background-repeat: no-repeat;
      background-size: cover; */
}

.logo {
      display: flex;
      align-items: center;
      width: 90px;
      height: 90px;
}

.logo img {
      width: 100%;
      height: auto;
}

.header-esq {
      display: flex;
}

.menu {
      list-style: none;
      display: flex;
      gap: 0.5rem;
}

.menu a {
      display: block;
      padding: 1rem;
      border-radius: 0.5rem;
}

.menu a:hover {
      color: #444;
}


.btn-menu {
      display: none;
}

.nav-rodape {
      display: none;
}

@media (max-width: 1024px) {
      .menu {
            display: block;
            position: absolute;
            top: 7.6875rem;
            left: 0;
            background: linear-gradient(135deg,#0d0e20 0%, #0d0e20 85%, #0d1f29 92%, #15173e 100%);
            background-repeat: no-repeat;
            background-size: cover;
            text-align: center;
            width: 100%;
            height: 100vh;
            z-index: 1;
            visibility: hidden;
            overflow-y: hidden;
            transition: 0.5s;
      }

      .menu a {
            padding: 1rem 0;
            margin-inline: 1rem;
            border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.16);
            border-radius: 0;
      }

      .btn-menu {
            background: none;
            border: none;
            font: inherit;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #999;
            padding-block: 1rem;
            cursor: pointer;
      }

      .hamburger {
            border-top: 0.125rem solid;
            width: 1.25rem;
      }

      .hamburger::before,
      .hamburger::after {
            content: " ";
            display: block;
            width: 1.25rem;
            height: 0.125rem;
            background-color: currentColor;
            margin-top: 0.3125rem;
            position: relative;
            transition: 0.4s;

      }

      .nav.active .menu {
            height: calc(100vh - 8.6875rem);
            visibility: visible;
            overflow-y: auto;

      }

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

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

      .nav.active .hamburger::after {
            transform: rotate(-135deg);
            top: -0.4375rem;
      }

      .nav-rodape {
            color: #999;
            position: absolute;
            bottom: 0;
            height: 35px;
            line-height: 5px;
            text-align: center;
            width: 100%;
            display: block;
      }
}

@media (max-width: 530px) {
      .nav-rodape {
            font-size: 0.9rem;
      }
}