/* Mekka Store â€” vitrine vermelho / preto / cards brancos */

:root {
  --mk-red: #c8102e;
  --mk-red-deep: #9a0d24;
  --mk-black: #000000;
  --mk-surface: #111;
  --mk-ink: #f3f3f3;
  --mk-muted: #9b9b9b;
  --mk-card: #ffffff;
  --mk-card-ink: #151515;
  --mk-logo-ratio: 345 / 64;
  --mk-max: 1400px;
  --mk-font: Manrope, "Segoe UI", sans-serif;
  --mk-font-display: Outfit, Manrope, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { color-scheme: dark; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--mk-font);
  background: var(--mk-black);
  color: var(--mk-ink);
  line-height: 1.5;
  min-height: 100vh;
}

::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 {
  font-family: var(--mk-font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

/* UI chrome: sem seleção de texto */
button,
label,
summary,
[role="button"],
[role="tab"],
[role="menuitem"],
.mk-btn,
.mk-header,
.mk-sidebar,
.mk-footer__link-btn,
.mk-header__link-btn,
.mk-header__menu,
.mk-visit__route,
.mk-directions-modal__route,
.mk-bi__az-btn,
.mk-pager,
.mk-product-panels__tab,
.mk-product-panels__acc,
.mk-catalog-filters,
.mk-quote__fab,
.mk-breadcrumb {
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Logo: proporÃ§Ã£o nativa do arquivo (nunca esticar) */
.mk-logo {
  display: block;
  width: auto !important;
  height: auto !important;
  max-height: 2.65rem;
  max-width: min(16.5rem, 56vw);
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.mk-logo--footer {
  max-height: 2.8rem;
  max-width: min(17rem, 80%);
}

.mk-logo--hero {
  max-height: none;
  width: auto !important;
  max-width: min(28rem, 86vw);
  height: auto !important;
}

/* Header vermelho */
.mk-header {
  --mk-header-glow: rgba(255, 255, 255, .22);
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  background-color: var(--mk-red);
  background-image:
    radial-gradient(ellipse 70% 140% at 8% 50%, rgba(96, 6, 20, .42), transparent 58%),
    radial-gradient(ellipse 55% 120% at 92% 45%, rgba(72, 4, 16, .38), transparent 55%),
    radial-gradient(ellipse 45% 90% at 55% 120%, rgba(110, 10, 28, .35), transparent 62%),
    linear-gradient(105deg, #b10f28 0%, var(--mk-red) 42%, #d41230 68%, var(--mk-red) 100%);
  background-size: 180% 180%, 170% 170%, 150% 150%, 220% 100%;
  background-position: 0% 50%, 100% 40%, 50% 100%, 0% 0%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
  overflow: visible;
  animation: mk-header-aurora 14s ease-in-out infinite;
}

.mk-header__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.mk-header__glow::before,
.mk-header__glow::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* Spotlight suave (borra lenta) — vermelho mais escuro */
.mk-header__glow::before {
  top: -90%;
  left: -25%;
  width: 58%;
  height: 280%;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(88, 5, 18, .55) 0%,
    rgba(110, 8, 24, .32) 36%,
    transparent 70%
  );
  filter: blur(26px);
  opacity: .85;
  mix-blend-mode: multiply;
  animation: mk-header-spot 8.5s ease-in-out infinite;
}

/* Faixa de luz diagonal (sheen) — ambiente + loading */
.mk-header__glow::after {
  top: -45%;
  bottom: -45%;
  left: 0;
  width: 42%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, .04) 34%,
    rgba(255, 255, 255, .22) 47%,
    rgba(255, 255, 255, .5) 50%,
    rgba(255, 255, 255, .22) 53%,
    rgba(255, 255, 255, .04) 66%,
    transparent 100%
  );
  filter: blur(8px);
  transform: translateX(-140%) skewX(-16deg);
  opacity: 0;
  mix-blend-mode: soft-light;
  /* Delay evita flash ao entrar/voltar na página */
  animation: mk-header-sheen 11s cubic-bezier(.4, 0, .2, 1) infinite;
  animation-delay: 8s;
}

.mk-header.is-nav-loading .mk-header__glow::after {
  animation: mk-header-sheen-load .9s cubic-bezier(.4, 0, .2, 1) infinite;
  animation-delay: 0s;
}

.mk-header.is-sheen-reset .mk-header__glow::after {
  animation: none !important;
  opacity: 0 !important;
}

.mk-header > *:not(.mk-header__glow) {
  position: relative;
  z-index: 1;
}

@keyframes mk-header-aurora {
  0%, 100% {
    background-position: 0% 50%, 100% 40%, 50% 100%, 0% 0%;
  }
  33% {
    background-position: 60% 30%, 30% 70%, 70% 20%, 40% 0%;
  }
  66% {
    background-position: 100% 60%, 0% 30%, 30% 0%, 80% 0%;
  }
}

@keyframes mk-header-spot {
  0%, 100% {
    transform: translate3d(-10%, 0, 0) scale(1);
    opacity: .65;
  }
  50% {
    transform: translate3d(100%, 6%, 0) scale(1.18);
    opacity: .95;
  }
}

@keyframes mk-header-sheen {
  0%, 78% {
    transform: translateX(-140%) skewX(-16deg);
    opacity: 0;
  }
  82% {
    opacity: 1;
  }
  92% {
    transform: translateX(280%) skewX(-16deg);
    opacity: 1;
  }
  96%, 100% {
    transform: translateX(280%) skewX(-16deg);
    opacity: 0;
  }
}

@keyframes mk-header-sheen-load {
  0% {
    transform: translateX(-140%) skewX(-16deg);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  78% {
    transform: translateX(280%) skewX(-16deg);
    opacity: 1;
  }
  100% {
    transform: translateX(280%) skewX(-16deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-header {
    animation: none;
    background-image: none;
    background-color: var(--mk-red);
  }

  .mk-header__glow::before,
  .mk-header__glow::after {
    animation: none !important;
    opacity: 0;
  }
}

.mk-header__bar {
  width: min(var(--mk-max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 4.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 1.35rem;
  row-gap: .55rem;
  padding: .55rem 0;
  overflow: visible;
}

@media (max-width: 719px) {
  .mk-header__bar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "search search";
    align-items: center;
    min-height: 0;
    column-gap: .65rem;
    row-gap: .55rem;
    padding: .55rem 0 .7rem;
  }

  .mk-header__start {
    grid-area: brand;
    width: auto;
    justify-content: flex-start;
    gap: 0;
  }

  .mk-header__end {
    display: flex;
    grid-area: actions;
    gap: .15rem;
    align-items: center;
  }

  .mk-header__links,
  .mk-header__cta {
    display: none !important;
  }

  .mk-header__menu {
    width: 2.15rem;
    height: 2.55rem;
    gap: 5px;
  }

  .mk-header__search {
    display: flex;
    grid-area: search;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
  }

  .mk-header__search input {
    font-size: 16px; /* evita zoom automático no iOS */
    line-height: 1.25;
    padding: .72rem 2.35rem .72rem .95rem;
  }

  .mk-header__search.is-ai-hint input {
    padding-left: 2.25rem;
  }

  .mk-header__search input::placeholder {
    font-size: .8125rem;
    letter-spacing: .01em;
    color: #8a8a8a;
    opacity: 1;
  }

  .mk-logo {
    max-height: 2.35rem;
    max-width: min(11.5rem, 58vw);
  }

  body.mk-nav-open .mk-header__menu span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  body.mk-nav-open .mk-header__menu span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}

@media (min-width: 720px) {
  .mk-header__bar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 1.5rem;
  }
}

@media (min-width: 960px) {
  .mk-header__bar {
    column-gap: 1.75rem;
  }
}

.mk-header__start {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
  justify-self: start;
}

.mk-header__menu {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  flex-shrink: 0;
  width: 1.7rem;
  height: 2.6rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  opacity: .95;
}

.mk-header__menu:hover {
  opacity: 1;
}

.mk-header__menu span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}

body.mk-nav-open .mk-header__menu span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
body.mk-nav-open .mk-header__menu span:nth-child(2) {
  opacity: 0;
}
body.mk-nav-open .mk-header__menu span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mk-header__brand {
  min-width: 0;
  display: flex;
  align-items: center;
}

.mk-header__search {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  background: #fff;
  border-radius: 999px;
  overflow: visible;
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

@media (min-width: 720px) {
  .mk-header__search input {
    font-size: inherit;
  }
}

.mk-header__search.is-suggest-open {
  border-radius: 1rem 1rem 0 0;
  z-index: 60;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
}

.mk-search-suggest {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.mk-header__search input,
.mk-search-page__form input {
  display: block;
  width: 100%;
  flex: 1;
  border: 0;
  outline: 0;
  padding: .7rem 2rem .7rem 1rem;
  font: inherit;
  color: #161616;
  background: transparent;
  min-width: 0;
  transition: padding-left .2s ease;
}

.mk-header__search.is-ai-hint input,
.mk-search-page__form.is-ai-hint input {
  padding-left: 2.45rem;
}

.mk-search-ai-hint {
  position: absolute;
  left: .7rem;
  top: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  margin: 0;
  padding: 0;
  color: var(--mk-red, #c8102e);
  pointer-events: none;
  opacity: 0;
  transform: scale(.85);
  transition: opacity .22s ease, transform .22s ease;
}

.mk-header__search.is-ai-hint .mk-search-ai-hint,
.mk-search-page__form.is-ai-hint .mk-search-ai-hint {
  opacity: 1;
  transform: scale(1);
}

.mk-search-ai-hint[hidden] {
  display: none !important;
}

.mk-search-ai-hint svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  transform-origin: 50% 50%;
  animation: mk-search-ai-spark 1.7s ease-in-out infinite;
}

.mk-header__search.is-ai-hint .mk-search-ai-hint svg,
.mk-search-page__form.is-ai-hint .mk-search-ai-hint svg {
  filter: drop-shadow(0 0 4px rgba(200, 16, 46, .35));
}

@keyframes mk-search-ai-spark {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: .82;
  }
  35% {
    transform: scale(1.18) rotate(12deg);
    opacity: 1;
  }
  60% {
    transform: scale(.92) rotate(-8deg);
    opacity: .9;
  }
}

.mk-header__search input {
  border-radius: 999px 0 0 999px;
}

.mk-header__search input[type="search"]::-webkit-search-decoration,
.mk-header__search input[type="search"]::-webkit-search-cancel-button,
.mk-search-page__form input[type="search"]::-webkit-search-decoration,
.mk-search-page__form input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.mk-header__search.is-suggest-open input {
  border-radius: 1rem 0 0 0;
}

.mk-header__search button[type="submit"],
.mk-search-page__form > button[type="submit"] {
  border: 0;
  background: transparent;
  color: var(--mk-red);
  padding: 0 .85rem 0 .2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  align-self: stretch;
}

.mk-header__search button[type="submit"] {
  border-radius: 0 999px 999px 0;
}

.mk-header__search.is-suggest-open button[type="submit"] {
  border-radius: 0 1rem 0 0;
}

.mk-search-suggest__clear {
  position: absolute;
  right: -.05rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #b0b0b0;
  cursor: pointer;
  z-index: 2;
}

.mk-search-suggest__clear:hover {
  color: #888;
  background: transparent;
}

.mk-search-suggest__clear[hidden] {
  display: none !important;
}

/* Loading da busca (IA / página lenta) */
.mk-search-wait {
  position: fixed;
  inset: 0;
  z-index: 120000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(10, 10, 10, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.mk-search-wait.is-active {
  opacity: 1;
  visibility: visible;
}

.mk-search-wait__card {
  width: min(22rem, 100%);
  padding: 1.55rem 1.4rem 1.4rem;
  border-radius: 1.1rem;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, .1);
  color: #f4f4f4;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.mk-search-wait__lens {
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 1.05rem;
}

.mk-search-wait__lupa {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 2.55rem;
  height: 2.55rem;
  color: #f2f2f2;
  transform: translate(-58%, -55%);
  transform-origin: 42% 42%;
  animation: mk-search-lupa-scan 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(200, 16, 46, .28));
}

.mk-search-wait__lupa circle {
  stroke: currentColor;
  fill: rgba(255, 255, 255, .04);
}

.mk-search-wait__lupa path {
  stroke: currentColor;
}

.mk-search-wait__beam {
  position: absolute;
  left: 18%;
  top: 22%;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 16, 46, .42) 0%, rgba(200, 16, 46, .12) 42%, transparent 70%);
  animation: mk-search-beam-pulse 1.8s ease-in-out infinite;
  pointer-events: none;
}

.mk-search-wait__spark {
  position: absolute;
  width: .55rem;
  height: .55rem;
  color: var(--mk-red, #c8102e);
  animation: mk-search-spark-twinkle 1.5s ease-in-out infinite;
}

.mk-search-wait__spark--a {
  right: .35rem;
  top: .45rem;
  animation-delay: 0s;
}

.mk-search-wait__spark--b {
  right: .95rem;
  bottom: .55rem;
  width: .4rem;
  height: .4rem;
  animation-delay: .45s;
}

.mk-search-wait__spark--c {
  left: .25rem;
  bottom: .85rem;
  width: .34rem;
  height: .34rem;
  animation-delay: .9s;
}

.mk-search-wait__spark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mk-search-wait.is-ai .mk-search-wait__lupa {
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(200, 16, 46, .4));
}

.mk-search-wait__msg {
  margin: 0;
  min-height: 2.8em;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.4;
  letter-spacing: .01em;
}

.mk-search-wait__msg.is-swap {
  animation: mk-search-wait-fade .35s ease;
}

.mk-search-wait__hint {
  margin: .65rem 0 0;
  color: #9a9a9a;
  font-size: .86rem;
  line-height: 1.4;
}

@keyframes mk-search-lupa-scan {
  0%, 100% { transform: translate(-62%, -58%) rotate(-12deg) scale(1); }
  35% { transform: translate(-48%, -42%) rotate(8deg) scale(1.04); }
  70% { transform: translate(-55%, -62%) rotate(-4deg) scale(.98); }
}

@keyframes mk-search-beam-pulse {
  0%, 100% { opacity: .35; transform: scale(.85); }
  50% { opacity: .9; transform: scale(1.15); }
}

@keyframes mk-search-spark-twinkle {
  0%, 100% { opacity: .25; transform: scale(.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(18deg); }
}

@keyframes mk-search-wait-fade {
  0% { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mk-search-ai-hint,
  .mk-header__search input,
  .mk-search-page__form input {
    transition: none;
  }

  .mk-search-ai-hint svg,
  .mk-search-wait__lupa,
  .mk-search-wait__beam,
  .mk-search-wait__spark,
  .mk-search-wait__msg.is-swap {
    animation: none;
  }
}

.mk-search-suggest__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 80;
  max-height: min(22rem, 70vh);
  overflow: auto;
  background: #fff;
  color: #151515;
  border-top: 1px solid #ececec;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  padding: .3rem .35rem .45rem;
  scrollbar-width: thin;
}

.mk-search-suggest__panel[hidden] {
  display: none !important;
}

.mk-search-suggest__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .65rem;
  width: 100%;
  padding: .58rem .7rem;
  border: 0;
  border-radius: .55rem;
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.mk-search-suggest__item:hover,
.mk-search-suggest__item.is-active {
  background: #f3f3f3;
  color: inherit;
}

.mk-search-suggest__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #b0b0b0;
}

.mk-search-suggest__label {
  flex: 1;
  min-width: 0;
  font-size: .92rem;
  font-weight: 400;
  color: #222;
  line-height: 1.3;
  text-transform: lowercase;
}

.mk-search-suggest__label strong {
  font-weight: 700;
  color: #111;
}

.mk-search-suggest__meta {
  flex: 0 0 auto;
  font-size: .68rem;
  color: #999;
  text-transform: lowercase;
  letter-spacing: .04em;
}

.mk-search-page__form {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  border-radius: .85rem;
  overflow: visible;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.mk-search-page__form.is-suggest-open {
  border-radius: .85rem .85rem 0 0;
  z-index: 5;
}

.mk-search-page__form input {
  border-radius: .85rem 0 0 .85rem;
}

.mk-search-page__form.is-suggest-open input {
  border-radius: .85rem 0 0 0;
}

.mk-search-page__form > button[type="submit"] {
  border-radius: 0 .85rem .85rem 0;
  min-width: 3.25rem;
}

.mk-search-page__form.is-suggest-open > button[type="submit"] {
  border-radius: 0 .85rem 0 0;
}

.mk-search-page__hero {
  margin-bottom: .65rem;
}

.mk-search-page__hero .mk-breadcrumb {
  margin: 0 0 .35rem;
}

.mk-search-page__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .25rem .65rem;
  margin-top: 0;
}

.mk-search-page__corrected {
  flex: 1 1 100%;
  margin: 0;
  color: #9a9a9a;
  font-size: .8rem;
  line-height: 1.3;
}

.mk-search-page.mk-catalog .mk-catalog__toolbar {
  margin-top: .15rem;
}

.mk-search-page.mk-catalog .mk-catalog__hero {
  margin-bottom: .55rem;
  padding-bottom: 0;
}

.mk-search-page__query {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem .5rem;
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: #cfcfcf;
}

.mk-search-page__query-label {
  display: inline;
  margin: 0;
  font-family: var(--mk-font);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.mk-search-page__query strong {
  color: var(--mk-red, #c8102e);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.mk-search-page__count {
  margin: 0;
  color: #9a9a9a;
  font-size: .9rem;
}

.mk-search-fallback {
  min-height: 8rem;
}

.mk-search-fallback__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2.5rem 1rem;
  color: #b5b5b5;
  font-size: .95rem;
}

.mk-search-fallback__spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, .18);
  border-top-color: var(--mk-red, #c8102e);
  border-radius: 50%;
  animation: mk-search-fallback-spin .7s linear infinite;
}

@keyframes mk-search-fallback-spin {
  to { transform: rotate(360deg); }
}

.mk-search-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.mk-search-row {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border: 1px solid #e8e8e8;
  border-radius: .9rem;
  background: var(--mk-card);
  color: var(--mk-card-ink);
  box-shadow: 0 10px 24px -18px rgba(0, 0, 0, .55);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.mk-search-row:last-child {
  border-bottom: 1px solid #e8e8e8;
}

.mk-search-row:hover {
  border-color: #ddd;
  background: #fff;
  box-shadow: 0 14px 28px -16px rgba(200, 16, 46, .28);
  transform: translateY(-1px);
}

.mk-search-row__media {
  position: relative;
  display: block;
  width: 7rem;
  height: 7rem;
  padding: 0;
  border-radius: .65rem;
  background: #fff;
  border: 1px solid #ececec;
  overflow: hidden;
  flex-shrink: 0;
}

.mk-search-row__media img {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: .7rem .85rem;
  object-fit: contain;
  object-position: center;
}

.mk-search-row__media-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #b5b5b5;
  background: #f3f3f3;
}

.mk-search-row__main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.mk-search-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .65rem;
  margin-bottom: 0;
}

.mk-search-row__brand {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mk-red);
}

.mk-search-row__sku {
  font-size: .72rem;
  font-weight: 600;
  color: #9a9a9a;
}

.mk-search-row__title {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.mk-search-row__title a {
  color: #151515;
  text-decoration: none;
}

.mk-search-row__title a:hover {
  color: var(--mk-red);
}

.mk-search-row__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: .25rem;
  padding: .2rem .45rem;
  border-radius: .35rem;
  background: var(--mk-red);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.mk-search-row__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .55rem;
  min-width: 11.5rem;
}

.mk-search-row__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
}

.mk-search-row__price {
  font-family: var(--mk-font-display);
  font-size: 1.2rem;
  font-weight: 750;
  color: #151515;
  line-height: 1.2;
}

.mk-search-row__price--old {
  font-size: .8rem;
  font-weight: 600;
  color: #9a9a9a;
  text-decoration: line-through;
}

.mk-search-row__price--sale {
  color: var(--mk-red);
}

.mk-search-row__price--muted {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  color: #888;
  text-align: right;
}

.mk-search-row__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  min-height: 2.55rem;
  padding: .65rem .85rem;
  border: 1px solid var(--mk-red);
  border-radius: 999px;
  background: var(--mk-red);
  color: #fff;
  font-family: inherit;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.mk-search-row__quote:hover {
  background: var(--mk-red-deep);
  border-color: var(--mk-red-deep);
  transform: translateY(-1px);
}

.mk-search-row__quote.is-added {
  background: #1f7a3a;
  border-color: #1f7a3a;
}

.mk-search-infinite {
  display: grid;
  justify-items: center;
  gap: .75rem;
  margin-top: 1.35rem;
  min-height: 2.5rem;
}

.mk-search-infinite__status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #9a9a9a;
  font-size: .9rem;
}

.mk-search-infinite__status[hidden],
.mk-search-infinite__more[hidden],
.mk-search-infinite__end[hidden] {
  display: none;
}

.mk-search-infinite__spinner {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(255, 255, 255, .18);
  border-top-color: var(--mk-red);
  border-radius: 999px;
  animation: mk-search-spin .7s linear infinite;
}

@keyframes mk-search-spin {
  to { transform: rotate(360deg); }
}

.mk-search-infinite__more {
  min-height: 2.5rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: transparent;
  color: #f0f0f0;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.mk-search-infinite__more:hover {
  border-color: var(--mk-red);
  background: rgba(200, 16, 46, .12);
  color: #fff;
}

.mk-search-infinite__end {
  margin: 0;
  color: #777;
  font-size: .88rem;
}

.mk-search-infinite__sentinel {
  width: 100%;
  height: 1px;
}

@media (max-width: 720px) {
  .mk-search-row {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: .75rem .9rem;
    padding: .85rem .9rem;
  }

  .mk-search-row__media {
    width: 5.5rem;
    height: 5.5rem;
  }

  .mk-search-row__media img {
    padding: .5rem .6rem;
  }

  .mk-search-row__aside {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    gap: .75rem;
  }

  .mk-search-row__prices {
    align-items: flex-start;
  }

  .mk-search-row__quote {
    width: 2.65rem;
    min-width: 2.65rem;
    min-height: 2.65rem;
    padding: 0;
    flex: 0 0 auto;
  }

  .mk-search-row__quote span {
    display: none;
  }
}

.mk-header__end {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: .85rem;
  min-width: 0;
}

@media (min-width: 960px) {
  .mk-header__end {
    gap: 1.1rem;
  }
}

.mk-header__quote {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.55rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: .95;
}

.mk-header__quote:hover {
  opacity: 1;
}

.mk-header__quote-badge {
  position: absolute;
  top: .15rem;
  right: 0;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 .22rem;
  border-radius: 999px;
  background: #fff;
  color: var(--mk-red);
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.05rem;
  text-align: center;
}

.mk-header__quote-badge[hidden] {
  display: none !important;
}

.mk-header__links {
  display: none;
  align-items: center;
  gap: 1.1rem;
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
}

.mk-header__links a,
.mk-header__link-btn {
  color: #fff;
  opacity: .92;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.mk-header__links a:hover,
.mk-header__link-btn:hover {
  opacity: 1;
  color: #fff;
}

.mk-header__cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  padding: .62rem 1.05rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .92);
  background: transparent;
  color: #fff !important;
  font-family: var(--mk-font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.mk-header__cta:hover {
  background: #111;
  border-color: #111;
  color: #fff !important;
  transform: translateY(-1px);
}

.mk-header__cta svg {
  flex-shrink: 0;
}

@media (min-width: 720px) {
  .mk-header__end { display: flex; }
}

@media (min-width: 960px) {
  .mk-header__links { display: flex; }
}

@media (max-width: 1024px) {
  .mk-header__cta {
    display: none !important;
  }
}

@media (max-width: 1100px) and (min-width: 1025px) {
  .mk-header__cta span {
    max-width: 7.5rem;
    white-space: normal;
  }
}

/* Sidebar branco */
.mk-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

body.mk-nav-open .mk-sidebar-backdrop {
  opacity: 1;
  visibility: visible;
}

.mk-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 60;
  width: min(21rem, 90vw);
  height: 100%;
  height: 100dvh;
  max-height: 100%;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  color: #151515;
  box-shadow: -18px 0 40px rgba(0,0,0,.18);
  transform: translate3d(105%, 0, 0);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
  visibility: hidden;
}

body.mk-nav-open .mk-sidebar {
  transform: none;
  visibility: visible;
}

.mk-sidebar__head {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.05rem 1rem 1.1rem;
  background: var(--mk-red);
  flex-shrink: 0;
}

.mk-sidebar__head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.mk-sidebar__brand {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}

.mk-sidebar__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem;
  min-width: 0;
  width: 100%;
  padding: .22rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .18);
  margin: 0;
}

.mk-sidebar__tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  font-family: var(--mk-font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .62rem .5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mk-sidebar__tab.is-active {
  color: var(--mk-red);
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
}

.mk-sidebar__tab:hover:not(.is-active) {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.mk-sidebar__close {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.mk-sidebar__close:hover {
  background: #111;
  border-color: #111;
  color: #fff;
  transform: scale(1.04);
}

.mk-sidebar__filter {
  position: relative;
  flex-shrink: 0;
  padding: .65rem 1rem .75rem;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
  max-height: 5rem;
  opacity: 1;
  transition: max-height .28s ease, opacity .22s ease, padding .28s ease, border-color .22s ease;
}

.mk-sidebar__filter-icon {
  position: absolute;
  left: 1.55rem;
  top: 50%;
  transform: translateY(-50%);
  color: #b0b0b0;
  pointer-events: none;
}

.mk-sidebar__filter-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #fff;
  padding: .62rem 1rem .62rem 2.4rem;
  font: inherit;
  font-size: .88rem;
  color: #181818;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mk-sidebar__filter-input:focus {
  border-color: #d0d0d0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .04);
}

.mk-sidebar__filter-input::placeholder {
  color: #b5b5b5;
}

.mk-sidebar__body {
  flex: 1 1 0%;
  min-height: 0;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: .35rem 0 .65rem;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: #d4d4d4 transparent;
}

.mk-sidebar__body::-webkit-scrollbar {
  width: 5px;
}

.mk-sidebar__body::-webkit-scrollbar-track {
  background: transparent;
  margin: .4rem 0;
}

.mk-sidebar__body::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 999px;
}

.mk-sidebar__body::-webkit-scrollbar-thumb:hover {
  background: #c2c2c2;
}

.mk-sidebar__pane[hidden] {
  display: none;
}

.mk-sidebar__empty {
  margin: 1rem 1.15rem;
  color: #888;
  font-size: .92rem;
}

.mk-sidebar__item.is-filter-hidden {
  display: none;
}

.mk-sidebar__list > .mk-sidebar__item {
  border-bottom: 1px solid #f1f1f1;
}

.mk-sidebar__list > .mk-sidebar__item:last-child {
  border-bottom: 0;
}

.mk-sidebar__drill {
  position: relative;
  overflow: visible;
  min-height: 0;
}

.mk-sidebar.is-drilling .mk-sidebar__drill {
  overflow: hidden;
}

.mk-sidebar__view {
  width: 100%;
  background: #fff;
  will-change: transform, opacity;
  transition: transform .34s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}

.mk-sidebar__view[hidden] {
  display: none !important;
}

.mk-sidebar__view.is-active {
  display: block;
  position: relative;
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

.mk-sidebar__view.is-exit-left {
  display: block !important;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  transform: translateX(-30%);
  opacity: .28;
  z-index: 1;
  pointer-events: none;
}

.mk-sidebar__view.is-exit-right {
  display: block !important;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  transform: translateX(100%);
  opacity: .2;
  z-index: 1;
  pointer-events: none;
}

.mk-sidebar__view.is-enter-right,
.mk-sidebar__view.is-enter-left {
  display: block !important;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 1;
  z-index: 3;
  transition: none;
}

.mk-sidebar__view.is-enter-right {
  transform: translateX(100%);
}

.mk-sidebar__view.is-enter-left {
  transform: translateX(-30%);
  opacity: .35;
}

.mk-sidebar__view.is-enter-right.is-active,
.mk-sidebar__view.is-enter-left.is-active {
  position: relative;
  transform: translateX(0);
  opacity: 1;
  transition: transform .34s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
}

.mk-sidebar__list--children .mk-sidebar__item {
  opacity: 0;
  transform: translateX(14px);
}

.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item {
  animation: mk-sidebar-child-in .38s cubic-bezier(.22, 1, .36, 1) forwards;
}

.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item:nth-child(1) { animation-delay: .04s; }
.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item:nth-child(2) { animation-delay: .07s; }
.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item:nth-child(3) { animation-delay: .1s; }
.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item:nth-child(4) { animation-delay: .13s; }
.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item:nth-child(5) { animation-delay: .16s; }
.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item:nth-child(6) { animation-delay: .19s; }
.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item:nth-child(7) { animation-delay: .22s; }
.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item:nth-child(8) { animation-delay: .25s; }
.mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item:nth-child(n+9) { animation-delay: .28s; }

@keyframes mk-sidebar-child-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-sidebar__view,
  .mk-sidebar__view.is-enter-right.is-active,
  .mk-sidebar__view.is-enter-left.is-active {
    transition: none;
  }

  .mk-sidebar__list--children .mk-sidebar__item,
  .mk-sidebar__view.is-active .mk-sidebar__list--children .mk-sidebar__item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.mk-sidebar__back {
  display: flex;
  align-items: center;
  gap: .45rem;
  width: 100%;
  padding: .95rem 1.15rem;
  border: 0;
  border-bottom: 1px solid #f1f1f1;
  background: #fff;
  color: #111;
  font-family: var(--mk-font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition: color .18s ease, background .18s ease;
}

.mk-sidebar__back:hover {
  color: var(--mk-red);
  background: #fff;
}

.mk-sidebar__view-title {
  margin: 0;
  padding: 1rem 1.15rem .55rem;
  font-family: var(--mk-font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #111;
}

.mk-sidebar__link,
.mk-sidebar__drill-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  width: 100%;
  padding: .95rem 1.15rem;
  font-family: var(--mk-font-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.mk-sidebar__link:hover,
.mk-sidebar__drill-open:hover {
  background: #fff;
  color: var(--mk-red);
}

.mk-sidebar__toggle-label {
  flex: 1;
  min-width: 0;
}

.mk-sidebar__chevron {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #aaa;
  transition: color .2s ease;
}

.mk-sidebar__drill-open:hover .mk-sidebar__chevron {
  color: var(--mk-red);
}

.mk-sidebar__child {
  display: block;
  padding: .85rem 1.15rem;
  font-size: .95rem;
  font-weight: 500;
  color: #333;
  transition: color .18s ease;
}

.mk-sidebar__child:hover {
  color: var(--mk-red);
  background: #fff;
}

.mk-sidebar__more {
  padding: .9rem 1.15rem 1rem;
}

.mk-sidebar__more a {
  font-size: .86rem;
  font-weight: 700;
  color: #111;
  border-bottom: 1px solid #111;
  padding-bottom: .1rem;
}

.mk-sidebar__more a:hover {
  opacity: .7;
}

.mk-sidebar__foot {
  flex-shrink: 0;
  padding: 1rem 1.1rem calc(1.2rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #ececec;
  background: #fff;
}

.mk-sidebar__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  width: 100%;
  padding: .9rem 1rem;
  border-radius: 999px;
  border: 1.5px solid #111;
  background: #fff;
  color: #111 !important;
  font-family: var(--mk-font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.mk-sidebar__download:hover {
  background: #111;
  color: #fff !important;
  border-color: #111;
  transform: translateY(-1px);
}

.mk-sidebar__download svg {
  flex-shrink: 0;
}

body.mk-nav-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

body.mk-nav-open .mk-sidebar,
body.mk-nav-open .mk-sidebar__body {
  touch-action: pan-y;
}

.mk-main {
  position: relative;
  isolation: isolate;
  flex: 1;
}

.mk-main__glow {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--mk-glow-clip-top, 0px);
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.mk-main__glow::before {
  content: "";
  position: absolute;
  width: min(34rem, 72vw);
  height: min(34rem, 72vw);
  left: var(--mk-glow-x, 50%);
  top: var(--mk-glow-y, 30%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, .16) 0%,
    rgba(255, 210, 220, .1) 22%,
    rgba(200, 16, 46, .09) 48%,
    transparent 70%
  );
  filter: blur(28px);
  opacity: 0;
  transition: opacity .45s ease;
  will-change: left, top, opacity;
}

.mk-main.is-glow-on .mk-main__glow::before {
  opacity: 1;
}

.mk-main > *:not(.mk-main__glow):not(.mk-lightbox) {
  position: relative;
  z-index: 1;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .mk-main__glow {
    display: none;
  }
}

/* Quem somos */
.mk-about {
  width: 100%;
}

.mk-about__hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: min(78vh, 42rem);
  overflow: hidden;
  background: transparent;
  color: #fff;
}

.mk-about__hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 28%,
    rgba(0, 0, 0, .42) 50%,
    rgba(0, 0, 0, .12) 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 28%,
    rgba(0, 0, 0, .42) 50%,
    rgba(0, 0, 0, .12) 72%,
    transparent 100%
  );
}

.mk-about__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.02);
  opacity: .9;
}

.mk-about__hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .12) 0%,
      rgba(0, 0, 0, .04) 20%,
      transparent 42%,
      transparent 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, .06) 0%,
      transparent 24%,
      transparent 76%,
      rgba(0, 0, 0, .06) 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 28%,
    rgba(0, 0, 0, .28) 55%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 28%,
    rgba(0, 0, 0, .28) 55%,
    transparent 100%
  );
}

.mk-about__hero-content {
  --mk-about-lift: -6vh;
  position: relative;
  z-index: 2;
  width: min(var(--mk-max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 3vh, 1.5rem) 0;
  transform: translateY(var(--mk-about-lift));
  text-align: center;
  animation: mk-about-rise .9s cubic-bezier(.22, 1, .36, 1) both;
}

.mk-about__eyebrow {
  margin: 0 0 .7rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.mk-about__brand {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.03em;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .45);
}

.mk-about__tagline {
  margin: .95rem auto 0;
  max-width: 28rem;
  font-size: clamp(.98rem, 2.1vw, 1.15rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(243, 243, 243, .88);
}

@keyframes mk-about-rise {
  from {
    opacity: 0;
    transform: translateY(calc(var(--mk-about-lift, 0px) + 18px));
  }
  to {
    opacity: 1;
    transform: translateY(var(--mk-about-lift, 0px));
  }
}

.mk-about__body {
  width: min(var(--mk-max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.25rem 0 3.5rem;
}

.mk-about__body .mk-breadcrumb {
  margin-bottom: 2rem;
}

.mk-about__story {
  max-width: 38rem;
  padding-left: 1.15rem;
  border-left: 2px solid rgba(200, 16, 46, .55);
}

.mk-about__story-head {
  margin: 0 0 1.5rem;
}

.mk-about__story-kicker {
  margin: 0 0 .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mk-red);
}

.mk-about__section-title {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: #fff;
}

.mk-about__prose {
  color: #bdbdbd;
  font-size: 1.02rem;
  line-height: 1.75;
}

.mk-about__prose p {
  margin: 0 0 1.15rem;
}

.mk-about__prose p:last-child {
  margin-bottom: 0;
}

.mk-about__prose .mk-about__lead,
.mk-about__prose p.mk-about__lead {
  margin-bottom: 1.35rem;
  font-size: clamp(1.12rem, 2.2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.55;
  color: #ececec;
}

.mk-about__prose strong {
  color: #f3f3f3;
  font-weight: 700;
}

.mk-about__prose a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: .15em;
}

.mk-about__prose a:hover {
  color: var(--mk-red);
}

.mk-about__cta {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  gap: 1.1rem;
  justify-items: start;
  max-width: 38rem;
}

.mk-about__addr {
  display: inline-flex;
  align-items: flex-start;
  gap: .55rem;
  margin: 0;
  max-width: 36rem;
  color: #9a9a9a;
  font-size: .95rem;
  line-height: 1.45;
}

.mk-about__addr svg {
  flex-shrink: 0;
  margin-top: .12rem;
  color: var(--mk-red);
}

.mk-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

@media (max-width: 720px) {
  .mk-about__hero {
    min-height: min(64vh, 32rem);
  }

  .mk-about__hero-media img {
    object-position: center 48%;
  }

  .mk-about__hero-content {
    --mk-about-lift: -3vh;
    padding: 1rem 0;
  }

  .mk-about__story {
    padding-left: .9rem;
  }

  .mk-about__actions {
    width: 100%;
  }

  .mk-about__actions .mk-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-about__hero-content {
    animation: none;
  }
}

/* Hero — carrossel: 2 banners lado a lado (1 no mobile) */
.mk-hero {
  --mk-header-h: 4.6rem;
  --mk-hero-duration: 5.5s;
  --mk-hero-ratio: 1919 / 638;
  --mk-hero-ratio-mobile: var(--mk-hero-ratio);
  --mk-hero-per-view: 1;
  --mk-hero-gap: .5rem;
  --mk-hero-fade: 0;
  --mk-hero-content: 1;
  --mk-hero-mask-a: 100%;
  --mk-hero-mask-b: 100%;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: #000;
  z-index: 2;
}

.mk-hero--duo {
  --mk-hero-per-view: 2;
  --mk-hero-gap: 0px;
}

.mk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  pointer-events: none;
}

@media (max-width: 719px) {
  .mk-hero {
    --mk-header-h: 7.35rem;
    --mk-hero-gap: 0px;
    --mk-hero-per-view: 1;
  }

  .mk-hero--duo {
    --mk-hero-per-view: 1;
  }

  .mk-hero__slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }

  .mk-hero--swipe .mk-hero__viewport {
    touch-action: pan-y;
    cursor: grab;
  }

  .mk-hero--swipe .mk-hero__viewport:active {
    cursor: grabbing;
  }

  .mk-hero--swipe .mk-hero__media,
  .mk-hero--swipe .mk-hero__slide a {
    -webkit-user-drag: none;
    user-select: none;
  }
}

.mk-hero__viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  opacity: var(--mk-hero-content, 1);
  transform: translate3d(0, calc(var(--mk-hero-fade, 0) * -2.5%), 0) scale(calc(1 + var(--mk-hero-fade, 0) * .04));
  transform-origin: center top;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--mk-hero-mask-a, 100%),
    rgba(0, 0, 0, .45) var(--mk-hero-mask-b, 100%),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--mk-hero-mask-a, 100%),
    rgba(0, 0, 0, .45) var(--mk-hero-mask-b, 100%),
    transparent 100%
  );
  will-change: opacity, transform;
}

.mk-hero__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--mk-hero-gap);
  padding: 0;
  margin: 0;
  width: 100%;
  will-change: transform;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.mk-hero__slide {
  position: relative;
  z-index: 1;
  flex: 0 0 calc((100% - (var(--mk-hero-gap) * (var(--mk-hero-per-view) - 1))) / var(--mk-hero-per-view));
  width: calc((100% - (var(--mk-hero-gap) * (var(--mk-hero-per-view) - 1))) / var(--mk-hero-per-view));
  max-width: calc((100% - (var(--mk-hero-gap) * (var(--mk-hero-per-view) - 1))) / var(--mk-hero-per-view));
  min-width: calc((100% - (var(--mk-hero-gap) * (var(--mk-hero-per-view) - 1))) / var(--mk-hero-per-view));
  aspect-ratio: var(--mk-hero-ratio);
  overflow: hidden;
  background: #000;
  border-radius: 0;
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow: 0 0 0 transparent;
  transition:
    filter 1.15s ease;
  transform-origin: center center;
}

/* Desktop duo: exatamente 2 por viewport, colados, sem encolher os outros slides */
@media (min-width: 720px) {
  .mk-hero--duo .mk-hero__slide {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    min-width: 50%;
  }
}

@media (max-width: 719px) {
  .mk-hero__slide {
    aspect-ratio: var(--mk-hero-ratio-mobile);
  }
}

.mk-hero__media {
  display: block;
  width: 100%;
  height: 100%;
}

.mk-hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.mk-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: transform 1.25s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.mk-hero--duo .mk-hero__slide:hover,
.mk-hero--duo .mk-hero__slide:focus-within {
  z-index: 8;
  filter: brightness(1.06);
}

.mk-hero--duo .mk-hero__slide:hover img,
.mk-hero--duo .mk-hero__slide:focus-within img {
  transform: scale(1.025);
}

.mk-hero:not(.mk-hero--duo) .mk-hero__slide:hover img,
.mk-hero:not(.mk-hero--duo) .mk-hero__slide:focus-within img {
  transform: scale(1.015);
}

@media (hover: none) {
  .mk-hero__slide,
  .mk-hero__slide img {
    transition: none;
  }

  .mk-hero--duo .mk-hero__slide:hover,
  .mk-hero--duo .mk-hero__slide:focus-within,
  .mk-hero--duo .mk-hero__slide:hover img,
  .mk-hero--duo .mk-hero__slide:focus-within img,
  .mk-hero:not(.mk-hero--duo) .mk-hero__slide:hover img,
  .mk-hero:not(.mk-hero--duo) .mk-hero__slide:focus-within img {
    transform: none;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-hero__slide,
  .mk-hero__slide img {
    transition: none;
  }

  .mk-hero--duo .mk-hero__slide:hover,
  .mk-hero--duo .mk-hero__slide:focus-within,
  .mk-hero--duo .mk-hero__slide:hover img,
  .mk-hero--duo .mk-hero__slide:focus-within img,
  .mk-hero:not(.mk-hero--duo) .mk-hero__slide:hover img,
  .mk-hero:not(.mk-hero--duo) .mk-hero__slide:focus-within img {
    transform: none;
    filter: none;
  }
}

.mk-hero__slide--ph {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(200, 16, 46, .45), transparent 55%),
    linear-gradient(145deg, #121212 0%, #1a0508 45%, #070707 100%);
}
.mk-hero__slide--ph-2 {
  background:
    radial-gradient(ellipse at 30% 70%, rgba(200, 16, 46, .35), transparent 50%),
    linear-gradient(160deg, #0d0d0d 0%, #1c0a0e 50%, #050505 100%);
}
.mk-hero__slide--ph-3 {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, .08), transparent 45%),
    linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
}

.mk-hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: calc(min(58%, 22rem) + var(--mk-hero-fade, 0) * 42%);
  pointer-events: none;
  opacity: var(--mk-hero-fade, 0);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, .18) 22%,
    rgba(0, 0, 0, .55) 48%,
    rgba(0, 0, 0, .9) 72%,
    #000 88%,
    #000 100%
  );
  will-change: opacity, height;
}

@media (max-width: 719px) {
  .mk-hero__fade {
    height: calc(min(42%, 7.5rem) + var(--mk-hero-fade, 0) * 36%);
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, .25) 40%,
      rgba(0, 0, 0, .75) 72%,
      #000 100%
    );
  }
}

.mk-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(0, 0, 0, .42);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0) scale(.92);
  transition:
    opacity .25s ease,
    visibility .25s ease,
    background .2s ease,
    border-color .2s ease,
    transform .25s cubic-bezier(.22, 1, .36, 1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mk-hero__nav[hidden],
.mk-hero__dots[hidden] {
  display: none !important;
}

.mk-hero__nav--prev { left: 1rem; }
.mk-hero__nav--next { right: 1rem; }

.mk-hero:hover .mk-hero__nav,
.mk-hero:focus-within .mk-hero__nav,
.mk-hero.is-nav-visible .mk-hero__nav {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.mk-hero__nav:hover {
  background: var(--mk-red);
  border-color: var(--mk-red);
  transform: scale(1.06);
}

.mk-hero__nav:focus-visible {
  opacity: 1;
  visibility: visible;
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 719px) {
  .mk-hero__nav {
    width: 2.55rem;
    height: 2.55rem;
    margin-top: -1.275rem;
  }

  .mk-hero__nav--prev { left: .65rem; }
  .mk-hero__nav--next { right: .65rem; }

  .mk-hero__dots {
    bottom: .7rem;
  }
}

@media (hover: none) {
  .mk-hero__nav {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}

.mk-hero__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transform: translateX(-50%);
  opacity: var(--mk-hero-content, 1);
  will-change: opacity;
}

.mk-hero__dot {
  position: relative;
  display: block;
  width: .7rem;
  height: .32rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  overflow: hidden;
  cursor: pointer;
  transition: width .28s ease, background .2s ease;
}

.mk-hero__dot.is-active {
  width: 2.55rem;
  background: rgba(255, 255, 255, .22);
}

.mk-hero__dot-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--mk-red);
  transform-origin: left center;
}

.mk-hero__dot.is-active .mk-hero__dot-fill {
  animation: mk-hero-progress var(--mk-hero-duration) linear forwards;
}

.mk-hero.is-paused .mk-hero__dot.is-active .mk-hero__dot-fill {
  animation-play-state: paused;
}

@keyframes mk-hero-progress {
  from { width: 0%; }
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .mk-hero__dot.is-active .mk-hero__dot-fill {
    animation: none;
    width: 100%;
  }
}

.mk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  border-radius: .35rem;
  background: var(--mk-red);
  color: #fff !important;
  font-family: var(--mk-font-display);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.mk-btn:hover {
  background: #e21435;
  transform: translateY(-2px);
}

.mk-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
}

.mk-btn--ghost:hover { background: rgba(255,255,255,.08); }

/* Sections */
.mk-section {
  width: min(var(--mk-max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 1rem;
}

.mk-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.mk-section__head h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.15;
  min-width: 0;
}

@media (max-width: 719px) {
  .mk-section__head {
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
  }

  .mk-section__head h2 {
    font-size: clamp(1.05rem, 4.6vw, 1.28rem);
    letter-spacing: .02em;
  }

  .mk-section__head a,
  .mk-section__action,
  .mk-section__more-link {
    font-size: .8rem;
    flex-shrink: 0;
  }

  .mk-cats-carousel__nav,
  .mk-products-carousel__nav {
    display: none !important;
  }
}

.mk-section__head a,
.mk-section__action {
  color: var(--mk-muted);
  font-weight: 600;
  font-size: .92rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.mk-section__head a:hover,
.mk-section__action:hover { color: #fff; }

/* Categories carousel */
.mk-section--cats {
  overflow: visible;
  padding-top: 3.35rem;
}

.mk-cats-carousel {
  position: relative;
}

.mk-cats-carousel__track {
  display: flex;
  gap: .85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: .55rem .05rem .9rem;
  scrollbar-width: none;
}

.mk-cats-carousel__track::-webkit-scrollbar {
  display: none;
}

.mk-cats-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-top: -1.4rem;
  border: 1px solid #333;
  border-radius: 999px;
  background: rgba(10, 10, 10, .9);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.mk-cats-carousel__nav:hover {
  background: var(--mk-red);
  border-color: var(--mk-red);
  transform: scale(1.06);
}

.mk-cats-carousel__nav[hidden] {
  display: none;
}

.mk-cats-carousel__nav--prev { left: -.15rem; }
.mk-cats-carousel__nav--next { right: -.15rem; }

@media (min-width: 1100px) {
  .mk-cats-carousel__nav--prev { left: -.85rem; }
  .mk-cats-carousel__nav--next { right: -.85rem; }

  .mk-cats-carousel__track {
    overflow-x: auto;
    padding-bottom: .65rem;
  }
}

.mk-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  flex: 0 0 auto;
  width: min(46vw, 11.5rem);
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 1rem;
  background:
    linear-gradient(160deg, #2a2f38 0%, #12151a 55%, #0a0b0d 100%),
    var(--mk-surface);
  border: 1px solid #2a2a2a;
  color: #fff;
  scroll-snap-align: start;
  isolation: isolate;
  transition:
    transform .35s cubic-bezier(.22, 1, .36, 1),
    border-color .3s ease,
    box-shadow .35s ease;
}

@media (min-width: 720px) {
  .mk-cat {
    width: calc((100% - 2.55rem) / 4);
    min-width: 0;
  }
}

.mk-cat:hover {
  transform: scale(1.035);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, .48),
    0 0 0 1px rgba(255, 255, 255, .08);
  z-index: 2;
}

@media (min-width: 1100px) {
  .mk-cat:hover {
    transform: translateY(-5px) scale(1.02);
  }
}

.mk-cat__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mk-cat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), filter .4s ease;
}

.mk-cat:hover .mk-cat__media img {
  transform: scale(1.08);
  filter: brightness(1.06) saturate(1.04);
}

.mk-cat.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 14, .12) 0%,
    transparent 38%,
    transparent 48%,
    rgba(8, 10, 14, .35) 72%,
    rgba(6, 8, 12, .55) 100%
  );
  pointer-events: none;
  transition: opacity .35s ease;
}

.mk-cat.has-image::after {
  content: none;
}

.mk-cat.has-image:hover::before {
  opacity: .95;
}

.mk-cat__label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 42%;
  padding: 1.55rem 1rem 1.25rem;
  text-align: center;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6, 8, 12, .35) 28%,
    rgba(6, 8, 12, .78) 68%,
    rgba(4, 5, 8, .94) 100%
  );
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.mk-cat:hover .mk-cat__label {
  transform: translateY(-2px);
}

.mk-cat strong {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 2.4em;
  font-family: var(--mk-font-display);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(.7rem, 1vw, .84rem);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
  text-wrap: balance;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, .55),
    0 4px 18px rgba(0, 0, 0, .65);
  transition: letter-spacing .35s ease;
}

.mk-cat:hover strong {
  letter-spacing: .07em;
}

@media (prefers-reduced-motion: reduce) {
  .mk-cat,
  .mk-cat__media img,
  .mk-cat__label,
  .mk-cat strong,
  .mk-cats-carousel__nav {
    transition: none;
  }

  .mk-cat:hover,
  .mk-cat:hover .mk-cat__media img,
  .mk-cat:hover .mk-cat__label {
    transform: none;
  }
}

.mk-section--products {
  overflow: visible;
}

/* Product cards â€” brancos */
.mk-products-carousel {
  position: relative;
}

.mk-products-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: .45rem .15rem .65rem;
  scrollbar-width: none;
}

.mk-products-carousel__track::-webkit-scrollbar {
  display: none;
}

.mk-section__more-link {
  color: var(--mk-muted);
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.mk-section__more-link:hover {
  color: #fff;
}

.mk-products-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-top: -1.275rem;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #151515;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mk-products-carousel__nav:hover {
  background: var(--mk-red);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(200, 16, 46, .35);
}

.mk-products-carousel__nav[hidden] {
  display: none;
}

.mk-products-carousel__nav--prev { left: -.15rem; }
.mk-products-carousel__nav--next { right: -.15rem; }

@media (min-width: 1100px) {
  .mk-products-carousel__nav--prev { left: -.85rem; }
  .mk-products-carousel__nav--next { right: -.85rem; }
}

.mk-products-carousel__item {
  flex: 0 0 auto;
  display: flex;
  width: min(72vw, 16.5rem);
  min-width: 12.5rem;
  scroll-snap-align: start;
}

.mk-products-carousel__item .mk-card {
  width: 100%;
  height: 100%;
  min-height: 23rem;
}

@media (min-width: 720px) {
  .mk-products-carousel__item {
    width: calc((100% - 3rem) / 4);
    min-width: 11.5rem;
  }

  .mk-products-carousel__item .mk-card {
    min-height: 24rem;
  }
}

@media (min-width: 1100px) {
  .mk-products-carousel__item {
    width: calc((100% - 4rem) / 5);
    min-width: 0;
  }

  .mk-products-carousel__item .mk-card {
    min-height: 23.5rem;
  }
}

.mk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 720px) {
  .mk-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .mk-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.15rem; }
}

.mk-card {
  position: relative;
  background: var(--mk-card);
  color: var(--mk-card-ink);
  border-radius: .9rem;
  overflow: hidden;
  box-shadow: 0 12px 28px -16px rgba(0,0,0,.55);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}

.mk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(200,16,46,.35);
}

.mk-card__sku {
  position: absolute;
  top: .55rem;
  right: .65rem;
  left: auto;
  z-index: 2;
  max-width: calc(50% - .9rem);
  margin: 0;
  padding: .28rem .45rem;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.2;
  color: #8c8c8c;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  border-radius: .35rem;
  background: rgba(255, 255, 255, .92);
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .2s ease, transform .2s ease;
}

.mk-card__sku-label {
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #a8a8a8;
}

.mk-card:hover .mk-card__sku {
  opacity: 1;
  transform: translateY(0);
}

.mk-card__promo {
  position: absolute;
  top: .55rem;
  left: .65rem;
  right: auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .28rem .5rem;
  border-radius: .35rem;
  background: var(--mk-red);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(200, 16, 46, .35);
}

.mk-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}

.mk-card__media-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #c8c8c8;
  background: #f3f3f3;
}

.mk-card__media > img {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  min-width: 0;
  min-height: 0;
  margin: 0;
  object-fit: contain;
  object-position: center;
  padding: .9rem 1.25rem;
}

html.mk-img-fade .mk-card__media > img,
html.mk-img-fade .mk-search-row__media img,
html.mk-img-fade .mk-fade-img {
  opacity: 0;
  transition: opacity .55s ease;
}

html.mk-img-fade .mk-card__media > img.is-loaded,
html.mk-img-fade .mk-search-row__media img.is-loaded,
html.mk-img-fade .mk-fade-img.is-loaded {
  opacity: 1;
}

.product-card__lazy {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #f4f4f5;
}

.product-card__lazy-shimmer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    110deg,
    #f4f4f5 0%,
    #f4f4f5 38%,
    #ebebed 50%,
    #f4f4f5 62%,
    #f4f4f5 100%
  );
  background-size: 200% 100%;
  animation: mk-product-lazy-shimmer 1.15s ease-in-out infinite;
  opacity: 1;
  transition: opacity .35s ease;
  pointer-events: none;
}

.product-card__lazy.is-loaded .product-card__lazy-shimmer {
  opacity: 0;
  animation: none;
}

.product-card__lazy .product-card__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
  padding: .9rem 1.25rem;
  opacity: 0;
  transition: opacity .55s ease;
}

.product-card__lazy .product-card__img.is-loaded {
  opacity: 1;
}

@keyframes mk-product-lazy-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
  html.mk-img-fade .mk-card__media > img,
  html.mk-img-fade .mk-search-row__media img,
  html.mk-img-fade .mk-fade-img,
  .product-card__lazy .product-card__img {
    opacity: 1;
    transition: none;
  }

  .product-card__lazy-shimmer {
    animation: none;
    opacity: 0;
  }
}

.mk-card__body {
  padding: .65rem .9rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .22rem;
  flex: 1;
  text-align: center;
}

.mk-card__brand {
  margin: 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
}

.mk-card__title {
  font-family: var(--mk-font);
  text-transform: none;
  letter-spacing: 0;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.28;
  text-align: center;
  margin: 0;
}

.mk-card__title a { color: #151515; }
.mk-card__title a:hover { color: var(--mk-red); }

.mk-card__prices {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: .3rem .45rem;
  margin-top: .15rem;
  margin-bottom: .75rem;
  padding-top: 0;
}

.mk-card__price {
  margin: 0;
  color: var(--mk-red);
  font-weight: 800;
  font-size: 1.02rem;
  text-align: center;
}

.mk-card__price--old {
  color: #9a9a9a;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: #b0b0b0;
}

.mk-card__price--sale {
  color: var(--mk-red);
  font-size: 1.05rem;
}

.mk-card__price--muted {
  color: #888;
  font-size: .84rem;
  font-weight: 600;
  margin: .1rem 0 .75rem;
}

.mk-card__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  width: 100%;
  margin-top: auto;
  padding: .7rem .75rem;
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  background: #151515;
  color: #fff;
  font: inherit;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.mk-card__quote:hover {
  background: var(--mk-red);
  border-color: var(--mk-red);
}

.mk-card__quote.is-added {
  background: #1f7a3a;
  border-color: #1f7a3a;
}

@media (max-width: 719px) {
  .mk-card__quote {
    min-height: 2rem;
    padding: .38rem .55rem;
    gap: .28rem;
    font-size: .72rem;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .mk-card__quote svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
  }

  .mk-card__quote-label {
    font-size: 0;
    line-height: 0;
  }

  .mk-card__quote-label::after {
    content: attr(data-short);
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }

  .mk-card__quote.is-added .mk-card__quote-label {
    font-size: .72rem;
    line-height: 1;
  }

  .mk-card__quote.is-added .mk-card__quote-label::after {
    content: none;
  }
}

/* Quote drawer + FAB */
.mk-quote-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

body.mk-quote-open .mk-quote-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mk-quote {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: min(100vw - 1.5rem, 24rem);
  height: 100%;
  background: #fff;
  color: #151515;
  box-shadow: -18px 0 40px rgba(0, 0, 0, .35);
  transform: translateX(105%);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

body.mk-quote-open .mk-quote {
  transform: translateX(0);
}

.mk-quote__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1rem;
  border-bottom: 1px solid #eee;
}

.mk-quote__eyebrow {
  margin: 0 0 .15rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #999;
}

.mk-quote__title {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.mk-quote__title-row {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.mk-quote__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55rem;
  height: 1.55rem;
  padding: 0 .45rem;
  border-radius: 999px;
  background: #eee;
  color: #444;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1;
}

.mk-quote__close {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  color: #222;
  cursor: pointer;
}

.mk-quote__close:hover {
  border-color: var(--mk-red);
  color: var(--mk-red);
}

.mk-quote__body {
  flex: 1;
  overflow-y: auto;
  padding: .75rem 1rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: #c8c8c8 transparent;
}

.mk-quote__body::-webkit-scrollbar {
  width: 8px;
}

.mk-quote__body::-webkit-scrollbar-track {
  background: transparent;
}

.mk-quote__body::-webkit-scrollbar-thumb {
  background: #cfcfcf;
  border-radius: 999px;
  border: 2px solid #fff;
}

.mk-quote__body::-webkit-scrollbar-thumb:hover {
  background: #b5b5b5;
}

.mk-quote__body[hidden] {
  display: none;
}

.mk-quote__empty {
  flex: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: .55rem;
  padding: 2rem 1.25rem;
  text-align: center;
  color: #888;
}

.mk-quote__empty-icon {
  display: grid;
  place-items: center;
  width: 5.25rem;
  height: 5.25rem;
  margin-bottom: .35rem;
  border-radius: 999px;
  background: #f4f4f4;
  color: #b0b0b0;
}

.mk-quote__empty-icon svg {
  display: block;
}

.mk-quote__empty[hidden] {
  display: none;
}

.mk-quote__empty p {
  margin: 0;
  font-weight: 700;
  color: #333;
}

.mk-quote__empty > span {
  max-width: 18rem;
  line-height: 1.45;
}

@media (max-width: 719px) {
  .mk-quote {
    width: 100%;
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    padding-top: env(safe-area-inset-top, 0);
  }

  .mk-quote__head {
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
  }

  .mk-quote__eyebrow {
    margin: 0 0 .1rem;
    font-size: .62rem;
  }

  .mk-quote__title {
    font-size: 1.12rem;
  }

  .mk-quote__badge {
    min-width: 1.4rem;
    height: 1.4rem;
    font-size: .7rem;
  }

  .mk-quote__close {
    width: 2.05rem;
    height: 2.05rem;
  }

  .mk-quote__body {
    padding: .5rem .9rem .75rem;
  }

  .mk-quote__empty {
    flex: 1 1 auto;
    align-content: start;
    place-content: start center;
    gap: .4rem;
    padding: 1.75rem 1.35rem 1rem;
  }

  .mk-quote__empty-icon {
    width: 4.1rem;
    height: 4.1rem;
    margin-bottom: .2rem;
  }

  .mk-quote__empty-icon svg {
    width: 2.75rem;
    height: 2.75rem;
  }

  .mk-quote__empty p {
    font-size: .95rem;
    line-height: 1.3;
    max-width: 15.5rem;
  }

  .mk-quote__empty > span {
    font-size: .82rem;
    max-width: 16.5rem;
  }

  /* Estado vazio: total irrelevante, WA fica como ação principal */
  .mk-quote:has(#mk-quote-empty:not([hidden])) .mk-quote__total-row {
    display: none;
  }

  .mk-quote__item {
    grid-template-columns: 3.1rem 1fr auto;
    gap: .6rem;
    padding: .7rem 0;
  }

  .mk-quote__thumb {
    width: 3.1rem;
    height: 3.1rem;
  }

  .mk-quote__name {
    font-size: .84rem;
  }

  .mk-quote__foot {
    padding: .85rem 1rem calc(.95rem + env(safe-area-inset-bottom, 0));
    gap: .65rem;
  }

  .mk-quote__wa {
    min-height: 2.85rem;
    font-size: .9rem;
  }
}

.mk-quote__item {
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: .7rem;
  align-items: start;
  padding: .75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.mk-quote__thumb {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: .45rem;
  border: 1px solid #d8d8d8;
  background: #fff;
  object-fit: contain;
  padding: .25rem;
  box-sizing: border-box;
}

.mk-quote__meta {
  min-width: 0;
}

.mk-quote__name {
  margin: 0 0 .2rem;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.25;
  color: #151515;
}

.mk-quote__sku {
  margin: 0;
  font-size: .68rem;
  color: #999;
}

.mk-quote__price {
  margin: .25rem 0 0;
  font-size: .82rem;
  font-weight: 700;
  color: var(--mk-red);
}

.mk-quote__qty {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: .45rem;
}

.mk-quote__qty button {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  padding: 0;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  background: #fff;
  color: #222;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.mk-quote__qty button svg {
  display: block;
}

.mk-quote__qty button:hover {
  border-color: var(--mk-red);
  color: var(--mk-red);
}

.mk-quote__qty span {
  min-width: 1.2rem;
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
}

.mk-quote__remove {
  border: 0;
  background: transparent;
  color: #aaa;
  cursor: pointer;
  padding: .15rem;
}

.mk-quote__remove:hover {
  color: var(--mk-red);
}

.mk-quote__foot {
  display: grid;
  gap: .7rem;
  padding: 1rem 1.15rem 1.25rem;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.mk-quote__total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.mk-quote__total-row span {
  font-size: .88rem;
  font-weight: 600;
  color: #666;
}

.mk-quote__total-row strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--mk-red);
}

.mk-quote__clear {
  border: 0;
  background: transparent;
  color: #888;
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.mk-quote__clear[hidden] {
  display: none;
}

.mk-quote__clear:hover {
  color: var(--mk-red);
}

.mk-quote__wa {
  display: grid;
  place-items: center;
  padding: .85rem 1rem;
  border-radius: .6rem;
  background: #1f7a3a;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.mk-quote__wa:hover {
  background: #186330;
  color: #fff;
}

.mk-quote-fab {
  display: none !important;
}

.mk-quote-fab[hidden] {
  display: none !important;
}

.mk-quote-fab__badge {
  position: absolute;
  top: -.15rem;
  right: -.1rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 .28rem;
  border-radius: 999px;
  background: var(--mk-red);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.25rem;
  text-align: center;
}

/* Float: WhatsApp + topo */
.mk-float {
  position: fixed;
  right: max(.85rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 45;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: .55rem;
  pointer-events: none;
}

.mk-float__btn {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
  transition: transform .18s ease, background .18s ease, opacity .2s ease, visibility .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mk-float__btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.mk-float__btn--wa {
  background: #25d366;
  color: #fff;
}

.mk-float__btn--wa:hover {
  background: #1ebe57;
  color: #fff;
}

.mk-float__btn--top {
  background: rgba(20, 20, 20, .92);
  color: #f3f3f3;
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mk-float__btn--top:hover {
  background: var(--mk-red);
  border-color: var(--mk-red);
  color: #fff;
}

.mk-float__btn--top[hidden] {
  display: none !important;
}

body.mk-nav-open .mk-float,
body.mk-quote-open .mk-float,
body.mk-directions-modal-open .mk-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.mk-quote-open {
  overflow: hidden;
}

/* CTA band */
.mk-cta {
  position: relative;
  width: 100%;
  margin: 1.75rem 0 0;
  padding: 2rem 0;
  overflow: hidden;
  background: var(--mk-red);
}

.mk-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 140% at 100% 50%, rgba(0, 0, 0, .18) 0%, transparent 55%),
    linear-gradient(90deg, rgba(0, 0, 0, .16) 0%, transparent 42%);
  pointer-events: none;
}

.mk-cta::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -4%;
  width: min(28rem, 46vw);
  height: 180%;
  background: rgba(255, 255, 255, .06);
  transform: rotate(18deg);
  pointer-events: none;
}

.mk-cta__inner {
  position: relative;
  z-index: 1;
  width: min(var(--mk-max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.mk-cta__copy {
  flex: 1 1 18rem;
  min-width: 0;
}

.mk-cta h2 {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: none;
  color: #fff;
  max-width: 22ch;
  line-height: 1.15;
}

.mk-cta p {
  margin: .55rem 0 0;
  color: rgba(255, 255, 255, .9);
  max-width: 42ch;
  font-size: .95rem;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--mk-font);
}

.mk-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  flex: 0 0 auto;
  min-height: 3rem;
  padding: .85rem 1.45rem;
  border-radius: 999px;
  background: #fff;
  color: var(--mk-red);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.mk-cta__btn svg {
  flex: 0 0 auto;
}

.mk-cta__btn:hover {
  transform: translateY(-2px);
  background: #111;
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .28);
}

@media (max-width: 720px) {
  .mk-cta {
    padding: 1.2rem 0;
  }

  .mk-cta__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .95rem;
  }

  /* Em coluna, flex-basis vira altura — 18rem abria um buraco enorme */
  .mk-cta__copy {
    flex: 0 1 auto;
  }

  .mk-cta h2 {
    font-size: 1.2rem;
    max-width: none;
  }

  .mk-cta p {
    margin-top: .4rem;
    font-size: .875rem;
    line-height: 1.45;
  }

  .mk-cta__btn {
    width: 100%;
    min-height: 2.75rem;
    padding: .75rem 1.15rem;
    font-size: .84rem;
    white-space: normal;
  }
}

/* Page chrome */
.mk-page {
  width: min(var(--mk-max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.mk-page__title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 0;
}

.mk-warranty__hero {
  margin-bottom: 1.5rem;
}

.mk-warranty__hero .mk-breadcrumb {
  margin-bottom: .75rem;
}

.mk-warranty__eyebrow {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mk-red, #c8102e);
}

.mk-warranty__lead {
  margin: .9rem 0 0;
  max-width: 42rem;
  color: #e4e4e4;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

.mk-warranty__highlights {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  width: 100%;
}

.mk-warranty__highlight {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .85rem;
  background: rgba(255, 255, 255, .06);
}

.mk-warranty__highlight-label {
  display: block;
  margin-bottom: .35rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #cfcfcf;
}

.mk-warranty__highlight-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}

.mk-warranty__body {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 1.25rem;
}

.mk-warranty__content {
  display: grid;
  gap: 1.15rem;
  width: 100%;
}

.mk-w-block {
  margin: 0;
  padding: 1.45rem 1.5rem 1.55rem;
  border: 1px solid #ececec;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 32px -20px rgba(0, 0, 0, .45);
}

.mk-w-block__head {
  margin: 0 0 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid #f0f0f0;
}

.mk-w-block__tag {
  margin: 0 0 .35rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mk-red, #c8102e);
}

.mk-w-block__title {
  margin: 0;
  font-family: var(--mk-font);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
  color: #151515;
  text-transform: none;
  letter-spacing: 0;
}

.mk-w-block__body {
  color: #2a2a2a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.mk-w-block__body > :first-child {
  margin-top: 0;
}

.mk-w-block__body > :last-child {
  margin-bottom: 0;
}

.mk-w-block__body p {
  margin: 0 0 1.05rem;
}

.mk-w-block__body h3 {
  margin: 1.35rem 0 .55rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #111;
  text-transform: none;
  letter-spacing: 0;
}

.mk-w-block__body ul,
.mk-w-block__body ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.mk-w-block__body li {
  margin: 0 0 .45rem;
}

.mk-w-block__body strong {
  color: #111;
  font-weight: 800;
}

.mk-w-callout {
  margin: 1.1rem 0;
  padding: .95rem 1.05rem;
  border-radius: .75rem;
  background: #f4f4f5;
  border-left: 3px solid var(--mk-red, #c8102e);
}

.mk-w-callout__label {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #555;
}

.mk-w-callout ul {
  margin: 0;
}

.mk-warranty__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-top: .15rem;
  padding: 1.35rem 1.45rem;
  border-radius: 1rem;
  background: #151515;
  border: 1px solid #2a2a2a;
  color: #f2f2f2;
}

.mk-warranty__cta-title {
  margin: 0 0 .4rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
}

.mk-warranty__cta-text {
  margin: 0;
  max-width: 34rem;
  color: #d0d0d0;
  font-size: .98rem;
  line-height: 1.55;
}

.mk-warranty__cta .mk-btn {
  flex-shrink: 0;
}

.mk-warranty__empty {
  margin: 0;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: #fff;
  color: #444;
  font-size: 1rem;
}

@media (max-width: 720px) {
  .mk-warranty__lead {
    font-size: .98rem;
  }

  .mk-warranty__highlights {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .mk-warranty__highlight {
    padding: .9rem 1rem;
  }

  .mk-warranty__highlight-value {
    font-size: 1rem;
  }

  .mk-w-block {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .mk-w-block__body {
    font-size: .98rem;
    line-height: 1.7;
  }

  .mk-warranty__cta {
    align-items: flex-start;
    padding: 1.15rem 1.1rem;
  }

  .mk-warranty__cta .mk-btn {
    width: 100%;
  }
}

.mk-privacy__intro {
  margin: .9rem 0 0;
  max-width: 42rem;
  color: #555;
  font-size: 1.02rem;
  line-height: 1.65;
}

.mk-privacy__intro p {
  margin: 0 0 .85rem;
}

.mk-privacy__intro p:last-child {
  margin-bottom: 0;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.mk-faq__hero {
  margin-bottom: 1.75rem;
}

.mk-faq__hero .mk-breadcrumb {
  margin-bottom: .75rem;
}

.mk-faq__eyebrow {
  margin: 0 0 .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mk-red, #c8102e);
}

.mk-faq__lead {
  margin: .85rem 0 0;
  max-width: 40rem;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.55;
}

.mk-faq__list {
  max-width: 48rem;
  display: grid;
  gap: .65rem;
  margin-bottom: 1.75rem;
}

.mk-faq__item {
  border: 1px solid #ececec;
  border-radius: .85rem;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mk-faq__item.is-open {
  border-color: #e0e0e0;
  box-shadow: 0 10px 28px -22px rgba(0, 0, 0, .35);
}

.mk-faq__question {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.mk-faq__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1.1rem 1.2rem;
  border: 0;
  background: transparent;
  color: #151515;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.4;
}

.mk-faq__trigger:hover {
  color: var(--mk-red, #c8102e);
}

.mk-faq__q-text {
  flex: 1;
}

.mk-faq__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: .1rem;
  border-radius: 999px;
  background: #f5f5f5;
  color: #555;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}

.mk-faq__item.is-open .mk-faq__icon {
  transform: rotate(180deg);
  background: rgba(200, 16, 46, .1);
  color: var(--mk-red, #c8102e);
}

.mk-faq__answer {
  padding: 0 1.2rem 1.15rem;
}

.mk-faq__answer-inner {
  padding-top: .15rem;
  border-top: 1px solid #f0f0f0;
  color: #444;
  font-size: .98rem;
  line-height: 1.65;
}

.mk-faq__answer-inner p {
  margin: .85rem 0 0;
}

.mk-faq__answer-inner p:first-child {
  margin-top: .85rem;
}

.mk-faq__answer-inner a {
  color: var(--mk-red, #c8102e);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: .15em;
}

.mk-faq__cta {
  max-width: 48rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid #ececec;
  border-radius: 1rem;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.mk-faq__cta-title {
  margin: 0 0 .35rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #151515;
}

.mk-faq__cta-text {
  margin: 0;
  color: #555;
  font-size: .95rem;
  line-height: 1.5;
}

.mk-faq__cta .mk-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .mk-faq__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .mk-faq__cta .mk-btn {
    width: 100%;
  }
}

.mk-catalog__hero {
  margin-bottom: 1.25rem;
}

.mk-catalog__hero .mk-breadcrumb {
  margin-bottom: .65rem;
}

.mk-catalog--has-banner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  isolation: isolate;
}

.mk-catalog--has-banner > .mk-catalog__body {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: calc(1.15rem + 30px);
}

.mk-catalog__hero--on-banner {
  margin-bottom: .85rem;
}

.mk-catalog__hero--on-banner .mk-breadcrumb {
  color: rgba(255, 255, 255, .72);
}

.mk-catalog__hero--on-banner .mk-breadcrumb a {
  color: rgba(255, 255, 255, .8);
}

.mk-catalog__hero--on-banner .mk-breadcrumb a:hover {
  color: #fff;
}

.mk-catalog--has-banner .mk-catalog__toolbar {
  margin-bottom: 1.1rem;
  border-top-color: rgba(255, 255, 255, .14);
  border-bottom-color: rgba(255, 255, 255, .14);
}

.mk-catalog-banner {
  --mk-cat-banner-opacity: .9;
  --mk-cat-banner-mask-a: 22%;
  --mk-cat-banner-mask-b: 48%;
  --mk-cat-banner-mask-c: 72%;
  --mk-cat-banner-parallax: 0px;
  --mk-cat-banner-h: min(48vh, 26rem);
  position: absolute;
  top: calc(var(--mk-cat-banner-h) * -0.2);
  left: 0;
  right: 0;
  z-index: 0;
  height: calc(var(--mk-cat-banner-h) * 1.2);
  margin: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  pointer-events: none;
}

.mk-catalog-banner__media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  opacity: var(--mk-cat-banner-opacity, .9);
  transform: translate3d(0, var(--mk-cat-banner-parallax, 0px), 0);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--mk-cat-banner-mask-a, 22%),
    rgba(0, 0, 0, .42) var(--mk-cat-banner-mask-b, 48%),
    rgba(0, 0, 0, .12) var(--mk-cat-banner-mask-c, 72%),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--mk-cat-banner-mask-a, 22%),
    rgba(0, 0, 0, .42) var(--mk-cat-banner-mask-b, 48%),
    rgba(0, 0, 0, .12) var(--mk-cat-banner-mask-c, 72%),
    transparent 100%
  );
  will-change: opacity, transform;
}

.mk-catalog-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.06);
}

.mk-catalog-banner__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, .14) 0%,
      rgba(0, 0, 0, .04) 20%,
      transparent 45%,
      transparent 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, .08) 0%,
      transparent 22%,
      transparent 78%,
      rgba(0, 0, 0, .08) 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--mk-cat-banner-mask-a, 22%),
    rgba(0, 0, 0, .28) var(--mk-cat-banner-mask-b, 48%),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 var(--mk-cat-banner-mask-a, 22%),
    rgba(0, 0, 0, .28) var(--mk-cat-banner-mask-b, 48%),
    transparent 100%
  );
}

.mk-catalog-banner__title {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 10px 36px rgba(0, 0, 0, .45);
}

@media (max-width: 640px) {
  .mk-catalog-banner {
    --mk-cat-banner-h: min(40vh, 18rem);
  }
}

.mk-catalog__meta {
  margin: 0;
  color: #a8a8a8;
  font-size: .92rem;
  line-height: 1.35;
}

.mk-catalog__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 1rem;
  margin-bottom: 1.25rem;
  padding: .9rem 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.mk-catalog__toolbar-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  min-width: 0;
}

.mk-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 2.45rem;
  padding: .5rem 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: .65rem;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-family: var(--mk-font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.mk-filter-btn:hover,
.mk-filter-btn[aria-expanded="true"] {
  background: var(--mk-red);
  border-color: var(--mk-red);
}

@media (min-width: 980px) {
  .mk-filter-btn {
    display: none;
  }
}

.mk-catalog__sort {
  position: relative;
  margin-left: auto;
  z-index: 5;
}

.mk-catalog__sort-trigger {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 2.55rem;
  min-width: 12.5rem;
  padding: 0 .85rem 0 .8rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: .75rem;
  background: #141414;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.mk-catalog__sort-trigger:hover {
  border-color: rgba(255, 255, 255, .35);
  background: #181818;
}

.mk-catalog__sort.is-open .mk-catalog__sort-trigger {
  border-color: var(--mk-red);
  background: #181818;
}

.mk-catalog__sort-icon {
  display: grid;
  place-items: center;
  color: #bdbdbd;
  flex: 0 0 auto;
}

.mk-catalog__sort-label {
  flex: 1 1 auto;
  text-align: left;
  font-family: var(--mk-font);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

.mk-catalog__sort-caret {
  display: grid;
  place-items: center;
  color: #9a9a9a;
  flex: 0 0 auto;
  transition: transform .2s ease;
}

.mk-catalog__sort.is-open .mk-catalog__sort-caret {
  transform: rotate(180deg);
  color: #fff;
}

@media (max-width: 979px) {
  .mk-catalog__toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: .55rem .65rem;
    padding: .75rem 0;
  }

  .mk-catalog__toolbar-left {
    display: contents;
  }

  .mk-filter-btn {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 2.55rem;
    min-height: 2.55rem;
    justify-content: center;
    padding: 0 .75rem;
    border-radius: .75rem;
    box-sizing: border-box;
  }

  .mk-catalog__meta {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    font-size: .82rem;
  }

  .mk-catalog__sort {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    width: 100%;
    min-width: 0;
  }

  .mk-catalog__toolbar:not(:has(.mk-filter-btn)) .mk-catalog__sort {
    grid-column: 1 / -1;
  }

  .mk-catalog__sort-trigger {
    width: 100%;
    min-width: 0;
    height: 2.55rem;
    min-height: 2.55rem;
    box-sizing: border-box;
    gap: .4rem;
    padding: 0 .65rem;
  }

  .mk-catalog__sort-label {
    font-size: .82rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.mk-catalog__sort-menu {
  position: absolute;
  top: calc(100% + .4rem);
  right: 0;
  left: 0;
  margin: 0;
  padding: .35rem;
  list-style: none;
  border: 1px solid #2c2c2c;
  border-radius: .75rem;
  background: #121212;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
  overflow: hidden;
}

.mk-catalog__sort-menu[hidden] {
  display: none;
}

.mk-catalog__sort-option {
  display: block;
  padding: .7rem .8rem;
  border-radius: .5rem;
  color: #e8e8e8;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.mk-catalog__sort-option:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.mk-catalog__sort-option.is-selected {
  background: var(--mk-red);
  color: #fff;
}

.mk-catalog__sort-option.is-selected:hover {
  background: var(--mk-red);
}

.mk-catalog__layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 980px) {
  .mk-catalog__layout--with-filters {
    grid-template-columns: 16.5rem minmax(0, 1fr);
    align-items: start;
    gap: 1.75rem;
  }
}

.mk-filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

body.mk-filter-open .mk-filter-backdrop {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 980px) {
  .mk-filter-backdrop {
    display: none;
  }
}

.mk-catalog-filters {
  background: #101010;
  border: 1px solid #222;
  border-radius: .9rem;
  overflow: hidden;
}

@media (max-width: 979px) {
  /* .mk-main tem isolation:isolate — sem isso o drawer fica sob o header sticky */
  body.mk-filter-open .mk-main {
    z-index: 100;
  }

  body.mk-filter-open {
    overflow: hidden;
  }

  .mk-filter-backdrop {
    z-index: 101;
  }

  .mk-catalog-filters {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 102;
    display: flex;
    flex-direction: column;
    width: min(20.5rem, calc(100vw - 1.25rem));
    height: 100%;
    height: 100dvh;
    max-height: 100dvh;
    padding-top: env(safe-area-inset-top, 0);
    border-radius: 0;
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    transform: translateX(-105%);
    transition: transform .28s ease;
  }

  body.mk-filter-open .mk-catalog-filters {
    transform: translateX(0);
  }
}

.mk-catalog-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem .85rem;
  border-bottom: 1px solid #1f1f1f;
}

.mk-catalog-filters__head h2 {
  margin: 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mk-catalog-filters__close {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  background: #151515;
  color: #ddd;
  cursor: pointer;
}

@media (min-width: 980px) {
  .mk-catalog-filters__close {
    display: none;
  }
}

.mk-catalog-filters__close:hover {
  background: var(--mk-red);
  border-color: var(--mk-red);
  color: #fff;
}

.mk-catalog-filters__body {
  padding: .85rem 1rem 1.15rem;
  overflow: auto;
}

.mk-catalog-filters__back {
  display: inline-flex;
  margin-bottom: .9rem;
  color: #cfcfcf;
  font-size: .88rem;
  font-weight: 600;
}

.mk-catalog-filters__back:hover {
  color: #fff;
}

.mk-catalog-filters__section + .mk-catalog-filters__section {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid #222;
}

.mk-catalog-filters__section h3 {
  margin: 0 0 .7rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.mk-catalog-filters__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .2rem;
}

.mk-catalog-filters__list--scroll {
  max-height: 18rem;
  overflow: auto;
  padding-right: .35rem;
  scrollbar-width: thin;
  scrollbar-color: #3a3a3a transparent;
}

.mk-catalog-filters__list--scroll::-webkit-scrollbar {
  width: 4px;
}

.mk-catalog-filters__list--scroll::-webkit-scrollbar-track {
  background: transparent;
}

.mk-catalog-filters__list--scroll::-webkit-scrollbar-thumb {
  background: #3a3a3a;
  border-radius: 999px;
}

.mk-catalog-filters__list--scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.mk-catalog-filters__list--scroll::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.mk-catalog-filters__link,
.mk-catalog-check {
  display: flex;
  align-items: center;
  gap: .55rem;
  width: 100%;
  padding: .55rem .45rem;
  border-radius: .55rem;
  color: #e4e4e4;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.mk-catalog-filters__link:hover,
.mk-catalog-check:hover {
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.mk-catalog-filters__link span,
.mk-catalog-check span {
  flex: 1 1 auto;
  min-width: 0;
}

.mk-catalog-filters__link em,
.mk-catalog-check em {
  flex: 0 0 auto;
  font-style: normal;
  font-size: .75rem;
  color: #888;
}

.mk-catalog-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--mk-red);
  flex: 0 0 auto;
}

.mk-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: 2rem;
}

.mk-catalog-infinite {
  display: none;
  justify-items: center;
  gap: .75rem;
  margin-top: 1.5rem;
  min-height: 2.5rem;
}

.mk-catalog-infinite__status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #9a9a9a;
  font-size: .9rem;
}

.mk-catalog-infinite__status[hidden],
.mk-catalog-infinite__more[hidden],
.mk-catalog-infinite__end[hidden] {
  display: none;
}

.mk-catalog-infinite__spinner {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(255, 255, 255, .18);
  border-top-color: var(--mk-red);
  border-radius: 999px;
  animation: mk-search-spin .7s linear infinite;
}

.mk-catalog-infinite__more {
  min-height: 2.5rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: transparent;
  color: #f0f0f0;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.mk-catalog-infinite__more:hover {
  border-color: var(--mk-red);
  background: rgba(200, 16, 46, .12);
  color: #fff;
}

.mk-catalog-infinite__end {
  margin: 0;
  color: #777;
  font-size: .88rem;
}

.mk-catalog-infinite__sentinel {
  width: 100%;
  height: 1px;
}

@media (max-width: 719px) {
  .mk-catalog .mk-pager {
    display: none;
  }

  .mk-catalog-infinite {
    display: grid;
  }
}

.mk-pager__link,
.mk-pager__btn {
  display: inline-grid;
  place-items: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 .55rem;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  background: #121212;
  color: #ddd;
  font-weight: 700;
  font-size: .88rem;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.mk-pager__btn {
  gap: 0;
  min-width: 2.45rem;
}

.mk-pager__btn svg {
  display: block;
}

.mk-pager__link:hover,
.mk-pager__btn:hover {
  background: rgba(200, 16, 46, .14);
  border-color: rgba(200, 16, 46, .55);
  color: #fff;
}

.mk-pager__link.is-current {
  background: var(--mk-red);
  border-color: var(--mk-red);
  color: #fff;
  pointer-events: none;
}

.mk-pager__btn.is-disabled {
  opacity: .35;
  pointer-events: none;
}

.mk-pager__ellipsis {
  display: inline-grid;
  place-items: center;
  min-width: 1.5rem;
  height: 2.35rem;
  color: #777;
  font-weight: 700;
  letter-spacing: .08em;
  user-select: none;
}

.mk-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--mk-muted);
  border: 1px dashed #2a2a2a;
  border-radius: .85rem;
}

.mk-search-ai {
  margin-top: 1.75rem;
}

.mk-search-ai__head {
  margin-bottom: 1.1rem;
}

.mk-search-ai__title {
  margin: 0 0 .4rem;
  font-family: var(--mk-font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  color: #fff;
}

.mk-search-ai__lead {
  margin: 0;
  max-width: 40rem;
  color: var(--mk-muted);
  font-size: .95rem;
  line-height: 1.5;
}

.mk-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  color: var(--mk-muted);
  font-size: .88rem;
  margin-bottom: 1rem;
}

.mk-breadcrumb a:hover { color: #fff; }

.mk-breadcrumb__sep {
  opacity: .55;
  user-select: none;
}

.mk-product-page {
  padding-top: 2.5rem;
}

.mk-product-page > .mk-breadcrumb {
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.mk-product {
  display: grid;
  gap: 1.75rem;
}

.mk-product__gallery {
  display: grid;
  gap: .85rem;
}

.mk-product__stage {
  position: relative;
  display: grid;
  place-items: stretch;
  width: 100%;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid #1f1f1f;
  border-radius: 1rem;
  background: #fff;
  aspect-ratio: 1;
  max-height: min(100%, calc(100svh - 10rem));
  overflow: hidden;
  cursor: zoom-in;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mk-product__stage:hover,
.mk-product__stage:focus-visible {
  border-color: rgba(200, 16, 46, .55);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .28);
  outline: none;
}

.mk-product__stage img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  padding: 0;
  transition: transform .35s ease;
}

.mk-product__stage:hover img {
  transform: scale(1.03);
}

@media (min-width: 960px) {
  .mk-product {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 2.25rem;
    align-items: stretch;
  }

  .mk-product__gallery {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    min-height: 0;
    height: 100%;
  }

  /* Stage acompanha a coluna da direita, com teto dinÃ¢mico pela viewport */
  .mk-product__stage {
    flex: 1 1 0;
    min-height: 0;
    max-height: min(100%, calc(100svh - 10rem));
    aspect-ratio: auto;
    align-self: stretch;
    height: auto;
  }

  .mk-product__thumbs {
    flex: 0 0 auto;
  }

  .mk-product__info {
    height: 100%;
  }
}

.mk-product__zoom-hint {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  pointer-events: none;
}

.mk-product__thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  overflow-x: auto;
  padding-bottom: .15rem;
  scrollbar-width: thin;
  scrollbar-color: #3a3a3a transparent;
}

.mk-product__thumb {
  flex: 0 0 auto;
  width: 4.4rem;
  height: 4.4rem;
  padding: .3rem;
  border: 1px solid #2a2a2a;
  border-radius: .7rem;
  background: #fff;
  cursor: zoom-in;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}

.mk-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mk-product__thumb:hover,
.mk-product__thumb.is-active {
  border-color: var(--mk-red);
  transform: translateY(-1px);
}

.mk-product__info {
  display: grid;
  align-content: start;
  gap: .85rem;
}

.mk-product__brand {
  margin: 0;
  color: var(--mk-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
}

.mk-product__brand a {
  color: inherit;
  text-decoration: none;
  transition: color .15s ease;
}

.mk-product__brand a:hover {
  color: #fff;
}

.mk-product__title {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: none;
  line-height: 1.15;
  color: #fff;
}

.mk-product__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .85rem;
}

.mk-product__sku {
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  color: #bdbdbd;
  font-size: .9rem;
}

.mk-product__sku em {
  font-style: normal;
  color: #888;
}

.mk-product__sku strong {
  color: #fff;
  font-weight: 700;
}

.mk-product__stock {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mk-product__stock.is-ok {
  background: rgba(34, 160, 90, .16);
  color: #7ddea8;
}

.mk-product__stock.is-out {
  background: rgba(200, 16, 46, .16);
  color: #ff8da0;
}

.mk-product__pricing {
  display: grid;
  gap: .25rem;
  margin-top: .25rem;
}

.mk-product__price {
  margin: 0;
  color: var(--mk-red);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
}

.mk-product__price--consult {
  color: #f0f0f0;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 750;
}

.mk-product__price-old {
  margin: 0;
  color: #888;
  font-size: .95rem;
  text-decoration: line-through;
}

.mk-product__price-alt,
.mk-product__iva {
  margin: 0;
  color: #a8a8a8;
  font-size: .9rem;
}

.mk-product__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
  margin-top: .55rem;
}

.mk-product__consult-wa {
  background: #1fad4d;
  color: #fff !important;
  border: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}

.mk-product__consult-wa:hover {
  background: #18963f;
  color: #fff !important;
  transform: translateY(-1px);
}

.mk-product__consult-wa svg {
  flex-shrink: 0;
}

.mk-product__highlights {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #2a2a2a;
  border-radius: .7rem;
  background: #0f0f0f;
  overflow: hidden;
}

.mk-product__highlights li {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  gap: .7rem;
  align-items: start;
  margin: 0;
  padding: .95rem 1rem;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
}

.mk-product__highlights li:nth-child(2n) {
  border-right: none;
}

.mk-product__highlights li:nth-last-child(-n+2) {
  border-bottom: none;
}

.mk-product__highlight-icon {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: .12rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #f0f0f0;
  flex-shrink: 0;
}

.mk-product__highlight-icon svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  color: inherit;
  stroke: currentColor;
}

.mk-product__highlight-copy {
  display: grid;
  gap: .25rem;
  min-width: 0;
  padding-top: 0;
}

.mk-product__highlights strong {
  color: #fff;
  font-family: var(--mk-font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
}

.mk-product__highlight-copy span {
  color: #9a9a9a;
  font-size: .82rem;
  line-height: 1.45;
}

@media (max-width: 560px) {
  .mk-product__highlights {
    grid-template-columns: 1fr;
  }

  .mk-product__highlights li {
    border-right: none;
  }

  .mk-product__highlights li:nth-last-child(-n+2) {
    border-bottom: 1px solid #222;
  }

  .mk-product__highlights li:last-child {
    border-bottom: none;
  }
}

.mk-product__quote,
.mk-product__wa,
.mk-product__consult-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  box-sizing: border-box;
  height: 3rem;
  min-height: 3rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-family: var(--mk-font-display);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mk-product__quote svg,
.mk-product__wa svg,
.mk-product__consult-wa svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.mk-product__quote.is-added {
  background: #111;
}

.mk-product-panels {
  margin-top: 2.75rem;
  border: 1px solid #222;
  border-radius: 1rem;
  background: #0a0a0a;
  overflow: hidden;
}

.mk-product-panels__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  padding: .7rem;
  border-bottom: 1px solid #1f1f1f;
  background: #111;
}

.mk-product-panels__tab {
  appearance: none;
  border: 0;
  border-radius: .65rem;
  background: transparent;
  color: #9a9a9a;
  padding: .7rem 1rem;
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.mk-product-panels__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.mk-product-panels__tab.is-active {
  color: #fff;
  background: var(--mk-red);
}

.mk-product-panels__acc {
  display: none;
}

.mk-product-panels__block {
  display: contents;
}

.mk-product-panels__panel {
  padding: 1.35rem 1.25rem 1.55rem;
  background: transparent;
}

.mk-product-panels__panel[hidden] {
  display: none;
}

@media (max-width: 719px) {
  .mk-product-panels {
    border-radius: .85rem;
  }

  .mk-product-panels__tabs {
    display: none;
  }

  .mk-product-panels__block {
    display: block;
    border-bottom: 1px solid #1f1f1f;
  }

  .mk-product-panels__block:last-child {
    border-bottom: 0;
  }

  .mk-product-panels__acc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    width: 100%;
    margin: 0;
    padding: .95rem 1rem;
    border: 0;
    border-radius: 0;
    background: #111;
    color: #cfcfcf;
    font: inherit;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
  }

  .mk-product-panels__block.is-open .mk-product-panels__acc {
    color: #fff;
    background: var(--mk-red);
  }

  .mk-product-panels__acc-icon {
    flex-shrink: 0;
    transition: transform .22s ease;
  }

  .mk-product-panels__block.is-open .mk-product-panels__acc-icon {
    transform: rotate(180deg);
  }

  .mk-product-panels__panel {
    padding: 1rem 1rem 1.2rem;
  }
}

.mk-product__prose {
  color: #d4d4d4;
  line-height: 1.7;
  font-size: .98rem;
}

.mk-product__prose p { margin: 0 0 1rem; }
.mk-product__prose ul,
.mk-product__prose ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.mk-product__prose li { margin: .35rem 0; }
.mk-product__prose h2,
.mk-product__prose h3 {
  margin: 1.25rem 0 .6rem;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05rem;
}

.mk-product__prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  padding: .75rem;
  background: #fff;
  border-radius: .75rem;
}

.mk-product__specs {
  width: 100%;
  border-collapse: collapse;
}

.mk-product__specs th,
.mk-product__specs td {
  padding: .85rem .2rem;
  border-bottom: 1px solid #222;
  text-align: left;
  vertical-align: top;
  font-size: .95rem;
}

.mk-product__specs tr:last-child th,
.mk-product__specs tr:last-child td {
  border-bottom: none;
}

.mk-product__specs th {
  width: 38%;
  color: #9a9a9a;
  font-weight: 700;
}

.mk-product__specs td {
  color: #e8e8e8;
}

.mk-product__features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .65rem;
}

.mk-product__features li {
  position: relative;
  padding-left: 1.2rem;
  color: #e8e8e8;
  line-height: 1.55;
}

.mk-product__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: var(--mk-red);
}

.mk-product__notes {
  display: grid;
  gap: 1rem;
}

@media (min-width: 820px) {
  .mk-product__notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mk-product__notes article {
  padding: 1rem 1.05rem;
  border: 1px solid #222;
  border-radius: .85rem;
  background: #101010;
}

.mk-product__notes h3 {
  margin: 0 0 .45rem;
  color: #fff;
  font-size: .95rem;
  text-transform: none;
  letter-spacing: 0;
}

.mk-product__notes p {
  margin: 0;
  color: #b5b5b5;
  font-size: .9rem;
  line-height: 1.55;
}

.mk-product__notes p + p {
  margin-top: .55rem;
}

.mk-product-related {
  margin-top: 2.75rem;
}

/* Lightbox / gallery modal — fullscreen */
.mk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: stretch;
  padding: 0;
}

.mk-lightbox[hidden] {
  display: none;
}

.mk-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(3px);
}

.mk-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-width: none;
  max-height: none;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  padding: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  color: #151515;
  overflow: hidden;
}

.mk-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.mk-lightbox__close:hover {
  background: var(--mk-red);
  border-color: var(--mk-red);
  color: #fff;
}

.mk-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.mk-lightbox__nav--prev { left: 1rem; }
.mk-lightbox__nav--next { right: 1rem; }

.mk-lightbox__nav:hover {
  background: var(--mk-red);
  border-color: var(--mk-red);
  color: #fff;
}

.mk-lightbox__stage {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: none;
  cursor: grab;
  touch-action: none;
}

.mk-lightbox__stage.is-dragging {
  cursor: grabbing;
}

.mk-lightbox__stage img {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: .5rem;
  object-fit: contain;
  object-position: center;
  user-select: none;
  transform-origin: center center;
  transition: transform .08s linear;
  will-change: transform;
}

.mk-lightbox__thumbs {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  z-index: 7;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: .45rem;
  max-width: min(92vw, 42rem);
  padding: .4rem .5rem;
  border-radius: .9rem;
  background: rgba(10, 10, 10, .62);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
  overflow-x: auto;
  transform: translateX(-50%);
  scrollbar-width: thin;
}

.mk-lightbox__thumb {
  flex: 0 0 auto;
  width: 3.35rem;
  height: 3.35rem;
  padding: .2rem;
  border: 2px solid transparent;
  border-radius: .55rem;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}

.mk-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mk-lightbox__thumb.is-active,
.mk-lightbox__thumb:hover {
  border-color: var(--mk-red);
  transform: translateY(-1px);
}

body.mk-lightbox-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .mk-lightbox__stage img {
    padding: .65rem;
  }

  .mk-lightbox__close {
    top: .7rem;
    right: .7rem;
  }

  .mk-lightbox__nav--prev { left: .45rem; }
  .mk-lightbox__nav--next { right: .45rem; }

  .mk-lightbox__thumbs {
    bottom: .75rem;
    max-width: calc(100vw - 1rem);
  }

  .mk-lightbox__thumb {
    width: 2.9rem;
    height: 2.9rem;
  }

  .mk-product__actions {
    flex-direction: column;
  }

  .mk-product__quote,
  .mk-product__wa,
  .mk-product__consult-wa {
    width: 100%;
  }
}

/* Departamentos — listagem em árvore */
.mk-depts__hero {
  margin-bottom: 1.35rem;
}

.mk-depts-banners {
  margin: 0 0 1.75rem;
}

.mk-depts-banners__track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16.5rem), 1fr));
  gap: .85rem;
}

.mk-depts-banners__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: .9rem;
  aspect-ratio: 16 / 9;
  background: #121212;
  isolation: isolate;
  text-decoration: none;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.mk-depts-banners__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .45);
}

.mk-depts-banners__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.mk-depts-banners__card:hover .mk-depts-banners__img {
  transform: scale(1.04);
}

.mk-depts-banners__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 55%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, .35) 38%,
    rgba(0, 0, 0, .78) 72%,
    #000 100%
  );
}

.mk-depts-banners__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: .85rem 1rem;
  font-family: var(--mk-font-display);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.25;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}

@media (max-width: 640px) {
  .mk-depts-banners__track {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .mk-depts-banners__card {
    aspect-ratio: 2 / 1;
  }
}

.mk-depts__hero .mk-breadcrumb {
  margin-bottom: .75rem;
}

.mk-depts__lead {
  margin: .55rem 0 0;
  max-width: 36rem;
  color: #9a9a9a;
  font-size: .98rem;
  line-height: 1.45;
}

.mk-depts__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  margin-bottom: 1rem;
}

.mk-depts__search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 16rem;
  min-width: 0;
  max-width: 28rem;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .75rem;
  padding: 0 .75rem 0 .9rem;
  color: #aaa;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mk-depts__search:focus-within {
  border-color: rgba(200, 16, 46, .55);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .12);
  color: #fff;
}

.mk-depts__search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f3f3f3;
  font: inherit;
  padding: .72rem .55rem .72rem .55rem;
}

.mk-depts__search input::placeholder {
  color: #777;
}

.mk-depts__search-clear {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #ccc;
  cursor: pointer;
}

.mk-depts__search-clear[hidden] {
  display: none !important;
}

.mk-depts__search-clear:hover {
  background: rgba(200, 16, 46, .2);
  color: #fff;
}

.mk-depts__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.mk-depts__action {
  min-height: 2.35rem;
  padding: 0 .9rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: transparent;
  color: #e8e8e8;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.mk-depts__action:hover {
  border-color: var(--mk-red);
  background: rgba(200, 16, 46, .1);
  color: #fff;
}

.mk-depts__letters {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: 0 0 1rem;
}

.mk-depts__letter {
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 .45rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .45rem;
  background: #121212;
  color: #cfcfcf;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.mk-depts__letter:hover {
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.mk-depts__letter.is-active {
  background: var(--mk-red);
  border-color: var(--mk-red);
  color: #fff;
}

.mk-depts__count {
  margin: 0 0 .85rem;
  color: #8f8f8f;
  font-size: .88rem;
}

.mk-depts__tree {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: .9rem;
  overflow: hidden;
  background: #0d0d0d;
}

.mk-depts__node {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.mk-depts__node:last-child {
  border-bottom: none;
}

.mk-depts__node.is-hidden {
  display: none !important;
}

.mk-depts__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .85rem;
  align-items: center;
  padding: .85rem 1rem;
  transition: background .18s ease;
}

.mk-depts__node--child > .mk-depts__row {
  grid-template-columns: minmax(0, 1fr);
  padding: .65rem 1rem .65rem 1.15rem;
}

.mk-depts__node--child.has-children > .mk-depts__row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.mk-depts__node--root:hover > .mk-depts__row,
.mk-depts__node--child:hover > .mk-depts__row {
  background: #151515;
}

.mk-depts__thumb {
  display: grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: .65rem;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.mk-depts__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mk-depts__thumb--empty {
  background: #1a1a1a;
  color: #777;
  border: 1px solid rgba(255, 255, 255, .08);
}

.mk-depts__main {
  min-width: 0;
}

.mk-depts__link {
  color: #f3f3f3;
  text-decoration: none;
}

.mk-depts__link:hover .mk-depts__name {
  color: #fff;
}

.mk-depts__name {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
}

.mk-depts__node--child .mk-depts__name {
  font-size: .94rem;
  font-weight: 600;
}

.mk-depts__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .7rem;
  margin-top: .2rem;
  color: #888;
  font-size: .78rem;
}

.mk-depts__toggle {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: transparent;
  color: #ddd;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.mk-depts__toggle:hover {
  border-color: var(--mk-red);
  background: rgba(200, 16, 46, .12);
  color: #fff;
}

.mk-depts__node.is-open > .mk-depts__row .mk-depts__toggle {
  background: rgba(200, 16, 46, .16);
  border-color: rgba(200, 16, 46, .45);
  color: #fff;
  transform: rotate(180deg);
}

.mk-depts__children {
  list-style: none;
  margin: 0;
  padding: 0 0 .35rem;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.mk-depts__children[hidden] {
  display: none !important;
}

.mk-depts__children .mk-depts__node {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.mk-depts__children .mk-depts__node:last-child {
  border-bottom: none;
}

.mk-depts__empty[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .mk-depts__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .mk-depts__search {
    max-width: none;
  }

  .mk-depts__actions {
    width: 100%;
  }

  .mk-depts__action {
    flex: 1;
  }

  .mk-depts__row {
    gap: .7rem;
    padding: .75rem .8rem;
  }

  .mk-depts__thumb {
    width: 3.1rem;
    height: 3.1rem;
  }
}

/* ── Marcas index (/marcas) ─────────────────────────────────────── */
.mk-bi {
  position: relative;
}

.mk-bi::before {
  content: "";
  position: absolute;
  inset: -1rem -1rem auto;
  height: 9rem;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 8% 0%, rgba(200, 16, 46, .16), transparent 55%),
    radial-gradient(ellipse 40% 50% at 92% 20%, rgba(200, 16, 46, .06), transparent 50%);
  z-index: 0;
}

.mk-bi > * {
  position: relative;
  z-index: 1;
}

.mk-bi__hero {
  margin-bottom: 1.35rem;
  animation: mk-bi-in .55s ease both;
}

.mk-bi__hero .mk-breadcrumb {
  margin-bottom: .75rem;
}

.mk-bi__title {
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mk-bi__lead {
  margin: .55rem 0 0;
  max-width: 36rem;
  color: #9a9a9a;
  font-size: .98rem;
  line-height: 1.45;
}

.mk-bi__toolbar {
  margin-bottom: 1rem;
  animation: mk-bi-in .55s ease .06s both;
}

.mk-bi__search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 42rem;
  background: #fff;
  border-radius: .2rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .06), 0 12px 40px rgba(0, 0, 0, .35);
  transition: box-shadow .2s ease;
}

.mk-bi__search:focus-within {
  box-shadow: 0 0 0 2px var(--mk-red), 0 12px 40px rgba(0, 0, 0, .35);
}

.mk-bi__search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #151515;
  font: inherit;
  font-size: 1.02rem;
  padding: .95rem 1.1rem;
}

.mk-bi__search input::placeholder {
  color: #9a9a9a;
}

.mk-bi__search-icon {
  display: grid;
  place-items: center;
  padding: 0 1rem 0 .35rem;
  color: #555;
  pointer-events: none;
}

.mk-bi__search-clear {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  margin-right: .25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, .08);
  color: #444;
  cursor: pointer;
}

.mk-bi__search-clear[hidden] {
  display: none !important;
}

.mk-bi__search-clear:hover {
  background: rgba(200, 16, 46, .15);
  color: var(--mk-red);
}

.mk-bi__az-sentinel {
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.mk-bi__az {
  position: sticky;
  top: var(--mk-header-h, 4.6rem);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin: 0 0 1rem;
  padding: .65rem 0;
  background: transparent;
  animation: mk-bi-in .55s ease .1s both;
  isolation: isolate;
}

.mk-bi__az.is-stuck {
  padding: .75rem 0 .55rem;
  animation: none;
  transform: none;
}

.mk-bi__az.is-stuck::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  width: auto;
  top: calc(var(--mk-az-bg-top, 0px) - 1px);
  height: calc(var(--mk-az-bg-h, 0px) + 1px + 2.85rem);
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      #000 0%,
      #000 calc(100% - 2.85rem),
      rgba(0, 0, 0, .92) calc(100% - 1.9rem),
      rgba(0, 0, 0, .55) calc(100% - .95rem),
      rgba(0, 0, 0, .18) calc(100% - .35rem),
      transparent 100%
    );
}

.mk-bi__az.is-stuck .mk-bi__az-btn {
  position: relative;
  z-index: 1;
}

.mk-bi__az-btn {
  min-width: 2.05rem;
  height: 2.05rem;
  padding: 0 .55rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: transparent;
  color: #cfcfcf;
  font-family: var(--mk-font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, opacity .15s ease;
}

.mk-bi__az-btn:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  background: transparent;
}

.mk-bi__az-btn.is-active {
  background: transparent;
  border-color: var(--mk-red);
  color: var(--mk-red);
}

.mk-bi__az-btn.is-dimmed,
.mk-bi__az-btn:disabled {
  opacity: .28;
  cursor: default;
}

.mk-bi__count {
  margin: 0 0 1.1rem;
  color: #8f8f8f;
  font-size: .88rem;
  animation: mk-bi-in .55s ease .14s both;
}

.mk-bi__directory {
  column-count: 1;
  column-gap: 1.75rem;
}

@media (min-width: 560px) {
  .mk-bi__directory { column-count: 2; }
}

@media (min-width: 860px) {
  .mk-bi__directory { column-count: 3; }
}

@media (min-width: 1100px) {
  .mk-bi__directory { column-count: 4; }
}

.mk-bi__group {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 1.75rem;
  animation: mk-bi-up .5s ease both;
}

.mk-bi__group:nth-child(1) { animation-delay: .08s; }
.mk-bi__group:nth-child(2) { animation-delay: .12s; }
.mk-bi__group:nth-child(3) { animation-delay: .16s; }
.mk-bi__group:nth-child(4) { animation-delay: .2s; }
.mk-bi__group:nth-child(5) { animation-delay: .24s; }
.mk-bi__group:nth-child(n+6) { animation-delay: .28s; }

.mk-bi__group.is-hidden {
  display: none !important;
}

.mk-bi__letter {
  margin: 0 0 .45rem;
  font-family: var(--mk-font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--mk-red);
}

.mk-bi__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.mk-bi__item.is-hidden {
  display: none !important;
}

.mk-bi__link {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .4rem .45rem .4rem .15rem;
  border-radius: .55rem;
  color: #f0f0f0;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease, color .18s ease, padding .18s ease;
}

.mk-bi__link:hover,
.mk-bi__link:focus-visible {
  background: rgba(255, 255, 255, .05);
  color: #fff;
  padding-left: .7rem;
  transform: none;
  outline: none;
}

.mk-bi__meta {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
}

.mk-bi__name {
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mk-bi__link:hover .mk-bi__name {
  color: var(--mk-red);
}

.mk-bi__products {
  font-size: .72rem;
  color: #7d7d7d;
  letter-spacing: .01em;
}

.mk-bi__empty {
  margin-top: 1rem;
}

@keyframes mk-bi-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mk-bi-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mk-bi__hero,
  .mk-bi__toolbar,
  .mk-bi__az,
  .mk-bi__count,
  .mk-bi__group {
    animation: none !important;
  }

  .mk-bi__link:hover,
  .mk-bi__link:focus-visible {
    transform: none;
  }
}

/* Brand marquee (letreiro) */
.mk-brand-marquee {
  position: relative;
  margin-top: 1.25rem;
  padding: 2.85rem 0 1.2rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, .35) 22%,
    rgba(0, 0, 0, .82) 48%,
    #000 68%,
    #000 100%
  );
  border-top: 0;
  border-bottom: 2px solid var(--mk-red);
  overflow: hidden;
}

.mk-brand-marquee--home {
  --mk-marquee-neon: rgba(200, 16, 46, .55);
  margin: 1.5rem 0;
  padding: 1.15rem 0;
  background: #0a0a0a;
  border-top: 1px solid var(--mk-red);
  border-bottom: 1px solid var(--mk-red);
  box-shadow:
    inset 0 1px 0 rgba(200, 16, 46, .12),
    inset 0 -1px 0 rgba(200, 16, 46, .12);
  transition:
    border-color .35s ease,
    box-shadow .35s ease,
    background-color .35s ease;
}

.mk-brand-marquee--home:hover,
.mk-brand-marquee--home:focus-within {
  border-color: #ff2d4a;
  background: #0c0c0c;
  box-shadow:
    0 0 0 1px rgba(255, 45, 74, .25),
    0 0 18px rgba(200, 16, 46, .28),
    0 0 42px rgba(200, 16, 46, .14),
    inset 0 0 24px rgba(200, 16, 46, .08);
}

.mk-brand-marquee--home .mk-brand-marquee__item {
  padding: 0 1.45rem;
  line-height: 1;
  color: rgba(255, 255, 255, .58);
  text-shadow: none;
  transition:
    color .25s ease,
    text-shadow .25s ease,
    transform .25s ease;
}

.mk-brand-marquee--home .mk-brand-marquee__item::after {
  width: .22rem;
  height: .22rem;
  background: var(--mk-red);
  box-shadow: 0 0 6px rgba(200, 16, 46, .35);
  opacity: .7;
  transition: opacity .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.mk-brand-marquee--home:hover .mk-brand-marquee__item::after,
.mk-brand-marquee--home:focus-within .mk-brand-marquee__item::after {
  opacity: 1;
  background: #ff3b57;
  box-shadow: 0 0 8px rgba(255, 45, 74, .75);
}

.mk-brand-marquee--home .mk-brand-marquee__item:hover,
.mk-brand-marquee--home .mk-brand-marquee__item:focus-visible {
  color: #fff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, .35),
    0 0 18px rgba(200, 16, 46, .55),
    0 0 32px rgba(200, 16, 46, .35);
}

@media (prefers-reduced-motion: reduce) {
  .mk-brand-marquee--home,
  .mk-brand-marquee--home .mk-brand-marquee__item,
  .mk-brand-marquee--home .mk-brand-marquee__item::after {
    transition: none;
  }

  .mk-brand-marquee--home:hover,
  .mk-brand-marquee--home:focus-within {
    box-shadow:
      inset 0 1px 0 rgba(200, 16, 46, .18),
      inset 0 -1px 0 rgba(200, 16, 46, .18);
  }
}

.mk-brand-marquee__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.mk-brand-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: mk-brand-marquee var(--mk-marquee-duration, 55s) linear infinite;
  will-change: transform;
}

.mk-brand-marquee:hover .mk-brand-marquee__track,
.mk-brand-marquee:focus-within .mk-brand-marquee__track {
  animation-play-state: paused;
}

.mk-brand-marquee__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 1.6rem;
  font-family: var(--mk-font-display);
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #a8a8a8;
  transition: color .2s ease;
}

.mk-brand-marquee__item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: .28rem;
  height: .28rem;
  border-radius: 50%;
  background: var(--mk-red);
  transform: translateY(-50%);
  opacity: .85;
}

.mk-brand-marquee__item:hover,
.mk-brand-marquee__item:focus-visible {
  color: #fff;
}

@keyframes mk-brand-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .mk-brand-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: var(--mk-max);
    margin: 0 auto;
    row-gap: .65rem;
  }

  .mk-brand-marquee__item[aria-hidden="true"] {
    display: none;
  }
}

/* Visit + Footer (fundo Ãºnico) */
.mk-site-end {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #cfcfcf;
}

.mk-site-end__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mk-site-end__bg::before {
  content: "";
  position: absolute;
  inset: -2%;
  background: url("../img/footer-loja.png") center 35% / cover no-repeat;
  filter: brightness(.32) saturate(.65) contrast(1.08);
  transform: scale(1.04);
}

.mk-site-end__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 5, 5, .72) 0%,
      rgba(5, 5, 5, .48) 28%,
      rgba(5, 5, 5, .62) 55%,
      rgba(5, 5, 5, .88) 78%,
      rgba(0, 0, 0, .96) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, .55) 100%),
    radial-gradient(90% 70% at 50% -10%, rgba(200, 16, 46, .22), transparent 58%);
}

.mk-visit {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 3.25rem 0 2.75rem;
  background: transparent;
  border-top: 0;
}

.mk-visit__inner {
  width: min(var(--mk-max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 960px) {
  .mk-visit__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.75rem;
  }
}

.mk-visit__eyebrow {
  margin: 0 0 .55rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mk-red);
}

.mk-visit__copy h2 {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  color: #fff;
  max-width: 16ch;
}

.mk-visit__lead {
  margin: .85rem 0 0;
  max-width: 42ch;
  color: #b8b8b8;
  font-size: .98rem;
  line-height: 1.55;
}

.mk-visit__contacts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}

.mk-visit__contacts li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: .7rem;
  align-items: start;
  color: #d6d6d6;
  font-size: .92rem;
  line-height: 1.45;
}

.mk-visit__contacts a {
  color: #eee;
}

.mk-visit__contacts a:hover {
  color: #fff;
}

.mk-visit__icon {
  display: grid;
  place-items: center;
  margin-top: .1rem;
  color: var(--mk-red);
}

.mk-visit__routes-label {
  margin: 1.55rem 0 .65rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.mk-visit__routes {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.mk-visit__route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 2.55rem;
  padding: .55rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(0, 0, 0, .45);
  color: #eee;
  font-size: .84rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.mk-visit__route-icon {
  flex: 0 0 auto;
  display: block;
}

.mk-visit__route:hover {
  border-color: var(--mk-red);
  background: var(--mk-red);
  color: #fff;
  transform: translateY(-1px);
}

.mk-visit__map {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 18rem;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
}

.mk-visit__map-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
}

.mk-visit__map-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, transparent 58%, rgba(0, 0, 0, .55) 82%, rgba(0, 0, 0, .82) 100%);
}

.mk-visit__map-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem .85rem;
  width: 100%;
  margin: 0;
  padding: .85rem 1rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}

.mk-visit__map-pin {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(200, 16, 46, .2);
  color: var(--mk-red);
}

.mk-visit__map-card-copy {
  flex: 1 1 10rem;
  min-width: 0;
}

.mk-visit__map-name {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
}

.mk-visit__map-addr {
  margin: .15rem 0 0;
  font-size: .75rem;
  line-height: 1.35;
  color: #b0b0b0;
}

.mk-visit__map-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: .45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  color: #f0f0f0;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.mk-visit__map-cta:hover {
  border-color: var(--mk-red);
  background: var(--mk-red);
  color: #fff;
}

@media (min-width: 960px) {
  .mk-visit__map {
    min-height: 22rem;
  }
}

.mk-footer {
  position: relative;
  z-index: 1;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 2.8rem 0 1.35rem;
  color: #cfcfcf;
}

.mk-footer__inner {
  position: relative;
  z-index: 1;
}

.mk-footer__grid {
  width: min(var(--mk-max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 2rem 1.5rem;
}

@media (min-width: 720px) {
  .mk-footer__grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
  }
}

.mk-footer h3 {
  margin: 0 0 .9rem;
  font-family: var(--mk-font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.mk-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.mk-footer li,
.mk-footer p {
  color: #b7b7b7;
  font-size: .92rem;
}

.mk-footer a {
  color: #cfcfcf;
}

.mk-footer a:hover {
  color: #fff;
}

.mk-footer__brand {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.mk-footer__tagline {
  margin: 0;
  max-width: 28ch;
  color: #9a9a9a;
  font-size: .9rem;
  line-height: 1.45;
}

.mk-footer__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}

.mk-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.mk-footer__social a,
.mk-footer__lang-btn {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 .7rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(0, 0, 0, .45);
  color: #eee;
  backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.mk-footer__social a {
  width: 2.25rem;
  padding: 0;
  place-items: center;
}

.mk-footer__social a svg {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.mk-footer__social a:hover,
.mk-footer__lang-btn:hover,
.mk-footer__lang-btn[aria-expanded="true"] {
  background: var(--mk-red);
  border-color: var(--mk-red);
  color: #fff;
}

.mk-footer__lang {
  position: relative;
  z-index: 5;
}

.mk-footer__lang-code {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.mk-footer__lang-menu {
  position: absolute;
  left: 0;
  bottom: calc(100% + .45rem);
  z-index: 30;
  min-width: 11.5rem;
  padding: .35rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .75rem;
  background: #1a1a1a;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .55);
}

.mk-footer__lang-menu[hidden] {
  display: none !important;
}

.mk-footer__lang-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .55rem;
  width: 100%;
  padding: .55rem .65rem;
  border-radius: .5rem;
  color: #ddd;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}

.mk-footer__lang-option:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.mk-footer__lang-option.is-active {
  background: rgba(200, 16, 46, .16);
  color: #fff;
}

.mk-footer__lang-option-code {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: #fff;
}

.mk-footer__lang-option-label {
  font-size: .84rem;
  color: #bdbdbd;
}

.mk-footer__lang-option.is-active .mk-footer__lang-option-label,
.mk-footer__lang-option:hover .mk-footer__lang-option-label {
  color: #eee;
}

.mk-footer__lang-check {
  color: var(--mk-red);
}

.mk-footer__copy {
  width: min(var(--mk-max), calc(100% - 2rem));
  margin: 2.1rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #8a8a8a;
  font-size: .82rem;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: .35rem;
}

.mk-footer__copy p {
  margin: 0;
  color: #8a8a8a;
  font-size: .82rem;
}

.mk-footer__credit {
  display: inline-flex;
  align-items: center;
  margin-top: .05rem;
  opacity: .85;
  transition: opacity .2s ease;
}

.mk-footer__credit:hover {
  opacity: 1;
}

.mk-footer__credit img {
  display: block;
  height: .73rem;
  width: auto;
}

/* Atendimento / contato */
.mk-contact__hero {
  margin-bottom: 1.75rem;
}

.mk-contact__hero .mk-breadcrumb {
  margin-bottom: .75rem;
}

.mk-contact__eyebrow {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mk-red, #c8102e);
}

.mk-contact__lead {
  margin: .55rem 0 0;
  max-width: 38rem;
  color: #9a9a9a;
  font-size: .98rem;
  line-height: 1.45;
}

.mk-contact__channels {
  max-width: 40rem;
}

.mk-contact__channels .mk-contact__section-title {
  margin-bottom: .85rem;
}

.mk-contact__section-title {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
}

.mk-contact__section-title--lg {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.mk-contact__panel {
  border: 1px solid #2a2a2a;
  border-radius: .7rem;
  background: #0f0f0f;
  overflow: hidden;
}

.mk-contact__row {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: .85rem;
  align-items: start;
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid #222;
}

.mk-contact__row:last-child {
  border-bottom: none;
}

.mk-contact__icon {
  display: grid;
  place-items: center;
  margin-top: .12rem;
  color: #f0f0f0;
}

.mk-contact__copy {
  display: grid;
  gap: .3rem;
  min-width: 0;
}

.mk-contact__copy strong {
  font-family: var(--mk-font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.mk-contact__copy span,
.mk-contact__copy a {
  color: #bdbdbd;
  font-size: .95rem;
  line-height: 1.45;
  text-decoration: none;
}

.mk-contact__copy a:hover {
  color: #fff;
}

.mk-contact__hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .35rem;
}

.mk-contact__hours li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .35rem 1rem;
  color: #bdbdbd;
  font-size: .95rem;
}

.mk-contact__hours em {
  font-style: normal;
  color: #f0f0f0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.mk-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}

.mk-contact__actions .mk-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 3rem;
  border-radius: .55rem;
}

.mk-contact__wa {
  text-decoration: none;
}

.mk-contact__visit {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
  align-items: stretch;
}

@media (min-width: 900px) {
  .mk-contact__visit {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
  }
}

.mk-contact__visit-eyebrow {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mk-red, #c8102e);
}

.mk-contact__visit-addr {
  margin: .7rem 0 0;
  max-width: 28rem;
  color: #bdbdbd;
  font-size: .98rem;
  line-height: 1.5;
}

.mk-contact__routes-label {
  margin: 1.15rem 0 .55rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8f8f8f;
}

.mk-contact__routes {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.mk-contact__map {
  position: relative;
  min-height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  background: #111;
}

.mk-contact__map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
  filter: grayscale(.15) contrast(1.05);
}

.mk-contact__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-top: 2rem;
  padding: 1.35rem 1.45rem;
  border-radius: 1rem;
  background: #151515;
  border: 1px solid #2a2a2a;
  color: #f2f2f2;
}

.mk-contact__cta-title {
  margin: 0 0 .4rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
}

.mk-contact__cta-text {
  margin: 0;
  max-width: 34rem;
  color: #d0d0d0;
  font-size: .98rem;
  line-height: 1.55;
}

.mk-contact__cta .mk-btn {
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .mk-contact__actions {
    flex-direction: column;
  }

  .mk-contact__actions .mk-btn {
    width: 100%;
    justify-content: center;
  }

  .mk-contact__cta {
    align-items: flex-start;
    padding: 1.15rem 1.1rem;
  }

  .mk-contact__cta .mk-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Lista de preços — página */
.mk-pricelist__hero {
  margin-bottom: 1.35rem;
}

.mk-pricelist__hero .mk-breadcrumb {
  margin-bottom: .75rem;
}

.mk-pricelist__lead {
  color: #9a9a9a;
  max-width: 40rem;
  margin: .55rem 0 0;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--mk-font);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.45;
}

.mk-pricelist__hint {
  color: #777;
  max-width: 36rem;
  margin: .55rem 0 0;
  font-size: .92rem;
  line-height: 1.45;
}

.mk-pricelist__formats {
  display: grid;
  gap: .85rem;
  max-width: 40rem;
}

.mk-pricelist__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .95rem;
  padding: 1rem 1.1rem;
  border: 1px solid #2a2a2a;
  border-radius: .9rem;
  background: #111;
  color: #eee;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.mk-pricelist__card:hover {
  border-color: rgba(200, 16, 46, .55);
  background: #161616;
  color: #fff;
  transform: translateY(-2px);
}

.mk-pricelist__card-icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: .75rem;
  background: rgba(200, 16, 46, .12);
  color: var(--mk-red);
}

.mk-pricelist__card-body {
  display: grid;
  gap: .2rem;
  min-width: 0;
}

.mk-pricelist__card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.mk-pricelist__card-hint {
  color: #8f8f8f;
  font-size: .86rem;
  line-height: 1.35;
}

.mk-pricelist__card-action {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: #1c1c1c;
  color: #ddd;
}

.mk-pricelist__card:hover .mk-pricelist__card-action {
  background: var(--mk-red);
  color: #fff;
}

/* Lista de preÃ§os â€” modal de download */
.mk-pricelist-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.mk-pricelist-modal[hidden] {
  display: none !important;
}

.mk-pricelist-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(2px);
}

.mk-pricelist-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  background: #fff;
  color: #151515;
  border-radius: .5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  overflow: hidden;
  animation: mk-pricelist-in .28s cubic-bezier(.22, 1, .36, 1);
}

@keyframes mk-pricelist-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: none; }
}

.mk-pricelist-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.15rem .95rem;
  border-bottom: 1px solid #eee;
}

.mk-pricelist-modal__title {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mk-pricelist-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #222;
  cursor: pointer;
  transition: background .2s ease;
}

.mk-pricelist-modal__close:hover {
  background: #e4e4e4;
}

.mk-pricelist-modal__body {
  padding: 1.1rem 1.15rem 1rem;
}

.mk-pricelist-modal__label {
  margin: 0 0 .75rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
}

.mk-pricelist-modal__formats {
  display: grid;
  gap: .55rem;
}

.mk-pricelist-modal__option {
  display: block;
  cursor: pointer;
}

.mk-pricelist-modal__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mk-pricelist-modal__option-card {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .8rem .95rem;
  border: 1.5px solid #e4e4e4;
  border-radius: .4rem;
  background: #fff;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.mk-pricelist-modal__option-card strong {
  font-family: var(--mk-font-display);
  font-size: .92rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mk-pricelist-modal__option-card span {
  font-size: .86rem;
  color: #666;
}

.mk-pricelist-modal__option input:checked + .mk-pricelist-modal__option-card {
  border-color: var(--mk-red);
  background: rgba(200, 16, 46, .04);
  box-shadow: inset 0 0 0 1px var(--mk-red);
}

.mk-pricelist-modal__option:hover .mk-pricelist-modal__option-card {
  border-color: #bbb;
}

.mk-pricelist-modal__option input:focus-visible + .mk-pricelist-modal__option-card {
  outline: 2px solid var(--mk-red);
  outline-offset: 2px;
}

.mk-pricelist-modal__foot {
  padding: 0 1.15rem 1.2rem;
}

.mk-pricelist-modal__submit {
  width: 100%;
}

.mk-pricelist-modal__submit.is-busy {
  opacity: .72;
  pointer-events: none;
}

body.mk-pricelist-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .mk-pricelist-modal__dialog {
    animation: none;
  }
}

/* Como chegar â€” modal */
.mk-footer__link-btn {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.mk-footer__link-btn:hover {
  color: #fff;
}

.mk-directions-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.mk-directions-modal[hidden] {
  display: none !important;
}

.mk-directions-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.mk-directions-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 23.5rem);
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(200, 16, 46, .28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(200, 16, 46, .12), transparent 50%),
    #111;
  color: #f3f3f3;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.15rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .55);
  overflow: hidden;
  animation: mk-directions-in .32s cubic-bezier(.22, 1, .36, 1);
}

@keyframes mk-directions-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to { opacity: 1; transform: none; }
}

.mk-directions-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.15rem 1rem;
}

.mk-directions-modal__head-copy {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}

.mk-directions-modal__title {
  margin: 0;
  font-family: var(--mk-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.mk-directions-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #ddd;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.mk-directions-modal__close:hover {
  background: rgba(200, 16, 46, .2);
  border-color: rgba(200, 16, 46, .45);
  color: #fff;
}

.mk-directions-modal__body {
  padding: 0 1.15rem 1.3rem;
}

.mk-directions-modal__addr-box {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin: 0 0 1.2rem;
  padding: .95rem 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .9rem;
  background: rgba(0, 0, 0, .35);
}

.mk-directions-modal__addr-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--mk-red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(200, 16, 46, .35);
}

.mk-directions-modal__addr-copy {
  min-width: 0;
  padding-top: .1rem;
}

.mk-directions-modal__addr-label {
  display: block;
  margin: 0 0 .2rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mk-red);
}

.mk-directions-modal__addr {
  margin: 0;
  color: #d6d6d6;
  font-size: .9rem;
  line-height: 1.45;
}

.mk-directions-modal__label {
  margin: 0 0 .7rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.mk-directions-modal__routes {
  display: grid;
  gap: .55rem;
}

.mk-directions-modal__route {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .75rem .85rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .85rem;
  background: rgba(255, 255, 255, .04);
  color: #f3f3f3 !important;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.mk-directions-modal__route-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: .7rem;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.mk-directions-modal__route-icon svg {
  display: block;
  fill: currentColor;
}

.mk-directions-modal__route--google .mk-directions-modal__route-icon {
  background: rgba(66, 133, 244, .18);
  color: #8ab4f8;
}

.mk-directions-modal__route--waze .mk-directions-modal__route-icon {
  background: rgba(51, 201, 255, .16);
  color: #5fd4ff;
}

.mk-directions-modal__route--apple .mk-directions-modal__route-icon {
  background: rgba(255, 255, 255, .1);
  color: #f0f0f0;
}

.mk-directions-modal__route-text {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: .12rem;
}

.mk-directions-modal__route-text strong {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
}

.mk-directions-modal__route-text em {
  font-style: normal;
  font-size: .72rem;
  color: #9a9a9a;
}

.mk-directions-modal__route-go {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #aaa;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.mk-directions-modal__route:hover {
  border-color: rgba(200, 16, 46, .55);
  background: rgba(200, 16, 46, .1);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.mk-directions-modal__route:hover .mk-directions-modal__route-go {
  background: var(--mk-red);
  color: #fff;
  transform: translateX(2px);
}

body.mk-directions-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .mk-directions-modal__dialog {
    animation: none;
  }
}

/* Loading via flash do header (substitui barra de progresso) */
html.mk-nav-loading,
html.mk-nav-loading body,
html.mk-lang-switching,
html.mk-lang-switching body {
  cursor: progress;
}

/* Preload inferior — barra indeterminada 2px (estilo React Native) */
.mk-nav-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
  background: rgba(200, 16, 46, .18);
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, visibility .15s ease;
}

.mk-nav-bottom.is-active {
  opacity: 1;
  visibility: visible;
}

.mk-nav-bottom__bar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  background: var(--mk-red, #c8102e);
  border-radius: 1px;
  animation: mk-nav-bottom-slide 1.05s cubic-bezier(.4, 0, .2, 1) infinite;
}

@keyframes mk-nav-bottom-slide {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-nav-bottom.is-active .mk-nav-bottom__bar {
    left: 0;
    width: 100%;
    animation: none;
    opacity: .85;
  }
}

/* Public budget / orçamento compartilhado */
.mk-budget__hero {
  margin-bottom: 1.25rem;
}

.mk-budget__hero .mk-breadcrumb {
  margin-bottom: .75rem;
}

.mk-budget__eyebrow {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mk-red);
}

.mk-budget__meta {
  margin: .55rem 0 0;
  color: var(--mk-muted);
  font-size: .95rem;
}

.mk-budget__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 0 0 1.35rem;
}

.mk-budget__btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1rem;
  border: 1px solid transparent;
  border-radius: .55rem;
  background: var(--mk-red);
  color: #fff;
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.mk-budget__btn:hover {
  background: var(--mk-red-deep);
}

.mk-budget__btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .2);
  color: var(--mk-ink);
}

.mk-budget__btn--ghost:hover {
  border-color: var(--mk-red);
  color: #fff;
  background: rgba(200, 16, 46, .12);
}

.mk-budget__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 1.5rem;
  align-items: start;
}

.mk-budget__client {
  margin: 0 0 1.1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .75rem;
  background: rgba(255, 255, 255, .04);
}

.mk-budget__client-title {
  margin: 0 0 .7rem !important;
  font-size: .7rem !important;
  font-weight: 800 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: var(--mk-muted) !important;
}

.mk-budget__client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem 1.25rem;
}

.mk-budget__client p {
  margin: 0 0 .45rem;
  color: #e8e8e8;
  line-height: 1.45;
}

.mk-budget__client p:last-child {
  margin-bottom: 0;
}

.mk-budget__client span {
  display: block;
  margin-bottom: .15rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mk-muted);
}

.mk-budget__notes {
  white-space: normal;
  margin-top: .65rem !important;
}


.mk-budget__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .75rem;
  background: rgba(255, 255, 255, .03);
}

.mk-budget__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.mk-budget__table th,
.mk-budget__table td {
  padding: .85rem .9rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  text-align: left;
  vertical-align: middle;
}

.mk-budget__table th {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mk-muted);
  background: rgba(0, 0, 0, .25);
}

.mk-budget__table tbody tr:last-child td {
  border-bottom: 0;
}

.mk-budget__col-img {
  width: 76px;
}

.mk-budget__col-img img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: .4rem;
  background: #fff;
}

.mk-budget__name {
  display: block;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
}

a.mk-budget__name:hover {
  color: var(--mk-red);
}

.mk-budget__brand {
  display: block;
  margin-top: .2rem;
  font-size: .8rem;
  color: var(--mk-muted);
}

.mk-budget__col-code,
.mk-budget__col-num {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.mk-budget__col-num {
  text-align: right;
}

.mk-budget__stock {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  color: #d0d0d0;
}

.mk-budget__stock--in_stock { color: #6fdf9a; }
.mk-budget__stock--last_unit { color: #ffd166; }
.mk-budget__stock--out_of_stock { color: #ff8a8a; }
.mk-budget__stock--check { color: #b7c0cc; }

.mk-budget__side {
  position: sticky;
  top: 1rem;
}

.mk-budget__total-card {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .85rem;
  background: linear-gradient(165deg, rgba(200, 16, 46, .18), rgba(255, 255, 255, .04));
}

.mk-budget__total-label {
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #d8d8d8;
}

.mk-budget__total-value {
  margin: .45rem 0 .7rem;
  font-family: var(--mk-font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.mk-budget__disclaimer {
  margin: 0;
  font-size: .8rem;
  line-height: 1.45;
  color: var(--mk-muted);
}

.mk-budget__qr {
  margin-top: 1rem;
  text-align: center;
}

.mk-budget__qr img {
  display: block;
  margin: 0 auto .65rem;
  border-radius: .5rem;
  background: #fff;
  padding: .35rem;
}

.mk-budget__qr p {
  margin: 0;
  font-size: .78rem;
  color: var(--mk-muted);
  line-height: 1.4;
}

.mk-budget-sheet {
  display: none;
}

@media (max-width: 900px) {
  .mk-budget__layout {
    grid-template-columns: 1fr;
  }

  .mk-budget__side {
    position: static;
    order: -1;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 12mm;
  }

  html,
  body {
    background: #fff !important;
    color: #111 !important;
    height: auto !important;
    overflow: visible !important;
  }

  /* Esconde 100% do site: header, footer, menu, floats, etc. */
  html.mk-printing-budget body > *:not(.mk-budget-sheet),
  body:has(.mk-budget-sheet) > *:not(.mk-budget-sheet) {
    display: none !important;
    visibility: hidden !important;
  }

  .mk-header,
  .mk-footer,
  .mk-float,
  .mk-quote-fab,
  .mk-quote,
  .mk-quote-backdrop,
  .mk-sidebar,
  .mk-sidebar-backdrop,
  .mk-site-end,
  .mk-brand-marquee,
  .mk-cta,
  .mk-visit,
  .mk-directions-modal,
  .mk-budget__screen,
  .mk-main__glow,
  noscript {
    display: none !important;
    visibility: hidden !important;
  }

  .mk-main,
  .mk-page,
  .mk-budget {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
  }

  /* Quando a folha está no body (via JS), só ela aparece */
  body > .mk-budget-sheet,
  .mk-budget-sheet {
    display: block !important;
    visibility: visible !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    color: #111 !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    line-height: 1.35;
  }

  .mk-budget-sheet * {
    visibility: visible !important;
  }

  .mk-budget-sheet__top {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 14pt;
    border-bottom: 2.5pt solid #c8102e;
  }

  .mk-budget-sheet__top td {
    vertical-align: top;
    padding: 0 0 10pt;
  }

  .mk-budget-sheet__brand {
    font-size: 16pt;
    font-weight: 800;
    letter-spacing: .02em;
    color: #111;
    margin: 0 0 4pt;
  }

  .mk-budget-sheet__contact {
    font-size: 8.5pt;
    color: #444;
    line-height: 1.4;
  }

  .mk-budget-sheet__meta-cell {
    width: 38%;
    text-align: right;
    font-size: 9pt;
    color: #222;
  }

  .mk-budget-sheet__meta-cell div {
    margin: 0 0 2pt;
  }

  .mk-budget-sheet__label {
    font-size: 11pt;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c8102e;
    margin: 0 0 6pt !important;
  }

  .mk-budget-sheet__title {
    margin: 0 0 12pt;
    font-size: 14pt;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
  }

  .mk-budget-sheet__client {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 12pt;
  }

  .mk-budget-sheet__client td {
    padding: 8pt 10pt;
    border: 1pt solid #ccc;
    background: #f5f5f5 !important;
    font-size: 9.5pt;
  }

  .mk-budget-sheet__section {
    font-size: 8pt;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 4pt;
  }

  .mk-budget-sheet__notes {
    margin-top: 4pt;
  }

  .mk-budget-sheet__items {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 12pt;
    font-size: 9pt;
  }

  .mk-budget-sheet__items thead {
    display: table-header-group;
  }

  .mk-budget-sheet__items th {
    background: #111 !important;
    color: #fff !important;
    font-size: 8pt;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6pt 5pt;
    border: 0;
    text-align: left;
  }

  .mk-budget-sheet__items td {
    padding: 6pt 5pt;
    border-bottom: 1pt solid #ddd;
    vertical-align: top;
    color: #111;
  }

  .mk-budget-sheet__items tr {
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .mk-budget-sheet__items tbody tr:nth-child(even) td {
    background: #fafafa !important;
  }

  .mk-budget-sheet__c-num {
    width: 24pt;
    text-align: center !important;
    color: #666;
  }

  .mk-budget-sheet__c-code {
    width: 70pt;
    font-family: Consolas, "Courier New", monospace;
    font-size: 8.5pt;
    white-space: nowrap;
  }

  .mk-budget-sheet__c-qty {
    width: 36pt;
    text-align: center !important;
  }

  .mk-budget-sheet__c-price {
    width: 72pt;
    text-align: right !important;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }

  .mk-budget-sheet__brand {
    display: block;
    margin-top: 1pt;
    font-size: 8pt;
    font-weight: 400;
    color: #666;
  }

  .mk-budget-sheet__totals {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 16pt;
  }

  .mk-budget-sheet__totals-spacer {
    width: 55%;
  }

  .mk-budget-sheet__totals-box {
    border: 1.5pt solid #111;
    padding: 8pt 10pt;
    text-align: right;
  }

  .mk-budget-sheet__totals-box span {
    display: block;
    font-size: 8pt;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 2pt;
  }

  .mk-budget-sheet__totals-box strong {
    display: block;
    font-size: 16pt;
    font-weight: 800;
    color: #111;
  }

  .mk-budget-sheet__foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12pt;
    border-top: 1pt solid #ccc;
    padding-top: 8pt;
    font-size: 8pt;
    color: #555;
    line-height: 1.4;
  }

  .mk-budget-sheet__foot-copy {
    flex: 1 1 auto;
    min-width: 0;
  }

  .mk-budget-sheet__foot p {
    margin: 0 0 3pt;
  }

  .mk-budget-sheet__foot-mark {
    flex: 0 0 auto;
    display: block;
    width: 28pt;
    height: 28pt;
    object-fit: contain;
  }
}
