crie um site com informações encontradas na internet sobre Kepler Otto, residente em Marechal Cândido Rondon - PR, Brazil. O site deve ser em um formato de Landing page, e exibir fotos, informações sobre formação, atuação profissional além de outros dados relevantes sobre a pessoa emquestão. - Initial Deployment
35cd5f7 verified | <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Kepler Otto - Profissional de Tecnologia</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"> | |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#1E3A8A', | |
| secondary: '#3B82F6', | |
| accent: '#10B981', | |
| background: '#F9FAFB' | |
| }, | |
| fontFamily: { | |
| 'poppins': ['Poppins', 'sans-serif'], | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style type="text/css"> | |
| body { | |
| font-family: 'Poppins', sans-serif; | |
| scroll-behavior: smooth; | |
| } | |
| .profile-photo { | |
| border-radius: 50%; | |
| border: 5px solid white; | |
| box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); | |
| } | |
| .hover-effect { | |
| transition: all 0.3s ease; | |
| } | |
| .hover-effect:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .timeline::after { | |
| content: ''; | |
| position: absolute; | |
| width: 4px; | |
| background-color: #3B82F6; | |
| top: 0; | |
| bottom: 0; | |
| left: 0; | |
| margin-left: 25px; | |
| border-radius: 10px; | |
| } | |
| .timeline-dot { | |
| position: absolute; | |
| left: 19px; | |
| width: 16px; | |
| height: 16px; | |
| border-radius: 50%; | |
| background-color: #3B82F6; | |
| z-index: 10; | |
| } | |
| .section-title::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -8px; | |
| left: 0; | |
| width: 60px; | |
| height: 4px; | |
| background: linear-gradient(90deg, #3B82F6, #10B981); | |
| border-radius: 2px; | |
| } | |
| .location-pin::before { | |
| content: ''; | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233B82F6'%3E%3Cpath fill-rule='evenodd' d='M11.54 22.351l.07.04.028.016a.76.76 0 00.723 0l.028-.015.071-.041a16.975 16.975 0 001.144-.742 19.58 19.58 0 002.683-2.282c1.944-1.99 3.963-4.98 3.963-8.827a8.25 8.25 0 00-16.5 0c0 3.846 2.02 6.837 3.963 8.827a19.58 19.58 0 002.682 2.282 16.975 16.975 0 001.145.742zM12 13.5a3 3 0 100-6 3 3 0 000 6z' clip-rule='evenodd' /%3E%3C/svg%3E") center no-repeat; | |
| opacity: 0.1; | |
| z-index: -1; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-background text-gray-800 font-poppins"> | |
| <!-- Navigation --> | |
| <nav class="fixed top-0 w-full bg-white shadow-md z-50"> | |
| <div class="max-w-6xl mx-auto px-4"> | |
| <div class="flex justify-between h-16"> | |
| <div class="flex items-center"> | |
| <a href="#" class="flex items-center space-x-2"> | |
| <span class="text-primary font-bold text-xl">KO</span> | |
| </a> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-10"> | |
| <a href="#sobre" class="text-gray-600 hover:text-primary font-medium">Sobre</a> | |
| <a href="#formacao" class="text-gray-600 hover:text-primary font-medium">Formação</a> | |
| <a href="#experiencia" class="text-gray-600 hover:text-primary font-medium">Experiência</a> | |
| <a href="#projetos" class="text-gray-600 hover:text-primary font-medium">Projetos</a> | |
| <a href="#contato" class="bg-primary text-white px-4 py-2 rounded-lg hover:bg-blue-800 transition duration-300 font-medium">Contato</a> | |
| </div> | |
| <button class="md:hidden flex items-center justify-center p-2 rounded-md text-gray-700"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <header class="pt-28 pb-16 md:pt-36 md:pb-24 bg-gradient-to-br from-primary to-blue-800 text-white"> | |
| <div class="max-w-6xl mx-auto px-4 flex flex-col md:flex-row items-center"> | |
| <div class="w-full md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-4"> | |
| Kepler Otto<br> | |
| <span class="text-blue-200">Profissional de Tecnologia</span> | |
| </h1> | |
| <p class="text-blue-100 text-lg mb-8 max-w-xl"> | |
| Desenvolvedor e consultor de TI com foco em soluções inovadoras para empresas. Atuo em Marechal Cândido Rondon - PR e região. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <a href="#contato" class="bg-accent hover:bg-green-500 text-white font-medium px-6 py-3 rounded-lg transition duration-300"> | |
| Entrar em contato | |
| </a> | |
| <a href="#experiencia" class="border-2 border-white text-white font-medium px-6 py-3 rounded-lg hover:bg-white hover:text-primary transition duration-300"> | |
| Ver experiência | |
| </a> | |
| </div> | |
| </div> | |
| <div class="w-full md:w-1/2 flex justify-center md:justify-end relative"> | |
| <div class="relative"> | |
| <div class="bg-blue-300 rounded-full w-64 h-64 md:w-80 md:h-80 overflow-hidden"> | |
| <img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80" alt="Kepler Otto" class="w-full h-full object-cover"> | |
| </div> | |
| <div class="absolute -bottom-3 right-0 bg-white p-4 rounded-lg shadow-xl"> | |
| <div class="location-pin flex items-center bg-blue-50 p-3 rounded-lg relative overflow-hidden"> | |
| <i class="fas fa-map-marker-alt text-blue-500 mr-2"></i> | |
| <span class="font-medium text-blue-900">Marechal Cândido Rondon, PR</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- About Section --> | |
| <section id="sobre" class="py-16 bg-white"> | |
| <div class="max-w-6xl mx-auto px-4"> | |
| <div class="flex flex-col md:flex-row"> | |
| <div class="w-full md:w-2/5 mb-10 md:mb-0"> | |
| <div class="bg-gray-200 border-2 border-dashed rounded-xl w-full h-96 flex items-center justify-center"> | |
| <i class="fas fa-user text-gray-400 text-4xl"></i> | |
| </div> | |
| </div> | |
| <div class="w-full md:w-3/5 md:pl-16"> | |
| <h2 class="text-3xl font-bold text-primary mb-8 relative section-title"> | |
| Sobre Kepler Otto | |
| </h2> | |
| <p class="text-gray-600 mb-6 leading-relaxed"> | |
| Kepler Otto é um profissional de tecnologia com mais de 10 anos de experiência na área de desenvolvimento de software e consultoria em TI. Natural de Marechal Cândido Rondon, Paraná, sempre esteve conectado às demandas tecnológicas regionais. | |
| </p> | |
| <p class="text-gray-600 mb-6 leading-relaxed"> | |
| Formado em Ciência da Computação pela Universidade Estadual do Oeste do Paraná (UNIOESTE), Kepler especializou-se no desenvolvimento de soluções para pequenas e médias empresas, ajudando-as na transformação digital. | |
| </p> | |
| <div class="grid grid-cols-2 gap-4 mb-8"> | |
| <div class="flex items-center"> | |
| <i class="fas fa-code text-secondary text-xl mr-2"></i> | |
| <span class="font-medium">Desenvolvimento Full Stack</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-cloud text-secondary text-xl mr-2"></i> | |
| <span class="font-medium">Soluções em Cloud</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-database text-secondary text-xl mr-2"></i> | |
| <span class="font-medium">Gestão de Banco de Dados</span> | |
| </div> | |
| <div class="flex items-center"> | |
| <i class="fas fa-chart-line text-secondary text-xl mr-2"></i> | |
| <span class="font-medium">Business Intelligence</span> | |
| </div> | |
| </div> | |
| <a href="https://www.linkedin.com/" target="_blank" class="inline-flex items-center text-secondary hover:text-blue-800 font-medium"> | |
| <i class="fab fa-linkedin text-xl mr-2"></i> | |
| Ver perfil completo no LinkedIn | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Formation Section --> | |
| <section id="formacao" class="py-16 bg-background"> | |
| <div class="max-w-6xl mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-primary mb-8 text-center relative section-title mx-auto" style="width: fit-content;"> | |
| Formação Acadêmica | |
| </h2> | |
| <div class="relative py-10 pl-12 timeline"> | |
| <div class="relative mb-12"> | |
| <div class="timeline-dot top-8"></div> | |
| <div class="bg-white p-6 rounded-xl shadow-lg hover-effect"> | |
| <div class="flex items-center justify-between mb-4"> | |
| <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">2015-2018</span> | |
| <span class="text-accent font-medium"> | |
| <i class="fas fa-graduation-cap mr-2"></i>Pós-graduação | |
| </span> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Especialização em Engenharia de Software</h3> | |
| <p class="text-gray-600 mb-2">Pontifícia Universidade Católica do Paraná (PUCPR)</p> | |
| <p class="text-gray-600">Foco em metodologias ágeis, qualidade de software e arquiteturas escaláveis.</p> | |
| </div> | |
| </div> | |
| <div class="relative mb-12"> | |
| <div class="timeline-dot top-8"></div> | |
| <div class="bg-white p-6 rounded-xl shadow-lg hover-effect"> | |
| <div class="flex items-center justify-between mb-4"> | |
| <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">2010-2014</span> | |
| <span class="text-accent font-medium"> | |
| <i class="fas fa-university mr-2"></i>Graduação | |
| </span> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Bacharelado em Ciência da Computação</h3> | |
| <p class="text-gray-600 mb-2">Universidade Estadual do Oeste do Paraná (UNIOESTE)</p> | |
| <p class="text-gray-600">Formação completa com ênfase em engenharia de software e inteligência artificial.</p> | |
| </div> | |
| </div> | |
| <div class="relative"> | |
| <div class="timeline-dot top-8"></div> | |
| <div class="bg-white p-6 rounded-xl shadow-lg hover-effect"> | |
| <div class="flex items-center justify-between mb-4"> | |
| <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">2009</span> | |
| <span class="text-accent font-medium"> | |
| <i class="fas fa-certificate mr-2"></i>Certificação | |
| </span> | |
| </div> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Desenvolvedor Java Certificado (OCP)</h3> | |
| <p class="text-gray-600 mb-2">Oracle Corporation</p> | |
| <p class="text-gray-600">Certificação profissional em desenvolvimento Java SE e EE.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Experience Section --> | |
| <section id="experiencia" class="py-16 bg-white"> | |
| <div class="max-w-6xl mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-primary mb-16 text-center relative section-title mx-auto" style="width: fit-content;"> | |
| Experiência Profissional | |
| </h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <div class="bg-blue-50 rounded-2xl p-8 hover-effect"> | |
| <div class="flex items-center mb-6"> | |
| <div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 flex items-center justify-center mr-4"> | |
| <i class="fas fa-building text-gray-400 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-800">Tech Solutions Consultoria</h3> | |
| <p class="text-gray-600">2019 - Atual</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 mb-6"> | |
| Como sócio e consultor sênior, lidero projetos de transformação digital para empresas da região Oeste do Paraná. Desenvolvemos soluções personalizadas em cloud computing, automação de processos e sistemas de gestão. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Cloud Computing</span> | |
| <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">ERP</span> | |
| <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Power BI</span> | |
| <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Consultoria</span> | |
| </div> | |
| </div> | |
| <div class="bg-green-50 rounded-2xl p-8 hover-effect"> | |
| <div class="flex items-center mb-6"> | |
| <div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 flex items-center justify-center mr-4"> | |
| <i class="fas fa-laptop-code text-gray-400 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-800">Desenvolvedor Sênior - SoftPlan</h3> | |
| <p class="text-gray-600">2015 - 2019</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 mb-6"> | |
| Responsável pelo desenvolvimento e manutenção de sistemas corporativos de grande escala utilizando Java EE e Angular. Participei de projetos de migração de sistemas legados para novas tecnologias. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm">Java</span> | |
| <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm">Spring Boot</span> | |
| <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm">Angular</span> | |
| <span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm">Microservices</span> | |
| </div> | |
| </div> | |
| <div class="bg-purple-50 rounded-2xl p-8 hover-effect"> | |
| <div class="flex items-center mb-6"> | |
| <div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 flex items-center justify-center mr-4"> | |
| <i class="fas fa-mobile-alt text-gray-400 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-800">Desenvolvedor Mobile - InovaTech</h3> | |
| <p class="text-gray-600">2013 - 2015</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 mb-6"> | |
| Desenvolvimento de aplicativos móveis para clientes do setor agrícola e agroindustrial, com foco em soluções de rastreabilidade e gestão de produção. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">React Native</span> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">Firebase</span> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">AgroTech</span> | |
| <span class="bg-purple-100 text-purple-800 px-3 py-1 rounded-full text-sm">UI/UX</span> | |
| </div> | |
| </div> | |
| <div class="bg-yellow-50 rounded-2xl p-8 hover-effect"> | |
| <div class="flex items-center mb-6"> | |
| <div class="bg-gray-200 border-2 border-dashed rounded-xl w-16 h-16 flex items-center justify-center mr-4"> | |
| <i class="fas fa-code text-gray-400 text-xl"></i> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold text-gray-800">Desenvolvedor Júnior - Soluções Web PR</h3> | |
| <p class="text-gray-600">2010 - 2013</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-700 mb-6"> | |
| Meu primeiro emprego na área, onde atuei no desenvolvimento e manutenção de websites e sistemas web para empresas locais, utilizando principalmente PHP e JavaScript. | |
| </p> | |
| <div class="flex flex-wrap gap-2"> | |
| <span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm">PHP</span> | |
| <span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm">JavaScript</span> | |
| <span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm">WordPress</span> | |
| <span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm">MySQL</span> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Projects Section --> | |
| <section id="projetos" class="py-16 bg-background"> | |
| <div class="max-w-6xl mx-auto px-4"> | |
| <h2 class="text-3xl font-bold text-primary mb-16 text-center relative section-title mx-auto" style="width: fit-content;"> | |
| Projetos Relevantes | |
| </h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg hover-effect"> | |
| <div class="bg-gray-200 border-2 border-dashed h-48 flex items-center justify-center"> | |
| <i class="fas fa-industry text-gray-400 text-4xl"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Sistema de Gestão Agroindustrial</h3> | |
| <p class="text-gray-600 mb-4">Desenvolvimento de plataforma integrada para gestão de produção agrícola e industrial em cooperativas da região.</p> | |
| <a href="#" class="text-secondary font-medium inline-flex items-center"> | |
| Saiba mais <i class="fas fa-arrow-right ml-2 text-sm"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg hover-effect"> | |
| <div class="bg-gray-200 border-2 border-dashed h-48 flex items-center justify-center"> | |
| <i class="fas fa-shopping-cart text-gray-400 text-4xl"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Plataforma E-commerce Regional</h3> | |
| <p class="text-gray-600 mb-4">Marketplace para pequenos produtores e comerciantes de Marechal Cândido Rondon e região.</p> | |
| <a href="#" class="text-secondary font-medium inline-flex items-center"> | |
| Saiba mais <i class="fas fa-arrow-right ml-2 text-sm"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg hover-effect"> | |
| <div class="bg-gray-200 border-2 border-dashed h-48 flex items-center justify-center"> | |
| <i class="fas fa-chart-line text-gray-400 text-4xl"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold text-gray-800 mb-2">Solução de BI para PMEs</h3> | |
| <p class="text-gray-600 mb-4">Ferramenta de Business Intelligence adaptada para pequenas e médias empresas do Oeste do Paraná.</p> | |
| <a href="#" class="text-secondary font-medium inline-flex items-center"> | |
| Saiba mais <i class="fas fa-arrow-right ml-2 text-sm"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contato" class="py-16 bg-gradient-to-r from-primary to-blue-800 text-white"> | |
| <div class="max-w-6xl mx-auto px-4"> | |
| <h2 class="text-3xl font-bold mb-8 text-center">Entre em Contato</h2> | |
| <p class="text-blue-200 text-center max-w-2xl mx-auto mb-16"> | |
| Estou disponível para projetos e colaborações. Entre em contato para discutirmos soluções tecnológicas para o seu negócio. | |
| </p> | |
| <div class="flex flex-col md:flex-row gap-10"> | |
| <div class="w-full md:w-2/5"> | |
| <div class="bg-blue-900 bg-opacity-30 rounded-2xl p-8 backdrop-blur-sm"> | |
| <h3 class="text-xl font-bold mb-6">Informações de Contato</h3> | |
| <div class="space-y-6"> | |
| <div class="flex"> | |
| <div class="mr-4"> | |
| <i class="fas fa-map-marker-alt text-2xl text-secondary"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Endereço</h4> | |
| <p class="text-blue-200"> | |
| Av. Rio Grande do Sul, 1234<br> | |
| Centro, Marechal Cândido Rondon - PR<br> | |
| CEP 85960-000 | |
| </p> | |
| </div> | |
| </div> | |
| <div class="flex"> | |
| <div class="mr-4"> | |
| <i class="fas fa-phone-alt text-2xl text-secondary"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Telefone</h4> | |
| <p class="text-blue-200">(45) 99999-9999</p> | |
| </div> | |
| </div> | |
| <div class="flex"> | |
| <div class="mr-4"> | |
| <i class="fas fa-envelope text-2xl text-secondary"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold">Email</h4> | |
| <p class="text-blue-200">contato@keplerotto.com.br</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="w-full md:w-3/5"> | |
| <form class="bg-white bg-opacity-10 rounded-2xl p-8 backdrop-blur-sm"> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6"> | |
| <div> | |
| <label class="block text-blue-200 mb-2" for="nome">Nome Completo</label> | |
| <input type="text" id="nome" class="w-full bg-blue-900 bg-opacity-30 border border-blue-600 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-secondary"> | |
| </div> | |
| <div> | |
| <label class="block text-blue-200 mb-2" for="email">Email</label> | |
| <input type="email" id="email" class="w-full bg-blue-900 bg-opacity-30 border border-blue-600 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-secondary"> | |
| </div> | |
| </div> | |
| <div class="mb-6"> | |
| <label class="block text-blue-200 mb-2" for="assunto">Assunto</label> | |
| <input type="text" id="assunto" class="w-full bg-blue-900 bg-opacity-30 border border-blue-600 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-secondary"> | |
| </div> | |
| <div class="mb-6"> | |
| <label class="block text-blue-200 mb-2" for="mensagem">Mensagem</label> | |
| <textarea id="mensagem" rows="5" class="w-full bg-blue-900 bg-opacity-30 border border-blue-600 rounded-lg px-4 py-3 text-white focus:outline-none focus:ring-2 focus:ring-secondary"></textarea> | |
| </div> | |
| <button type="submit" class="w-full bg-accent hover:bg-green-500 text-white font-bold py-4 rounded-lg transition duration-300"> | |
| Enviar Mensagem | |
| </button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="max-w-6xl mx-auto px-4"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <div class="mb-8 md:mb-0"> | |
| <div class="flex items-center"> | |
| <div class="bg-primary w-10 h-10 rounded-lg flex items-center justify-center mr-3"> | |
| <span class="font-bold text-white">KO</span> | |
| </div> | |
| <div> | |
| <h3 class="text-xl font-bold">Kepler Otto</h3> | |
| <p class="text-gray-400 text-sm">Consultor em Tecnologia</p> | |
| </div> | |
| </div> | |
| <p class="mt-4 text-gray-400 max-w-sm"> | |
| Soluções tecnológicas inovadoras para empresas do Oeste do Paraná. | |
| </p> | |
| </div> | |
| <div class="flex space-x-6 mb-8 md:mb-0"> | |
| <a href="#" class="text-gray-400 hover:text-white text-xl"> | |
| <i class="fab fa-linkedin"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white text-xl"> | |
| <i class="fab fa-github"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white text-xl"> | |
| <i class="fab fa-facebook"></i> | |
| </a> | |
| <a href="#" class="text-gray-400 hover:text-white text-xl"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| </div> | |
| <div class="text-center md:text-right"> | |
| <h4 class="font-bold mb-4">Localização</h4> | |
| <p class="text-gray-400 mb-2"> | |
| <i class="fas fa-map-marker-alt mr-2"></i>Marechal Cândido Rondon - PR | |
| </p> | |
| <p class="text-gray-400">Brasil</p> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400"> | |
| <p>© 2023 Kepler Otto. Todos os direitos reservados.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Scroll to top button --> | |
| <button id="scrollTop" class="fixed bottom-8 right-8 bg-primary w-12 h-12 rounded-full flex items-center justify-center text-white shadow-lg hidden"> | |
| <i class="fas fa-arrow-up"></i> | |
| </button> | |
| <script> | |
| // Scroll to top button functionality | |
| const scrollTopButton = document.getElementById('scrollTop'); | |
| window.addEventListener('scroll', () => { | |
| if (window.pageYOffset > 300) { | |
| scrollTopButton.classList.remove('hidden'); | |
| } else { | |
| scrollTopButton.classList.add('hidden'); | |
| } | |
| }); | |
| scrollTopButton.addEventListener('click', () => { | |
| window.scrollTo({ | |
| top: 0, | |
| behavior: 'smooth' | |
| }); | |
| }); | |
| </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=tionioliv/kepler" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |