body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  color: #222;
  background: #f9f9f9;
  line-height: 1.5;
}
h1 {
  font-size: 2rem;
  margin-bottom: 5px;
}
h2 {
  border-bottom: 2px solid #1d1f21;
  padding-bottom: 4px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #1d1f21;
}
a {
  color: #1d1f21;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.contact-info {
  font-size: 0.9rem;
  color: #555;
}
ul {
  margin-top: 0;
  padding-left: 20px;
}
li {
  margin-bottom: 6px;
}
.download-btn {
  display: inline-block;
  background-color: #1d1f21;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 15px 0;
  cursor: pointer;
  transition: background 0.3s;
}
.download-btn:hover {
  background-color: #444;
}




.projetos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.projeto {
  background-color: #f0f0f0;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.projeto:hover {
  transform: translateY(-3px);
}

.projeto a {
  display: inline-block;
  margin-top: 4px;
  color: #1d1f21;
  font-weight: bold;
  text-decoration: none;
}

.projeto a:hover {
  text-decoration: underline;
}
