/* RESET BÁSICO */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HEADER */
.header {
  background: #000;
  color: #fff;
  width: 100%;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 1.3rem;
  font-weight: bold;
}

/* MENU DESKTOP */
.nav-desktop {
  display: flex;
  gap: 24px;
}

.nav-desktop a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-desktop a:hover {
  text-decoration: underline;
}

/* ÍCONES */
.header-icons {
  display: flex;
  gap: 16px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* BOTÃO MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
}

/* MENU MOBILE */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #000;
}

.nav-mobile a {
  padding: 14px;
  color: #fff;
  text-decoration: none;
  border-top: 1px solid #222;
}

/* MAIN */
.main-content {
  max-width: 1100px;
  background: #fff;
  margin: 40px auto;
  padding: 32px;
  border-radius: 6px;
}

/* FOOTER */
.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav-desktop,
  .header-icons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
