|
3 | 3 | <head> |
4 | 4 | <meta charset="utf-8" /> |
5 | 5 | <meta name="viewport" content="width=device-width,initial-scale=1" /> |
6 | | - <title>CÓDIGO ALFA VIP — El Estándar Superior</title> |
| 6 | + <title>CÓDIGO ALFA VIP | Acceso Exclusivo</title> |
7 | 7 |
|
8 | 8 | <style> |
| 9 | + /* VARIABLES PREMIUM */ |
9 | 10 | :root { |
10 | | - --deep-bg: #02060f; /* Azul abisal premium */ |
11 | | - --card-bg: #050a18; |
12 | | - --accent-green: #9dfc52; /* Verde acción de alta visibilidad */ |
13 | | - --gold: #c5a059; |
14 | | - --text-main: #ffffff; |
15 | | - --text-dim: #8492a6; |
16 | | - --gradient-main: linear-gradient(135deg, #050a18 0%, #02060f 100%); |
| 11 | + --bg: #000000; |
| 12 | + --card: #0A0A0A; |
| 13 | + --gold: #AD935B; /* Oro táctico */ |
| 14 | + --text: #FFFFFF; |
| 15 | + --muted: #555555; |
17 | 16 | } |
18 | 17 |
|
19 | 18 | * { box-sizing: border-box; margin: 0; padding: 0; } |
20 | 19 |
|
21 | 20 | body { |
22 | | - font-family: 'Inter', -apple-system, system-ui, sans-serif; |
23 | | - background-color: var(--deep-bg); |
24 | | - color: var(--text-main); |
25 | | - line-height: 1.6; |
| 21 | + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; |
| 22 | + background-color: var(--bg); |
| 23 | + color: var(--text); |
| 24 | + line-height: 1.4; |
| 25 | + display: flex; |
| 26 | + flex-direction: column; |
| 27 | + min-height: 100vh; |
26 | 28 | -webkit-font-smoothing: antialiased; |
27 | 29 | } |
28 | 30 |
|
29 | | - /* Fondo Dinámico con textura de poder */ |
30 | | - .bg-texture { |
31 | | - position: fixed; top: 0; left: 0; width: 100%; height: 100%; |
32 | | - background: radial-gradient(circle at 80% 20%, rgba(157, 252, 82, 0.03), transparent 40%), |
33 | | - radial-gradient(circle at 20% 80%, rgba(197, 160, 89, 0.05), transparent 40%); |
34 | | - z-index: -1; |
35 | | - } |
| 31 | + .container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; flex: 1; } |
36 | 32 |
|
37 | | - .container { max-width: 1100px; margin: 0 auto; padding: 60px 24px; } |
| 33 | + /* CABECERA */ |
| 34 | + header { |
| 35 | + text-align: center; |
| 36 | + margin-bottom: 80px; |
| 37 | + display: flex; |
| 38 | + flex-direction: column; |
| 39 | + align-items: center; |
| 40 | + } |
| 41 | + .logo-img { |
| 42 | + width: 100px; |
| 43 | + height: auto; |
| 44 | + margin-bottom: 20px; |
| 45 | + border: 1px solid #1a1a1a; |
| 46 | + padding: 5px; |
| 47 | + } |
| 48 | + .brand-tag { |
| 49 | + font-size: 12px; |
| 50 | + letter-spacing: 6px; |
| 51 | + text-transform: uppercase; |
| 52 | + color: var(--gold); |
| 53 | + font-weight: 400; |
| 54 | + } |
38 | 55 |
|
39 | | - /* Header con Identidad Definida */ |
40 | | - header { text-align: center; margin-bottom: 80px; } |
41 | | - .logo { width: 100px; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(197,160,89,0.3)); } |
42 | | - .top-label { font-size: 12px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; font-weight: 700; } |
| 56 | + /* LAYOUT HERO */ |
| 57 | + .hero { |
| 58 | + display: grid; |
| 59 | + grid-template-columns: 1fr 1fr; |
| 60 | + gap: 60px; |
| 61 | + align-items: center; |
| 62 | + } |
43 | 63 |
|
44 | | - /* Hero Section - Comunicación Directa */ |
45 | | - .hero { text-align: center; margin-bottom: 80px; } |
46 | | - h1 { font-size: clamp(32px, 7vw, 64px); font-weight: 900; line-height: 1.1; letter-spacing: -2px; margin-bottom: 25px; } |
47 | | - .highlight { color: var(--accent-green); } |
48 | | - .hero p { font-size: 20px; color: var(--text-dim); max-width: 700px; margin: 0 auto; font-weight: 300; } |
| 64 | + .hero-text h1 { |
| 65 | + font-size: clamp(40px, 6vw, 68px); |
| 66 | + font-weight: 900; |
| 67 | + line-height: 0.9; |
| 68 | + letter-spacing: -3px; |
| 69 | + margin-bottom: 25px; |
| 70 | + text-transform: uppercase; |
| 71 | + } |
| 72 | + .hero-text p { |
| 73 | + font-size: 18px; |
| 74 | + color: #777; |
| 75 | + max-width: 400px; |
| 76 | + margin-bottom: 30px; |
| 77 | + font-weight: 300; |
| 78 | + } |
49 | 79 |
|
50 | | - /* Estética de las capturas: Secciones de Beneficios */ |
51 | | - .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; } |
52 | | - .feature-card { |
53 | | - background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); |
54 | | - padding: 40px; border-radius: 20px; position: relative; transition: 0.3s; |
| 80 | + /* FORMULARIO VAULT */ |
| 81 | + .vault-card { |
| 82 | + background: var(--card); |
| 83 | + border: 1px solid #151515; |
| 84 | + padding: 50px; |
| 85 | + position: relative; |
55 | 86 | } |
56 | | - .feature-card:hover { border-color: var(--accent-green); transform: translateY(-5px); } |
57 | | - .feature-card i { font-size: 40px; color: var(--accent-green); display: block; margin-bottom: 20px; } |
58 | | - .feature-card h3 { font-size: 22px; margin-bottom: 15px; } |
59 | | - .feature-card p { color: var(--text-dim); font-size: 15px; } |
60 | | - |
61 | | - /* El "Vault" (Caja de Captura) */ |
62 | | - .vault-section { |
63 | | - background: var(--gradient-main); border: 1px solid var(--gold); |
64 | | - border-radius: 30px; padding: 60px; display: grid; grid-template-columns: 1fr 1fr; |
65 | | - gap: 50px; align-items: center; box-shadow: 0 50px 100px rgba(0,0,0,0.5); |
| 87 | + .vault-card::after { |
| 88 | + content: ''; |
| 89 | + position: absolute; |
| 90 | + top: 0; left: 0; width: 100%; height: 2px; |
| 91 | + background: var(--gold); |
66 | 92 | } |
67 | 93 |
|
68 | | - .book-mockup { width: 100%; border-radius: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.8); } |
| 94 | + h2 { font-size: 20px; margin-bottom: 35px; letter-spacing: 2px; font-weight: 600; } |
69 | 95 |
|
70 | | - /* Formulario de Alta Conversión */ |
71 | | - .form-box h2 { font-size: 28px; margin-bottom: 25px; } |
72 | | - .input-group { margin-bottom: 20px; } |
73 | 96 | input { |
74 | | - width: 100%; padding: 20px; background: rgba(255,255,255,0.03); |
75 | | - border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; |
76 | | - color: white; font-size: 16px; transition: 0.3s; |
| 97 | + width: 100%; |
| 98 | + padding: 15px 0; |
| 99 | + margin-bottom: 30px; |
| 100 | + background: transparent; |
| 101 | + border: none; |
| 102 | + border-bottom: 1px solid #222; |
| 103 | + color: white; |
| 104 | + font-size: 16px; |
| 105 | + transition: 0.3s; |
| 106 | + } |
| 107 | + input:focus { border-bottom-color: var(--gold); outline: none; } |
| 108 | + |
| 109 | + .btn-vip { |
| 110 | + width: 100%; |
| 111 | + padding: 20px; |
| 112 | + background: var(--gold); |
| 113 | + color: #000; |
| 114 | + border: none; |
| 115 | + font-weight: 900; |
| 116 | + font-size: 14px; |
| 117 | + text-transform: uppercase; |
| 118 | + letter-spacing: 3px; |
| 119 | + cursor: pointer; |
| 120 | + transition: 0.3s; |
| 121 | + } |
| 122 | + .btn-vip:hover { filter: brightness(1.2); transform: translateY(-2px); } |
| 123 | + |
| 124 | + /* IMAGEN DE LA GUÍA */ |
| 125 | + .guide-preview { |
| 126 | + width: 100%; |
| 127 | + max-width: 300px; |
| 128 | + margin-top: 20px; |
| 129 | + filter: grayscale(0.2) contrast(1.1); |
| 130 | + border: 1px solid #111; |
| 131 | + } |
| 132 | + |
| 133 | + /* FOOTER */ |
| 134 | + footer { |
| 135 | + padding: 60px 20px; |
| 136 | + border-top: 1px solid #111; |
| 137 | + text-align: center; |
| 138 | + font-size: 11px; |
| 139 | + color: #333; |
| 140 | + letter-spacing: 2px; |
| 141 | + } |
| 142 | + .email-link { color: #555; text-decoration: none; display: block; margin-top: 10px; } |
| 143 | + |
| 144 | + /* RESPONSIVE */ |
| 145 | + @media (max-width: 850px) { |
| 146 | + .hero { grid-template-columns: 1fr; text-align: center; } |
| 147 | + .hero-text p { margin-inline: auto; } |
| 148 | + .hero-text h1 { font-size: 45px; } |
| 149 | + .guide-preview { margin-inline: auto; } |
77 | 150 | } |
78 | | - input:focus { border-color: var(--accent-green); outline: none; background: rgba(157, 252, 82, 0.05); } |
| 151 | + </style> |
| 152 | +</head> |
| 153 | +<body> |
| 154 | + |
| 155 | + <div class="container"> |
| 156 | + <header> |
| 157 | + <img src="https://i.postimg.cc/mD8mK0z6/image.png" alt="Logo Código Alfa" class="logo-img"> |
| 158 | + <div class="brand-tag">Albert Sierra · VIP Access</div> |
| 159 | + </header> |
| 160 | + |
| 161 | + <main class="hero"> |
| 162 | + <section class="hero-text"> |
| 163 | + <h1>CÓDIGO<br>ALFA VIP</h1> |
| 164 | + <p>Arquitectura operativa de disciplina y dominio mental para hombres de alto valor.</p> |
| 165 | + <img src="https://i.postimg.cc/qR8XFzD0/image.png" alt="Guía VIP" class="guide-preview"> |
| 166 | + </section> |
| 167 | + |
| 168 | + <section class="vault-card"> |
| 169 | + <h2>RECLAMAR ACCESO</h2> |
| 170 | + <form action="#" method="POST"> |
| 171 | + <input type="text" placeholder="NOMBRE COMPLETO" required> |
| 172 | + <input type="email" placeholder="EMAIL PRIVADO" required> |
| 173 | + <button type="submit" class="btn-vip">Obtener Guía Ahora</button> |
| 174 | + </form> |
| 175 | + <p style="font-size: 9px; color: #222; margin-top: 25px; letter-spacing: 1px; text-align: center;"> |
| 176 | + SISTEMA ENCRIPTADO · ACCESO INMEDIATO |
| 177 | + </p> |
| 178 | + </section> |
| 179 | + </main> |
| 180 | + </div> |
| 181 | + |
| 182 | + <footer> |
| 183 | + <p>© <span id="year"></span> CÓDIGO ALFA</p> |
| 184 | + <a href="mailto:codigo.alfa2.3@gmail.com" class="email-link">SOPORTE: CODIGO.ALFA2.3@GMAIL.COM</a> |
| 185 | + </footer> |
| 186 | + |
| 187 | + <script> |
| 188 | + document.getElementById('year').textContent = new Date().getFullYear(); |
| 189 | + </script> |
79 | 190 |
|
80 | | - .btn-action { |
81 | | - width: 100%; padding: 22px; background: var(--accent-green); |
82 | | - color: #000; border: none; border-radius: 12px; font-weight: |
| 191 | +</body> |
| 192 | +</html> |
0 commit comments