.elementor-788 .elementor-element.elementor-element-bb61f0e{--display:flex;--flex-direction:row-reverse;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap-reverse;--border-radius:50px 50px 0px 0px;overflow:visible;}.elementor-788 .elementor-element.elementor-element-bb61f0e:not(.elementor-motion-effects-element-type-background), .elementor-788 .elementor-element.elementor-element-bb61f0e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0D4766;}.elementor-788 .elementor-element.elementor-element-dde5dfc{margin:0px 20px calc(var(--kit-widget-spacing, 0px) + 0px) 10px;}.elementor-788 .elementor-element.elementor-element-dde5dfc .elementor-icon-wrapper{text-align:center;}.elementor-788 .elementor-element.elementor-element-dde5dfc.elementor-view-stacked .elementor-icon{background-color:#FFFFFF;}.elementor-788 .elementor-element.elementor-element-dde5dfc.elementor-view-framed .elementor-icon, .elementor-788 .elementor-element.elementor-element-dde5dfc.elementor-view-default .elementor-icon{color:#FFFFFF;border-color:#FFFFFF;}.elementor-788 .elementor-element.elementor-element-dde5dfc.elementor-view-framed .elementor-icon, .elementor-788 .elementor-element.elementor-element-dde5dfc.elementor-view-default .elementor-icon svg{fill:#FFFFFF;}.elementor-788 .elementor-element.elementor-element-dde5dfc .elementor-icon{font-size:14px;}.elementor-788 .elementor-element.elementor-element-dde5dfc .elementor-icon svg{height:14px;}.elementor-788 .elementor-element.elementor-element-4f9980d{width:100%;max-width:100%;margin:8px 0px calc(var(--kit-widget-spacing, 0px) + 5px) 50px;padding:0px 0px 0px 0px;text-align:center;}.elementor-788 .elementor-element.elementor-element-4f9980d .elementor-heading-title{font-size:15px;font-weight:400;text-transform:none;font-style:normal;text-decoration:none;color:#FFFFFF;}.elementor-788 .elementor-element.elementor-element-b39aa7b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-788 .elementor-element.elementor-element-b39aa7b:not(.elementor-motion-effects-element-type-background), .elementor-788 .elementor-element.elementor-element-b39aa7b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}#elementor-popup-modal-788 .dialog-widget-content{background-color:#02010100;border-radius:50px 50px 0px 0px;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);margin:10px 10px 0px 10px;}#elementor-popup-modal-788 .dialog-message{width:400px;height:auto;}#elementor-popup-modal-788{justify-content:flex-end;align-items:flex-end;}@media(max-width:767px){#elementor-popup-modal-788 .dialog-message{width:325px;}}/* Start custom CSS */#unna-chat-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

#unna-chat-header {
    background: #2C8CC0;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.unna-avatar { font-size: 24px; margin-right: 10px; }
.unna-header-info { display: flex; flex-direction: column; }
#unna-chat-title { font-weight: 700; font-size: 16px; }
.unna-subtitle { font-size: 11px; opacity: 0.9; }

#unna-chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f4f6f8;
}

#unna-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Bolhas de Mensagem */
.unna-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    animation: fadeIn 0.3s ease;
}
.unna-msg.bot {
    background: #ffffff;
    color: #333;
    border-top-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.unna-msg.user {
    background: #2C8CC0;
    color: white;
    align-self: flex-end;
    border-top-right-radius: 0;
}

/* Botões de Opção (A Árvore) */
.unna-options-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}
.unna-opt-btn {
    background: #e1f0f8;
    color: #2C8CC0;
    border: 1px solid #bce0f3;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    font-weight: 600;
}
.unna-opt-btn:hover {
    background: #2C8CC0;
    color: white;
}

/* Input Area */
#unna-chat-input-area {
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}
#unna-chat-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
}
#unna-chat-send {
    background: #2C8CC0;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.pulse-container,
.pulse-frame {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
}/* End custom CSS */