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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  line-height: 1.6;
}

.main {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 20px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 40px;
  color: #1d1d1f;
}

.projetos-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.projeto-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 0;
  border-bottom: 1px solid #d2d2d7;
}

.projeto-item:last-child {
  border-bottom: none;
}

.projeto-item-categoria {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6e6e73;
  margin-bottom: 8px;
}

.projeto-item-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: #1d1d1f;
  line-height: 1.2;
}

.projeto-item-descricao {
  display: block;
  font-size: 17px;
  line-height: 1.5;
  color: #6e6e73;
  margin-bottom: 8px;
}

.projeto-item-data {
  display: block;
  font-size: 14px;
  color: #86868b;
  font-weight: 400;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6e6e73;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .projeto-item-title {
    font-size: 24px;
  }

  .projeto-item-descricao {
    font-size: 16px;
  }

  .projeto-item {
    padding: 24px 0;
  }
}
