Spaces:
Running
Running
<html lang="pt-BR"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>CodeMaster - Aulas de Programação</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=Roboto:wght@300;400;500;700&family=Source+Code+Pro:wght@400;600&display=swap'); | |
body { | |
font-family: 'Roboto', sans-serif; | |
} | |
.code-font { | |
font-family: 'Source Code Pro', monospace; | |
} | |
.hero-gradient { | |
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); | |
} | |
.course-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); | |
} | |
.glow-effect { | |
animation: glow 2s ease-in-out infinite alternate; | |
} | |
@keyframes glow { | |
from { | |
box-shadow: 0 0 5px #3b82f6; | |
} | |
to { | |
box-shadow: 0 0 20px #3b82f6; | |
} | |
} | |
.typewriter { | |
overflow: hidden; | |
border-right: .15em solid #3b82f6; | |
white-space: nowrap; | |
animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite; | |
} | |
@keyframes typing { | |
from { width: 0 } | |
to { width: 100% } | |
} | |
@keyframes blink-caret { | |
from, to { border-color: transparent } | |
50% { border-color: #3b82f6 } | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50"> | |
<!-- Header/Navigation --> | |
<header class="fixed w-full bg-white shadow-sm z-50"> | |
<div class="container mx-auto px-6 py-4"> | |
<div class="flex items-center justify-between"> | |
<!-- Logo --> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 bg-blue-600 rounded-md flex items-center justify-center text-white font-bold text-xl mr-2 code-font">{ }</div> | |
<span class="text-xl font-bold text-gray-800">CodeMaster</span> | |
</div> | |
<!-- Mobile menu button --> | |
<div class="md:hidden"> | |
<button id="menu-btn" class="text-gray-600 focus:outline-none"> | |
<i class="fas fa-bars text-2xl"></i> | |
</button> | |
</div> | |
<!-- Desktop Navigation --> | |
<nav class="hidden md:flex space-x-8"> | |
<a href="#home" class="text-gray-700 hover:text-blue-600 font-medium">Início</a> | |
<a href="#courses" class="text-gray-700 hover:text-blue-600 font-medium">Cursos</a> | |
<a href="#about" class="text-gray-700 hover:text-blue-600 font-medium">Sobre</a> | |
<a href="#methodology" class="text-gray-700 hover:text-blue-600 font-medium">Metodologia</a> | |
<a href="#contact" class="text-gray-700 hover:text-blue-600 font-medium">Contato</a> | |
</nav> | |
<!-- CTA Button --> | |
<a href="#contact" class="hidden md:block bg-blue-600 text-white px-6 py-2 rounded-md font-medium hover:bg-blue-700 transition duration-300"> | |
Matricule-se | |
</a> | |
</div> | |
<!-- Mobile Navigation --> | |
<div id="mobile-menu" class="hidden md:hidden mt-4 pb-4"> | |
<a href="#home" class="block py-2 text-gray-700 hover:text-blue-600">Início</a> | |
<a href="#courses" class="block py-2 text-gray-700 hover:text-blue-600">Cursos</a> | |
<a href="#about" class="block py-2 text-gray-700 hover:text-blue-600">Sobre</a> | |
<a href="#methodology" class="block py-2 text-gray-700 hover:text-blue-600">Metodologia</a> | |
<a href="#contact" class="block py-2 text-gray-700 hover:text-blue-600">Contato</a> | |
<a href="#contact" class="block mt-2 bg-blue-600 text-white px-4 py-2 rounded-md font-medium text-center hover:bg-blue-700 transition duration-300"> | |
Matricule-se | |
</a> | |
</div> | |
</div> | |
</header> | |
<!-- Hero Section --> | |
<section id="home" class="hero-gradient text-white pt-32 pb-20"> | |
<div class="container mx-auto px-6 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 leading-tight mb-6"> | |
Domine a programação com nossas <span class="text-blue-300">aulas especializadas</span> | |
</h1> | |
<p class="text-lg md:text-xl text-blue-100 mb-8"> | |
Aprenda com profissionais experientes e dê o próximo passo na sua carreira tech. | |
</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<a href="#courses" class="bg-white text-blue-600 px-8 py-3 rounded-md font-semibold hover:bg-blue-50 transition duration-300 text-center"> | |
Ver Cursos | |
</a> | |
<a href="#contact" class="border-2 border-white px-8 py-3 rounded-md font-semibold hover:bg-white hover:text-blue-600 transition duration-300 text-center"> | |
Fale Conosco | |
</a> | |
</div> | |
</div> | |
<div class="md:w-1/2 flex justify-center"> | |
<img src="https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Programação" | |
class="rounded-lg shadow-xl max-w-md w-full glow-effect"> | |
</div> | |
</div> | |
</section> | |
<!-- Features Section --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Por que aprender conosco?</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Nossa abordagem prática e personalizada acelera seu aprendizado.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<!-- Feature 1 --> | |
<div class="bg-gray-50 p-6 rounded-lg"> | |
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mb-4"> | |
<i class="fas fa-laptop-code text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Aulas Práticas</h3> | |
<p class="text-gray-600">Mais de 80% do tempo dedicado a exercícios e projetos reais.</p> | |
</div> | |
<!-- Feature 2 --> | |
<div class="bg-gray-50 p-6 rounded-lg"> | |
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mb-4"> | |
<i class="fas fa-user-tie text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Instrutores Experientes</h3> | |
<p class="text-gray-600">Profissionais atuantes no mercado com anos de experiência.</p> | |
</div> | |
<!-- Feature 3 --> | |
<div class="bg-gray-50 p-6 rounded-lg"> | |
<div class="w-12 h-12 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mb-4"> | |
<i class="fas fa-graduation-cap text-xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-800 mb-3">Certificado Reconhecido</h3> | |
<p class="text-gray-600">Certificação válida para comprovar suas habilidades.</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Courses Section --> | |
<section id="courses" class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Nossos Cursos</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Escolha o caminho que melhor se adapta aos seus objetivos.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Course 1 --> | |
<div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="h-48 bg-blue-600 flex items-center justify-center text-white"> | |
<i class="fab fa-html5 text-6xl"></i> | |
<i class="fab fa-css3-alt text-6xl ml-4"></i> | |
<i class="fab fa-js-square text-6xl ml-4"></i> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">Front-End Essentials</h3> | |
<p class="text-gray-600 mb-4">Domine HTML, CSS e JavaScript para criar interfaces modernas.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-blue-600 font-semibold">12 semanas</span> | |
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">Iniciante</span> | |
</div> | |
</div> | |
</div> | |
<!-- Course 2 --> | |
<div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="h-48 bg-green-600 flex items-center justify-center text-white"> | |
<i class="fab fa-node-js text-6xl"></i> | |
<i class="fas fa-database text-6xl ml-4"></i> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">Back-End com Node.js</h3> | |
<p class="text-gray-600 mb-4">Aprenda a construir APIs robustas e integrar com bancos de dados.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-blue-600 font-semibold">16 semanas</span> | |
<span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm font-medium">Intermediário</span> | |
</div> | |
</div> | |
</div> | |
<!-- Course 3 --> | |
<div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="h-48 bg-purple-600 flex items-center justify-center text-white"> | |
<i class="fab fa-react text-6xl"></i> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">React Avançado</h3> | |
<p class="text-gray-600 mb-4">Desenvolva aplicações complexas com React, Redux e Next.js.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-blue-600 font-semibold">14 semanas</span> | |
<span class="bg-red-100 text-red-800 px-3 py-1 rounded-full text-sm font-medium">Avançado</span> | |
</div> | |
</div> | |
</div> | |
<!-- Course 4 --> | |
<div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="h-48 bg-pink-600 flex items-center justify-center text-white"> | |
<i class="fab fa-python text-6xl"></i> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">Python para Data Science</h3> | |
<p class="text-gray-600 mb-4">Análise de dados, machine learning e visualização com Python.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-blue-600 font-semibold">18 semanas</span> | |
<span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm font-medium">Intermediário</span> | |
</div> | |
</div> | |
</div> | |
<!-- Course 5 --> | |
<div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="h-48 bg-yellow-500 flex items-center justify-center text-white"> | |
<i class="fab fa-java text-6xl"></i> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">Java OO & Spring Boot</h3> | |
<p class="text-gray-600 mb-4">Desenvolvimento de aplicações empresariais com Java.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-blue-600 font-semibold">20 semanas</span> | |
<span class="bg-red-100 text-red-800 px-3 py-1 rounded-full text-sm font-medium">Avançado</span> | |
</div> | |
</div> | |
</div> | |
<!-- Course 6 --> | |
<div class="course-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="h-48 bg-gray-800 flex items-center justify-center text-white"> | |
<i class="fas fa-mobile-alt text-6xl"></i> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">Mobile com Flutter</h3> | |
<p class="text-gray-600 mb-4">Crie apps nativos para iOS e Android com um único código.</p> | |
<div class="flex justify-between items-center"> | |
<span class="text-blue-600 font-semibold">14 semanas</span> | |
<span class="bg-yellow-100 text-yellow-800 px-3 py-1 rounded-full text-sm font-medium">Intermediário</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mt-12"> | |
<a href="#contact" class="inline-block bg-blue-600 text-white px-8 py-3 rounded-md font-semibold hover:bg-blue-700 transition duration-300"> | |
Quero me matricular | |
</a> | |
</div> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="py-16 bg-white"> | |
<div class="container mx-auto px-6"> | |
<div class="flex flex-col lg:flex-row items-center"> | |
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> | |
<img src="https://images.unsplash.com/photo-1571171637578-41bc2dd41cd2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" | |
alt="Instrutor ensinando" | |
class="rounded-lg shadow-xl w-full"> | |
</div> | |
<div class="lg:w-1/2"> | |
<span class="text-blue-600 font-semibold">Sobre Nós</span> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mt-2 mb-6">Transformando vidas através da programação</h2> | |
<p class="text-gray-600 mb-6">A CodeMaster nasceu da paixão por ensinar e compartilhar conhecimento. Nossa missão é formar profissionais capacitados para o mercado de tecnologia.</p> | |
<p class="text-gray-600 mb-8">Com uma abordagem prática e focada em resultados, ajudamos nossos alunos a construírem carreiras sólidas na área de desenvolvimento de software.</p> | |
<div class="grid grid-cols-2 gap-6 mb-8"> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mr-4"> | |
<i class="fas fa-check"></i> | |
</div> | |
<span class="font-medium text-gray-800">Instrutores qualificados</span> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mr-4"> | |
<i class="fas fa-check"></i> | |
</div> | |
<span class="font-medium text-gray-800">Material atualizado</span> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mr-4"> | |
<i class="fas fa-check"></i> | |
</div> | |
<span class="font-medium text-gray-800">Projetos reais</span> | |
</div> | |
<div class="flex items-center"> | |
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mr-4"> | |
<i class="fas fa-check"></i> | |
</div> | |
<span class="font-medium text-gray-800">Suporte individual</span> | |
</div> | |
</div> | |
<a href="#contact" class="inline-block bg-blue-600 text-white px-8 py-3 rounded-md font-semibold hover:bg-blue-700 transition duration-300"> | |
Fale com nosso time | |
</a> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Methodology Section --> | |
<section id="methodology" class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Nossa Metodologia</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Um processo de aprendizagem eficaz e comprovado.</p> | |
</div> | |
<div class="flex flex-col md:flex-row"> | |
<!-- Steps --> | |
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8"> | |
<div class="relative"> | |
<!-- Step 1 --> | |
<div class="flex mb-8"> | |
<div class="flex-shrink-0"> | |
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-xl mr-4">1</div> | |
</div> | |
<div> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">Fundamentos Teóricos</h3> | |
<p class="text-gray-600">Aprendizado dos conceitos essenciais de forma clara e objetiva.</p> | |
</div> | |
</div> | |
<!-- Step 2 --> | |
<div class="flex mb-8"> | |
<div class="flex-shrink-0"> | |
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-xl mr-4">2</div> | |
</div> | |
<div> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">Exercícios Práticos</h3> | |
<p class="text-gray-600">Aplicação imediata do conhecimento em pequenos desafios.</p> | |
</div> | |
</div> | |
<!-- Step 3 --> | |
<div class="flex mb-8"> | |
<div class="flex-shrink-0"> | |
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-xl mr-4">3</div> | |
</div> | |
<div> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">Projetos Reais</h3> | |
<p class="text-gray-600">Desenvolvimento de aplicações completas simulando cenários do mercado.</p> | |
</div> | |
</div> | |
<!-- Step 4 --> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center text-white font-bold text-xl mr-4">4</div> | |
</div> | |
<div> | |
<h3 class="text-xl font-bold text-gray-800 mb-2">Portfólio Profissional</h3> | |
<p class="text-gray-600">Construção de um portfólio com projetos para demonstrar suas habilidades.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Image --> | |
<div class="md:w-1/2 flex items-center"> | |
<img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" | |
alt="Estudantes programando" | |
class="rounded-lg shadow-xl w-full"> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials Section --> | |
<section class="py-16 bg-white"> | |
<div class="container mx-auto px-6"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">O que dizem nossos alunos</h2> | |
<p class="text-gray-600 max-w-2xl mx-auto">Depoimentos de quem já transformou sua carreira com nossos cursos.</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<!-- Testimonial 1 --> | |
<div class="bg-gray-50 p-6 rounded-lg"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 mr-2"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-6">"O curso de Front-End me deu a base que precisava para conseguir meu primeiro emprego como desenvolvedor. As aulas práticas fazem toda a diferença!"</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Aluna" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-800">Ana Carolina</h4> | |
<p class="text-gray-600 text-sm">Desenvolvedora Front-End</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 2 --> | |
<div class="bg-gray-50 p-6 rounded-lg"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 mr-2"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-6">"Depois do curso de Node.js, consegui uma promoção no trabalho e agora lidero a equipe de back-end. Os projetos reais foram essenciais."</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/men/54.jpg" alt="Aluno" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-800">Ricardo Almeida</h4> | |
<p class="text-gray-600 text-sm">Tech Lead Back-End</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 3 --> | |
<div class="bg-gray-50 p-6 rounded-lg"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 mr-2"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star-half-alt"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-6">"Migrei de área depois de fazer o curso de Python para Data Science. Hoje trabalho como analista de dados em uma grande empresa."</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Aluna" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-800">Juliana Santos</h4> | |
<p class="text-gray-600 text-sm">Analista de Dados</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="py-16 bg-gray-50"> | |
<div class="container mx-auto px-6"> | |
<div class="flex flex-col lg:flex-row"> | |
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12"> | |
<span class="text-blue-600 font-semibold">Contato</span> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mt-2 mb-6">Entre em contato conosco</h2> | |
<p class="text-gray-600 mb-8">Tire suas dúvidas, solicite informações sobre cursos ou agende uma aula experimental.</p> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mr-4 mt-1"> | |
<i class="fas fa-phone-alt"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-800 mb-1">Telefone/WhatsApp</h4> | |
<p class="text-gray-600">+55 (83) 99990-786</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mr-4 mt-1"> | |
<i class="fas fa-envelope"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-800 mb-1">Email</h4> | |
<p class="text-gray-600">[email protected]</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 mr-4 mt-1"> | |
<i class="fas fa-map-marker-alt"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-800 mb-1">Localização</h4> | |
<p class="text-gray-600">Aulas presenciais e online disponíveis</p> | |
</div> | |
</div> | |
</div> | |
<div class="mt-8"> | |
<h4 class="font-bold text-gray-800 mb-4">Redes Sociais</h4> | |
<div class="flex space-x-4"> | |
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-600 hover:text-white transition duration-300"> | |
<i class="fab fa-whatsapp"></i> | |
</a> | |
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-600 hover:text-white transition duration-300"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-600 hover:text-white transition duration-300"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-600 hover:text-white transition duration-300"> | |
<i class="fab fa-youtube"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="lg:w-1/2"> | |
<form class="bg-white p-8 rounded-lg shadow-md"> | |
<div class="mb-6"> | |
<label for="name" class="block text-gray-700 font-medium mb-2">Nome completo</label> | |
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Seu nome"> | |
</div> | |
<div class="mb-6"> | |
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label> | |
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="[email protected]"> | |
</div> | |
<div class="mb-6"> | |
<label for="phone" class="block text-gray-700 font-medium mb-2">Telefone/WhatsApp</label> | |
<input type="tel" id="phone" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="(00) 00000-0000"> | |
</div> | |
<div class="mb-6"> | |
<label for="course" class="block text-gray-700 font-medium mb-2">Curso de interesse</label> | |
<select id="course" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent"> | |
<option value="">Selecione um curso</option> | |
<option value="frontend">Front-End Essentials</option> | |
<option value="nodejs">Back-End com Node.js</option> | |
<option value="react">React Avançado</option> | |
<option value="python">Python para Data Science</option> | |
<option value="java">Java OO & Spring Boot</option> | |
<option value="flutter">Mobile com Flutter</option> | |
</select> | |
</div> | |
<div class="mb-6"> | |
<label for="message" class="block text-gray-700 font-medium mb-2">Mensagem</label> | |
<textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Conte-nos sobre seus objetivos..."></textarea> | |
</div> | |
<button type="submit" class="w-full bg-blue-600 text-white px-6 py-3 rounded-md font-semibold hover:bg-blue-700 transition duration-300">Enviar mensagem</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- CTA Section --> | |
<section class="py-16 bg-blue-600 text-white"> | |
<div class="container mx-auto px-6 text-center"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-6">Pronto para transformar sua carreira?</h2> | |
<p class="text-blue-100 max-w-2xl mx-auto mb-8">Matricule-se agora e dê o primeiro passo para se tornar um desenvolvedor profissional.</p> | |
<a href="#contact" class="inline-block bg-white text-blue-600 px-8 py-3 rounded-md font-semibold hover:bg-blue-100 transition duration-300"> | |
Quero me matricular | |
</a> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-gray-400 py-12"> | |
<div class="container mx-auto px-6"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> | |
<!-- Column 1 --> | |
<div> | |
<div class="flex items-center mb-4"> | |
<div class="w-10 h-10 bg-blue-600 rounded-md flex items-center justify-center text-white font-bold text-xl mr-2 code-font">{ }</div> | |
<span class="text-xl font-bold text-white">CodeMaster</span> | |
</div> | |
<p class="mb-4">Aprenda programação com quem entende do assunto.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-whatsapp"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-youtube"></i> | |
</a> | |
</div> | |
</div> | |
<!-- Column 2 --> | |
<div> | |
<h3 class="text-white font-bold text-lg mb-4">Cursos</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="hover:text-white transition duration-300">Front-End</a></li> | |
<li><a href="#" class="hover:text-white transition duration-300">Back-End</a></li> | |
<li><a href="#" class="hover:text-white transition duration-300">Mobile</a></li> | |
<li><a href="#" class="hover:text-white transition duration-300">Data Science</a></li> | |
<li><a href="#" class="hover:text-white transition duration-300">Java</a></li> | |
</ul> | |
</div> | |
<!-- Column 3 --> | |
<div> | |
<h3 class="text-white font-bold text-lg mb-4">Institucional</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="hover:text-white transition duration-300">Sobre Nós</a></li> | |
<li><a href="#" class="hover:text-white transition duration-300">Metodologia</a></li> | |
<li><a href="#" class="hover:text-white transition duration-300">Depoimentos</a></li> | |
<li><a href="#" class="hover:text-white transition duration-300">Blog</a></li> | |
<li><a href="#" class="hover:text-white transition duration-300">Trabalhe Conosco</a></li> | |
</ul> | |
</div> | |
<!-- Column 4 --> | |
<div> | |
<h3 class="text-white font-bold text-lg mb-4">Contato</h3> | |
<address class="not-italic"> | |
<p class="mb-2">Telefone/WhatsApp:</p> | |
<p class="mb-4">+55 (83) 99990-786</p> | |
<p class="mb-2">Email:</p> | |
<p class="mb-4">[email protected]</p> | |
<p>Aulas presenciais e online</p> | |
</address> | |
</div> | |
</div> | |
<div class="pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center"> | |
<p class="mb-4 md:mb-0">© 2023 CodeMaster. Todos os direitos reservados.</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="hover:text-white transition duration-300">Termos de Uso</a> | |
<a href="#" class="hover:text-white transition duration-300">Política de Privacidade</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Mobile menu toggle | |
document.getElementById('menu-btn').addEventListener('click', function() { | |
document.getElementById('mobile-menu').classList.toggle('hidden'); | |
}); | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
// Close mobile menu if open | |
document.getElementById('mobile-menu').classList.add('hidden'); | |
}); | |
}); | |
// Add shadow to header on scroll | |
window.addEventListener('scroll', function() { | |
const header = document.querySelector('header'); | |
if (window.scrollY > 50) { | |
header.classList.add('shadow-lg'); | |
} else { | |
header.classList.remove('shadow-lg'); | |
} | |
}); | |
// Typewriter effect for hero section (optional) | |
setTimeout(function() { | |
document.querySelector('.typewriter').style.animation = 'none'; | |
setTimeout(function() { | |
document.querySelector('.typewriter').style.animation = ''; | |
}, 10); | |
}, 3500); | |
</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=tony13345/codemaster" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |