/* CONTAINER PRINCIPAL DO INPUT */
#container-input-studio {
    padding: 15px; 
    background: rgba(0, 0, 0, 0.6); 
    border-top: 1px solid rgba(0, 255, 136, 0.2); 
    display: flex; 
    align-items: flex-end; 
    gap: 10px;
    backdrop-filter: blur(5px);
}

/* ÁREA DE TEXTO (TEXTAREA) */
#input-pergunta-studio {
    flex: 1; 
    background: transparent; 
    border: none; 
    color: #ffffff; 
    outline: none; 
    resize: none; 
    font-size: 1rem; 
    min-height: 25px; 
    max-height: 150px; 
    padding: 5px 0; 
    font-family: 'Segoe UI', sans-serif;
}

/* BOTÃO DE ENVIO NEON */
#btn-enviar-studio {
    background: #00ff88; 
    color: #000; 
    border: none; 
    border-radius: 50%; 
    width: 42px; 
    height: 42px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4); 
    transition: transform 0.2s, box-shadow 0.2s;
}

#btn-enviar-studio:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}
