/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1rem;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #000;
  z-index: 3000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  height: 56px;
  width: auto;
}

/* =========================
   BOTÃO MENU (MOBILE)
========================= */
.menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* =========================
   MENU – BASE (MOBILE)
========================= */
.nav {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: #000;
  display: none;
  z-index: 2500;
}

.nav.active {
  display: block;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 1.2rem;
  display: block;
  text-align: center;
}

/* =========================
   DESKTOP
========================= */
@media (min-width: 769px) {

  /* remove sanduíche */
  .menu-toggle {
    display: none;
  }

  /* menu sempre visível */
  .nav {
    display: block;
    top: 0;
    height: 64px;
    background: transparent;
    z-index: 3500;
  }

  /* centralização horizontal REAL */
  .nav ul {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
}
/* =========================
   FOOTER
========================= */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
}
