@font-face {
  font-family: Montserrat;
  src: url('../assets/fonts/montserrat-variable.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #222324;
  --deep: #17191a;
  --text: #fff;
  --muted: #d5d5d7;
  --cyan: #09d0da;
  --purple: #8d8ff0;
  --container: 1230px;
  --shadow: 0 22px 65px rgba(0,0,0,.42);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat,Arial,sans-serif;
  line-height: 1.42;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
.container {
  width: min(calc(100% - 48px),var(--container));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.center {
  text-align: center;
}
.narrow {
  max-width: 970px;
}
h1,h2,h3,p {
  margin-top: 0;
}
h1 {
  font-size: clamp(3rem,4.5vw,4.55rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
h2 {
  font-size: clamp(2.15rem,3.2vw,3.25rem);
  line-height: 1.09;
  letter-spacing: -.032em;
}
h3 {
  line-height: 1.2;
}
h1 span,h2 span {
  color: var(--cyan);
}
p {
  color: var(--muted);
}
.eyebrow {
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg,#718def,#07d8ca);
  color: #fff;
  text-decoration: none;
  font: 700 .9rem Montserrat;
  box-shadow: 0 0 17px rgba(8,207,217,.5);
  cursor: pointer;
  transition: filter .2s,transform .2s;
}
.button:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}
.button-small {
  min-height: 50px;
  padding: 10px 58px;
}
.outline-button.js-demo,
.button.js-demo:not(.button-small) {
  font-size: 18px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -80px;
  background: #fff;
  color: #111;
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  padding: 0!important;
  margin: -1px!important;
  overflow: hidden!important;
  clip: rect(0,0,0,0)!important;
  white-space: nowrap!important;
  border: 0!important;
}
:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.texture {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.site-header {
  height: 96px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: radial-gradient(circle at 8% 115%,rgba(0,170,120,.58),transparent 34%),rgba(20,22,23,.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.nav-wrap {
  height: 100%;
  width: min(calc(100% - 48px),1290px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 218px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 70px;
}
.main-nav a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 550;
}
.main-nav a:not(.button):hover {
  color: var(--cyan);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 10px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px;
}
.hero {
  height: auto;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 8% 35%,rgba(0,226,170,.34),transparent 30%),radial-gradient(circle at 91% 42%,rgba(0,211,229,.35),transparent 32%),#171c23;
  border-radius: 0 0 48px 48px;
  min-height: 720px;
  padding: 0;
}
@media (min-width:1025px) {
  .hero {
    min-height: 756px;
  }
}
.hero-texture,.hero-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero-glow {
  content: url('../assets/images/degradado-hero-recortado.png');
  mix-blend-mode: screen;
  opacity: 1;
  filter: saturate(1.2) brightness(1.08);
  transform: scaleX(1.32);
  transform-origin: center;
}
.hero-grid {
  height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 4;
  width: min(calc(100% - 48px),1290px);
}
.hero-copy {
  padding: 0;
  transform: translateY(36px);
}
.hero-copy>* {
  animation: hero-copy-enter .72s cubic-bezier(.22,.7,.25,1) backwards;
}
.hero-copy>:nth-child(1) {
  animation-delay: .08s;
}
.hero-copy>:nth-child(2) {
  animation-delay: .17s;
}
.hero-copy>:nth-child(3) {
  animation-delay: .28s;
}
.hero-copy>:nth-child(4) {
  animation-delay: .39s;
}
.hero-eyebrow {
  font-size: .88rem;
  font-weight: 650;
  color: #f7fafa;
  margin-bottom: 34px;
}
.hero h1 {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: 3.2rem;
  line-height: 1.12;
  letter-spacing: -.045em;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg,#8587f1 0%,#3aa4ef 48%,#00d3cf 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero .lead {
  font-size: 1.22rem;
  line-height: 1.38;
  max-width: 500px;
  margin-bottom: 0;
}
.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 999px;
  padding: 8px 9px 8px 32px;
  margin-top: 28px;
  text-decoration: none;
  font-weight: 550;
  font-size: 1.25rem;
}
.outline-button img {
  width: 48px;
  height: 48px;
}
.hero-image {
  width: 760px;
  max-width: none;
  align-self: end;
  margin-left: -70px;
}
.featured {
  width: 760px;
  height: 170px;
  position: relative;
  left: 8px;
  z-index: 3;
  margin: -46px auto 0;
  display: grid;
  grid-template-columns: 35px 1fr 35px;
  grid-template-rows: 54px 96px;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  animation: hero-featured-enter .78s cubic-bezier(.22,.7,.25,1) .62s backwards;
}
.featured:before {
  display: none;
}
.featured h2 {
  grid-column: 1/-1;
  grid-row: 1;
  text-align: center;
  font-size: 1.55rem;
  margin: 0;
  position: relative;
  transform: translate(-56px,-6px);
}
.featured h2 span {
  display: inline;
}
.slides {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  height: 96px;
  position: relative;
  overflow: hidden;
  background: rgba(31,32,49,.94);
  border-radius: 24px;
}
.slide {
  display: grid;
  place-content: center;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.15);
  opacity: .52;
  transition: opacity .3s,background .3s;
}
.slide.active {
  opacity: 1;
  background: rgba(144,145,242,.1);
}
.slide strong,.slide span {
  display: block;
}
.slide strong {
  font-size: 1.15rem;
}
.slide span {
  font-size: 1rem;
  color: #ddd;
}
@media (min-width:1100px) {
  .slide:nth-child(3) strong,
  .slide:nth-child(3) span {
    position: relative;
    left: -48px;
  }
}
.slider-arrow {
  border: 0;
  background: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}
.slider-arrow.prev {
  grid-column: 1;
  grid-row: 2;
}
.slider-arrow.next {
  grid-column: 3;
  grid-row: 2;
}
.slider-arrow img {
  width: 13px;
  max-width: none;
}
.dots {
  display: none;
}
.problem {
  min-height: 1200px;
  background: #242526;
  padding: 131px 0 120px;
}
.texture-right {
  right: -5%;
  top: 0;
  width: 43%;
  opacity: .54;
}
.problem .narrow {
  position: relative;
  z-index: 2;
}
.problem h2 {
  white-space: nowrap;
}
.problem .narrow>p {
  max-width: 870px;
  margin: 58px auto 84px;
}
.subheading {
  font-size: 20px;
  margin: 30px 0;
}
.problem-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 26px;
  max-width: 1000px;
}
.problem-card {
  position: relative;
  grid-column: span 2;
  min-height: 270px;
  padding: 0;
  text-align: center;
  border-radius: 26px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,.3));
  background-position: center;
  cursor: pointer;
  perspective: 950px;
  transition: filter .25s ease;
  --card-back: #24212a;
}
.problem-card:hover,.problem-card:focus-visible {
  filter: drop-shadow(0 22px 32px rgba(0,0,0,.42));
  outline: none;
}
.problem-card:focus-visible {
  box-shadow: 0 0 0 3px #12cbd7,0 0 0 7px rgba(18,203,215,.22);
}
.problem-card-inner {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform .72s cubic-bezier(.2,.75,.25,1);
  will-change: transform;
}
.problem-card:hover .problem-card-inner,.problem-card:focus-visible .problem-card-inner {
  transform: rotateY(180deg);
}
.problem-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 28px 28px;
  border-radius: inherit;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.problem-card-back {
  background: var(--card-back);
  transform: rotateY(180deg);
}
.problem-card-demo {
  min-width: 150px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  font-weight: 750;
  line-height: 1;
  background: linear-gradient(90deg,#6788f2,#08d8c5);
  box-shadow: 0 8px 22px rgba(0,216,197,.32);
  pointer-events: none;
}
.problem-card:nth-child(4) {
  grid-column: 2/span 2;
}
.problem-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}
.problem-card h3 {
  font-size: 1rem;
  margin: 14px 0;
}
.problem-card p {
  font-size: 14px;
  margin: 0;
}
.problem-card.purple {
  background-image: none;
}
.problem-card:nth-child(1) {
  --card-back: #25162c;
  border-radius: 28px 28px 118px 28px;
  background:
    radial-gradient(circle at 84% 92%, #08d7e8 0, #0091a9 34%, transparent 61%),
    linear-gradient(135deg, #29152e 0%, #24152d 48%, #063d4d 100%);
}
.problem-card.gray {
  --card-back: #505152;
  background: #505152;
  border: 1px solid #5e5f60;
  border-radius: 28px 28px 118px 118px;
}
.problem-card:nth-child(3) {
  --card-back: #25162c;
  border-radius: 28px 28px 28px 118px;
  background:
    radial-gradient(circle at 18% 90%, #08d7e8 0, #008ca4 35%, transparent 62%),
    linear-gradient(225deg, #29152e 0%, #24152d 50%, #063d4d 100%);
}
.problem-card.black {
  --card-back: #505152;
  background-image: none;
  background-color: #505152;
  border: 1px solid #5e5f60;
  border-radius: 118px 118px 28px 28px;
}
.problem-card.gradient {
  --card-back: #073e4b;
  background-image: none;
  border-radius: 118px 28px 28px 28px;
  background:
    radial-gradient(circle at 7% 8%, #10d9e5 0, #0798b4 30%, transparent 58%),
    radial-gradient(circle at 92% 95%, #00d2a0 0, #00786f 30%, transparent 57%),
    linear-gradient(145deg, #062a42 0%, #24152e 64%, #20101f 100%);
}
@media (prefers-reduced-motion:reduce) {
  .problem-card-inner { transition: none; }
  .problem-card:hover .problem-card-inner,.problem-card:focus-visible .problem-card-inner { transform: none; }
  .problem-card-back { opacity: 0; transform: none; transition: opacity .15s ease; }
  .problem-card:hover .problem-card-back,.problem-card:focus-visible .problem-card-back { opacity: 1; }
}
.platform {
  min-height: 920px;
  background: #171918;
  border-radius: 55px;
  box-shadow: var(--shadow);
  padding: 95px 0;
}
.platform-left {
  left: -4%;
  bottom: -6%;
  width: 36%;
  opacity: .5;
}
.platform-right {
  right: -10%;
  bottom: -8%;
  width: 40%;
  opacity: .5;
}
.platform-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  min-height: 730px;
}
.phone {
  width: 525px;
  max-height: 760px;
  object-fit: contain;
  transform: rotate(-7deg);
  filter: drop-shadow(0 28px 35px rgba(0,0,0,.48));
  justify-self: center;
}
.platform-copy {
  max-width: 590px;
  transform: translateY(-9px);
}
.platform-copy h2 {
  margin-bottom: 28px;
}
.platform-copy p {
  font-size: 1rem;
}
.platform-copy h3 {
  font-size: 1rem;
  margin-top: 51px;
}
.platform-copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 37px;
}
.platform-copy li {
  margin: 6px 0;
}
.platform-copy li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  margin-right: 9px;
}
.how {
  min-height: 1155px;
  padding: 113px 0 120px;
}
.how-right {
  right: -9%;
  top: 0;
  width: 38%;
  opacity: .55;
}
.how .narrow>p:not(.eyebrow) {
  max-width: 500px;
  margin-inline: auto;
}
.how .eyebrow {
  margin-bottom: 26px;
  font-size: 20px;
}
.how .narrow h2 {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 22px;
}
.how .button {
  position: relative;
  top: 12px;
}
.flow-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  align-items: center;
  gap: 20px;
  margin-top: -22px;
}
.flow-layout .flow {
  align-self: start;
}
.computer {
  width: 760px;
  max-width: 100%;
  filter: drop-shadow(0 22px 26px rgba(0,0,0,.4));
}
.flow h3 {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  box-shadow: 0 8px 13px rgba(0,0,0,.28);
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 15px;
}
.flow h3 img {
  width: auto;
  height: 27px;
  object-fit: contain;
}
.sales h3 img {
  height: 28px;
}
.sales h3 {
  border-color: rgba(255,255,255,.38);
  color: #00dabb;
}
.flow ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}
.flow li {
  counter-increment: steps;
  min-height: 54px;
  display: flex;
  align-items: center;
  position: relative;
  background: #171819;
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 30px;
  padding: 10px 12px 10px 83px;
  font-size: .72rem;
}
.flow li:not(:last-child):after {
  content: '';
  position: absolute;
  left: calc(50% - 11px);
  bottom: -26px;
  width: 22px;
  height: 26px;
  background: #fff;
  clip-path: polygon(43% 0,57% 0,57% 58%,78% 37%,100% 55%,50% 100%,0 55%,22% 37%,43% 58%);
  z-index: 3;
}
.flow li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  width: 71px;
  height: 49px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  background-color: transparent;
  color: #fff;
  font-weight: 750;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 71px 49px;
}
.sales li:before {
  background-color: transparent;
}
.sales p {
  font-size: .68rem;
  background: #171819;
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px;
  text-align: center;
}
.benefits {
  min-height: 995px;
  background: #171918;
  border-radius: 55px;
  padding: 64px 0 100px;
}
.benefit-left {
  left: -7%;
  top: 0;
  width: 36%;
  opacity: .5;
}
.benefits-button {
  position: relative;
  z-index: 5;
  margin: 12px 0 -5px;
  min-width: 255px;
  min-height: 54px;
  padding-inline: 42px;
  font-size: 1.1rem;
}
.benefits .eyebrow {
  margin-bottom: 26px;
  font-size: 20px;
}
.benefit-stage {
  position: relative;
  height: 700px;
  margin-top: -135px;
}
.benefit-stage>img {
  position: absolute;
  width: 720px;
  left: 50%;
  top: 135px;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.35));
}
.benefit-card {
  position: absolute;
  width: 245px;
  min-height: 132px;
  padding: 26px 20px;
  border-radius: 16px;
  background: #8f90ee;
  box-shadow: 0 0 14px rgba(144,145,242,.62);
  display: grid;
  align-content: center;
}
.benefit-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
}
.benefit-card p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}
.control {
  left: 0;
  top: 70px;
}
.productivity {
  right: 0;
  top: 70px;
}
.visibility {
  left: 0;
  top: 365px;
}
.trace {
  right: 0;
  top: 365px;
}
.saving {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 275px;
}
@media (min-width:1600px) {
  .benefits {
    min-height: 1100px;
    padding: 20px 0 70px;
  }
  .benefits .container {
    width: 94%;
    max-width: 1900px;
  }
  .benefits .eyebrow {
    margin-bottom: 22px;
  }
  .benefits h2 {
    font-size: 4rem;
  }
  .benefits-button {
    min-width: 360px;
    min-height: 66px;
    font-size: 1.4rem;
  }
  .benefit-stage {
    height: 905px;
    margin-top: -130px;
  }
  .benefit-stage>img {
    width: 936px;
    top: 145px;
  }
  .benefit-card {
    width: 400px;
    min-height: 202px;
    padding: 34px 30px;
    border-radius: 22px;
  }
  .benefit-card h3 {
    margin-bottom: 22px;
  }
  .control,.productivity {
    top: 72px;
  }
  .visibility,.trace {
    top: 470px;
  }
  .saving {
    width: 400px;
  }
}
.why {
  min-height: 1066px;
  padding: 90px 0 55px;
}
.why:after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -12%;
  top: 0;
  width: 43%;
  height: 100%;
  background: url('../assets/images/textura-circulo.png') center/contain no-repeat;
  opacity: .42;
  transform: scaleX(-1);
  pointer-events: none;
}
.why-left {
  left: -12%;
  top: 0;
  width: 43%;
  opacity: .48;
}
.why .container {
  position: relative;
  z-index: 2;
}
.why .eyebrow {
  margin-bottom: 29px;
  font-size: 20px;
}
.why-grid {
  width: 670px;
  max-width: 100%;
  margin: 165px auto 108px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why-grid article {
  min-height: 225px;
  display: grid;
  place-content: center;
  padding: 25px;
  border: 1px solid #c1c3c7;
}
.why-grid article:nth-child(1) {
  border-radius: 0 90px 0 90px;
  background: linear-gradient(110deg,#8b7ff2 0%,#2ba9f2 48%,#08d4ca 100%);
  border: 0;
}
.why-grid article:nth-child(2) {
  border-radius: 90px 0 90px 0;
}
.why-grid article:nth-child(3) {
  border-radius: 90px 0 90px 0;
}
.why-grid article:nth-child(4) {
  border-radius: 0 90px 0 90px;
  background: linear-gradient(110deg,#8b7ff2 0%,#2ba9f2 48%,#08d4ca 100%);
  border: 0;
}
.why-grid img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin: auto;
}
.why-grid h3 {
  font-size: 1rem;
  max-width: 190px;
  margin: 12px auto 0;
}
@media (min-width:1600px) {
  .why {
    min-height: 1160px;
    padding: 22px 0 44px;
  }
  .why .container {
    width: 94%;
    max-width: 1900px;
  }
  .why .eyebrow {
    margin-bottom: 20px;
  }
  .why h2 {
    max-width: 880px;
    margin-inline: auto;
    font-size: 3.2rem;
    line-height: 1.16;
  }
  .why-grid {
    width: 712px;
    margin: 100px auto 56px;
    gap: 28px;
  }
  .why-grid article {
    min-height: 270px;
    padding: 30px;
  }
  .why-grid article:nth-child(1),
  .why-grid article:nth-child(4) {
    border-radius: 0 100px 0 100px;
  }
  .why-grid article:nth-child(2),
  .why-grid article:nth-child(3) {
    border-radius: 100px 0 100px 0;
  }
  .why-grid img {
    width: 72px;
    height: 72px;
  }
  .why-grid h3 {
    max-width: 248px;
    margin-top: 20px;
    font-size: 1.44rem;
  }
  .why .button {
    min-width: 280px;
    min-height: 53px;
    font-size: 1.12rem;
  }
}
.companies {
  background: radial-gradient(circle at 100% 60%,rgba(144,145,242,.16),transparent 26%);
  padding: 40px 0 120px;
}
.logo-rows {
  width: 940px;
  max-width: 100%;
  margin: 50px auto 0;
}
.logo-row {
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.logo-row.four {
  grid-template-columns: repeat(4,1fr);
}
.logo-row.five {
  grid-template-columns: repeat(5,1fr);
}
.logo-row:last-child {
  border-bottom: 0;
}
.logo-row img {
  display: block;
  width: 100%;
  height: 82px;
  object-fit: contain;
  padding: 17px 22px;
  border-right: 1px solid rgba(255,255,255,.2);
  transform: none;
}
.logo-row img:last-child {
  border-right: 0;
}
.contact {
  min-height: 900px;
  padding: 165px 0 110px;
}
.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
}
.contact-envelope {
  position: absolute;
  width: 850px;
  left: calc(50% - 570px);
  top: 110px;
  opacity: .58;
}
.contact-panel {
  position: relative;
  z-index: 2;
  max-width: 930px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  transform: none;
}
.contact-copy {
  padding-left: 15px;
}
.contact-copy h2 {
  font-size: 2.35rem;
}
.contact-copy p:last-child {
  max-width: 330px;
  font-size: .86rem;
}
form {
  background: #161819;
  padding: 34px;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(0,0,0,.48);
}
form h3 {
  font-size: .95rem;
}
.field {
  position: relative;
  margin: 10px 0;
}
.field input,.field textarea {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #202223;
  color: #fff;
  padding: 12px 15px;
  font: 500 .76rem Montserrat;
}
.field textarea {
  resize: vertical;
}
.field input:focus,.field textarea:focus {
  outline: 0;
  border-color: var(--cyan);
}
.field [aria-invalid=true] {
  border-color: #ff8296;
}
.field .error {
  display: block;
  min-height: 14px;
  color: #ff9bab;
  font-size: .62rem;
  margin: 2px 5px;
}
.phone-field input {
  padding-left: 132px;
}
.phone-prefix {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 0;
  width: 108px;
  height: 40px;
  appearance: auto;
  background: transparent;
  border: 0;
  border-right: 1px solid #555;
  border-radius: 0;
  padding: 0 8px 0 0;
  font: 500 .68rem Montserrat,Arial,sans-serif;
  color: #ddd;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.phone-prefix:focus {
  outline: 0;
  color: #fff;
}
.phone-prefix option {
  background: #202223;
  color: #fff;
}
.form-status {
  font-size: .7rem;
  margin: 10px 0 0;
}
.form-status:empty {
  display: none;
}
.form-status.success {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid rgba(16,221,190,.5);
  border-radius: 12px;
  color: #fff;
  font-size: .74rem;
  line-height: 1.45;
  background: linear-gradient(120deg,rgba(13,113,105,.72),rgba(8,190,198,.2));
  box-shadow: 0 10px 28px rgba(0,215,190,.18);
  animation: form-success-in .45s ease both;
}
.success-icon {
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #102221;
  font-size: 1rem;
  font-weight: 900;
  background: #19dfbf;
  box-shadow: 0 0 18px rgba(25,223,191,.42);
}
.form-status.error-status {
  padding: 11px 13px;
  border: 1px solid rgba(255,130,150,.45);
  border-radius: 10px;
  color: #ffc0ca;
  background: rgba(117,25,42,.3);
}
form .button:disabled {
  cursor: wait;
  opacity: .72;
}
@keyframes form-success-in {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.form-status a {
  color: var(--cyan);
}
form .button {
  width: 100%;
  min-height: 43px;
}
.final-cta {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 90px 0;
}
.cta-right {
  right: -5%;
  top: 0;
  width: 40%;
  opacity: .58;
}
.final-cta .container {
  position: relative;
  z-index: 2;
  transform: translateY(-74px);
}
.final-cta p {
  font-size: .95rem;
  margin: 28px 0;
}
footer {
  height: 336px;
  position: relative;
  overflow: hidden;
  background: #141719;
}
.footer-bg {
  content: url('../assets/images/degradado-footer-recortado.png');
  position: absolute;
  inset: 0 auto 0 50%;
  width: calc(100% + 110px);
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  filter: none;
}
.footer-grid {
  height: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1.7fr;
  align-items: center;
  gap: 55px;
}
.footer-logo {
  width: 250px;
}
.footer-grid address {
  font-style: normal;
}
.icon-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  font-size: .72rem;
  color: #e5e5e6;
  margin: 10px 0;
}
.icon-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.coverage {
  font-size: .72rem;
  color: #e5e5e6;
  margin: 0 0 0 28px;
}
.social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.social a img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
@media (min-width:1600px) {
  footer {
    width: 100vw;
    height: 540px;
    margin-left: calc(50% - 50vw);
  }
  .footer-grid {
    width: 90%;
    max-width: 1800px;
    grid-template-columns: 1.25fr 1.75fr;
    gap: 100px;
  }
  .footer-logo {
    width: 450px;
  }
  .icon-link {
    gap: 14px;
    margin: 15px 0;
    font-size: 1.25rem;
    line-height: 1.35;
  }
  .icon-link img {
    width: 28px;
    height: 28px;
  }
  .coverage {
    margin-left: 42px;
    font-size: 1.25rem;
  }
  .social {
    gap: 18px;
    margin-top: 28px;
  }
  .social a img {
    width: 36px;
    height: 36px;
  }
}
.hero-visual {
  position: relative;
  height: 580px;
  min-width: 0;
  align-self: end;
  animation: hero-visual-enter .9s cubic-bezier(.22,.7,.25,1) .3s backwards;
}
.hero-composite {
  position: absolute;
  width: 630px;
  max-width: none;
  right: 30px;
  top: 118px;
  z-index: 4;
  filter: drop-shadow(0 20px 26px rgba(0,0,0,.2));
}
@media (min-width:1200px) {
  .hero-composite {
    display: none;
  }
  .hero-visual::before,
  .hero-visual::after {
    content: '';
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
  }
  .hero-visual::before {
    width: 570px;
    height: 456px;
    right: 30px;
    top: 118px;
    z-index: 2;
    background-image: url('../assets/images/monitor-hero@2x.png');
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.2));
  }
  .hero-visual::after {
    width: 390px;
    height: 465px;
    right: -28px;
    bottom: -176px;
    z-index: 4;
    background-image: url('../assets/images/mujer-hero@2x.png');
    filter: drop-shadow(-7px 15px 20px rgba(0,0,0,.18));
  }
}
@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hero-visual-enter {
  from {
    opacity: 0;
    transform: translateX(28px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes hero-featured-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.purchases li:nth-child(1):before {
  background-image: url('../assets/icons/paso-1.png');
}
.purchases li:nth-child(2):before {
  background-image: url('../assets/icons/paso-2.png');
}
.purchases li:nth-child(3):before {
  background-image: url('../assets/icons/paso-3.png?v=2');
}
.purchases li:nth-child(4):before {
  background-image: url('../assets/icons/paso-4.png');
}
.purchases li:nth-child(5):before {
  background-image: url('../assets/icons/paso-5.png');
}
.purchases li:nth-child(6):before {
  background-image: url('../assets/icons/paso-6.png');
}
.sales li:nth-child(1):before {
  background-image: url('../assets/icons/paso-verde-1.png');
}
.sales li:nth-child(2):before {
  background-image: url('../assets/icons/paso-verde-2.png');
}
.sales li:nth-child(3):before {
  background-image: url('../assets/icons/paso-verde-3.png');
}
.sales li:nth-child(4):before {
  background-image: url('../assets/icons/paso-verde-4.png');
}
.control,.productivity {
  top: 62px;
}
.visibility,.trace {
  top: 300px;
}

@media(max-width:1024px) {
  .main-nav {
    gap: 28px;
  }
  .hero {
    height: auto;
    min-height: 920px;
  }
  .hero-grid {
    height: 680px;
  }
  .hero-composite {
    width: 540px;
    right: 0;
    top: 118px;
  }
  .hero-image {
    width: 600px;
    margin-left: -45px;
  }
  .featured {
    height: 190px;
  }
  .problem {
    min-height: 1100px;
  }
  .flow-layout {
    grid-template-columns: 220px 1fr 220px;
  }
  .benefit-card {
    width: 210px;
  }
  .logo-rows {
    width: 800px;
  }
}

@media(max-width:820px) {
  .section {
    padding: 86px 0;
  }
  .problem h2 {
    white-space: normal;
  }
  .site-header {
    height: 82px;
  }
  .main-nav {
    position: fixed;
    inset: 82px 18px auto;
    background: #151718;
    border: 1px solid #444;
    border-radius: 20px;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    border-radius: 0 0 34px 34px;
  }
  .hero-grid {
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 65px;
  }
  .hero-copy {
    width: 100%;
    padding: 0;
    transform: none;
  }
  .hero-image {
    width: 700px;
    max-width: 115%;
    margin: -20px auto -20px;
    display: none;
  }
  .featured {
    width: min(calc(100% - 48px),720px);
    height: auto;
    min-height: 180px;
    margin-top: 0;
    grid-template-columns: 40px minmax(0,1fr) 40px;
    grid-template-rows: auto 80px auto;
    gap: 10px 8px;
    padding: 18px;
    background: rgba(28,29,38,.86);
    border-radius: 28px;
    left: 0;
  }
  .featured h2 {
    grid-column: 1/-1;
    grid-row: 1;
    text-align: center;
    transform: none;
  }
  .slides {
    grid-column: 2;
    grid-row: 2;
    display: block;
    width: 100%;
    height: 80px;
  }
  .slider-arrow.prev {
    grid-column: 1;
    grid-row: 2;
  }
  .slider-arrow.next {
    grid-column: 3;
    grid-row: 2;
  }
  .slide {
    display: none;
    height: 80px;
    border: 0;
  }
  .slide.active {
    display: grid;
  }
  .dots {
    display: flex;
    grid-column: 1/-1;
    grid-row: 3;
    justify-content: center;
    gap: 8px;
  }
  .dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #777;
    padding: 0;
  }
  .dots button.active {
    background: var(--cyan);
  }
  .problem-cards {
    grid-template-columns: repeat(2,1fr);
    max-width: 680px;
  }
  .problem-card,.problem-card:nth-child(4) {
    grid-column: auto;
  }
  .problem-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 13px);
    justify-self: center;
  }
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .phone {
    width: 430px;
    max-height: 550px;
    margin-bottom: 40px;
  }
  .platform-copy {
    max-width: 650px;
    margin: auto;
  }
  .flow-layout {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-top: 55px;
  }
  .computer {
    grid-row: 2;
    margin: auto;
  }
  .sales {
    grid-row: 3;
  }
  .benefit-stage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 35px;
  }
  .benefit-stage>img {
    position: static;
    grid-column: 1/-1;
    grid-row: 2;
    width: 100%;
    transform: none;
  }
  .benefit-card {
    position: static;
    width: auto;
    min-height: 125px;
  }
  .saving {
    transform: none;
    grid-column: 1/-1;
    width: 50%;
    justify-self: center;
  }
  .contact-panel {
    grid-template-columns: 1fr;
    max-width: 600px;
    transform: none;
  }
  .contact-copy {
    text-align: center;
    padding: 0;
  }
  .contact-copy p:last-child {
    margin-inline: auto;
  }
  .contact-envelope {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 35px 0;
  }
  .footer-grid>a {
    display: block;
  }
  .footer-logo {
    width: 190px;
  }
  .icon-link,.social {
    justify-content: center;
  }
  .coverage {
    margin-left: 0;
  }
  footer {
    height: auto;
    min-height: 430px;
  }
  .hero-visual {
    position: relative;
    width: 100%;
    height: 480px;
  }
  .hero-composite {
    position: absolute;
    width: 620px;
    max-width: 108%;
    right: -4%;
    top: 12px;
    z-index: 4;
  }
}

@media(max-width:520px) {
  .container {
    width: min(calc(100% - 28px),var(--container));
  }
  h1 {
    font-size: 2rem;
    letter-spacing: -.045em;
  }
  h2 {
    font-size: 1.9rem;
  }
  .hero-copy {
    text-align: left;
  }
  .hero-eyebrow {
    font-size: .62rem;
  }
  .hero .lead {
    font-size: .9rem;
  }
  .hero-image {
    margin: 5px auto -10px;
  }
  .featured {
    border-radius: 0 0 28px 28px;
  }
  .problem {
    min-height: 0;
  }
  .problem h2 br,.why h2 br,.benefits h2 br,.final-cta br {
    display: none;
  }
  .problem-cards {
    grid-template-columns: 1fr;
  }
  .problem-card:last-child {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
  .problem-card {
    min-height: 250px;
  }
  .platform {
    border-radius: 28px;
  }
  .phone {
    width: 310px;
  }
  .flow li {
    font-size: .82rem;
  }
  .benefits {
    border-radius: 28px;
  }
  .benefit-stage {
    grid-template-columns: 1fr 1fr;
  }
  .benefit-card {
    padding: 17px 12px;
  }
  .saving {
    width: 100%;
  }
  .why-grid article {
    min-height: 170px;
    padding: 14px;
  }
  .why-grid img {
    width: 50px;
    height: 50px;
  }
  .why-grid h3 {
    font-size: .82rem;
  }
  .logo-rows img {
    max-height: 58px;
  }
  .contact-panel {
    gap: 25px;
  }
  .contact-copy h2 {
    font-size: 2rem;
  }
  form {
    padding: 20px;
  }
  .final-cta {
    min-height: 470px;
  }
  footer {
    min-height: 470px;
  }
  .footer-grid {
    gap: 8px;
  }
  .icon-link {
    font-size: .82rem;
  }
  .coverage {
    font-size: .82rem;
  }
  .logo-row.four,.logo-row.five {
    grid-template-columns: repeat(2,1fr);
  }
  .logo-row {
    border-bottom: 0;
  }
  .logo-row img {
    height: 68px;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    transform: none;
  }
  .logo-row img:nth-child(2n) {
    border-right: 0;
  }
  .hero-visual {
    height: 390px;
  }
  .hero-composite {
    width: 362px;
    max-width: 100%;
    right: 50%;
    top: 12px;
    transform: translateX(50%);
  }
}

.whatsapp-widget {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.whatsapp-bubble {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  color: #111b21;
  font: 700 14px Montserrat;
  padding: 13px 34px 13px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
  white-space: nowrap;
  animation: wa-bubble-in .4s ease .8s both;
}
.whatsapp-bubble:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  width: 13px;
  height: 13px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
}
.whatsapp-bubble-close {
  position: absolute;
  top: 2px;
  right: 4px;
  border: 0;
  background: none;
  color: #8696a0;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}
.whatsapp-bubble.is-hidden {
  display: none;
}
@keyframes wa-bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.whatsapp-float {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  transition: transform .2s,box-shadow .2s;
}
.whatsapp-float:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.4s ease-out infinite;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,.42);
  outline: none;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media(max-width:520px) {
  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .whatsapp-bubble {
    font-size: 13px;
    padding: 11px 30px 11px 15px;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    animation-duration: .01ms!important;
    animation-delay: 0s!important;
    transition-duration: .01ms!important;
    scroll-behavior: auto!important;
  }
}
