/* 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 */






/* BOTÃO 3D FUTURISTA */
#btn-enviar-studio {
    position: relative;
    background: linear-gradient(145deg, #00ff88, #00cc66); /* verde futurista */
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 0 #009944, 0 6px 15px rgba(0,255,136,0.4); /* efeito 3D */
    transition: all 0.2s ease-in-out;
}

/* Seta na lateral do botão */
#btn-enviar-studio::after {
    content: "➔";
    margin-left: 12px;
    font-size: 1.1rem;
    transition: transform 0.2s ease-in-out;
}

/* Hover */
#btn-enviar-studio:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 #009944, 0 12px 20px rgba(0,255,136,0.6);
    background: linear-gradient(145deg, #33ff99, #00cc66);
}

/* Clique */
#btn-enviar-studio:active {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #009944, 0 4px 10px rgba(0,255,136,0.4);
}

/* Estado enviado (usar JS para adicionar a classe .enviado) */
#btn-enviar-studio.enviado {
    background: #39FF14;
    box-shadow: 0 6px 0 #00aa00, 0 6px 15px rgba(57,255,20,0.5);
}

#btn-enviar-studio.enviado::after {
    content: "✓";
    margin-left: 8px;
    font-size: 1rem;
    transform: rotate(0deg);
}







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













/* BOTÃO ENCERRAR SESSÃO VERMELHO FUTURISTA */
#btn-logout {
    background: linear-gradient(145deg, #ff3b3b, #ff1a1a);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 59, 59, 0.5);
    transition: all 0.2s ease-in-out;
}

#btn-logout:hover {
    background: linear-gradient(145deg, #ff1a1a, #ff0000);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 59, 59, 0.7);
}

#btn-logout:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(255, 59, 59, 0.5);
}
