.card-obra {
  width: 100%;
  height: 250px;
  transition: 1.25s;
}

.card-obra-home {
  height: 200px;
}



.card-obra_image-background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%; /* Alterado de 250px para 100% */
}

.card-obra_image-background-home {
  width: 100%;
  height: 100%; /* Alterado de 200px para 100% */
}

.card-obra-home .card-obra_image-background {
  height: 200px; /* Para definir a altura específica quando em casa */
}

.card-obra *, .card-obra *:before, .card-obra *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}



.card-obra.cards-shadown {
  box-shadow: 2px 2px 30px #aaa;
}

.card-obra:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 99;
  cursor: pointer;  
}

@media (min-width: 1600px)  { 
  .card-obra {
    height: 450px;
  }
  .card-obra-home {
  height: 350px;
  }
  .card-obra-home .card-obra_image-background {
    height: 350px; /* Para definir a altura específica quando em casa */
  }
}

.card-obra_title {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}