| | <!DOCTYPE html> |
| | <html lang="es"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>Zyar | Agencia de Branding Creativo</title> |
| | <script src="https://cdn.tailwindcss.com"></script> |
| | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| | <style> |
| | @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@700&display=swap'); |
| | |
| | body { |
| | font-family: 'Montserrat', sans-serif; |
| | overflow-x: hidden; |
| | } |
| | |
| | .hero-gradient { |
| | background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); |
| | } |
| | |
| | .brand-item { |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .brand-item:hover { |
| | transform: translateY(-5px); |
| | box-shadow: 0 10px 25px rgba(0,0,0,0.1); |
| | } |
| | |
| | .menu-open { |
| | transform: translateX(0); |
| | } |
| | |
| | .text-stroke { |
| | -webkit-text-stroke: 1px #000; |
| | color: transparent; |
| | } |
| | |
| | .floating { |
| | animation: floating 6s ease-in-out infinite; |
| | } |
| | |
| | .title-font { |
| | font-family: 'Playfair Display', serif; |
| | } |
| | |
| | @keyframes floating { |
| | 0% { transform: translateY(0px); } |
| | 50% { transform: translateY(-15px); } |
| | 100% { transform: translateY(0px); } |
| | } |
| | |
| | .price-card { |
| | transition: all 0.3s ease; |
| | border: 2px solid transparent; |
| | } |
| | |
| | .price-card:hover { |
| | transform: translateY(-10px); |
| | border-color: #6366f1; |
| | box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| | } |
| | |
| | .price-card.popular { |
| | border-color: #6366f1; |
| | position: relative; |
| | } |
| | |
| | .popular-badge { |
| | position: absolute; |
| | top: -12px; |
| | right: 20px; |
| | background: #6366f1; |
| | color: white; |
| | padding: 4px 12px; |
| | border-radius: 20px; |
| | font-size: 12px; |
| | font-weight: bold; |
| | } |
| | </style> |
| | </head> |
| | <body class="bg-white text-gray-800"> |
| | |
| | <div class="fixed inset-0 bg-black bg-opacity-75 z-50 transition-all duration-300 transform translate-x-full menu-open" id="mobileMenu"> |
| | <div class="absolute right-0 top-0 w-4/5 sm:w-1/2 h-full bg-white p-8"> |
| | <button id="closeMenu" class="absolute top-6 right-6 text-2xl"> |
| | <i class="fas fa-times"></i> |
| | </button> |
| | <nav class="mt-20"> |
| | <ul class="space-y-8"> |
| | <li><a href="#inicio" class="text-2xl font-medium hover:text-indigo-600 transition">Inicio</a></li> |
| | <li><a href="#servicios" class="text-2xl font-medium hover:text-indigo-600 transition">Servicios</a></li> |
| | <li><a href="#precios" class="text-2xl font-medium hover:text-indigo-600 transition">Precios</a></li> |
| | <li><a href="#clientes" class="text-2xl font-medium hover:text-indigo-600 transition">Clientes</a></li> |
| | <li><a href="#contacto" class="text-2xl font-medium hover:text-indigo-600 transition">Contacto</a></li> |
| | </ul> |
| | </nav> |
| | <div class="absolute bottom-8 left-8"> |
| | <p class="text-gray-500 mb-2">Contáctanos</p> |
| | <a href="mailto:hola@zyar.com" class="text-xl font-medium">hola@zyar.com</a> |
| | </div> |
| | </div> |
| | </div> |
| |
|
| | |
| | <header class="fixed w-full z-40 bg-white bg-opacity-90 backdrop-blur-sm"> |
| | <div class="container mx-auto px-6 py-4 flex justify-between items-center"> |
| | <a href="#inicio" class="text-2xl font-bold title-font">ZYAR</a> |
| | <nav class="hidden md:flex space-x-8"> |
| | <a href="#inicio" class="font-medium hover:text-indigo-600 transition">Inicio</a> |
| | <a href="#servicios" class="font-medium hover:text-indigo-600 transition">Servicios</a> |
| | <a href="#precios" class="font-medium hover:text-indigo-600 transition">Precios</a> |
| | <a href="#clientes" class="font-medium hover:text-indigo-600 transition">Clientes</a> |
| | <a href="#contacto" class="font-medium hover:text-indigo-600 transition">Contacto</a> |
| | </nav> |
| | <button id="openMenu" class="md:hidden text-xl"> |
| | <i class="fas fa-bars"></i> |
| | </button> |
| | </div> |
| | </header> |
| |
|
| | |
| | <section id="inicio" class="hero-gradient min-h-screen pt-32 pb-20 px-6 flex items-center"> |
| | <div class="container mx-auto"> |
| | <div class="flex flex-col lg:flex-row items-center"> |
| | <div class="lg:w-1/2 mb-16 lg:mb-0"> |
| | <h1 class="text-5xl md:text-7xl font-bold leading-tight mb-6 title-font"> |
| | Construimos <span class="text-indigo-600">marcas</span> memorables |
| | </h1> |
| | <p class="text-xl text-gray-600 mb-8 max-w-lg"> |
| | En Zyar transformamos ideas en identidades visuales poderosas que conectan con tu audiencia y destacan en el mercado. |
| | </p> |
| | <div class="flex space-x-4"> |
| | <a href="#servicios" class="bg-indigo-600 text-white px-8 py-3 rounded-full font-medium hover:bg-indigo-700 transition"> |
| | Nuestros Servicios |
| | </a> |
| | <a href="#contacto" class="border-2 border-gray-800 px-8 py-3 rounded-full font-medium hover:bg-gray-800 hover:text-white transition"> |
| | Contacto |
| | </a> |
| | </div> |
| | </div> |
| | <div class="lg:w-1/2 relative"> |
| | <img src="https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" |
| | alt="Branding work" |
| | class="rounded-2xl shadow-2xl floating w-full max-w-lg mx-auto"> |
| | <div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-xl shadow-lg hidden lg:block"> |
| | <p class="font-bold">Estrategia de Marca</p> |
| | <p class="text-sm text-gray-500">Creamos identidades con propósito</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="clientes" class="py-16 bg-gray-50"> |
| | <div class="container mx-auto px-6"> |
| | <h2 class="text-3xl font-bold text-center mb-12 title-font">Clientes que confían en nosotros</h2> |
| | <div class="flex flex-wrap justify-center items-center gap-12"> |
| | <img src="https://upload.wikimedia.org/wikipedia/commons/2/2f/Google_2015_logo.svg" alt="Google" class="h-8 opacity-60 hover:opacity-100 transition"> |
| | <img src="https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg" alt="Apple" class="h-8 opacity-60 hover:opacity-100 transition"> |
| | <img src="https://upload.wikimedia.org/wikipedia/commons/a/a9/Amazon_logo.svg" alt="Amazon" class="h-8 opacity-60 hover:opacity-100 transition"> |
| | <img src="https://upload.wikimedia.org/wikipedia/commons/0/08/Netflix_2015_logo.svg" alt="Netflix" class="h-8 opacity-60 hover:opacity-100 transition"> |
| | <img src="https://upload.wikimedia.org/wikipedia/commons/9/96/Microsoft_logo_%282012%29.svg" alt="Microsoft" class="h-8 opacity-60 hover:opacity-100 transition"> |
| | </div> |
| | |
| | <div class="mt-16 grid md:grid-cols-3 gap-8"> |
| | <div class="bg-white p-8 rounded-xl shadow-lg"> |
| | <div class="flex items-center mb-6"> |
| | <img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Cliente" class="w-16 h-16 rounded-full mr-4"> |
| | <div> |
| | <h4 class="font-bold">Ana Martínez</h4> |
| | <p class="text-gray-500">CEO, Delicias Naturales</p> |
| | </div> |
| | </div> |
| | <p class="text-gray-700"> |
| | "Zyar transformó completamente nuestra marca. Desde el rediseño del logo hasta la estrategia de comunicación, todo ha sido excepcional." |
| | </p> |
| | </div> |
| | |
| | <div class="bg-white p-8 rounded-xl shadow-lg"> |
| | <div class="flex items-center mb-6"> |
| | <img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Cliente" class="w-16 h-16 rounded-full mr-4"> |
| | <div> |
| | <h4 class="font-bold">Carlos Rodríguez</h4> |
| | <p class="text-gray-500">Fundador, TechSolutions</p> |
| | </div> |
| | </div> |
| | <p class="text-gray-700"> |
| | "El equipo de Zyar entendió perfectamente nuestra visión y creó una identidad que refleja nuestros valores y atrae a nuestro público objetivo." |
| | </p> |
| | </div> |
| | |
| | <div class="bg-white p-8 rounded-xl shadow-lg"> |
| | <div class="flex items-center mb-6"> |
| | <img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Cliente" class="w-16 h-16 rounded-full mr-4"> |
| | <div> |
| | <h4 class="font-bold">Laura González</h4> |
| | <p class="text-gray-500">Directora de Marketing, Moda Ética</p> |
| | </div> |
| | </div> |
| | <p class="text-gray-700"> |
| | "Trabajar con Zyar fue una experiencia increíble. Su enfoque estratégico y creatividad nos ayudaron a posicionarnos como líderes en nuestro sector." |
| | </p> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="servicios" class="py-20"> |
| | <div class="container mx-auto px-6"> |
| | <div class="text-center mb-16"> |
| | <h2 class="text-4xl font-bold mb-4 title-font">Nuestros Servicios</h2> |
| | <p class="text-xl text-gray-600 max-w-2xl mx-auto"> |
| | Ofrecemos soluciones integrales de branding para ayudar a tu negocio a destacar. |
| | </p> |
| | </div> |
| | |
| | <div class="grid md:grid-cols-3 gap-8"> |
| | <div class="bg-white p-8 rounded-xl shadow-lg brand-item"> |
| | <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> |
| | <i class="fas fa-lightbulb text-indigo-600 text-2xl"></i> |
| | </div> |
| | <h3 class="text-xl font-bold mb-3">Estrategia de Marca</h3> |
| | <p class="text-gray-600 mb-4"> |
| | Desarrollamos marcas con propósito que conectan emocionalmente con tu audiencia. |
| | </p> |
| | <ul class="text-gray-600 space-y-2"> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Investigación de mercado</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Posicionamiento</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Arquitectura de marca</li> |
| | </ul> |
| | </div> |
| | |
| | <div class="bg-white p-8 rounded-xl shadow-lg brand-item"> |
| | <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> |
| | <i class="fas fa-pen-fancy text-indigo-600 text-2xl"></i> |
| | </div> |
| | <h3 class="text-xl font-bold mb-3">Identidad Visual</h3> |
| | <p class="text-gray-600 mb-4"> |
| | Creamos sistemas visuales distintivos que comunican la esencia de tu marca. |
| | </p> |
| | <ul class="text-gray-600 space-y-2"> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Diseño de logotipo</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Sistema de color</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Tipografía y gráficos</li> |
| | </ul> |
| | </div> |
| | |
| | <div class="bg-white p-8 rounded-xl shadow-lg brand-item"> |
| | <div class="w-14 h-14 bg-indigo-100 rounded-lg flex items-center justify-center mb-6"> |
| | <i class="fas fa-laptop-code text-indigo-600 text-2xl"></i> |
| | </div> |
| | <h3 class="text-xl font-bold mb-3">Diseño Digital</h3> |
| | <p class="text-gray-600 mb-4"> |
| | Experiencias digitales que refuerzan la percepción de tu marca. |
| | </p> |
| | <ul class="text-gray-600 space-y-2"> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Diseño web</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Redes sociales</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Campañas digitales</li> |
| | </ul> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="precios" class="py-20 bg-gray-50"> |
| | <div class="container mx-auto px-6"> |
| | <div class="text-center mb-16"> |
| | <h2 class="text-4xl font-bold mb-4 title-font">Nuestros Paquetes</h2> |
| | <p class="text-xl text-gray-600 max-w-2xl mx-auto"> |
| | Soluciones adaptadas a las necesidades de tu negocio. |
| | </p> |
| | </div> |
| | |
| | <div class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto"> |
| | <div class="bg-white p-8 rounded-xl shadow-lg price-card"> |
| | <h3 class="text-xl font-bold mb-4">Básico</h3> |
| | <p class="text-gray-600 mb-6">Perfecto para startups y emprendedores</p> |
| | <div class="text-4xl font-bold mb-6">$1,499<span class="text-lg text-gray-500">/mes</span></div> |
| | <ul class="space-y-3 mb-8"> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Diseño de logotipo</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Paleta de colores</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Tipografía</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Manual básico de marca</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> 2 revisiones</li> |
| | </ul> |
| | <a href="#contacto" class="block text-center border-2 border-gray-800 px-6 py-2 rounded-full font-medium hover:bg-gray-800 hover:text-white transition"> |
| | Contratar |
| | </a> |
| | </div> |
| | |
| | <div class="bg-white p-8 rounded-xl shadow-lg price-card popular"> |
| | <div class="popular-badge">POPULAR</div> |
| | <h3 class="text-xl font-bold mb-4">Profesional</h3> |
| | <p class="text-gray-600 mb-6">Ideal para empresas en crecimiento</p> |
| | <div class="text-4xl font-bold mb-6">$2,999<span class="text-lg text-gray-500">/mes</span></div> |
| | <ul class="space-y-3 mb-8"> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Todo en Básico</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Estrategia de marca</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Diseño de papelería</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Manual completo de marca</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> 5 revisiones</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Diseño de redes sociales</li> |
| | </ul> |
| | <a href="#contacto" class="block text-center bg-indigo-600 text-white px-6 py-2 rounded-full font-medium hover:bg-indigo-700 transition"> |
| | Contratar |
| | </a> |
| | </div> |
| | |
| | <div class="bg-white p-8 rounded-xl shadow-lg price-card"> |
| | <h3 class="text-xl font-bold mb-4">Premium</h3> |
| | <p class="text-gray-600 mb-6">Para marcas establecidas que buscan reinvención</p> |
| | <div class="text-4xl font-bold mb-6">$4,999<span class="text-lg text-gray-500">/mes</span></div> |
| | <ul class="space-y-3 mb-8"> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Todo en Profesional</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Investigación de mercado</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Diseño de packaging</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Fotografía profesional</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Diseño web básico</li> |
| | <li class="flex items-center"><i class="fas fa-check text-indigo-500 mr-2"></i> Revisiones ilimitadas</li> |
| | </ul> |
| | <a href="#contacto" class="block text-center border-2 border-gray-800 px-6 py-2 rounded-full font-medium hover:bg-gray-800 hover:text-white transition"> |
| | Contratar |
| | </a> |
| | </div> |
| | </div> |
| | |
| | <div class="mt-12 text-center"> |
| | <p class="text-gray-600 mb-4">¿Necesitas algo personalizado?</p> |
| | <a href="#contacto" class="text-indigo-600 font-medium hover:underline">Hablemos sobre un paquete a medida →</a> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="py-20"> |
| | <div class="container mx-auto px-6"> |
| | <div class="flex justify-between items-center mb-12"> |
| | <h2 class="text-4xl font-bold title-font">Nuestro Trabajo</h2> |
| | <a href="#" class="text-indigo-600 font-medium hover:underline">Ver todos los proyectos →</a> |
| | </div> |
| | |
| | <div class="grid md:grid-cols-2 gap-8"> |
| | <div class="relative group overflow-hidden rounded-2xl"> |
| | <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" |
| | alt="Project 1" |
| | class="w-full h-96 object-cover transition duration-500 group-hover:scale-105"> |
| | <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition"> |
| | <div class="text-center p-6"> |
| | <h3 class="text-2xl font-bold text-white mb-2">Aurora</h3> |
| | <p class="text-white">Identidad para marca de cosmética natural</p> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div class="relative group overflow-hidden rounded-2xl"> |
| | <img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" |
| | alt="Project 2" |
| | class="w-full h-96 object-cover transition duration-500 group-hover:scale-105"> |
| | <div class="absolute inset-0 bg-black bg-opacity-50 flex items-center justify-center opacity-0 group-hover:opacity-100 transition"> |
| | <div class="text-center p-6"> |
| | <h3 class="text-2xl font-bold text-white mb-2">Nova</h3> |
| | <p class="text-white">Branding para startup tecnológica</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="contacto" class="py-20 bg-indigo-600 text-white"> |
| | <div class="container mx-auto px-6"> |
| | <div class="max-w-4xl mx-auto"> |
| | <div class="text-center mb-16"> |
| | <h2 class="text-4xl font-bold mb-4 title-font">Hablemos de tu proyecto</h2> |
| | <p class="text-xl"> |
| | Completa el formulario y nos pondremos en contacto contigo en menos de 24 horas. |
| | </p> |
| | </div> |
| | |
| | <form class="grid md:grid-cols-2 gap-6"> |
| | <div> |
| | <label for="name" class="block mb-2">Nombre completo</label> |
| | <input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-indigo-500 bg-opacity-20 border border-indigo-400 focus:outline-none focus:ring-2 focus:ring-white placeholder-indigo-200"> |
| | </div> |
| | |
| | <div> |
| | <label for="email" class="block mb-2">Correo electrónico</label> |
| | <input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-indigo-500 bg-opacity-20 border border-indigo-400 focus:outline-none focus:ring-2 focus:ring-white placeholder-indigo-200"> |
| | </div> |
| | |
| | <div> |
| | <label for="phone" class="block mb-2">Teléfono</label> |
| | <input type="tel" id="phone" class="w-full px-4 py-3 rounded-lg bg-indigo-500 bg-opacity-20 border border-indigo-400 focus:outline-none focus:ring-2 focus:ring-white placeholder-indigo-200"> |
| | </div> |
| | |
| | <div> |
| | <label for="service" class="block mb-2">Servicio de interés</label> |
| | <select id="service" class="w-full px-4 py-3 rounded-lg bg-indigo-500 bg-opacity-20 border border-indigo-400 focus:outline-none focus:ring-2 focus:ring-white text-white"> |
| | <option value="">Selecciona una opción</option> |
| | <option value="branding">Branding completo</option> |
| | <option value="logo">Diseño de logotipo</option> |
| | <option value="strategy">Estrategia de marca</option> |
| | <option value="web">Diseño web</option> |
| | <option value="other">Otro</option> |
| | </select> |
| | </div> |
| | |
| | <div class="md:col-span-2"> |
| | <label for="message" class="block mb-2">Cuéntanos sobre tu proyecto</label> |
| | <textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg bg-indigo-500 bg-opacity-20 border border-indigo-400 focus:outline-none focus:ring-2 focus:ring-white placeholder-indigo-200"></textarea> |
| | </div> |
| | |
| | <div class="md:col-span-2 flex items-center"> |
| | <input type="checkbox" id="privacy" class="mr-3"> |
| | <label for="privacy">Acepto la política de privacidad y el tratamiento de mis datos</label> |
| | </div> |
| | |
| | <div class="md:col-span-2 text-center"> |
| | <button type="submit" class="bg-white text-indigo-600 px-8 py-3 rounded-full font-medium hover:bg-gray-100 transition inline-block"> |
| | Enviar mensaje |
| | </button> |
| | </div> |
| | </form> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <footer class="bg-gray-900 text-white py-16"> |
| | <div class="container mx-auto px-6"> |
| | <div class="grid md:grid-cols-4 gap-12"> |
| | <div> |
| | <h3 class="text-2xl font-bold mb-4 title-font">ZYAR</h3> |
| | <p class="text-gray-400 mb-4"> |
| | Creamos marcas con propósito que inspiran y conectan. |
| | </p> |
| | <div class="flex space-x-4"> |
| | <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a> |
| | <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a> |
| | <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin"></i></a> |
| | <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-behance"></i></a> |
| | </div> |
| | </div> |
| | |
| | <div> |
| | <h4 class="font-bold text-lg mb-4">Servicios</h4> |
| | <ul class="space-y-2"> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition">Estrategia de marca</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition">Identidad visual</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition">Diseño web</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition">Packaging</a></li> |
| | </ul> |
| | </div> |
| | |
| | <div> |
| | <h4 class="font-bold text-lg mb-4">Empresa</h4> |
| | <ul class="space-y-2"> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition">Sobre nosotros</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition">Portafolio</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> |
| | <li><a href="#" class="text-gray-400 hover:text-white transition">Trabaja con nosotros</a></li> |
| | </ul> |
| | </div> |
| | |
| | <div> |
| | <h4 class="font-bold text-lg mb-4">Contacto</h4> |
| | <ul class="space-y-2"> |
| | <li class="flex items-start"> |
| | <i class="fas fa-map-marker-alt text-indigo-500 mt-1 mr-2"></i> |
| | <span class="text-gray-400">CDMX, México</span> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-phone text-indigo-500 mr-2"></i> |
| | <a href="tel:+525512345678" class="text-gray-400 hover:text-white transition">+52 55 1234 5678</a> |
| | </li> |
| | <li class="flex items-center"> |
| | <i class="fas fa-envelope text-indigo-500 mr-2"></i> |
| | <a href="mailto:hola@zyar.com" class="text-gray-400 hover:text-white transition">hola@zyar.com</a> |
| | </li> |
| | </ul> |
| | </div> |
| | </div> |
| | |
| | <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> |
| | <p class="text-gray-400">© 2025 Zyar Branding Agency. Todos los derechos reservados.</p> |
| | <div class="flex space-x-6 mt-4 md:mt-0"> |
| | <a href="#" class="text-gray-400 hover:text-white transition">Política de privacidad</a> |
| | <a href="#" class="text-gray-400 hover:text-white transition">Términos de servicio</a> |
| | </div> |
| | </div> |
| | </div> |
| | </footer> |
| |
|
| | <script> |
| | |
| | const mobileMenu = document.getElementById('mobileMenu'); |
| | const openMenu = document.getElementById('openMenu'); |
| | const closeMenu = document.getElementById('closeMenu'); |
| | |
| | openMenu.addEventListener('click', () => { |
| | mobileMenu.classList.remove('translate-x-full'); |
| | document.body.style.overflow = 'hidden'; |
| | }); |
| | |
| | closeMenu.addEventListener('click', () => { |
| | mobileMenu.classList.add('translate-x-full'); |
| | document.body.style.overflow = 'auto'; |
| | }); |
| | |
| | |
| | document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| | anchor.addEventListener('click', function (e) { |
| | e.preventDefault(); |
| | |
| | const targetId = this.getAttribute('href'); |
| | if (targetId === '#') return; |
| | |
| | const targetElement = document.querySelector(targetId); |
| | if (targetElement) { |
| | window.scrollTo({ |
| | top: targetElement.offsetTop - 80, |
| | behavior: 'smooth' |
| | }); |
| | |
| | |
| | if (!mobileMenu.classList.contains('translate-x-full')) { |
| | mobileMenu.classList.add('translate-x-full'); |
| | document.body.style.overflow = 'auto'; |
| | } |
| | } |
| | }); |
| | }); |
| | |
| | |
| | window.addEventListener('scroll', () => { |
| | const header = document.querySelector('header'); |
| | if (window.scrollY > 50) { |
| | header.classList.add('shadow-md'); |
| | } else { |
| | header.classList.remove('shadow-md'); |
| | } |
| | }); |
| | |
| | |
| | const contactForm = document.querySelector('form'); |
| | if (contactForm) { |
| | contactForm.addEventListener('submit', function(e) { |
| | e.preventDefault(); |
| | alert('¡Gracias por tu mensaje! Nos pondremos en contacto contigo pronto.'); |
| | this.reset(); |
| | }); |
| | } |
| | </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=atapiam/zyar-web" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| | </html> |