danielRamos22 commited on
Commit
34cad90
·
verified ·
1 Parent(s): ac1bee4

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +230 -18
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ecocasamento
3
- emoji: 👁
4
- colorFrom: yellow
5
  colorTo: purple
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: ecocasamento
3
+ emoji: 🐳
4
+ colorFrom: green
5
  colorTo: purple
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,231 @@
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>Segredos do Casamento Econômico</title>
7
+
8
+ <!-- GOOGLE FONTS -->
9
+ <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
10
+
11
+ <style>
12
+ :root{
13
+ --rosa:#EECEDF;
14
+ --verde:#5DB075;
15
+ --marrom:#4A2F24;
16
+ }
17
+ *{box-sizing:border-box;margin:0;padding:0;font-family:'Poppins',sans-serif;}
18
+ body{background:#fff;color:#333;line-height:1.5;}
19
+ a{color:var(--verde);text-decoration:none;}
20
+ h1,h2,h3,h4{color:var(--marrom);font-weight:700;line-height:1.25;}
21
+ img{max-width:100%;display:block;}
22
+ .container{width:90%;max-width:1100px;margin:auto;}
23
+ .btn{
24
+ display:inline-block;background:var(--verde);color:#fff;font-weight:600;
25
+ padding:.9rem 1.7rem;border-radius:6px;text-align:center;
26
+ transition:.3s;
27
+ }
28
+ .btn:hover{opacity:.85;}
29
+ /* HERO */
30
+ .hero{background:var(--rosa);padding:3rem 0;text-align:center;}
31
+ .hero h1{font-size:clamp(2rem,5vw,3rem);}
32
+ .hero p{margin:1rem auto 2rem;max-width:600px;}
33
+ /* COUNTDOWN */
34
+ #countdown{display:flex;justify-content:center;gap:1rem;margin-top:1rem;}
35
+ .time{background:#fff;padding:.8rem 1.2rem;border-radius:6px;min-width:70px;}
36
+ .time span{display:block;font-weight:700;font-size:1.3rem;color:var(--marrom);}
37
+ /* PROVA SOCIAL */
38
+ .prova{background:#FFF7F6;padding:3rem 0;}
39
+ .prova-items{display:grid;gap:1.5rem;}
40
+ @media(min-width:700px){.prova-items{grid-template-columns:repeat(3,1fr);}}
41
+ /* OFERTA */
42
+ .oferta{padding:3rem 0;}
43
+ .price-box{border:2px solid var(--rosa);border-radius:8px;padding:1.5rem;text-align:center;}
44
+ .popular{border-color:var(--verde);position:relative;}
45
+ .popular::before{
46
+ content:"MAIS VENDIDO";position:absolute;top:-14px;left:50%;transform:translateX(-50%);
47
+ background:var(--verde);color:#fff;font-size:.7rem;padding:.2rem .6rem;border-radius:4px;
48
+ letter-spacing:.5px;
49
+ }
50
+ .price{font-size:2.2rem;font-weight:700;color:var(--marrom);}
51
+ .valor-antigo{text-decoration:line-through;font-size:1rem;color:#999;}
52
+ .beneficios{margin:1.5rem 0;text-align:left;}
53
+ .beneficios li{margin-bottom:.5rem;display:flex;gap:.4rem;}
54
+ .beneficios li::before{content:"✓";color:var(--verde);}
55
+ /* FAQ */
56
+ details{background:#f9f9f9;margin-bottom:.8rem;border-radius:6px;padding:.8rem 1.2rem;cursor:pointer;}
57
+ summary{font-weight:600;color:var(--marrom);}
58
+ /* FOOTER */
59
+ footer{background:var(--rosa);padding:2rem 0;text-align:center;font-size:.9rem;}
60
+ </style>
61
+ </head>
62
+ <body>
63
+ === FOOTER ========== -->
64
+ =======
65
+ <!-- ========== FLOATING BAR ========== -->
66
+ <div style="position:fixed;bottom:0;left:0;right:0;background:var(--marrom);color:#fff;padding:.8rem;text-align:center;z-index:100;">
67
+ <div class="container" style="display:flex;justify-content:space-between;align-items:center;">
68
+ <span>⏳ PROMOÇÃO TERMINA EM: <strong id="countdown-floating">00:00:00</strong></span>
69
+ <a href="https://casamentoeconomico-insta.shop/segredos-do-casamento-economico/?ref=G100748877U" class="btn" style="margin:0;">GARANTIR MEU DESCONTO</a>
70
+ </div>
71
+ </div>
72
+
73
+ <!-- ========== FOOTER ========== -->
74
+ ========== HERO ========== -->
75
+ <section class="hero">
76
+ <div class="container">
77
+ <h1>Realize o casamento dos seus sonhos gastando <br>menos de <strong>R$ 7.000</strong></h1>
78
+ <p>Método testado e aprovado por milhares de noivinhas. Último dia com 91&nbsp;% de desconto!</p>
79
+ <p style="background:#fff;display:inline-block;padding:.3rem .8rem;border-radius:20px;font-size:.9rem;margin-top:.5rem;">
80
+ <strong>⚠️ ÚLTIMAS 12 VAGAS DISPONÍVEIS!</strong>
81
+ </p>
82
+
83
+ <!-- COUNTDOWN -->
84
+ <div id="countdown">
85
+ <div class="time"><span id="dias">00</span>dias</div>
86
+ <div class="time"><span id="horas">00</span>h</div>
87
+ <div class="time"><span id="min">00</span>min</div>
88
+ <div class="time"><span id="seg">00</span>s</div>
89
+ </div>
90
+
91
+ <a href="{{LINK_CHECKOUT_COMPLETO}}" class="btn" style="margin-top:1.8rem;">Sim! Quero Economizar</a>
92
+ <p style="font-size:.8rem;margin-top:.5rem;">Preço volta ao normal em breve.</p>
93
+ </div>
94
+ </section>
95
+
96
+ <!-- ========== PROVA SOCIAL ========== -->
97
+ <section class="prova">
98
+ <div class="container">
99
+ <h2 style="text-align:center;margin-bottom:2rem;">Histórias Reais de Economia</h2>
100
+
101
+ <div class="prova-items">
102
+ <!-- Repetir bloco IMG + legend -->
103
+ <div><img src="IMAGENS/dep1.jpg" alt="Depoimento economizou 10 mil"><small>“Economizei R$ 10.000 e ainda vamos viajar!”</small></div>
104
+ <div><img src="IMAGENS/dep2.jpg" alt="Print WhatsApp depoimento"></div>
105
+ <div><img src="IMAGENS/dep3.jpg" alt="DM Instagram depoimento"></div>
106
+ </div>
107
+ </div>
108
+ </section>
109
+
110
+ <!-- ========== OFERTA ========== -->
111
+ <section class="oferta">
112
+ <div class="container">
113
+ <h2 style="text-align:center;margin-bottom:2rem;">Escolha o melhor plano para você</h2>
114
+ <p style="text-align:center;background:var(--rosa);padding:.5rem;border-radius:4px;max-width:300px;margin:0 auto 1.5rem;">
115
+ <strong>🔥 37 pessoas compraram nas últimas horas!</strong>
116
+ </p>
117
+
118
+ <div style="display:grid;gap:2rem;align-items:flex-start;">
119
+ <!-- BÁSICO -->
120
+ <div class="price-box">
121
+ <h3>BÁSICO</h3>
122
+ <p class="valor-antigo">R$ 97</p>
123
+ <p class="price">R$ 10</p>
124
+ <ul class="beneficios">
125
+ <li>E-book 1.0 (PDF)</li>
126
+ <li>1 ano de acesso</li>
127
+ </ul>
128
+ <a href="{{LINK_CHECKOUT_BASICO}}" class="btn">Quero o Básico</a>
129
+ <p style="font-size:.8rem;margin-top:.5rem;color:#ff0000;font-weight:600;">⏳ Últimas 3 vagas nesse preço!</p>
130
+ </div>
131
+
132
+ <!-- COMPLETO -->
133
+ <div class="price-box popular">
134
+ <h3>COMPLETO + BÔNUS</h3>
135
+ <p class="valor-antigo">R$ 197</p>
136
+ <p class="price">R$ 37 <span style="font-size:.8rem;">ou 5× R$ 8,05</span></p>
137
+ <ul class="beneficios">
138
+ <li>E-book 3.0 atualizado</li>
139
+ <li>Planner + Checklist</li>
140
+ <li>Lista enxoval casa nova</li>
141
+ <li>Guia casamento civil gratuito</li>
142
+ <li>Bônus surpresa + Atualizações vitalícias</li>
143
+ <li>Garantia 7 dias</li>
144
+ </ul>
145
+ <a href="{{LINK_CHECKOUT_COMPLETO}}" class="btn">Quero o Plano Completo</a>
146
+ <p style="margin-top:.8rem;font-size:.8rem;">Acesso vitalício</p>
147
+ <p style="font-size:.8rem;margin-top:.5rem;color:#ff0000;font-weight:600;">🚨 92% das pessoas escolheram este plano!</p>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </section>
152
+
153
+ <!-- ========== FAQ ========== -->
154
+ <section class="container" style="padding:3rem 0;">
155
+ <h2 style="text-align:center;margin-bottom:1.5rem;">FAQ – Perguntas Frequentes</h2>
156
+
157
+ <details>
158
+ <summary>Funciona para qualquer região do Brasil?</summary>
159
+ <p>Sim! As estratégias de economia e negociação valem para todos os estados; você só adapta fornecedores locais.</p>
160
+ </details>
161
+
162
+ <details>
163
+ <summary>Em quanto tempo recebo o material?</summary>
164
+ <p>Logo após o pagamento aprovado (Pix ou cartão), o acesso chega no seu e-mail em até 5 minutos.</p>
165
+ </details>
166
+
167
+ <details>
168
+ <summary>Posso pedir reembolso?</summary>
169
+ <p>Claro! Você tem 7 dias de garantia incondicional: basta mandar e-mail para {{[email protected]}}.</p>
170
+ </details>
171
+ </section>
172
+
173
+ <!-- ========== GARANTIA ========== -->
174
+ <section style="background:var(--verde);color:#fff;padding:2.5rem 0;text-align:center;">
175
+ <div class="container">
176
+ <h2>Satisfação Garantida ou 100 % do seu dinheiro de volta</h2>
177
+ <p style="max-width:700px;margin:1rem auto 0;">Se em até 7 dias você achar que o guia não te ajudou a economizar,
178
+ devolvemos cada centavo, sem perguntas.</p>
179
+ </div>
180
+ </section>
181
+
182
+ <!-- ========== FOOTER ========== -->
183
+ <footer>
184
+ <p>Suporte: <a href="mailto:[email protected]">[email protected]</a> |
185
+ Instagram: <a href="https://instagram.com/ecocasamentoperfeito" target="_blank">@ecocasamentoperfeito</a></p>
186
+ <p>&copy; {{ANO_ATUAL}} Segredos do Casamento Econômico. Todos os direitos reservados.</p>
187
+ </footer>
188
+
189
+ <!-- ========== SCRIPTS ========== -->
190
+ <script>
191
+ // --- Contador regressivo (ajuste a data/horário) ---
192
+ const objetivo = new Date("2025-07-20T23:59:59").getTime();
193
+ const dias = document.getElementById('dias');
194
+ const horas = document.getElementById('horas');
195
+ const min = document.getElementById('min');
196
+ const seg = document.getElementById('seg');
197
+
198
+ setInterval(()=>{
199
+ const agora = new Date().getTime();
200
+ const dist = objetivo - agora;
201
+
202
+ const d = Math.floor(dist/(1000*60*60*24));
203
+ const h = Math.floor((dist%(1000*60*60*24))/(1000*60*60));
204
+ const m = Math.floor((dist%(1000*60*60))/60000);
205
+ const s = Math.floor((dist%60000)/1000);
206
+
207
+ dias.textContent = d.toString().padStart(2,'0');
208
+ horas.textContent = h.toString().padStart(2,'0');
209
+ min.textContent = m.toString().padStart(2,'0');
210
+ seg.textContent = s.toString().padStart(2,'0');
211
+ },1000);
212
+ </script>
213
+
214
+ <script>
215
+ // Floating countdown
216
+ const floatingCountdown = document.getElementById('countdown-floating');
217
+ setInterval(()=>{
218
+ const agora = new Date().getTime();
219
+ const dist = objetivo - agora;
220
+
221
+ const h = Math.floor((dist%(1000*60*60*24))/(1000*60*60));
222
+ const m = Math.floor((dist%(1000*60*60))/60000);
223
+ const s = Math.floor((dist%60000)/1000);
224
+
225
+ floatingCountdown.textContent =
226
+ `${h.toString().padStart(2,'0')}:${m.toString().padStart(2,'0')}:${s.toString().padStart(2,'0')}`;
227
+ },1000);
228
+ </script>
229
+
230
+ <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=danielRamos22/ecocasamento" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
231
  </html>