/* ════════════════════════════════════════════
   BASE.CSS — Fundación de todo el sitio
   Todo archivo CSS y HTML del sitio
   debe linkear este archivo primero
   ════════════════════════════════════════════ */

/* ── TIPOGRAFÍAS ── */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;900&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ── RESET ── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

/* ── VARIABLES GLOBALES ── */

:root {
  /* Colores */
  --bg:        #229cc1;   /* Celeste principal */
  --black:     #111111;   /* Negro */
  --white:     #ffffff;   /* Blanco */
  --grey:      #e8e8e8;   /* Gris claro */
  --orange:    #ff7a00;   /* Énfasis naranja */

  /* Tipografías */
  --font:      'Outfit', sans-serif;      /* Display / títulos */
  --font-body: 'DM Sans', sans-serif;    /* Cuerpo de texto */

  /* Tamaños de fuente base */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.85rem;   /* 13.6px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.2rem;    /* 19.2px */

  /* Espaciado común */
  --gap-sm:    0.6rem;
  --gap-md:    1.5rem;
  --gap-lg:    3.5rem;

  /* Ancho máximo de trabajo */
  --max-w:     906px;
}

/* ── BASE BODY ── */

body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
}
