<!DOCTYPE html>

<html lang="es">

<head>

    <meta charset="UTF-8">

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

    <title>GFSOFT.PY - Muy Pronto</title>

    <style>

        /* Estilos modernos y rápidos */

        body {

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

            background-color: #111; /* Fondo oscuro moderno */

            color: #fff;

            margin: 0;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            text-align: center;

        }


        .container {

            padding: 2rem;

            max-width: 500px;

        }


        /* Estilos para tu logo */

        .logo {

            max-width: 180px; /* Ajusta el tamaño aquí */

            height: auto;

            margin-bottom: 2rem;

            /* Efecto de sombra suave para resaltar */

            filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));

        }


        h1 {

            font-size: 2.5rem;

            margin: 0 0 10px 0;

            background: linear-gradient(90deg, #0070f3, #00dfd8);

            -webkit-background-clip: text;

            -webkit-text-fill-color: transparent;

            font-weight: 800;

        }


        .status-badge {

            display: inline-block;

            background-color: rgba(255,255,255,0.1);

            border: 1px solid rgba(255,255,255,0.2);

            color: #ccc;

            padding: 6px 12px;

            border-radius: 20px;

            font-size: 0.9rem;

            font-weight: 500;

            margin-bottom: 1.5rem;

        }


        p {

            font-size: 1.1rem;

            color: #aaa;

            line-height: 1.6;

            margin-bottom: 2rem;

        }


    </style>

</head>

<body>

    <div class="container">

        

        <img src="logo.png" alt="Logo GFSOFT" class="logo">


        <br>

        <span class="status-badge">SITIO EN CONSTRUCCIÓN</span>

        

        <h1>GFSOFT.PY</h1>

        

        <p>Estamos preparando algo excepcional. Muy pronto estaremos en línea ofreciendo soluciones tecnológicas de alto nivel para impulsar tu negocio en Paraguay.</p>

        

    </div>

</body>

</html>