.wrap_posso_ajudar {
    margin-left: 20px;
}
.smart-modal-body select {
    padding: 10px 5px;
    height: auto;
}
.botao_iniciar_conversa {
    box-shadow: 0px 10px 14px -7px #3e7327;
    background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
    background-color:#77b55a;
    border-radius:4px;
    border:1px solid #4b8f29;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:16px;
    font-weight:bold;
    padding:14px 30px;
    text-decoration:none;
    text-shadow:0px 1px 0px #5b8a3c;
    width: 100%;
    text-transform: uppercase;
}
.botao_iniciar_conversa:hover {
    background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
    background-color:#72b352;
}
.botao_iniciar_conversa:active {
    position:relative;
    top:1px;
}

/* modal.css */

body.smart-modal-open {
    overflow: hidden;
}

/* overlay branco com 90% de transparência */
.smart-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.smart-modal-overlay.is-open {
    display: flex;
}

/* modal */
.smart-modal {
    width: 92%;
    max-width: 480px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    position: relative;
    padding: 18px;
    outline: none;
}

/* desktop: mantém max 500 e ocupa menos */
@media (min-width: 768px) {
    .smart-modal {
        width: 100%;
        max-width: 480px;
    }
}

.smart-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 28px;
    line-height: 40px;
}

.smart-modal-body {
    margin-top: 20px;
}

/* loading / erro (opcional) */
.smart-modal-loading {
    font-size: 14px;
}

.smart-modal-error {
    font-size: 14px;
    line-height: 1.4;
}