:root{
  --bg: #ffffff;
  --text: #121212;
  --muted: rgba(18,18,18,.68);

  --accent: #cfae78;
  --accent-2: #111111;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --container: 1200px;

  /* Motion (padrão leve do vídeo) */
  --motion-fast: .28s ease;
  --motion-med: .6s ease;
  --motion-slow: .9s ease;

  --font-title: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}