.projetos-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background-color: #FFFFFF;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.projetos-hero .hero-texto {
  flex: 1;
  min-width: 300px;
}

.projetos-hero h1 {
  font-size: 2.5rem;
  color: #1E725A;
  margin-bottom: 1rem;
}

.projetos-hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #000000;
}

.hero-imagem {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-imagem img {
  max-width: 700px;
  width: 100%;
  object-fit: cover;
}

.lista-projetos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  justify-content: center;
}

.card-projeto {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.2s;
}

.card-projeto:nth-child(2) {
  animation-delay: 0.4s;
}

.card-projeto:nth-child(3) {
  animation-delay: 0.6s;
}

.card-projeto:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-projeto h2 {
  color: #1E725A;
  margin-bottom: 1rem;
}

.card-projeto p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #000000;
}

.card-projeto .btn-acao {
  background-color: #FF9E00;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.card-projeto .btn-acao:hover {
  background-color: #1E725A;
}

.impacto {
  background-color: #FFFFFF;
  padding: 3rem 2rem;
  text-align: center;
}

.impacto h2 {
  color: #1E725A;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.2s;
}

.cards-impacto {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.card-impacto {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.4s;
}

.card-impacto:nth-child(2) {
  animation-delay: 0.6s;
}

.card-impacto:nth-child(3) {
  animation-delay: 0.8s;
}

.card-impacto:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card-impacto h3,
.card-impacto p {
  color: #000000;
}

.galeria {
  padding: 3rem 2rem;
  text-align: center;
}

.galeria h2 {
  color: #1E725A;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.2s;
}

.fotos-projetos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.fotos-projetos img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.4s;
}

.fotos-projetos img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.botoes-projetos {
  text-align: center;
  padding: 2rem;
}

.botoes-projetos .btn-acao {
  margin: 0.5rem;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}