.card-hover {
    height: 300px;
    overflow: hidden;
    position: relative;
  }

  .card-img-top {
    height: 100%;
    object-fit: cover;
  }

  .card-text-area {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25%;
    background: rgba(1, 124, 155, 0.829);
    color: white;
    padding: 10px;
    transition: height 0.3s ease;
    overflow: hidden;
  }

  .card-hover:hover .card-text-area {
    height: 110px; /* puede ser más si deseas mostrar más texto */
  }

  .hidden-text {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .card-hover:hover .hidden-text {
    opacity: 1;
  }
  .bg-h{
      background-color: #FFB823;
  }
  .titulo1{
      color: rgb(26, 26, 25);
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-weight: bold;
  }
  #btnSubir {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    line-height: 45px;
    display: none;
    transition: all 0.3s ease-in-out;
  }
  #whatsapp-container {
    position: fixed;
    bottom: 30px;
    left: 60px;
    z-index: 10000;
  }
  
  #whatsapp-button {
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  #whatsapp-button:hover {
    transform: scale(1.1);
  }
  
  #whatsapp-message {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 90;
    width: 250px;
    font-size: 14px;
  }
  @media (max-width: 576px) {
    #btnSubir,
    #whatsapp-container {
      display: none !important;
    }
  }