-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
420 lines (391 loc) · 20.2 KB
/
Copy pathindex.html
File metadata and controls
420 lines (391 loc) · 20.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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Consultoria personalizada da LibreCode para Nextcloud, LGPD e colaboração digital. Diagnóstico, arquitetura, migração e suporte sob medida para sua operação.">
<title>LibreCode | Consultoria Nextcloud Sob Medida</title>
<style>
:root {
--nc-blue: #0082c9;
--nc-dark: #1a1a1a;
--nc-gray: #4a4a4a;
--nc-light: #f8f9fa;
--nc-white: #ffffff;
--nc-accent: #00b0e6;
--radius: 10px;
--shadow: 0 4px 14px rgba(0,0,0,0.08);
--transition: all 0.25s ease;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--nc-dark); background: var(--nc-light); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
/* Header */
header { background: var(--nc-white); box-shadow: 0 2px 10px rgba(0,0,0,0.04); position: sticky; top: 0; z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.logo { font-weight: 800; font-size: 1.4rem; color: var(--nc-blue); display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--nc-blue); }
/* Hero */
.hero { background: linear-gradient(145deg, #005a8a 0%, #0082c9 100%); color: var(--nc-white); padding: 100px 0 70px; text-align: center; position: relative; overflow: hidden; }
.hero h1 { font-size: 3.2rem; margin-bottom: 18px; min-height: 1.2em; font-weight: 800; }
.hero h1 span { color: var(--nc-accent); }
.cursor { display: inline-block; width: 3px; background: var(--nc-accent); animation: blink 0.8s infinite; margin-left: 2px; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero h2 { font-size: 1.25rem; max-width: 750px; margin: 0 auto 36px; opacity: 0.95; font-weight: 400; line-height: 1.5; }
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.btn { padding: 16px 32px; border-radius: var(--radius); font-weight: 700; transition: var(--transition); cursor: pointer; border: 2px solid transparent; font-size: 1rem; }
.btn-primary { background: var(--nc-white); color: var(--nc-blue); }
.btn-primary:hover { background: var(--nc-accent); color: var(--nc-white); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--nc-white); border-color: rgba(255,255,255,0.7); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: var(--nc-white); }
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; font-size: 0.95rem; opacity: 0.9; }
.trust span { display: flex; align-items: center; gap: 6px; }
/* Solutions */
.apps { padding: 80px 0; background: var(--nc-white); }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 12px; font-weight: 700; }
.section-subtitle { text-align: center; color: var(--nc-gray); margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.app-card { padding: 24px 16px; border-radius: var(--radius); background: var(--nc-light); text-align: center; transition: var(--transition); }
.app-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: #eef6fc; }
.app-icon { font-size: 2.2rem; margin-bottom: 10px; }
.app-name { font-weight: 600; font-size: 1.05rem; }
/* Consulting */
.consulting { padding: 80px 0; }
.consulting-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 40px; }
.consulting-card { background: var(--nc-white); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); border-top: 4px solid var(--nc-blue); }
.consulting-card h3 { margin-bottom: 10px; }
.consulting-card p { color: var(--nc-gray); }
.consulting-list { list-style: none; margin-top: 20px; }
.consulting-list li { padding: 10px 0; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 8px; }
.consulting-list li::before { content: "✓"; color: var(--nc-blue); font-weight: bold; }
/* Contact */
.contact { padding: 80px 0; background: linear-gradient(180deg, #eef6fc 0%, #ffffff 100%); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 28px; align-items: start; }
.contact-copy { padding: 20px 0; }
.contact-copy h2 { font-size: 2.2rem; margin-bottom: 16px; }
.contact-copy p { color: var(--nc-gray); margin-bottom: 18px; }
.contact-points { list-style: none; margin-top: 24px; }
.contact-points li { padding: 10px 0; display: flex; align-items: flex-start; gap: 10px; }
.contact-points li::before { content: "•"; color: var(--nc-blue); font-weight: 800; line-height: 1.4; }
.contact-form-card { background: var(--nc-white); padding: 28px; border-radius: 18px; box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.95rem; font-weight: 700; color: var(--nc-dark); }
.field input, .field textarea {
width: 100%;
border: 1px solid #d9e4ef;
border-radius: 12px;
padding: 14px 16px;
font: inherit;
background: #fff;
color: var(--nc-dark);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus {
outline: none;
border-color: var(--nc-blue);
box-shadow: 0 0 0 3px rgba(0, 130, 201, 0.12);
}
.captcha-row { display: grid; gap: 12px; }
.captcha-tools { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.captcha-image {
width: 190px;
height: 64px;
border-radius: 12px;
border: 1px solid #d9e4ef;
background: #f8fbfe;
object-fit: contain;
}
.icon-btn {
border: 1px solid #d9e4ef;
background: var(--nc-white);
color: var(--nc-blue);
border-radius: 999px;
padding: 10px 14px;
font-weight: 700;
cursor: pointer;
}
.form-status {
display: none;
padding: 12px 14px;
border-radius: 12px;
font-weight: 600;
}
.form-status.is-error { display: block; background: #fff1f1; color: #9c1f1f; }
.form-status.is-success { display: block; background: #edf9f1; color: #146c2e; }
/* Security */
.security { padding: 80px 0; background: var(--nc-light); text-align: center; }
.security-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 32px; }
.badge { background: white; padding: 20px 28px; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 280px; }
.badge strong { display: block; margin-top: 6px; }
/* Footer */
footer { background: var(--nc-dark); color: #b0b0b0; padding: 48px 0 32px; text-align: center; font-size: 0.95rem; }
footer p { margin: 4px 0; }
footer a { color: var(--nc-accent); }
/* Responsive */
@media (max-width: 768px) {
.hero h1 { font-size: 2.4rem; }
.hero h2 { font-size: 1.1rem; }
.nav-links { display: none; }
.hero-ctas { flex-direction: column; align-items: center; }
.consulting-grid { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; }
.field-row { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">🌩️ LibreCode</div>
<div class="nav-links">
<a href="#solucoes">Soluções</a>
<a href="#consultoria">Consultoria</a>
<a href="#seguranca">Segurança</a>
<a href="#contato">Contato</a>
</div>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Consultoria para <span id="typewriter"></span><span class="cursor"></span></h1>
<h2>Reduza custos, acelere a adoção e mantenha controle total da sua colaboração digital com uma estratégia Nextcloud feita para a sua operação.</h2>
<div class="hero-ctas">
<a href="#contato" class="btn btn-primary">Pedir orçamento</a>
<a href="#consultoria" class="btn btn-secondary">Ver como funciona</a>
</div>
<div class="trust">
<span>🇧🇷 Dados no Brasil</span>
<span>🔒 LGPD Compliant</span>
<span>⚡ Projetos com foco em resultado</span>
<span>🛠 Suporte em Português</span>
</div>
</div>
</section>
<section id="solucoes" class="apps">
<div class="container">
<h2 class="section-title">Ganhos claros para a operação</h2>
<p class="section-subtitle">A consultoria da LibreCode prioriza valor comercial: menos fricção, mais segurança e uma adoção que realmente acontece.</p>
<div class="apps-grid">
<div class="app-card"><div class="app-icon">📉</div><div class="app-name">Menos Custo</div></div>
<div class="app-card"><div class="app-icon">🚀</div><div class="app-name">Mais Velocidade</div></div>
<div class="app-card"><div class="app-icon">🔐</div><div class="app-name">Mais Controle</div></div>
<div class="app-card"><div class="app-icon">🤝</div><div class="app-name">Mais Adoção</div></div>
<div class="app-card"><div class="app-icon">🔗</div><div class="app-name">Integrações</div></div>
<div class="app-card"><div class="app-icon">📊</div><div class="app-name">Visibilidade</div></div>
<div class="app-card"><div class="app-icon">📈</div><div class="app-name">Escala</div></div>
<div class="app-card"><div class="app-icon">🛠️</div><div class="app-name">Suporte</div></div>
</div>
</div>
</section>
<section id="consultoria" class="consulting">
<div class="container">
<h2 class="section-title">Consultoria personalizada para sua realidade</h2>
<p class="section-subtitle">Nada de pacote pronto. Você recebe uma proposta comercial baseada em maturidade, risco, escala e prioridade de negócio.</p>
<div class="consulting-grid">
<div class="consulting-card">
<h3>1. Diagnóstico</h3>
<p>Entendemos contexto, dor operacional, integrações existentes e metas de negócio para estruturar a proposta certa.</p>
<ul class="consulting-list">
<li>Levantamento de cenário atual</li>
<li>Mapeamento de riscos e gargalos</li>
<li>Priorização de quick wins</li>
</ul>
</div>
<div class="consulting-card">
<h3>2. Desenho da solução</h3>
<p>Definimos arquitetura, governança, integrações e estratégia de migração sem interromper a operação.</p>
<ul class="consulting-list">
<li>Arquitetura técnica e de acesso</li>
<li>Integrações com sistemas críticos</li>
<li>Roteiro de implantação por etapas</li>
</ul>
</div>
<div class="consulting-card">
<h3>3. Acompanhamento</h3>
<p>Validamos adoção, treinamos usuários-chave e ajustamos a solução conforme o uso real para maximizar retorno.</p>
<ul class="consulting-list">
<li>Treinamento e onboarding</li>
<li>Suporte assistido na transição</li>
<li>Melhorias contínuas após go-live</li>
</ul>
</div>
</div>
<div style="text-align:center; margin-top: 32px;">
<a href="#contato" class="btn btn-primary">Solicitar proposta comercial</a>
</div>
</div>
</section>
<section class="consulting" style="padding-top: 0;">
<div class="container">
<div style="background: linear-gradient(145deg, #005a8a 0%, #0082c9 100%); color: #fff; padding: 36px; border-radius: 18px; text-align: center; box-shadow: var(--shadow);">
<h2 class="section-title" style="color: #fff; margin-bottom: 12px;">Pronto para uma proposta que faça sentido para sua operação?</h2>
<p class="section-subtitle" style="color: rgba(255,255,255,0.9); margin-bottom: 24px; max-width: 760px;">Se você quer uma estimativa objetiva, um desenho de solução e um caminho claro de implementação, a LibreCode pode estruturar isso para você.</p>
<a href="#contato" class="btn btn-primary">Quero receber uma proposta</a>
</div>
</div>
</section>
<section id="contato" class="contact">
<div class="container">
<div class="contact-grid">
<div class="contact-copy">
<h2>Fale com a LibreCode</h2>
<p>Receba uma proposta comercial com escopo, caminho de implantação e próximos passos. O formulário abaixo envia direto para o SuiteCRM via middleware.</p>
<ul class="contact-points">
<li>Resposta com base no seu cenário real e não em pacote pronto.</li>
<li>Integração com SuiteCRM usando captcha e validação de envio.</li>
<li>Ideal para solicitações de orçamento, migração e consultoria técnica.</li>
</ul>
</div>
<div class="contact-form-card">
<div class="form-status" id="form-status" aria-live="polite"></div>
<form class="contact-form" id="WebToLeadForm" name="WebToLeadForm">
<div class="field-row">
<div class="field">
<label for="name">Nome completo *</label>
<input type="text" name="name" id="name" placeholder="Seu nome" required>
</div>
<div class="field">
<label for="email">E-mail *</label>
<input type="email" name="email" id="email" placeholder="voce@empresa.com" required>
</div>
</div>
<div class="field">
<label for="phone_mobile">Telefone / WhatsApp</label>
<input type="text" name="phone_mobile" id="phone_mobile" placeholder="(11) 99999-9999">
</div>
<div class="field">
<label for="description">O que você precisa? *</label>
<textarea name="description" id="description" rows="5" placeholder="Descreva seu cenário, tamanho do time, integrações ou objetivo principal." required></textarea>
</div>
<div class="captcha-row">
<div class="field">
<label for="codeImg">Digite o código da imagem *</label>
<input type="text" name="codeImg" id="codeImg" placeholder="Código do captcha" required>
</div>
<div class="captcha-tools">
<img alt="Imagem com captcha" class="captcha-image" id="captcha">
<button id="btnReload" type="button" class="icon-btn">Recarregar</button>
<button id="audioIcon" type="button" class="icon-btn">Ouvir captcha</button>
</div>
</div>
<button type="submit" class="btn btn-primary">Enviar solicitação</button>
</form>
</div>
</div>
</div>
</section>
<section id="seguranca" class="security">
<div class="container">
<h2 class="section-title">Segurança e conformidade como parte da consultoria</h2>
<p class="section-subtitle">A estratégia técnica já nasce com LGPD, controle de acesso, auditoria e continuidade operacional no centro das decisões.</p>
<div class="security-badges">
<div class="badge">🔒 Criptografia AES-256 e TLS 1.3 <strong>Proteção em repouso e em trânsito.</strong></div>
<div class="badge">📜 LGPD & GDPR ready <strong>Controles e políticas alinhados à operação.</strong></div>
<div class="badge">🇧🇷 Data centers em São Paulo <strong>Baixa latência e soberania de dados.</strong></div>
<div class="badge">🔄 Migração planejada <strong>Transição assistida com risco reduzido.</strong></div>
</div>
</div>
</section>
<footer id="rodape">
<div class="container">
<p>© 2026 LibreCode - Consultoria Nextcloud Sob Medida. Todos os direitos reservados.</p>
<p style="margin-top: 12px;"><a href="mailto:contato@librecode.coop">contato@librecode.coop</a> | <a href="https://wa.me/5511999999999">WhatsApp Comercial</a></p>
</div>
</footer>
<script>
// Typewriter effect
const words = ["processos", "arquitetura", "migração", "adoção", "governança", "integrações", "segurança", "sua operação"];
let i = 0, txt = '', isDeleting = false;
const el = document.getElementById('typewriter');
const crmBaseUrl = (window.LIBRECODE_CRM_BASE_URL || 'https://crm.librecode.coop').replace(/\/$/, '');
const formConfig = {
formUrl: `${crmBaseUrl}/suitecrm-form-middleware/validate.php`,
captchaUrl: `${crmBaseUrl}/suitecrm-form-middleware/captcha.php`,
captchaAudioUrl: `${crmBaseUrl}/suitecrm-form-middleware/audio_captcha.php`,
};
const form = document.getElementById('WebToLeadForm');
const captchaImg = document.getElementById('captcha');
const reloadButton = document.getElementById('btnReload');
const audioButton = document.getElementById('audioIcon');
const formStatus = document.getElementById('form-status');
let token = Date.now();
function showStatus(message, kind) {
formStatus.textContent = message;
formStatus.className = `form-status is-${kind}`;
formStatus.style.display = 'block';
}
function loadImage(nextToken) {
return fetch(`${formConfig.captchaUrl}?${nextToken}`, {
credentials: 'include',
}).then((response) => {
if (!response.ok) {
throw new Error('Falha ao carregar captcha');
}
return response.blob();
}).then((blob) => {
captchaImg.src = window.URL.createObjectURL(blob);
});
}
function playAudio() {
return fetch(`${formConfig.captchaAudioUrl}?${token}&lang=pt-BR`, {
credentials: 'include',
}).then((response) => {
if (!response.ok) {
throw new Error('Falha ao carregar captcha em áudio');
}
return response.blob();
}).then((blob) => {
const audio = new Audio();
audio.src = window.URL.createObjectURL(blob);
audio.play();
});
}
function type() {
const current = words[i];
txt = isDeleting ? current.substring(0, txt.length - 1) : current.substring(0, txt.length + 1);
el.textContent = txt;
let speed = isDeleting ? 50 : 90;
if (!isDeleting && txt === current) { speed = 1800; isDeleting = true; }
else if (isDeleting && txt === '') { isDeleting = false; i = (i + 1) % words.length; speed = 300; }
setTimeout(type, speed);
}
document.addEventListener('DOMContentLoaded', type);
loadImage(token).catch(() => showStatus('Não foi possível carregar o captcha. Recarregue a página.', 'error'));
reloadButton.addEventListener('click', () => {
token = Date.now();
loadImage(token).catch(() => showStatus('Não foi possível recarregar o captcha.', 'error'));
});
audioButton.addEventListener('click', () => {
playAudio().catch(() => showStatus('Não foi possível reproduzir o captcha em áudio.', 'error'));
});
form.addEventListener('submit', (event) => {
event.preventDefault();
const formData = new URLSearchParams(new FormData(form));
fetch(formConfig.formUrl, {
method: 'POST',
credentials: 'include',
body: formData,
}).then((response) => {
if (!response.ok) {
throw new Error('Captcha inválido ou falha no envio');
}
form.reset();
token = Date.now();
return loadImage(token);
}).then(() => {
showStatus('Solicitação enviada. Em breve a LibreCode entrará em contato.', 'success');
}).catch(() => {
showStatus('Não foi possível enviar. Verifique o captcha e tente novamente.', 'error');
});
});
</script>
</body>
</html>