-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
246 lines (234 loc) · 8.65 KB
/
index.html
File metadata and controls
246 lines (234 loc) · 8.65 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Produtos Claude para Profissionais</title>
<meta name="description" content="Suite completa de produtos para dominar o Claude na sua rotina profissional. Ebooks, prompts e skills prontos para usar.">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--primary: #E07A3A;
--dark: #1a1a2e;
--light: #f8f9fa;
--gray: #6c757d;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--dark);
background: var(--light);
}
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
header {
background: var(--dark);
color: white;
padding: 60px 20px;
text-align: center;
}
header h1 {
font-size: clamp(1.8rem, 5vw, 2.5rem);
margin-bottom: 15px;
}
header p {
font-size: 1.1rem;
opacity: 0.9;
max-width: 600px;
margin: 0 auto;
}
.products {
padding: 60px 20px;
}
.products h2 {
text-align: center;
margin-bottom: 40px;
font-size: 1.8rem;
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}
.product-card {
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.product-header {
padding: 25px;
color: white;
text-align: center;
}
.product-header.orange { background: linear-gradient(135deg, #E07A3A, #c66a2f); }
.product-header.purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.product-header.green { background: linear-gradient(135deg, #10B981, #059669); }
.product-header.yellow { background: linear-gradient(135deg, #F59E0B, #D97706); }
.product-header h3 {
font-size: 1.3rem;
margin-bottom: 5px;
}
.product-header .price {
font-size: 2rem;
font-weight: bold;
}
.product-body {
padding: 25px;
}
.product-body p {
color: var(--gray);
margin-bottom: 20px;
font-size: 0.95rem;
}
.product-body ul {
list-style: none;
margin-bottom: 20px;
}
.product-body li {
padding: 5px 0;
font-size: 0.9rem;
}
.product-body li::before {
content: "\\2713 ";
color: #10B981;
font-weight: bold;
}
.product-btn {
display: block;
text-align: center;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: opacity 0.3s ease;
}
.product-btn:hover { opacity: 0.9; }
.product-btn.orange { background: #E07A3A; color: white; }
.product-btn.purple { background: #8B5CF6; color: white; }
.product-btn.green { background: #10B981; color: white; }
.product-btn.yellow { background: #F59E0B; color: var(--dark); }
.bundle {
padding: 60px 20px;
background: white;
text-align: center;
}
.bundle h2 { margin-bottom: 20px; }
.bundle p { color: var(--gray); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.bundle-price {
font-size: 2.5rem;
font-weight: bold;
color: var(--primary);
margin-bottom: 20px;
}
.bundle-price small {
font-size: 1rem;
color: var(--gray);
display: block;
}
footer {
background: var(--dark);
color: white;
padding: 30px 20px;
text-align: center;
font-size: 0.9rem;
}
footer a { color: var(--primary); }
@media (max-width: 600px) {
header { padding: 40px 15px; }
.product-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Claude para Profissionais</h1>
<p>Suite completa de produtos para dominar o Claude na sua rotina profissional</p>
</div>
</header>
<section class="products">
<div class="container">
<h2>Nossos Produtos</h2>
<div class="product-grid">
<!-- Claude para Profissionais -->
<div class="product-card">
<div class="product-header orange">
<h3>Claude para Profissionais</h3>
<div class="price">R$ 47</div>
</div>
<div class="product-body">
<p>Guia completo para automatizar sua rotina profissional com o Claude.</p>
<ul>
<li>Framework C.L.A.R.O. exclusivo</li>
<li>50 prompts profissionais</li>
<li>Templates prontos</li>
<li>PDF + EPUB</li>
</ul>
<a href="claude-para-profissionais.html" class="product-btn orange">Ver mais</a>
</div>
</div>
<!-- Claude Avancado -->
<div class="product-card">
<div class="product-header purple">
<h3>Claude Avancado</h3>
<div class="price">R$ 97</div>
</div>
<div class="product-body">
<p>Recursos avancados: MCP, Extended Thinking, Projects e Skills customizadas.</p>
<ul>
<li>MCP Protocol completo</li>
<li>Extended Thinking</li>
<li>Projects e Skills</li>
<li>Integracoes APIs</li>
</ul>
<a href="claude-avancado.html" class="product-btn purple">Ver mais</a>
</div>
</div>
<!-- Prompts -->
<div class="product-card">
<div class="product-header green">
<h3>100 Prompts Profissionais</h3>
<div class="price">R$ 27</div>
</div>
<div class="product-body">
<p>Pacote com 100 prompts prontos para copiar, colar e usar.</p>
<ul>
<li>100 prompts testados</li>
<li>10 categorias profissionais</li>
<li>Copie e cole</li>
<li>PDF formatado</li>
</ul>
<a href="prompts-profissionais.html" class="product-btn green">Ver mais</a>
</div>
</div>
<!-- Skills -->
<div class="product-card">
<div class="product-header yellow">
<h3>100 Skills Profissionais</h3>
<div class="price">R$ 47</div>
</div>
<div class="product-body">
<p>Workflows completos com papel, discovery e formato de entrega.</p>
<ul>
<li>100 skills completas</li>
<li>Workflows reutilizaveis</li>
<li>Muito mais que prompts</li>
<li>PDF + EPUB</li>
</ul>
<a href="skills-profissionais.html" class="product-btn yellow">Ver mais</a>
</div>
</div>
</div>
</div>
</section>
<footer>
<p>© 2024 Claude para Profissionais. Todos os direitos reservados.</p>
<p>Duvidas? <a href="mailto:contato.99labdev@gmail.com">contato.99labdev@gmail.com</a></p>
</footer>
</body>
</html>