  .property-card {
      position: relative;
      overflow: hidden;
      border: none;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease-in-out;
      background-color: #fff;
      border-color: crimson;
  }

  .property-card:hover {
      transform: translateY(-5px);
      transition: transform 0.3s;
  }

  .property-card img {
      width: 100%;
      height: 550px;
      /* Imagen más alta */
      object-fit: cover;
      transition: transform 0.4s ease-in-out;
  }

  .property-card:hover img {
      transform: scale(1.05);

  }

  .card-overlay {
      position: absolute;
      bottom: -100%;
      left: 30px;
      /* Deja 30px libres a la izquierda */
      width: calc(100% - 30px);
      /* Ajusta el ancho para respetar el espacio */
      height: 80%;
      background: rgba(255, 255, 255, 0.95);
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: bottom 0.4s ease-in-out;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;


  }


  .property-card:hover .card-overlay {
      bottom: 0;
  }

  .card-overlay h5 {
      color:rgb(145, 187, 36); 
      /* Verde del ejemplo */
      font-weight: bold;
      margin-bottom: 10px;
      
  }

  .card-overlay p {
      margin-bottom: 15px;
      color:rgb(145, 187, 36); 
      font-size: 15px;
  }

  /* Botón "Ver más" */
   /* .btn-ver {
      margin-top: 50px;
      padding: 8px 16px;
      border-radius: 6px;
      background-color:rgb(145, 187, 36); 
      color: white;
      border: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      text-transform: uppercase;
      width: fit-content;
  } */
/*
  .btn-ver:hover {
      background-color: rgb(145, 187, 36); 
  } */

  /* Título sobre la imagen */
 .card-footer-title {
    position: absolute;
    bottom: 15px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: bold;
    color: #6b8e23;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
}

  /* Al hacer hover, mantenemos el título visible */
  .property-card:hover .card-footer-title {
      opacity: 1;
  }




  /* .btn-ver {
      background-color: rgb(6, 54, 120); 
      color: white;
      box-shadow: 0 5px 0 #366bc7;
  }

  .btn-ver:hover {
      background-color:rgb(145, 187, 36); 
      transform: translateY(-2px);
      box-shadow: 0 6px 0rgb(145, 187, 36); 
  }

  .btn-ver:active {
      transform: translateY(4px);
      box-shadow: 0 2px 0 rgb(145, 187, 36); 
  } */

  /* cards */
  .encurso {
      font-size: small;

  }


  .progres{
    background-color: rgb(145, 187, 36); 
    color: #fff;
  }
.progres1{
    background-color:  #e4e4e4;
    color:  rgb(6, 54, 120); 
  }

.property-card:hover .card-footer-title {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
  


/* flechas en cards adelante y por detras */

.card-overlay a {
    top: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
  color: rgb(6, 54, 120); /* mismo color de tus letras */
  font-size: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Flecha visible inicialmente (derecha) */
.card-overlay a .flecha-derecha {
  width: 1.5em;
  height: auto;
  filter: brightness(0) saturate(100%) invert(17%) sepia(65%) saturate(747%) hue-rotate(182deg) brightness(93%) contrast(93%);
  transition: opacity 0.3s ease;
}

/* Flecha que aparecerá detrás en hover */
.card-overlay a .flecha-atras {
  position: absolute;
  left: -25px;
  opacity: 0;
  width: 1.5em;
  height: auto;
  filter: brightness(0) saturate(100%) invert(17%) sepia(65%) saturate(747%) hue-rotate(182deg) brightness(93%) contrast(93%);
  transition: opacity 0.3s ease, left 0.3s ease;
}

/* Hover: animación y color */
.card-overlay a:hover {
  color: rgb(6, 54, 120);
  transform: translateX(20px);
}

.card-overlay a:hover .flecha-derecha {
  opacity: 0;
}

.card-overlay a:hover .flecha-atras {
  opacity: 1;
  left: -25px;
}

