.card-front {
    color: #ffffff;
    position: relative;
    overflow: hidden;
  }
  
  /* La imagen se coloca en una capa inferior */
  .card-front img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  /* Los elementos de texto se posicionan sobre la imagen */
  .card-front .card-title,
  .card-front .card-subtitle {
    position: relative;
    z-index: 2;
  }