/* =====================================================
   RESET Y BASE GLOBAL
   ===================================================== */
* { box-sizing: border-box; }

html, body { height: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Inter, system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all .3s ease; }

img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: auto; padding: 0 20px; }