 <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #f4f5f7; /* Fondo gris claro */
            color: #171717;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.7;
        }
        
        /* Contenedor principal para centrar el contenido */
        .main-container {
            width: 100%;
            max-width: 960px; /* Ancho máximo */
            margin: 0 auto;
        }

        .page {
            min-height: auto;
            padding: 50px 60px; /* Padding web */
            background: #FFFFFF;
            position: relative;
            margin: 24px 0; /* Espacio entre secciones */
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            overflow: hidden; 
        }
        
        /* --- NAVBAR (Añadido) --- */
        .site-header {
            background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%); /* Paleta Azul */
            color: white;
            padding: 20px 0;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 960px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .navbar-logo a {
            font-size: 24px;
            font-weight: 800;
            color: white;
            text-decoration: none;
            letter-spacing: -0.04em;
        }

        .navbar-nav {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        .navbar-nav li {
            margin-left: 30px;
        }

        .navbar-nav a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav a:hover {
            color: white;
        }
        /* --- FIN NAVBAR --- */


        /* PORTADA (HERO) */
        .cover {
            background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
            padding: 80px 50px;
            margin-top: 24px;
        }
        
        .cover::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            top: -150px;
            right: -100px;
        }
        
        h1.cover-title {
            font-size: 58px;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            z-index: 2;
            text-shadow: 0 4px 20px rgba(0,0,0,0.1);
            color: white; /* Aseguramos color */
        }
        
        .cover-subtitle {
            font-size: 20px;
            font-weight: 500;
            line-height: 1.5;
            max-width: 620px;
            margin: 0 auto 36px;
            color: white; 
            z-index: 2;
        }

        /* Botón de la portada */
        .cover-cta-button {
            display: inline-block;
            background: white;
            color: #007AFF;
            padding: 14px 44px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            z-index: 2;
        }
        
        .cover-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        /* PÁGINAS INTERNAS */
        .page-header {
            border-bottom: 3px solid #007AFF;
            padding-bottom: 18px;
            margin-bottom: 32px;
        }
        
        .page-number {
            font-size: 11px;
            color: #007AFF;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        
        h2 {
            font-size: 38px;
            font-weight: 800;
            color: #171717;
            line-height: 1.2;
            letter-spacing: -0.025em;
        }
        
        h3 {
            font-size: 26px;
            font-weight: 700;
            color: #171717;
            margin: 32px 0 14px 0;
            letter-spacing: -0.02em;
        }
        
        .lead {
            font-size: 18px;
            font-weight: 500;
            color: #171717;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        p {
            font-size: 15px;
            color: #525252;
            line-height: 1.7;
            margin-bottom: 14px;
        }
        
        .highlight {
            color: #007AFF;
            font-weight: 700;
        }
        
        /* Cita de Visión */
        .vision-quote {
            background: #F0F8FF;
            border-left: 4px solid #007AFF;
            padding: 24px;
            margin: 24px 0;
            border-radius: 8px;
        }
        
        .vision-quote-text {
            font-size: 17px;
            color: #171717;
            font-weight: 600;
            line-height: 1.6;
            font-style: italic;
        }
        .vision-quote-author {
            font-size: 15px;
            color: #525252;
            font-weight: 500;
            margin-top: 10px;
            display: block;
        }
        
        /* SCREENSHOT SHOWCASE */
        .screenshot-section {
            margin: 28px 0;
            padding: 24px;
            background: #FAFAFA;
            border-radius: 14px;
            border: 2px solid #E8E8E8;
        }
        
        .screenshot-title {
            font-size: 18px;
            font-weight: 700;
            color: #171717;
            margin-bottom: 14px;
            text-align: center;
        }
        
        .screenshot-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            border: 2px solid #D6D6D6;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        /* Grids (Para 2 columnas) */
        .grid-2-col {
            display: grid;
            grid-template-columns: 1fr 1fr; /* 2 columnas */
            gap: 32px; /* Espacio entre columnas */
            align-items: center; /* Centrar verticalmente */
        }

        /* FEATURES GRID (Para los CTAs) */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 28px 0;
        }
        
        .feature-card {
            background: white;
            border: 2px solid #E8E8E8;
            border-radius: 12px;
            padding: 24px; 
            height: 100%;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .feature-card:hover {
            border-color: #007AFF;
            box-shadow: 0 4px 16px rgba(0,122,255,0.1);
            transform: translateY(-4px);
        }
        
        .feature-icon {
            font-size: 32px;
            margin-bottom: 12px;
            display: block;
            color: #007AFF;
        }
        
        .feature-title {
            font-size: 18px; 
            font-weight: 700;
            color: #171717;
            margin-bottom: 8px;
        }
        
        .feature-desc {
            font-size: 14px;
            color: #525252;
            line-height: 1.6;
        }
        
        /* CTA SECTION */
        .cta-box {
            background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
            color: white;
            padding: 36px;
            border-radius: 16px;
            text-align: center;
            margin: 36px 0; /* Espacio normal */
            box-shadow: 0 12px 40px rgba(0,122,255,0.3);
        }
        
        .cta-box h3 {
            color: white;
            font-size: 28px;
            margin: 0 0 10px 0;
            font-weight: 700;
        }
        
        .cta-box p {
            color: rgba(255,255,255,0.95);
            font-size: 16px;
            margin-bottom: 24px;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: #007AFF;
            padding: 14px 44px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        /* --- FOOTER (Añadido) --- */
        .site-footer {
            background-color: #171717; /* Fondo oscuro como en interconecta */
            color: rgba(255,255,255,0.7);
            padding: 50px 60px;
            font-size: 14px;
            line-height: 1.8;
            margin-top: 24px; /* Espacio con el CTA Box */
        }
        .footer-content {
            max-width: 960px;
            margin: 0 auto;
            text-align: center;
        }
        .footer-logo {
            font-size: 20px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap; 
        }
        .footer-links li {
            margin: 0 15px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: white;
        }
        /* --- FIN FOOTER --- */
        
        /* RESPONSIVIDAD */
        @media (max-width: 992px) {
            .navbar {
                padding: 0 40px;
            }
            .page {
                padding: 40px;
                width: auto;
                margin-left: 24px;
                margin-right: 24px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                background: #FFFFFF; /* Fondo blanco en móvil */
            }
            .navbar {
                padding: 0 20px;
                flex-direction: column;
                gap: 15px;
            }
            .navbar-nav {
                justify-content: center;
            }
            .navbar-nav li {
                margin: 0 10px;
            }
            .page {
                width: 100%;
                margin: 0 auto;
                padding: 30px 20px; /* Menos padding en móvil */
                box-shadow: none;
                border-radius: 0;
            }
            .cover {
                min-height: auto;
                padding: 60px 20px 40px 20px;
                margin-top: 0;
            }
            h1.cover-title {
                font-size: 42px;
            }
            h2 {
                font-size: 32px;
            }
            .cover-subtitle {
                font-size: 18px;
            }
            .grid-2-col, .features-grid {
                grid-template-columns: 1fr; /* Una sola columna */
                gap: 20px;
            }
            .grid-2-col > div:first-child {
                margin-bottom: 20px; /* Espacio entre columnas apiladas */
            }
            .site-footer {
                padding: 30px 20px;
            }
            .footer-links li {
                margin: 5px 10px;
            }
        }
    </style>