body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.floating-button {
    position: fixed;
    bottom: 150px;
    right: 15px;
    background-color: #25d366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

#notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 8px;
    font-size: 12px;
}

#whatsapp-form {
    border-radius: 10px;
    padding: 20px;
    position: fixed;
    bottom: 100px;
    right: 0;
    width: 300px;
    background-color: #075e54;
    border: 1px solid #ccc;
    box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    color: #fff;
}

#whatsapp-form.active {
    transform: translateX(0);
}

#whatsapp-form-inner {
    padding: 25px;
}

#whatsapp-form input,
#whatsapp-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #ece5dd;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

#close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: hand;
    font-size: 16px;
}

#send-button {
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

#send-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
/* Estilo para tela cheia em dispositivos móveis */
@media (max-width: 767px) {
    body {
        overflow: hidden; /* Impede a rolagem da página */
    }

    #whatsapp-form.active {
        width: 90%; /* Defina a largura para 100% */
        height: 100%; /* Defina a altura para 100% */
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 0; /* Remova a borda arredondada, se houver */
    }
}

