/* Navbar Base */
nav {
  background-color: var(--color-background);
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid var(--color-muted);
  font-size: 1.125rem;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.logo img {
  height: 70px;
}

/* Desktop Links */
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: #555;
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* Hamburger (Mobile) */
.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  padding: 0.5rem;
  aspect-ratio: 3;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 10px;
}

/* Drawer Menu */
.drawer {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.3s ease;
  z-index: 2000;
  background-color: var(--color-background);
}

.drawer.open {
  right: 0;
}

.drawer a {
  color: var(--color-secondary);
  font-size: var(--size-lg);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.drawer a:hover {
  color: var(--color-primary);
}

/* Close Drawer Button */
.close-drawer {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .nav-container {
    height: 60px;
  }
}
.btn-whatsapp {
  background-color: #1ba84f;
  padding: 0.5rem 2rem;
  color: #fff !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  border-radius: 32px;
}
