#directora {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
}

.text-dir{
    text-align: justify;
}
.card-title{
    font-size: 27px;
    color: beige;
    font-weight: bold;
    text-shadow: 0 0 3px #222121, 0 0 5px #444444;
}
.card-text{
    text-align: justify;
    padding-top: 10px;
    color: beige;
}
.img-card{
    width: 230px;
}
.animate-card{
    width: 95%;
    transition: transform 0.3s ease;
    margin: auto;
}
.animate-card:hover{
    transform: translateY(-5px);
}
#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;
    }
  }
