me gustaria colores mas industriales, blanco gris osea colores mas sobrios y profesionales, tambien me gustaria cambiar Tu Computadora, Nuestra Pasión por algo mas profesional, tambien me gustaria que al hacer clic en todas las opciones se funcional
190cd2a verified | <html lang="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>ByteBusters - Servicios Técnicos Profesionales</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| * { | |
| font-family: 'Inter', sans-serif; | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); | |
| } | |
| .service-card { | |
| transition: all 0.3s ease; | |
| } | |
| .service-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 40px rgba(0,0,0,0.15); | |
| } | |
| .floating { | |
| animation: floating 3s ease-in-out infinite; | |
| } | |
| @keyframes floating { | |
| 0% { transform: translate(0, 0px); } | |
| 50% { transform: translate(0, -15px); } | |
| 100% { transform: translate(0, -0px); } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-lg fixed w-full z-50"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="flex justify-between items-center h-16"> | |
| <div class="flex items-center"> | |
| <i data-feather="cpu" class="text-gray-700 mr-2"></i> | |
| <span class="font-bold text-xl text-gray-800">ByteBusters Pro</span> | |
| </div> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#servicios" class="text-gray-600 hover:text-gray-900 transition">Servicios</a> | |
| <a href="#precios" class="text-gray-600 hover:text-gray-900 transition">Precios</a> | |
| <a href="#testimonios" class="text-gray-600 hover:text-gray-900 transition">Testimonios</a> | |
| <a href="#contacto" class="text-gray-600 hover:text-gray-900 transition">Contacto</a> | |
| </div> | |
| <button class="bg-gray-800 text-white px-4 py-2 rounded-lg hover:bg-gray-900 transition" onclick="window.location.href='#contacto'"> | |
| <i data-feather="shopping-cart" class="inline mr-2"></i> | |
| Comprar Ahora | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section id="hero" class="gradient-bg text-white pt-24 pb-20"> | |
| <div class="max-w-7xl mx-auto px-4 text-center"> | |
| <div class="floating mb-8"> | |
| <i data-feather="settings" class="w-24 h-24 mx-auto"></i> | |
| </div> | |
| <h1 class="text-5xl font-bold mb-6">Soluciones Tecnológicas Profesionales</h1> | |
| <p class="text-xl mb-8 max-w-2xl mx-auto"> | |
| Instalación profesional de sistemas operativos, Office, y programas de diseño. | |
| Soluciones rápidas y confiables para hacer que tu equipo funcione perfectamente. | |
| </p> | |
| <div class="flex justify-center space-x-4"> | |
| <button class="bg-white text-gray-800 px-8 py-3 rounded-lg font-semibold hover:bg-gray-100 transition" onclick="window.location.href='#servicios'"> | |
| Ver Servicios | |
| </button> | |
| <button class="border-2 border-white text-white px-8 py-3 rounded-lg font-semibold hover:bg-white hover:text-gray-800 transition" onclick="window.location.href='#contacto'"> | |
| Contactar Ahora | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="servicios" class="py-20 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <h2 class="text-4xl font-bold text-center mb-12 text-gray-800">Nuestros Servicios</h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Service 1 --> | |
| <div class="service-card bg-gray-50 rounded-xl p-8 border border-gray-200"> | |
| <div class="text-gray-700 mb-4"> | |
| <i data-feather="monitor" class="w-12 h-12"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Sistemas Operativos</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Instalación profesional de Windows, Linux y macOS. | |
| Configuración optimizada para máximo rendimiento. | |
| </p> | |
| <ul class="text-gray-600 space-y-2 mb-6"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> | |
| Windows 10/11 | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> | |
| Ubuntu/Linux | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> | |
| macOS | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-700 text-white py-3 rounded-lg hover:bg-gray-800 transition" onclick="window.location.href='#contacto'"> | |
| Desde $49.99 | |
| </button> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="service-card bg-gray-50 rounded-xl p-8 border border-gray-200"> | |
| <div class="text-gray-700 mb-4"> | |
| <i data-feather="file-text" class="w-12 h-12"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Microsoft Office</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Instalación completa de Office 365 y versiones anteriores. | |
| Word, Excel, PowerPoint y más. | |
| </p> | |
| <ul class="text-gray-600 space-y-2 mb-6"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> | |
| Office 365 | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> | |
| Office 2021 | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> | |
| Activación Legal | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-700 text-white py-3 rounded-lg hover:bg-gray-800 transition" onclick="window.location.href='#contacto'"> | |
| Desde $29.99 | |
| </button> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="service-card bg-gray-50 rounded-xl p-8 border border-gray-200"> | |
| <div class="text-gray-700 mb-4"> | |
| <i data-feather="pen-tool" class="w-12 h-12"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Programas de Diseño</h3> | |
| <p class="text-gray-600 mb-4"> | |
| Suite completa de diseño: Adobe Creative Cloud, | |
| CorelDRAW, AutoCAD y más. | |
| </p> | |
| <ul class="text-gray-600 space-y-2 mb-6"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> | |
| Adobe Creative Cloud | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> | |
| CorelDRAW Suite | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-500"></i> | |
| AutoCAD & 3D Max | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-700 text-white py-3 rounded-lg hover:bg-gray-800 transition" onclick="window.location.href='#contacto'"> | |
| Desde $79.99 | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Pricing Section --> | |
| <section id="precios" class="py-20 bg-gray-100"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <h2 class="text-4xl font-bold text-center mb-4 text-gray-800">Paquetes y Precios</h2> | |
| <p class="text-xl text-center text-gray-600 mb-12">Elige el paquete perfecto para tus necesidades</p> | |
| <div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto"> | |
| <!-- Basic Package --> | |
| <div class="bg-white rounded-xl p-8 shadow-lg border border-gray-200"> | |
| <div class="text-center mb-6"> | |
| <h3 class="text-2xl font-bold text-gray-800 mb-2">Básico</h3> | |
| <div class="text-4xl font-bold text-gray-700">$49.99</div> | |
| <p class="text-gray-600">Por servicio</p> | |
| </div> | |
| <ul class="space-y-4 mb-8"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Instalación de Sistema Operativo | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Drivers básicos | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Antivirus básico | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-700 text-white py-3 rounded-lg font-semibold hover:bg-gray-800 transition" onclick="window.location.href='#contacto'"> | |
| Seleccionar | |
| </button> | |
| </div> | |
| <!-- Professional Package --> | |
| <div class="bg-white rounded-xl p-8 shadow-2xl border-2 border-gray-700 transform scale-105"> | |
| <div class="text-center mb-6"> | |
| <span class="bg-gray-700 text-white px-3 py-1 rounded-full text-sm font-semibold">MÁS POPULAR</span> | |
| <h3 class="text-2xl font-bold text-gray-800 mb-2 mt-4">Profesional</h3> | |
| <div class="text-4xl font-bold text-gray-700">$99.99</div> | |
| <p class="text-gray-600">Paquete completo</p> | |
| </div> | |
| <ul class="space-y-4 mb-8"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Sistema Operativo + Office | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Suite Adobe Creative Cloud | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Antivirus premium | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Soporte 24/7 por 30 días | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-700 text-white py-3 rounded-lg font-semibold hover:bg-gray-800 transition" onclick="window.location.href='#contacto'"> | |
| Seleccionar | |
| </button> | |
| </div> | |
| <!-- Enterprise Package --> | |
| <div class="bg-white rounded-xl p-8 shadow-lg border border-gray-200"> | |
| <div class="text-center mb-6"> | |
| <h3 class="text-2xl font-bold text-gray-800 mb-2">Empresarial</h3> | |
| <div class="text-4xl font-bold text-gray-700">$199.99</div> | |
| <p class="text-gray-600">Solución completa</p> | |
| </div> | |
| <ul class="space-y-4 mb-8"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Todo en Profesional + | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Múltiples equipos | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Configuración de red | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-5 h-5 mr-3 text-green-500"></i> | |
| Soporte prioritario 6 meses | |
| </li> | |
| </ul> | |
| <button class="w-full bg-gray-700 text-white py-3 rounded-lg font-semibold hover:bg-gray-800 transition" onclick="window.location.href='#contacto'"> | |
| Seleccionar | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Payment Integration --> | |
| <section class="py-16 bg-white"> | |
| <div class="max-w-4xl mx-auto px-4 text-center"> | |
| <h2 class="text-3xl font-bold mb-8 text-gray-800">Métodos de Pago Seguros</h2> | |
| <div class="flex justify-center items-center space-x-8 mb-8"> | |
| <div class="bg-gray-100 p-6 rounded-lg"> | |
| <i data-feather="credit-card" class="w-12 h-12 text-blue-600 mx-auto mb-4"></i> | |
| <h3 class="font-semibold text-gray-800">Tarjetas de Crédito</h3> | |
| <p class="text-gray-600 text-sm">Visa, MasterCard, American Express</p> | |
| </div> | |
| <div class="bg-gray-100 p-6 rounded-lg"> | |
| <i data-feather="dollar-sign" class="w-12 h-12 text-blue-400 mx-auto mb-4"></i> | |
| <h3 class="font-semibold text-gray-800">PayPal</h3> | |
| <p class="text-gray-600 text-sm">Pago rápido y seguro</p> | |
| </div> | |
| <div class="bg-gray-100 p-6 rounded-lg"> | |
| <i data-feather="shield" class="w-12 h-12 text-green-500 mx-auto mb-4"></i> | |
| <h3 class="font-semibold text-gray-800">SSL Seguro</h3> | |
| <p class="text-gray-600 text-sm">Datos encriptados</p> | |
| </div> | |
| </div> | |
| <button class="bg-gray-700 text-white px-8 py-3 rounded-lg font-semibold hover:bg-gray-800 transition flex items-center mx-auto" onclick="window.location.href='#contacto'"> | |
| <i data-feather="lock" class="mr-2"></i> | |
| Proceder al Pago Seguro | |
| </button> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section id="testimonios" class="py-20 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <h2 class="text-4xl font-bold text-center mb-12 text-gray-800">Lo Que Dicen Nuestros Clientes</h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <div class="bg-white p-6 rounded-xl shadow-lg"> | |
| <div class="flex items-center mb-4"> | |
| <img src="http://static.photos/people/200x200/1" alt="Cliente" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-semibold">María González</h4> | |
| <div class="flex text-yellow-400"> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600"> | |
| "Excelente servicio! Instalaron Windows 11 y Office en mi laptop en menos de una hora. Muy profesionales." | |
| </p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-lg"> | |
| <div class="flex items-center mb-4"> | |
| <img src="http://static.photos/people/200x200/2" alt="Cliente" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Carlos Rodríguez</h4> | |
| <div class="flex text-yellow-400"> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600"> | |
| "Necesitaba Adobe Creative Cloud para mi trabajo y lo instalaron perfectamente. El soporte post-venta es increíble." | |
| </p> | |
| </div> | |
| <div class="bg-white p-6 rounded-xl shadow-lg"> | |
| <div class="flex items-center mb-4"> | |
| <img src="http://static.photos/people/200x200/3" alt="Cliente" class="w-12 h-12 rounded-full mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Ana Martínez</h4> | |
| <div class="flex text-yellow-400"> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| </div> | |
| </div> | |
| </div> | |
| <p class="text-gray-600"> | |
| "Rápidos, eficientes y con precios justos. Instalaron todo lo que necesitaba para mi estudio de diseño." | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contacto" class="py-20 bg-white"> | |
| <div class="max-w-4xl mx-auto px-4"> | |
| <h2 class="text-4xl font-bold text-center mb-12 text-gray-800">¿Listo para Comenzar?</h2> | |
| <div class="bg-gradient-to-r from-gray-700 to-gray-900 rounded-2xl p-8 text-white"> | |
| <div class="text-center mb-8"> | |
| <h3 class="text-2xl font-bold mb-4">Contáctanos Ahora</h3> | |
| <p class="text-gray-300">Responde en menos de 15 minutos</p> | |
| </div> | |
| <form class="space-y-6"> | |
| <div class="grid md:grid-cols-2 gap-6"> | |
| <input type="text" placeholder="Tu nombre" class="bg-white/20 border border-white/30 rounded-lg px-4 py-3 text-white placeholder-gray-300 focus:outline-none focus:ring-2 focus:ring-white"> | |
| <input type="email" placeholder="Tu email" class="bg-white/20 border border-white/30 rounded-lg px-4 py-3 text-white placeholder-gray-300 focus:outline-none focus:ring-2 focus:ring-white"> | |
| </div> | |
| <textarea placeholder="Describe tu necesidad..." rows="4" class="w-full bg-white/20 border border-white/30 rounded-lg px-4 py-3 text-white placeholder-gray-300 focus:outline-none focus:ring-2 focus:ring-white"></textarea> | |
| <button type="submit" class="w-full bg-white text-gray-800 py-3 rounded-lg font-semibold hover:bg-gray-100 transition"> | |
| <i data-feather="send" class="inline mr-2"></i> | |
| Enviar Mensaje | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-800 text-white py-12"> | |
| <div class="max-w-7xl mx-auto px-4"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <i data-feather="cpu" class="text-gray-400 mr-2"></i> | |
| <span class="font-bold text-xl">ByteBusters Pro</span> | |
| </div> | |
| <p class="text-gray-400"> | |
| Servicios técnicos profesionales para hacer que tu tecnología funcione perfectamente. | |
| </p> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Servicios</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li><a href="#" class="hover:text-white transition">Sistemas Operativos</a></li> | |
| <li><a href="#" class="hover:text-white transition">Microsoft Office</a></li> | |
| <li><a href="#" class="hover:text-white transition">Programas de Diseño</a></li> | |
| <li><a href="#" class="hover:text-white transition">Soporte Técnico</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Contacto</h4> | |
| <ul class="space-y-2 text-gray-400"> | |
| <li class="flex items-center"> | |
| <i data-feather="phone" class="w-4 h-4 mr-2"></i> | |
| +1 (555) 123-4567 | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="mail" class="w-4 h-4 mr-2"></i> | |
| info@bytebusters.com | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="map-pin" class="w-4 h-4 mr-2"></i> | |
| Ciudad Tecnológica, MX | |
| </li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-semibold mb-4">Síguenos</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="facebook" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="twitter" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white transition"> | |
| <i data-feather="instagram" class="w-5 h-5"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> | |
| <p>© 2024 ByteBusters Tech Services. Todos los derechos reservados.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| // Simple scroll animation | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function (e) { | |
| e.preventDefault(); | |
| document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| }); | |
| // Vanta.js background for hero section | |
| VANTA.GLOBE({ | |
| el: "#hero", | |
| mouseControls: true, | |
| touchControls: true, | |
| gyroControls: false, | |
| minHeight: 200.00, | |
| minWidth: 200.00, | |
| scale: 1.00, | |
| scaleMobile: 1.00, | |
| color: 0x2c3e50, | |
| backgroundColor: 0x34495e, | |
| size: 1.00 | |
| }); | |
| </script> | |
| </body> | |
| </html> | |