.projeto {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-top: 1px solid #ffffff;  /* linha separadora */
}

.projeto-foto {
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  object-fit: cover;        /* corta para quadrado sem distorcer */
  display: block;
  border: 1px solid #e31b22;
}

.projeto-info {
  flex: 1;
}

.projeto-nome {
  font-family: 'Anaheim', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #e31b22;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0;
}

.projeto-local {
  font-family: 'Anaheim', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: white;
  margin: 0 0 0;
}

.projeto-valor {
  font-family: 'Anaheim', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
  line-height: 30px;
  margin: 20px 0 0;
}

@media (max-width: 640px) {
  .projeto { flex-direction: column; gap: 18px; }
  .projeto-valor { font-size: 22px; line-height: 30px; }
}