.whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 100;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .whatsapp-float img {
      width: 60px;
      height: 60px;
      animation: pulse 1.8s infinite;
      transition: transform 0.3s;
    }

    .whatsapp-float:hover img {
      transform: scale(1.1);
    }

    /* ===== GLOBO DE CHAT ===== */
    .boxwsp {
      position: fixed;
      right: 5%;
      bottom: 80px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .boxwsp.show {
      opacity: 1;
      visibility: visible;
    }

    .wsp-top {
      display:flex;
      align-items:center;
      background:#4dc247;
      color:#fff;
      border-radius:10px 10px 0 0;
      padding:6px 8px;
      box-shadow:2px 2px 5px rgba(0,0,0,.3);
      width:100%;
      max-width:250px;
      position:relative;
    }

    .wsp-toph {
      margin:4px 0;
    }

    .wsp-top img {
      width: 48px;
      margin-right: 10px;
    }

    .close-btn {
      background: none;
      border: none;
      position: absolute;
      top: 6px;
      right: -3px;
      cursor: pointer;
    }

    .close-btn img {
      width: 14px;
      height: 14px;
    }

    .msj {
      background-color: #f4f5f6;
      border-radius: 0 0 10px 10px;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
      width: 100%;
      max-width: 250px;
      text-align: left;
      padding: 10px;
    }

    .wsp-chat {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #333;
    }

    .wsp-chat img.agent {
      width: 50px;
      border-radius: 50%;
      margin-right: 10px;
    }

    .msj-body {
      border: 1px solid #4dc247;
      border-radius: 15px;
      padding: 0.5rem;
      font-size: 12px;
      text-align: center;;
    }

    .wa-content {
      background-color: #f4f5f6;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
      width: 100%;
      max-width: 250px;
    }

    .wa-options {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
      padding: 8px;
    }

    .wa-opt {
      flex: 1 1 45%;
      padding: 6px 8px;
      border: 1px solid #4dc247;
      border-radius: 999px;
      font-size: 14px;
      cursor: pointer;
      background-color: #fff;
      color: #2e7d32;
      transition: .2s;
    }

    .wa-opt:hover, .wa-opt.active {
      background-color: #4dc247;
      color: #fff;;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }
