:root {
  --red: #ed0018;
  --ink: #0b0d10;
  --carbon: #111314;
  --black: #111314;
  --muted: #6f7780;
  --line: #dfe3e7;
  --soft: #f6f7f8;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #000;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.dmax-page {
  overflow-x: hidden;
  background: #fff;
}

.dmax-hero {
  position: relative;
  --dmax-hero-brand-width: min(640px, 62vw);
  --dmax-hero-truck-width: min(1015px, 72vw);
  --dmax-hero-truck-offset: calc((var(--dmax-hero-truck-width) - var(--dmax-hero-brand-width)) / -2);
  height: min(100vh, 840px);
  min-height: 650px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #080b0d;
}

.dmax-hero__bg {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  height: 74%;
  object-fit: cover;
  filter: saturate(.92) brightness(.82);
}

.dmax-hero__shade {
  position: absolute;
  top: clamp(108px, 12vw, 176px);
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  opacity: 0;
  -webkit-mask-image: linear-gradient(112deg, #000 0 38%, transparent 46%);
  mask-image: linear-gradient(112deg, #000 0 38%, transparent 46%);
  -webkit-mask-size: 260% 100%;
  mask-size: 260% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  animation: dmaxShadeSweep 1.05s cubic-bezier(.16, 1, .3, 1) .08s forwards;
}

.dmax-hero__brand {
  position: absolute;
  top: clamp(34px, 5.4vw, 66px);
  left: 50%;
  z-index: 3;
  display: block;
  width: var(--dmax-hero-brand-width);
  height: auto;
  transform: translateX(-50%) scale(.985);
  opacity: 0;
  filter: blur(8px);
  animation: dmaxBrandIn 1s cubic-bezier(.16, 1, .3, 1) .12s forwards;
}

.dmax-hero__brand span {
  font-size: clamp(58px, 12vw, 156px);
  line-height: .78;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
  text-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.dmax-hero__brand strong {
  margin-top: clamp(8px, 1.5vw, 18px);
  color: var(--red);
  font-size: clamp(46px, 7vw, 96px);
  line-height: .8;
  font-weight: 900;
}

.dmax-hero__truck {
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 4.8vw, 70px);
  z-index: 4;
  width: var(--dmax-hero-truck-width);
  height: auto;
  transform: translate(calc(-50% + var(--dmax-hero-truck-offset) - clamp(240px, 22vw, 420px)), -18px) scale(.98);
  filter: drop-shadow(0 36px 28px rgba(0,0,0,.55));
  opacity: 0;
  animation: dmaxTruckIn 1.1s cubic-bezier(.16, 1, .3, 1) .28s forwards;
}

.dmax-scroll-dot {
  position: absolute;
  left: 50%;
  bottom: 92px;
  z-index: 4;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--red);
  transform: translateX(-50%);
  animation: dmaxDot 1.35s ease-in-out infinite;
}

@keyframes dmaxBrandIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) scale(1);
  }
}

@keyframes dmaxShadeSweep {
  0% {
    opacity: 0;
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }

  100% {
    opacity: 1;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}

@keyframes dmaxTruckIn {
  to {
    opacity: 1;
    transform: translate(calc(-50% + var(--dmax-hero-truck-offset)), 0) scale(1);
  }
}

@keyframes dmaxTruckInMobile {
  0% {
    opacity: 0;
    transform: translate(-96%, -10px) scale(.98);
  }

  100% {
    opacity: 1;
    transform: translate(-58%, 0) scale(1);
  }
}

@keyframes dmaxDot {
  50% {
    transform: translate(-50%, 8px);
  }
}

.dmax-quote-float {
  position: fixed;
  right: 28px;
  top: calc(34% + 292px);
  z-index: 2147483000;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 12px 24px rgba(0,0,0,.24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.dmax-quote-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0,0,0,.28);
}

.dmax-quote-float img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity .78s cubic-bezier(.22, .68, .26, 1),
    transform .78s cubic-bezier(.22, .68, .26, 1),
    filter .78s cubic-bezier(.22, .68, .26, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.work-section {
  position: relative;
  min-height: clamp(650px, 54vw, 820px);
  padding: clamp(34px, 4vw, 58px) max(24px, calc((100vw - 1180px) / 2)) clamp(44px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(460px, 1fr);
  grid-template-rows: auto 1fr auto;
  align-items: start;
  gap: clamp(18px, 3vw, 44px) clamp(22px, 5vw, 72px);
  color: #fff;
  background: #080909 url("/assets/dmax_modelo_SE/Isuzu_sitio_Equipamiento_modal_motor_backTXT.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.work-section::before {
  display: none;
}

.work-section::before,
.related-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(circle, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

.work-section__media {
  position: relative;
  z-index: 1;
}

.work-section__media img {
  display: block;
  width: 100%;
  height: auto;
}

.work-section__media--left {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  width: clamp(640px, 52vw, 1010px);
  margin-left: calc(-1 * max(24px, (100vw - 1180px) / 2));
  margin-top: max(-20px, -1.8vw);
}

.work-section__media--right {
  grid-column: 2;
  grid-row: 2 / 4;
  justify-self: end;
  align-self: end;
  width: clamp(760px, 60vw, 1200px);
  margin-top: clamp(88px, 8vw, 150px);
  margin-right: calc(-1 * max(24px, (100vw - 1180px) / 2));
}

.work-section__copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: min(1040px, 58vw);
  max-width: 1040px;
  margin-right: calc(7vw - max(24px, (100vw - 1180px) / 2));
  padding-top: 0;
  text-align: right;
}

.work-section__copy h1 {
  margin: 0 0 clamp(14px, 1.4vw, 24px);
  font-size: clamp(42px, 3.8vw, 66px);
  line-height: 1.04;
  font-weight: 900;
}

.work-section__copy p {
  width: min(860px, 100%);
  margin: 0 0 0 auto;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.34vw, 24px);
  line-height: 1.28;
  font-weight: 400;
}

.work-section__note {
  position: relative;
  z-index: 2;
  grid-column: 1 / 2;
  grid-row: 3;
  width: min(1040px, 58vw);
  margin: clamp(-110px, -7vw, -64px) 0 0 calc(7vw - max(24px, (100vw - 1180px) / 2));
  color: rgba(255,255,255,.72);
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.18;
  font-weight: 800;
}

.features-section {
  position: relative;
  padding-bottom: clamp(58px, 8vw, 110px);
  background: #fff url("/assets/dmax_modelo_SE/Isuzu_sitio_Equipamiento_modal_motor_back_white.jpg") center top / cover no-repeat;
  overflow: hidden;
}

.features-section__photo {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
  overflow: hidden;
  border-radius: 0;
  will-change: width, margin-left, margin-top, border-radius;
}

.features-section__photo img {
  display: block;
  width: 100%;
  height: clamp(280px, 36vw, 560px);
  object-fit: cover;
}

.features-section__body {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 140px));
  margin: 0 0 0 max(24px, calc((100vw - 1180px) / 2));
  padding-top: clamp(50px, 6vw, 88px);
  display: grid;
  grid-template-columns: .68fr 1fr;
  gap: clamp(28px, 6vw, 74px);
}

.features-section__body::before {
  content: "";
  position: absolute;
  inset: -30px -80px;
  z-index: -1;
  opacity: .15;
  background-image: radial-gradient(circle, #8e959b 1.4px, transparent 1.4px);
  background-size: 15px 15px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.features-section h2 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 900;
}

.features-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-list li {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 76px;
  border-bottom: 2px solid rgba(237,0,24,.22);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.14;
  font-weight: 700;
}

.features-list img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.dmax-gallery {
  --gallery-left: max(24px, calc((100vw - 1160px) / 2));
  --gallery-width: min(1160px, calc(100% - 48px));
  position: relative;
  z-index: 2;
  padding: clamp(78px, 9vw, 140px) 0 clamp(300px, 28vw, 520px);
  width: 100%;
  background: transparent;
  overflow: hidden;
}

.dmax-section-heading {
  width: var(--gallery-width);
  margin: 0 auto;
  display: block;
}

.dmax-section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1;
  font-weight: 900;
}

.related-section__inner > i {
  display: block;
  height: 2px;
  background: var(--red);
}

.dmax-gallery__tabs {
  width: max-content;
  max-width: none;
  margin: 22px 0 20px var(--gallery-left);
  display: inline-grid;
  grid-template-columns: minmax(150px, 220px) minmax(150px, 220px);
  gap: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 24px rgba(0,0,0,.14);
}

.dmax-gallery__tabs button {
  position: relative;
  min-height: 42px;
  padding: 5px 28px;
  border: 0;
  border-radius: 999px;
  color: #8f9398;
  background: #f4f4f4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1;
  font-weight: 900;
  transition: color .25s ease, background .25s ease, transform .24s ease;
}

.dmax-gallery__tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform .28s ease;
}

.dmax-gallery__tabs button.active {
  color: #fff;
  background: var(--red);
}

.dmax-gallery__tabs button.active::after {
  transform: scaleX(1);
}

.dmax-gallery__tabs button:hover {
  transform: translateY(-1px);
}

.dmax-gallery__strip {
  width: min(1480px, calc(100% - 106px));
  margin-left: max(24px, calc((100vw - 1160px) / 2));
  margin-top: 0;
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.dmax-gallery__strip.is-dragging {
  cursor: grabbing;
}

.dmax-gallery__track {
  display: flex;
  gap: 10px;
  transition: transform .45s cubic-bezier(.22, .68, .26, 1);
}

.dmax-gallery-card {
  position: relative;
  flex: 0 0 min(670px, 56vw);
  height: clamp(235px, 24vw, 360px);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #e6e8ea;
}

.dmax-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dmax-gallery-card.is-contain img {
  object-fit: contain;
  padding: 18px;
}

.dmax-gallery-card figcaption {
  display: none;
}

.dmax-gallery-card button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  transition: transform .24s ease, background .24s ease;
}

.dmax-gallery-card button:hover {
  transform: scale(1.08);
  background: #050505;
}

.dmax-gallery__ui {
  width: var(--gallery-width);
  margin: 24px 0 0 0;
  display: grid;
  justify-items: start;
  gap: 12px;
}

.dmax-gallery__ui .slider-progress {
  width: min(540px, 100%);
  grid-template-columns: auto minmax(360px, 1fr);
}

.slider-arrows {
  display: flex;
  gap: 8px;
}

.slider-arrows button,
.dmax-gallery-modal__arrow {
  width: 28px;
  height: 20px;
  border: 0;
  background-color: transparent;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.slider-arrows button:disabled {
  opacity: .32;
  cursor: default;
}

[data-gallery-prev],
.dmax-gallery-modal__arrow--prev {
  background-image: url("/assets/dmax_modelo_SE/prev-arrow.png");
}

[data-gallery-next],
.dmax-gallery-modal__arrow--next {
  background-image: url("/assets/dmax_modelo_SE/next-arrow.png");
}

.slider-progress {
  display: grid;
  grid-template-columns: auto minmax(160px, 320px);
  gap: 12px;
  align-items: center;
}

.slider-progress strong {
  color: var(--red);
  font-size: 18px;
}

.slider-progress span {
  width: 100%;
  height: 3px;
  background: rgba(155,166,176,.85);
}

.slider-progress i {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--red);
  transition: width .35s ease;
}

.terrain-section {
  position: relative;
  z-index: 1;
  min-height: min(4749px, 247.34vw);
  margin-top: 0;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 0 0 clamp(66px, 8vw, 112px);
  color: #111;
  overflow: hidden;
  background: #111;
}

.terrain-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.terrain-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
}

.terrain-section__copy {
  position: absolute;
  top: clamp(740px, 61vw, 1060px);
  left: 50%;
  z-index: 2;
  display: block;
  width: min(760px, 74vw);
  height: auto;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.terrain-section__copy.reveal-on-scroll {
  transform: translate(-50%, 28px);
}

.terrain-section__copy.reveal-on-scroll.is-visible {
  transform: translate(-50%, 0);
}

.compare-section {
  position: relative;
  z-index: 3;
  margin-top: clamp(-720px, -42vw, -430px);
  padding-bottom: clamp(160px, 15vw, 280px);
  color: #fff;
  background: transparent;
  overflow: visible;
}

.compare-section::before {
  content: "";
  position: absolute;
  top: clamp(180px, 15vw, 300px);
  right: 0;
  bottom: auto;
  left: 0;
  height: clamp(1180px, 111vw, 2129px);
  background: url("/assets/dmax_modelo_SE/back_comparador.png") center top / 100% auto no-repeat;
  pointer-events: none;
}

.compare-section::after {
  display: none;
}

.compare-section__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(12px, 2.5vw, 42px) 0 clamp(120px, 10vw, 180px);
  text-align: center;
  transform: translateY(clamp(-305px, -16vw, -184px));
}

.compare-section h2 {
  position: relative;
  z-index: 5;
  margin: 0 0 clamp(160px, 11vw, 220px);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 900;
}

.compare-grid {
  display: grid;
  width: min(1080px, 100%);
  margin: clamp(-160px, -9vw, -112px) auto 0;
  overflow: visible;
  border-radius: 0 0 26px 26px;
  background: transparent;
}

.compare-models {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  gap: clamp(12px, 2vw, 28px);
  min-height: 320px;
  padding: 92px 36px 22px;
  background: transparent;
}

.compare-models::before {
  content: "";
  position: absolute;
  inset: clamp(82px, 6.2vw, 116px) 0 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(23,27,28,0) 0, rgba(23,27,28,.64) 46px, #171b1c 112px, #171b1c 100%);
  pointer-events: none;
}

.compare-grid.reveal-on-scroll {
  transition-delay: var(--compare-delay, 0ms);
}

.compare-model-card {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: end;
  min-height: 226px;
  padding-top: 102px;
}

.compare-model-card__visual {
  position: absolute;
  top: -112px;
  left: 50%;
  z-index: 2;
  width: min(300px, 126%);
  aspect-ratio: 1;
  margin: 0;
  transform: translateX(-50%);
}

.compare-card__triangle,
.compare-card__truck {
  position: absolute;
  display: block;
  width: 100%;
  object-fit: contain;
}

.compare-card__triangle {
  z-index: 1;
  inset: -6%;
  height: 100%;
  width: 112%;
}

.compare-card__truck {
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 16%;
  height: 68%;
  filter: drop-shadow(0 13px 12px rgba(0,0,0,.3));
  transition: opacity .24s ease, filter .24s ease;
}

.compare-card__truck.is-changing {
  opacity: 0;
  filter: blur(5px) drop-shadow(0 13px 12px rgba(0,0,0,.3));
}

.compare-card__logo {
  display: block;
  width: min(200px, 74%);
  height: 72px;
  margin: 34px 0 14px;
  object-fit: contain;
}

.compare-select {
  width: min(190px, 100%);
  margin: -8px 0 12px;
  display: grid;
  gap: 4px;
  text-align: left;
}

.compare-select span {
  color: #d9d9d9;
  font-size: 11px;
  font-weight: 700;
}

.compare-select select {
  width: 100%;
  min-height: 26px;
  border: 1px solid #555;
  border-radius: 4px;
  color: #fff;
  background: #25292b;
  font-size: 12px;
}

.compare-select--placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.compare-card__logo + .compare-card__swatches {
  margin-top: 0;
}

.compare-card__swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  min-height: 28px;
  margin: 0;
}

.compare-card__swatches button {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,.58);
  border-radius: 50%;
  background: var(--swatch);
  cursor: pointer;
  padding: 0;
}

.compare-card__swatches button.active {
  box-shadow: 0 0 0 2px rgba(255,255,255,.92);
}

.compare-card__swatches button.is-hidden {
  display: none;
}

.compare-bottom {
  background: #171b1c;
  border-radius: 0 0 26px 26px;
  overflow: hidden;
}

.compare-table {
  overflow: hidden;
  border-radius: 0 0 24px 24px;
}

.compare-table__tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  background: var(--red);
}

.compare-table__tabs button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.compare-table__tabs button.active {
  color: var(--red);
  background: #fff;
}

.compare-table__versions {
  display: grid;
  grid-template-columns: 1fr .82fr .82fr 1fr;
  min-height: 38px;
  align-items: center;
  color: #a6aaae;
  background: #111516;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.compare-table__body {
  display: grid;
  grid-template-columns: 1fr .82fr .82fr 1fr;
  height: clamp(500px, 36vw, 560px);
  padding: 30px 0 34px;
  color: #2d3135;
  background: #fff;
  border-radius: 0 0 0 0;
  overflow: hidden;
}

.compare-table__column {
  display: grid;
  grid-auto-rows: minmax(84px, auto);
  align-content: start;
  gap: 0;
  min-height: 100%;
  padding: 0 clamp(18px, 2.3vw, 42px);
  border-right: 2px solid #d9d9d9;
}

.compare-table__column:nth-child(2) {
  border-right: 0;
}

.compare-table__column:last-child {
  border-right: 0;
}

.compare-spec {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 84px;
  color: #9a9ea2;
  font-size: 13px;
  line-height: 1.12;
  font-weight: 800;
}

.compare-spec strong {
  color: #2e3337;
  font-size: 16px;
  line-height: 1.12;
  font-weight: 800;
}

.compare-spec::after {
  content: "";
  display: block;
  width: 66px;
  height: 2px;
  background: rgba(237,0,24,.46);
}


.compare-table__body[data-compare-active="exterior"] .compare-table__column {
  grid-template-rows: 70px 70px 152px 70px !important;
  grid-auto-rows: auto;
}

.compare-table__body[data-compare-active="exterior"] .compare-spec {
  min-height: 0;
  height: 100%;
  align-content: start;
}

.compare-table__body[data-compare-active="exterior"] .compare-spec:nth-child(3) strong {
  min-height: 58px;
  display: grid;
  place-items: center;
}

.compare-table__body[data-compare-active="exterior"] .compare-spec:nth-child(3) {
  position: relative;
  padding-bottom: 22px;
}

.compare-table__body[data-compare-active="exterior"] .compare-spec:nth-child(3)::after {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
}
.compare-spec:last-child::after {
  display: none;
}

.compare-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: start;
  width: min(930px, calc(100% - 48px));
  margin: 24px auto 30px;
}

.compare-actions div {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.compare-actions a:not(.pill-link) {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
}

.compare-disclaimer {
  display: grid;
  justify-items: center;
  gap: 3px;
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.24;
  font-weight: 400;
  text-align: center;
}

.compare-disclaimer strong {
  color: rgba(255,255,255,.76);
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
}

.compare-disclaimer span,
.compare-disclaimer small {
  display: block;
}

.compare-mobile {
  display: none;
}

.pill-link {
  --knob-width: 116px;
  --knob-shift: 58px;
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 186px;
  min-height: 46px;
  margin-top: 12px;
  padding: 6px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 800;
  overflow: hidden;
  transition: border-color .25s ease, color .25s ease;
}

.pill-link::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: var(--knob-width, 62%);
  border-radius: 999px;
  background: var(--red);
  transition: transform .32s ease, background .32s ease;
}

.pill-link span {
  position: absolute;
  left: 5px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--knob-width, 62%);
  height: calc(100% - 10px);
  transform: translateY(-50%);
  transition: transform .32s ease;
  pointer-events: none;
}

.pill-link:hover {
  color: #fff;
  border-color: #050505;
}

.pill-link:hover::before {
  transform: translateX(var(--knob-shift, 52%));
  background: #050505;
}

.pill-link:hover span {
  transform: translate(var(--knob-shift, 52%), -50%);
}

.pill-link--light {
  --knob-width: 116px;
  --knob-shift: 44px;
  min-width: 170px;
  min-height: 34px;
  color: var(--red);
  border-color: rgba(255,255,255,.78);
  background: transparent;
  font-size: 11px;
}

.pill-link--light::before {
  background: #fff;
}

.pill-link--light:hover::before {
  background: var(--red);
}

.pill-link--light:hover {
  border-color: #fff;
}

.pill-link--red {
  --knob-width: 310px;
  --knob-shift: 0px;
  min-width: min(420px, 100%);
  min-height: 58px;
  color: var(--red);
  border-color: rgba(237,0,24,.45);
  font-size: clamp(16px, 1.5vw, 20px);
}

.pill-link--red::before {
  background: #fff;
}

.pill-link--red span {
  width: calc(100% - 10px);
}

.pill-link--red:hover {
  border-color: var(--red);
}

.pill-link--red:hover::before,
.pill-link--red:hover span {
  transform: translateY(-50%);
}

.dealer-cta {
  --dealer-cut-left: clamp(58px, 6vw, 112px);
  --dealer-cut-right: clamp(150px, 13vw, 250px);
  position: relative;
  z-index: 4;
  min-height: clamp(520px, 48vw, 760px);
  display: grid;
  place-items: center;
  margin-top: clamp(-430px, -24vw, -300px);
  padding: clamp(190px, 17vw, 300px) 24px clamp(80px, 8vw, 130px);
  color: #fff;
  background:
    url("/assets/dmax_modelo_SE/6_parallax/Isuzu_sitio_DMAX_SE_INT_mapa.jpg") center / cover fixed no-repeat,
    #E50013;
  clip-path: polygon(0 var(--dealer-cut-left), 100% var(--dealer-cut-right), 100% 100%, 0 100%);
  overflow: hidden;
}

.dealer-cta::before {
  display: none;
}

.dealer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.16), transparent 38%, rgba(0,0,0,.12)),
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.14), transparent 34%);
  pointer-events: none;
}

.dealer-cta__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2vw, 28px);
}

.dealer-cta__pin {
  display: block;
  width: clamp(90px, 9vw, 142px);
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(0,0,0,.48));
}

.related-section {
  position: relative;
  padding: clamp(74px, 9vw, 126px) 0 clamp(78px, 10vw, 136px);
  color: #fff;
  background: url("/assets/dmax_modelo_SE/7_otrosModelos/Isuzu_sitio_cierre_back.jpg") center / cover no-repeat;
  overflow: hidden;
}

.related-section::before {
  display: none;
}

.related-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(330px, 45vw);
  height: 8px;
  border-radius: 0 0 8px 8px;
  background: var(--red);
  transform: translateX(-50%);
}

.related-section__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.related-section h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1;
  font-weight: 900;
}

.related-section__inner > i {
  width: 280px;
  margin: 34px auto 58px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 8vw, 124px);
  align-items: start;
}

.related-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.related-card img {
  width: min(420px, 100%);
  transition: transform .28s ease, filter .28s ease;
}

.related-card__logo {
  position: absolute;
  top: clamp(8px, 2vw, 28px);
  right: clamp(-10px, 1.5vw, 24px);
  z-index: 2;
  width: min(240px, 58%) !important;
  object-fit: contain;
  pointer-events: none;
}

.related-card:hover img:not(.related-card__logo) {
  transform: translateY(-8px);
  filter: drop-shadow(0 20px 18px rgba(237,0,24,.18));
}
.dmax-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2147482999;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  background: #f4f4f4;
  opacity: 0;
  pointer-events: none;
  transition: opacity .48s cubic-bezier(.22, .68, .26, 1);
}

.dmax-gallery-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.dmax-gallery-modal__rail,
.dmax-gallery-modal__stage {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(6px);
  transition:
    opacity .52s cubic-bezier(.22, .68, .26, 1),
    transform .52s cubic-bezier(.22, .68, .26, 1),
    filter .52s cubic-bezier(.22, .68, .26, 1);
}

.dmax-gallery-modal.is-open .dmax-gallery-modal__rail,
.dmax-gallery-modal.is-open .dmax-gallery-modal__stage {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.dmax-gallery-modal__rail {
  grid-column: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  background: var(--red);
}

.dmax-gallery-modal__arrow {
  width: 30px;
  height: 24px;
  padding: 0;
  background-color: #fff;
  background-size: 25px auto;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}

.dmax-gallery-modal__stage {
  position: relative;
  grid-column: 2;
  margin: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #e6e8ea;
}

.dmax-gallery-modal__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.dmax-gallery-modal__stage.is-changing::after {
  opacity: 1;
}

.dmax-gallery-modal__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dmax-gallery-modal__close {
  position: absolute;
  right: 34px;
  top: 34px;
  z-index: 3;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.34));
}

.dmax-gallery-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dmax-gallery-modal figcaption {
  display: none;
}

@media (max-width: 980px) {
  .dmax-hero {
    min-height: 590px;
    height: 82vh;
  }

  .dmax-hero__bg {
    height: 68%;
  }

  .dmax-hero__brand {
    top: 64px;
    width: min(630px, 86vw);
  }

  .dmax-hero__truck {
    bottom: 82px;
    width: min(810px, 102vw);
  }

  .dmax-quote-float {
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .work-section {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 70px 86px;
  }

  .work-section__copy {
    justify-self: start;
    width: auto;
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .work-section__copy p {
    margin-left: 0;
  }

  .work-section__media--left {
    width: min(600px, 116vw);
    margin-left: -34vw;
    margin-top: 0;
  }

  .work-section__media--right {
    grid-column: auto;
    width: min(780px, 122vw);
    margin: 0 -30vw 0 auto;
  }

  .work-section__note {
    grid-column: auto;
    margin: 0;
    width: min(720px, 100%);
    font-size: clamp(17px, 3vw, 22px);
  }

  .features-section__body {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 1160px);
    margin: 0 auto;
  }

  .dmax-gallery__tabs {
    position: static;
    width: min(100% - 48px, 520px);
    max-width: none;
    margin: 22px 0 20px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dmax-gallery__strip {
    width: calc(100% - 28px);
    margin-left: 14px;
    margin-top: 0;
  }

  .dmax-gallery-card {
    flex-basis: 78vw;
  }

  .terrain-section {
    min-height: 1180px;
  }

  .terrain-section__bg {
    object-position: center top;
  }

  .terrain-section__copy {
    top: clamp(700px, 96vw, 850px);
    width: min(520px, 68vw);
    transform: translateX(-50%);
  }

  .terrain-section__copy.reveal-on-scroll {
    transform: translate(-50%, 28px);
  }

  .terrain-section__copy.reveal-on-scroll.is-visible {
    transform: translate(-50%, 0);
  }

  .compare-section__inner {
    padding-top: 28px;
    width: calc(100% - 42px);
    transform: translateY(-196px);
  }

  .compare-section {
    padding-bottom: 190px;
  }

  .compare-section::before {
    bottom: auto;
  }

  .dealer-cta {
    --dealer-cut-left: 44px;
    --dealer-cut-right: 118px;
    min-height: 560px;
    margin-top: -318px;
    padding-top: 188px;
  }

  .compare-grid {
    width: min(100%, 940px);
    overflow-x: auto;
    margin: 0 auto;
  }

  .compare-section h2 {
    margin-bottom: 124px;
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .related-card__logo {
    top: 22px;
    right: 8%;
    width: min(220px, 48%) !important;
  }
}

@media (max-width: 560px) {
  .dmax-hero {
    min-height: 520px;
    height: 74vh;
  }

  .dmax-hero__brand span {
    font-size: clamp(48px, 17vw, 82px);
  }

  .dmax-hero__brand {
    width: min(375px, 82vw);
  }

  .dmax-hero__brand strong {
    font-size: clamp(38px, 14vw, 66px);
  }

  .dmax-hero__truck {
    left: 50%;
    bottom: 82px;
    width: 112vw;
    transform: translate(-86%, -18px) scale(.98);
    animation-name: dmaxTruckInMobile;
  }

  .dmax-scroll-dot {
    bottom: 74px;
  }

  .work-section,
  .features-section__body,
  .compare-section__inner,
  .related-section__inner {
    width: min(100% - 28px, 1160px);
  }

  .work-section {
    padding-inline: 0;
  }

  .features-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
  }

  .features-list img {
    width: 42px;
    height: 42px;
  }

  .dmax-section-heading {
    width: min(100% - 28px, 1160px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dmax-section-heading i {
    width: 46%;
  }

  .dmax-gallery__tabs {
    position: static;
    width: min(100% - 28px, 1160px);
    margin: 22px 0 20px 14px;
    padding: 6px 8px;
  }

  .dmax-gallery__tabs button {
    min-height: 38px;
    padding: 5px 16px;
    font-size: 16px;
  }

  .dmax-gallery__ui {
    width: min(100% - 28px, 1160px);
    margin-left: 14px;
  }

  .slider-progress {
    grid-template-columns: auto minmax(120px, 1fr);
    width: min(280px, 100%);
  }

  .dmax-gallery-card {
    flex-basis: 86vw;
    height: 250px;
    border-radius: 18px;
  }

  .terrain-section {
    min-height: 920px;
    padding-top: 54px;
  }

  .terrain-section__copy {
    top: clamp(560px, 148vw, 700px);
    width: min(320px, 76vw);
    transform: translateX(-50%);
  }

  .terrain-section__copy.reveal-on-scroll {
    transform: translate(-50%, 28px);
  }

  .terrain-section__copy.reveal-on-scroll.is-visible {
    transform: translate(-50%, 0);
  }

  .compare-section__inner {
    width: calc(100% - 28px);
    padding-top: 18px;
    transform: translateY(-166px);
  }

  .compare-section {
    padding-bottom: 160px;
  }

  .compare-section::before {
    bottom: auto;
  }

  .dealer-cta {
    --dealer-cut-left: 34px;
    --dealer-cut-right: 94px;
    min-height: 520px;
    margin-top: -268px;
    padding-top: 168px;
  }

  .pill-link,
  .pill-link--light,
  .pill-link--red {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
  }

  .pill-link::before {
    display: none;
  }

  .pill-link span {
    position: static;
    width: auto;
    height: auto;
    transform: none;
  }

  .pill-link:hover,
  .pill-link:hover span {
    transform: none;
  }

  .pill-link--red {
    color: #fff;
  }

  .dmax-gallery-modal {
    grid-template-columns: 1fr;
    grid-template-rows: 64px minmax(0, 1fr);
  }

  .dmax-gallery-modal__rail {
    grid-column: 1;
    grid-row: 1;
    grid-auto-flow: column;
    align-content: center;
  }

  .dmax-gallery-modal__stage {
    grid-column: 1;
    grid-row: 2;
    height: calc(100vh - 64px);
  }

  .dmax-gallery-modal__close {
    top: 18px;
    right: 18px;
  }

  .dmax-gallery-modal figcaption {
    left: 22px;
    bottom: 22px;
    font-size: 20px;
  }
}

.dealer-cta .pill-link--red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(430px, 86vw);
  min-height: 48px;
  padding-inline: 24px;
  color: var(--red);
  text-align: center;
  border: 1px solid rgba(237,0,24,.3);
  background: #fff;
  box-shadow: 0 14px 26px rgba(0,0,0,.28);
}

.dealer-cta .pill-link--red::before {
  display: none;
}

.dealer-cta .pill-link--red span {
  position: static;
  width: auto;
  height: auto;
  text-align: center;
  line-height: 1.15;
  transform: none;
}

.dealer-cta .pill-link--red:hover,
.dealer-cta .pill-link--red:hover span {
  color: #fff;
  background: var(--red);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal-on-scroll,
  .dmax-hero__shade,
  .dmax-hero__brand,
  .dmax-hero__truck {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}
.dmax-dealer-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  background: rgba(2,8,18,.82);
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: opacity .34s cubic-bezier(.22, .68, .26, 1);
}

.dmax-dealer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.dmax-dealer-modal__close {
  position: fixed;
  top: clamp(18px, 2.4vw, 34px);
  right: clamp(18px, 2.4vw, 34px);
  z-index: 6;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.34));
}

.dmax-dealer-modal__close img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dmax-dealer-modal__shell.locations-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  padding: clamp(30px, 4vw, 58px) clamp(28px, 5vw, 74px) clamp(34px, 4vw, 56px);
  background: rgba(2,8,18,.34);
}

.dmax-dealer-modal__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--dmax-dealer-bg) center / cover no-repeat;
  opacity: .58;
  pointer-events: none;
}

.dmax-dealer-modal__top,
.dmax-dealer-modal__map-stage {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin-inline: auto;
}

.dmax-dealer-modal__top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  max-width: min(1080px, 100%);
  margin-bottom: 22px;
}

.dmax-dealer-modal__banner {
  display: block;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 36px rgba(0,0,0,.24);
  pointer-events: none;
}

.dmax-dealer-modal__selector {
  display: grid;
  align-content: start;
  gap: 16px;
  aspect-ratio: 1;
  padding: clamp(24px, 3.2vw, 44px);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 36px rgba(0,0,0,.2);
  overflow: hidden;
}

.dmax-dealer-modal__selector label {
  display: grid;
  gap: 6px;
}

.dmax-dealer-modal__selector span {
  color: #585d63;
  font-size: 13px;
  font-weight: 800;
}

.dmax-dealer-modal__selector select {
  width: 100%;
  min-height: 38px;
  padding: 0 34px 0 10px;
  border: 2px solid #d5d6d8;
  border-radius: 0;
  color: #383d42;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.dmax-dealer-modal__selector select[size] {
  min-height: clamp(190px, 20vw, 270px);
  padding-block: 6px;
}

.dmax-dealer-modal__notice {
  min-height: 16px;
  margin: -4px 0 0;
  color: var(--red);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.dmax-dealer-modal__map-stage {
  min-height: clamp(390px, 48vh, 520px);
}

.dmax-dealer-modal__map-wrap.locations-map-wrap {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-radius: 0 46px 0 46px;
  box-shadow: 0 28px 56px rgba(0,0,0,.32);
}

.dmax-dealer-modal .locations-map {
  background:
    linear-gradient(rgba(116,214,224,.34), rgba(116,214,224,.34)),
    url("/assets/camiones-hub/Isuzu_sitio_productos_mapa.jpg") center / cover no-repeat;
}

.dmax-dealer-modal__panel.locations-panel {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 2;
  width: min(360px, calc(100vw - 56px));
  padding: 0;
}

.dmax-dealer-modal .location-tabs {
  width: 320px;
}

.dmax-dealer-modal .locations-card {
  width: 320px;
  min-height: 160px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}

.dmax-dealer-modal .locations-card h2 {
  margin: 0 0 18px;
  color: #5d6269;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
}

.dmax-dealer-modal .locations-results {
  max-height: min(42vh, 360px);
}

body.dmax-dealer-modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .dmax-dealer-modal__shell.locations-shell {
    padding: 74px 16px 18px;
  }

  .dmax-dealer-modal__top {
    grid-template-columns: 1fr;
    max-width: min(520px, 100%);
    gap: 14px;
    z-index: 2;
  }

  .dmax-dealer-modal__map-wrap.locations-map-wrap {
    position: relative;
    inset: auto;
    min-height: 52vh;
    border-radius: 0 26px 0 0;
  }

  .dmax-dealer-modal__banner {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .dmax-dealer-modal__selector {
    aspect-ratio: auto;
    min-height: 300px;
    height: 300px;
    padding: 18px;
  }

  .dmax-dealer-modal__selector label {
    min-height: 0;
  }

  .dmax-dealer-modal__selector select[size] {
    min-height: 130px;
    height: 130px;
    max-height: 130px;
    overflow-y: auto;
  }

  .dmax-dealer-modal__map-stage {
    display: grid;
    gap: 14px;
    margin-top: 176px;
    min-height: 0;
  }

  .dmax-dealer-modal__panel.locations-panel {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .dmax-dealer-modal .location-tabs,
  .dmax-dealer-modal .locations-card {
    width: min(360px, 100%);
  }

  .dmax-dealer-modal .locations-results {
    max-height: 180px;
  }
}

@media (max-width: 420px) {
  .dmax-dealer-modal__selector {
    min-height: 285px;
    height: 285px;
  }

  .dmax-dealer-modal__selector select[size] {
    min-height: 118px;
    height: 118px;
    max-height: 118px;
  }
}

/* Mobile layout polish */
@media (max-width: 760px) {
  .dmax-hero {
    min-height: 610px;
    height: 86vh;
  }

  .dmax-hero__bg {
    height: 78%;
  }

  .dmax-hero__brand {
    top: clamp(58px, 13vw, 88px);
    width: min(440px, 88vw);
  }

  .dmax-hero__truck {
    left: 50%;
    bottom: clamp(116px, 19vh, 152px);
    width: min(112vw, 590px);
    max-width: none;
    transform: translate(-50%, 10px) scale(.98);
    animation-name: dmaxTruckInMobileCenter;
  }

  .dmax-scroll-dot {
    bottom: 92px;
  }

  @keyframes dmaxTruckInMobileCenter {
    0% {
      opacity: 0;
      transform: translate(-86%, -8px) scale(.98);
    }

    100% {
      opacity: 1;
      transform: translate(-50%, 0) scale(1);
    }
  }

  .work-section {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 30px;
    padding: 58px 0 66px;
    justify-items: center;
  }

  .work-section__media,
  .work-section__media--left,
  .work-section__media--right {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    align-self: center;
    width: min(92vw, 560px);
    margin: 0;
  }

  .work-section__media--left {
    order: -1;
  }

  .work-section__media--right {
    order: 1;
  }

  .work-section__note {
    order: 2;
  }

  .work-section__copy {
    display: contents;
  }

  .work-section__copy,
  .work-section__note {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    width: min(92vw, 620px);
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .work-section__copy h1 {
    order: -2;
    justify-self: center;
    width: min(92vw, 620px);
    font-size: clamp(32px, 9vw, 46px);
    line-height: 1.05;
    text-align: center;
  }

  .work-section__copy p {
    order: 0;
    justify-self: center;
    width: min(92vw, 620px);
    text-align: center;
  }

  .work-section__copy p,
  .work-section__note {
    margin-inline: auto;
    font-size: clamp(16px, 4.2vw, 20px);
    line-height: 1.32;
  }

  .features-section {
    padding-bottom: 74px;
  }

  .features-section__photo img {
    height: clamp(250px, 62vw, 340px);
  }

  .features-section__body,
  .features-section__body--slider {
    display: block;
    width: min(92vw, 640px);
    margin: 0 auto;
    padding-top: 38px;
    text-align: center;
  }

  .features-section h2 {
    margin: 0 0 24px;
    font-size: clamp(30px, 8vw, 42px);
  }

  .features-list {
    gap: 12px;
  }

  .features-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    min-height: 0;
    padding: 14px 10px 16px;
    text-align: center;
    font-size: clamp(14px, 3.8vw, 17px);
    line-height: 1.28;
  }

  .features-list img {
    width: 42px;
    height: 42px;
  }

  .features-slider,
  .features-slide,
  .features-slider__track {
    width: 100%;
    min-width: 0;
  }

  .features-slider__ui {
    justify-items: center;
    margin-top: 22px;
  }

  .dmax-gallery {
    padding-top: 70px;
    padding-bottom: 170px;
  }

  .dmax-section-heading,
  .dmax-gallery__tabs,
  .dmax-gallery__strip,
  .dmax-gallery__ui {
    width: min(92vw, 640px);
    margin-left: auto;
    margin-right: auto;
  }

  .dmax-section-heading {
    text-align: center;
  }

  .dmax-gallery-card {
    flex-basis: min(92vw, 420px);
    height: clamp(240px, 62vw, 320px);
  }

  .terrain-section {
    min-height: 760px;
    padding-top: 48px;
    margin-top: 0;
  }

  .terrain-section__copy {
    top: auto;
    bottom: clamp(42px, 10vw, 86px);
    width: min(78vw, 360px);
  }

  .compare-section {
    padding-top: 54px;
    padding-bottom: 130px;
  }

  .compare-section__inner {
    width: min(92vw, 640px);
    transform: none;
    padding-top: 0;
  }

  .compare-section h2 {
    margin-bottom: 76px;
    text-align: center;
  }

  .compare-grid {
    width: min(92vw, 720px);
    overflow-x: auto;
    border-radius: 0 0 20px 20px;
  }

  .compare-models,
  .compare-bottom,
  .compare-table {
    min-width: 760px;
  }

  .compare-models {
    min-height: 270px;
    padding: 74px 22px 18px;
  }

  .compare-models::before {
    inset: 78px 0 0;
  }

  .compare-model-card__visual {
    width: min(240px, 122%);
    top: -76px;
  }

  .compare-table__tabs {
    padding-inline: 12px;
  }

  .compare-table__tabs button {
    font-size: 13px;
  }

  .compare-table__body {
    height: 500px;
  }

  .compare-actions {
    min-width: 760px;
    width: 760px;
  }

  .compare-disclaimer {
    min-width: 760px;
    width: 760px;
    padding-inline: 42px;
  }

  .dealer-cta {
    min-height: 420px;
    margin-top: -116px;
    padding-top: 160px;
  }

  .related-section__inner {
    width: min(92vw, 640px);
    padding-top: 86px;
  }
}

@media (max-width: 420px) {
  .dmax-hero {
    min-height: 560px;
  }

  .dmax-hero__truck {
    bottom: 112px;
    width: 120vw;
  }

  .work-section {
    padding-top: 48px;
  }

  .terrain-section {
    min-height: 690px;
  }

  .dealer-cta {
    min-height: 380px;
    margin-top: -116px;
    padding-top: 142px;
  }
}

@media (max-width: 760px) {
  .dmax-hero {
    min-height: 420px;
    height: 56vh;
  }

  .dmax-hero__bg {
    height: 56%;
    object-position: center top;
  }

  .dmax-hero__truck {
    bottom: clamp(82px, 15vh, 132px);
    width: min(90vw, 460px);
  }

  .work-section {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-top: 8px;
  }

  .dmax-scroll-dot {
    bottom: 112px;
  }

  .terrain-section {
    min-height: clamp(2100px, 560vw, 3400px);
    margin-top: -52px;
    padding-top: 0;
  }

  .dmax-gallery {
    padding-top: 110px;
    padding-bottom: 170px;
    transform: none;
  }

  .terrain-section__copy {
    top: clamp(620px, 162vw, 1020px);
    bottom: auto;
    width: min(86vw, 500px);
  }

  .compare-section {
    margin-top: clamp(-520px, -108vw, -360px);
    padding-top: 36px;
    padding-bottom: 54px;
    background: #E50013;
  }

  .compare-section::before {
    display: none;
  }

  .compare-section__inner {
    padding-bottom: 54px;
  }

  .compare-grid {
    gap: 0;
    margin-top: 0;
    overflow: hidden;
    background: #171b1c;
  }

  .compare-models,
  .compare-bottom {
    display: none;
  }

  .compare-mobile {
    display: block;
    width: 100%;
    color: #fff;
    background: #171b1c;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }

  .compare-mobile__models {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 28px 12px 18px;
    background: linear-gradient(180deg, rgba(23,27,28,0) 0, rgba(23,27,28,.6) 18px, #171b1c 46px, #171b1c 100%);
  }

  .compare-mobile__model {
    display: grid;
    justify-items: center;
    align-content: start;
    min-width: 0;
  }

  .compare-mobile__visual {
    position: relative;
    justify-self: center;
    width: min(150px, 40vw);
    aspect-ratio: 1;
    margin: 0 0 -2px;
  }

  .compare-mobile__model:first-child .compare-mobile__visual {
    justify-self: center;
    margin-left: 0;
  }

  .compare-mobile__model:last-child .compare-mobile__visual {
    justify-self: center;
    margin-right: 0;
  }

  .compare-mobile__model:first-child .compare-card__triangle,
  .compare-mobile__model:last-child .compare-card__triangle {
    left: 50%;
    width: 110%;
    transform: translateX(-50%);
  }

  .compare-mobile__visual .compare-card__truck {
    left: 50%;
    bottom: 20%;
    width: 94%;
    height: auto;
    transform: translateX(-50%);
  }

  .compare-mobile__logo {
    display: block;
    width: min(128px, 36vw);
    height: 48px;
    margin: 4px 0 8px;
    object-fit: contain;
  }

  .compare-mobile__select {
    position: relative;
    width: min(150px, 100%);
    margin: 0 0 12px;
  }

  .compare-mobile__select span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .compare-mobile__select select {
    width: 100%;
    min-height: 28px;
    padding: 0 24px 0 8px;
    border: 1px solid #565b5f;
    border-radius: 3px;
    color: #c7cbce;
    background: #202426;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
  }

  .compare-mobile__swatches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    min-height: 28px;
  }

  .compare-mobile__swatches button {
    width: 22px;
    height: 22px;
    padding: 0;
    border: 2px solid rgba(255,255,255,.58);
    border-radius: 50%;
    background: var(--swatch);
  }

  .compare-mobile__swatches button.active {
    box-shadow: 0 0 0 2px rgba(255,255,255,.92);
  }

  .compare-mobile__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 6px;
    padding: 12px 10px 10px;
    background: var(--red);
  }

  .compare-mobile__tabs button {
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: transparent;
    font-size: 11px;
    line-height: 1.08;
    font-weight: 900;
  }

  .compare-mobile__tabs button.active {
    color: var(--red);
    background: #fff;
  }

  .compare-mobile__nav {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    align-items: center;
    padding: 0 20px 8px;
    background: var(--red);
    border-bottom: 1px solid rgba(255,255,255,.7);
  }

  .compare-mobile__nav-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
  }

  .compare-mobile__nav-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.48);
    transition: width .22s ease, background .22s ease;
  }

  .compare-mobile__nav-dots span.active {
    width: 22px;
    border-radius: 999px;
    background: #fff;
  }

  .compare-mobile__nav button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(17,19,20,.1);
    border-radius: 0;
    appearance: none;
    color: transparent;
    background-color: rgba(255,255,255,.9);
    background-position: center;
    background-size: 22px auto;
    background-repeat: no-repeat;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(17,19,20,.16);
  }

  .compare-mobile__nav button::before {
    content: "";
    display: block;
    width: 24px;
    height: 16px;
    background: var(--red);
    clip-path: polygon(0 34%, 58% 34%, 58% 0, 100% 50%, 58% 100%, 58% 66%, 0 66%);
  }

  .compare-mobile__nav button[data-mobile-compare-prev],
  .compare-mobile__nav button[data-mobile-compare-next] {
    background-color: #fff !important;
    background-position: center !important;
    background-size: 25px auto !important;
    background-repeat: no-repeat !important;
  }

  .compare-mobile__nav button[data-mobile-compare-prev] {
    background-image: url("/assets/dmax_modelo_SE/arrow-previo.png") !important;
  }

  .compare-mobile__nav button[data-mobile-compare-prev]::before {
    transform: rotate(180deg);
  }

  .compare-mobile__nav button[data-mobile-compare-next] {
    background-image: url("/assets/dmax_modelo_SE/arrow-siguiente.png") !important;
  }

  .compare-mobile__versions,
  .compare-mobile__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-mobile__versions {
    min-height: 32px;
    align-items: center;
    color: #b8bdc0;
    background: #111516;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
  }

  .compare-mobile__body {
    color: #2d3135;
    background: #fff;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
  }

  .compare-mobile__column {
    display: grid;
    grid-auto-rows: minmax(76px, auto);
    align-content: start;
    padding: 18px 14px 22px;
    border-right: 1px solid #d9d9d9;
  }

  .compare-mobile__column:last-child {
    border-right: 0;
  }

  .compare-mobile .compare-spec {
    min-height: 76px;
    gap: 5px;
    font-size: 11px;
    line-height: 1.05;
  }

  .compare-mobile .compare-spec strong {
    font-size: 13px;
    line-height: 1.08;
  }


  .compare-mobile__body[data-compare-active="exterior"] .compare-mobile__column {
    grid-template-rows: 64px 64px 138px 64px !important;
    grid-auto-rows: auto;
  }

  .compare-mobile__body[data-compare-active="exterior"] .compare-spec {
    min-height: 0;
    height: 100%;
    align-content: start;
  }

  .compare-mobile__body[data-compare-active="exterior"] .compare-spec:nth-child(3) strong {
    min-height: 52px;
    display: grid;
    place-items: center;
  }

  .compare-mobile__body[data-compare-active="exterior"] .compare-spec:nth-child(3) {
    position: relative;
    padding-bottom: 18px;
  }

  .compare-mobile__body[data-compare-active="exterior"] .compare-spec:nth-child(3)::after {
    position: absolute;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%);
  }
  .compare-mobile .compare-spec::after {
    width: 44px;
  }

  .compare-mobile__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 22px 14px 26px;
    background: #171b1c;
  }

  .compare-mobile__actions div {
    display: grid;
    justify-items: center;
    gap: 10px;
  }

  .compare-mobile__actions a:not(.pill-link) {
    color: rgba(255,255,255,.72);
    font-size: 10px;
    font-weight: 800;
    text-decoration: underline;
  }

  .compare-mobile__actions .pill-link--light {
    min-width: 112px;
    min-height: 32px;
    margin-top: 2px;
    font-size: 10px;
  }
}

@media (max-width: 420px) {
  .dmax-hero {
    min-height: 390px;
    height: 53vh;
  }

  .dmax-hero__bg {
    height: 52%;
  }

  .dmax-hero__truck {
    bottom: 108px;
    width: 90vw;
  }

  .work-section {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .terrain-section {
    min-height: clamp(2050px, 590vw, 2500px);
    margin-top: -44px;
  }

  .dmax-gallery {
    padding-top: 92px;
    transform: none;
    padding-bottom: 148px;
  }

  .compare-section {
    margin-top: -420px;
    padding-bottom: 46px;
  }

  .compare-section__inner {
    padding-bottom: 46px;
  }

  .compare-grid {
    gap: 0;
    margin-top: 0;
  }
}
@media (max-width: 760px) {
  .features-slider__ui,
  .dmax-gallery__ui {
    width: min(100% - 28px, 640px);
    max-width: calc(100vw - 28px);
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
    overflow: hidden;
  }

  .features-slider__ui .slider-progress,
  .dmax-gallery__ui .slider-progress,
  .slider-progress {
    width: min(100%, 320px);
    max-width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .slider-arrows {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    overflow: hidden;
  }

  .slider-arrows button {
    flex: 0 0 28px;
  }
}

@media (max-width: 420px) {
  .features-slider__ui .slider-progress,
  .dmax-gallery__ui .slider-progress,
  .slider-progress,
  .slider-arrows {
    max-width: 270px;
  }
}
@media (max-width: 760px) {
  .compare-mobile__nav {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 0;
    overflow: visible;
  }

  .compare-mobile__nav button,
  .compare-mobile__nav button[data-mobile-compare-prev],
  .compare-mobile__nav button[data-mobile-compare-next] {
    width: 42px;
    height: 34px;
    padding: 0;
    border: 0;
    background-color: transparent !important;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    box-shadow: none;
    overflow: visible;
  }

  .compare-mobile__nav button::before {
    display: none;
  }

  .compare-mobile__nav button[data-mobile-compare-prev] {
    background-image: url("/assets/dmax_modelo_SE/prev-arrow.png") !important;
  }

  .compare-mobile__nav button[data-mobile-compare-next] {
    background-image: url("/assets/dmax_modelo_SE/next-arrow.png") !important;
  }

  .compare-mobile__nav-dots {
    min-width: 0;
  }
}
.compare-actions .pill-link--light:hover,
.compare-mobile__actions .pill-link--light:hover {
  border-color: var(--red);
}
.related-card .pill-link {
  color: #fff;
  border-color: var(--red);
}

.related-card .pill-link::before {
  background: var(--red);
}

.related-card .pill-link:hover,
.related-card .pill-link:hover span {
  color: var(--black);
  border-color: #fff;
}

.related-card .pill-link:hover::before {
  background: #fff;
}
.related-card .pill-link:hover,
.related-card .pill-link:hover span,
.other-models .related-card .pill-link:hover,
.other-models .related-card .pill-link:hover span {
  color: var(--black) !important;
}
.dmax-gallery-card button {
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.dmax-gallery-card button::before,
.dmax-gallery-card button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.dmax-gallery-card button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.dmax-dealer-modal__disclaimer {
  width: min(240px, 100%);
  margin: -10px 0 0 auto;
  color: #111314;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.18;
  text-align: right;
}
.dmax-image-disclaimer {
  position: absolute;
  z-index: 6;
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  pointer-events: none;
  text-align: right;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

.dmax-image-disclaimer--work {
  right: clamp(74px, 8vw, 128px);
  top: 58%;
  bottom: auto;
  transform: translateY(-50%);
}

.dmax-image-disclaimer--terrain {
  right: max(28px, calc((100% - 1120px) / 2 + 120px));
  bottom: clamp(840px, 92vw, 1160px);
}

.compare-section__disclaimer {
  position: relative;
  z-index: 5;
  margin: calc(clamp(160px, 11vw, 220px) * -1 + 6px) 0 clamp(144px, 10.5vw, 206px);
  color: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,.45);
}

@media (max-width: 700px) {
  .dmax-image-disclaimer--work {
    right: 44px;
    top: 55%;
  }

  .dmax-image-disclaimer--terrain {
    right: 18px;
    bottom: clamp(610px, 116vw, 840px);
  }

  .compare-section h2 {
    margin-bottom: 8px;
  }

  .compare-section__disclaimer {
    margin: 0 0 64px;
  }
}
