/* ÍCONE FLUTUANTE */
#chatbot-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #6A32F0;
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    transition: 0.3s;
}

#chatbot-button img {
    width: 35px;
    height: 35px;
}

#chatbot-button:hover {
    transform: scale(1.1);
}

/* CAIXA DO CHATBOT */
#chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    font-family: Arial, sans-serif;
    z-index: 9999;
    display: none;
}

#chatbot-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

#chatbot-header {
    background: #6A32F0;
    color: #fff;
    padding: 12px;
    font-size: 19px;
    font-weight: bold;
    cursor: pointer;
}

#chatbot-body {
    height: 350px;
    display: flex;
    flex-direction: column;
}

#chatbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.message {
    padding: 10px;
    margin: 8px 0;
    border-radius: 12px;
    max-width: 80%;
    white-space: pre-line;
}

.bot {
    background: #F2EAFF;
    color: #3d2d7a;
    align-self: flex-start;
}

.user {
    background: #6A32F0;
    color: #fff;
    align-self: flex-end;
}

#chatbot-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

#chatbot-input {
    flex: 1;
    border: none;
    padding: 12px;
    outline: none;
}

#chatbot-send {
    width: 50px;
    border: none;
    background: #6A32F0;
    color: white;
    cursor: pointer;
    font-size: 18px;
}
