/* Paleta de Cores Profissional: Tech Blue e Dark Slate */
:root {
    --bg-dark: #0B1120; /* Fundo principal mais escuro e profissional */
    --bg-card: #141E33; /* Fundo dos cards */
    --accent: #2563EB; /* Azul de alta conversão (Tech Blue) */
    --accent-hover: #1D4ED8;
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --border-color: #1E293B;
    --success: #10B981; /* Verde de confirmação */
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text-light); line-height: 1.6; overflow-x: hidden; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.w-100 { width: 100%; text-align: center; }

/* Botões de Venda (Agressivos e Elegantes) */
.btn-primary { display: inline-block; padding: 18px 36px; background-color: var(--accent); color: #fff; text-decoration: none; font-weight: 800; border-radius: 6px; transition: all 0.3s ease; border: none; cursor: pointer; text-transform: uppercase; font-size: 15px; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); }
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6); }

/* Animação para chamar atenção nas vendas */
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.btn-outline { display: inline-block; padding: 16px 32px; background-color: transparent; border: 2px solid var(--border-color); color: var(--text-muted); text-decoration: none; font-weight: 700; border-radius: 6px; text-transform: uppercase; font-size: 14px; letter-spacing: 1px; }

/* Navbar */
.navbar { padding: 20px 0; position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(11, 17, 32, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); transition: all 0.3s ease; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 75px; filter: brightness(0) invert(1); transition: transform 0.3s ease; } /* LOGO AUMENTADA */
.logo:hover { transform: scale(1.02); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 15px; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--text-light); }
.btn-login { background: transparent; padding: 10px 24px; border-radius: 4px; color: var(--accent) !important; border: 1px solid var(--accent); transition: all 0.3s ease !important; }
.btn-login:hover { background: var(--accent); color: #fff !important; }

/* Hero Section */
.hero { padding: 200px 0 120px 0; min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.glow-bg { position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(11, 17, 32, 0) 70%); border-radius: 50%; z-index: -1; pointer-events: none; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.badge { display: inline-block; padding: 6px 14px; background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.3); color: #60A5FA; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-bottom: 24px; }
.hero-text h1 { font-size: 50px; font-weight: 800; line-height: 1.15; margin-bottom: 24px; color: var(--text-light); }
.highlight { color: var(--accent); }
.hero-text p { font-size: 19px; color: var(--text-muted); margin-bottom: 40px; max-width: 95%; font-weight: 400; }
.hero-botoes { display: flex; gap: 20px; }

/* Mockup Animado */
.hero-image { position: relative; perspective: 1000px; }
.mockup-img { width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--border-color); transform-style: preserve-3d; animation: float 6s ease-in-out infinite; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.4)); }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Trust */
.trust { padding: 40px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); background: rgba(20, 30, 51, 0.4); text-align: center; }
.trust p { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; font-weight: 600; }
.trust-logos { display: flex; justify-content: center; gap: 40px; align-items: center; color: #64748B; font-weight: 800; font-size: 18px; flex-wrap: wrap; }
.dot { color: var(--accent); opacity: 0.5; }

/* Funcionalidades (Com Ícones CSS Puro e Animação de Hover) */
.section-title { text-align: center; margin-bottom: 70px; }
.section-title h2 { font-size: 38px; font-weight: 800; margin-bottom: 15px; letter-spacing: -0.5px; }
.section-title p { color: var(--text-muted); font-size: 18px; max-width: 650px; margin: 0 auto; font-weight: 400; }
.features { padding: 120px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }

.feature-card { background: var(--bg-card); padding: 40px 30px; border-radius: 12px; border: 1px solid var(--border-color); transition: all 0.4s ease; position: relative; overflow: hidden; }
.feature-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.feature-card:hover { transform: translateY(-10px); background: #1A2642; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-card h3 { font-size: 20px; margin-bottom: 15px; color: var(--text-light); font-weight: 700; }
.feature-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ÍCONES DESENHADOS COM CSS PURO */
.css-icon { width: 48px; height: 48px; margin-bottom: 24px; position: relative; display: inline-block; }

/* 1. Calendário CSS */
.icon-calendar { border: 3px solid var(--accent); border-radius: 6px; border-top-width: 10px; }
.icon-calendar::after { content: ''; position: absolute; top: 8px; left: 6px; width: 6px; height: 6px; background: var(--accent); border-radius: 2px; box-shadow: 12px 0 0 var(--accent), 24px 0 0 var(--accent), 0 12px 0 var(--accent), 12px 12px 0 var(--accent), 24px 12px 0 var(--accent); }

/* 2. Alvo CSS */
.icon-target { border: 3px solid var(--accent); border-radius: 50%; }
.icon-target::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 24px; height: 24px; border: 3px solid var(--accent); border-radius: 50%; }
.icon-target::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }

/* 3. Chat CSS */
.icon-chat { border: 3px solid var(--accent); border-radius: 8px; }
.icon-chat::after { content: ''; position: absolute; bottom: -8px; left: 8px; width: 12px; height: 12px; border-bottom: 3px solid var(--accent); border-right: 3px solid var(--accent); background: var(--bg-card); transform: rotate(45deg); transition: background 0.4s ease; }
.feature-card:hover .icon-chat::after { background: #1A2642; }

/* 4. Gráfico CSS */
.icon-chart { border-bottom: 3px solid var(--accent); border-left: 3px solid var(--accent); }
.icon-chart::before { content: ''; position: absolute; bottom: 0; left: 8px; width: 6px; height: 16px; background: var(--accent); box-shadow: 12px -8px 0 var(--accent), 24px -20px 0 var(--accent); }

/* Pricing */
.pricing { padding: 100px 0 140px 0; background: #080D1A; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; max-width: 850px; margin: 0 auto; }
.price-card { background: var(--bg-card); padding: 50px 40px; border-radius: 12px; border: 1px solid var(--border-color); position: relative; display: flex; flex-direction: column; transition: transform 0.3s ease; }
.price-card:hover { transform: translateY(-5px); }
.price-card.popular { border-color: var(--accent); background: linear-gradient(180deg, #141E33 0%, #0B1120 100%); box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 6px 20px; font-size: 12px; font-weight: 800; border-radius: 30px; letter-spacing: 1px; }

.price-card.em-breve { opacity: 0.7; }
.em-breve-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: #334155; color: #fff; padding: 6px 20px; font-size: 12px; font-weight: 800; border-radius: 30px; letter-spacing: 1px; }
.disabled-btn { cursor: not-allowed; opacity: 0.6; }

.price-card h3 { font-size: 26px; font-weight: 800; color: var(--text-light); margin-bottom: 5px; }
.price-card .cargo { color: #60A5FA; font-size: 14px; font-weight: 600; margin-bottom: 24px; }
.price { margin-bottom: 35px; display: flex; align-items: baseline; gap: 5px; margin-top: auto;}
.currency { font-size: 22px; color: var(--text-muted); font-weight: 600; }
.amount { font-size: 54px; font-weight: 800; color: var(--text-light); letter-spacing: -1px; }
.period { font-size: 14px; color: var(--text-muted); }
.features-list { list-style: none; margin-bottom: 40px; }
.features-list li { margin-bottom: 16px; font-size: 15px; color: #CBD5E1; display: flex; align-items: flex-start; gap: 12px; }
.features-list li::before { content: "✓"; color: var(--success); font-weight: bold; font-size: 16px; }

/* FAQ */
.faq { padding: 80px 0 120px 0; max-width: 750px; margin: 0 auto; }
.faq-item { margin-bottom: 10px; border-bottom: 1px solid var(--border-color); }
.faq-question { width: 100%; background: none; border: none; color: var(--text-light); font-size: 17px; font-weight: 600; text-align: left; padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; }
.faq-question:hover { color: var(--accent); }
.faq-question::after { content: "+"; color: var(--accent); font-size: 28px; font-weight: 300; transition: transform 0.3s ease; }
.faq-question.active::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 24px; color: var(--text-muted); font-size: 16px; line-height: 1.7; }

/* Footer */
.modern-footer { background: #060A14; padding: 80px 0 30px 0; border-top: 1px solid var(--border-color); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { height: 60px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 20px; transition: opacity 0.3s ease; } /* LOGO AUMENTADA */
.footer-logo:hover { opacity: 1; }
.footer-brand p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.footer-links-group h4 { color: var(--text-light); font-size: 16px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links-group a { display: block; color: var(--text-muted); text-decoration: none; font-size: 15px; margin-bottom: 12px; transition: all 0.3s ease; }
.footer-links-group a:hover { color: var(--accent); transform: translateX(5px); }
/* Estilos atualizados dos links de contato do Footer */
.contact-link { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: 15px; 
    margin-bottom: 16px; 
    transition: all 0.3s ease; 
}
.contact-link:hover { 
    color: var(--accent); 
    transform: translateX(5px); 
}
.wpp-link:hover { 
    color: #25D366; /* Verde característico do WhatsApp no hover */
}
.footer-icon { 
    width: 20px; 
    height: 20px; 
    fill: currentColor; 
    flex-shrink: 0; 
}

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--border-color); flex-wrap: wrap; gap: 20px; }
.legal-links { display: flex; gap: 20px; }
.legal-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.3s; }
.legal-links a:hover { color: var(--text-light); }
.footer-bottom p { color: #64748B; font-size: 13px; }

/* Botão Flutuante WhatsApp */
.floating-whatsapp { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; border-radius: 50px; padding: 12px 24px; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; text-decoration: none; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); z-index: 1000; transition: transform 0.3s, box-shadow 0.3s; }
.floating-whatsapp:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6); }

/* Animações (Scroll Reveal) */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsivo */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text p { margin: 0 auto 30px auto; }
    .hero-botoes { justify-content: center; }
    .hero-text h1 { font-size: 40px; }
    .glow-bg { display: none; }
    .floating-whatsapp { bottom: 20px; right: 20px; padding: 12px; }
    .floating-whatsapp span { display: none; /* Esconde o texto no mobile, fica só o ícone */ }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
}