/* Typography - Lexend Font System */

/* Aplicar Lexend como fuente principal */
body {
  font-family: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Jerarquía de Texto */

.display-large {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--on-surface);
}

.display-medium {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--on-surface);
}

.display-small {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--on-surface);
}

.title-large {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--on-surface);
}

.body-large {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--on-surface);
}

.body-medium {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--on-surface);
}

.body-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--secondary-text);
}

.label-large {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--on-surface);
}

.label-medium {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--on-surface);
}

.label-small {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--secondary-text);
}

/* Tamaños de iconos (Material Icons) */
.icon {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px; /* Por defecto */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}

.icon-sm {
  font-size: 18px;
}

.icon-md {
  font-size: 24px;
}

.icon-lg {
  font-size: 32px;
}

.icon-xl {
  font-size: 48px;
}
