Corporations / templates /projetos.html
akra35567's picture
Upload 8 files
2f2f476 verified
<!DOCTYPE html>
<html lang="pt-BR" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Projetos - SoftEdge Corporation</title>
<!-- SEO & SOCIAL -->
<meta name="description" content="Conheça nossos projetos: AKIRA IA, ERP Gestão Total, E-commerce ShopFast e muito mais. Soluções inovadoras em desenvolvimento de software.">
<meta name="keywords" content="projetos, portfólio, AKIRA IA, ERP, e-commerce, desenvolvimento">
<!-- FAVICON -->
<link rel="icon" href="/assets/placeholder.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="/assets/placeholder.svg">
<meta property="og:image" content="/assets/placeholder.svg" />
<meta property="og:title" content="Projetos - SoftEdge Corporation" />
<meta property="og:description" content="Conheça nosso portfólio de projetos inovadores" />
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
<!-- TAILWIND CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
colors: {
primary: {
50: '#ecfeff',
100: '#cffafe',
500: '#06b6d4',
600: '#0891b2',
700: '#0e7490',
900: '#164e63',
}
}
}
}
}
</script>
<!-- LUCIDE ICONS -->
<script src="https://unpkg.com/lucide@latest"></script>
<!-- CUSTOM CSS -->
<link href="/assets/css/style.css" rel="stylesheet">
</head>
<body class="min-h-screen bg-linear-to-br from-slate-950 via-slate-900 to-slate-950 text-white antialiased font-sans">
<!-- HEADER -->
<header class="fixed top-0 left-0 right-0 z-50 glass">
<nav class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex items-center justify-between h-16">
<!-- Logo -->
<div class="flex items-center space-x-3">
<div class="w-10 h-10 rounded-xl overflow-hidden bg-linear-to-br from-cyan-500 to-blue-600 p-0.5">
<img src="/assets/logo.jpeg" alt="SoftEdge Logo" class="w-full h-full object-cover rounded-xl">
</div>
<span class="text-xl font-bold gradient-text">SoftEdge</span>
</div>
<!-- Desktop Navigation -->
<div class="hidden md:flex items-center space-x-8">
<a href="/" class="text-gray-300 hover:text-cyan-400 transition-colors">Início</a>
<a href="/sobre" class="text-gray-300 hover:text-cyan-400 transition-colors">Sobre</a>
<a href="/servicos" class="text-gray-300 hover:text-cyan-400 transition-colors">Serviços</a>
<a href="/projetos" class="text-white hover:text-cyan-400 transition-colors font-medium">Projetos</a>
<a href="/contato" class="text-gray-300 hover:text-cyan-400 transition-colors">Contato</a>
</div>
<!-- Mobile menu button -->
<button class="md:hidden text-white" id="mobile-menu-button">
<i data-lucide="menu" class="w-6 h-6"></i>
</button>
</div>
<!-- Mobile Navigation -->
<div class="md:hidden hidden" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 bg-slate-900/95 rounded-lg mt-2">
<a href="/" class="block px-3 py-2 text-gray-300 hover:text-cyan-400">Início</a>
<a href="/sobre" class="block px-3 py-2 text-gray-300 hover:text-cyan-400">Sobre</a>
<a href="/servicos" class="block px-3 py-2 text-gray-300 hover:text-cyan-400">Serviços</a>
<a href="/projetos" class="block px-3 py-2 text-white font-medium">Projetos</a>
<a href="/contato" class="block px-3 py-2 text-gray-300 hover:text-cyan-400">Contato</a>
</div>
</div>
</nav>
</header>
<!-- HERO SECTION -->
<section class="relative min-h-[60vh] flex items-center justify-center overflow-hidden pt-16">
<div class="absolute inset-0 -z-10">
<div class="absolute inset-0 bg-linear-to-br from-slate-950 via-slate-900 to-slate-950"></div>
<div class="absolute inset-0 opacity-20">
<div class="absolute top-20 left-20 w-96 h-96 bg-cyan-500/20 rounded-full blur-3xl"></div>
<div class="absolute bottom-20 right-20 w-96 h-96 bg-blue-500/20 rounded-full blur-3xl"></div>
</div>
</div>
<div class="relative max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<div class="space-y-6">
<div class="inline-block px-4 py-2 bg-cyan-500/10 rounded-full border border-cyan-500/20">
<span class="text-cyan-400 text-sm font-semibold uppercase tracking-wider">Nosso Portfólio</span>
</div>
<h1 class="text-4xl sm:text-5xl md:text-6xl font-bold leading-tight">
Projetos que <span class="gradient-text">transformam</span> ideias<br>
em realidade
</h1>
<p class="text-lg sm:text-xl text-gray-400 max-w-2xl mx-auto">
Conheça nossas soluções inovadoras que já impactaram diversos setores e clientes.
</p>
</div>
</div>
</section>
<!-- PROJECTS GRID -->
<main class="relative py-20 lg:py-32">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<!-- FILTERS -->
<div class="flex flex-wrap justify-center gap-4 mb-16">
<button class="filter-btn active px-6 py-3 bg-cyan-500/20 text-cyan-400 rounded-full border border-cyan-500/30 hover:bg-cyan-500/30 transition-colors" data-filter="all">
Todos os Projetos
</button>
<button class="filter-btn px-6 py-3 bg-slate-700/50 text-gray-300 rounded-full border border-slate-600 hover:bg-slate-600/50 transition-colors" data-filter="ai">
Inteligência Artificial
</button>
<button class="filter-btn px-6 py-3 bg-slate-700/50 text-gray-300 rounded-full border border-slate-600 hover:bg-slate-600/50 transition-colors" data-filter="web">
Desenvolvimento Web
</button>
<button class="filter-btn px-6 py-3 bg-slate-700/50 text-gray-300 rounded-full border border-slate-600 hover:bg-slate-600/50 transition-colors" data-filter="mobile">
Aplicativos Mobile
</button>
<button class="filter-btn px-6 py-3 bg-slate-700/50 text-gray-300 rounded-full border border-slate-600 hover:bg-slate-600/50 transition-colors" data-filter="erp">
Sistemas ERP
</button>
</div>
<!-- PROJECTS -->
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8" id="projects-grid">
{% for project in projects %}
<!-- Project Card -->
<div class="project-card glass rounded-2xl overflow-hidden hover-lift group" data-category="{{ 'ai' if 'TensorFlow' in project.technologies else 'web' if 'React' in project.technologies else 'erp' if 'Laravel' in project.technologies else 'mobile' }}">
<!-- Project Image -->
<div class="relative h-48 bg-gradient-to-br from-cyan-500/20 to-blue-500/20">
<img src="/assets/projeto.jpg" alt="{{ project.title }}" class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity">
<div class="absolute top-4 right-4">
<span class="px-3 py-1 bg-{{ 'green' if project.status == 'Concluído' else 'yellow' }}-500/20 text-{{ 'green' if project.status == 'Concluído' else 'yellow' }}-400 text-xs font-semibold rounded-full border border-{{ 'green' if project.status == 'Concluído' else 'yellow' }}-500/30">
{{ project.status }}
</span>
</div>
</div>
<!-- Project Content -->
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-3 group-hover:text-cyan-400 transition-colors">
{{ project.title }}
</h3>
<p class="text-gray-400 text-sm leading-relaxed mb-4">
{{ project.description }}
</p>
<!-- Technologies -->
<div class="flex flex-wrap gap-2">
{% for tech in project.technologies.split(', ') %}
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">
{{ tech.strip() }}
</span>
{% endfor %}
</div>
</div>
</div>
{% endfor %}
<!-- AKIRA IA -->
<div class="project-card glass rounded-2xl overflow-hidden hover-lift group" data-category="ai">
<div class="relative h-48 bg-gradient-to-br from-purple-500/20 to-pink-500/20">
<img src="/assets/akira.jpg" alt="AKIRA IA" class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity">
<div class="absolute top-4 right-4">
<span class="px-3 py-1 bg-green-500/20 text-green-400 text-xs font-semibold rounded-full border border-green-500/30">
Concluído
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-3 group-hover:text-cyan-400 transition-colors">
AKIRA IA
</h3>
<p class="text-gray-400 text-sm leading-relaxed mb-4">
Assistente virtual angolano com processamento de linguagem natural avançado.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Python</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">TensorFlow</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">FastAPI</span>
</div>
</div>
</div>
<!-- ERP Gestão Total -->
<div class="project-card glass rounded-2xl overflow-hidden hover-lift group" data-category="erp">
<div class="relative h-48 bg-gradient-to-br from-blue-500/20 to-cyan-500/20">
<img src="/assets/projeto.jpg" alt="ERP Gestão Total" class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity">
<div class="absolute top-4 right-4">
<span class="px-3 py-1 bg-green-500/20 text-green-400 text-xs font-semibold rounded-full border border-green-500/30">
Concluído
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-3 group-hover:text-cyan-400 transition-colors">
ERP Gestão Total
</h3>
<p class="text-gray-400 text-sm leading-relaxed mb-4">
Sistema completo de gestão empresarial com módulos integrados.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Laravel</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Vue.js</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">MySQL</span>
</div>
</div>
</div>
<!-- E-commerce ShopFast -->
<div class="project-card glass rounded-2xl overflow-hidden hover-lift group" data-category="web">
<div class="relative h-48 bg-gradient-to-br from-green-500/20 to-blue-500/20">
<img src="/assets/projeto.jpg" alt="E-commerce ShopFast" class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity">
<div class="absolute top-4 right-4">
<span class="px-3 py-1 bg-green-500/20 text-green-400 text-xs font-semibold rounded-full border border-green-500/30">
Concluído
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-3 group-hover:text-cyan-400 transition-colors">
E-commerce ShopFast
</h3>
<p class="text-gray-400 text-sm leading-relaxed mb-4">
Plataforma de vendas online de alta performance com integração de pagamentos.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Next.js</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Stripe</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Prisma</span>
</div>
</div>
</div>
<!-- Sistema de Gestão Escolar -->
<div class="project-card glass rounded-2xl overflow-hidden hover-lift group" data-category="web">
<div class="relative h-48 bg-gradient-to-br from-orange-500/20 to-red-500/20">
<img src="/assets/projeto.jpg" alt="Sistema de Gestão Escolar" class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity">
<div class="absolute top-4 right-4">
<span class="px-3 py-1 bg-yellow-500/20 text-yellow-400 text-xs font-semibold rounded-full border border-yellow-500/30">
Em desenvolvimento
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-3 group-hover:text-cyan-400 transition-colors">
Sistema de Gestão Escolar
</h3>
<p class="text-gray-400 text-sm leading-relaxed mb-4">
Plataforma completa para gestão educacional com acompanhamento de alunos.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">React</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Node.js</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">PostgreSQL</span>
</div>
</div>
</div>
<!-- App Mobile Delivery -->
<div class="project-card glass rounded-2xl overflow-hidden hover-lift group" data-category="mobile">
<div class="relative h-48 bg-gradient-to-br from-pink-500/20 to-purple-500/20">
<img src="/assets/projeto.jpg" alt="App Mobile Delivery" class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity">
<div class="absolute top-4 right-4">
<span class="px-3 py-1 bg-yellow-500/20 text-yellow-400 text-xs font-semibold rounded-full border border-yellow-500/30">
Em desenvolvimento
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-3 group-hover:text-cyan-400 transition-colors">
App Mobile Delivery
</h3>
<p class="text-gray-400 text-sm leading-relaxed mb-4">
Aplicativo de delivery com geolocalização e rastreamento em tempo real.
</p>
<div class="flex flex-wrap gap-2">
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Flutter</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Firebase</span>
<span class="px-2 py-1 bg-slate-700/50 text-gray-300 text-xs rounded-md">Google Maps</span>
</div>
</div>
</div>
</div>
<!-- CTA SECTION -->
<div class="text-center mt-20">
<div class="glass rounded-3xl p-12 lg:p-16 max-w-4xl mx-auto">
<h2 class="text-3xl sm:text-4xl md:text-5xl font-bold text-white mb-6">
Tem um projeto em <span class="gradient-text">mente</span>?
</h2>
<p class="text-gray-400 text-lg mb-8 max-w-2xl mx-auto">
Vamos transformar sua ideia em uma solução tecnológica inovadora. Nossa equipe está pronta para o desafio.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="/contato" class="bg-linear-to-r from-cyan-500 to-blue-600 hover:from-cyan-600 hover:to-blue-700 text-white font-bold py-4 px-8 rounded-xl transition-all duration-300 hover-lift">
Iniciar Projeto
<i data-lucide="rocket" class="inline w-5 h-5 ml-2"></i>
</a>
<a href="/servicos" class="border border-cyan-500/30 text-cyan-400 hover:bg-cyan-500/10 font-semibold py-4 px-8 rounded-xl transition-all duration-300">
Nossos Serviços
</a>
</div>
</div>
</div>
</div>
</main>
<!-- FOOTER -->
<footer class="relative bg-slate-950/95 backdrop-blur-xl border-t border-white/5 mt-20 overflow-hidden">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
<div class="grid md:grid-cols-4 gap-8">
<!-- Company Info -->
<div>
<div class="flex items-center space-x-3 mb-6">
<div class="w-12 h-12 rounded-xl overflow-hidden bg-linear-to-br from-cyan-500 to-blue-600 p-0.5">
<img src="/assets/logo.jpeg" alt="SoftEdge Logo" class="w-full h-full object-cover rounded-xl">
</div>
<span class="text-2xl font-bold gradient-text">SoftEdge</span>
</div>
<p class="text-gray-400 text-sm leading-relaxed">
Começamos com um sonho. Hoje desenvolvemos realidades lógicas e softwares mais amáveis.
</p>
</div>
<!-- Quick Links -->
<div>
<h3 class="text-white font-semibold mb-4">Navegação</h3>
<div class="space-y-2">
<a href="/" class="block text-gray-400 hover:text-cyan-400 transition-colors text-sm">Início</a>
<a href="/sobre" class="block text-gray-400 hover:text-cyan-400 transition-colors text-sm">Sobre</a>
<a href="/servicos" class="block text-gray-400 hover:text-cyan-400 transition-colors text-sm">Serviços</a>
<a href="/projetos" class="block text-gray-400 hover:text-cyan-400 transition-colors text-sm">Projetos</a>
<a href="/contato" class="block text-gray-400 hover:text-cyan-400 transition-colors text-sm">Contato</a>
</div>
</div>
<!-- Services -->
<div>
<h3 class="text-white font-semibold mb-4">Serviços</h3>
<div class="space-y-2">
<a href="/servicos" class="block text-gray-400 hover:text-cyan-400 transition-colors text-sm">Desenvolvimento Web</a>
<a href="/servicos" class="block text-gray-400 hover:text-cyan-400 transition-colors text-sm">Apps Mobile</a>
<a href="/servicos" class="block text-gray-400 hover:text-cyan-400 transition-colors text-sm">Inteligência Artificial</a>
<a href="/servicos" class="block text-gray-400 hover:text-cyan-400 transition-colors text-sm">Cloud & DevOps</a>
</div>
</div>
<!-- Contact -->
<div>
<h3 class="text-white font-semibold mb-4">Contato</h3>
<div class="space-y-3">
<a href="mailto:softedgecorporation@gmail.com" class="flex items-center text-gray-400 hover:text-cyan-400 transition-colors text-sm">
<i data-lucide="mail" class="w-4 h-4 mr-2"></i>
Email
</a>
<a href="https://wa.me/244900000000" target="_blank" class="flex items-center text-gray-400 hover:text-cyan-400 transition-colors text-sm">
<i data-lucide="message-circle" class="w-4 h-4 mr-2"></i>
WhatsApp
</a>
<div class="flex items-center text-gray-400 text-sm">
<i data="lucide" class="w-4 h-4 mr-2"></i>
Luanda, Angola
</div>
</div>
</div>
</div>
<div class="border-t border-white/5 mt-12 pt-8 text-center">
<p class="text-gray-400 text-sm">
© 2025 <span class="text-white font-semibold">SoftEdge Corporation</span>. Todos os direitos reservados.
</p>
</div>
</div>
</footer>
<!-- SCRIPTS -->
<script src="https://unpkg.com/lucide@latest"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Initialize Lucide icons
lucide.createIcons();
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', function() {
mobileMenu.classList.toggle('hidden');
});
// Project filtering
const filterButtons = document.querySelectorAll('.filter-btn');
const projectCards = document.querySelectorAll('.project-card');
filterButtons.forEach(button => {
button.addEventListener('click', function() {
const filter = this.getAttribute('data-filter');
// Update active button
filterButtons.forEach(btn => btn.classList.remove('active', 'bg-cyan-500/20', 'text-cyan-400', 'border-cyan-500/30'));
filterButtons.forEach(btn => btn.classList.add('bg-slate-700/50', 'text-gray-300', 'border-slate-600'));
this.classList.add('active', 'bg-cyan-500/20', 'text-cyan-400', 'border-cyan-500/30');
this.classList.remove('bg-slate-700/50', 'text-gray-300', 'border-slate-600');
// Filter projects
projectCards.forEach(card => {
if (filter === 'all' || card.getAttribute('data-category') === filter) {
card.style.display = 'block';
card.style.opacity = '0';
card.style.transform = 'scale(0.9)';
setTimeout(() => {
card.style.opacity = '1';
card.style.transform = 'scale(1)';
}, 100);
} else {
card.style.display = 'none';
}
});
});
});
// Smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Intersection Observer for animations
const observerOptions = {
threshold: 0.1,
rootMargin: '0px 0px -100px 0px'
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = '1';
entry.target.style.transform = 'translateY(0)';
}
});
}, observerOptions);
// Observe project cards
document.querySelectorAll('.project-card').forEach(card => {
card.style.opacity = '0';
card.style.transform = 'translateY(30px)';
card.style.transition = 'opacity 0.8s ease, transform 0.8s ease';
observer.observe(card);
});
});
</script>
<style>
.glass {
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.gradient-text {
background: linear-gradient(135deg, #06b6d4, #3b82f6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hover-lift {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}
.filter-btn.active {
background: rgba(6, 182, 212, 0.2) !important;
color: #06b6d4 !important;
border-color: rgba(6, 182, 212, 0.3) !important;
}
</style>
</body>
</html>