/* Conexify - Landing Page | Estilo SaaS Dark Mode Moderno */
:root {
    --primary: #00D084;
    --primary-dark: #00B870;
    --primary-light: #00F5A0;
    --primary-50: #f0fdf9;
    --primary-100: #dcfce7;
    --primary-200: #bbf7d0;
    --secondary: #FFD700;
    --secondary-dark: #FFC700;
    --text: #ffffff;
    --text-muted: #a1a1a1;
    --bg: #0a0e27;
    --bg-alt: #151b2f;
    --bg-card: #1a2140;
    --border: #2d3748;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 4px 6px -1px rgba(0, 208, 132, 0.08), 0 2px 4px -2px rgba(0, 208, 132, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 208, 132, 0.1), 0 8px 10px -6px rgba(0, 208, 132, 0.08);
    --shadow-xl: 0 25px 50px -12px rgba(0, 208, 132, 0.2);
    --wpp: #25D366;
    --font: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header { position: sticky; top: 0; z-index: 100; background: rgba(10, 14, 39, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 38px; width: auto; display: block; }
.nav { display: flex; gap: 32px; }
.nav a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 15px; transition: color 0.2s; }
.nav a:hover { color: var(--primary); }
.header-ctas { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; order: 5; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--primary); border-radius: 1px; }

@media (max-width: 768px) {
    .header-inner { flex-wrap: wrap; }
    .nav, .header-ctas { display: none; width: 100%; order: 10; flex-direction: column; gap: 12px; padding: 20px 0 0; border-top: 1px solid var(--border); margin-top: 10px; }
    .nav.open, .header-ctas.open { display: flex; }
    .header-ctas.open { padding-top: 12px; }
    .menu-toggle { display: flex; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; font-size: 15px; font-weight: 600; text-decoration: none; border-radius: var(--radius); transition: all 0.2s; cursor: pointer; border: 2px solid transparent; font-family: var(--font); }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #000 !important; box-shadow: var(--shadow); font-weight: 700; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); color: #000 !important; box-shadow: var(--shadow); font-weight: 700; }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: rgba(0, 208, 132, 0.1); color: var(--primary) !important; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: #fff !important; }
.btn-whatsapp { background: var(--wpp); color: #fff !important; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 18px 36px; font-size: 17px; }

/* Hero */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0, 208, 132, 0.05) 0%, transparent 40%, rgba(255, 215, 0, 0.03) 100%); z-index: 0; }
.hero-bg::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 150%; background: radial-gradient(circle, rgba(0, 208, 132, 0.08) 0%, transparent 70%); }
.hero-bg::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 40%; height: 100%; background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-block; background: rgba(0, 208, 132, 0.15); color: var(--primary); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.02em; border: 1px solid rgba(0, 208, 132, 0.3); }
.hero-title { font-size: 3rem; font-weight: 800; line-height: 1.15; color: var(--text); margin-bottom: 20px; letter-spacing: -0.03em; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 28px; max-width: 480px; line-height: 1.65; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.hero-features { list-style: none; display: flex; flex-wrap: wrap; gap: 20px 28px; }
.hero-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-muted); font-weight: 500; }
.hero-features i { color: var(--primary); font-size: 16px; }
.hero-media { position: relative; }
.video-wrapper { position: relative; background: linear-gradient(145deg, #1a2140 0%, #2d3748 100%); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0, 208, 132, 0.2); }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.video-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #1a2140 0%, #2d3748 100%); }
.video-fallback-inner { text-align: center; padding: 40px; }
.video-fallback .play-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-size: 28px; padding-left: 8px; font-weight: 700; }
.video-fallback p { color: rgba(255,255,255,0.9); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.video-fallback small { color: rgba(255,255,255,0.5); font-size: 13px; }
.video-fallback code { background: rgba(0, 208, 132, 0.2); padding: 2px 8px; border-radius: 6px; font-size: 12px; color: var(--primary); }
.hero-video-label { margin-top: 16px; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.video-section, .section-striped { padding: 32px 0; background: var(--bg-alt); }
.video-desc { text-align: center; color: var(--text-muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; line-height: 1.7; }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle, .hero-features { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-title { font-size: 2.25rem; }
    .hero-features { justify-content: center; }
}

/* Sections */
.section { padding: 80px 0; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-title { font-size: 2.25rem; font-weight: 800; text-align: center; margin-bottom: 12px; color: var(--text); letter-spacing: -0.02em; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 48px; font-size: 1.05rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.step { text-align: center; padding: 32px 24px; background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all 0.2s; }
.step:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: #000; font-weight: 800; font-size: 1.25rem; border-radius: 50%; margin-bottom: 20px; }
.step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); font-weight: 700; }
.step p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto 28px; }
.feature-card { display: flex; align-items: center; gap: 16px; padding: 20px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.2s; font-weight: 500; color: var(--text); }
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-card i { font-size: 22px; color: var(--primary); width: 32px; text-align: center; }
.features-footer { text-align: center; font-weight: 700; font-size: 1.1rem; color: var(--primary); }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .features-grid { grid-template-columns: 1fr; } }

/* Profissões */
.profissoes-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.prof-badge { padding: 12px 22px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--text); transition: all 0.2s; }
.prof-badge:hover { border-color: var(--primary); color: var(--primary); background: rgba(0, 208, 132, 0.1); }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.benefit { padding: 32px 24px; background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); text-align: center; transition: all 0.2s; }
.benefit:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.benefit-icon { width: 56px; height: 56px; margin: 0 auto 20px; background: rgba(0, 208, 132, 0.15); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.benefit h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text); font-weight: 700; }
.benefit p { font-size: 15px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 768px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .benefits { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { padding: 28px 0; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); font-weight: 700; }
.faq-item p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* CTA Final */
.cta-final { padding: 100px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #00B870 100%); color: #000; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; top: -50%; left: -50%; width: 100%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%); }
.cta-title { font-size: 2.25rem; font-weight: 800; margin-bottom: 12px; color: #000; position: relative; letter-spacing: -0.02em; }
.cta-subtitle { font-size: 1.15rem; margin-bottom: 36px; opacity: 0.92; position: relative; color: #000; }
.cta-final .btn { margin: 0 10px 12px; position: relative; }

/* Footer */
.footer { padding: 48px 0; border-top: 1px solid var(--border); background: var(--bg-alt); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-logo { height: 32px; width: auto; opacity: 0.9; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: var(--primary); }
