/* =======================================
   GOOGLE FONTS — INTER
======================================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* Fuente primaria del sistema */
:root {
  --font-primary: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Aplicar fuente global por defecto */
body,
button,
input,
select,
textarea {
  font-family: var(--font-primary) !important;
}

/* =======================================
   PESOS / UTILIDADES DE FUENTE
======================================= */
.bold,
.fw-bold,
strong,
.fw-600 {
  font-weight: 600;
}
.fw-300,
.fw-light {
  font-weight: 300;
}
.fw-normal,
.fw-400,
.fw-regular {
  font-weight: 400;
}
.bolder,
.fw-bolder,
.fw-700,
.fw-extrabold {
  font-weight: 700;
}
.fw-medium {
  font-weight: 500;
}
.fw-semibold {
  font-weight: 600;
}

/* Headings base */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.3px;
  margin: 0;
}

h1 {
  font-size: 2rem !important;
}

h5,
h6 {
  margin: 0;
}

/* =======================================
   ENLACES TIPOGRAFÍA
======================================= */
a {
  text-decoration: none !important;
}

.link,
.link-primary,
.link-secondary {
  text-decoration: underline;
  cursor: pointer;
}

.link-primary {
  color: var(--color-primary);
}
.link-primary:hover {
  color: rgba(136, 32, 55, 0.6);
}

.link-secondary {
  color: var(--color-secondary);
}
.link-secondary:hover,
.link:hover {
  color: rgba(5, 47, 95, 0.6);
}

/* =======================================
   DIVISORES
======================================= */
.hr_color_primary {
  width: 100% !important;
  height: 2px !important;
  background: var(--color-primary) !important;
  border: none;
}

.hr_color_secondary,
.hr_min {
  width: 100% !important;
  border: none;
  background: var(--color-secondary) !important;
}
.hr_color_secondary {
  height: 2px !important;
}
.hr_min {
  height: 0.5px !important;
}

/* =======================================
   ESCALAS DE TEXTO
======================================= */
.text-xs,
.text-note {
  font-size: 0.8em;
}
.text-sm {
  font-size: 0.85rem;
}
.text-md {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.5rem;
}
.text-max {
  font-size: 2rem;
}

.text-note,
.text-xs,
.text-sm,
.text-md,
.text-lg,
.text-max {
  color: #606060;
  font-weight: 500;
}