@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom right, #e6ecf9, #f3e6ff);
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #5c6bc0;
  color: white;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
}

nav {
  background-color: #9575cd;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 15px;
}

nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #e6ecf9;
}

.search {
  background-color: #fff;
  margin: 40px auto;
  padding: 30px;
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.search h2 {
  margin-bottom: 25px;
  color: #5c6bc0;
  font-size: 1.5em;
}

.search select {
  padding: 12px;
  margin: 10px;
  border: 1px solid #b39ddb;
  border-radius: 10px;
  width: 200px;
  font-size: 1em;
  background-color: #f3e6ff;
}

.search select[multiple] {
  height: auto;
  max-height: 150px;
  overflow-y: auto;
}

.search button {
  padding: 12px 30px;
  background-color: #5c6bc0;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1em;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.search button:hover {
  background-color: #3f51b5;
}

.itens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.item-card {
  background-color: white;
  border: 2px solid #c5cae9;
  border-radius: 20px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.item-card:hover {
  transform: scale(1.03);
}

.item-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.item-card h3 {
  color: #5c6bc0;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.item-card p {
  font-size: 0.95em;
  margin-bottom: 15px;
}

.item-card button {
  background-color: #9575cd;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.item-card button:hover {
  background-color: #7e57c2;
}

footer {
  background-color: #5c6bc0;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 40px;
}
