<!DOCTYPE html>
<html lang=”es”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Comunidad G-SHOCK</title>
<style>
body { margin:0; font-family: Arial, sans-serif; background:black; color:white; }
section { padding: 60px 20px; }
h1, h2 { margin-bottom: 20px; }
/* Hero con parallax */
.hero {
position: relative;
background: url(‘http://socialcrewagencia.com/wp-content/uploads/2025/08/Sin-titulo-1.png’) no-repeat center center fixed;
background-size: cover;
text-align: center;
padding: 120px 20px;
color: white;
}
/* Overlay oscuro */
.hero::before {
content: “”;
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0,0,0,0.5);
z-index: 1;
}
.hero * {
position: relative;
z-index: 2;
}
.hero h1 { font-size: 48px; font-weight: bold; }
.hero p { font-size: 20px; max-width: 600px; margin: 0 auto 30px; }
.btn { background:#e60000; color:white; border:none; padding:15px 30px; font-size:18px; border-radius:12px; cursor:pointer; }
.btn:hover { background:#c10000; }
.highlight { background:#e60000; text-align:center; font-size:20px; font-weight:bold; padding:20px; }
.benefits { max-width:800px; margin:auto; text-align:center; }
.benefits ul { list-style:none; padding:0; text-align:left; max-width:400px; margin:auto; }
.benefits li { margin:10px 0; }
.form-section { background:#1a1a1a; }
form { max-width:600px; margin:auto; background:#2b2b2b; padding:30px; border-radius:16px; }
input { width:100%; padding:12px; margin-bottom:15px; border:none; border-radius:8px; }
input[type=”submit”] { background:#e60000; color:white; font-size:18px; cursor:pointer; }
input[type=”submit”]:hover { background:#c10000; }
.small { font-size:12px; color:#aaa; text-align:center; margin-top:10px; }
.closing { background:#e60000; text-align:center; }
</style>
</head>
<body>
<!– Hero –>
<section class=”hero”>
<h1>
Sé parte de la comunidad <br>
<img src=”http://socialcrewagencia.com/wp-content/uploads/2025/09/LOGO-GSHOCK-BLANCOFNEGRO-12.png”
alt=”G-SHOCK Logo”
style=”height:1.5em; vertical-align:middle;”>
</h1>
<p>Unite a la comunidad oficial de G-SHOCK y accedé a beneficios exclusivos.</p>
<button class=”btn”>Registrate y obtené 15% OFF</button>
</section>
<!– Incentivo inmediato –>
<div class=”highlight”>🎁 Registrate ahora y obtené un 15% OFF en tu próximo G-SHOCK.</div>
<!– Beneficios –>
<section class=”benefits”>
<h2>¿Por qué unirte a la comunidad G-SHOCK?</h2>
<p>Formás parte de una comunidad que comparte tu misma pasión por la resistencia, el diseño y la vida activa.</p>
<ul>
<li>✔️ Acceder a descuentos especiales.</li>
<li>✔️ Recibir antes que nadie las novedades de la marca.</li>
<li>✔️ Participar en experiencias y sorteos únicos.</li>
</ul>
</section>
<!– Formulario –>
<section class=”form-section”>
<h2 style=”text-align:center;”>Completá tus datos y formá parte de la comunidad</h2>
<form onsubmit=”alert(‘¡Gracias por registrarte a la Comunidad G-SHOCK!’); return false;”>
<div style=”display:flex; gap:10px;”>
<input type=”text” name=”nombre” placeholder=”Nombre” required>
<input type=”text” name=”apellido” placeholder=”Apellido” required>
</div>
<input type=”tel” name=”telefono” placeholder=”Teléfono” required>
<input type=”email” name=”correo” placeholder=”Correo” required>
<input type=”text” name=”modelo” placeholder=”Modelo de G-SHOCK”>
<input type=”text” name=”ciudad” placeholder=”¿Dónde vivís?”>
<input type=”text” name=”antiguedad” placeholder=”¿Desde cuándo tenés tu G-SHOCK?”>
<input type=”submit” value=”Unirme al Fan Club”>
<p class=”small”>✔️ Tus datos están protegidos. Solo los usaremos para enviarte beneficios exclusivos de G-SHOCK.</p>
</form>
</section>
<!– Cierre CTA –>
<section class=”closing”>
<h2>💥 La resistencia no se cuenta, se vive.</h2>
<p>Unite a la Comunidad G-SHOCK y disfrutá beneficios exclusivos.</p>
<button class=”btn” style=”background:black;”>Registrarme ahora</button>
</section>
</body>
</html>
