
#chat-toggle {
      position: fixed;
  bottom: 7rem;
  right: 2rem;
  transition: .3s all;
  -webkit-animation-name: balanga;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0s;
    background-color: #33d5d5;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 0px 0px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000;
}

#chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    font-family: Arial, sans-serif;
    z-index: 1000;
    overflow: hidden;
}

.chat-hidden {
    display: none;
}

.chat-header {
    background: #194d37;
    color: white;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
}

.chat-body {
    padding: 15px;
    background-image: url(https://mundolemon.com.br/assets/img/Fundo-WhatsApp.jpg);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
}

.chat-message {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #ddd;
}

#lead-form input, #lead-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

#lead-form .form-row {
    display: flex;
    gap: 5px;
}

#lead-form .form-row input {
    flex: 1;
}

#lead-form button {
    width: 100%;
    padding: 12px;
    background: #194d37;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

#lead-form button:hover {
    background: #0f3324;
}

#form-msg {
    margin-top: 10px;
    font-size: 14px;
    color: green;
    text-align: center;
}