-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidentity.html
More file actions
274 lines (242 loc) · 11.6 KB
/
identity.html
File metadata and controls
274 lines (242 loc) · 11.6 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Identity | Kaled San Martín Lastra</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
:root {
--swiss-blue: #0A2647;
--swiss-gray: #f4f4f4;
--accent: #205295;
--gold: #8E6E16;
--cyber-green: #00ffcc;
--dark-bg: #0d0d0d;
}
* { box-sizing: border-box; }
body {
font-family: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
margin: 0;
background-color: var(--dark-bg);
background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0d0d0d 100%);
display: flex;
justify-content: center;
min-height: 100vh;
}
.social-bar {
position: fixed;
left: 20px;
top: 50%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
gap: 25px;
z-index: 100;
}
.social-link {
color: #555;
font-size: 20px;
text-decoration: none;
transition: 0.3s;
}
.social-link:hover { color: var(--cyber-green); transform: scale(1.2); }
.nav-controls {
position: fixed;
top: 20px;
right: 20px;
display: flex;
gap: 15px;
z-index: 1000;
}
.btn-action {
padding: 10px 20px;
cursor: pointer;
font-weight: 900;
text-transform: uppercase;
font-size: 11px;
letter-spacing: 1px;
border-radius: 4px;
transition: 0.3s;
border: 1px solid var(--cyber-green);
}
.btn-back { background: transparent; color: var(--cyber-green); }
.btn-download { background: var(--cyber-green); color: black; border: none; box-shadow: 0 0 15px rgba(0, 255, 204, 0.3); }
.page {
background: white;
width: 850px;
margin: 40px auto;
padding: 50px 60px;
position: relative;
box-shadow: 0 0 40px rgba(0, 255, 204, 0.15);
color: #1a1a1a;
}
header {
display: grid;
grid-template-columns: 1.8fr 1fr;
border-bottom: 6px solid var(--swiss-blue);
padding-bottom: 20px;
margin-bottom: 30px;
gap: 15px;
}
.name-title h1 {
margin: 0; font-size: 38px; font-weight: 900;
letter-spacing: -1.5px; text-transform: uppercase;
line-height: 0.9; color: var(--swiss-blue);
}
.name-title p {
margin: 10px 0 0; font-size: 13px; font-weight: 700;
letter-spacing: 1.2px; color: var(--accent); text-transform: uppercase;
}
.contact-info {
font-size: 10.5px; text-align: right;
display: flex; flex-direction: column; justify-content: flex-end; font-weight: 600;
}
.contact-info a { text-decoration: none; color: black; margin-bottom: 2px; }
.section-grid {
display: grid;
grid-template-columns: 160px 1fr;
margin-bottom: 22px;
gap: 20px;
}
h2 { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin: 0; color: var(--accent); font-weight: 900; }
.summary { font-size: 13px; font-weight: 500; line-height: 1.5; margin-bottom: 25px; text-align: justify; }
.entry { margin-bottom: 15px; }
.entry-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2px; }
.entry-title { font-weight: 800; font-size: 13.5px; text-transform: uppercase; }
.entry-date { font-size: 10px; font-weight: 800; background: var(--swiss-gray); padding: 1px 6px; border-radius: 2px; }
.company-sub { font-size: 12px; color: var(--accent); font-weight: 700; margin-bottom: 5px; }
ul { margin: 5px 0; padding-left: 18px; list-style: square; }
li { font-size: 11px; margin-bottom: 3px; }
.project-box {
border-left: 4px solid var(--swiss-blue);
background: var(--swiss-gray);
padding: 10px 15px;
margin-bottom: 10px;
}
.project-box b { font-size: 11.5px; text-transform: uppercase; color: var(--swiss-blue); display: block; margin-bottom: 3px; }
.project-box span { font-size: 11px; line-height: 1.3; display: block; }
.skills-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.skill-group-title { font-size: 10px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; border-bottom: 2px solid var(--swiss-blue); padding-bottom: 2px; }
.skill-list { font-size: 10px; font-weight: 500; color: #333; line-height: 1.5; }
.lang-item { font-size: 11px; font-weight: 700; text-transform: uppercase; margin-right: 15px; }
.lang-level { font-weight: 400; color: var(--accent); margin-left: 4px; }
.distinction-tag { font-size: 8.5px; color: var(--gold); font-weight: 900; text-transform: uppercase; border: 1px solid var(--gold); padding: 1px 4px; display: inline-block; }
@media print {
.no-print, .social-bar, .nav-controls { display: none !important; }
body { background: white; }
.page { margin: 0; width: 100%; box-shadow: none; padding: 40px 50px; }
@page { size: letter; margin: 0; }
}
</style>
</head>
<body>
<div class="nav-controls no-print">
<button class="btn-action btn-back" onclick="location.href='index.html'"><i class="fas fa-arrow-left"></i> Volver</button>
<button class="btn-action btn-download" onclick="window.print()"><i class="fas fa-file-pdf"></i> Exportar PDF</button>
</div>
<aside class="social-bar no-print">
<a href="https://github.com/KaledSML" target="_blank" class="social-link"><i class="fab fa-github"></i></a>
<a href="https://youtube.com/@kaledsml" target="_blank" class="social-link"><i class="fab fa-youtube"></i></a>
<a href="mailto:kaledsanmartinlastra@gmail.com" class="social-link"><i class="fas fa-envelope"></i></a>
</aside>
<div class="page">
<header>
<div class="name-title">
<h1>Kaled<br>San Martín Lastra</h1>
<p>Ingeniera Informática / Especialista IT</p>
</div>
<div class="contact-info">
<a href="tel:+56987036979">+56 9 8703 6979</a>
<a href="mailto:kaledsanmartinlastra@gmail.com">kaledsanmartinlastra@gmail.com</a>
<a href="https://github.com/KaledSML">github.com/KaledSML</a>
<a href="https://kaledsml.github.io">kaledsml.github.io</a>
<span style="opacity: 0.6">SANTIAGO, CHILE</span>
</div>
</header>
<div class="summary">
Soy una ingeniera curiosa y enfocada en diseñar tecnología eficiente que proteja y aporte valor real. Mi metodología une <b>ciberseguridad</b>, <b>data analytics</b> y <b>UX</b> para transformar la complejidad técnica en soluciones humanas y seguras.
</div>
<div class="section-grid">
<h2>Educación</h2>
<div class="content">
<div class="entry">
<div class="entry-header">
<div>
<span class="entry-title">Ingeniería Informática</span>
<span class="distinction-tag">Distinción</span>
</div>
<span class="entry-date">2018 — 2024</span>
</div>
<div class="company-sub">Universidad Bernardo O'Higgins</div>
</div>
<div class="entry" style="margin-top:-5px">
<div class="entry-header">
<div>
<span class="entry-title">Licenciatura en Ciencias</span>
<span class="distinction-tag">Distinción Unánime</span>
</div>
<span class="entry-date">2018 — 2024</span>
</div>
<div class="company-sub">Universidad Bernardo O'Higgins</div>
</div>
</div>
</div>
<div class="section-grid">
<h2>Experiencia</h2>
<div class="content">
<div class="entry">
<div class="entry-header">
<span class="entry-title">Audit Staff & Compliance</span>
<span class="entry-date">2022</span>
</div>
<div class="company-sub">Enel Chile S.A. | GDS | Calificación: 7.0</div>
<ul>
<li>Auditorías bajo marcos <b>ISO 27001, NIST y NERC-CIP</b>.</li>
<li>Cumplimiento IT/OT y análisis de vulnerabilidades técnicas.</li>
<li>Soporte proactivo en controles IT Baseline y agilización de procesos.</li>
</ul>
</div>
</div>
</div>
<div class="section-grid">
<h2>Proyectos</h2>
<div class="content">
<div class="project-box">
<b>🛡️ NIST SENTINEL</b>
<span>Motor de estado para el Framework NIST CSF 2.0. Procesamiento local Zero-Knowledge.</span>
</div>
<div class="project-box">
<b>🐾 MISHI HEALTHTECH</b>
<span>IA (NLP) para disminuir el deterioro de la salud mental en estudiantes de educación superior.</span>
</div>
<div class="project-box">
<b>🐈 PUDIN GHOST CAT</b>
<span>Agente RPA en Python para prevención de burnout laboral mediante monitoreo activo.</span>
</div>
</div>
</div>
<div class="section-grid">
<h2>Stack</h2>
<div class="skills-wrapper">
<div>
<div class="skill-group-title">Seguridad & Gobierno</div>
<div class="skill-list">ISO 27001/2, NIST CSF 2.0, NERC-CIP, Auditoría IT/OT, Azure AI (AI-900), Microsoft SC-900.</div>
</div>
<div>
<div class="skill-group-title">Desarrollo & UX</div>
<div class="skill-list">Python, SQL, Java, JavaScript, C#, R, Figma (UX/UI), Adobe CC, Agile/Trello, PMBOK.</div>
</div>
</div>
</div>
<div class="section-grid" style="margin-bottom: 0;">
<h2>Idiomas</h2>
<div class="content" style="display: flex; align-items: baseline;">
<span class="lang-item">Inglés<span class="lang-level">Intermedio </span></span>
<span class="lang-item">Francés<span class="lang-level">Introductorio </span></span>
<span class="lang-item">Chino<span class="lang-level">Introductorio</span></span>
</div>
</div>
</div>
</body>
</html>