.app {
  position: relative;
  z-index: 1;
  width: min(100% - 24px, var(--container));
  margin: 0 auto;
  padding: 20px 0 120px;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  animation: floatIn 0.9s ease both;
}

.logo {
  width: 300px;
  height: 300px;
  background: url("/cardapio-componentizado/imagens/logo.png") center / contain no-repeat;
}

.toolbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: 100%;
  margin: 18px auto 24px;
  padding: 14px;
  border: 1px solid var(--stroke);
  background: rgba(15, 23, 42, 0.74);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  box-shadow: var(--shadow);
}

.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.empty {
  display: none;
  padding: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  margin-top: 12px;
  animation: fadeIn 0.35s ease;
}

.empty.show {
  display: block;
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .app {
    width: min(100% - 16px, var(--container));
  }

  .logo {
    width: 320px;
    height: 320px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
