/* =====================================================
   BASE — Variables, reset, tipografía, layout global
   ===================================================== */

:root {
  --bg: #fcf9f6;
  --surface: #f6f3f0;
  --text: #1c1c1a;
  --muted: #5c6664;
  --primary: #006a62;
  --primary-2: #26a69a;
  --secondary: #805433;
  --outline: #d9d5cf;
  --radius: 18px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.2;
  margin: 0 0 12px;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* ── Material Symbols ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
