-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
598 lines (541 loc) · 31.4 KB
/
Copy pathindex.html
File metadata and controls
598 lines (541 loc) · 31.4 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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
<!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="STEC Engenharia & Construção. Construa sua casa ou projeto corporativo com financiamento e segurança. Soluções completas do projeto à chave na mão.">
<meta name="keywords" content="construção civil, engenharia, projetos corporativos, construtora, financiamento de obras, investimento imobiliário, MCMV">
<meta name="author" content="STEC Engenharia">
<meta name="robots" content="index, follow">
<title>STEC - Engenharia & Construção</title>
<!-- Fontes (Montserrat para fidelidade visual) e Ícones FontAwesome -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Script do EmailJS -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<script type="text/javascript">
(function() {
// Substitua 'YOUR_PUBLIC_KEY' pela sua Public Key do painel do EmailJS
emailjs.init("YOUR_PUBLIC_KEY");
})();
</script>
<style>
/* ================= VARIÁVEIS E RESET ================= */
:root {
--primary-blue: #0b1f38; /* Azul da referência */
--primary-yellow: #ffb800; /* Amarelo da referência */
--text-dark: #333333;
--text-light: #ffffff;
--bg-light: #f9f9f9;
--bg-white: #ffffff;
--transition: all 0.3s ease;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth; /* Permite o clique no menu deslizar suavemente */
}
body {
background-color: var(--bg-white);
color: var(--text-dark);
overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
/* ================= BOTÕES ================= */
.btn {
display: inline-block;
padding: 0.8rem 1.5rem;
font-weight: 700;
border-radius: 4px;
text-align: center;
cursor: pointer;
transition: var(--transition);
border: none;
font-size: 0.9rem;
}
.btn-yellow {
background-color: var(--primary-yellow);
color: var(--primary-blue);
}
.btn-yellow:hover { background-color: #e6a600; }
.btn-blue {
background-color: var(--primary-blue);
color: var(--text-light);
}
.btn-blue:hover { background-color: #061121; }
/* ================= HEADER ================= */
header {
background-color: var(--primary-blue);
color: var(--text-light);
padding: 1rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.logo-container {
display: flex;
flex-direction: column;
align-items: center;
}
.logo-icon { color: var(--primary-yellow); font-size: 2rem; line-height: 1; }
.logo-text { font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; color: var(--text-light); }
.logo-sub { font-size: 0.5rem; letter-spacing: 2px; color: var(--primary-yellow); }
nav ul { display: flex; gap: 1.5rem; }
nav ul li a { font-weight: 600; font-size: 0.8rem; text-transform: uppercase; transition: var(--transition);}
nav ul li a:hover { color: var(--primary-yellow); }
/* ================= HERO SECTION ================= */
.hero {
background: linear-gradient(90deg, rgba(11,31,56,0.95) 0%, rgba(11,31,56,0.7) 40%, transparent 100%), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1920&q=80') center/cover;
height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 5%;
color: var(--text-light);
}
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1rem; max-width: 600px; }
.hero h1 span { color: var(--primary-yellow); display: block; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 500px; }
/* ================= COMO FUNCIONA ================= */
.section-padding { padding: 4rem 5%; }
.text-center { text-align: center; }
.section-title { font-size: 2rem; color: var(--primary-blue); margin-bottom: 3rem; text-transform: uppercase; font-weight: 800; }
.section-title.light { color: var(--text-light); }
.como-funciona-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
position: relative;
}
.passo-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.passo-numero { color: var(--primary-yellow); font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.passo-icon {
background-color: var(--primary-blue); color: var(--text-light);
width: 80px; height: 80px; border-radius: 50%;
display: flex; justify-content: center; align-items: center;
font-size: 2rem; margin-bottom: 1rem; border: 3px solid var(--bg-white);
box-shadow: 0 0 0 2px var(--primary-yellow);
}
.passo-item h3 { color: var(--primary-blue); text-transform: uppercase; margin-bottom: 0.5rem; }
/* ================= O QUE FAZEMOS ================= */
.oque-fazemos { background-color: var(--primary-blue); color: var(--text-light); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card-dark { text-align: left; }
.card-dark img { border-radius: 8px; margin-bottom: -25px; position: relative; z-index: 1; height: 200px; object-fit: cover; width: 100%;}
.card-icon-wrapper {
background-color: var(--primary-yellow); color: var(--primary-blue);
width: 50px; height: 50px; border-radius: 50%;
display: flex; justify-content: center; align-items: center;
font-size: 1.5rem; position: relative; z-index: 2; margin-left: 20px;
box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.card-dark h3 { margin: 1rem 0 0.5rem; font-size: 1.2rem; text-transform: uppercase; }
.card-dark p { font-size: 0.9rem; color: #ccc; }
/* ================= BANNER MIDDLE ================= */
.banner-middle {
background-color: var(--primary-blue); border-top: 1px solid rgba(255,255,255,0.1);
display: flex; align-items: center; justify-content: center; gap: 4rem; padding: 2rem 5%;
}
.banner-middle h2 { color: var(--text-light); font-size: 2rem; text-transform: uppercase; }
.banner-middle h2 span { color: var(--primary-yellow); }
/* ================= SIMULAÇÃO & INVESTIDORES ================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.card-action {
background: var(--bg-white); border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
display: flex; overflow: hidden; align-items: center; border: 1px solid #eee;
}
.card-action-content { padding: 2rem; flex: 1; }
.card-action-content h3 { color: var(--primary-blue); margin-bottom: 1rem; text-transform: uppercase; font-size: 1.5rem; }
.card-action-content p { font-size: 0.9rem; margin-bottom: 1.5rem; }
/* ================= SOBRE NÓS ================= */
.sobre-nos { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sobre-nos h2 { text-align: left; margin-bottom: 1.5rem; }
.sobre-nos p { margin-bottom: 1rem; line-height: 1.6; }
/* ================= SERVIÇOS (ÍCONES) ================= */
.servicos-icones { background-color: var(--bg-light); text-align: center; }
.servico-icon-item h3 { color: var(--primary-blue); font-size: 1.1rem; text-transform: uppercase; margin-bottom: 1rem; }
.servico-icon-item p { font-size: 0.9rem; }
/* ================= PORTFÓLIO ================= */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 2rem; }
.portfolio-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; }
/* ================= CONTATO & FORMULÁRIO ================= */
.contato-section { background-color: var(--bg-light); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group input, .form-group select {
width: 100%; padding: 0.8rem; border: 1px solid #ccc; border-radius: 4px; background: var(--bg-white);
}
.radio-group { display: flex; gap: 1rem; align-items: center; margin-top: 0.5rem; margin-bottom: 1.5rem;}
.radio-group label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.9rem;}
.contato-info {
background-color: var(--primary-blue); color: var(--text-light);
padding: 3rem; border-radius: 8px; display: flex; flex-direction: column; justify-content: center;
}
.contato-info-title { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.contato-info-title i { color: #25D366; font-size: 2.5rem; background: white; border-radius: 50%; padding: 5px;}
.telefone-destaque { color: var(--primary-yellow); font-size: 2.5rem; font-weight: 800; margin: 1rem 0 2rem; }
.contato-info p { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.contato-info p i { color: var(--primary-yellow); }
/* ================= FOOTER ================= */
footer { background-color: var(--primary-blue); color: var(--text-light); padding: 3rem 5% 1rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid h4 { color: var(--primary-yellow); margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.footer-links a { font-size: 0.8rem; color: #ccc; transition: var(--transition);}
.footer-links a:hover { color: var(--primary-yellow); }
.social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 35px; height: 35px; border-radius: 50%; margin-right: 0.5rem; font-size: 1.2rem; transition: var(--transition); }
.social-icons a:hover { transform: scale(1.1); }
.social-icons .fa-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; }
.social-icons .fa-facebook { background: #1877F2; color: white; }
.social-icons .fa-whatsapp { background: #25D366; color: white; }
.copyright { text-align: center; font-size: 0.8rem; color: #888; }
/* ================= BOTÃO FLUTUANTE DO WHATSAPP ================= */
.floating-wa { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; align-items: center; gap: 15px; cursor: pointer; }
.speech-bubble { background-color: var(--text-light); color: var(--primary-blue); padding: 10px 15px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; box-shadow: 0 4px 10px rgba(0,0,0,0.2); position: relative; animation: bounce 2s infinite; border: 1px solid #ddd; }
.speech-bubble::after { content: ''; position: absolute; right: -8px; top: 50%; transform: translateY(-50%); border-width: 8px 0 8px 8px; border-style: solid; border-color: transparent transparent transparent var(--text-light); }
.wa-icon-wrapper { background-color: #25D366; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: var(--transition); }
.wa-icon-wrapper i { color: white; font-size: 35px; }
.wa-icon-wrapper:hover { transform: scale(1.1); }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
/* ================= ANIMAÇÕES SCROLL ================= */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
/* ================= RESPONSIVIDADE (MOBILE) ================= */
@media (max-width: 1024px) {
.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
.banner-middle { flex-direction: column; text-align: center; gap: 2rem; }
}
@media (max-width: 768px) {
header { flex-direction: column; gap: 1rem; }
nav ul { flex-wrap: wrap; justify-content: center; }
.hero h1 { font-size: 2.5rem; }
.grid-2, .sobre-nos, .contato-section .grid-2 { grid-template-columns: 1fr; }
.card-action { flex-direction: column; }
.card-action img { width: 100%; height: 200px; }
.form-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; text-align: center; }
.footer-links { grid-template-columns: 1fr; justify-items: center; }
.speech-bubble { display: none; /* Esconde balão de fala no mobile para limpar a tela */ }
}
</style>
</head>
<body>
<!-- CABEÇALHO -->
<header>
<div class="logo-container">
<div style="display: flex; align-items: center; gap: 5px;">
<i class="fas fa-home logo-icon"></i>
<span class="logo-text">STEC</span>
</div>
<span class="logo-sub">ENGENHARIA E CONSTRUÇÃO</span>
</div>
<nav>
<ul>
<li><a href="#inicio">HOME</a></li>
<li><a href="#sobre">SOBRE NÓS</a></li>
<li><a href="#servicos">SERVIÇOS</a></li>
<li><a href="#simulacao">SIMULAÇÃO</a></li>
<li><a href="#investidores">INVESTIDORES</a></li>
<li><a href="#portfolio">PORTFÓLIO</a></li>
<li><a href="#contato">CONTATO</a></li>
</ul>
</nav>
<a href="https://wa.me/5521999999999" class="btn btn-yellow" target="_blank">
<i class="fab fa-whatsapp"></i> FALE NO WHATSAPP
</a>
</header>
<!-- HERO SECTION -->
<section id="inicio" class="hero">
<div class="fade-up">
<h1>Construa sua casa com <span>financiamento e segurança</span></h1>
<p>A STEC cuida de todo o processo, do projeto à chave na mão.</p>
<a href="#contato" class="btn btn-yellow"><i class="fab fa-whatsapp"></i> QUERO SABER SE POSSO FINANCIAR</a>
</div>
</section>
<!-- COMO FUNCIONA -->
<section class="section-padding fade-up">
<h2 class="section-title text-center">Como Funciona</h2>
<div class="como-funciona-grid">
<div class="passo-item">
<span class="passo-numero">01</span>
<div class="passo-icon"><i class="fas fa-clipboard-list"></i></div>
<h3>Análise</h3>
<p>Analisamos seu perfil e suas possibilidades de financiamento.</p>
</div>
<div class="passo-item">
<span class="passo-numero">02</span>
<div class="passo-icon"><i class="fas fa-university"></i></div>
<h3>Aprovação</h3>
<p>Cuidamos de toda a documentação e buscamos sua aprovação.</p>
</div>
<div class="passo-item">
<span class="passo-numero">03</span>
<div class="passo-icon"><i class="fas fa-hard-hat"></i></div>
<h3>Construção</h3>
<p>Executamos sua obra com qualidade e entregamos seu sonho realizado.</p>
</div>
</div>
</section>
<!-- O QUE FAZEMOS -->
<section id="servicos" class="section-padding oque-fazemos">
<h2 class="section-title light text-center">O Que Fazemos</h2>
<div class="grid-3 fade-up">
<div class="card-dark">
<!-- Para usar imagens locais, troque o src para: src="assets/casas-financiadas.jpg" -->
<img src="https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=600&q=80" alt="Casas Financiadas">
<div class="card-icon-wrapper"><i class="fas fa-home"></i></div>
<h3>Casas Financiadas</h3>
<p>Construímos sua casa com financiamento pelo programa Minha Casa Minha Vida.</p>
</div>
<div class="card-dark">
<img src="https://images.unsplash.com/photo-1541888086425-d81bb19240f5?auto=format&fit=crop&w=600&q=80" alt="Terreno Próprio">
<div class="card-icon-wrapper"><i class="fas fa-map-marker-alt"></i></div>
<h3>Terreno Próprio</h3>
<p>Você já tem o terreno? Cuidamos do projeto, aprovação e execução da sua obra.</p>
</div>
<div class="card-dark">
<img src="https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=600&q=80" alt="Investimento Imobiliário">
<div class="card-icon-wrapper"><i class="fas fa-chart-bar"></i></div>
<h3>Investimento Imobiliário</h3>
<p>Projetos inteligentes para gerar renda com aluguel ou venda de imóveis.</p>
</div>
</div>
</section>
<!-- BANNER MIDDLE CTA -->
<section class="banner-middle fade-up">
<img src="https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=300&q=80" alt="Engenheiro" style="border-radius: 8px; width: 250px; height: 250px; object-fit: cover;">
<div>
<h2>Comece seu projeto<br>com a <span>STEC hoje</span></h2>
<p style="color: white; margin: 1rem 0 2rem;">Fale com nossa equipe e dê o primeiro passo para realizar seu sonho.</p>
<a href="#contato" class="btn btn-yellow"><i class="fab fa-whatsapp"></i> FALAR NO WHATSAPP</a>
</div>
</section>
<!-- SIMULAÇÃO E INVESTIDORES -->
<section class="section-padding fade-up">
<div class="grid-2">
<!-- Card Simulação -->
<div id="simulacao" class="card-action">
<div class="card-action-content">
<h3>Simulação</h3>
<p>Veja como construir sua casa com parcelas que cabem no seu bolso. Faça uma simulação gratuita e descubra as melhores condições.</p>
<a href="#contato" class="btn btn-blue">QUERO MINHA SIMULAÇÃO</a>
</div>
<img src="https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=300&q=80" alt="Calculadora">
</div>
<!-- Card Investidores -->
<div id="investidores" class="card-action">
<div class="card-action-content">
<h3>Investidores</h3>
<p>Transforme seu terreno em renda! Projetos para construção de casas ou kitnets para aluguel ou venda, com foco em retorno financeiro.</p>
<a href="#contato" class="btn btn-blue">QUERO UMA PROPOSTA</a>
</div>
<img src="https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=300&q=80" alt="Prédio">
</div>
</div>
</section>
<!-- SOBRE NÓS -->
<section id="sobre" class="section-padding fade-up">
<div class="sobre-nos">
<div>
<h2 class="section-title">Sobre Nós</h2>
<p>A STEC Engenharia & Construção é uma empresa focada em soluções modernas na construção civil.</p>
<p>Com experiência prática em obras e visão estratégica, atuamos com planejamento, organização e execução de projetos residenciais.</p>
<p>Nosso objetivo é transformar projetos em realidade, oferecendo segurança, qualidade e eficiência em cada etapa.</p>
<br>
<a href="#portfolio" class="btn btn-blue">SAIBA MAIS</a>
</div>
<div>
<img src="https://images.unsplash.com/photo-1600607686527-6fb886090705?auto=format&fit=crop&w=800&q=80" alt="Interior Casa" style="border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);">
</div>
</div>
</section>
<!-- SERVIÇOS ÍCONES -->
<section class="section-padding servicos-icones fade-up">
<h2 class="section-title">Nossos Serviços</h2>
<div class="grid-3">
<div class="servico-icon-item">
<i class="fas fa-home" style="font-size: 4rem; color: var(--primary-yellow); margin-bottom: 1rem;"></i>
<h3>Construção Financiada</h3>
<p>Atuamos com construção de casas por meio de financiamento, auxiliando do início ao fim.</p>
</div>
<div class="servico-icon-item">
<i class="fas fa-drafting-compass" style="font-size: 4rem; color: var(--primary-yellow); margin-bottom: 1rem;"></i>
<h3>Construção em Terreno Próprio</h3>
<p>Se você já possui terreno, cuidamos de todo o processo: projeto, aprovação e execução.</p>
</div>
<div class="servico-icon-item">
<i class="fas fa-chart-line" style="font-size: 4rem; color: var(--primary-yellow); margin-bottom: 1rem;"></i>
<h3>Investimento Imobiliário</h3>
<p>Desenvolvemos projetos para gerar renda com aluguel ou venda de imóveis.</p>
</div>
</div>
</section>
<!-- PORTFÓLIO -->
<section id="portfolio" class="section-padding fade-up">
<h2 class="section-title text-center">Portfólio</h2>
<div class="portfolio-grid">
<img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=600&q=80" alt="Projeto 1">
<img src="https://images.unsplash.com/photo-1600607687931-cecebd808cbd?auto=format&fit=crop&w=600&q=80" alt="Projeto 2">
<img src="https://images.unsplash.com/photo-1504307651254-35680f356f58?auto=format&fit=crop&w=600&q=80" alt="Projeto Em Obras 1">
<img src="https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=600&q=80" alt="Projeto 3">
<img src="https://images.unsplash.com/photo-1541888086425-d81bb19240f5?auto=format&fit=crop&w=600&q=80" alt="Projeto 4">
<img src="https://images.unsplash.com/photo-1589939705384-5185137a7f0f?auto=format&fit=crop&w=600&q=80" alt="Projeto Em Obras 2">
</div>
<div class="text-center">
<a href="#contato" class="btn btn-blue">VER MAIS PROJETOS</a>
</div>
</section>
<!-- CONTATO E FORMULÁRIO -->
<section id="contato" class="section-padding contato-section fade-up">
<h2 class="section-title text-center" style="margin-bottom: 2rem;">Fale com a STEC</h2>
<div class="grid-2">
<!-- Formulário EmailJS -->
<form id="contact-form" style="background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05);">
<div class="form-grid">
<div class="form-group">
<input type="text" name="user_name" placeholder="Nome completo" required>
</div>
<div class="form-group">
<input type="text" name="user_phone" placeholder="Telefone / WhatsApp" required>
</div>
</div>
<div class="form-grid">
<div class="form-group">
<label style="font-size: 0.8rem; color: #666; margin-bottom: 5px; display:block;">Você tem terreno?</label>
<select name="tem_terreno" required>
<option value="" disabled selected>Selecione</option>
<option value="Sim">Sim</option>
<option value="Não">Não</option>
</select>
</div>
<div class="form-group">
<label style="font-size: 0.8rem; color: transparent; margin-bottom: 5px; display:block;">.</label>
<select name="assunto">
<option value="" disabled selected>Assunto</option>
<option value="Dúvida">Dúvida</option>
<option value="Orçamento">Orçamento</option>
</select>
</div>
</div>
<div class="form-group">
<label style="font-size: 0.8rem; color: #666; display:block;">Objetivo</label>
<div class="radio-group">
<label><input type="radio" name="objetivo" value="Morar" required> Morar</label>
<label><input type="radio" name="objetivo" value="Investir" required> Investir</label>
</div>
</div>
<button type="submit" class="btn btn-yellow" style="width: 100%;">QUERO SER ATENDIDO</button>
</form>
<!-- Card Azul de Contato -->
<div class="contato-info">
<div class="contato-info-title">
<i class="fab fa-whatsapp"></i>
<div>
<h3 style="font-size: 1.2rem;">ATENDIMENTO VIA WHATSAPP</h3>
<p style="font-size: 0.9rem; margin:0;">Fale agora com nossa equipe<br>e tire suas dúvidas.</p>
</div>
</div>
<div class="telefone-destaque">(21) 99999-9999</div>
<p><i class="fas fa-map-marker-alt"></i> Rio de Janeiro - RJ</p>
<p><i class="fas fa-envelope"></i> contato@stecengenharia.com.br</p>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-grid">
<div>
<div class="logo-container" style="align-items: flex-start; margin-bottom: 1rem;">
<div style="display: flex; align-items: center; gap: 5px;">
<i class="fas fa-home logo-icon" style="font-size: 1.5rem;"></i>
<span class="logo-text" style="font-size: 1.2rem;">STEC</span>
</div>
<span class="logo-sub">ENGENHARIA E CONSTRUÇÃO</span>
</div>
</div>
<div>
<p style="font-size: 0.8rem; color: #ccc; max-width: 250px; line-height: 1.6;">Construindo com tecnologia, qualidade e eficiência para realizar o seu sonho.</p>
</div>
<div>
<h4>LINKS RÁPIDOS</h4>
<div class="footer-links">
<div style="display: flex; flex-direction: column; gap: 0.5rem;">
<a href="#inicio">Home</a>
<a href="#sobre">Sobre Nós</a>
<a href="#servicos">Serviços</a>
</div>
<div style="display: flex; flex-direction: column; gap: 0.5rem;">
<a href="#simulacao">Simulação</a>
<a href="#investidores">Investidores</a>
<a href="#portfolio">Portfólio</a>
</div>
</div>
</div>
<div>
<h4>SIGA-NOS</h4>
<div class="social-icons">
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-facebook"></a>
<a href="https://wa.me/5521999999999" target="_blank" class="fab fa-whatsapp"></a>
</div>
</div>
</div>
<div class="copyright">
© 2024 STEC Engenharia & Construção. Todos os direitos reservados.
</div>
</footer>
<!-- BOTÃO FLUTUANTE DO WHATSAPP -->
<a href="https://wa.me/5521999999999" class="floating-wa" target="_blank" rel="noopener noreferrer">
<div class="speech-bubble">Tire suas dúvidas ou feche um orçamento aqui!</div>
<div class="wa-icon-wrapper">
<i class="fab fa-whatsapp"></i>
</div>
</a>
<!-- SCRIPTS -->
<script>
// 1. Lógica de Animação ao Scroll (Intersection Observer)
const observerOptions = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
const observer = new IntersectionObserver((entries, observer) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target); // Impede que a animação rode toda hora
}
});
}, observerOptions);
document.querySelectorAll('.fade-up').forEach(element => {
observer.observe(element);
});
// 2. Lógica de Envio do Formulário (EmailJS)
document.getElementById('contact-form').addEventListener('submit', function(event) {
event.preventDefault();
const btn = this.querySelector('button[type="submit"]');
const originalText = btn.innerHTML;
btn.innerHTML = 'Enviando...';
// ATENÇÃO: Substitua os IDs abaixo pelas suas chaves geradas no EmailJS
// Exemplo: emailjs.sendForm('service_abc123', 'template_xyz890', this)
emailjs.sendForm('YOUR_SERVICE_ID', 'YOUR_TEMPLATE_ID', this)
.then(() => {
alert('Mensagem enviada com sucesso! Nossa equipe retornará em breve.');
this.reset();
btn.innerHTML = originalText;
}, (error) => {
alert('Ocorreu um erro ao enviar a mensagem. Verifique a configuração do EmailJS.');
btn.innerHTML = originalText;
console.log('Erro EmailJS:', error);
});
});
</script>
</body>
</html>