:root {
  --bg: #0b0b0b;
  --text: #eaeaea;
  --muted: #9a9a9a;
  --accent: #8a7c5d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

h1, h2, h3 {
  font-weight: 500;
  margin-bottom: 20px;
}

p {
  color: var(--muted);
  margin-bottom: 20px;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.site-header {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 20px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  color: #eaeaea;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

/* ===== BOTÃO HAMBURGER ===== */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #eaeaea;
  display: block;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #0b0b0b;

    flex-direction: column;
    align-items: center;
    gap: 24px;

    padding: 24px 0;

    display: none;
  }

  .nav.active {
    display: flex;
  }

}


.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid var(--accent);
}


.site-footer {
  margin-top: 80px;
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.logo-footer {
  height: 14px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.7;
}

.footer-copy {
  font-size: 12px;
  color: #aaa;
  opacity: 0.6;
}
