#chatbot-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

#chatbot-btn {
    background: #0052cc;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 65px;
    /* ADICIONE */
    height: 65px;
    /* ADICIONE */
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    transition: .3s;
    background-image: url('/static/images/bot-icon.svg');
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}


#chatbot-btn:hover {
    transform: scale(1.08);
}

#chatbot-window {
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, .2);
    position: absolute;
    bottom: 80px;
    right: 0;
    display: none;
    flex-direction: column;
}

#chatbot-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0052cc;
    padding: 14px 16px;
    border-radius: 14px 14px 0 0;
}

#chatbot-header img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

#chatbot-header span {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

#chatbot-messages {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    font-size: 14px;
    color: #333;
}

.message {
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 85%;
}

.bot {
    background: #f1f6ff;
    color: #003b9e;
    align-self: flex-start;
}

.user {
    background: #0052cc;
    color: white;
    align-self: flex-end;
}

#chatbot-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

#chatbot-input {
    flex: 1;
    border: none;
    padding: 12px;
}

#chatbot-send {
    background: #0052cc;
    color: white;
    border: none;
    padding: 0 16px;
    cursor: pointer;
}