/* =====================
   BASE
===================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  padding-top: 80px;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* =====================
   CONTAINER
===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   HEADER
===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: relative;
  max-width: 1200px;
  margin:0 auto;
  padding-right: 25px;
}

@media (min-width: 768px) {
  .header-inner {
    height: 80px;
  }
}

/* =====================
   LOGO
===================== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
}

.logo img {
  width: 36px;
  height: 36px;
}

/* =====================
   NAV DESKTOP
===================== */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

/* =====================
   BOTÃO CTA
===================== */


.btn-primary:hover {
  opacity: 0.9;
}

/* =====================
   MENU MOBILE
===================== */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: var(--text);
  position: absolute;
  right: 50px;
  top: 15px;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}