:root {
  --teal: #2A7B92;
  --teal-light: #5BA0B5;
  --deep: #1A5567;
  --accent: #4379EE;
  --accent-hover: #3563C1;
  --bg: #ffffff;
  --bg-soft: #F5F6FA;
  --text: #202224;
  --text-soft: #4A5763;
  --text-muted: #828282;
  --success: #22c55e;
  --tealLight: #5BA0B5;
  --text-color: #202224;
  --text-light: #4A5763;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Manrope', sans-serif;
}

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

/* Visually hidden — accesible para lectores de pantalla */
.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;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

