.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 100px; /* Se coloca al lado de tawk.to (que usualmente ocupa los primeros 80px) */
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.3);
    z-index: 999999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .whatsapp-icon {
    width: 34px;
    height: 34px;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 6px 15px rgba(0,0,0,0.4);
  }

  
  @media only screen and (max-width: 768px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 15px;
      right: auto; 
      left: 15px; 
      box-shadow: 2px 3px 8px rgba(0,0,0,0.3);
    }
    
    .whatsapp-icon {
      width: 28px;
      height: 28px;
    }
  }