.obreiros-hero {
  position: relative;
  height: 60vh;
  background: linear-gradient(120deg, #1e3c72, #2a5298);
  display: flex;
  align-items: center;
  justify-content: center;
}

.obreiros-hero-overlay {
  color: white;
  text-align: center;
}

.obreiros-title {
  font-size: 3rem;
  font-weight: bold;
}

.obreiros-subtitle {
  font-size: 1.2rem;
}

.obreiros-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 50px 0;
}

.obreiros-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.obreiros-card:hover {
  transform: translateY(-5px);
}