Spaces:
Running
Running
File size: 40,722 Bytes
3b9dafd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 |
<!DOCTYPE html>
<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> |