#wlp-whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

#wlp-whatsapp-button:hover {
    transform: scale(1.05);
}

#wlp-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wlp-modal-content {
    background: #fff;
    width: 330px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.wlp-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: #075e54;
    color: white;
    padding: 20px 20px 15px 20px;
}

.wlp-header-text {
    display: flex;
    flex-direction: column;
}

.wlp-modal-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 3px;
    color: #fff;
}

.wlp-subtitle-dot {
    font-size: 13px;
    color: #cfd8dc;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wlp-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    display: inline-block;
}

.wlp-close {
    line-height: 1;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    opacity: 0.8;
}

.wlp-close:hover {
    opacity: 1;
}

.wlp-modal-body {
    padding: 20px;
    background: #fafafa;
}

.wlp-modal-body-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    margin-top: 0;
}

.wlp-modal-content select,
.wlp-modal-content input,
.wlp-modal-content textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 14px !important;
    color: #333 !important;
    outline: none;
    transition: border-color 0.2s;
}

.wlp-modal-content textarea {
    resize: vertical;
    min-height: 80px;
}

.wlp-modal-content select:focus,
.wlp-modal-content input:focus,
.wlp-modal-content textarea:focus {
    border-color: #25d366 !important;
}

#wlp_send {
    width: 100%;
    padding: 12px;
    background: #25d366;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
    margin-top: 5px;
}

#wlp_send:hover {
    background: #20ba56;
}

.wlp_politicas {
    font-size: 11px;
    margin-top: 10px;
    color: #888;
    text-align: center;
}

.wlp_politicas a {
    color: #075e54;
    text-decoration: underline;
}

.wlp_politicas a:hover {
    color: #25d366;
}