/*
.lista-container h1 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  color: #1e1e2f;
}

.item-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.item-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1e1e2f;
}

.item-card p {
  font-size: 16px;
  color: #555;
}

.item-imagem {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
*/
.lista-container {
  max-width: 900px;
  margin: 1rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.lista-container h1 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  color: #1e1e2f;
}

.item-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.item-card:hover {
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.item-imagem {
  flex: 0 0 160px;
}

.item-imagem img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.item-conteudo {
  flex: 1;
}

.item-conteudo h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1e1e2f;
}

.item-conteudo p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .item-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .item-imagem {
    width: 100%;
    text-align: center;
  }

  .item-imagem img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .item-conteudo {
    padding-top: 15px;
  }
}