/* Classe para botões APEX com efeito gradiente */
.t-Button.botao-ia,
button.t-Button.botao-ia,
a.t-Button.botao-ia {
    background-color: #2196f3 !important;
    background-image: linear-gradient(90deg, #3f51b5, transparent) !important;
    background-size: 100% 100% !important;
    background-position: 0 0 !important;
    background-repeat: no-repeat !important;
    border: none !important;
    box-shadow: none !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 12px !important;
    border-radius: 4px !important;
    color: #fff !important;
    padding: 8px 16px !important;
    transition: background-color 1s !important;
}

.t-Button.botao-ia:hover,
button.t-Button.botao-ia:hover,
a.t-Button.botao-ia:hover,
.t-Button.botao-ia:focus,
button.t-Button.botao-ia:focus,
a.t-Button.botao-ia:focus {
    background-color: #e91e63 !important;
    color: #fff !important;
}