/* No topo do seu arquivo CSS */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Nunito:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0b0e13;
    color: #e8e8e9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    font-family: 'Poppins', 'Nunito', sans-serif;
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: color-mix(in oklab, #0b0e13 75%, transparent);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid #161a23;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 10rem;
    height: auto;
    transition: opacity 0.3s;
}

.logo img:hover {
    opacity: 0.75;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

nav a {
    text-decoration: none;
    padding: 8px 12px;
    font-size: 14px;
    color: #bbb;
    transition: color 0.3s;
}

nav a:hover {
    color: #2b7fff;
}

header .button {
    padding-inline: 1rem;
    background-color: oklch(.488 .243 264.376);
    color: #fff;
    border-radius: 10px;
    font-size: .875rem;
    text-decoration: none;
    height: 2.5rem;
    display: flex;
    align-items: center;
}

header .button:hover {
    background-color: oklch(.424 .199 265.638);
}

.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    font-size: 14px;
    font-weight: 600;
}

.user-toggle img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #181a20;
    border: 1px solid #333;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    min-width: 150px;
    padding: 8px 0;
    margin-top: .5rem;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-menu.active .dropdown-menu {
    display: flex;
}

.menu-toggle {
    display: none;
    background: transparent;
    color: #d4d4d4;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    background: #181a20;
    border-top: 1px solid #333;
}

.mobile-nav ul {
    list-style: none;
    padding: 10px 20px;
}

.mobile-nav li {
    padding: 10px 0;
}

.mobile-nav a {
    text-decoration: none;
    color: #bbb;
    font-size: 16px;
}

@media (max-width: 768px) {

    .header-container nav ul,
    .actions a {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav.active {
        display: block;
    }

    nav ul {
        display: block;
    }
}

/* Rodapé */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    footer {
      font-family: 'Segoe UI', sans-serif;
      background-color: #0a0c10;
      color: #ccc;
      font-size: clamp(0.85rem, 1vw, 1rem);
      border-top: 1px solid #11151b;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      padding: 3rem 1.25rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2.5rem;
    }

    .footer-column {
      flex: 1 1 min(250px, 100%);
    }

    .footer-logo {
      width: 150px;
      margin-bottom: 1rem;
    }

    .footer-description {
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .footer-socials a {
      display: inline-block;
      color: #fff;
      background-color: #1e40af;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      margin-right: 8px;
      transition: background-color 0.3s ease;
    }

    .footer-socials a:hover {
      background-color: #3b82f6;
    }

    .footer-column h5 {
      font-size: 1.15rem;
      color: #fff;
      margin-bottom: 1rem;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.5rem;
    }

    .footer-column ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .footer-bottom {
      background-color: #0a0c10;
      padding: 1.25rem 1rem;
      border-top: 1px solid #1e293b;
    }

    .footer-bottom-inner {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

    .footer-bottom p {
      margin: 0;
    }

    .footer-links {
      list-style: none;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      color: #fff;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 2rem;
      }

      .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
      }
    }