
.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 {
  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;
}
*/
.servico-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

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

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

.servico-conteudo {
  flex: 1;
}

.servico-titulo {
  margin: 0 0 10px;
  font-size: 20px;
  color: #1e1e2f;
}

.servico-descricao {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

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

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

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