/* base.css — reset, tipografía, variables globales */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; background: #FFFFFF; }

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #e8edf5;
  min-width: 320px;
}

a { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; color: #fff; text-decoration: none; transition: color .2s; }
a:hover { color: #6dc4ff; }

h1 { font-size: clamp(1.1rem, 2vw, 2rem);      font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(0.9rem, 1.5vw, 1.4rem);  font-weight: 600; line-height: 1.4; }
h3 { font-size: clamp(0.85rem, 1.3vw, 1.1rem); font-weight: 600; line-height: 1.3; }
p  { font-size: clamp(0.85rem, 1.2vw, 1rem);   font-weight: 400; line-height: 1.8; }

/* Wrapper — solo centra contenido de 3 columnas */
#wrapper { width: 100%; max-width: 1200px; margin: 0 auto; }
