🎤 feat: Sistema de conversa por voz - auto-TTS quando mensagem vem do microfone, envio automático, melhor visibilidade do ícone

This commit is contained in:
2026-05-26 19:55:52 +00:00
parent 6c35f7ed1b
commit 0047614bf7
2 changed files with 34 additions and 10 deletions
+10 -7
View File
@@ -1223,10 +1223,11 @@ code {
.btn-voice {
background: none !important;
border: none !important;
color: var(--text-muted) !important;
color: var(--text-secondary, #a3a3a3) !important;
border-radius: 50% !important;
width: 32px !important;
height: 32px !important;
width: 36px !important;
height: 36px !important;
min-width: 36px !important;
display: flex;
justify-content: center;
align-items: center;
@@ -1237,17 +1238,19 @@ code {
}
.btn-voice svg {
width: 18px;
height: 18px;
width: 20px;
height: 20px;
}
.btn-voice:hover {
color: var(--text-primary) !important;
transform: scale(1.05);
color: var(--brand-green, #10a37f) !important;
background-color: rgba(16, 163, 127, 0.1) !important;
transform: scale(1.1);
}
.btn-voice.listening {
color: #ef4444 !important;
background-color: rgba(239, 68, 68, 0.12) !important;
animation: pulse-voice 1.5s ease-in-out infinite;
}