/* ================= HEADER ================= */
.topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #E91E63;
  border-bottom: 1px solid #f5e6b3;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topo-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* espaço por causa do header fixo */
body {
  margin: 0;
  padding-top: 90px;
  font-family: "Poppins", sans-serif;
  background-color: #fff9e9;
  color: #3e2b1b;
}

/* LOGO */
.logo img {
  width: 120px;
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s;
}

.logo img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* MENU DESKTOP */
.menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}

.menu a:hover {
  color: #FFD741;
}

/* BOTÃO HAMBURGUER */
.hamburguer {
  display: none;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

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

  .topo {
    height: 70px;
  }

  body {
    padding-top: 70px;
  }

  .topo-inner {
    padding: 0 20px;
  }

  .logo img {
    width: 95px;
  }

  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #E91E63;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

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

  .hamburguer {
    display: block;
  }

  .menu.ativo {
    display: flex;
  }
}
