WillNunes commited on
Commit
a9b8582
·
verified ·
1 Parent(s): b6d3b9b

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +409 -19
  3. prompts.txt +2 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Cris78
3
- emoji: 🚀
4
- colorFrom: red
5
  colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: cris78
3
+ emoji: 🐳
4
+ colorFrom: green
5
  colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,409 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="pt-BR">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Sozinho Nunca Mais - Conquiste Mulheres de Valor</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Poppins:ital@1&display=swap" rel="stylesheet">
10
+ <style>
11
+ @keyframes blink {
12
+ 0% { opacity: 1; }
13
+ 50% { opacity: 0.5; }
14
+ 100% { opacity: 1; }
15
+ }
16
+ @keyframes neon {
17
+ 0% {
18
+ box-shadow: 0 0 5px #00DFF9, 0 0 10px #00DFF9, 0 0 15px #00DFF9;
19
+ }
20
+ 50% {
21
+ box-shadow: 0 0 10px #00DFF9, 0 0 20px #00DFF9, 0 0 25px #00DFF9;
22
+ }
23
+ 100% {
24
+ box-shadow: 0 0 5px #00DFF9, 0 0 10px #00DFF9, 0 0 15px #00DFF9;
25
+ }
26
+ }
27
+ .blinking {
28
+ animation: blink 1.5s infinite;
29
+ }
30
+ .rounded-full {
31
+ border-radius: 50%;
32
+ }
33
+ .btn-primary {
34
+ background-color: #EB6E18;
35
+ color: white;
36
+ font-weight: bold;
37
+ padding: 15px 30px;
38
+ border-radius: 8px;
39
+ transition: all 0.3s ease;
40
+ display: inline-block;
41
+ text-align: center;
42
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
43
+ }
44
+ .btn-primary:hover {
45
+ background-color: #D45F15;
46
+ transform: translateY(-2px);
47
+ box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
48
+ }
49
+ .highlight {
50
+ color: #00DFF9;
51
+ font-weight: bold;
52
+ }
53
+ .bg-custom-dark {
54
+ background-color: #0A193A;
55
+ }
56
+ .border-neon {
57
+ border: 1px solid #00DFF9;
58
+ border-radius: 12px;
59
+ }
60
+ .border-neon-blink {
61
+ border: 1px solid #00DFF9;
62
+ border-radius: 12px;
63
+ animation: neon 2s infinite alternate;
64
+ }
65
+ .checkmark {
66
+ color: #00DFF9;
67
+ margin-right: 8px;
68
+ }
69
+ body {
70
+ color: #E5E7EB;
71
+ font-family: 'Poppins', sans-serif;
72
+ }
73
+ h1, h2, h3, h4, h5, h6 {
74
+ font-family: 'Poppins', sans-serif;
75
+ font-weight: 700;
76
+ }
77
+ .subtitle {
78
+ font-family: 'Poppins', sans-serif;
79
+ font-weight: 400;
80
+ }
81
+ .italic-text {
82
+ font-family: 'Poppins', sans-serif;
83
+ font-style: italic;
84
+ }
85
+ .card-bg {
86
+ background-color: #0A193A;
87
+ border: 1px solid #00DFF9;
88
+ }
89
+ .warning-bg {
90
+ background-color: #1E293B;
91
+ border-color: #00DFF9;
92
+ }
93
+ .icon-color {
94
+ color: #00DFF9;
95
+ }
96
+ .video-container {
97
+ position: relative;
98
+ width: 100%;
99
+ max-width: 800px;
100
+ margin: 0 auto;
101
+ }
102
+ .video-label {
103
+ position: absolute;
104
+ bottom: -20px;
105
+ left: 50%;
106
+ transform: translateX(-50%);
107
+ background-color: #0A193A;
108
+ border: 1px solid #00DFF9;
109
+ padding: 8px 16px;
110
+ border-radius: 8px;
111
+ font-weight: bold;
112
+ white-space: nowrap;
113
+ z-index: 10;
114
+ }
115
+ .video-wrapper {
116
+ position: relative;
117
+ padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
118
+ height: 0;
119
+ overflow: hidden;
120
+ border-radius: 12px;
121
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
122
+ }
123
+ .video-wrapper iframe {
124
+ position: absolute;
125
+ top: 0;
126
+ left: 0;
127
+ width: 100%;
128
+ height: 100%;
129
+ border: none;
130
+ }
131
+ .play-button {
132
+ position: absolute;
133
+ top: 50%;
134
+ left: 50%;
135
+ transform: translate(-50%, -50%);
136
+ width: 80px;
137
+ height: 80px;
138
+ background-color: rgba(0, 223, 249, 0.8);
139
+ border-radius: 50%;
140
+ display: flex;
141
+ align-items: center;
142
+ justify-content: center;
143
+ cursor: pointer;
144
+ z-index: 2;
145
+ transition: all 0.3s ease;
146
+ }
147
+ .play-button:hover {
148
+ background-color: rgba(0, 223, 249, 1);
149
+ transform: translate(-50%, -50%) scale(1.1);
150
+ }
151
+ .play-button i {
152
+ color: white;
153
+ font-size: 30px;
154
+ margin-left: 5px;
155
+ }
156
+ .thumbnail-overlay {
157
+ position: absolute;
158
+ top: 0;
159
+ left: 0;
160
+ width: 100%;
161
+ height: 100%;
162
+ background-size: cover;
163
+ background-position: center;
164
+ z-index: 1;
165
+ }
166
+ .cta-below-video {
167
+ margin-top: 40px;
168
+ text-align: center;
169
+ }
170
+ </style>
171
+ </head>
172
+ <body class="bg-custom-dark">
173
+ <div class="max-w-6xl mx-auto px-4 py-8">
174
+ <!-- Header -->
175
+ <header class="text-center mb-12">
176
+ <h1 class="text-4xl md:text-5xl mb-6 text-[#00DFF9]">
177
+ DESCUBRA O QUE IMPEDE VOCÊ DE CONQUISTAR UMA <span class="highlight">MULHER DE VALOR</span>
178
+ </h1>
179
+ <p class="text-xl mb-8 subtitle">E como virar esse jogo com confiança e sabedoria!</p>
180
+
181
+ <div class="mb-8 video-container">
182
+ <div class="video-wrapper" id="videoWrapper">
183
+ <!-- Thumbnail overlay will be added here by JavaScript -->
184
+ <iframe id="videoPlayer" src="https://www.youtube.com/embed/sbfclrxEmDg?enablejsapi=1&rel=0&modestbranding=1&controls=0&showinfo=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
185
+ <div class="play-button" id="playButton">
186
+ <i class="fas fa-play"></i>
187
+ </div>
188
+ </div>
189
+ <div class="video-label">ASSISTA ESTE VÍDEO ENQUANTO ESTÁ DISPONÍVEL!</div>
190
+ </div>
191
+
192
+ <!-- New CTA Button Below Video -->
193
+ <div class="cta-below-video">
194
+ <a href="#" class="btn-primary blinking inline-block">QUERO APRENDER COM O AUDIOBOOK!</a>
195
+ </div>
196
+ </header>
197
+
198
+ <!-- Main Content -->
199
+ <main>
200
+ <!-- What You'll Learn -->
201
+ <section class="mb-16">
202
+ <h2 class="text-3xl text-center mb-2 text-white">O que você vai aprender no Manual</h2>
203
+ <h2 class="text-3xl text-center mb-8 text-[#00DFF9]">"Sozinho nunca mais – Aprenda a conquistar uma mulher de valor"</h2>
204
+ <p class="text-xl text-center mb-10 subtitle">Um método comprovado para encontrar e manter um relacionamento saudável e duradouro</p>
205
+
206
+ <div class="grid md:grid-cols-2 gap-6">
207
+ <!-- Item 1 -->
208
+ <div class="card-bg p-6 rounded-lg shadow-md border-neon">
209
+ <h3 class="text-xl font-bold mb-3"><i class="fas fa-check checkmark"></i> Como conquistar sem repetir erros do passado</h3>
210
+ <p class="italic-text">Você não é mais aquele cara. Aprenda a deixar os traumas para trás, evitar padrões que sabotam relacionamentos e viver algo novo com confiança.</p>
211
+ </div>
212
+
213
+ <!-- Item 2 -->
214
+ <div class="card-bg p-6 rounded-lg shadow-md border-neon">
215
+ <h3 class="text-xl font-bold mb-3"><i class="fas fa-check checkmark"></i> Os verdadeiros motivos que fazem uma mulher se afastar (e que ela nunca vai te contar)</h3>
216
+ <p class="italic-text">Você vai entender o que faz uma mulher de valor perder o interesse em um homme — mesmo quando tudo parecia estar indo bem.</p>
217
+ </div>
218
+
219
+ <!-- Item 3 -->
220
+ <div class="card-bg p-6 rounded-lg shadow-md border-neon">
221
+ <h3 class="text-xl font-bold mb-3"><i class="fas fa-check checkmark"></i> Como deixar de ser só mais um — e se tornar a escolha certa</h3>
222
+ <p class="italic-text">Pare de ser visto como contatinho ou plano B. Aprenda a se posicionar com atitude e maturidade— e mostre que você é o homem que ela quer ao lado, não apenas por perto.</p>
223
+ </div>
224
+
225
+ <!-- Item 4 -->
226
+ <div class="card-bg p-6 rounded-lg shadow-md border-neon">
227
+ <h3 class="text-xl font-bold mb-3"><i class="fas fa-check checkmark"></i> Onde e como conhecer mulheres reais — fora dos aplicativos</h3>
228
+ <p class="italic-text">Vou revelar a você onde e como encontrar oportunidades para conhecer mulheres maduras, disponíveis e interessadas em algo sério.</p>
229
+ </div>
230
+
231
+ <!-- Item 5 -->
232
+ <div class="card-bg p-6 rounded-lg shadow-md border-neon">
233
+ <h3 class="text-xl font-bold mb-3"><i class="fas fa-check checkmark"></i> Como sair do ciclo de frustrações amorosas</h3>
234
+ <p class="italic-text">Chega de apps, conversas vazias e decepções. Descubra um caminho mais inteligente e seguro para encontrar — e manter — uma mulher de valor ao seu lado.</p>
235
+ </div>
236
+
237
+ <!-- Item 6 -->
238
+ <div class="card-bg p-6 rounded-lg shadow-md border-neon">
239
+ <h3 class="text-xl font-bold mb-3"><i class="fas fa-check checkmark"></i> E diversos outros temas...</h3>
240
+ <p class="italic-text">Vamos abordar sem rodeios questões como intimidade verdadeira, ciúmes, os desafios reais de um pai solteiro ao buscar um relacionamento sério, como identificar atitudes machistas que afastam qualquer mulher, etc...</p>
241
+ </div>
242
+ </div>
243
+ </section>
244
+
245
+ <!-- Empathy Section -->
246
+ <section class="mb-16 card-bg p-8 rounded-lg shadow-lg border-neon">
247
+ <div class="flex flex-col md:flex-row items-center">
248
+ <div class="md:w-1/2 mb-6 md:mb-0 md:pr-8">
249
+ <h2 class="text-3xl mb-6 text-[#00DFF9]">Você já deu tudo de si… e mesmo assim foi ignorado?</h2>
250
+ <p class="mb-4 italic-text">Já entrou em relações onde parecia ser o único a se importar?</p>
251
+ <p class="mb-4 italic-text">Já se pegou pensando: "Será que existe alguma mulher que realmente valha a pena?"</p>
252
+ <p class="italic-text">A verdade é que sim, existe. Mas antes de encontrá-la, é preciso entender como os relacionamentos funcionam de verdade — e o que mulheres de valor realmente buscam em um homme.</p>
253
+ </div>
254
+ <div class="md:w-1/2">
255
+ <img src="https://violet-anteater-154758.hostingersite.com/wp-content/uploads/2025/05/Home-frustrado-2.png" alt="Homem frustrado" class="w-full rounded-lg">
256
+ </div>
257
+ </div>
258
+ </section>
259
+
260
+ <!-- Bonuses -->
261
+ <section class="mb-16">
262
+ <h2 class="text-3xl text-center mb-8 text-[#00DFF9]">Bônus Exclusivos Incluídos</h2>
263
+
264
+ <div class="grid md:grid-cols-3 gap-6">
265
+ <!-- Bonus 1 -->
266
+ <div class="card-bg p-6 rounded-lg shadow-md border-neon text-center">
267
+ <div class="text-4xl mb-4 icon-color">
268
+ <i class="fas fa-heart"></i>
269
+ </div>
270
+ <h3 class="text-xl font-bold mb-3">Meditação guiada sobre amor e prosperidade</h3>
271
+ <p class="italic-text">Uma meditação especial feita por moi, com uma vibe leve e envolvente, para atrair amor verdadeiro e prosperidade para sua vida.</p>
272
+ </div>
273
+
274
+ <!-- Bonus 2 -->
275
+ <div class="card-bg p-6 rounded-lg shadow-md border-neon text-center">
276
+ <div class="text-4xl mb-4 icon-color">
277
+ <i class="fas fa-money-bill-wave"></i>
278
+ </div>
279
+ <h3 class="text-xl font-bold mb-3">Estratégias para gerar renda extra</h3>
280
+ <p class="italic-text">Instruções que te ajudarão a estar sempre à altura de uma mulher de valor — sem apertos na hora de convidar para um encontro.</p>
281
+ </div>
282
+
283
+ <!-- Bonus 3 -->
284
+ <div class="card-bg p-6 rounded-lg shadow-md border-neon text-center">
285
+ <div class="text-4xl mb-4 icon-color">
286
+ <i class="fas fa-book"></i>
287
+ </div>
288
+ <h3 class="text-xl font-bold mb-3">Dicas valiosíssimas de português</h3>
289
+ <p class="italic-text">Descubra os deslizes gramaticais que você não pode cometer em uma conversa — chega de ser dispensado por esse motivo!</p>
290
+ </div>
291
+ </div>
292
+ </section>
293
+
294
+ <!-- About Author -->
295
+ <section class="mb-16 card-bg p-8 rounded-lg shadow-lg border-neon">
296
+ <div class="flex flexocol md:flex-row items-center">
297
+ <div class="md:w-1/3 mb-6 md:mb-0 flex justify-center">
298
+ <img src="https://violet-anteater-154758.hostingersite.com/wp-content/uploads/2025/05/Dra-Cupido.jpg" alt="Dra. Cupido" class="w-64 h-64 rounded-full object-cover border-4 border-[#00DFF9]">
299
+ </div>
300
+ <div class="md:w-2/3 md:pl-8">
301
+ <h2 class="text-3xl mb-4 text-[#00DFF9]">Quem é a "Dra. Cupido"?</h2>
302
+ <p class="mb-4 italic-text">Prazer, sou a mulher por trás desse conteúdo — mas por questões pessoais e de segurança, prefiro não divulgar meu nome. Pode me chamar de Dra. Cupido.</p>
303
+ <p class="mb-4 italic-text">Não sou psicóloga nem coach de relacionamentos. Sou uma mulher que viveu, errou, aprendi e decidi transformar tudo isso em algo útil pra quem tá cansado de se frustrar tentando encontrar alguém especial.</p>
304
+ <p class="mb-4 italic-text">Fui casada, me separei, vivi altos e baixos, conheci muitos homens com histórias parecidas com a sua. E foi ouvindo, observando e vivendo tudo isso que entendi uma coisa: tem muito homem bom por aí que só precisa de um empurrão certo na direção certa.</p>
305
+ <p class="mb-4 italic-text">E foi daí que surgiu meu propósito de ajudar você a sair de ciclos de decepções e a enxergar com mais clareza o que realmente importa numa conquista — não com truques baratos, mas com atitudes que fazem sentido de verdade pra quem quer viver algo leve e duradouro.</p>
306
+ <p class="italic-text">Se você tá cansado de ouvir conselhos rasos, ou de tentar fórmulas que não funcionam na prática, relaxa: você tá no lugar certo! E se estiver disposto a colutar em prática tudo o que preparei, pode ter certeza de que sua vida amorosa nunca mais será a mesma.</p>
307
+ </div>
308
+ </div>
309
+ </section>
310
+
311
+ <!-- Warning -->
312
+ <section class="mb-16 text-center warning-bg p-6 rounded-lg border-neon">
313
+ <h2 class="text-3xl mb-4 blinking text-[#00DFF9]">⚠️ ATENÇÃO: CONTEÚDO DISPONÍVEL POR TEMPO LIMITADO ⚠️</h2>
314
+ <p class="text-lg italic-text">Esse material revela verdades que incomodam muita gente — inclusive grandes plataformas de relacionamento e pessoas mal-intencionadas que se aproveitam da fragilidade emocional de muitos homens pra aplicar golpes.</p>
315
+ <p class="text-lg mt-4 italic-text">Plataformas de aplicativos que lucram com a sua frustração preferem que você continue preso a ciclos que não levam a lugar nenhum. Por isso, existe a possibilidade de que este conteúdo seja retirado do ar a qualquer momento.</p>
316
+ <p class="text-lg mt-4 font-bold italic-text">Você não precisa mais repetir os mesmos erros. Agora é a hora de aprender a conquistar uma mulher de valor e manter um relacionamento leve, estável e duradouro.</p>
317
+ </section>
318
+
319
+ <!-- Offer -->
320
+ <section class="mb-16 card-bg p-8 rounded-lg shadow-xl border-neon-blink text-center">
321
+ <h2 class="text-3xl mb-2 text-[#00DFF9]">Garanta agora o Audiobook <span class="highlight">Sozinho Nunca Mais –</span></h2>
322
+ <h3 class="text-2xl mb-6 subtitle">Aprenda a Conquistar Uma Mulher de Valor</h3>
323
+
324
+ <div class="mb-8">
325
+ <p class="text-sm mb-2 italic-text">Oferta Especial por Tempo Limitado</p>
326
+ <p class="text-4xl font-bold text-[#00DFF9]">R$129</p>
327
+ <p class="text-lg line-through text-gray-400 italic-text">R$299</p>
328
+ </div>
329
+
330
+ <div class="mb-8 text-left max-w-md mx-auto">
331
+ <p class="mb-3 italic-text"><i class="fas fa-check checkmark"></i> Manual Completo</p>
332
+ <p class="mb-3 italic-text"><i class="fas fa-check checkmark"></i> 3 Bônus Exclusivos</p>
333
+ <p class="mb-3 italic-text"><i class="fas fa-check checkmark"></i> Acesso Imediato e Vitalício</p>
334
+ <p class="mb-3 italic-text"><i class="fas fa-check checkmark"></i> 7 Dias de Garantia</p>
335
+ </div>
336
+
337
+ <div class="mb-8">
338
+ <p class="text-lg mb-6 italic-text">"Você não precisa mais acceptar migalhas emocionais. Chegou a hora de se tornar o tipo de homem que vai atrai mulheres incríveis e vive relacionamentos felizes e que fazem sentido."</p>
339
+ <p class="text-xl font-bold mb-4 subtitle">Está pronto para dar esse passo?</p>
340
+ </div>
341
+
342
+ <a href="#" class="btn-primary blinking inline-block">SIM, QUERO APRENDER COM O AUDIOBOOK!</a>
343
+ <p class="text-sm text-gray-400 mt-4 italic-text">Pagamento único e 100% seguro • Garanta acesso imediato + bônus</p>
344
+ </section>
345
+ </main>
346
+
347
+ <!-- Footer -->
348
+ <footer class="text-center py-8 border-t border-gray-700">
349
+ <div class="mb-4">
350
+ <img src="https://violet-anteater-154758.hostingersite.com/wp-content/uploads/2025/04/Logo-2-Re@mar-1.png" alt="Re@mar Logo" class="h-12 mx-auto">
351
+ </div>
352
+ <p class="text-sm mb-2 italic-text">© 2025 Re@mar - Todos os direitos reservados</p>
353
+ <p class="text-xs text-gray-400 italic-text">TERMOS DE USO – POLÍTICA DE PRIVACIDADE</p>
354
+ <p class="text-xs text-gray-400 italic-text">NS CORPORATIONS LTDA – CNPJ 33.140.741/0001-27</p>
355
+ <p class="text-xs text-gray-400 mt-2 italic-text">Este site não pertence nem é endossado pela Meta (Facebook, Instagram ou WhatsApp) de forma alguma.</p>
356
+ </footer>
357
+ </div>
358
+
359
+ <script>
360
+ // YouTube Player API
361
+ var tag = document.createElement('script');
362
+ tag.src = "https://www.youtube.com/iframe_api";
363
+ var firstScriptTag = document.getElementsByTagName('script')[0];
364
+ firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
365
+
366
+ var player;
367
+ function onYouTubeIframeAPIReady() {
368
+ player = new YT.Player('videoPlayer', {
369
+ events: {
370
+ 'onReady': onPlayerReady,
371
+ 'onStateChange': onPlayerStateChange
372
+ }
373
+ });
374
+ }
375
+
376
+ function onPlayerReady(event) {
377
+ // You can add additional setup here if needed
378
+ }
379
+
380
+ function onPlayerStateChange(event) {
381
+ if (event.data == YT.PlayerState.PLAYING) {
382
+ document.getElementById('playButton').style.display = 'none';
383
+ } else if (event.data == YT.PlayerState.PAUSED || event.data == YT.PlayerState.ENDED) {
384
+ document.getElementById('playButton').style.display = 'flex';
385
+ }
386
+ }
387
+
388
+ // Custom play button functionality
389
+ document.getElementById('playButton').addEventListener('click', function() {
390
+ player.playVideo();
391
+ });
392
+
393
+ // Add thumbnail overlay (you would replace this with your actual thumbnail)
394
+ window.onload = function() {
395
+ var thumbnailOverlay = document.createElement('div');
396
+ thumbnailOverlay.className = 'thumbnail-overlay';
397
+ thumbnailOverlay.style.backgroundImage = 'url(https://img.youtube.com/vi/sbfclrxEmDg/maxresdefault.jpg)';
398
+ document.getElementById('videoWrapper').insertBefore(thumbnailOverlay, document.getElementById('videoPlayer'));
399
+
400
+ // Remove thumbnail when video starts playing
401
+ player.addEventListener('onStateChange', function(event) {
402
+ if (event.data == YT.PlayerState.PLAYING) {
403
+ thumbnailOverlay.style.display = 'none';
404
+ }
405
+ });
406
+ };
407
+ </script>
408
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=WillNunes/cris78" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
409
+ </html>
prompts.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ O vídeo VSL deve ficar do mesmo tamanho que a caixa e ocultar os comandos do youtube de forma que a pessoa só possa clicar em play ou pausar o vídeo, todos os demais comandos devem ficar ocultos
2
+ Imserir um botão CTA logo abaixo da VSl com a frase "QUERO APRENDER COM O AUDIOBOOK!" NA MESMA COR DO ÚLTIMO