<!DOCTYPE html>

<html lang="es">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>Próximamente</title>

  <style>

    body {

      margin: 0;

      height: 100vh;

      display: flex;

      align-items: center;

      justify-content: center;

      font-family: Arial, sans-serif;

      background: linear-gradient(135deg, #111827, #1f2937);

      color: white;

      text-align: center;

    }


    .container {

      padding: 40px;

    }


    h1 {

      font-size: 4rem;

      margin-bottom: 10px;

    }


    p {

      font-size: 1.2rem;

      color: #d1d5db;

    }


    .loader {

      margin: 30px auto 0;

      width: 50px;

      height: 50px;

      border: 5px solid #374151;

      border-top: 5px solid #ffffff;

      border-radius: 50%;

      animation: spin 1s linear infinite;

    }


    @keyframes spin {

      to {

        transform: rotate(360deg);

      }

    }


    @media (max-width: 600px) {

      h1 {

        font-size: 2.5rem;

      }

    }

  </style>

</head>

<body>

  <div class="container">

    <h1>Próximamente</h1>

    <p>Estamos preparando algo increíble. Vuelve pronto.</p>

    <div class="loader"></div>

  </div>

</body>

</html>