<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Studio Danza</title>
    <style>
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #fff;
            text-align: center;
            padding: 2rem;
        }
        .container { max-width: 600px; }
        h1 {
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .divider {
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #e94560, transparent);
            margin: 1.5rem auto;
        }
        p {
            font-size: 1.2rem;
            font-weight: 300;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }
        .badge {
            display: inline-block;
            margin-top: 2rem;
            padding: 0.6rem 2rem;
            border: 1px solid rgba(233,69,96,0.5);
            border-radius: 50px;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #e94560;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>Studio Danza</h1>
        <div class="divider"></div>
        <p>Nuestra tienda online estara disponible proximamente.</p>
        <span class="badge">Proximamente</span>
    </div>
</body>
</html>