-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (66 loc) · 3.99 KB
/
Copy pathindex.html
File metadata and controls
72 lines (66 loc) · 3.99 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Serviços em Cloud | Sua Empresa</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<style>
body { font-family: 'Inter', sans-serif; }
</style>
</head>
<body class="bg-white text-gray-800">
<!-- Hero Section -->
<section class="bg-gray-50 py-20 text-center px-6">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Transforme sua empresa com serviços em Cloud</h1>
<p class="text-lg md:text-xl max-w-3xl mx-auto mb-8">
Ajudamos negócios a migrar, modernizar e evoluir com soluções multicloud sob medida.
</p>
<a href="#contato" class="inline-block bg-blue-600 text-white px-6 py-3 rounded-full text-lg hover:bg-blue-700 transition">Fale com um especialista</a>
</section>
<!-- Serviços -->
<section class="py-20 px-6 max-w-6xl mx-auto">
<div class="grid md:grid-cols-2 gap-10">
<!-- Serviço 1 -->
<div class="bg-white shadow-lg p-8 rounded-2xl hover:shadow-xl transition">
<h3 class="text-2xl font-semibold mb-3">Migração para Nuvem: Apps, Bancos e Dados</h3>
<p class="mb-4 text-gray-600">Planejamos e executamos a migração completa para a nuvem com segurança, agilidade e mínimo impacto ao negócio.</p>
<a href="#" class="text-blue-600 font-semibold hover:underline">Saiba mais</a>
</div>
<!-- Serviço 2 -->
<div class="bg-white shadow-lg p-8 rounded-2xl hover:shadow-xl transition">
<h3 class="text-2xl font-semibold mb-3">Landing Zone: Governança, Redes e Segurança</h3>
<p class="mb-4 text-gray-600">Criamos a base estruturada da sua nuvem com práticas robustas de governança, segurança e conformidade.</p>
<a href="#" class="text-blue-600 font-semibold hover:underline">Saiba mais</a>
</div>
<!-- Serviço 3 -->
<div class="bg-white shadow-lg p-8 rounded-2xl hover:shadow-xl transition">
<h3 class="text-2xl font-semibold mb-3">Modernização de Aplicações</h3>
<p class="mb-4 text-gray-600">Transformamos aplicações legadas em soluções modernas, escaláveis e orientadas à nuvem.</p>
<a href="#" class="text-blue-600 font-semibold hover:underline">Saiba mais</a>
</div>
<!-- Serviço 4 -->
<div class="bg-white shadow-lg p-8 rounded-2xl hover:shadow-xl transition">
<h3 class="text-2xl font-semibold mb-3">FinOps Multicloud</h3>
<p class="mb-4 text-gray-600">Otimizamos custos em ambientes multicloud com visibilidade, controle e eficiência financeira.</p>
<a href="#" class="text-blue-600 font-semibold hover:underline">Saiba mais</a>
</div>
<!-- Serviço 5 -->
<div class="bg-white shadow-lg p-8 rounded-2xl hover:shadow-xl transition md:col-span-2">
<h3 class="text-2xl font-semibold mb-3">Monitoramento Multicloud</h3>
<p class="mb-4 text-gray-600">Visibilidade centralizada e proativa para ambientes distribuídos em diversas nuvens.</p>
<a href="#" class="text-blue-600 font-semibold hover:underline">Saiba mais</a>
</div>
</div>
</section>
<!-- CTA Final -->
<section class="bg-blue-600 text-white text-center py-16 px-6">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Pronto para escalar seu negócio com Cloud?</h2>
<p class="text-lg md:text-xl mb-8">Fale com nosso time e descubra como podemos transformar sua jornada para a nuvem.</p>
<a href="#contato" class="inline-block bg-white text-blue-600 px-6 py-3 rounded-full text-lg font-semibold hover:bg-gray-100 transition">Converse com nosso time</a>
</section>
</body>
</html>