
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
  }
  
  .whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
  
  .whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    border-radius: 50px;
    width: auto;
    padding: 12px 20px;
  }
  
  .whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .whatsapp-text {
    font-size: 16px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease;
  }
  
  .whatsapp-button:hover .whatsapp-text {
    max-width: 200px;
    margin-left: 10px;
  }
  
  @media (max-width: 768px) {
    .whatsapp-float {
      right: 30px;
      bottom: 30px;
    }
    
    .whatsapp-button {
      padding: 10px;
      border-radius: 50%;
      width: 56px;
      height: 56px;
    }
    
    .whatsapp-text {
      display: none;
    }
    
    .whatsapp-button:hover {
      border-radius: 50%;
      width: 50px;
      height: 50px;
      padding: 10px;
    }
  }
