* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: #f2f2f2;
  font-family: Inter, system-ui, sans-serif;
}

/* HEADER (igual ao seu) */
header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: #000;
}

.logo img {
  height: 64px;
}

.desktop-nav {
  display: flex;
  gap: 18px;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* BOTÕES */
.header-actions {
  display: flex;
  gap: 12px;
}

.lang-toggle {
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  padding: 8px 12px;
}

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #fff;
}

/* ABOUT */
.about {
  padding: 120px 6vw 80px;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 700px;
}

.about h1 {
  font-size: 42px;
  margin-bottom: 24px;
}

.about p {
  font-size: 16px;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 20px;
}

/* CONTATO */
.contact {
  margin-top: 40px;
}

.contact p {
  font-size: 14px;
  color: #fff;
}

/* FOOTER */
.footer {
  background: #000;
  text-align: center;
  padding: 40px 20px;
}

.footer .social img {
  width: 24px;
  margin: 0 6px;
  filter: invert(1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
}

/* MOBILE */
@media (max-width: 768px) {

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .about {
    padding: 100px 20px 60px;
  }

  .about h1 {
    font-size: 32px;
  }

  .about p {
    font-size: 15px;
  }
}

/* MENU MOBILE */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100dvh;
  background: #000;
  transform: translateX(100%);
  transition: transform .4s ease;
  padding: 100px 20px;
  z-index: 1100;
}

.menu.active {
  transform: translateX(0);
}

.menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu a {
  color: #fff;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
}