/* ===== css/base.css - VARIABLES, RESET Y FUNDAMENTOS ===== */
/* Sistema de Gestión de Planificación Familiar - MSPAS Guatemala */
:root {
  /* MSPAS Colors - Colores institucionales Guatemala */
  --mspas-primary: #0066CC;        /* Azul institucional MSPAS */
  --mspas-secondary: #00A651;      /* Verde salud */
  --mspas-accent: #FF8C42;         /* Naranja cálido/accesible */
  --mspas-gradient-start: #0066CC; /* Mantener compatibilidad */
  --mspas-gradient-end: #0088DD;   /* Azul más claro */
  --mspas-success: #00A651;        /* Verde salud */
  --mspas-warning: #FF8C42;        /* Naranja advertencia */
  --mspas-danger: #DC3545;         /* Rojo peligro */
  --mspas-background: #ffffff;
  --mspas-surface: #F5F7FA;        /* Gris muy claro */
  --mspas-text: #2C3E50;           /* Carbón oscuro */
  --mspas-text-secondary: #6B7280;
  
  /* Typography */
  --font-family-base: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  
  /* Z-index layers */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-tooltip: 1070;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--mspas-text);
  background-color: var(--mspas-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography base */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--mspas-text);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--spacing-md);
  color: var(--mspas-text-secondary);
}

/* Utilidades básicas */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}