@font-face{
  font-family:'Inter';
  src:local('Inter'),
      url('assets/branding/Inter/Inter-Variable.woff2') format('woff2');
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'FS Industrie Extended';
  src:local('FS Industrie Extended Light'), local('FS Industrie Ex Light'),
      url('assets/branding/FS%20Industrie%20Extended%20%2814%29/FS%20Industrie%20Ex%20Light.woff2') format('woff2'),
      url('assets/branding/FS%20Industrie%20Extended%20%2814%29/FS%20Industrie%20Ex%20Light.otf') format('opentype');
  font-weight:300;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'FS Industrie Extended';
  src:local('FS Industrie Extended Regular'), local('FS Industrie Ex Regular'),
      url('assets/branding/FS%20Industrie%20Extended%20%2814%29/FS%20Industrie%20Ex%20Regular.woff2') format('woff2'),
      url('assets/branding/FS%20Industrie%20Extended%20%2814%29/FS%20Industrie%20Ex%20Regular.otf') format('opentype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'FS Industrie Extended';
  src:local('FS Industrie Extended Medium'), local('FS Industrie Ex Medium'),
      url('assets/branding/FS%20Industrie%20Extended%20%2814%29/FS%20Industrie%20Ex%20Medium.woff2') format('woff2'),
      url('assets/branding/FS%20Industrie%20Extended%20%2814%29/FS%20Industrie%20Ex%20Medium.otf') format('opentype');
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'FS Industrie Extended';
  src:local('FS Industrie Extended Bold'), local('FS Industrie Ex Bold'),
      url('assets/branding/FS%20Industrie%20Extended%20%2814%29/FS%20Industrie%20Ex%20Bold.woff2') format('woff2'),
      url('assets/branding/FS%20Industrie%20Extended%20%2814%29/FS%20Industrie%20Ex%20Bold.otf') format('opentype');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

:root{
  --brand:#009DDF;
  --brand-dark:#007FBA;
  --brand-soft:#E8F7FD;
  --ink:#26313A;
  --muted:#66727B;
  --faint:#A6B2BA;
  --line:rgba(0,157,223,.26);
  --panel:#F7FBFD;
  --red:#C0392B;
  --green:#14855A;
  --font:'FS Industrie Extended','FS Industrie',Inter,'Helvetica Neue',Arial,sans-serif;
  --brand-font:'FS Industrie Extended','FS Industrie',Inter,'Helvetica Neue',Arial,sans-serif;
}

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

html{scroll-behavior:smooth}
body{
  width:100%;
  overflow-x:hidden;
  background:#fff;
  color:var(--ink);
  font-family:var(--font);
  font-size:16px;
  line-height:1.72;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{color:inherit}
button,input{font:inherit}
button{cursor:pointer}

/* Header */
nav{
  position:sticky;
  top:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:96px;
  padding:0 clamp(42px,8vw,118px);
  background:#fff;
}
.logo{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
.logo img{
  display:block;
  width:190px;
  height:auto;
}
nav .logo{order:2}
.nav-links{
  order:1;
  display:flex;
  align-items:center;
  gap:clamp(28px,4vw,54px);
}
.nav-links a,
.btn-nav{
  color:var(--brand);
  font-size:14px;
  font-weight:400;
  line-height:1;
  letter-spacing:.01em;
  text-decoration:none;
  text-transform:uppercase;
  transition:color .18s ease;
}
.nav-links a:hover,
.btn-nav:hover{color:var(--brand-dark)}
.btn-nav{
  padding:0;
  background:transparent;
  border:0;
}

/* Shared typography */
p{
  max-width:760px;
  margin-bottom:18px;
  color:var(--muted);
  font-weight:400;
  line-height:1.78;
}
p:last-child{margin-bottom:0}
strong{color:var(--ink);font-weight:700}
h1,h2{
  color:var(--brand);
  font-family:var(--brand-font);
  font-weight:400;
  letter-spacing:0;
}
h1{
  max-width:880px;
  margin-bottom:36px;
  font-size:clamp(50px,5.1vw,76px);
  line-height:1.18;
}
h1 em{
  color:var(--brand);
  font-style:normal;
}
h2{
  max-width:920px;
  margin-bottom:34px;
  font-size:clamp(42px,4.25vw,66px);
  line-height:1.15;
}
h3{
  color:var(--ink);
  font-family:var(--brand-font);
  font-size:20px;
  font-weight:700;
  line-height:1.3;
}
.ey{
  display:block;
  margin-bottom:28px;
  color:var(--brand);
  font-family:var(--brand-font);
  font-size:11px;
  font-weight:400;
  line-height:1;
  letter-spacing:.22em;
  text-transform:uppercase;
}
.ey::before{display:none}
hr.dv{
  display:block;
  height:1px;
  margin:0 clamp(42px,8vw,118px);
  border:0;
  background:var(--line);
}

/* Buttons */
.btn-p,
.btn-g,
.bsub,
.rb button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:16px 30px;
  border-radius:0;
  font-size:14px;
  font-weight:700;
  line-height:1.2;
  text-decoration:none;
  transition:background .18s ease,color .18s ease,border-color .18s ease;
}
.btn-p,
.bsub{
  background:var(--brand);
  color:#fff;
  border:1px solid var(--brand);
}
.btn-p:hover,
.bsub:hover{background:var(--brand-dark);border-color:var(--brand-dark)}
.btn-g{
  background:#fff;
  color:var(--brand);
  border:1px solid var(--brand);
}
.btn-g:hover{color:#fff;background:var(--brand)}
.rb button{
  background:var(--brand-dark);
  color:#fff;
  border:1px solid rgba(255,255,255,.32);
}
.rb button:hover{
  background:#fff;
  color:var(--brand);
  border-color:#fff;
}

/* Hero */
.hero{
  padding:34px clamp(42px,8vw,118px) 86px;
  background:#fff;
}
.hero-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(420px,520px);
  gap:clamp(52px,7vw,104px);
  align-items:center;
  width:100%;
  max-width:1210px;
  margin:0 auto;
}
.hero-inner>div:first-child{
  min-width:0;
  width:auto;
  margin-left:0;
}
.etag{display:none}
.hero-sub{
  max-width:740px;
  margin-bottom:34px;
  color:#4B5963;
  font-size:21px;
  line-height:1.72;
}
.btns{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-bottom:46px;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  width:min(780px,100%);
  gap:0;
  margin-bottom:0;
}
.stat{
  padding-right:30px;
}
.stat+.stat{
  padding-left:30px;
  border-left:1px solid var(--line);
}
.stat-n{
  color:var(--brand);
  font-family:var(--brand-font);
  font-size:31px;
  font-weight:300;
  line-height:1.05;
}
.stat-l{
  max-width:160px;
  margin-top:10px;
  color:#6F7A82;
  font-size:13px;
  line-height:1.35;
}
.hcard{
  position:relative;
  overflow:hidden;
  width:100%;
  min-width:0;
  padding:46px 42px 44px;
  background:var(--brand);
  color:#fff;
}
.hcard-tag,
.hrow,
.hresult{
  position:relative;
  z-index:1;
}
.hcard-tag{
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.34);
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:20px 0;
  border-bottom:1px solid rgba(255,255,255,.26);
}
.hrow-l{color:rgba(255,255,255,.82);font-size:15px}
.hrow-v{color:#fff;font-size:20px;font-weight:700;white-space:nowrap}
.hrow-v.hi,
.hrow-v.lo{color:#fff}
.hresult{
  margin-top:30px;
  padding:30px;
  background:#fff;
  text-align:center;
}
.hresult-l,
.hresult-s{color:#6C7780;font-size:13px}
.hresult-v{
  margin:8px 0;
  color:var(--brand);
  font-family:var(--brand-font);
  font-size:42px;
  font-weight:700;
  line-height:1;
}

/* Layout */
.wrap{
  width:100%;
  padding:112px clamp(42px,8vw,118px);
}
.wrap>p{
  margin-bottom:42px;
  font-size:18px;
}
.lead{
  max-width:760px;
  color:#2C363E;
  font-size:21px;
  line-height:1.65;
}
.two{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(380px,.76fr);
  gap:clamp(54px,7vw,104px);
  align-items:start;
}
.bq{
  margin-bottom:28px;
  padding:0 0 0 30px;
  border-left:3px solid var(--brand);
  color:#33404A;
  font-size:18px;
  font-style:italic;
  line-height:1.75;
}
.bq cite{
  display:block;
  margin-top:14px;
  color:#84919A;
  font-size:13px;
  font-style:normal;
  font-weight:700;
}

/* Image bands */
.bp{
  position:relative;
  height:470px;
  min-height:320px;
  overflow:hidden;
  background-position:center;
  background-size:cover;
}
.bp::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,157,223,.82);
}
.bp-txt{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:center;
  padding-left:clamp(42px,11vw,166px);
}
.bp-txt p{
  max-width:860px;
  margin:0;
  color:#fff;
  font-size:clamp(42px,5.1vw,76px);
  font-weight:400;
  line-height:1.08;
}
.bp-txt em{font-style:normal;color:#fff}

/* Section rhythm */
.hero{
  border-bottom:1px solid rgba(0,157,223,.18);
}
#problema,
#soluciones,
#calculadora,
.glossary-section,
#por-que{
  position:relative;
}
#problema .wrap,
#soluciones .wrap,
#calculadora .wrap,
.glossary-section .wrap,
#por-que .wrap,
hr.dv + div > .wrap{
  padding-top:132px;
  padding-bottom:132px;
}
#soluciones,
#calculadora,
.glossary-section{
  background:#F7FBFD;
}
#problema::after,
#soluciones::after,
#calculadora::after,
.glossary-section::after,
#por-que::after{
  content:'';
  position:absolute;
  right:clamp(42px,8vw,118px);
  bottom:0;
  left:clamp(42px,8vw,118px);
  height:1px;
  background:rgba(0,157,223,.18);
}

/* Cards and grids */
.bgAlt{background:transparent}
.og,
.tg,
.trust{
  display:grid;
  gap:0;
  margin-top:42px;
  border-top:1px solid var(--line);
}
.og{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  min-width:0;
  border-top:0;
}
.tg{grid-template-columns:repeat(4,minmax(0,1fr))}
.trust{grid-template-columns:repeat(4,minmax(0,1fr))}
.oc{
  min-width:0;
  padding:38px 34px 38px 0;
  border-right:1px solid var(--line);
  background:#fff;
}
.oc+.oc{padding-left:34px}
.tc,
.ti{
  min-width:0;
  padding:38px 34px;
  border-right:1px solid var(--line);
  background:#fff;
}
.og .oc{
  display:flex;
  flex-direction:column;
  max-width:100%;
  overflow:hidden;
  padding:42px;
  border:1px solid rgba(0,157,223,.18);
}
.og .oc+.oc{padding-left:42px}
.og .oc.ft{
  position:relative;
  border-color:var(--brand);
  background:#fff;
}
.oc:last-child,
.tc:last-child,
.ti:last-child{border-right:0}
.og .oc:last-child{border-right:1px solid rgba(0,157,223,.18)}
.og .oc.ft:last-child{border-right:1px solid var(--brand)}
.obadge{
  margin-bottom:18px;
  color:var(--brand);
  font-family:var(--brand-font);
  font-size:12px;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.oc h3,
.tc h3,
.ti h3{margin-bottom:12px}
.oprice{
  margin:20px 0 6px;
  color:var(--brand);
  font-family:var(--brand-font);
  font-size:38px;
  font-weight:300;
  line-height:1;
}
.og .oc.ft .oprice{
  font-weight:700;
}
.oprice-s{
  color:#7B8790;
  font-size:14px;
  line-height:1.5;
}
.ol{
  margin-top:22px;
  list-style:none;
}
.ol li{
  position:relative;
  display:block;
  padding:13px 0;
  padding-left:26px;
  border-bottom:1px solid rgba(0,157,223,.12);
  color:#5A666F;
  font-size:15px;
  line-height:1.55;
  overflow-wrap:anywhere;
}
.ol li:last-child{border-bottom:0}
.ck{
  position:absolute;
  top:13px;
  left:0;
  color:var(--brand);
  font-weight:700;
}
.ic{
  display:block;
  width:34px;
  height:34px;
  margin-bottom:20px;
  fill:none;
  stroke:var(--brand);
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.tc p,
.ti p{
  color:#66727B;
  font-size:15px;
  line-height:1.7;
}
.tg+.bq{margin-top:44px}

/* Investment quick presets */
.inv-quick{display:flex;gap:7px;margin-bottom:10px}
.inv-btn{
  flex:1;min-height:36px;padding:7px 10px;
  border:1px solid var(--line);background:#fff;
  color:var(--brand);font-size:13px;font-weight:700;
}
.inv-btn.on,.inv-btn:hover{background:var(--brand);border-color:var(--brand);color:#fff}

/* Result blocks */
#res-blocks{margin-bottom:22px;border:1px solid var(--line)}
.res-block{border-top:1px solid var(--line)}
.res-block:first-child{border-top:0}
.res-head{
  display:flex;align-items:center;gap:14px;
  padding:13px 18px;
  background:var(--panel);border-bottom:1px solid var(--line);
}
.res-block.featured .res-head{background:var(--brand-soft)}
.res-ic{
  width:26px;height:26px;fill:none;stroke:var(--brand);
  stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;
}
.res-tag{font-size:10px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--brand);line-height:1}
.res-name{margin-top:3px;font-size:14px;font-weight:700;color:var(--ink);line-height:1.2}
.res-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr))}
.res-metric{padding:15px 16px;border-right:1px solid var(--line)}
.res-metric:last-child{border-right:0}
.rm-lbl{margin-bottom:7px;font-size:10px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);line-height:1}
.rm-val{display:flex;align-items:center;gap:5px;font-size:17px;font-weight:700;line-height:1.1;flex-wrap:wrap}
.rm-val.rm-cost{color:#C4400A}
.rm-val.rm-save,.rm-val.rm-check{color:var(--green)}
.rm-val.rm-neu{color:var(--muted)}
.rm-dir{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:18px;height:18px;padding:0 3px;
  font-size:10px;font-weight:900;flex-shrink:0;
}
.rd-cost{background:rgba(196,64,10,.12);color:#C4400A}
.rd-save,.rd-check{background:rgba(20,133,90,.12);color:var(--green)}
.rd-neu{background:rgba(166,178,186,.15);color:var(--faint)}
.rm-sub{margin-top:5px;font-size:11px;color:var(--faint);line-height:1.35}

/* Calculator */
#calculadora{
  background:#fff;
}
#calculadora .wrap>p{max-width:760px}
.cl{
  display:grid;
  grid-template-columns:minmax(330px,400px) minmax(0,1fr);
  gap:46px;
  align-items:start;
  padding-top:42px;
  border-top:1px solid var(--line);
}
.cf,
.cl>div:last-child{
  border:1px solid var(--line);
  background:#fff;
}
.cf{
  position:sticky;
  top:116px;
  padding:30px;
}
.cl>div:last-child{padding:30px}
.cb{margin-bottom:24px}
.cb:last-child{margin-bottom:0}
.clbl,
.mclbl{
  display:block;
  margin-bottom:10px;
  color:#7E8B94;
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.seg{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.seg button{
  flex:1;
  min-width:54px;
  min-height:40px;
  padding:9px 10px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--brand);
  font-size:13px;
  font-weight:700;
}
.seg button.on,
.seg button:hover{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
}
#s-task{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
#s-task button{
  white-space:normal;
  line-height:1.25;
}
.rw{
  display:flex;
  align-items:center;
  gap:14px;
}
input[type=range]{
  flex:1;
  accent-color:var(--brand);
}
.rv{
  min-width:112px;
  color:var(--brand);
  font-size:14px;
  font-weight:700;
  text-align:right;
}
.cdv{
  border:0;
  border-top:1px solid rgba(0,157,223,.16);
  margin:22px 0;
}
.m3,
.m4{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.m3{margin-bottom:12px}
.m4{margin-bottom:22px}
.mc{
  min-width:0;
  padding:18px;
  border:1px solid rgba(0,157,223,.18);
  background:#fff;
}
.mc.sep{border-color:var(--brand)}
.mcval{
  color:var(--brand);
  font-size:22px;
  font-weight:700;
  line-height:1.1;
}
.mcval.red{color:var(--red)}
.mcval.grn{color:var(--green)}
.mcsub{
  margin-top:7px;
  color:#8B98A1;
  font-size:12px;
  line-height:1.35;
}
.semb{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:44px;
  margin-bottom:16px;
  padding:10px 16px;
  font-size:13px;
  font-weight:700;
}
.semb::before{
  font-size:15px;
  line-height:1;
  font-style:normal;
  margin-right:2px;
}
.semb.grn{background:#E5F4F1;color:#0A6E5A}
.semb.grn::before{content:'✓'}
.semb.ylw{background:#FEF9E6;color:#7A5500}
.semb.ylw::before{content:'⚠'}
.semb.red{background:#FEF0E8;color:#A83200}
.semb.red::before{content:'!'}
.leg{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-bottom:16px;
}
.leg span{
  display:flex;
  align-items:center;
  gap:8px;
  color:#6E7A83;
  font-size:12px;
  font-weight:700;
}
.ld-svg{width:34px;height:14px;flex-shrink:0;overflow:visible}
.cb-chart{
  position:relative;
  height:310px;
  margin-bottom:18px;
  padding:16px;
  border:1px solid rgba(0,157,223,.18);
}
.rb{
  padding:24px;
  background:var(--brand);
}
.rb p{
  max-width:none;
  color:rgba(255,255,255,.9);
  font-size:15px;
}
.rb p strong{color:#fff}
.rb button{width:100%;margin-top:2px}

/* Final blocks */
.glossary-section{
  border-top:1px solid var(--line);
}
.glossary-section .wrap>p{margin-bottom:42px}
.glossary-section .tg{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.glossary-section .tc:nth-child(3n){
  border-right:0;
}
.glossary-section .tc:nth-child(n+4){
  border-top:1px solid var(--line);
}
.fcta{
  position:relative;
  overflow:hidden;
  padding:98px clamp(42px,8vw,118px);
  background:var(--brand);
  text-align:center;
}
.fcta>*{
  position:relative;
  z-index:1;
  margin-left:auto;
  margin-right:auto;
}
.fcta .ey{
  justify-content:center;
  color:#fff;
}
.fcta h2{
  color:#fff;
}
.fcta .btn-p{
  background:var(--brand-dark);
  border-color:var(--brand-dark);
}
.fcta .btn-p:hover{
  background:#fff;
  color:var(--brand);
  border-color:#fff;
}
.fcta p,
.fcta small{
  color:rgba(255,255,255,.84);
}
.fcta small{
  display:block;
  margin-top:18px;
  font-size:13px;
}
.fcta small a{color:#fff}
footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  padding:38px clamp(42px,8vw,118px);
  background:#fff;
  border-top:1px solid var(--line);
}
footer .logo img{width:170px}
footer span,
footer a{
  color:var(--brand);
  font-size:13px;
  text-decoration:none;
}
.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

/* Forms / popup */
.overlay{
  display:none;
  position:fixed;
  inset:0;
  z-index:200;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(38,49,58,.58);
}
.overlay.on{display:flex}
.popup{
  position:relative;
  width:100%;
  max-width:440px;
  padding:38px 34px;
  background:#fff;
  border:1px solid var(--line);
}
.popup .logo{
  display:block;
  margin-bottom:24px;
}
.popup .logo img{width:146px}
.popup h3{
  margin-bottom:10px;
  color:var(--brand);
  font-size:28px;
  font-weight:400;
}
.psub{
  margin-bottom:26px;
  font-size:15px;
}
.px{
  position:absolute;
  top:14px;
  right:16px;
  background:transparent;
  border:0;
  color:#9AA6AE;
  font-size:20px;
}
.fr{margin-bottom:14px}
.fr label{
  display:block;
  margin-bottom:6px;
  color:#7E8B94;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.label-note{
  font-weight:400;
  letter-spacing:0;
  text-transform:none;
}
.fr input{
  width:100%;
  min-height:46px;
  padding:12px 13px;
  border:1px solid rgba(0,157,223,.28);
  color:var(--ink);
  outline:none;
}
.fr input:focus{border-color:var(--brand)}
.fnote{
  margin-top:14px;
  color:#8B98A1;
  font-size:12px;
  text-align:center;
}

/* Motion */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:none}
}
nav{animation:fadeUp .35s cubic-bezier(.25,.46,.45,.94) both}

/* Hero entrance */
.hero h1{opacity:0;animation:fadeUp .7s cubic-bezier(.25,.46,.45,.94) .14s both}
.hero .hero-sub{opacity:0;animation:fadeUp .6s cubic-bezier(.25,.46,.45,.94) .28s both}
.hero .btns{opacity:0;animation:fadeUp .55s ease .42s both}
.hero .hero-stats{opacity:0;animation:fadeUp .5s ease .56s both}
.hcard{opacity:0;animation:fadeUp .7s cubic-bezier(.25,.46,.45,.94) .24s both}
.hcard>*{opacity:0;animation:fadeUp .38s ease both}
.hcard>*:nth-child(1){animation-delay:.54s}
.hcard>*:nth-child(2){animation-delay:.66s}
.hcard>*:nth-child(3){animation-delay:.78s}
.hcard>*:nth-child(4){animation-delay:.9s}
.hcard>*:nth-child(5){animation-delay:1.02s}

/* Scroll animations */
.anim,
.anim-o{opacity:0;transform:translateY(22px);transition:opacity .65s cubic-bezier(.25,.46,.45,.94),transform .65s cubic-bezier(.25,.46,.45,.94)}
.anim.vis,
.anim-o.vis{opacity:1;transform:none}

/* Nav link underline */
.nav-links a{position:relative}
.nav-links a::after{
  content:'';position:absolute;bottom:-3px;left:0;
  width:100%;height:1px;background:currentColor;
  transform:scaleX(0);transform-origin:left;
  transition:transform .28s cubic-bezier(.25,.46,.45,.94);
}
.nav-links a:hover::after{transform:scaleX(1)}

/* Button lift */
.btn-p,.btn-g,.bsub{transition:background .18s ease,color .18s ease,border-color .18s ease,transform .2s cubic-bezier(.25,.46,.45,.94)}
.btn-p:hover,.btn-g:hover,.bsub:hover{transform:translateY(-2px)}

/* Responsive */
@media(max-width:1100px){
  nav{
    height:78px;
    padding:0 20px;
  }
  nav .logo{order:1}
  nav .logo img{width:150px}
  .nav-links{display:none}
  .hero-inner>div:first-child{
    width:100%;
    margin:0;
    padding:0;
  }
  h1{
    max-width:760px;
    font-size:clamp(38px,7vw,58px);
  }
  .hero{
    padding:34px 20px 72px;
  }
  .hero-inner{
    grid-template-columns:1fr;
    gap:42px;
  }
  .hcard{
    display:block;
    max-width:640px;
  }
  .two,
  .og,
  .cl{
    grid-template-columns:1fr;
    gap:34px;
  }
  .tg,
  .trust{
    grid-template-columns:1fr 1fr;
  }
  .glossary-section .tg{
    grid-template-columns:1fr 1fr;
  }
  .glossary-section .tc:nth-child(3n){
    border-right:1px solid var(--line);
  }
  .glossary-section .tc:nth-child(2n){
    border-right:0;
  }
  .oc,
  .oc+.oc,
  .tc,
  .ti{
    padding:30px 0;
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .og{
    gap:22px;
  }
  .og .oc,
  .og .oc+.oc,
  .og .oc:last-child{
    padding:32px 24px;
    border:1px solid rgba(0,157,223,.18);
  }
  .og .oc.ft{
    border-color:var(--brand);
  }
  .cf{position:relative;top:auto}
  .wrap{padding:76px 20px}
  hr.dv{margin:0 20px}
  #problema .wrap,
  #soluciones .wrap,
  #calculadora .wrap,
  .glossary-section .wrap,
  #por-que .wrap,
  hr.dv + div > .wrap{
    padding-top:92px;
    padding-bottom:92px;
  }
  #problema::after,
  #soluciones::after,
  #calculadora::after,
  .glossary-section::after,
  #por-que::after{
    right:20px;
    left:20px;
  }
  .bp{height:340px}
  .bp-txt{padding:0 20px}
  footer{padding:30px 20px}
}

@media(max-width:640px){
  body{
    font-size:15px;
  }
  h1{
    max-width:100%;
    font-size:30px;
    line-height:1.22;
    overflow-wrap:break-word;
  }
  h2{
    max-width:100%;
    font-size:29px;
    line-height:1.22;
    overflow-wrap:break-word;
  }
  .hero-sub{
    max-width:100%;
    font-size:16px;
    line-height:1.7;
  }
  .hcard{
    padding:36px 22px 34px;
  }
  .hcard-tag{
    font-size:11px;
    letter-spacing:.05em;
    overflow-wrap:anywhere;
  }
  .hrow{
    display:block;
    gap:14px;
  }
  .hrow-l{
    min-width:0;
    font-size:14px;
  }
  .hrow-v{
    display:block;
    margin-top:4px;
    font-size:18px;
    white-space:normal;
  }
  .hresult{
    padding:26px 16px;
  }
  .hresult-v{
    font-size:38px;
  }
  p{
    max-width:100%;
    overflow-wrap:break-word;
  }
  .btns,
  .btn-p,
  .btn-g{
    width:100%;
  }
  .hero-stats{display:none}
  .tg,
  .trust,
  .glossary-section .tg,
  .m3,
  .m4{
    grid-template-columns:1fr;
  }
  .glossary-section .tc,
  .glossary-section .tc:nth-child(2n),
  .glossary-section .tc:nth-child(3n){
    border-right:0;
  }
  .rw{
    flex-direction:column;
    align-items:stretch;
  }
  .rv{
    min-width:0;
    text-align:left;
  }
  .res-metrics{grid-template-columns:1fr}
  .res-metric{border-right:0;border-bottom:1px solid var(--line)}
  .res-metric:last-child{border-bottom:0}
  .cl>div:last-child,
  .cf{padding:20px}
  .cb-chart{height:250px;padding:10px}
  #problema .wrap,
  #soluciones .wrap,
  #calculadora .wrap,
  .glossary-section .wrap,
  #por-que .wrap,
  hr.dv + div > .wrap{
    padding-top:76px;
    padding-bottom:76px;
  }
  .bp{height:280px}
  .bp-txt p{font-size:34px}
  .fcta{padding:70px 20px}
  footer{
    flex-direction:column;
    align-items:flex-start;
  }
}
