 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

    #gg-help-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: #000;
      color: white;
      font-size: 22px;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 99999;
      box-shadow: 0 0 12px rgba(10, 10, 10, 0.5);
      cursor: pointer;
      transition: box-shadow 0.3s ease;
    }

    #gg-help-button.blink {
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 100% { box-shadow: 0 0 12px rgba(23, 24, 24, 0.5); }
      50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
    }

    #gg-help-chat {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 360px;
      height: 520px;
      background: #f5f6f7;
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(13, 14, 13, 0.6);
      display: none;
      flex-direction: column;
      overflow: hidden;
      z-index: 99999;
      animation: slideUp 0.3s ease-out;
      font-family: 'Poppins', sans-serif;
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideDown {
      from { opacity: 1; transform: translateY(0); }
      to { opacity: 0; transform: translateY(20px); }
    }

    .gg-help-hide {
      animation: slideDown 0.3s ease-in forwards;
    }

    #gg-help-header {
      background: #06a3da;
      color: white;
      padding: 16px;
      font-weight: 600;
      font-size: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    #gg-help-body {
      flex: 1;
      background: #ecedee;
      padding: 20px;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
    }

    .gg-help-msg-bot {
      background: #bcbdbb;
      color: #010b11;
      align-self: flex-start;
      padding: 10px 14px;
      border-radius: 16px 16px 16px 6px;
      margin-bottom: 10px;
      max-width: 80%;
      font-size: 14px;
    }

    .gg-help-msg-user {
      background: #454546;
      color: #fff;
      align-self: flex-end;
      padding: 10px 14px;
      border-radius: 16px 16px 6px 16px;
      margin-bottom: 10px;
      max-width: 80%;
      font-size: 14px;
    }

    .gg-help-msg-bot strong {
      font-weight: 600;
    }

    .gg-help-msg-bot em {
      font-style: italic;
      color: #333;
    }

    .gg-help-msg-bot ul,
    .gg-help-msg-bot ol {
      padding-left: 20px;
      margin: 10px 0;
    }

    .gg-help-msg-bot a {
      color: #042940;
      text-decoration: underline;
    }

    .gg-help-typing {
      font-size: 13px;
      padding: 10px 14px;
      background: #333;
      color: #d8d9da;
      border-radius: 12px;
      max-width: fit-content;
      align-self: flex-start;
      margin-bottom: 10px;
      opacity: 0.85;
      font-style: italic;
    }

    .dot-loader span {
      animation: blinkDots 1.4s infinite;
      display: inline-block;
    }

    .dot-loader span:nth-child(2) { animation-delay: 0.2s; }
    .dot-loader span:nth-child(3) { animation-delay: 0.4s; }

    @keyframes blinkDots {
      0%, 100% { opacity: 0.2; }
      50% { opacity: 1; }
    }

    #gg-help-footer {
      padding: 14px;
      background: #06a3da;
      display: flex;
      gap: 10px;
      border-top: 1px solid #005C53;
    }

    #gg-help-input {
      flex: 1;
      padding: 10px;
      border: 1px solid #3174c1;
      border-radius: 8px;
      background: #ffffff;
      color: #042940;
      outline: none;
    }

    #gg-help-send {
      background: #0d0d0e;
      color: white;
      border: none;
      padding: 10px 18px;
      border-radius: 8px;
      cursor: pointer;
    }

    .gg-help-close {
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
    }

    .gg-typing {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 8px 12px;
      background: #333;          /* FUNDO */
      border-radius: 14px;
    }

    .gg-typing span {
      width: 8px;
      height: 8px;
      background: #ccc;          /* BOLINHAS */
      border-radius: 50%;
      animation: ggTyping 1.4s infinite ease-in-out;
    }

    .gg-typing span:nth-child(1) {
      animation-delay: 0s;
    }

    .gg-typing span:nth-child(2) {
      animation-delay: .2s;
    }

    .gg-typing span:nth-child(3) {
      animation-delay: .4s;
    }

    @keyframes ggTyping {
      0% {
        opacity: .4;
        transform: translateY(0);
      }
      20% {
        opacity: 1;
        transform: translateY(-4px);
      }
      40% {
        opacity: .4;
        transform: translateY(0);
      }
    }


    #meu-chatwoot-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;   
    height: 80px;
    padding: 4px;   
    border-radius: 50%;
    border: none;
    background: #0f172a;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  #meu-chatwoot-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  #meu-chatwoot-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
  }

  #meu-chatwoot-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Opcional: esconder em telas muito pequenas */
  @media (max-width: 480px) {
    #meu-chatwoot-btn {
      bottom: 16px;
      right: 16px;
      width: 56px;
      height: 56px;
    }
  }

