/* --- ESTILOS DO CHATBOT GEMINI PROFISSIONAL --- */
#gemini-chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    font-family: 'Open Sans', sans-serif;
}
#gemini-chat-button {
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
#gemini-chat-button:hover {
    background-color: #1557b0;
    transform: scale(1.05);
}
#gemini-chat-container {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    height: 480px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.gemini-chat-header {
    background: #1a73e8;
    color: white;
    padding: 15px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gemini-chat-header span {
    font-size: 15px;
}
#gemini-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}
.gemini-chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
    font-size: 13px;
    color: #333;
}
.gemini-chat-footer {
    display: flex;
    padding: 10px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}
#gemini-user-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-size: 13px;
}
#gemini-send-btn {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-left: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}