:root{
  --form-font-family: inherit;
  --form-font-weight: 400;

  --fs-xxs: .65rem;
  --fs-xs: .75rem;
  --fs-sm: .875rem;
  --fs-md: 1.25rem;
  --fs-lg: 2rem;
  --fs-xl: 3rem;

  --h-xs: 30px;
  --h-sm: 36px;
  --h-md: 44px;
  --h-lg: 52px;

  --px-xs: .5rem;
  --px-sm: .75rem;
  --px-md: 1rem;
  --px-lg: 1.25rem;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/core/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/core/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/core/fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/core/fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root{
  --font-sans:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Helvetica Neue",Helvetica,Arial,sans-serif;
  --font-display:var(--font-sans);

  --text-color:var(--c-text,#111827);
  --muted:var(--c-gray-dark,#667085);

  --link:var(--c-blue,#004777);
  --link-hover:var(--c-orange,#FF7D00);

  --lh-tight:1.08;
  --lh-heading:1.1;
  --lh-copy:1.52;

  --fs-body:1rem;
  --fs-small:.875rem;
  --fs-h1:clamp(3.06rem, 5.15vw, 4.25rem);
  --fs-h2:clamp(2.4rem, 3.4vw, 2.7rem);
  --fs-h3:clamp(1.55rem, 2.45vw, 1.95rem);
  --fs-h4:clamp(1.25rem, 1.95vw, 1.5rem);
  --fs-h5:clamp(1.08rem, 1.55vw, 1.22rem);
  --fs-h6:1rem;

  --ls-display:-0.13rem;
  --ls-h1:-0.115rem;
  --ls-h2:-0.065rem;
  --ls-h3:-0.03rem;
}

* {box-sizing:border-box}
html{font-size:16px}

body{
  font-family:var(--font-sans);
  font-weight:400;
  font-size:var(--fs-body);
  line-height:var(--lh-copy);
  color:var(--text-color);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  margin:0;
  text-rendering:optimizeLegibility;
}

.uppercase{text-transform:uppercase}
.italic{font-style:italic}
strong,.bold{font-weight:600 !important}
.bolder{font-weight:700}
.text-max strong{font-weight:600 !important}

.fw-100 { font-weight: 100 !important; }
.fw-200 { font-weight: 200 !important; }
.fw-300 { font-weight: 300 !important; }
.fw-400 { font-weight: 400 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }

.fw-thin    { font-weight: 100 !important; }
.fw-lighter { font-weight: 200 !important; }
.fw-light   { font-weight: 300 !important; }
.fw-regular { font-weight: 400 !important; }
.fw-normal  { font-weight: 400 !important; }
.fw-semibold{ font-weight: 600 !important; }
.fw-bold    { font-weight: 700 !important; }
.fw-bolder  { font-weight: 800 !important; }
.fw-max     { font-weight: 800 !important; }
.fw-inherit { font-weight: inherit !important; }

.text-tip,
.text-tip a{
  font-size:.78rem;
  color:rgba(102,112,133,1) !important;
  font-weight:500;
  line-height:1.4;
}

.text-xxs,.font-mini,.fs-7{font-size:.72rem}
.text-xs,.fs-6{font-size:.79375rem}
.text-sm,.fs-5{font-size:.84375rem}
.text-md,.fs-4{font-size:1.0875rem}
.text-4{font-size:1.125rem !important}
.text-3{font-size:1.3125rem !important}
.text-2{font-size:1.5625rem !important}
.text-1{font-size:1.8125rem !important}
.text-lg{
  font-size:clamp(2.35rem, 3.75vw, 3.05rem);
  letter-spacing:-.08rem;
  line-height:var(--lh-heading);
}
.text-max{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(3.75rem, 6.25vw, 5.25rem);
  letter-spacing:-.17rem;
  line-height:.98;
}
.text-xxl{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(2.8rem, 4.7vw, 3.8rem) !important;
  letter-spacing:var(--ls-display);
  line-height:1.02;
}

h1,h2,h3,h4,h5,h6,p{
  margin:0 0 1.1rem 0;
  line-height:var(--lh-heading);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

h1,.font-max{
  font-family:var(--font-display);
  font-weight:700;
  font-size:var(--fs-h1);
  letter-spacing:var(--ls-h1);
  line-height:0.81;
}
h2{
  font-family:var(--font-display);
  font-weight:600;
  font-size:var(--fs-h2);
  letter-spacing:var(--ls-h2);
  line-height:0.86;
}
h3{
  font-family:var(--font-sans);
  font-weight:600;
  font-size:var(--fs-h3);
  letter-spacing:var(--ls-h3);
  line-height:1.14;
}
h4{
  font-family:var(--font-sans);
  font-weight:600;
  font-size:var(--fs-h4);
  line-height:1.2;
}
h5{
  font-family:var(--font-sans);
  font-weight:600;
  font-size:var(--fs-h5);
  line-height:1.24;
}
h6{
  font-family:var(--font-sans);
  font-weight:600;
  font-size:var(--fs-h6);
  line-height:1.3;
}

p,li{
  font-size:.985rem;
  line-height:var(--lh-copy);
}

small,.small,.badge,.ui-pill,.ui-chip,.ui-badge,.accordion-button,.list-group-item,.table,.table td,.table th,.table thead th,.text-lector,.text-link,.fontLector,.loadHelp{
  font-family:var(--font-sans);
}

/* El menu no debe agregar sombras tipograficas ni filtros a texto/iconos */
.nav-hero .navbar-brand,
.nav-minimal .navbar-brand,
.nav-hero .nav-link,
.nav-minimal .nav-link,
.nav-account-toggle,
.nav-account-name,
.nav-account-role,
.nav-contrast-toggle{
  text-shadow:none !important;
}

.nav-hero .navbar-brand img,
.nav-minimal .navbar-brand img{
  filter:none !important;
}

.nav-hero .nav-link i,
.nav-minimal .nav-link i,
.nav-account-toggle i,
.nav-contrast-toggle i{
  filter:none !important;
}

.font{font-family:var(--font-display)}
.text-title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(2.45rem, 4.15vw, 3.3rem) !important;
  letter-spacing:-.11rem;
  line-height:1.04;
}
.text-subtitle{
  font-size:1.14rem !important;
  letter-spacing:0 !important;
  font-weight:400 !important;
  line-height:1.48;
  color:var(--muted);
}

.text-lector,
.text-link,
.text-link a:visited{
  font-family:var(--font-sans) !important;
  font-size:.96rem !important;
  line-height:1.58;
}
.text-lector{
  font-weight:400 !important;
  color:var(--text-color) !important;
}

a{
  color:var(--link);
  text-decoration:none;
  font-size:inherit;
}
a:hover,
a:focus,
a:active{
  text-decoration:none;
  color:var(--link-hover);
}

.LinkBlanco a,
.linkBlanco a{color:#fff;text-decoration:none}
.LinkBlanco a:hover,
.LinkBlanco a:focus,
.LinkBlanco a:active,
.linkBlanco a:hover,
.linkBlanco a:focus,
.linkBlanco a:active{text-decoration:none}

.LinkNegro a,
.linkNegro a{color:#000;text-decoration:none}
.LinkNegro a:hover,
.LinkNegro a:focus,
.LinkNegro a:active,
.linkNegro a:hover,
.linkNegro a:focus,
.linkNegro a:active{text-decoration:none}

.LinkColor a{color:var(--link);text-decoration:none}
.LinkColor a:hover,
.LinkColor a:focus,
.LinkColor a:active{text-decoration:none}

.Nu a,
.nu a{text-decoration:none}
.Nu a:hover,
.Nu a:focus,
.Nu a:active,
.nu a:hover,
.nu a:focus,
.nu a:active{text-decoration:none}


.sidebar li{
  font-size:14px !important;
  font-weight:600 !important;
}



.hr-1 {
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: solid 5px;
}
.hr-2 {
  margin-top: 40px;
  margin-bottom: 40px;
  border-top: solid 4px;
}
.hr-3 {
  margin-top: 30px;
  margin-bottom: 30px;
  border-top: solid 3px;
}
.hr-4 {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: solid 2px;
}
.hr-5 {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: solid 1px;
}
.hr-6 {
  margin-top: 5px;
  margin-bottom: 5px;
  border-top: solid .5px;
}
.hr-light {
  border-top-color: rgba(255,255,255,.7);
}
.hr-dark {
  border-top-color: rgba(0,0,0,0.3);
}
.hr-dashed {
  border-top-style: dashed;
}
.hr-dotted {
  border-top-style: dotted;
}
hr {
  content: "";
  display: table;
  clear: both;
}
.text-xxs{ font-size: var(--fs-xxs); }
.text-xs{ font-size: var(--fs-xs); }
.text-sm{ font-size: var(--fs-sm); }
.text-md{ font-size: var(--fs-md); }
.text-lg{ font-size: var(--fs-lg); }
.text-xl{ font-size: var(--fs-xl); }
