.contratos-mercadito-page,
.contratos-mercadito-page * {
  box-sizing: border-box;
}

.contratos-mercadito-page {
  --cm-nav-offset: calc(30px + var(--modern-nav-height, 55px));
  --cm-navy: #07184c;
  --cm-blue: #155fc2;
  --cm-green: #83c929;
  --cm-orange: #ff7f00;
  --cm-ink: #10182e;
  --cm-muted: #4e5d75;
  --cm-line: #d6dce7;
  --cm-white: #ffffff;
  --cm-ramp-deep: #07184c;
  --cm-ramp-mid: #193f8a;
  --cm-ramp-blue: #315fb3;
  --cm-ramp-seam: #315fb3;
  --cm-page-inline: clamp(24px, 4vw, 56px);
  --cm-brand-name-size: 1.38rem;
  --cm-brand-subtitle-size: 0.86rem;
  --cm-kicker-size: 3.48rem;
  --cm-title-size: 4.7rem;
  --cm-copy-size: 1.08rem;
  --cm-feature-icon-size: 1.36rem;
  --cm-feature-title-size: 0.94rem;
  --cm-feature-copy-size: 0.78rem;
  --cm-tag-size: 0.82rem;
  --cm-band-copy-size: 1.16rem;
  --cm-band-icon-size: 1.68rem;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) clamp(74px, 12vh, 120px);
  width: 100%;
  max-width: 100dvw;
  height: calc(100vh - var(--cm-nav-offset));
  height: calc(100dvh - var(--cm-nav-offset));
  min-height: calc(100dvh - var(--cm-nav-offset));
  max-height: calc(100dvh - var(--cm-nav-offset));
  overflow: hidden;
  background:
    radial-gradient(
      circle at clamp(120px, 14vw, 185px) clamp(120px, 18vh, 185px),
      transparent 0 62px,
      rgba(217, 226, 239, 0.72) 63px 93px,
      transparent 94px 127px,
      rgba(217, 226, 239, 0.52) 128px 158px,
      transparent 159px 192px,
      rgba(217, 226, 239, 0.42) 193px 223px,
      transparent 224px 252px,
      rgba(131, 201, 41, 0.12) 253px 279px,
      transparent 280px
    ),
    var(--cm-white);
  color: var(--cm-ink);
  font-family: Crossten, "Helvetica Neue", Arial, sans-serif;
}

.contratos-mercadito-page::after {
  content: none;
  display: none;
  width: 0;
  height: 0;
  background: none;
  pointer-events: none;
}

.cm-shell {
  width: min(1220px, calc(100dvw - var(--cm-page-inline)));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(16px, 3vh, 40px) 0 clamp(10px, 2vh, 22px);
  display: grid;
  grid-template-columns: minmax(315px, 0.82fr) minmax(360px, 1.18fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "brand visual"
    "message visual"
    "features features";
  align-content: stretch;
  align-items: center;
  column-gap: clamp(22px, 4vw, 64px);
  row-gap: clamp(8px, 1.5vh, 18px);
  overflow: visible;
}

.cm-brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 18px);
  margin-bottom: clamp(12px, 2.5vh, 34px);
}

.cm-brand__seal {
  width: clamp(58px, min(6.2vw, 11vh), 96px);
  height: auto;
  object-fit: contain;
}

.cm-brand__divider {
  width: 2px;
  height: clamp(48px, 7.4vh, 68px);
  background: linear-gradient(180deg, transparent, var(--cm-navy) 18% 82%, transparent);
}

.cm-brand__name {
  margin: 0;
  color: var(--cm-navy);
  font-size: var(--cm-brand-name-size);
  font-weight: 850;
  line-height: 1.03;
  text-transform: uppercase;
}

.cm-brand__name span {
  display: block;
  margin-top: 6px;
  color: #1f2a41;
  font-size: var(--cm-brand-subtitle-size);
  font-weight: 500;
  line-height: 1.15;
  text-transform: none;
}

.cm-message {
  grid-area: message;
  max-width: 620px;
}

.cm-kicker {
  width: fit-content;
  margin: 0 auto clamp(6px, 1.1vh, 12px);
  padding: clamp(5px, 0.9vh, 8px) clamp(20px, 2.7vw, 30px) clamp(7px, 1.2vh, 10px);
  border-radius: 12px;
  background: var(--cm-navy);
  color: var(--cm-green);
  box-shadow: 0 14px 28px rgba(7, 24, 76, 0.18);
  font-size: var(--cm-kicker-size);
  font-weight: 900;
  line-height: 0.95;
}

.cm-title {
  margin: 0;
  color: var(--cm-navy);
  font-size: var(--cm-title-size);
  font-weight: 900;
  line-height: 0.9;
  text-align: center;
}

.cm-title-rule {
  display: block;
  width: min(245px, 52%);
  height: clamp(3px, 0.72vh, 6px);
  margin: clamp(8px, 1.8vh, 18px) auto clamp(8px, 1.7vh, 16px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cm-blue), var(--cm-green));
}

.cm-copy {
  max-width: 650px;
  margin: 0 auto;
  color: var(--cm-ink);
  font-size: var(--cm-copy-size);
  line-height: 1.38;
  text-align: center;
}

.cm-copy strong {
  color: var(--cm-navy);
  font-weight: 850;
}

.cm-features {
  grid-area: features;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  width: 100%;
  max-width: 100%;
  margin-top: clamp(8px, 1.6vh, 18px);
  min-height: 0;
}

.cm-feature {
  display: grid;
  grid-template-columns: clamp(44px, 4.7vw, 58px) 1fr;
  gap: clamp(9px, 1.1vw, 14px);
  align-items: center;
  min-width: 0;
  padding-right: clamp(10px, 1.5vw, 20px);
  padding-bottom: 0;
  border-right: 1px solid var(--cm-line);
  border-bottom: 0;
}

.cm-feature:last-child {
  border-right: 0;
  padding-right: 0;
}

.cm-feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(42px, 4.7vw, 56px);
  height: clamp(42px, 4.7vw, 56px);
  border: 2px solid var(--cm-blue);
  border-radius: 50%;
  color: var(--cm-blue);
  font-size: var(--cm-feature-icon-size);
}

.cm-feature-icon::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border-right: 2px solid var(--cm-green);
  border-bottom: 2px solid var(--cm-green);
  transform: rotate(11deg);
}

.cm-feature-icon__accent {
  position: absolute;
  right: 9px;
  bottom: 11px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--cm-green);
  transform: rotate(-42deg);
}

.cm-feature h2 {
  margin: 0 0 4px;
  color: var(--cm-navy);
  font-size: var(--cm-feature-title-size);
  font-weight: 850;
  line-height: 1.12;
}

.cm-feature p {
  margin: 0;
  color: var(--cm-muted);
  font-size: var(--cm-feature-copy-size);
  line-height: 1.22;
}

.cm-visual {
  grid-area: visual;
  position: relative;
  align-self: stretch;
  min-height: 0;
  max-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.cm-platform-tag {
  position: absolute;
  top: clamp(18px, 6vh, 58px);
  right: clamp(10px, 3.6vw, 64px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  max-width: min(310px, calc(100dvw - 40px));
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(7, 24, 76, 0.9);
  color: var(--cm-white);
  box-shadow: 0 18px 34px rgba(7, 24, 76, 0.24);
  font-size: var(--cm-tag-size);
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cm-platform-tag:hover,
.cm-platform-tag:focus {
  color: var(--cm-white);
  text-decoration: none;
  background: rgba(7, 24, 76, 0.78);
  box-shadow: 0 16px 32px rgba(7, 24, 76, 0.2);
}

.cm-platform-tag i {
  flex: 0 0 auto;
  font-size: 0.84em;
  line-height: 1;
}

.cm-platform-tag:focus-visible {
  outline: 3px solid rgba(131, 201, 41, 0.85);
  outline-offset: 3px;
}

.cm-laptop {
  width: min(100%, 740px);
  max-width: 100%;
  max-height: min(52vh, 520px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(7, 24, 76, 0.22));
}

.cm-bottom-band {
  position: relative;
  min-height: 0;
  background: var(--cm-ramp-deep);
  color: var(--cm-white);
  overflow: hidden;
}

.cm-bottom-band::before,
.cm-bottom-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cm-bottom-band::before {
  content: none;
  display: none;
  width: 0;
  background: none;
}

.cm-bottom-band::after {
  top: -72%;
  right: clamp(72px, 8vw, 145px);
  width: clamp(118px, 10vw, 164px);
  height: 244%;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(131, 201, 41, 0.95) 18.2% 22.4%, transparent 22.8% 70%, rgba(137, 177, 232, 0.62) 70.4% 74.2%, transparent 74.6%);
  transform: rotate(39deg);
  transform-origin: center;
  z-index: 1;
}

.cm-bottom-band__inner {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100dvw - var(--cm-page-inline)));
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding-right: clamp(190px, 24vw, 360px);
  display: grid;
  grid-template-columns: clamp(52px, 6vw, 72px) minmax(0, 640px);
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
}

.cm-bottom-band__inner p {
  margin: 0;
  padding-left: clamp(14px, 2vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--cm-band-copy-size);
  line-height: 1.26;
}

.cm-bottom-band__inner strong {
  color: var(--cm-green);
  font-weight: 850;
}

.cm-calendar-icon,
.cm-asg-mark {
  display: grid;
  place-items: center;
  width: clamp(50px, 5.6vw, 68px);
  height: clamp(50px, 5.6vw, 68px);
  border-radius: 50%;
  border: 3px solid var(--cm-green);
  color: var(--cm-green);
  font-size: var(--cm-band-icon-size);
}

.cm-asg-mark {
  position: absolute;
  top: 50%;
  right: clamp(180px, 19vw, 300px);
  z-index: 3;
  width: clamp(58px, 6.2vw, 78px);
  height: clamp(58px, 6.2vw, 78px);
  border-color: transparent;
  background: transparent;
  overflow: hidden;
  transform: translateY(-50%);
}

.cm-asg-mark__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-height: 760px) and (min-width: 761px) {
  .contratos-mercadito-page {
    --cm-brand-name-size: 1.08rem;
    --cm-brand-subtitle-size: 0.72rem;
    --cm-kicker-size: 2.58rem;
    --cm-title-size: 3.72rem;
    --cm-copy-size: 0.95rem;
    --cm-feature-icon-size: 1.16rem;
    --cm-feature-title-size: 0.84rem;
    --cm-feature-copy-size: 0.7rem;
    --cm-tag-size: 0.72rem;
    --cm-band-copy-size: 0.96rem;
    --cm-band-icon-size: 1.42rem;
    grid-template-rows: minmax(0, 1fr) clamp(68px, 11vh, 92px);
  }

  .cm-shell {
    padding-block: clamp(10px, 2vh, 18px);
  }

  .cm-brand {
    margin-bottom: clamp(6px, 1.3vh, 14px);
  }

  .cm-features {
    margin-top: clamp(10px, 2vh, 18px);
    gap: clamp(7px, 1.2vh, 12px);
  }

  .cm-laptop {
    max-height: min(48vh, 440px);
  }
}

@media (max-width: 1100px) {
  .contratos-mercadito-page {
    --cm-brand-name-size: 1.2rem;
    --cm-brand-subtitle-size: 0.76rem;
    --cm-kicker-size: 2.92rem;
    --cm-title-size: 4rem;
    --cm-copy-size: 1rem;
    --cm-feature-title-size: 0.86rem;
    --cm-feature-copy-size: 0.72rem;
    --cm-band-copy-size: 1rem;
  }

  .cm-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    grid-template-areas:
      "brand"
      "message"
      "visual"
      "features";
    row-gap: clamp(8px, 1.5vh, 20px);
    align-content: stretch;
  }

  .cm-brand {
    justify-content: center;
    margin-bottom: 0;
  }

  .cm-visual {
    align-self: stretch;
  }

  .cm-laptop {
    max-height: min(34vh, 330px);
  }

  .cm-features {
    max-width: 860px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
  }

  .cm-feature {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    border-right: 0;
    border-bottom: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}

@media (max-height: 680px) and (min-width: 761px) {
  .contratos-mercadito-page {
    --cm-brand-name-size: 1rem;
    --cm-brand-subtitle-size: 0.68rem;
    --cm-kicker-size: 2.18rem;
    --cm-title-size: 3.12rem;
    --cm-copy-size: 0.86rem;
    --cm-feature-icon-size: 1.02rem;
    --cm-feature-title-size: 0.78rem;
    --cm-feature-copy-size: 0.66rem;
    --cm-tag-size: 0.68rem;
    --cm-band-copy-size: 0.88rem;
    --cm-band-icon-size: 1.24rem;
    grid-template-rows: minmax(0, 1fr) clamp(58px, 10vh, 76px);
  }

  .cm-shell {
    padding-block: 8px 6px;
    row-gap: 6px;
  }

  .cm-brand {
    gap: 10px;
    margin-bottom: 6px;
  }

  .cm-brand__seal {
    width: 50px;
  }

  .cm-brand__divider {
    height: 44px;
  }

  .cm-kicker {
    margin-bottom: 5px;
    padding: 4px 18px 6px;
    border-radius: 10px;
  }

  .cm-title-rule {
    width: min(205px, 48%);
    margin-block: 7px;
  }

  .cm-copy {
    line-height: 1.24;
  }

  .cm-features {
    margin-top: 8px;
    gap: 10px;
  }

  .cm-feature {
    grid-template-columns: 40px 1fr;
    gap: 8px;
  }

  .cm-feature-icon {
    width: 38px;
    height: 38px;
  }

  .cm-feature h2 {
    margin-bottom: 2px;
  }

  .cm-feature p {
    line-height: 1.14;
  }

  .cm-platform-tag {
    display: none;
  }

  .cm-laptop {
    max-height: min(42vh, 360px);
  }

  .cm-bottom-band__inner p {
    line-height: 1.14;
  }

  .cm-calendar-icon,
  .cm-asg-mark {
    width: 46px;
    height: 46px;
    border-width: 2px;
  }
}

@media (max-width: 1100px) and (max-height: 680px) and (min-width: 761px) {
  .cm-shell {
    grid-template-columns: minmax(280px, 0.82fr) minmax(330px, 1.18fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "brand visual"
      "message visual"
      "features features";
    column-gap: clamp(18px, 3vw, 34px);
    align-content: stretch;
  }

  .cm-brand {
    justify-content: flex-start;
  }

  .cm-features {
    max-width: 100%;
  }

  .cm-feature {
    justify-items: start;
    text-align: left;
    border-right: 1px solid var(--cm-line);
    padding-right: 12px;
  }

  .cm-feature:last-child {
    border-right: 0;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .contratos-mercadito-page {
    --cm-page-inline: 20px;
    --cm-brand-name-size: 0.88rem;
    --cm-brand-subtitle-size: 0.68rem;
    --cm-kicker-size: 2.06rem;
    --cm-title-size: 3rem;
    --cm-copy-size: 0.88rem;
    --cm-feature-icon-size: 0.92rem;
    --cm-feature-title-size: 0.82rem;
    --cm-feature-copy-size: 0.72rem;
    --cm-tag-size: 0.66rem;
    --cm-band-copy-size: 0.78rem;
    --cm-band-icon-size: 0.94rem;
    grid-template-rows: minmax(0, 1fr) clamp(60px, 10vh, 84px);
    background:
      radial-gradient(
        circle at 102px 106px,
        transparent 0 48px,
        rgba(217, 226, 239, 0.72) 49px 69px,
        transparent 70px 96px,
        rgba(217, 226, 239, 0.52) 97px 118px,
        transparent 119px 146px,
        rgba(217, 226, 239, 0.42) 147px 169px,
        transparent 170px 193px,
        rgba(131, 201, 41, 0.12) 194px 212px,
        transparent 213px
      ),
      var(--cm-white);
  }

  .cm-shell {
    width: min(100dvw - 20px, 680px);
    padding: clamp(6px, 1.3vh, 12px) 0 clamp(5px, 1vh, 10px);
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    row-gap: clamp(5px, 1vh, 10px);
  }

  .cm-brand {
    align-items: flex-start;
    gap: 9px;
  }

  .cm-brand__seal {
    width: clamp(40px, 11vw, 54px);
  }

  .cm-brand__divider {
    height: clamp(38px, 6vh, 48px);
  }

  .cm-brand__name {
    font-size: var(--cm-brand-name-size);
  }

  .cm-brand__name span {
    margin-top: 3px;
    font-size: var(--cm-brand-subtitle-size);
  }

  .cm-kicker {
    margin-bottom: clamp(4px, 0.7vh, 7px);
    padding: 4px 16px 6px;
    border-radius: 9px;
    font-size: var(--cm-kicker-size);
  }

  .cm-title {
    font-size: var(--cm-title-size);
  }

  .cm-title-rule {
    width: min(180px, 50%);
    margin-block: clamp(5px, 0.9vh, 8px);
  }

  .cm-copy {
    max-width: 95%;
    font-size: var(--cm-copy-size);
    line-height: 1.24;
  }

  .cm-platform-tag {
    top: 6px;
    right: 4px;
    gap: 6px;
    padding: 6px 9px;
    font-size: var(--cm-tag-size);
  }

  .cm-laptop {
    max-height: min(20vh, 160px);
    max-width: 92%;
  }

  .cm-features {
    width: 100%;
    grid-template-columns: 1fr;
    gap: clamp(5px, 0.8vh, 8px);
  }

  .cm-feature {
    grid-template-columns: 38px 1fr;
    justify-items: start;
    text-align: left;
    gap: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--cm-line);
    padding-right: 0;
    padding-bottom: clamp(4px, 0.7vh, 7px);
  }

  .cm-feature:last-child {
    border-bottom: 0;
  }

  .cm-feature-icon {
    width: 34px;
    height: 34px;
    border-width: 2px;
    font-size: var(--cm-feature-icon-size);
  }

  .cm-feature-icon::after {
    inset: -2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .cm-feature-icon__accent {
    right: 7px;
    bottom: 8px;
    width: 13px;
    height: 3px;
  }

  .cm-feature h2 {
    margin-bottom: 1px;
    font-size: var(--cm-feature-title-size);
  }

  .cm-feature p {
    font-size: var(--cm-feature-copy-size);
    line-height: 1.16;
  }

  .cm-bottom-band__inner {
    width: min(100dvw - 20px, 680px);
    grid-template-columns: 36px 1fr 44px;
    gap: 10px;
    padding-right: 0;
  }

  .cm-bottom-band__inner p {
    padding-left: 10px;
    font-size: var(--cm-band-copy-size);
    line-height: 1.12;
  }

  .cm-calendar-icon,
  .cm-asg-mark {
    width: 34px;
    height: 34px;
    border-width: 2px;
    font-size: var(--cm-band-icon-size);
  }

  .cm-asg-mark {
    position: static;
    justify-self: end;
    width: 38px;
    height: 38px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .contratos-mercadito-page {
    --cm-page-inline: 20px;
    --cm-kicker-size: 1.86rem;
    --cm-title-size: 2.5rem;
    --cm-copy-size: 0.86rem;
    --cm-feature-title-size: 0.82rem;
    --cm-feature-copy-size: 0.72rem;
    grid-template-rows: auto auto;
    height: auto;
    max-height: none;
    min-height: calc(100dvh - var(--cm-nav-offset));
    overflow: visible;
  }

  .cm-shell {
    height: auto;
    min-height: 0;
    padding-block: 14px 12px;
    grid-template-rows: auto auto auto auto;
    align-content: start;
    overflow: visible;
  }

  .cm-message {
    max-width: 100%;
  }

  .cm-visual {
    flex-direction: column;
    gap: 6px;
    min-height: 128px;
    align-items: center;
  }

  .cm-laptop {
    width: min(100%, 430px);
    max-height: none;
  }

  .cm-platform-tag {
    position: static;
    justify-self: center;
    align-self: start;
    margin: 0 auto 6px;
  }

  .cm-features {
    margin-top: 2px;
    gap: 8px;
  }

  .cm-feature {
    min-height: 44px;
  }

  .cm-bottom-band {
    min-height: 96px;
  }

  .cm-bottom-band::after {
    top: -44%;
    right: -6px;
    width: 82px;
    height: 190%;
    opacity: 0.42;
  }

  .cm-bottom-band__inner {
    min-height: 96px;
    padding-block: 12px;
  }
}

@media (max-width: 380px) {
  .contratos-mercadito-page {
    --cm-page-inline: 16px;
    --cm-brand-name-size: 0.78rem;
    --cm-brand-subtitle-size: 0.6rem;
    --cm-kicker-size: 1.62rem;
    --cm-title-size: 2.1rem;
    --cm-copy-size: 0.8rem;
    --cm-feature-title-size: 0.78rem;
    --cm-feature-copy-size: 0.68rem;
    --cm-band-copy-size: 0.72rem;
  }

  .cm-shell {
    width: min(100dvw - 16px, 360px);
    row-gap: 8px;
  }

  .cm-brand {
    gap: 7px;
  }

  .cm-brand__seal {
    width: 38px;
  }

  .cm-brand__divider {
    height: 36px;
  }

  .cm-copy {
    line-height: 1.22;
  }

  .cm-feature {
    grid-template-columns: 34px 1fr;
    gap: 7px;
  }

  .cm-feature-icon {
    width: 32px;
    height: 32px;
  }

  .cm-bottom-band__inner {
    width: min(100dvw - 16px, 360px);
    grid-template-columns: 32px 1fr 36px;
    gap: 8px;
    padding-right: 0;
  }

  .cm-calendar-icon {
    width: 32px;
    height: 32px;
  }

  .cm-asg-mark {
    width: 36px;
    height: 36px;
  }
}
