Spaces:
Running
Running
File size: 30,377 Bytes
81255e9 2765848 | 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 | <!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AcademicFormat - Formatação e Revisão Acadêmica</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}
.card-hover: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);
}
.gradient-bg {
background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}
.service-card {
transition: all 0.3s ease;
}
.service-card:hover {
border-color: #0ea5e9;
}
.plan-card {
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.plan-card:hover {
transform: scale(1.03);
}
.file-upload-area {
border: 2px dashed #cbd5e1;
transition: all 0.3s ease;
}
.file-upload-area:hover {
border-color: #0ea5e9;
background-color: #f0f9ff;
}
.step-indicator {
transition: all 0.3s ease;
}
.step-indicator.active {
background-color: #0ea5e9;
color: white;
}
</style>
</head>
<body class="min-h-screen">
<!-- Header -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center">
<i data-feather="book-open" class="text-white"></i>
</div>
<span class="text-xl font-bold text-gray-800">Academic<span class="text-blue-500">Format</span></span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-blue-600 font-medium">Início</a>
<a href="#servicos" class="text-gray-600 hover:text-blue-600 transition">Serviços</a>
<a href="#planos" class="text-gray-600 hover:text-blue-600 transition">Planos</a>
<a href="#contato" class="text-gray-600 hover:text-blue-600 transition">Contato</a>
</nav>
<button class="bg-blue-500 hover:bg-blue-600 text-white px-6 py-2 rounded-lg font-medium transition">
Entrar
</button>
</div>
</header>
<!-- Hero Section -->
<section class="py-16 md:py-24 bg-gradient-to-br from-blue-50 to-cyan-50">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0" data-aos="fade-right">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 leading-tight mb-4">
Formatação e Revisão <span class="text-blue-600">Acadêmica</span> Profissional
</h1>
<p class="text-lg text-gray-600 mb-8 max-w-lg">
Serviços especializados em formatação ABNT/NBR, sugestões de citações e revisão textual para TCCs, teses e artigos acadêmicos.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-lg font-medium transition shadow-lg">
Começar Agora
</button>
<button class="border-2 border-blue-600 text-blue-600 hover:bg-blue-50 px-8 py-3 rounded-lg font-medium transition">
Ver Planos
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center" data-aos="fade-left">
<div class="relative">
<div class="w-64 h-80 bg-white rounded-2xl shadow-xl p-6 absolute -top-6 -left-6 z-0"></div>
<div class="w-64 h-80 bg-white rounded-2xl shadow-xl p-6 absolute -bottom-6 -right-6 z-0"></div>
<div class="w-72 h-88 bg-white rounded-2xl shadow-2xl p-6 relative z-10 flex flex-col items-center justify-center">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mb-4">
<i data-feather="check-circle" class="text-blue-600 w-8 h-8"></i>
</div>
<h3 class="font-bold text-lg text-center mb-2">Trabalho Formatado</h3>
<p class="text-gray-600 text-center text-sm">Pronto para submissão conforme normas ABNT</p>
<div class="mt-4 w-full bg-gray-200 rounded-full h-2">
<div class="bg-blue-600 h-2 rounded-full w-full"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="servicos" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Nossos Serviços</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Oferecemos soluções completas para aprimorar seu trabalho acadêmico desde a formatação até a revisão textual.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="service-card bg-gray-50 rounded-2xl p-8 border-2 border-transparent" data-aos="fade-up" data-aos-delay="100">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mb-6">
<i data-feather="file-text" class="text-blue-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Formatação ABNT/NBR</h3>
<p class="text-gray-600 mb-4">
Formatação completa do seu trabalho acadêmico conforme as normas da ABNT e NBR, incluindo capa, folha de rosto, sumário e referências.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i>
<span class="text-gray-600">Capa e Folha de Rosto</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i>
<span class="text-gray-600">Sumário Automático</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i>
<span class="text-gray-600">Referências Bibliográficas</span>
</li>
</ul>
</div>
<div class="service-card bg-gray-50 rounded-2xl p-8 border-2 border-transparent" data-aos="fade-up" data-aos-delay="200">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mb-6">
<i data-feather="edit-3" class="text-blue-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Revisão Textual</h3>
<p class="text-gray-600 mb-4">
Melhorias gramaticais e semânticas no seu texto com sugestões personalizadas para clareza, coesão e coerência.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i>
<span class="text-gray-600">Correção Gramatical</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i>
<span class="text-gray-600">Melhoria de Coesão</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i>
<span class="text-gray-600">Clareza e Objetividade</span>
</li>
</ul>
</div>
<div class="service-card bg-gray-50 rounded-2xl p-8 border-2 border-transparent" data-aos="fade-up" data-aos-delay="300">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mb-6">
<i data-feather="bookmark" class="text-blue-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Sugestão de Citações</h3>
<p class="text-gray-600 mb-4">
Inserção e sugestão de citações relevantes com fontes confiáveis para embasar seus argumentos e enriquecer seu trabalho.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i>
<span class="text-gray-600">Citações Contextualizadas</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i>
<span class="text-gray-600">Fontes Confiáveis</span>
</li>
<li class="flex items-center">
<i data-feather="check" class="text-green-500 w-5 h-5 mr-2"></i>
<span class="text-gray-600">Referenciação Correta</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Plans Section -->
<section id="planos" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Planos Disponíveis</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Escolha o plano que melhor atende às necessidades do seu trabalho acadêmico.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8 max-w-5xl mx-auto">
<div class="plan-card bg-white rounded-2xl shadow-lg p-8 border border-gray-200" data-aos="fade-up" data-aos-delay="100">
<div class="text-center mb-6">
<h3 class="text-2xl font-bold text-gray-800 mb-2">Básico</h3>
<div class="text-3xl font-bold text-blue-600 mb-4">R$ 99<span class="text-lg text-gray-600">/trabalho</span></div>
<p class="text-gray-600">Ideal para quem precisa apenas da formatação</p>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i>
<span>Formatação ABNT/NBR Completa</span>
</li>
<li class="flex items-start">
<i data-feather="x-circle" class="text-red-400 w-5 h-5 mt-1 mr-3"></i>
<span class="text-gray-400 line-through">Revisão Textual</span>
</li>
<li class="flex items-start">
<i data-feather="x-circle" class="text-red-400 w-5 h-5 mt-1 mr-3"></i>
<span class="text-gray-400 line-through">Sugestão de Citações</span>
</li>
<li class="flex items-start">
<i data-feather="x-circle" class="text-red-400 w-5 h-5 mt-1 mr-3"></i>
<span class="text-gray-400 line-through">Chatbot Personalizado</span>
</li>
</ul>
<button class="w-full bg-gray-200 text-gray-800 py-3 rounded-lg font-medium transition">
Selecionar Plano
</button>
</div>
<div class="plan-card bg-white rounded-2xl shadow-xl p-8 border-2 border-blue-500 relative" data-aos="fade-up" data-aos-delay="200">
<div class="absolute -top-3 left-1/2 transform -translate-x-1/2 bg-blue-500 text-white px-4 py-1 rounded-full text-sm font-bold">
MAIS POPULAR
</div>
<div class="text-center mb-6">
<h3 class="text-2xl font-bold text-gray-800 mb-2">Padrão</h3>
<div class="text-3xl font-bold text-blue-600 mb-4">R$ 199<span class="text-lg text-gray-600">/trabalho</span></div>
<p class="text-gray-600">Para trabalhos que precisam de formatação e revisão</p>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i>
<span>Formatação ABNT/NBR Completa</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i>
<span>Revisão Textual Gramatical e Semântica</span>
</li>
<li class="flex items-start">
<i data-feather="x-circle" class="text-red-400 w-5 h-5 mt-1 mr-3"></i>
<span class="text-gray-400 line-through">Sugestão de Citações</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i>
<span>Conversas com Chatbot</span>
</li>
</ul>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white py-3 rounded-lg font-medium transition">
Selecionar Plano
</button>
</div>
<div class="plan-card bg-white rounded-2xl shadow-lg p-8 border border-gray-200" data-aos="fade-up" data-aos-delay="300">
<div class="text-center mb-6">
<h3 class="text-2xl font-bold text-gray-800 mb-2">Premium</h3>
<div class="text-3xl font-bold text-blue-600 mb-4">R$ 299<span class="text-lg text-gray-600">/trabalho</span></div>
<p class="text-gray-600">Solução completa para trabalhos exigentes</p>
</div>
<ul class="space-y-4 mb-8">
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i>
<span>Formatação ABNT/NBR Completa</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i>
<span>Revisão Textual Gramatical e Semântica</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i>
<span>Sugestão de Citações e Fontes</span>
</li>
<li class="flex items-start">
<i data-feather="check-circle" class="text-green-500 w-5 h-5 mt-1 mr-3"></i>
<span>Conversas Ilimitadas com Chatbot</span>
</li>
</ul>
<button class="w-full bg-gray-800 hover:bg-gray-900 text-white py-3 rounded-lg font-medium transition">
Selecionar Plano
</button>
</div>
</div>
</div>
</section>
<!-- Upload Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4 max-w-4xl">
<div class="text-center mb-12" data-aos="fade-up">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Envie seu Trabalho</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Preencha o formulário abaixo e faça upload do seu trabalho acadêmico para iniciarmos os serviços.
</p>
</div>
<div class="bg-gray-50 rounded-2xl shadow-lg p-8" data-aos="fade-up">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-8">
<div>
<label class="block text-gray-700 font-medium mb-2">Nome Completo *</label>
<input type="text" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Digite seu nome completo">
</div>
<div>
<label class="block text-gray-700 font-medium mb-2">Instituição de Ensino *</label>
<input type="text" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Nome da sua universidade/faculdade">
</div>
<div>
<label class="block text-gray-700 font-medium mb-2">Curso *</label>
<input type="text" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Seu curso acadêmico">
</div>
<div>
<label class="block text-gray-700 font-medium mb-2">Tipo de Trabalho *</label>
<select class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent">
<option value="">Selecione o tipo</option>
<option value="tcc">TCC (Trabalho de Conclusão de Curso)</option>
<option value="monografia">Monografia</option>
<option value="tese">Tese</option>
<option value="artigo">Artigo Acadêmico</option>
<option value="dissertacao">Dissertação</option>
</select>
</div>
<div class="md:col-span-2">
<label class="block text-gray-700 font-medium mb-2">Título do Trabalho *</label>
<input type="text" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Título completo do seu trabalho">
</div>
<div class="md:col-span-2">
<label class="block text-gray-700 font-medium mb-2">Resumo do Trabalho *</label>
<textarea rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Descreva brevemente o conteúdo e objetivo do seu trabalho..."></textarea>
</div>
</div>
<div class="mb-8">
<label class="block text-gray-700 font-medium mb-2">Upload do Arquivo *</label>
<div class="file-upload-area rounded-xl p-8 text-center cursor-pointer">
<i data-feather="upload-cloud" class="w-12 h-12 text-gray-400 mx-auto mb-4"></i>
<p class="text-gray-600 mb-2">Arraste e solte seu arquivo aqui ou clique para selecionar</p>
<p class="text-gray-400 text-sm">Formatos aceitos: PDF, DOC, DOCX (Máx. 20MB)</p>
<input type="file" class="hidden" accept=".pdf,.doc,.docx">
</div>
</div>
<div class="flex flex-col sm:flex-row justify-between items-center gap-4">
<p class="text-gray-600 text-sm">
* Campos obrigatórios. Seus dados serão utilizados apenas para processamento do trabalho.
</p>
<button class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-lg font-medium transition shadow-lg">
Enviar Trabalho
</button>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section class="py-16 bg-gradient-to-br from-blue-50 to-cyan-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Como Funciona</h2>
<p class="text-gray-600 max-w-2xl mx-auto">
Processo simples e eficiente para melhorar seu trabalho acadêmico
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 max-w-5xl mx-auto">
<div class="text-center" data-aos="fade-up" data-aos-delay="100">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mx-auto mb-4">
<span class="text-blue-600 font-bold text-xl">1</span>
</div>
<h3 class="font-bold text-lg mb-2">Envie seu Trabalho</h3>
<p class="text-gray-600 text-sm">Preencha o formulário e faça upload do seu documento</p>
</div>
<div class="text-center" data-aos="fade-up" data-aos-delay="200">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mx-auto mb-4">
<span class="text-blue-600 font-bold text-xl">2</span>
</div>
<h3 class="font-bold text-lg mb-2">Análise Inicial</h3>
<p class="text-gray-600 text-sm">Nosso sistema analisa o conteúdo para personalizar os serviços</p>
</div>
<div class="text-center" data-aos="fade-up" data-aos-delay="300">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mx-auto mb-4">
<span class="text-blue-600 font-bold text-xl">3</span>
</div>
<h3 class="font-bold text-lg mb-2">Processamento</h3>
<p class="text-gray-600 text-sm">Aplicamos formatação, revisão e sugestões conforme o plano escolhido</p>
</div>
<div class="text-center" data-aos="fade-up" data-aos-delay="400">
<div class="w-16 h-16 rounded-full bg-blue-100 flex items-center justify-center mx-auto mb-4">
<span class="text-blue-600 font-bold text-xl">4</span>
</div>
<h3 class="font-bold text-lg mb-2">Entrega Final</h3>
<p class="text-gray-600 text-sm">Receba seu trabalho aprimorado pronto para submissão</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="contato" class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-10 h-10 rounded-full gradient-bg flex items-center justify-center">
<i data-feather="book-open" class="text-white"></i>
</div>
<span class="text-xl font-bold">Academic<span class="text-blue-400">Format</span></span>
</div>
<p class="text-gray-400 mb-4">
Soluções profissionais para formatação e revisão de trabalhos acadêmicos conforme normas ABNT e NBR.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="facebook" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="instagram" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="linkedin" class="w-5 h-5"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Serviços</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Formatação ABNT/NBR</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Revisão Textual</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Sugestão de Citações</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Chatbot Acadêmico</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Planos</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Plano Básico</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Plano Padrão</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Plano Premium</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Comparar Planos</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Contato</h3>
<ul class="space-y-3">
<li class="flex items-start">
<i data-feather="mail" class="w-5 h-5 text-gray-400 mr-3 mt-1"></i>
<span class="text-gray-400">contato@academicformat.com.br</span>
</li>
<li class="flex items-start">
<i data-feather="phone" class="w-5 h-5 text-gray-400 mr-3 mt-1"></i>
<span class="text-gray-400">(11) 99999-9999</span>
</li>
<li class="flex items-start">
<i data-feather="map-pin" class="w-5 h-5 text-gray-400 mr-3 mt-1"></i>
<span class="text-gray-400">São Paulo, SP - Brasil</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 text-center">
<p class="text-gray-500">
© 2023 AcademicFormat. Todos os direitos reservados.
</p>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 1000,
once: true
});
feather.replace();
// File upload interaction
document.querySelector('.file-upload-area').addEventListener('click', function() {
this.querySelector('input[type="file"]').click();
});
document.querySelector('.file-upload-area input[type="file"]').addEventListener('change', function(e) {
if (e.target.files.length > 0) {
const fileName = e.target.files[0].name;
this.parentElement.innerHTML = `
<i data-feather="check-circle" class="w-12 h-12 text-green-500 mx-auto mb-4"></i>
<p class="text-gray-800 font-medium mb-2">Arquivo selecionado:</p>
<p class="text-gray-600">${fileName}</p>
<p class="text-gray-400 text-sm mt-2">Clique novamente para alterar</p>
`;
feather.replace();
}
});
</script>
</body>
</html>
|