.mc-kit {
  --mc-yellow: #fffb00;
  --mc-black: #080808;
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 52px) 18px;
  color: #0b0b0b;
  background: #fff;
}

.mc-kit__shell {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.mc-kit__header {
  max-width: 650px;
  margin: 0 auto 20px;
  text-align: center;
}

.mc-kit__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #171717;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mc-kit__eyebrow::before,
.mc-kit__eyebrow::after {
  width: 22px;
  height: 2px;
  background: var(--mc-yellow);
  content: "";
}

.mc-kit__header h2 {
  position: relative;
  display: inline-block;
  margin: 9px 0 0;
  padding-bottom: 10px;
  color: #070707;
  font-size: clamp(42px, 4.4vw, 58px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.mc-kit__header h2::after {
  position: absolute;
  right: 22%;
  bottom: 0;
  left: 22%;
  height: 4px;
  background: var(--mc-yellow);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(255, 251, 0, .28);
  content: "";
}

.mc-kit__header > p {
  max-width: 540px;
  margin: 11px auto 0;
  color: #666a72;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.5;
}

.mc-kit__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 13px;
}

.mc-kit__badges span {
  padding: 6px 10px;
  color: #353535;
  background: #f6f6f6;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.mc-kit__experience {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #f7f7f7;
  border: 1px solid #e4e4e4;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, .10);
}

.mc-kit__experience::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: var(--mc-yellow);
  content: "";
  pointer-events: none;
}

.mc-kit__stage {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 853 / 461;
  min-height: 0;
  overflow: hidden;
  background: #080808;
  transition: aspect-ratio .45s ease;
}

.mc-kit[data-mc-kit-vehicle="car"][data-mc-kit-view="interior"] .mc-kit__stage { aspect-ratio: 3 / 2; }

.mc-kit__scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-kit__visual {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.mc-kit__visual--interior { background: #eef1f3; }
.mc-kit__visual.is-active { z-index: 2; opacity: 1; pointer-events: auto; }

.mc-kit__vehicle-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.mc-kit__vehicle-layer { object-fit: contain; filter: drop-shadow(0 16px 14px rgba(0,0,0,.48)); }

.mc-kit__hotspot {
  position: absolute;
  top: var(--mc-kit-y);
  left: var(--mc-kit-x);
  z-index: 4;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.mc-kit__hotspot[hidden] { display: none; }
.mc-kit__area-list [data-mc-kit-scope] { display: none; }
.mc-kit[data-mc-kit-vehicle="car"][data-mc-kit-view="exterior"] .mc-kit__area-list [data-mc-kit-scope="car-exterior"],
.mc-kit[data-mc-kit-vehicle="car"][data-mc-kit-view="interior"] .mc-kit__area-list [data-mc-kit-scope="car-interior"],
.mc-kit[data-mc-kit-vehicle="moto"] .mc-kit__area-list [data-mc-kit-scope="moto-exterior"],
.mc-kit[data-mc-kit-vehicle="heavy"] .mc-kit__area-list [data-mc-kit-scope="heavy-exterior"] { display: flex; }

.mc-kit__hotspot::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  background: rgba(255,251,0,.18);
  border: 1px solid rgba(20,20,20,.38);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) scale(.65);
  animation: mc-kit-pulse 2.6s ease-out infinite;
}

.mc-kit__hotspot-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--mc-yellow);
  border: 3px solid #090909;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--mc-yellow), 0 3px 10px rgba(0,0,0,.25);
  transform: translate(-50%, -50%);
  transition: transform .18s ease, box-shadow .18s ease;
}

.mc-kit__hotspot-label {
  position: absolute;
  bottom: calc(100% - 2px);
  left: 50%;
  width: max-content;
  max-width: 155px;
  padding: 6px 9px;
  color: #080808;
  background: var(--mc-yellow);
  border-radius: 7px;
  box-shadow: 0 7px 20px rgba(0,0,0,.18);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition: opacity .18s ease, transform .18s ease;
  white-space: nowrap;
}

.mc-kit__hotspot:hover .mc-kit__hotspot-label,
.mc-kit__hotspot:focus-visible .mc-kit__hotspot-label,
.mc-kit__hotspot.is-active .mc-kit__hotspot-label { opacity: 1; transform: translate(-50%, 0); }

.mc-kit__hotspot:hover .mc-kit__hotspot-dot,
.mc-kit__hotspot:focus-visible .mc-kit__hotspot-dot,
.mc-kit__hotspot.is-active .mc-kit__hotspot-dot { transform: translate(-50%, -50%) scale(1.25); box-shadow: 0 0 0 5px rgba(255,251,0,.3), 0 4px 12px rgba(0,0,0,.3); }
.mc-kit__hotspot:focus-visible { outline: 2px solid #090909; outline-offset: 2px; border-radius: 50%; }

.mc-kit__instructions {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: #555;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  box-shadow: 0 5px 18px rgba(0,0,0,.07);
  font-size: 9px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.mc-kit__instructions svg { width: 15px; height: 15px; fill: none; stroke: #090909; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.mc-kit__vehicle-switch,
.mc-kit__view-switch {
  position: absolute;
  top: 16px;
  z-index: 6;
  display: flex;
  gap: 3px;
  padding: 4px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,0,0,.09);
  backdrop-filter: blur(9px);
}

.mc-kit__vehicle-switch { left: 50%; transform: translateX(-50%); }
.mc-kit__view-switch { right: 16px; }
.mc-kit__view-switch[hidden] { display: none !important; }
.mc-kit.is-transitioning .mc-kit__vehicle-switch,
.mc-kit.is-transitioning .mc-kit__view-switch { pointer-events: none; }

.mc-kit__vehicle-switch button,
.mc-kit__view-switch button {
  min-height: 32px;
  padding: 0 13px;
  color: #5c5c5c;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.mc-kit__vehicle-switch button:hover,
.mc-kit__vehicle-switch button:focus-visible,
.mc-kit__vehicle-switch button.is-active,
.mc-kit__view-switch button:hover,
.mc-kit__view-switch button:focus-visible,
.mc-kit__view-switch button.is-active { color: #080808; background: var(--mc-yellow); outline: 0; }

.mc-kit__panel {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 8;
  display: flex;
  width: min(310px, calc(100% - 28px));
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #111;
  background: rgba(255,255,255,.97);
  border: 1px solid #dedede;
  border-radius: 17px;
  box-shadow: -15px 15px 42px rgba(0,0,0,.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 30px));
  transition: opacity .25s ease, transform .38s cubic-bezier(.2,.8,.2,1);
}

.mc-kit.is-panel-open .mc-kit__panel { opacity: 1; pointer-events: auto; transform: none; }

.mc-kit__panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: var(--mc-yellow);
  background: #080808;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.mc-kit__panel-close svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.mc-kit__panel-kicker { color: #5d5d5d; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.mc-kit__panel h3 { margin: 7px 0 10px; color: #080808; font-size: clamp(25px, 3vw, 34px); font-weight: 900; line-height: 1; letter-spacing: -.035em; }
.mc-kit__panel > p { margin: 0; color: #62656c; font-size: 13px; line-height: 1.5; }

.mc-kit__panel-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0;
  padding: 11px;
  color: #44474d;
  background: #f5f5f6;
  border: 1px solid #e2e3e6;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
}

.mc-kit__panel-status-icon { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; color: #050505; background: var(--mc-yellow); border-radius: 8px; }
.mc-kit__panel-status-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }

.mc-kit__panel-action {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  color: var(--mc-yellow) !important;
  background: #080808;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .03em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.mc-kit__panel-action:hover { color: #080808 !important; background: var(--mc-yellow); transform: translateY(-2px); }
.mc-kit__panel-action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.mc-kit__footer { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-top: 10px; }
.mc-kit__accessible { flex: 1 1 auto; background: #fafafa; border: 1px solid #e5e5e5; border-radius: 13px; }
.mc-kit__accessible summary { display: grid; min-height: 48px; grid-template-columns:auto 1fr 18px; align-items: center; gap: 9px; padding: 0 15px; cursor: pointer; list-style: none; }
.mc-kit__accessible summary::-webkit-details-marker { display: none; }
.mc-kit__accessible summary > span { color: #171717; font-size: 11px; font-weight: 850; }
.mc-kit__accessible summary small { color: #7b7e84; font-size: 9px; }
.mc-kit__accessible summary svg { width: 16px; height: 16px; fill: none; stroke: #111; stroke-width: 1.8; transition: transform .2s ease; }
.mc-kit__accessible[open] summary svg { transform: rotate(180deg); }

.mc-kit__area-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; padding: 0 10px 10px; }
.mc-kit__area-list button { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 7px; padding: 0 10px; color: #242424; background: #fff; border: 1px solid #dedede; border-radius: 9px; cursor: pointer; font-size: 9px; font-weight: 750; text-align: left; transition: color .18s ease, background .18s ease, border-color .18s ease; }
.mc-kit__area-list button:hover,
.mc-kit__area-list button:focus-visible,
.mc-kit__area-list button.is-active { color: #080808; background: var(--mc-yellow); border-color: var(--mc-yellow); outline: 0; }
.mc-kit__area-list svg { width: 14px; height: 14px; flex: 0 0 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.mc-kit__credit { flex: 0 0 auto; padding: 5px 0; color: #8a8d92 !important; font-size: 8px; line-height: 1.35; text-align: right; text-decoration: none !important; }
.mc-kit__credit:hover { color: #111 !important; text-decoration: underline !important; text-decoration-color: var(--mc-yellow) !important; text-underline-offset: 3px; }
.mc-kit__backdrop { display: none; }

@keyframes mc-kit-pulse {
  0% { opacity: .8; transform: translate(-50%, -50%) scale(.55); }
  75%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

.mc-kit__visual.is-entering-view { z-index: 3; animation: mc-kit-enter-cabin .64s cubic-bezier(.2,.75,.2,1) both; }
.mc-kit__visual.is-leaving-view { z-index: 2; animation: mc-kit-leave-cabin .58s ease both; }
.mc-kit__visual.is-entering-vehicle {
  z-index: 3;
  opacity: 1;
  transition: none;
  animation: mc-kit-vehicle-arrive .88s cubic-bezier(.16,.76,.22,1) both;
}
.mc-kit__visual.is-leaving-vehicle {
  z-index: 2;
  opacity: 1;
  transition: none;
  animation: mc-kit-vehicle-leave .78s cubic-bezier(.55,.02,.82,.35) both;
}

.mc-kit__visual.is-retired-vehicle {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate3d(-118%, 1.1%, 0) !important;
  transition: none !important;
}

.mc-kit__visual.is-entering-vehicle .mc-kit__hotspot,
.mc-kit__visual.is-leaving-vehicle .mc-kit__hotspot { opacity: 0; }

@keyframes mc-kit-enter-cabin {
  from { opacity: 0; filter: blur(7px); transform: scale(1.14); }
  to { opacity: 1; filter: blur(0); transform: scale(1); }
}

@keyframes mc-kit-leave-cabin {
  from { opacity: 1; filter: blur(0); transform: scale(1); }
  to { opacity: 0; filter: blur(5px); transform: scale(1.1); }
}

@keyframes mc-kit-vehicle-arrive {
  0% { transform: translate3d(118%, 1.2%, 0) rotate(.35deg); }
  72% { transform: translate3d(-1.8%, 0, 0) rotate(-.12deg); }
  88% { transform: translate3d(.65%, 0, 0); }
  100% { transform: translate3d(0, 0, 0) rotate(0); }
}

@keyframes mc-kit-vehicle-leave {
  0% { transform: translate3d(0, 0, 0) rotate(0); }
  16% { transform: translate3d(-1.2%, .15%, 0) rotate(-.08deg); }
  100% { transform: translate3d(-118%, 1.1%, 0) rotate(-.32deg); }
}

@media (max-width: 767.98px) {
  .mc-kit { padding: 32px 10px 40px; }
  .mc-kit__header { max-width: 390px; margin-bottom: 18px; padding: 0 6px; }
  .mc-kit__eyebrow { gap: 8px; font-size: 10px; letter-spacing: .11em; }
  .mc-kit__eyebrow::before,
  .mc-kit__eyebrow::after { width: 20px; }
  .mc-kit__header h2 { margin-top: 9px; padding-bottom: 9px; font-size: clamp(40px, 11vw, 48px); }
  .mc-kit__header h2::after { right: 25%; left: 25%; height: 3px; }
  .mc-kit__header > p { max-width: 350px; margin-top: 10px; font-size: 15px; line-height: 1.45; }
  .mc-kit__badges { margin-top: 10px; }
  .mc-kit__badges span { padding: 5px 8px; font-size: 7px; }
  .mc-kit__experience { overflow: visible; border-radius: 17px; }
  .mc-kit__stage { height: auto; min-height: 0; aspect-ratio: 1.65 / 1; overflow: hidden; border-radius: 16px; }
  .mc-kit[data-mc-kit-vehicle="car"][data-mc-kit-view="interior"] .mc-kit__stage { aspect-ratio: 3 / 2; }
  .mc-kit__instructions {
    top: 10px;
    left: 10px;
    gap: 6px;
    max-width: calc(100% - 150px);
    padding: 7px 10px;
    font-size: 8px;
    line-height: 1.2;
  }
  .mc-kit__instructions svg { width: 14px; height: 14px; flex: 0 0 auto; }
  .mc-kit__instructions span { display: inline; white-space: nowrap; }
  .mc-kit__view-switch { top: 9px; right: 9px; padding: 3px; }
  .mc-kit__vehicle-switch {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: max-content;
    margin: 8px auto 11px;
    padding: 2px;
    background: #f4f4f4;
    box-shadow: 0 4px 13px rgba(0,0,0,.08);
    transform: none;
    backdrop-filter: none;
  }
  .mc-kit__vehicle-switch button {
    min-height: 27px;
    padding: 0 9px;
    font-size: 7px;
  }
  .mc-kit__view-switch button { min-height: 29px; padding: 0 10px; font-size: 7px; }
  .mc-kit__hotspot { width: 32px; height: 32px; }
  .mc-kit__hotspot-label { max-width: 120px; padding: 6px 8px; font-size: 8px; }
  .mc-kit__footer { display: block; }
  .mc-kit__accessible summary { grid-template-columns:1fr 18px; min-height: 48px; }
  .mc-kit__accessible summary small { display: none; }
  .mc-kit__area-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mc-kit__area-list button { min-height: 44px; padding: 0 8px; font-size: 8px; }
  .mc-kit__credit { display: block; padding-top: 8px; text-align: center; }

  .mc-kit__panel {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2202;
    width: auto;
    max-height: min(76vh, 600px);
    justify-content: flex-start;
    padding: 30px 21px calc(23px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border-radius: 21px 21px 0 0;
    opacity: 0;
    transform: translateY(105%);
  }

  .mc-kit__panel::before { display: block; width: 42px; height: 4px; flex: 0 0 auto; margin: -17px auto 18px; background: #d7d7da; border-radius: 99px; content: ""; }
  .mc-kit.is-panel-open .mc-kit__panel { opacity: 1; transform: none; }
  .mc-kit__panel h3 { padding-right: 32px; font-size: 29px; }
  .mc-kit__panel-close { top: 17px; right: 17px; }
  .mc-kit__backdrop { position: fixed; inset: 0; z-index: 2201; display: block; padding: 0; background: rgba(0,0,0,.62); border: 0; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .mc-kit.is-panel-open .mc-kit__backdrop { opacity: 1; pointer-events: auto; }
  body.mc-kit-panel-open { overflow: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .mc-kit *, .mc-kit *::before, .mc-kit *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 767.98px) {
  .mc-kit__hotspot[data-mc-kit-scope="car-exterior"][data-mc-kit-area="motor"] { --mc-kit-x: 34% !important; --mc-kit-y: 43% !important; }
  .mc-kit__hotspot[data-mc-kit-scope="car-exterior"][data-mc-kit-area="farois"] { --mc-kit-x: 37% !important; --mc-kit-y: 49% !important; }
  .mc-kit__hotspot[data-mc-kit-scope="car-exterior"][data-mc-kit-area="plasticos-externos"] { --mc-kit-x: 23% !important; --mc-kit-y: 60% !important; }
}
