.parte6{
    background-color: rgb(100, 224, 224);
    width: 100%;
    height: 100%;
    margin-right: 50px;
    border-radius: 20px;
}
.color-form{
    background-color: #EEEFE0;
}
.color{
    color: rgb(247, 3, 3);
   
}
.animado {
    display: inline-block;
    animation: moverIzquierda 3s ease-in-out infinite alternate;
  }
  
  @keyframes moverIzquierda {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-15px);
    }
  }
  #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;
    }
  }
  
