| <html lang="pt-BR"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Mensagem Enviada | TMT Segurança</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #6b8e23 0%, #556b2f 100%); | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans bg-gray-50"> | |
| <div class="min-h-screen flex items-center justify-center px-4"> | |
| <div class="max-w-md w-full bg-white p-8 rounded-lg shadow-lg text-center"> | |
| <div class="gradient-bg text-white rounded-full w-20 h-20 flex items-center justify-center mx-auto mb-6"> | |
| <i data-feather="check" class="w-10 h-10"></i> | |
| </div> | |
| <h1 class="text-3xl font-bold text-green-800 mb-4">Mensagem Enviada!</h1> | |
| <p class="text-gray-600 mb-6"> | |
| Obrigado por entrar em contato. Nossa equipe irá responder o mais breve possível. | |
| </p> | |
| <a href="https://wa.me/5534993367770" class="gradient-bg text-white font-bold py-3 px-6 rounded-lg hover:bg-green-700 transition-colors duration-300 inline-flex items-center mx-auto"> | |
| <i data-feather="message-circle" class="mr-2"></i> Falar no WhatsApp | |
| </a> | |
| <p class="mt-6 text-gray-500"> | |
| <a href="index.html" class="text-green-700 hover:underline">← Voltar para a página inicial</a> | |
| </p> | |
| </div> | |
| </div> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> |