@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:wght@100..900&display=swap');

/* A barra toda (track) */
::-webkit-scrollbar {
    width: 0px; /* largura vertical */
    height: 8px; /* altura horizontal */
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: #111;
  border-bottom: 1px solid rgba(0, 161, 0, 0.1);
  z-index: 50;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.logo img {
  width: 40px;
}

.logo h1 {
  font-size: 1.5rem;
  font-family: Montserrat;
  font-weight: bold;
  background: linear-gradient(90deg, #71d000, #3f7b0a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #00a100;
}

nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: #00a100;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

nav a:hover {
  background: #008500;
}

.icon-small {
  width: 1.2rem;
  height: 1.2rem;
}