-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
334 lines (328 loc) · 9.63 KB
/
index.html
File metadata and controls
334 lines (328 loc) · 9.63 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
<!-- Digital Bakery • Vertical Interactive Flyer for Stand Tablets -->
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Digital Bakery – Empowering Peruvian SMBs</title>
<!-- Google Fonts -->
<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=Bebas+Neue&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet" />
<!-- Feather Icons -->
<script src="https://unpkg.com/feather-icons"></script>
<style>
/* ======= COLOR PALETTE ======= */
:root {
--bg-dark: #0b0c23;
--bg-mid: #13153a;
--indigo: #5c6bff;
--cyan: #36d1dc;
--amber: #ffb74d;
--glass: rgba(255, 255, 255, 0.07);
--white: #fff;
--neon-green: #16ff7c;
--neon-pink: #ff2aad;
--neon-blue: #1ecbff;
--radius: 1.2rem;
}
/* ======= RESET ======= */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Poppins", sans-serif;
background: var(--bg-dark);
color: var(--white);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
font-family: "Bebas Neue", cursive;
letter-spacing: 1px;
}
a {
text-decoration: none;
color: inherit;
}
img {
max-width: 100%;
display: block;
}
/* ======= UTILITIES ======= */
.container {
width: min(92%, 600px);
margin-inline: auto;
}
.glass {
background: var(--glass);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: var(--radius);
}
.btn {
display: inline-block;
padding: 0.9rem 2.2rem;
border-radius: 50px;
font-weight: 600;
transition: 0.3s;
}
.btn:hover {
transform: translateY(-3px);
}
.btn-primary {
background: linear-gradient(135deg, var(--indigo), var(--cyan));
color: var(--white);
}
/* ======= HERO ======= */
header {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
position: relative;
background: radial-gradient(circle at top, var(--bg-mid), var(--bg-dark));
overflow: hidden;
}
header::before,
header::after {
content: "";
position: absolute;
border-radius: 50%;
filter: blur(120px);
opacity: 0.4;
animation: float 10s infinite ease-in-out;
}
header::before {
width: 450px;
height: 450px;
background: var(--indigo);
top: -10%;
left: -20%;
}
header::after {
width: 350px;
height: 350px;
background: var(--cyan);
bottom: -10%;
right: -20%;
}
@keyframes float {
50% {
transform: translateY(40px);
}
}
.hero h1 {
font-size: clamp(3rem, 9vw, 5.5rem);
}
.hero p {
font-size: 1.2rem;
margin: 1.2rem 0;
color: var(--cyan);
}
/* ======= FEATURES ======= */
section.features {
padding: 4rem 0;
background: var(--bg-mid);
}
.feature-grid {
display: grid;
gap: 2rem;
margin-top: 2.5rem;
}
.card {
padding: 2rem;
text-align: center;
transition: 0.4s;
}
.card:hover {
transform: translateY(-8px);
}
.card i {
font-size: 2.5rem;
color: var(--amber);
margin-bottom: 0.8rem;
}
.card h3 {
font-size: 1.4rem;
margin-bottom: 0.4rem;
}
/* ======= TIMELINE ======= */
section.timeline {
padding: 4rem 0;
position: relative;
}
.line {
position: absolute;
left: 50%;
top: 0;
width: 2px;
height: 100%;
background: var(--indigo);
transform: translateX(-50%);
}
.event {
position: relative;
width: 75%;
margin-bottom: 3rem;
padding: 1.5rem 2rem;
}
.event:nth-child(odd) {
left: 0;
border-left: 4px solid var(--indigo);
}
.event:nth-child(even) {
left: 25%;
border-right: 4px solid var(--indigo);
}
.event h4 {
color: var(--amber);
font-size: 1.2rem;
margin-bottom: 0.2rem;
}
.event p {
font-size: 0.95rem;
color: var(--cyan);
}
/* ======= PRICING ======= */
section.pricing {
padding: 4rem 0;
background: var(--bg-mid);
}
.pricing-grid {
display: grid;
gap: 2rem;
margin-top: 2.5rem;
}
.plan {
text-align: center;
padding: 2.2rem;
position: relative;
overflow: hidden;
animation: planFloat 6s ease-in-out infinite;
}
@keyframes planFloat {
0%, 100% {transform: translateY(0);}
50% {transform: translateY(-12px);}
}
/* Neon styles for each plan */
.seed {
border: 2px solid var(--neon-green);
box-shadow: 0 0 15px var(--neon-green);
}
.grow {
border: 2px solid var(--neon-blue);
box-shadow: 0 0 15px var(--neon-blue);
}
.bloom {
border: 2px solid var(--neon-pink);
box-shadow: 0 0 15px var(--neon-pink);
}
.plan h3 {
font-size: 1.6rem;
margin-bottom: 0.4rem;
}
.plan .price {
font-size: 2.4rem;
font-weight: 700;
margin-bottom: 0.4rem;
}
.plan.seed .price {color: var(--neon-green);}
.plan.grow .price {color: var(--neon-blue);}
.plan.bloom .price {color: var(--neon-pink);}
.plan ul {
text-align: left;
margin-top: 1rem;
}
.plan li {
margin-bottom: 0.5rem;
}
/* ======= CTA ======= */
section.cta {
padding: 3rem 0;
text-align: center;
}
.pulse {
animation: pulse 3s infinite;
}
@keyframes pulse {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.06);
}
}
footer {
padding: 1rem 0;
text-align: center;
font-size: 0.85rem;
color: var(--cyan);
}
</style>
</head>
<body>
<!-- HERO -->
<header>
<div class="hero container">
<h1>Digital Bakery</h1>
<p>Todo lo que tu pyme necesita para vender online, en un solo plan futurista.</p>
<a href="https://digitalbakery.vercel.app" target="_blank" class="btn btn-primary pulse">Ver Demo</a>
</div>
</header>
<!-- FEATURES -->
<section class="features">
<div class="container">
<h2 class="section-title">Beneficios instantáneos</h2>
<div class="feature-grid">
<div class="card glass"><i data-feather="shopping-cart"></i><h3>Tienda express</h3><p>Publica catálogo, pagos y logística en 48 h.</p></div>
<div class="card glass"><i data-feather="video"></i><h3>Contenido pro</h3><p>Hasta 20 reels mensuales, listos para tus redes.</p></div>
<div class="card glass"><i data-feather="zap"></i><h3>Escala serverless</h3><p>Costo infra < S/ 120 cliente; pagas solo si vendes.</p></div>
</div>
</div>
</section>
<!-- TIMELINE -->
<section class="timeline">
<div class="container">
<h2 class="section-title">Hoja de ruta 2025‑2027</h2>
<div class="line"></div>
<div class="event glass"><h4>Q1 2025 • Pagos QR</h4><p>Integración Yape/Plin Tap‑to‑Pay en el checkout.</p></div>
<div class="event glass"><h4>Q3 2025 • Tarjetas</h4><p>Pasarela Visa/Mastercard con Culqi/Izipay.</p></div>
<div class="event glass"><h4>Q1 2026 • Chatbot IA</h4><p>Atiende y upsellea 24/7 en web + WhatsApp.</p></div>
<div class="event glass"><h4>Q3 2026 • Recomendador</h4><p>Algoritmo de productos "también te puede gustar".</p></div>
<div class="event glass"><h4>2027 • Dashboard BI</h4><p>Panel de métricas predictivas y control de merma.</p></div>
</div>
</section>
<!-- PRICING -->
<section class="pricing">
<div class="container">
<h2 class="section-title">Planes a tu medida</h2>
<div class="pricing-grid">
<div class="plan glass"><h3>Seed</h3><p class="price">S/ 249</p><ul><li>Tienda + hosting</li><li>Soporte básico</li><li>Actualizaciones núcleo</li></ul></div>
<div class="plan glass highlight"><h3>Grow</h3><p class="price">S/ 799</p><ul><li>Todo Seed</li><li>12 piezas contenido</li><li>2 h UX/Dev</li></ul></div>
<div class="plan glass"><h3>Bloom‑AI</h3><p class="price">S/ 2 499</p><ul><li>Todo Grow</li><li>Chatbot IA + Automatizaciones + Bots</li><li>20 piezas contenido</li></ul></div>
</div>
</div>
</section>
<!-- CTA -->
<section class="cta">
<div class="container">
<h2>¿Listo para hornear tu tienda online?</h2>
<a href="https://digitalbakery.vercel.app" target="_blank" class="btn btn-primary pulse">Explora la Demo Ahora</a>
</div>
</section>
<footer>
© 2025 Digital Bakery • Hecho en Perú
</footer>
<script>feather.replace()</script>
</body>
</html>