.des-color{
    background-color: #A7C1A8;
}
.color{
    background-color: #F5F5F5;
}
.color-bank{
    background-color: #C4E1E6;
    transition: 0.3s;
    
}
.color-bank:hover{
    transform: translateY(-8px);
  transition: transform 0.3s ease;
}
#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;
    }
  }
  
  @keyframes moverBotonSuave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px); /* salto muy pequeño */
  }
}

.boton-animado-suave {
  animation: moverBotonSuave 1s infinite;
}