@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Serif+4:wght@400;600;700&display=swap');

/* LGPD PMEs - Styles */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #0f172a;
  --accent: #10b981;
  --text: #334155;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
}
* { margin: 0; padding: 0; box-sizing: border-box }
body { font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: var(--text); background: var(--bg) }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px }
a { color: var(--primary); text-decoration: none }
a:hover { text-decoration: underline }
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600; transition: all 0.2s; cursor: pointer; border: none }
.btn-primary { background: var(--primary); color: white }
.btn-primary:hover { background: var(--primary-dark); text-decoration: none }
.btn-secondary { background: var(--secondary); color: white }
.btn-secondary:hover { background: #1e293b; text-decoration: none }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent }
.btn-outline:hover { background: var(--primary); color: white; text-decoration: none }
/* Header */
.header { background: white; border-bottom: 1px solid var(--border); padding: 16px 0; position: sticky; top: 0; z-index: 100 }
.nav { display: flex; align-items: center; justify-content: space-between }
.logo { font-size: 24px; font-weight: 700; color: var(--secondary) }
.logo span { color: var(--primary) }
.nav-links { display: flex; list-style: none; gap: 32px }
.nav-links a { color: var(--text); font-weight: 500 }
.nav-links a:hover { color: var(--primary); text-decoration: none }
/* Hero */
.hero { position: relative; overflow: hidden }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(37,99,235,.18), transparent 40%), radial-gradient(circle at 20% 80%, rgba(16,185,129,.12), transparent 35%); pointer-events: none }
.hero-layout { display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; gap: 28px; position: relative }
.hero-copy { text-align: left }
.hero-kicker { display: inline-block; margin-bottom: 14px; padding: 6px 12px; background: #dbeafe; color: #1e3a8a; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .02em }
.hero-panel { background: #fff; border: 1px solid #bfdbfe; box-shadow: 0 12px 30px rgba(30,58,138,.10); border-radius: 14px; padding: 22px; text-align: left }
.hero-panel h3 { color: var(--secondary); margin-bottom: 10px; font-size: 20px }
.hero-panel ul { padding-left: 18px; margin: 0 0 12px }
.hero-panel li { margin-bottom: 8px; color: #1e293b }
.hero-panel-link { font-weight: 700 }

.hero { padding: 80px 0; text-align: center; background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) }
.hero h1 { font-size: 48px; color: var(--secondary); margin-bottom: 20px; line-height: 1.2 }
.hero p { font-size: 20px; color: var(--text); max-width: 700px; margin: 0 auto 32px }
.hero-actions { display: flex; gap: 16px; justify-content: center }
.hero-trust { font-size: 14px; color: var(--accent); margin-top: 24px }
/* Stats */
.stats { padding: 60px 0; background: var(--secondary) }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center }
.stat-number { display: block; font-size: 48px; font-weight: 700; color: white }
.stat-label { color: #94a3b8; font-size: 16px }
/* Features */
.features { padding: 80px 0 }
.features h2 { text-align: center; font-size: 36px; color: var(--secondary); margin-bottom: 48px }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px }
.feature-card { background: var(--bg-alt); padding: 32px; border-radius: 12px; border: 1px solid #e2e8f0; transition: transform 0.2s, box-shadow 0.2s }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(15,23,42,.08) }
.feature-card h3 { font-size: 20px; color: var(--secondary); margin-bottom: 12px }
.feature-card p { color: var(--text); margin-bottom: 16px }
.feature-card a { color: var(--primary); font-weight: 500 }
/* Latest Posts */
.latest-posts { padding: 80px 0; background: var(--bg-alt) }
.latest-posts h2 { text-align: center; font-size: 36px; color: var(--secondary); margin-bottom: 48px }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px }
.post-card { background: white; padding: 32px; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 8px 20px rgba(15,23,42,.04) }
.post-category { display: inline-block; background: #dbeafe; color: var(--primary); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 16px }
.post-card h3 { font-size: 20px; color: var(--secondary); margin-bottom: 12px }
.post-card h3 a { color: inherit }
.post-card p { color: var(--text); margin-bottom: 16px }
.read-more { color: var(--primary); font-weight: 500 }
/* CTA */
.cta { padding: 80px 0; text-align: center; background: var(--primary); color: white }
.cta h2 { font-size: 36px; margin-bottom: 16px }
.cta p { font-size: 18px; margin-bottom: 32px; opacity: 0.9 }
/* Footer */
.footer { background: var(--secondary); color: white; padding: 60px 0 32px }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; margin-bottom: 48px }
.footer-links-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 24px }
.footer-brand .logo { color: white; margin-bottom: 16px; display: inline-block }
.footer-brand p { color: #94a3b8 }
.footer-links h4 { font-size: 16px; margin-bottom: 20px }
.footer-links ul { list-style: none }
.footer-links li { margin-bottom: 12px }
.footer-links a { color: #94a3b8 }
.footer-links a:hover { color: white }
.footer-bottom { border-top: 1px solid #334155; padding-top: 32px; text-align: center; color: #64748b; font-size: 14px }
/* Article Page */
.article-header { padding: 60px 0; background: var(--bg-alt); text-align: center }
.article-header h1 { font-size: 42px; color: var(--secondary); margin-bottom: 16px }
.article-meta { color: var(--text-light); font-size: 14px }
.article-content { padding: 60px 0; max-width: 800px; margin: 0 auto; font-family: "Source Serif 4", Georgia, serif }
.article-content h2 { font-size: 28px; color: var(--secondary); margin: 48px 0 24px }
.article-content h3 { font-size: 22px; color: var(--secondary); margin: 32px 0 16px }
.article-content p { margin-bottom: 16px; font-size: 18px }
.article-content ul, .article-content ol { margin: 24px 0; padding-left: 32px }
.article-content li { margin-bottom: 12px }
.article-content blockquote { border-left: 4px solid var(--primary); padding-left: 24px; margin: 32px 0; font-style: italic; color: var(--text-light) }
.breadcrumbs { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #64748b; margin-top: 20px }
.breadcrumbs a { color: #475569 }
.breadcrumbs a:hover { color: var(--primary); text-decoration: none }

/* Blog Index */
.blog-header { padding: 60px 0; background: var(--secondary); text-align: center; color: white }
.blog-header h1 { font-size: 42px; margin-bottom: 16px }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 60px 0 }

.nav-toggle { display: none; background: transparent; border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; font-size: 20px; line-height: 1; color: var(--secondary); cursor: pointer }
.nav-toggle:hover { background: var(--bg-alt) }
.author-box { background: #f8fafc; border: 1px solid var(--border); padding: 24px; border-radius: 12px; margin-top: 48px }
.author-box h3 { margin-bottom: 8px; color: var(--secondary); font-size: 20px }
.hero-trust { font-size: 14px; color: #0f766e; margin-top: 24px; font-weight: 600 }

/* Responsive */
@media (max-width: 768px) {
  .nav { position: relative }
  .nav .btn { display: none }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center }
  .nav-links { display: none; position: absolute; top: calc(100% + 12px); left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px; flex-direction: column; gap: 0; box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08) }
  .nav-links.open { display: flex }
  .nav-links li a { display: block; padding: 10px 8px }
  .hero h1 { font-size: 32px }
  .hero p { font-size: 18px }
  .hero-actions { flex-direction: column }
  .hero-layout { grid-template-columns: 1fr }
  .hero-copy { text-align: center }
  .hero-panel { margin-top: 8px }
  .stats-grid, .features-grid, .posts-grid, .blog-grid { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr }
}

