/* Estilos do Modal do WhatsApp / Leads */
.whatsapp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.whatsapp-modal-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    font-family: inherit;
}

.whatsapp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.whatsapp-modal-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #075e54;
    font-size: 20px;
}

.whatsapp-modal-box p {
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
}

.whatsapp-form-group {
    margin-bottom: 15px;
}

.whatsapp-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    font-size: 13px;
}

.whatsapp-form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.whatsapp-form-group input:focus {
    border-color: #25d366;
    outline: none;
}

.whatsapp-btn-enviar {
    width: 100%;
    background-color: #25d366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.whatsapp-btn-enviar:hover {
    background-color: #128c7e;
}