-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-en.html
More file actions
324 lines (274 loc) · 14.2 KB
/
index-en.html
File metadata and controls
324 lines (274 loc) · 14.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>João Tomás M. Venâncio | Portfolio</title>
<meta name="description" content="Product Owner and AI Engineer. Founder of C&T.AI — building AI agents, data pipelines, and SaaS solutions.">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
--bg: #ffffff;
--text: #24292f;
--muted: #57606a;
--link: #0969da;
--border: #d0d7de;
--heading: #0550ae;
--hover-bg: #f6f8fa;
}
[data-theme="dark"] {
--bg: #0d1117;
--text: #c9d1d9;
--muted: #8b949e;
--link: #58a6ff;
--border: #30363d;
--heading: #79c0ff;
--hover-bg: #161b22;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.7;
font-size: 15px;
max-width: 780px;
margin: 0 auto;
padding: 48px 32px 80px;
transition: background 0.3s, color 0.3s;
}
/* Controls */
.controls {
position: fixed;
top: 20px;
right: 24px;
display: flex;
gap: 10px;
z-index: 100;
}
.ctrl-btn {
background: var(--bg);
border: 1px solid var(--border);
border-radius: 8px;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--muted);
text-decoration: none;
font-size: 15px;
transition: all 0.2s;
}
.ctrl-btn:hover {
color: var(--text);
border-color: var(--muted);
background: var(--hover-bg);
}
.ctrl-btn svg { width: 16px; height: 16px; fill: currentColor; }
[data-theme="dark"] .icon-moon { display: none; }
:root:not([data-theme="dark"]) .icon-sun { display: none; }
/* Typography */
h1 {
font-size: 26px;
font-weight: 700;
letter-spacing: -0.5px;
margin-bottom: 24px;
color: var(--text);
}
h2 {
font-size: 13px;
font-weight: 600;
color: var(--heading);
text-transform: uppercase;
letter-spacing: 0.8px;
border-bottom: 1px solid var(--border);
padding-bottom: 6px;
margin: 40px 0 16px;
}
p {
margin-bottom: 14px;
color: var(--text);
}
a {
color: var(--link);
text-decoration: none;
}
a:hover { text-decoration: underline; }
strong { font-weight: 600; }
/* Intro with floated image */
.intro::after {
content: "";
display: table;
clear: both;
}
.profile-img {
float: left;
width: 140px;
height: 140px;
object-fit: cover;
object-position: top;
border-radius: 6px;
margin: 4px 24px 12px 0;
cursor: pointer;
transition: opacity 0.3s;
}
.profile-img:hover { opacity: 0.85; }
/* Lists */
ul {
padding-left: 22px;
margin-bottom: 16px;
}
li {
margin-bottom: 10px;
color: var(--text);
}
li::marker {
color: var(--muted);
}
/* Resources inline */
.resources {
list-style: none;
padding-left: 0;
}
.resources li {
display: inline;
margin-right: 8px;
}
.resources li::after {
content: " ·";
color: var(--muted);
margin-left: 8px;
}
.resources li:last-child::after { content: ""; }
/* Footer quote */
.closing {
margin-top: 56px;
padding-top: 20px;
border-top: 1px solid var(--border);
font-size: 13px;
color: var(--muted);
font-style: italic;
}
/* Mobile */
@media (max-width: 600px) {
body { padding: 64px 20px 60px; }
.profile-img {
float: none;
display: block;
width: 120px;
height: 120px;
margin: 0 0 20px;
}
h1 { font-size: 22px; }
.controls { top: 14px; right: 14px; }
}
</style>
<script>
const savedTheme = localStorage.getItem('theme');
if (savedTheme === 'dark') {
document.documentElement.setAttribute('data-theme', 'dark');
}
</script>
</head>
<body>
<div class="controls">
<a href="index.html" class="ctrl-btn" title="Versão em Português">🇧🇷</a>
<button id="theme-toggle" class="ctrl-btn" aria-label="Toggle theme">
<svg class="icon-sun" viewBox="0 0 24 24"><path d="M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41L5.99 4.58zm12.37 12.37c-.39-.39-1.03-.39-1.41 0-.39.39-.39 1.03 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0 .39-.39.39-1.03 0-1.41l-1.06-1.06zm1.06-10.96c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41.39.39 1.03.39 1.41 0l1.06-1.06zM7.05 18.36c.39-.39.39-1.03 0-1.41-.39-.39-1.03-.39-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41.39.39 1.03.39 1.41 0l1.06-1.06z"/></svg>
<svg class="icon-moon" viewBox="0 0 24 24"><path d="M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.46-.04-.92-.1-1.36-.98 1.37-2.58 2.26-4.4 2.26-3.03 0-5.5-2.47-5.5-5.5 0-1.82.89-3.42 2.26-4.4-.44-.06-.9-.1-1.36-.1z"/></svg>
</button>
</div>
<h1>João Tomás M. Venâncio</h1>
<div class="intro">
<img id="profile-photo" src="assets/image_jt.jpg" alt="João Tomás Venâncio" class="profile-img">
<p>Welcome! Here you can find a bit about myself and the stuff I have been building.</p>
<p>I am the founder of <strong>C&T.AI</strong> (Codetrade Intelligence), working as a Product Owner and AI Engineer. I have expertise in software modeling, process automation, AI agents, and data science. I build end-to-end products and solutions for companies operating in highly demanding analytical environments.</p>
<p>I hold a Bachelor's degree in Business Administration (UCDB), with MBAs in Global Broker (IBMEC) and Data Science & Analytics (USP-ESALQ), CPA-10 certification, and complementary training in leadership, data, and product. Currently pursuing a degree in Systems Analysis and Software Engineering (Estácio). Based in Campo Grande, MS — Brazil.</p>
</div>
<h2>Resources and Contact</h2>
<ul class="resources">
<li><a href="mailto:joaotomasvenancio@gmail.com">Email</a></li>
<li><a href="https://wa.me/5567992265673" target="_blank">WhatsApp</a></li>
<li><a href="https://www.linkedin.com/in/joao-tomas-martins-venancio/" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/codetradeai" target="_blank">GitHub</a></li>
</ul>
<h2>Artificial Intelligence and Legal Ops (2025–...)</h2>
<p>At <strong>Ernesto Borges Advogados</strong>, I lead Data, AI & Automation initiatives within the Legal Operations division. My goal is to scale complex legal operations through the technical implementation of LLMs and automation.</p>
<ul>
<li><strong>Legal RAG:</strong> Retrieval-Augmented Generation system in production over thousands of internal documents, with ingestion, chunking, and semantic retrieval using Pinecone and OpenAI.</li>
<li><strong>Process Mapping and Redesign:</strong> Optimization of critical operational workflows (post-registration, hearing minutes, signatures) via RPA and modular prompt architectures.</li>
<li><strong>Agile Management (Legal Ops):</strong> Delivery coordination in Azure DevOps, connecting legal needs, tech squads, and data infrastructure. Governance via KPIs and BI dashboards.</li>
</ul>
<h2>SaaS Products and AI Agents (2024–...)</h2>
<p>As Founder of <strong>C&T.AI</strong>, I focus on the design and autonomous implementation of data and AI solutions for Startups and SMEs.</p>
<ul>
<li><strong>Sherlock Stock (Insights):</strong> SaaS tool for B3 market and asset analysis. Integration with financial APIs to develop a "moat" through personalized user memory (React/TypeScript, Supabase, and n8n).</li>
<li><strong>Foco:</strong> Database architecture (Supabase) and UI/UX for a personal development app centered on high-performance mindset techniques for the user (Agent).</li>
<li><strong>SDR Agents:</strong> Autonomous conversational agents for WhatsApp integrated with n8n, Z-API, OpenAI, and CRMs for active lead qualification.</li>
</ul>
<h2>Financial Markets and Growth (2023–2024)</h2>
<p>Previously, I applied data analysis directly to business origination and systematic trading operations.</p>
<ul>
<li>At <strong>Nelogica</strong>, I led Growth and LTV strategies for the trading robots module, leveraging the active user base by 4x (+7,140 traders). I technically created and hosted the official automation community (+40k members, +80k views).</li>
<li>At <strong>CM Capital</strong>, I worked as a Direct Market Access (DMA) Analyst, focusing on the development and integration of algorithmic trading strategies (C# DLLs) for the financial market.</li>
<li>At <strong>Cubo Analítica</strong>, I led strategic partnerships and consulting projects focused on data and analytics.</li>
</ul>
<h2>Skills and Tools</h2>
<ul>
<li><strong>AI & Automation:</strong> n8n, LangChain, LangGraph, OpenAI API, Claude API, RAG Pipelines, Prompt Engineering, Pinecone, Supabase Vector.</li>
<li><strong>Development:</strong> Python, TypeScript, React, Node.js, SQL, PostgreSQL, REST APIs, Power Automate, C# (DLLs), Docker.</li>
<li><strong>Data & Analytics:</strong> Power BI, Pandas, Machine Learning, Scikit-learn, BRAPI, B3 Market Data.</li>
<li><strong>Fintech & Product:</strong> Systematic Trading (Nelogica/Profit), NTSL, DMA, Agile Methodologies (Scrum), Azure DevOps, Product Owner.</li>
</ul>
<h2>Education</h2>
<ul>
<li><strong>Systems Analysis and Software Engineering</strong> — Estácio (2025–2028)</li>
<li><strong>MBA in Data Science and Analytics</strong> — USP / ESALQ (400h)</li>
<li><strong>Global Broker MBA / InfoMoney</strong> — IBMEC (420h)</li>
<li><strong>Bachelor's in Business Administration</strong> — Universidade Católica Dom Bosco (UCDB)</li>
<li><strong>Postgraduate in Law</strong> — Focus on Civil Procedure (in progress)</li>
<li><strong>Data Science Training</strong> — DNC (520h) + Trading with Data (2024–2026)</li>
<li><strong>Reserve Officer (Cavalry)</strong> — NPOR / 20th RCB</li>
</ul>
<h2>Certifications</h2>
<ul>
<li><strong>Technology:</strong> Python Pandas & Statistics (Alura), Data Science & ML (Alura/DNC), Advanced Power BI & GA4, Big Data and Software Architecture Fundamentals.</li>
<li><strong>Market:</strong> CPA-10 ANBIMA, Technical Analysis (Saint Paul).</li>
<li><strong>Leadership:</strong> Leadership 4.0 Track (Saint Paul – 228h), Professional Coach (SLAC – 120h), PDC-Professional DISC, Agile Methods.</li>
</ul>
<h2>Background and Past Projects</h2>
<p>My foundation merges leadership, systems development, and tactical resilience.</p>
<ul>
<li><strong>Previous career:</strong> Relationship Assistant Level III (Nelogica, 2021–2022), Corporate Assistant and Teller (Sicoob, 2021; Uniprime, 2019), Apple B2B Specialist (iPlace, 2020), Managing Partner of a Cosmetics Industry (Ana Mattos / Ybá Cosméticos, 2015–2017).</li>
<li><strong>Military (2014):</strong> Reserve Officer Aspirant, Cavalry Branch (20th RCB – NPOR/Brazilian Army). An experience that consolidated discipline, leadership under pressure, and decision-making in uncertain scenarios.</li>
<li><strong>Sports:</strong> In my free time, I pursue high performance in Triathlon and CrossFit training.</li>
</ul>
<p class="closing">"Discipline is the bridge between goals and accomplishment."</p>
<script>
const themeToggleBtn = document.getElementById('theme-toggle');
const profilePhoto = document.getElementById('profile-photo');
themeToggleBtn.addEventListener('click', () => {
let theme = document.documentElement.getAttribute('data-theme');
let switchToTheme = theme === 'dark' ? 'light' : 'dark';
if (switchToTheme === 'dark') {
document.documentElement.setAttribute('data-theme', 'dark');
} else {
document.documentElement.removeAttribute('data-theme');
}
localStorage.setItem('theme', switchToTheme);
});
if (profilePhoto) {
const savedPhoto = localStorage.getItem('profilePhoto');
if (savedPhoto) profilePhoto.src = savedPhoto;
profilePhoto.addEventListener('click', () => {
const isDefault = profilePhoto.src.endsWith('assets/image_jt.jpg');
const newSrc = isDefault ? 'assets/image_jt_2.JPG' : 'assets/image_jt.jpg';
profilePhoto.src = newSrc;
localStorage.setItem('profilePhoto', newSrc);
});
}
</script>
</body>
</html>