Spaces:
Running
Running
| <html lang="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Human Core - Consultoría Transformacional</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/lucide@latest"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| scroll-behavior: smooth; | |
| } | |
| .hero-gradient { | |
| background: linear-gradient(135deg, rgba(237, 233, 223, 0.9) 0%, rgba(247, 244, 237, 0.9) 100%); | |
| } | |
| .nav-link { | |
| position: relative; | |
| } | |
| .nav-link::after { | |
| content: ''; | |
| position: absolute; | |
| width: 0; | |
| height: 2px; | |
| bottom: -2px; | |
| left: 0; | |
| background-color: #ea580c; | |
| transition: width 0.3s ease; | |
| } | |
| .nav-link:hover::after { | |
| width: 100%; | |
| } | |
| .active-nav::after { | |
| content: ''; | |
| position: absolute; | |
| width: 100%; | |
| height: 2px; | |
| bottom: -2px; | |
| left: 0; | |
| background-color: #ea580c; | |
| } | |
| .service-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| .phase-diagram { | |
| position: relative; | |
| } | |
| .phase-connector { | |
| position: absolute; | |
| top: 50%; | |
| width: 100px; | |
| height: 2px; | |
| background-color: #d6d3d1; | |
| } | |
| @media (max-width: 768px) { | |
| .phase-connector { | |
| display: none; | |
| } | |
| } | |
| .logo-icon { | |
| position: relative; | |
| } | |
| .logo-icon::before { | |
| content: ''; | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| border: 2px solid #ea580c; | |
| border-radius: 50%; | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { | |
| transform: scale(1); | |
| opacity: 1; | |
| } | |
| 70% { | |
| transform: scale(1.3); | |
| opacity: 0.5; | |
| } | |
| 100% { | |
| transform: scale(1.4); | |
| opacity: 0; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-stone-50 text-stone-800"> | |
| <!-- Header/Navigation --> | |
| <header class="sticky top-0 z-50 bg-white shadow-sm"> | |
| <div class="container mx-auto px-4 py-4 flex justify-between items-center"> | |
| <div class="flex items-center"> | |
| <div class="logo-icon w-10 h-10 rounded-full bg-orange-600 flex items-center justify-center mr-3"> | |
| <i data-lucide="atom" class="text-white"></i> | |
| </div> | |
| <h1 class="text-xl font-bold text-orange-600">Human Core</h1> | |
| </div> | |
| <nav class="hidden md:flex space-x-8"> | |
| <a href="#inicio" class="nav-link text-stone-700 hover:text-orange-600 font-medium transition-colors duration-300">Inicio</a> | |
| <a href="#metodologia" class="nav-link text-stone-700 hover:text-orange-600 font-medium transition-colors duration-300">Metodología</a> | |
| <a href="#servicios" class="nav-link text-stone-700 hover:text-orange-600 font-medium transition-colors duration-300">Servicios</a> | |
| <a href="#contacto" class="nav-link text-stone-700 hover:text-orange-600 font-medium transition-colors duration-300">Contacto</a> | |
| </nav> | |
| <button id="mobile-menu-button" class="md:hidden text-stone-700"> | |
| <i data-lucide="menu"></i> | |
| </button> | |
| </div> | |
| <!-- Mobile Menu --> | |
| <div id="mobile-menu" class="hidden md:hidden bg-white border-t"> | |
| <div class="container mx-auto px-4 py-3 flex flex-col space-y-3"> | |
| <a href="#inicio" class="py-2 text-stone-700 hover:text-orange-600">Inicio</a> | |
| <a href="#metodologia" class="py-2 text-stone-700 hover:text-orange-600">Metodología</a> | |
| <a href="#servicios" class="py-2 text-stone-700 hover:text-orange-600">Servicios</a> | |
| <a href="#contacto" class="py-2 text-stone-700 hover:text-orange-600">Contacto</a> | |
| </div> | |
| </div> | |
| </header> | |
| <main> | |
| <!-- Hero Section --> | |
| <section id="inicio" class="hero-gradient py-20 md:py-32"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-12 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold text-stone-800 mb-6 leading-tight"> | |
| Transformación humana <span class="text-orange-600">radical</span> para individuos y organizaciones | |
| </h1> | |
| <p class="text-lg text-stone-600 mb-8"> | |
| Human Core es una metodología integral que combina coaching sistémico, desarrollo humano y ética en IA para crear cambios profundos y sostenibles. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#contacto" class="bg-orange-600 hover:bg-orange-700 text-white px-6 py-3 rounded-lg font-medium transition-colors duration-300"> | |
| Contactar | |
| </a> | |
| <a href="#metodologia" class="border border-orange-600 text-orange-600 hover:bg-orange-50 px-6 py-3 rounded-lg font-medium transition-colors duration-300"> | |
| Conocer más | |
| </a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 flex justify-center"> | |
| <div class="relative"> | |
| <div class="w-64 h-64 md:w-80 md:h-80 bg-orange-100 rounded-full flex items-center justify-center"> | |
| <i data-lucide="users" class="w-32 h-32 text-orange-600"></i> | |
| </div> | |
| <div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-md"> | |
| <div class="flex items-center"> | |
| <div class="w-10 h-10 bg-orange-100 rounded-full flex items-center justify-center mr-3"> | |
| <i data-lucide="lightbulb" class="text-orange-600"></i> | |
| </div> | |
| <p class="text-sm font-medium">"El cambio comienza desde el núcleo humano"</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Methodology Section --> | |
| <section id="metodologia" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-stone-800 mb-4">Nuestra Metodología</h2> | |
| <div class="w-20 h-1 bg-orange-600 mx-auto"></div> | |
| </div> | |
| <div class="mb-16"> | |
| <h3 class="text-2xl font-semibold text-stone-800 mb-6">Human Core</h3> | |
| <p class="text-stone-600 mb-6 leading-relaxed"> | |
| Una metodología que integra de manera holística el Desarrollo Ético Humano (DEH) y los principios de Inteligencia Artificial Centrada en lo Humano (HCAI). Este enfoque radicalmente humano busca: | |
| </p> | |
| <ul class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-12"> | |
| <li class="bg-stone-50 p-6 rounded-lg"> | |
| <div class="w-12 h-12 bg-orange-100 rounded-full flex items-center justify-center mb-4"> | |
| <i data-lucide="target" class="text-orange-600"></i> | |
| </div> | |
| <h4 class="font-semibold text-lg mb-2">Autoconocimiento profundo</h4> | |
| <p class="text-stone-600">Exploración de los patrones fundamentales que definen nuestro ser.</p> | |
| </li> | |
| <li class="bg-stone-50 p-6 rounded-lg"> | |
| <div class="w-12 h-12 bg-orange-100 rounded-full flex items-center justify-center mb-4"> | |
| <i data-lucide="network" class="text-orange-600"></i> | |
| </div> | |
| <h4 class="font-semibold text-lg mb-2">Transformación sistémica</h4> | |
| <p class="text-stone-600">Cambios que impactan al individuo, sus relaciones y su entorno.</p> | |
| </li> | |
| <li class="bg-stone-50 p-6 rounded-lg"> | |
| <div class="w-12 h-12 bg-orange-100 rounded-full flex items-center justify-center mb-4"> | |
| <i data-lucide="cpu" class="text-orange-600"></i> | |
| </div> | |
| <h4 class="font-semibold text-lg mb-2">Integración tecnológica ética</h4> | |
| <p class="text-stone-600">Uso responsable de herramientas digitales para el desarrollo humano.</p> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="mb-16"> | |
| <h3 class="text-2xl font-semibold text-stone-800 mb-6">Las 4 Fases del Proceso</h3> | |
| <div class="phase-diagram grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> | |
| <!-- Phase 1 --> | |
| <div class="bg-orange-50 p-6 rounded-lg relative"> | |
| <div class="w-14 h-14 bg-orange-600 rounded-full flex items-center justify-center text-white mb-4 mx-auto"> | |
| <span class="font-bold">1</span> | |
| </div> | |
| <h4 class="font-semibold text-lg mb-2 text-center">Exploración</h4> | |
| <p class="text-stone-600 text-center">Identificación de patrones y sistemas actuales.</p> | |
| </div> | |
| <!-- Connector --> | |
| <div class="phase-connector left-1/2 transform -translate-y-1/2 hidden md:block"></div> | |
| <!-- Phase 2 --> | |
| <div class="bg-orange-50 p-6 rounded-lg relative"> | |
| <div class="w-14 h-14 bg-orange-600 rounded-full flex items-center justify-center text-white mb-4 mx-auto"> | |
| <span class="font-bold">2</span> | |
| </div> | |
| <h4 class="font-semibold text-lg mb-2 text-center">Desconstrucción</h4> | |
| <p class="text-stone-600 text-center">Cuestionamiento de creencias y estructuras limitantes.</p> | |
| </div> | |
| <!-- Connector --> | |
| <div class="phase-connector left-1/2 transform -translate-y-1/2 hidden md:block"></div> | |
| <!-- Phase 3 --> | |
| <div class="bg-orange-50 p-6 rounded-lg relative"> | |
| <div class="w-14 h-14 bg-orange-600 rounded-full flex items-center justify-center text-white mb-4 mx-auto"> | |
| <span class="font-bold">3</span> | |
| </div> | |
| <h4 class="font-semibold text-lg mb-2 text-center">Reconstrucción</h4> | |
| <p class="text-stone-600 text-center">Creación de nuevos marcos y patrones saludables.</p> | |
| </div> | |
| <!-- Connector --> | |
| <div class="phase-connector left-1/2 transform -translate-y-1/2 hidden md:block"></div> | |
| <!-- Phase 4 --> | |
| <div class="bg-orange-50 p-6 rounded-lg relative"> | |
| <div class="w-14 h-14 bg-orange-600 rounded-full flex items-center justify-center text-white mb-4 mx-auto"> | |
| <span class="font-bold">4</span> | |
| </div> | |
| <h4 class="font-semibold text-lg mb-2 text-center">Integración</h4> | |
| <p class="text-stone-600 text-center">Aplicación sostenible en la vida cotidiana.</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> | |
| <div> | |
| <h3 class="text-2xl font-semibold text-stone-800 mb-6">DEH - Desarrollo Ético Humano</h3> | |
| <p class="text-stone-600 mb-4 leading-relaxed"> | |
| Un marco conceptual que prioriza el florecimiento humano integral, considerando dimensiones físicas, emocionales, cognitivas, relacionales y espirituales. | |
| </p> | |
| <div class="bg-stone-50 p-6 rounded-lg"> | |
| <h4 class="font-semibold text-lg mb-3 text-orange-600">Principios clave:</h4> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i data-lucide="check-circle" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Autonomía con responsabilidad</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check-circle" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Dignidad humana inalienable</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check-circle" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Interdependencia ecológica</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check-circle" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Justicia generativa</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div> | |
| <h3 class="text-2xl font-semibold text-stone-800 mb-6">HCAI - Human-Centered Artificial Intelligence</h3> | |
| <p class="text-stone-600 mb-4 leading-relaxed"> | |
| Enfoque que asegura que el desarrollo y aplicación de tecnologías de IA estén alineados con valores humanos fundamentales y promuevan el bienestar. | |
| </p> | |
| <div class="bg-stone-50 p-6 rounded-lg"> | |
| <h4 class="font-semibold text-lg mb-3 text-orange-600">Pilares fundamentales:</h4> | |
| <ul class="space-y-3"> | |
| <li class="flex items-start"> | |
| <i data-lucide="cpu" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Transparencia y explicabilidad</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="shield" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Privacidad y seguridad</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="scale" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Equidad y no discriminación</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="heart" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Bienestar humano como objetivo</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="servicios" class="py-20 bg-stone-50"> | |
| <div class="container mx-auto px-4"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-stone-800 mb-4">Nuestros Servicios</h2> | |
| <div class="w-20 h-1 bg-orange-600 mx-auto"></div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Service 1 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition-all duration-300"> | |
| <div class="w-14 h-14 bg-orange-100 rounded-full flex items-center justify-center mb-6"> | |
| <i data-lucide="users" class="text-orange-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Coaching Sistémico Organizacional</h3> | |
| <p class="text-stone-600 mb-4"> | |
| Intervenciones diseñadas para transformar culturas organizacionales desde su núcleo, integrando equipos, procesos y propósitos. | |
| </p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Diagnóstico cultural profundo</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Diseño de intervenciones personalizadas</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Acompañamiento en la implementación</span> | |
| </li> | |
| </ul> | |
| <a href="#contacto" class="text-orange-600 font-medium inline-flex items-center hover:text-orange-700 transition-colors duration-300"> | |
| Más información | |
| <i data-lucide="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition-all duration-300"> | |
| <div class="w-14 h-14 bg-orange-100 rounded-full flex items-center justify-center mb-6"> | |
| <i data-lucide="user" class="text-orange-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Coaching Ejecutivo con Enfoque DEH</h3> | |
| <p class="text-stone-600 mb-4"> | |
| Desarrollo de líderes conscientes que integran excelencia operativa con responsabilidad humana y ecológica. | |
| </p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Programas individuales y grupales</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Herramientas de autoconocimiento avanzado</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Seguimiento con métricas humanas</span> | |
| </li> | |
| </ul> | |
| <a href="#contacto" class="text-orange-600 font-medium inline-flex items-center hover:text-orange-700 transition-colors duration-300"> | |
| Más información | |
| <i data-lucide="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition-all duration-300"> | |
| <div class="w-14 h-14 bg-orange-100 rounded-full flex items-center justify-center mb-6"> | |
| <i data-lucide="cpu" class="text-orange-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Implementación HCAI</h3> | |
| <p class="text-stone-600 mb-4"> | |
| Asesoría para integrar principios de Inteligencia Artificial Centrada en lo Humano en procesos organizacionales. | |
| </p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Auditoría ética de sistemas de IA</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Diseño de políticas HCAI</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Capacitación en ética tecnológica</span> | |
| </li> | |
| </ul> | |
| <a href="#contacto" class="text-orange-600 font-medium inline-flex items-center hover:text-orange-700 transition-colors duration-300"> | |
| Más información | |
| <i data-lucide="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| <!-- Service 4 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition-all duration-300"> | |
| <div class="w-14 h-14 bg-orange-100 rounded-full flex items-center justify-center mb-6"> | |
| <i data-lucide="home" class="text-orange-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Transformación Familiar Sistémica</h3> | |
| <p class="text-stone-600 mb-4"> | |
| Procesos para familias que buscan sanar dinámicas relacionales y crear entornos nutritivos para todos sus miembros. | |
| </p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Terapia familiar con enfoque sistémico</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Talleres para padres conscientes</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Acompañamiento en transiciones familiares</span> | |
| </li> | |
| </ul> | |
| <a href="#contacto" class="text-orange-600 font-medium inline-flex items-center hover:text-orange-700 transition-colors duration-300"> | |
| Más información | |
| <i data-lucide="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| <!-- Service 5 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition-all duration-300"> | |
| <div class="w-14 h-14 bg-orange-100 rounded-full flex items-center justify-center mb-6"> | |
| <i data-lucide="book-open" class="text-orange-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Programas Educativos DEH</h3> | |
| <p class="text-stone-600 mb-4"> | |
| Diseño e implementación de currículos y programas formativos basados en los principios del Desarrollo Ético Humano. | |
| </p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Para instituciones educativas</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Formación docente</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Desarrollo de materiales pedagógicos</span> | |
| </li> | |
| </ul> | |
| <a href="#contacto" class="text-orange-600 font-medium inline-flex items-center hover:text-orange-700 transition-colors duration-300"> | |
| Más información | |
| <i data-lucide="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| <!-- Service 6 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition-all duration-300"> | |
| <div class="w-14 h-14 bg-orange-100 rounded-full flex items-center justify-center mb-6"> | |
| <i data-lucide="globe" class="text-orange-600 w-6 h-6"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Consultoría Comunitaria</h3> | |
| <p class="text-stone-600 mb-4"> | |
| Facilitación de procesos de transformación comunitaria que integran saberes locales con metodologías sistémicas. | |
| </p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Diagnóstico participativo</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Diseño de proyectos comunitarios</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i data-lucide="check" class="text-orange-600 mr-2 mt-1 flex-shrink-0"></i> | |
| <span class="text-stone-600">Formación de líderes comunitarios</span> | |
| </li> | |
| </ul> | |
| <a href="#contacto" class="text-orange-600 font-medium inline-flex items-center hover:text-orange-700 transition-colors duration-300"> | |
| Más información | |
| <i data-lucide="arrow-right" class="ml-2 w-4 h-4"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contacto" class="py-20 bg-white"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-stone-800 mb-4">Contáctanos</h2> | |
| <div class="w-20 h-1 bg-orange-600 mx-auto"></div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> | |
| <div> | |
| <h3 class="text-xl font-semibold mb-6">Información de contacto</h3> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="w-10 h-10 bg-orange-100 rounded-full flex items-center justify-center mr-4 flex-shrink-0"> | |
| <i data-lucide="mail" class="text-orange-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-medium text-stone-800 mb-1">Correo electrónico</h4> | |
| <p class="text-stone-600">info@humancore.com</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-10 h-10 bg-orange-100 rounded-full flex items-center justify-center mr-4 flex-shrink-0"> | |
| <i data-lucide="phone" class="text-orange-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-medium text-stone-800 mb-1">Teléfono</h4> | |
| <p class="text-stone-600">+1 (555) 123-4567</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-10 h-10 bg-orange-100 rounded-full flex items-center justify-center mr-4 flex-shrink-0"> | |
| <i data-lucide="map-pin" class="text-orange-600"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-medium text-stone-800 mb-1">Oficina principal</h4> | |
| <p class="text-stone-600">Calle Humanidad 123, Ciudad Consciente, País</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-10"> | |
| <h3 class="text-xl font-semibold mb-6">Síguenos</h3> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="w-10 h-10 bg-stone-100 hover:bg-orange-100 rounded-full flex items-center justify-center transition-colors duration-300"> | |
| <i data-lucide="facebook" class="text-stone-600"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-stone-100 hover:bg-orange-100 rounded-full flex items-center justify-center transition-colors duration-300"> | |
| <i data-lucide="twitter" class="text-stone-600"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-stone-100 hover:bg-orange-100 rounded-full flex items-center justify-center transition-colors duration-300"> | |
| <i data-lucide="linkedin" class="text-stone-600"></i> | |
| </a> | |
| <a href="#" class="w-10 h-10 bg-stone-100 hover:bg-orange-100 rounded-full flex items-center justify-center transition-colors duration-300"> | |
| <i data-lucide="instagram" class="text-stone-600"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div> | |
| <form id="contact-form" class="space-y-6"> | |
| <div> | |
| <label for="name" class="block text-sm font-medium text-stone-700 mb-1">Nombre completo</label> | |
| <input type="text" id="name" name="name" required class="w-full px-4 py-3 border border-stone-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500 transition-all duration-300"> | |
| </div> | |
| <div> | |
| <label for="email" class="block text-sm font-medium text-stone-700 mb-1">Correo electrónico</label> | |
| <input type="email" id="email" name="email" required class="w-full px-4 py-3 border border-stone-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500 transition-all duration-300"> | |
| </div> | |
| <div> | |
| <label for="service" class="block text-sm font-medium text-stone-700 mb-1">Servicio de interés</label> | |
| <select id="service" name="service" class="w-full px-4 py-3 border border-stone-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500 transition-all duration-300"> | |
| <option value="">Selecciona un servicio</option> | |
| <option value="Coaching Sistémico Organizacional">Coaching Sistémico Organizacional</option> | |
| <option value="Coaching Ejecutivo con Enfoque DEH">Coaching Ejecutivo con Enfoque DEH</option> | |
| <option value="Implementación HCAI">Implementación HCAI</option> | |
| <option value="Transformación Familiar Sistémica">Transformación Familiar Sistémica</option> | |
| <option value="Programas Educativos DEH">Programas Educativos DEH</option> | |
| <option value="Consultoría Comunitaria">Consultoría Comunitaria</option> | |
| </select> | |
| </div> | |
| <div> | |
| <label for="message" class="block text-sm font-medium text-stone-700 mb-1">Mensaje</label> | |
| <textarea id="message" name="message" rows="4" required class="w-full px-4 py-3 border border-stone-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500 transition-all duration-300"></textarea> | |
| </div> | |
| <div id="form-status" class="hidden py-3 px-4 rounded-lg"></div> | |
| <button type="submit" class="w-full bg-orange-600 hover:bg-orange-700 text-white px-6 py-3 rounded-lg font-medium transition-colors duration-300 flex items-center justify-center"> | |
| <span id="submit-text">Enviar mensaje</span> | |
| <i data-lucide="send" class="ml-2 w-5 h-5 hidden" id="submit-icon"></i> | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <!-- Footer --> | |
| <footer class="bg-stone-800 text-stone-300 py-12"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> | |
| <div> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-10 h-10 rounded-full bg-orange-600 flex items-center justify-center mr-3"> | |
| <i data-lucide="atom" class="text-white"></i> | |
| </div> | |
| <h3 class="text-xl font-bold text-white">Human Core</h3> | |
| </div> | |
| <p class="text-stone-400"> | |
| Transformación humana radical para individuos, organizaciones y comunidades. | |
| </p> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold text-white mb-4">Enlaces rápidos</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#inicio" class="hover:text-orange-400 transition-colors duration-300">Inicio</a></li> | |
| <li><a href="#metodologia" class="hover:text-orange-400 transition-colors duration-300">Metodología</a></li> | |
| <li><a href="#servicios" class="hover:text-orange-400 transition-colors duration-300">Servicios</a></li> | |
| <li><a href="#contacto" class="hover:text-orange-400 transition-colors duration-300">Contacto</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold text-white mb-4">Servicios</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#servicios" class="hover:text-orange-400 transition-colors duration-300">Coaching Organizacional</a></li> | |
| <li><a href="#servicios" class="hover:text-orange-400 transition-colors duration-300">Coaching Ejecutivo</a></li> | |
| <li><a href="#servicios" class="hover:text-orange-400 transition-colors duration-300">Implementación HCAI</a></li> | |
| <li><a href="#servicios" class="hover:text-orange-400 transition-colors duration-300">Transformación Familiar</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold text-white mb-4">Newsletter</h4> | |
| <p class="text-stone-400 mb-4"> | |
| Suscríbete para recibir artículos y novedades sobre Human Core. | |
| </p> | |
| <form class="flex"> | |
| <input type="email" placeholder="Tu correo" class="px-4 py-2 rounded-l-lg focus:outline-none text-stone-800 w-full"> | |
| <button type="submit" class="bg-orange-600 hover:bg-orange-700 text-white px-4 py-2 rounded-r-lg transition-colors duration-300"> | |
| <i data-lucide="send" class="w-4 h-4"></i> | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| <div class="pt-8 border-t border-stone-700 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-stone-400 mb-4 md:mb-0"> | |
| © 2023 Human Core. Todos los derechos reservados. | |
| </p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-stone-400 hover:text-orange-400 transition-colors duration-300"> | |
| <i data-lucide="facebook" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-stone-400 hover:text-orange-400 transition-colors duration-300"> | |
| <i data-lucide="twitter" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-stone-400 hover:text-orange-400 transition-colors duration-300"> | |
| <i data-lucide="linkedin" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-stone-400 hover:text-orange-400 transition-colors duration-300"> | |
| <i data-lucide="instagram" class="w-5 h-5"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Initialize Lucide icons | |
| lucide.createIcons(); | |
| // Mobile menu toggle | |
| const mobileMenuButton = document.getElementById('mobile-menu-button'); | |
| const mobileMenu = document.getElementById('mobile-menu'); | |
| mobileMenuButton.addEventListener('click', () => { | |
| mobileMenu.classList.toggle('hidden'); | |
| const icon = mobileMenuButton.querySelector('i'); | |
| if (mobileMenu.classList.contains('hidden')) { | |
| lucide.createIcons(); | |
| } else { | |
| icon.setAttribute('data-lucide', 'x'); | |
| lucide.createIcons(); | |
| } | |
| }); | |
| // Smooth scrolling for anchor links | |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
| anchor.addEventListener('click', function(e) { | |
| e.preventDefault(); | |
| const targetId = this.getAttribute('href'); | |
| const targetElement = document.querySelector(targetId); | |
| if (targetElement) { | |
| window.scrollTo({ | |
| top: targetElement.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| // Close mobile menu if open | |
| if (!mobileMenu.classList.contains('hidden')) { | |
| mobileMenu.classList.add('hidden'); | |
| const icon = mobileMenuButton.querySelector('i'); | |
| icon.setAttribute('data-lucide', 'menu'); | |
| lucide.createIcons(); | |
| } | |
| } | |
| }); | |
| }); | |
| // Highlight active nav link on scroll | |
| const sections = document.querySelectorAll('section'); | |
| const navLinks = document.querySelectorAll('header nav a'); | |
| window.addEventListener('scroll', () => { | |
| let current = ''; | |
| sections.forEach(section => { | |
| const sectionTop = section.offsetTop; | |
| const sectionHeight = section.clientHeight; | |
| if (pageYOffset >= (sectionTop - 150)) { | |
| current = section.getAttribute('id'); | |
| } | |
| }); | |
| navLinks.forEach(link => { | |
| link.classList.remove('active-nav'); | |
| if (link.getAttribute('href') === `#${current}`) { | |
| link.classList.add('active-nav'); | |
| } | |
| }); | |
| }); | |
| // Contact form handling | |
| const contactForm = document.getElementById('contact-form'); | |
| const formStatus = document.getElementById('form-status'); | |
| const submitText = document.getElementById('submit-text'); | |
| const submitIcon = document.getElementById('submit-icon'); | |
| contactForm.addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| // Show loading state | |
| submitText.textContent = 'Enviando...'; | |
| submitIcon.classList.remove('hidden'); | |
| formStatus.classList.add('hidden'); | |
| // Simulate form submission | |
| setTimeout(() => { | |
| // Check if required fields are filled | |
| const name = document.getElementById('name').value; | |
| const email = document.getElementById('email').value; | |
| const message = document.getElementById('message').value; | |
| if (name && email && message) { | |
| // Success | |
| formStatus.textContent = '¡Gracias por tu mensaje! Nos pondremos en contacto contigo pronto.'; | |
| formStatus.classList.remove('hidden', 'bg-red-100', 'text-red-700'); | |
| formStatus.classList.add('bg-green-100', 'text-green-700'); | |
| // Reset form | |
| contactForm.reset(); | |
| } else { | |
| // Error | |
| formStatus.textContent = 'Por favor completa todos los campos requeridos.'; | |
| formStatus.classList.remove('hidden', 'bg-green-100', 'text-green-700'); | |
| formStatus.classList.add('bg-red-100', 'text-red-700'); | |
| } | |
| // Reset button state | |
| submitText.textContent = 'Enviar mensaje'; | |
| submitIcon.classList.add('hidden'); | |
| formStatus.classList.remove('hidden'); | |
| // Scroll to form status | |
| formStatus.scrollIntoView({ behavior: 'smooth', block: 'center' }); | |
| }, 1500); | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Kako2050/human-core" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |