﻿:root {
  --red: #ed0018;
  --red-solid: #e50013;
  --black: #050607;
  --ink: #111314;
  --muted: #6f7680;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.postventa-page {
  overflow-x: hidden;
  background: #fff;
}

.postventa-quote {
  position: fixed;
  right: 28px;
  top: calc(35% + 292px);
  z-index: 1100;
  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);
}

.postventa-quote img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.pv-hero {
  position: relative;
  min-height: 58vw;
  max-height: 820px;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #07111b;
  isolation: isolate;
}

.pv-hero__video,
.pv-hero__shade,
.pv-wave {
  position: absolute;
  pointer-events: none;
}

.pv-hero__video {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) brightness(.62);
}

.pv-hero:not(.is-playing) .pv-hero__video {
  opacity: .55;
}

.pv-hero__shade {
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,8,17,.55), rgba(0,8,17,.25) 45%, rgba(0,8,17,.72));
}

.pv-hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  color: #fff;
  text-align: center;
  transform: translateY(-20vh);
}

.pv-hero__content h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 7vw, 102px);
  line-height: .95;
  font-weight: 900;
}

.pv-hero__content p {
  width: min(720px, 100%);
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 700;
}

.pv-wave {
  left: 0;
  right: 0;
  z-index: 4;
  width: 100%;
  min-width: 1280px;
  height: auto;
  clip-path: inset(0 100% 0 0);
  animation: pvWaveReveal 3s cubic-bezier(.25, 1, .5, 1) .5s forwards;
  will-change: clip-path, opacity;
}

.pv-wave--top {
  bottom: 0;
  opacity: .82;
}

.pv-wave--bottom {
  display: none;
}

@keyframes pvWaveReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.pv-hero-controls {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 20;
  display: flex;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.pv-hero.controls-active .pv-hero-controls {
  opacity: 1;
  visibility: visible;
}

.btn-hero-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 4px;
  color: #fff;
  background: rgba(0,0,0,.62);
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: background .2s ease, transform .2s ease;
}

.btn-hero-control:hover {
  background: rgba(0,0,0,.82);
  transform: scale(1.05);
}

.btn-hero-control svg {
  display: block;
  width: 20px;
  height: 20px;
}

.pv-hero.is-playing .pv-wave--top {
  animation: pvWaveHide 1s cubic-bezier(.5, 0, .75, 0) forwards;
}

@keyframes pvWaveHide {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
}

.pv-hero .icon-play,
.pv-hero .icon-unmuted,
.pv-hero [data-play],
.pv-hero [data-unmuted],
.pv-hero [data-pause],
.pv-hero [data-muted],
.pv-hero.is-muted .icon-unmuted,
.pv-hero:not(.is-muted) .icon-muted,
.pv-hero:not(.is-video-paused) .icon-play,
.pv-hero.is-video-paused .icon-pause {
  display: none;
}

.pv-hero.is-muted .icon-muted,
.pv-hero:not(.is-muted) .icon-unmuted,
.pv-hero.is-video-paused .icon-play,
.pv-hero:not(.is-video-paused) .icon-pause {
  display: block;
}

.pv-info {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(190px, 15vw, 260px) 0 clamp(76px, 9vw, 136px);
}

.pv-info::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: clamp(86px, 12vw, 150px);
  background: url("/assets/Postventa/waves-hero-inferior.png") center top / 100% auto no-repeat;
  pointer-events: none;
  transform: translateX(-50%);
}

.pv-info h2 {
  margin: 0 auto clamp(52px, 6vw, 86px);
  color: var(--red);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.pv-info-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
  margin-bottom: clamp(54px, 8vw, 108px);
}

.pv-info-row:last-child {
  margin-bottom: 0;
}

.pv-info-row img {
  width: 100%;
  display: block;
  border-radius: 0 42px 0 42px;
  object-fit: cover;
}

.pv-copy {
  display: grid;
  gap: 22px;
  color: #1e242a;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.22;
  font-weight: 700;
}

.pv-copy p,
.pv-copy h3 {
  margin: 0;
}

.pv-copy h3 {
  color: var(--red);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  font-weight: 900;
}

.pv-benefits {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  min-height: 650px;
  color: #fff;
  background: #000;
}

.pv-benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: min(280px, 28vw);
  height: 6px;
  background: var(--red);
  transform: translateX(-50%);
}

.pv-benefits__copy {
  display: grid;
  align-content: center;
  gap: clamp(46px, 6vw, 88px);
  padding: clamp(56px, 6vw, 92px) clamp(22px, 4vw, 56px);
}

.pv-benefits__copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 900;
}

.pv-benefits__copy p {
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.18;
  font-weight: 700;
}

.pv-benefits__slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.pv-benefit-card {
  position: relative;
  height: 100%;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.pv-benefit-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.8));
  pointer-events: none;
}

.pv-benefit-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity .28s ease, transform .44s cubic-bezier(.22,.68,.26,1), filter .28s ease;
}

.pv-benefit-card.is-changing > img {
  opacity: 0;
  transform: scale(1.018);
  filter: blur(8px);
}

.pv-benefit-card figcaption {
  position: absolute;
  left: clamp(42px, 7vw, 96px);
  right: clamp(28px, 6vw, 80px);
  bottom: clamp(52px, 7vw, 96px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.06;
  font-weight: 800;
}

.pv-benefit-card figcaption img {
  width: clamp(58px, 6vw, 86px);
  height: clamp(58px, 6vw, 86px);
  object-fit: contain;
}

.pv-slider-ui {
  position: absolute;
  left: clamp(36px, 7vw, 92px);
  right: clamp(36px, 7vw, 92px);
  bottom: 34px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.pv-slider-arrows {
  display: flex;
  gap: 10px;
}

.pv-slider-arrows button {
  width: 34px;
  height: 25px;
  border: 0;
  background-color: transparent;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

[data-benefit-prev] {
  background-image: url("/assets/Postventa/prev-arrow.png");
}

[data-benefit-next] {
  background-image: url("/assets/Postventa/next-arrow.png");
}

.pv-slider-ui strong {
  color: var(--red);
  font-size: 19px;
  font-weight: 900;
}

.pv-slider-ui > span {
  height: 3px;
  background: rgba(173,190,202,.75);
}

.pv-slider-ui i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--red);
  transition: width .28s ease;
}

.pv-maintenance {
  background: #fff;
}

.pv-maintenance__head {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(72px, 8vw, 110px) 24px clamp(78px, 6vw, 108px);
  color: #fff;
  text-align: center;
  background: var(--red-solid);
}

.pv-maintenance__head h2 {
  width: min(820px, 100%);
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
}

.pv-maintenance__head p {
  width: min(780px, 100%);
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.18;
  font-weight: 700;
}

.pv-tabs {
  display: flex;
  justify-content: center;
}

.pv-tabs button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.pv-tabs--primary {
  position: relative;
  z-index: 8;
  width: min(450px, calc(100% - 48px));
  margin: -22px auto 0;
  padding: 5px;
  border-radius: 999px;
  background: #050505;
}

.pv-tabs--primary button {
  flex: 1;
  min-height: 34px;
  border-radius: 999px;
  color: #fff;
  background: transparent;
}

.pv-tabs--primary button.active {
  background: var(--red);
}

.pv-tabs--secondary {
  position: relative;
  z-index: 5;
  gap: 18px;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 14px auto -64px;
  padding: 17px 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
  color: #111;
}

.pv-tabs--secondary button {
  position: relative;
  color: #333;
  background: transparent;
  font-size: 13px;
}

.pv-tabs--secondary button + button::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: #999;
  transform: translateY(-50%);
}

.pv-tabs--secondary button.active {
  color: var(--red);
}

.pv-maintenance__body {
  --reveal-lift: 0px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(30px, 5vw, 78px);
  width: 100%;
  margin: 0;
  transform: translateY(var(--reveal-lift));
  padding: 0 max(24px, calc((100% - 1180px) / 2)) 0 0;
  align-items: center;
  min-height: 560px;
  background: #fff;
}

.pv-maintenance__truck {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.pv-maintenance__truck::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -6px;
  z-index: 2;
  height: clamp(120px, 11vw, 190px);
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.78) 24%, rgba(255,255,255,.34) 62%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.pv-maintenance__truck img {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: block;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,.38) 42px, #000 132px);
  mask-image: linear-gradient(180deg, transparent 0, rgba(0,0,0,.38) 42px, #000 132px);
  transition: opacity .28s ease, transform .38s ease, filter .28s ease;
}

.pv-maintenance__truck img.is-changing {
  opacity: 0;
  transform: translateX(-18px) scale(.985);
  filter: blur(6px);
}

.pv-maintenance__controls {
  display: grid;
  gap: clamp(44px, 6vw, 76px);
  align-content: center;
  min-height: 500px;
  padding-bottom: 20px;
}

.pv-maintenance__controls.is-dmax {
  align-content: center;
}

.pv-maintenance__controls [hidden] {
  display: none !important;
}

.pv-maintenance__controls label {
  display: grid;
  gap: 10px;
}

.pv-maintenance__controls span {
  color: #888f96;
  font-size: .6rem;
  line-height: 1;
  font-weight: 400;
}

.pv-maintenance__controls select {
  width: min(390px, 100%);
  min-height: 42px;
  padding: 0 40px 0 10px;
  border: 2px solid #c8ccd0;
  border-radius: 0;
  color: #5a5f66;
  background:
    linear-gradient(45deg, transparent 50%, var(--red) 50%) calc(100% - 18px) 50% / 8px 8px no-repeat,
    linear-gradient(135deg, var(--red) 50%, transparent 50%) calc(100% - 12px) 50% / 8px 8px no-repeat,
    #fff;
  appearance: none;
  font-weight: 900;
}

.pv-maintenance__controls output {
  display: grid;
  align-items: center;
  min-height: 76px;
  width: min(520px, 100%);
  padding: 8px 24px;
  color: #fff;
  background: var(--red);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  font-weight: 900;
}

.pv-maintenance__legal {
  display: grid;
  justify-self: stretch;
  width: 100%;
  max-width: 520px;
  margin: 3px 0 0;
  padding: 0;
  color: #7e858d;
  text-align: right;
  font-size: 5px !important;
  line-height: .96;
  font-weight: 400;
  letter-spacing: 0;
}

.pv-maintenance__legal span {
  display: block;
}

.pv-downloads {
  display: grid;
  justify-items: center;
  gap: 44px;
  padding: clamp(150px, 13vw, 230px) 24px clamp(170px, 18vw, 280px);
  text-align: center;
}

.pv-downloads p {
  width: min(620px, 100%);
  margin: 0;
  color: #555;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.15;
  font-weight: 900;
}

.pv-downloads div {
  display: flex;
  justify-content: center;
  gap: clamp(36px, 6vw, 76px);
  flex-wrap: wrap;
}

.pv-pill {
  --knob-width: 220px;
  --knob-shift: 70px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 48px;
  padding: 6px;
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 999px;
  text-decoration: none;
  overflow: hidden;
  font-size: 13px;
  font-weight: 800;
  transition: border-color .28s ease;
}

.pv-pill::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: var(--knob-width);
  border-radius: 999px;
  background: var(--red);
  transition: transform .28s ease, background .28s ease;
}

.pv-pill span {
  position: absolute;
  left: 5px;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--knob-width);
  height: calc(100% - 10px);
  transform: translateY(-50%);
  transition: transform .28s ease;
}

.pv-pill:hover::before {
  transform: translateX(var(--knob-shift));
  background: #050505;
}

.pv-pill:hover {
  border-color: #050505;
}

.pv-pill:hover span {
  transform: translate(var(--knob-shift), -50%);
}

.pv-duo {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 560px;
  background: #000;
}

.pv-duo::before,
.pv-duo::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 4;
  width: min(260px, 28vw);
  height: 5px;
  background: var(--red);
  transform: translateX(-50%);
}

.pv-duo::before {
  top: 0;
}

.pv-duo::after {
  bottom: 0;
}

.pv-duo-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: start;
  min-height: 560px;
  padding-top: clamp(58px, 5.8vw, 92px);
  color: #fff;
  background: var(--duo-bg) center / cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}

.pv-duo-card--parts {
  --duo-bg: url("/assets/Postventa/4_Beneficios/isuzu_sitilo_PostVenta_refaccionesA.jpg");
}

.pv-duo-card--warranty {
  --duo-bg: url("/assets/Postventa/4_Beneficios/isuzu_sitilo_PostVenta_refaccionesB.jpg");
}

.pv-duo-card + .pv-duo-card {
  border-left: 1px solid rgba(255,255,255,.22);
}

.pv-duo-card h2 {
  position: relative;
  z-index: 3;
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 900;
}

.pv-duo-card button {
  --duo-icon: #fff;
  position: absolute;
  left: 50%;
  bottom: 46px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: transparent;
  background: var(--red);
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  font-weight: 900;
  overflow: hidden;
  transform: translateX(-50%);
  transition: color .25s ease, background .25s ease;
}

.pv-duo-card button::before,
.pv-duo-card button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 4px;
  border-radius: 999px;
  background: var(--duo-icon);
  transform: translate(-50%, -50%);
  transition: opacity .25s ease, background .25s ease, transform .25s ease;
}

.pv-duo-card button::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.pv-duo-card.is-open button {
  --duo-icon: var(--red);
  background: #fff;
}

.pv-duo-card.is-open button::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(.4);
}

.pv-duo-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(140px, 12vw, 180px) clamp(28px, 6vw, 90px) 104px;
  background: rgba(229,0,19,.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.pv-duo-card.is-open .pv-duo-card__overlay {
  opacity: 1;
  pointer-events: auto;
}

.pv-duo-card__overlay p {
  width: min(430px, 100%);
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.28;
  font-weight: 400;
}

.pv-locator {
  position: relative;
  z-index: 1;
  padding: clamp(70px, 7vw, 104px) 0 0;
  overflow: hidden;
  background: #fff;
}

.pv-locator::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(420px, 45vw, 650px);
  background:
    linear-gradient(180deg, rgba(2,13,28,.66), rgba(2,13,28,.52)),
    url("/assets/camiones-hub/Isuzu_site_Home_googlemaps_back.jpg") center / cover no-repeat;
  pointer-events: none;
}

.pv-locator h2 {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 46px;
  color: #fff;
  text-align: center;
  font-size: clamp(23px, 2.5vw, 36px);
  line-height: 1;
  font-weight: 900;
}

.pv-locator__stage {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.pv-locator .search-card {
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 5;
  width: 300px;
  min-height: 220px;
  padding: 34px 16px 18px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.pv-locator .search-tabs {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.pv-locator .search-tabs button {
  min-height: 28px;
  border: 0;
  color: #555;
  background: #d5d6da;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.pv-locator .search-tabs button.active {
  color: #fff;
  background: var(--red);
}

.pv-locator .search-card h3 {
  margin: 0 0 14px;
  color: #555f69;
  font-size: 24px;
  line-height: 1.1;
}

.pv-locator .search-field {
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 10px;
  margin-bottom: 10px;
}

.pv-locator .search-field input {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #bfc4ca;
}

.pv-locator .search-field button {
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.locator-status {
  min-height: 16px;
  margin: 0 0 10px;
  color: #7a828c;
  font-size: 12px;
  line-height: 1.28;
}

.pv-locator .results {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
  overscroll-behavior: contain;
}

.pv-locator .result-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #c8cdd2;
  background: #fff;
  color: #555;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.25;
  overflow-wrap: anywhere;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pv-locator .result-card strong {
  grid-column: 1 / 2;
  color: #777;
  font-size: 13px;
  line-height: 1.15;
}

.pv-locator .result-card small {
  grid-column: 2 / 3;
  grid-row: 1;
  justify-self: end;
  color: #888;
  font-weight: 800;
  white-space: nowrap;
}

.pv-locator .result-card span {
  grid-column: 1 / -1;
}

.pv-locator .result-card:hover,
.pv-locator .result-card.is-active {
  border-color: var(--red);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

.pv-locator .results-status {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid var(--red);
  background: #f5f6f8;
  color: #555;
  font-size: 13px;
  line-height: 1.35;
}

.pv-locator .map-wrap {
  position: relative;
  margin-left: 58px;
  padding-bottom: 28px;
}

.pv-locator .dealer-map {
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 0 52px 0 52px;
  background:
    linear-gradient(rgba(118,216,229,.7), rgba(118,216,229,.7)),
    url("/assets/camiones-hub/Isuzu_sitio_productos_mapa.jpg") center / cover no-repeat;
  box-shadow: 0 30px 60px rgba(0,0,0,.22);
}

.fallback-map {
  position: relative;
  height: 100%;
}

.fallback-marker {
  position: absolute;
  width: 45px;
  height: 59px;
  border: 0;
  background: url("/assets/camiones-hub/marker.png") center / contain no-repeat;
  cursor: pointer;
  transform: translate(-50%, -100%);
}

.fallback-popup {
  position: absolute;
  left: 50%;
  top: 24px;
  z-index: 2;
  width: min(280px, calc(100% - 32px));
  padding: 13px 14px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 28px rgba(0,0,0,.22);
  transform: translateX(-50%);
}

.map-popup {
  display: grid;
  gap: 4px;
  max-width: 260px;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.3;
}

.map-popup b {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.15;
}

.map-popup strong {
  width: fit-content;
  margin-top: 2px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
}

.pv-locator .nearby-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  min-height: 62px;
  min-width: min(390px, 90%);
  padding: 12px 28px;
  border: 9px solid #050505;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 900;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.pv-locator .nearby-btn.is-active,
.pv-locator .nearby-btn:hover {
  color: var(--red);
  background: #fff;
  border-color: var(--red);
}

.pv-locator__download {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 26px;
  width: min(760px, calc(100% - 48px));
  margin: clamp(96px, 10vw, 160px) auto 0;
  padding-bottom: clamp(240px, 24vw, 420px);
  text-align: center;
}

.pv-locator__download p {
  margin: 0;
  color: #4b525a;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.3;
  font-weight: 800;
}

.pv-locator__download .pv-pill {
  --knob-width: 154px;
  --knob-shift: 26px;
  margin-top: 44px;
  min-width: 190px;
}

.pv-lines {
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 0;
  width: max(100%, 1280px);
  transform: translateX(-50%);
  pointer-events: none;
}

.pv-reveal {
  opacity: 0;
  transform: translateY(calc(var(--reveal-lift, 0px) + 30px));
  filter: blur(6px);
  transition:
    opacity .72s cubic-bezier(.22,.68,.26,1),
    transform .72s cubic-bezier(.22,.68,.26,1),
    filter .72s cubic-bezier(.22,.68,.26,1);
}

.pv-reveal.is-visible {
  opacity: 1;
  transform: translateY(var(--reveal-lift, 0px));
  filter: blur(0);
}

@media (max-width: 900px) {
  .postventa-quote {
    right: 14px;
  }

  .pv-hero {
    min-height: 620px;
    height: 82vh;
  }

  .pv-hero__content {
    min-height: 66%;
  }

  .pv-info-row,
  .pv-info-row--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pv-info-row--reverse img {
    order: 2;
  }

  .pv-benefits {
    grid-template-columns: 1fr;
  }

  .pv-benefits__copy {
    padding-bottom: 30px;
  }

  .pv-benefits__slider,
  .pv-benefit-card {
    min-height: 480px;
  }

  .pv-slider-ui {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(680px, calc(100% - 48px));
    margin: 20px auto 42px;
  }

  .pv-maintenance__body {
    --reveal-lift: 0px;
    grid-template-columns: 1fr;
    margin: 0;
    min-height: 0;
    padding: 46px 0 0;
  }

  .pv-maintenance__truck {
    min-height: 330px;
    justify-items: center;
  }

  .pv-maintenance__controls {
    justify-items: center;
    text-align: center;
    min-height: auto;
    padding: 0 24px 34px;
  }

  .pv-maintenance__legal {
    justify-self: center;
    width: min(520px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 38px;
    text-align: center;
  }

  .pv-duo {
    grid-template-columns: 1fr;
  }

  .pv-duo-card + .pv-duo-card {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.22);
  }

  .pv-locator__stage {
    display: grid;
    gap: 18px;
  }

  .pv-locator .search-card {
    position: relative;
    top: auto;
    width: min(360px, 100%);
  }

  .pv-locator .map-wrap {
    margin-left: 0;
  }

  .pv-locator .dealer-map {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .pv-hero {
    min-height: 540px;
  }

  .pv-hero-controls {
    left: 16px;
    bottom: 86px;
  }

  .pv-wave {
    width: 178%;
    min-width: 760px;
  }

  .pv-info {
    width: calc(100% - 28px);
    padding-top: 150px;
  }

  .pv-info h2 {
    font-size: 31px;
  }

  .pv-info-row img {
    border-radius: 0 28px 0 28px;
  }

  .pv-benefits__copy {
    padding: 54px 22px 22px;
  }

  .pv-benefit-card figcaption {
    left: 22px;
    right: 22px;
    bottom: 38px;
  }

  .pv-maintenance__head {
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .pv-tabs--primary {
    width: calc(100% - 28px);
  }

  .pv-tabs--secondary {
    flex-wrap: wrap;
    gap: 14px 20px;
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    margin: 12px auto -52px;
    padding: 14px 18px;
  }

  .pv-maintenance__body {
    --reveal-lift: 0px;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
  }

  .pv-maintenance__truck img {
    width: min(520px, 100%);
  }

  .pv-maintenance__controls output {
    font-size: 40px;
  }

  .pv-downloads div {
    flex-direction: column;
    align-items: center;
  }

  .pv-pill {
    min-width: 250px;
    color: #fff;
    background: var(--red);
  }

  .pv-pill::before {
    display: none;
  }

  .pv-pill span {
    position: static;
    width: auto;
    height: auto;
    transform: none;
  }

  .pv-pill:hover span {
    transform: none;
  }

  .pv-duo-card {
    min-height: 420px;
  }

  .pv-locator__stage {
    width: calc(100% - 28px);
  }

  .pv-locator__stage {
    margin-top: 0;
  }

  .pv-locator .dealer-map {
    height: 330px;
    border-radius: 0 30px 0 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

