/* Reset e base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }

/* Dark mode automático */
@media (prefers-color-scheme: dark) {
  body { background: #0F172A; color: #E2E8F0; }
  .container { color: #E2E8F0; }
  footer { background: #020617; }
  section[style*="background:#F8FAFC"], section[style*="background: #F8FAFC"] { background: #1E293B !important; }
  details { background: #1E293B !important; }
}

/* Menu mobile (simplificado – adicione um navbar se desejar, mas manteremos a hero como primeira seção) */

/* Animações de entrada */
.revelar { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.revelar.ativo { opacity: 1; transform: translateY(0); }