* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } .hero-gradient { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); animation: gradientShift 8s ease-in-out infinite; } @keyframes gradientShift { 0%, 100% { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); } 50% { background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%); } } .floating { animation: float 6s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } } .pulse-glow { animation: pulseGlow 2s ease-in-out infinite alternate; } @keyframes pulseGlow { from { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); } to { box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4); } } .text-gradient { background: linear-gradient(45deg, #667eea, #764ba2, #f093fb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .btn { display: inline-block; padding: 12px 24px; border: none; border-radius: 8px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; } .btn-primary { background: linear-gradient(135deg, #667eea, #764ba2); color: white; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3); } .btn-secondary { background: linear-gradient(135deg, #f093fb, #f5576c); color: white; } .btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3); } .btn-success { background: linear-gradient(135deg, #4facfe, #00f2fe); color: white; } .btn-success:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3); } .card { background: white; border-radius: 16px; padding: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; } .card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); } .service-card { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-radius: 20px; padding: 40px; text-align: center; transition: all 0.3s ease; } .service-card:hover { transform: scale(1.05); } .service-card.green { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); } .service-card.pink { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); } header { background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 0; } .header-content { display: flex; justify-content: space-between; align-items: center; } .logo { background: linear-gradient(135deg, #667eea, #f093fb); color: white; padding: 10px 20px; border-radius: 12px; font-weight: 800; font-size: 24px; } nav { display: flex; gap: 30px; } nav a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s ease; } nav a:hover { color: #f093fb; } .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; position: relative; overflow: hidden; } .hero h1 { font-size: 4rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; } .hero p { font-size: 1.5rem; margin-bottom: 40px; max-width: 800px; } .hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; } .hero-btn { padding: 20px 40px; font-size: 1.2rem; font-weight: 700; border-radius: 16px; text-decoration: none; transition: all 0.3s ease; } .hero-btn.primary { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #333; } .hero-btn.secondary { background: transparent; color: white; border: 2px solid white; } .hero-btn:hover { transform: scale(1.1); } .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 60px; } .stat { text-align: center; } .stat-number { font-size: 3rem; font-weight: 900; color: #ffd700; margin-bottom: 10px; } .stat-label { color: rgba(255, 255, 255, 0.8); } .section { padding: 100px 0; } .section-dark { background: #1a1a1a; color: white; } .section-light { background: #f8f9fa; } .section-title { text-align: center; font-size: 3rem; font-weight: 900; margin-bottom: 20px; } .section-subtitle { text-align: center; font-size: 1.2rem; margin-bottom: 60px; color: #666; } .section-dark .section-subtitle { color: #ccc; } .grid { display: grid; gap: 30px; } .grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } .grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); align-items: center; } .blog-card { background: #2a2a2a; border-radius: 20px; overflow: hidden; transition: all 0.3s ease; } .blog-card:hover { transform: translateY(-10px); } .blog-image { height: 200px; background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; font-size: 4rem; } .blog-content { padding: 30px; } .blog-category { color: #667eea; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; } .blog-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 15px; color: white; } .blog-excerpt { color: #ccc; margin-bottom: 20px; } .ebook-section { background: #1a1a1a; color: white; } .ebook-card { background: linear-gradient(135deg, #ffd700, #ff8c00); color: #333; padding: 60px; border-radius: 30px; text-align: center; transform: rotate(3deg); transition: all 0.5s ease; } .ebook-card:hover { transform: rotate(0deg); } .ebook-icon { font-size: 5rem; margin-bottom: 20px; } .ebook-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 10px; } .feature-list { list-style: none; margin: 40px 0; } .feature-list li { display: flex; align-items: center; margin-bottom: 15px; font-size: 1.1rem; } .feature-list .icon { margin-right: 15px; font-size: 1.5rem; } .price-section { display: flex; align-items: center; margin-bottom: 30px; } .price-free { font-size: 3rem; font-weight: 900; margin-right: 20px; } .price-old { text-decoration: line-through; color: #666; font-size: 1.5rem; } .price-badge { background: #dc3545; color: white; padding: 5px 15px; border-radius: 20px; font-weight: 600; margin-left: 15px; } .contact-section { background: #f8f9fa; } .contact-form { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } .form-group { margin-bottom: 20px; } .form-control { width: 100%; padding: 15px; border: 2px solid #e9ecef; border-radius: 10px; font-size: 1rem; transition: border-color 0.3s ease; } .form-control:focus { outline: none; border-color: #667eea; } .contact-info { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } .contact-item { display: flex; align-items: center; margin-bottom: 20px; } .contact-icon { font-size: 1.5rem; margin-right: 15px; color: #667eea; } .social-buttons { display: flex; gap: 15px; margin-top: 30px; } .social-btn { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 1.2rem; transition: all 0.3s ease; } .social-btn:hover { transform: scale(1.1); } .social-btn.facebook { background: #3b5998; } .social-btn.instagram { background: #e4405f; } .social-btn.whatsapp { background: #25d366; } .social-btn.twitter { background: #1da1f2; } .chatbot { position: fixed; bottom: 20px; right: 20px; z-index: 1000; } .chat-toggle { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #667eea, #764ba2); color: white; border: none; font-size: 1.5rem; cursor: pointer; box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3); animation: bounce 2s infinite; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } } .chat-window { position: absolute; bottom: 80px; right: 0; width: 320px; height: 400px; background: white; border-radius: 20px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); display: none; flex-direction: column; } .chat-header { background: linear-gradient(135deg, #667eea, #764ba2); color: white; padding: 20px; border-radius: 20px 20px 0 0; display: flex; justify-content: space-between; align-items: center; } .chat-messages { flex: 1; padding: 20px; overflow-y: auto; } .chat-input-area { padding: 20px; border-top: 1px solid #eee; display: flex; gap: 10px; } .chat-input { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 20px; outline: none; } .chat-send { background: linear-gradient(135deg, #667eea, #764ba2); color: white; border: none; padding: 10px 15px; border-radius: 20px; cursor: pointer; } .message { margin-bottom: 15px; padding: 10px 15px; border-radius: 15px; max-width: 80%; } .message.bot { background: #f1f3f4; align-self: flex-start; } .message.user { background: linear-gradient(135deg, #667eea, #764ba2); color: white; align-self: flex-end; margin-left: auto; } .cta-section { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); color: white; text-align: center; } .cta-title { font-size: 4rem; font-weight: 900; margin-bottom: 30px; } .cta-subtitle { font-size: 1.8rem; margin-bottom: 50px; } .cta-buttons { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; } .cta-btn { padding: 20px 40px; font-size: 1.3rem; font-weight: 700; border-radius: 16px; text-decoration: none; transition: all 0.3s ease; } .cta-btn.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: white; } .cta-btn.consultation { background: transparent; color: white; border: 2px solid white; } .cta-btn:hover { transform: scale(1.1); } footer { background: #000; color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; } .footer-section h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 10px; } .footer-section ul li a { color: #ccc; text-decoration: none; transition: color 0.3s ease; } .footer-section ul li a:hover { color: white; } .footer-bottom { border-top: 1px solid #333; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; } .floating-element { position: absolute; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .floating-1 { top: 10%; left: 10%; width: 80px; height: 80px; font-size: 2rem; animation: float 6s ease-in-out infinite; } .floating-2 { top: 20%; right: 10%; width: 60px; height: 60px; font-size: 1.5rem; animation: float 6s ease-in-out infinite 2s; } .floating-3 { bottom: 20%; left: 15%; width: 100px; height: 100px; font-size: 2.5rem; animation: float 6s ease-in-out infinite 4s; } /* Responsive Design */ @media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .hero-buttons { flex-direction: column; align-items: center; } .section-title { font-size: 2rem; } .cta-title { font-size: 2.5rem; } .cta-buttons { flex-direction: column; align-items: center; } nav { display: none; } .floating-element { display: none; } } .hidden { display: none; } .sparkle { position: relative; overflow: hidden; } .sparkle::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent); transform: rotate(45deg); animation: sparkle 3s linear infinite; } @keyframes sparkle { 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } }
💼
🚀
💡

Transforme sua
PAIXÃO
em NEGÓCIO

🎯 O futuro dos serviços MEI chegou: IA automatizada que resolve tudo via WhatsApp

1000+
MEIs Atendidos
24/7
Suporte IA
5min
Tempo Médio
100%
Automatizado

Serviços Revolucionários

A primeira IA do Brasil especializada em MEI

🤖

Chat MEU MEI

IA revolucionária via WhatsApp que emite DAS, NFS e resolve qualquer demanda do MEI instantaneamente

  • Emissão automática de DAS
  • Nota Fiscal de Serviço
  • Consultas instantâneas
📋

Regularização Express

Processo completo de regularização MEI em tempo recorde com acompanhamento personalizado

  • Abertura em 24h
  • Documentação completa
  • Suporte total
🎯

Mentoria VIP

Consultoria exclusiva para transformar sua ideia em um negócio lucrativo e sustentável

  • 🚀 Estratégia personalizada
  • 🚀 Plano de negócios
  • 🚀 Acompanhamento mensal

Blog do Empreendedor

Conteúdo exclusivo que vai acelerar seu crescimento

💼
Empreendedorismo

15 Ideias de Negócio que Vão Explodir em 2026

Descubra as oportunidades mais promissoras e como começar cada uma delas como MEI...

📊
Gestão Financeira

Como Ganhar R$ 6.000/mês como MEI

Estratégias comprovadas para maximizar sua receita dentro do limite legal do MEI...

🎯
Marketing Digital

Instagram para MEI: Guia Definitivo

Como usar o Instagram para atrair clientes e vender mais, mesmo sem experiência...

📚

MEI MILIONÁRIO

O guia definitivo para o sucesso

E-book Exclusivo

Tudo que você precisa para transformar seu MEI em uma máquina de fazer dinheiro

  • Estratégias para faturar R$ 81.000/ano
  • Como escolher a atividade mais lucrativa
  • Automação completa dos processos
  • Marketing digital que converte
GRÁTIS
R$ 197 Oferta Limitada

📞 Entre em Contato

Estamos aqui para ajudar seu MEI a crescer

Envie sua Mensagem

⚠️ Formulário de demonstração - não envia emails reais

Informações de Contato

📧 contato@meisolutions.com.br
📱 (11) 99999-9999
📍 São Paulo, SP - Brasil
🕒 Seg-Sex: 9h às 18h

Redes Sociais

Pronto para DECOLAR?

Junte-se a mais de 1.000 empreendedores que já transformaram suas vidas

⚡ Resposta em menos de 5 minutos!