header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: #383636;
    color: #fff;
}

body header nav ul {
    display: flex;
    gap: 20px;
    text-decoration: none;
    list-style: none;
    justify-content: flex-end;
}

body header nav a {
    display: flex;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

.lista-produtos {
  display: flex;   
  flex-wrap: wrap;
  gap: 16px;
}

.lista-produtos > article {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  max-width: 320px;
  flex: 1 1 280px;
}
.lista-produtos figure { margin: 8px 0; }
.lista-produtos img { width: 100%; height: 180px; object-fit: contain; }
.lista-produtos figcaption { font-weight: 700; text-align: center; }

.filtro-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
}
.filtro-bar label { font-weight: 600; }
.filtro-bar select {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #cfc8d9;
  background: #fff;
}

.filtro-bar input[type="search"] {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #cfc8d9;
  background: #fff;
  min-width: 220px;
}


