:root {
  --mc-blue: #0a4ea3;
  --mc-navy: #071a33;
  --mc-red: #e11d2e;
  --mc-yellow: #f4c430;
  --mc-green: #169b7a;
  --mc-cyan: #21b5c7;
  --mc-azul-infinito: #4389d0;
  --mc-melocoton: #f7d4c3;
  --mc-ink: #101828;
  --mc-muted: #667085;
  --mc-paper: #f5f7fb;
  --mc-line: rgba(16, 24, 40, 0.13);
  --paint-color: #e11d2e;
  --paint-rgb: 225, 29, 46;
  --journey-progress: 0;
  --paint-height: 0%;
  --roller-top: 28px;
  --roller-rotate: -8deg;
  --nap-offset: 0px;
  --drip-opacity: 0;
  --drip-1: 18px;
  --drip-2: 14px;
  --drip-3: 20px;
  --drip-4: 16px;
  --compare: 52%;
  --roller-y: -24vh;
  --roller-x: 0vw;
  --roller-scale: 1;
  --roller-opacity: 1;
  --roller-paint-opacity: 0;
  --red-fill: 0%;
  --paint-start-y: 0px;
  --paint-height: 0px;
  --paint-strip-width: 360px;
  --paint-strip-x: 50%;
  --message-opacity: 0;
  --roller-tilt: -2deg;
  --roller-spin: 0px;
  --red-drip-opacity: 0;
  --red-drip-1: 32px;
  --red-drip-2: 22px;
  --red-drip-3: 42px;
  --red-drip-4: 28px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  overflow-x: hidden;
}

.mc-page {
  color: var(--mc-ink);
  font-family: "Lato", Arial, sans-serif;
  background: #ffffff;
  letter-spacing: 0;
  overflow-x: hidden;
}

.mc-page h1,
.mc-page h2,
.mc-page h3,
.mc-page p {
  letter-spacing: 0;
}

.mc-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 999;
  pointer-events: none;
}

.mc-navbar {
  pointer-events: auto;
  min-height: 76px;
  padding: 0;
}

.mc-navbar .container {
  position: relative;
  min-height: 76px;
  padding: 0 22px;
  background:
    radial-gradient(circle at 21% 18%, rgba(244, 196, 48, 0.42) 0 8px, transparent 9px),
    radial-gradient(circle at 88% 28%, rgba(10, 78, 163, 0.28) 0 15px, transparent 16px),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(7, 26, 51, 0.18);
  backdrop-filter: blur(18px);
}

.mc-navbar .container::before,
.mc-navbar .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background: var(--paint-color);
  opacity: 0.9;
}

.mc-navbar .container::before {
  left: 220px;
  top: 0;
  width: 140px;
  height: 18px;
  border-radius: 0 0 999px 999px;
  box-shadow:
    18px 12px 0 -6px rgba(var(--paint-rgb), 0.65),
    52px 18px 0 -9px rgba(var(--paint-rgb), 0.5),
    92px 9px 0 -7px rgba(var(--paint-rgb), 0.42);
}

.mc-navbar .container::after {
  right: 84px;
  bottom: -9px;
  width: 88px;
  height: 15px;
  border-radius: 999px;
  transform: rotate(-3deg);
}

.mc-brand img {
  width: 170px;
  max-height: 52px;
  object-fit: contain;
}

.mc-navbar .nav-link {
  position: relative;
  color: var(--mc-ink);
  font-size: 14px;
  font-weight: 900;
  padding: 26px 13px;
  text-transform: uppercase;
}

.mc-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 19px;
  height: 7px;
  background: var(--paint-color);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  opacity: 0.72;
  z-index: -1;
}

.mc-navbar .nav-link:hover::after {
  transform: scaleX(1);
}

.mc-toggler {
  border: 0;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: var(--mc-blue);
  border-radius: 8px;
}

.mc-toggler span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
}

.mc-nav-cta,
.mc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mc-nav-cta {
  color: #ffffff;
  background: var(--mc-red);
  margin-left: 14px;
  box-shadow: 0 12px 28px rgba(225, 29, 46, 0.28);
}

.mc-nav-advisor-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mc-nav-social-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--mc-blue);
  background: #ffffff;
  border: 1px solid rgba(10, 78, 163, 0.14);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.1);
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.mc-nav-social-icon:hover {
  color: #ffffff;
  background: var(--mc-blue);
  transform: translateY(-2px);
}

.mc-nav-cta:hover,
.mc-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.mc-btn-primary {
  color: #ffffff;
  background: var(--paint-color);
  box-shadow: 0 18px 45px rgba(var(--paint-rgb), 0.3);
}

.mc-btn-glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.mc-hero-immersive {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 86px;
  color: #ffffff;
  background: var(--mc-navy);
}

.mc-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mc-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 35, 0.9), rgba(7, 18, 35, 0.56) 44%, rgba(7, 18, 35, 0.12)),
    linear-gradient(180deg, rgba(7, 18, 35, 0.42), rgba(7, 18, 35, 0.78));
}

.mc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: mcHeroDrift 14s ease-in-out infinite alternate;
}

.mc-hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.mc-splash-field span {
  position: absolute;
  width: var(--size, 90px);
  height: var(--size, 90px);
  border-radius: 45% 55% 38% 62% / 52% 38% 62% 48%;
  background: var(--color, var(--paint-color));
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.2));
  opacity: 0.82;
  animation: mcFloat 8s ease-in-out infinite alternate;
}

.mc-splash-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.mc-splash-field span:nth-child(1) { --size: 86px; --color: var(--mc-red); left: 68%; top: 18%; }
.mc-splash-field span:nth-child(2) { --size: 54px; --color: var(--mc-yellow); left: 78%; top: 38%; animation-delay: -2s; }
.mc-splash-field span:nth-child(3) { --size: 120px; --color: var(--mc-blue); right: -34px; top: 62%; animation-delay: -4s; }
.mc-splash-field span:nth-child(4) { --size: 42px; --color: var(--mc-green); left: 45%; top: 22%; animation-delay: -1s; }
.mc-splash-field span:nth-child(5) { --size: 72px; --color: var(--paint-color); left: 82%; bottom: 8%; animation-delay: -5s; }

.mc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.mc-hero-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 14px 9px 10px;
  margin-bottom: 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.mc-hero-logo-pill img {
  width: 134px;
  padding: 6px 8px;
  border-radius: 999px;
  background: #ffffff;
}

.mc-hero-logo-pill span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mc-hero-content h1 {
  color: #ffffff;
  font-size: clamp(56px, 8vw, 118px);
  line-height: 0.9;
  font-weight: 950;
  margin: 0 0 24px;
}

.mc-hero-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.55;
  margin-bottom: 30px;
}

.mc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mc-scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  width: 30px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  transform: translateX(-50%);
}

.mc-scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
  transform: translateX(-50%);
  animation: mcScrollDot 1.25s ease-in-out infinite;
}

.mc-paint-journey {
  height: 320vh;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 28%, #ffffff 100%);
}

.mc-journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: 42px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 24px 70px;
  overflow: hidden;
}

.mc-journey-copy h2,
.mc-before-after h2,
.mc-room-reveal h2,
.mc-products h2,
.mc-accessories h2,
.mc-story h2,
.mc-contact h2 {
  color: var(--mc-ink);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  margin: 12px 0 20px;
}

.mc-journey-copy p,
.mc-lead,
.mc-section-heading p,
.mc-contact p {
  color: var(--mc-muted);
  font-size: 18px;
  line-height: 1.7;
}

.mc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paint-color);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.mc-kicker::before {
  content: "";
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mc-red), var(--mc-yellow), var(--mc-blue));
}

.mc-color-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mc-color-controls button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 14px;
  color: var(--mc-ink);
  font-weight: 900;
  border: 1px solid var(--mc-line);
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.mc-color-controls button.is-active {
  color: #ffffff;
  background: var(--paint-color);
  border-color: var(--paint-color);
}

.mc-color-controls span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--swatch);
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.mc-wall-stage {
  position: relative;
  height: min(72vh, 680px);
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef0f5;
  box-shadow: 0 34px 90px rgba(16, 24, 40, 0.18);
}

.mc-wall-before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.72), rgba(255,255,255,0.1)),
    repeating-linear-gradient(0deg, #f4f0e8 0 54px, #ebe4d8 55px 56px);
}

.mc-wall-before::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 16%, rgba(16, 24, 40, 0.08) 0 58px, transparent 60px),
    radial-gradient(circle at 36% 76%, rgba(16, 24, 40, 0.08) 0 78px, transparent 80px);
}

.mc-wall-before span {
  position: absolute;
  left: 30px;
  top: 28px;
  z-index: 2;
  color: rgba(16, 24, 40, 0.52);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mc-crack {
  position: absolute;
  width: 3px;
  background: rgba(16, 24, 40, 0.22);
  transform-origin: top;
}

.mc-crack-one {
  left: 62%;
  top: 90px;
  height: 150px;
  transform: rotate(15deg);
  box-shadow: 24px 48px 0 -1px rgba(16,24,40,0.18), -18px 92px 0 -1px rgba(16,24,40,0.12);
}

.mc-crack-two {
  left: 24%;
  bottom: 94px;
  height: 100px;
  transform: rotate(-21deg);
}

.mc-paint-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: var(--paint-height);
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), transparent 38%, rgba(255,255,255,0.22)),
    linear-gradient(135deg, var(--paint-color), color-mix(in srgb, var(--paint-color) 72%, #071a33));
  transition: background 220ms ease;
}

.mc-paint-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.25) 0 2px, transparent 2px 26px),
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.35) 0 60px, transparent 64px);
  animation: mcWetShimmer 5s linear infinite;
}

.mc-paint-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 36%, rgba(255,255,255,0.28) 46%, transparent 58% 100%);
  transform: translateX(-70%);
  animation: mcSheen 4s ease-in-out infinite;
}

.mc-drips {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  pointer-events: none;
}

.mc-drips span {
  position: absolute;
  top: 0;
  width: 18px;
  height: var(--drip-1);
  border-radius: 0 0 999px 999px;
  background: color-mix(in srgb, var(--paint-color) 88%, #000);
  opacity: var(--drip-opacity);
}

.mc-drips span:nth-child(1) { left: 16%; height: var(--drip-1); }
.mc-drips span:nth-child(2) { left: 43%; width: 12px; height: var(--drip-2); }
.mc-drips span:nth-child(3) { left: 68%; width: 22px; height: var(--drip-3); }
.mc-drips span:nth-child(4) { left: 83%; width: 14px; height: var(--drip-4); }

.mc-roller {
  position: absolute;
  left: 50%;
  top: var(--roller-top);
  width: 420px;
  height: 128px;
  transform: translateX(-50%) rotate(var(--roller-rotate));
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.26));
  z-index: 4;
  transition: filter 160ms ease;
}

.mc-roller-head {
  position: absolute;
  left: 0;
  top: 22px;
  width: 260px;
  height: 58px;
  border-radius: 999px;
  background: #f5f5ee;
  border: 8px solid #ffffff;
  overflow: hidden;
}

.mc-roller-nap {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.2), transparent),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--paint-color) 80%, #fff) 0 5px, var(--paint-color) 6px 14px);
  transform: translateX(var(--nap-offset));
}

.mc-roller-arm {
  position: absolute;
  left: 238px;
  top: 50px;
  width: 110px;
  height: 68px;
  border-right: 10px solid #c7d0dc;
  border-bottom: 10px solid #c7d0dc;
  border-radius: 0 0 44px 0;
}

.mc-roller-handle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 118px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111827, #303844);
}

.mc-can-cluster {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 5;
  display: flex;
  align-items: end;
}

.mc-can-cluster img {
  width: 130px;
  margin-left: -34px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.28));
}

.mc-section {
  padding: 112px 0;
}

.mc-before-after {
  padding-top: 76px;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 196, 48, 0.25), transparent 24%),
    #ffffff;
}

.mc-before-after .mb-50 {
  margin-bottom: 28px;
}

.mc-compare-shell {
  position: relative;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--mc-line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.14);
}

.mc-compare {
  position: relative;
  height: min(68vw, 650px);
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #111827;
}

.mc-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-compare-before {
  filter: grayscale(0.92) saturate(0.58) brightness(0.86);
  transform: scale(1.02);
}

.mc-compare-after {
  position: absolute;
  inset: 0;
  width: auto;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare)) 0 0);
}

.mc-compare-after img {
  width: 100%;
  max-width: none;
  filter: saturate(1.12) contrast(1.04);
}

.mc-compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare);
  width: 4px;
  background: #ffffff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 999px rgba(255,255,255,0);
}

.mc-compare-line::after {
  content: "\f337";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mc-ink);
  background: #ffffff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.24);
}

.mc-compare-tag {
  position: absolute;
  top: 20px;
  padding: 10px 14px;
  color: #ffffff;
  font-weight: 950;
  text-transform: uppercase;
  border-radius: 8px;
  background: rgba(16, 24, 40, 0.66);
  backdrop-filter: blur(10px);
}

.mc-tag-before {
  left: 20px;
}

.mc-tag-after {
  right: 20px;
  background: var(--paint-color);
}

.mc-compare-range {
  width: 100%;
  margin-top: 18px;
  accent-color: var(--paint-color);
}

.mc-room-reveal {
  background: var(--mc-paper);
}

.mc-room-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(16, 24, 40, 0.18);
}

.mc-room-card img {
  width: 100%;
  display: block;
  transform: scale(1.04);
  transition: transform 600ms ease;
}

.mc-room-card:hover img {
  transform: scale(1.1);
}

.mc-room-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(7, 26, 51, 0.84), rgba(var(--paint-rgb), 0.72));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.mc-room-overlay span {
  display: block;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mc-room-overlay strong {
  display: block;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.15;
}

.mc-mini-scenarios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.mc-mini-scenarios div {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--mc-line);
  border-radius: 8px;
}

.mc-mini-scenarios i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--paint-color);
  border-radius: 8px;
  margin-bottom: 14px;
}

.mc-mini-scenarios strong,
.mc-mini-scenarios span {
  display: block;
}

.mc-mini-scenarios strong {
  color: var(--mc-ink);
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 8px;
}

.mc-mini-scenarios span {
  color: var(--mc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.mc-products {
  background: #ffffff;
}

.mc-section-heading {
  max-width: 850px;
  margin: 0 auto 54px;
}

.mc-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mc-product-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.1);
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mc-product-card:hover {
  box-shadow: 0 32px 80px rgba(16, 24, 40, 0.18);
}

.mc-product-art {
  position: relative;
  min-height: 265px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mc-product-art::before {
  content: "";
  position: absolute;
  left: -16%;
  right: -16%;
  top: 40%;
  height: 86px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.mc-product-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.4) 0 24px, transparent 26px),
    radial-gradient(circle at 86% 70%, rgba(255,255,255,0.32) 0 42px, transparent 44px);
}

.mc-product-art img {
  position: relative;
  z-index: 2;
  width: min(232px, 74%);
  filter: drop-shadow(0 24px 22px rgba(16, 24, 40, 0.26));
  transform: translateZ(46px);
}

.mc-product-blue { background: linear-gradient(145deg, #dceeff, #0a4ea3); }
.mc-product-red { background: linear-gradient(145deg, #ffe5e5, #e11d2e); }
.mc-product-yellow { background: linear-gradient(145deg, #fff5c7, #e9af00); }
.mc-product-cyan { background: linear-gradient(145deg, #d8fbff, #21b5c7); }
.mc-product-navy { background: linear-gradient(145deg, #dbe3ef, #071a33); }
.mc-product-green { background: linear-gradient(145deg, #def9eb, #169b7a); }

.mc-product-body {
  padding: 28px;
}

.mc-product-body span {
  display: inline-block;
  color: var(--paint-color);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mc-product-body h3 {
  color: var(--mc-ink);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 950;
  margin-bottom: 12px;
}

.mc-product-body p {
  color: var(--mc-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.mc-accessories {
  background:
    radial-gradient(circle at 80% 0%, rgba(225, 29, 46, 0.18), transparent 27%),
    var(--mc-paper);
}

.mc-toolbelt {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.mc-tool-card {
  position: relative;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--mc-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
  overflow: hidden;
}

.mc-tool-card::before {
  content: "";
  position: absolute;
  inset: auto 14px 16px;
  height: 14px;
  background: var(--paint-color);
  border-radius: 999px;
  opacity: 0.18;
  transform: scaleX(0.35);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mc-tool-card:hover::before {
  opacity: 0.5;
  transform: scaleX(1);
}

.mc-tool-card img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  margin-bottom: 18px;
  transition: transform 180ms ease;
}

.mc-tool-card:hover img {
  transform: translateY(-8px) rotate(-4deg);
}

.mc-tool-card span {
  color: var(--mc-ink);
  font-weight: 950;
  line-height: 1.2;
}

.mc-environment {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 155, 122, 0.13), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #eef7f3 100%);
}

.mc-environment h2 {
  color: var(--mc-ink);
  max-width: 560px;
  margin: 14px 0 18px;
  font-size: 58px;
  line-height: 0.98;
  font-weight: 950;
}

.mc-environment .mc-lead {
  margin-bottom: 28px;
}

.mc-environment-board {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.96), rgba(10, 78, 163, 0.86)),
    linear-gradient(90deg, rgba(22, 155, 122, 0.5), transparent);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(7, 26, 51, 0.2);
}

.mc-environment-board::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 28px;
  height: 118px;
  background: linear-gradient(90deg, rgba(22, 155, 122, 0.86), rgba(244, 196, 48, 0.64), rgba(255, 255, 255, 0));
  border-radius: 999px;
  transform: rotate(-5deg);
  opacity: 0.42;
}

.mc-env-hero,
.mc-env-grid {
  position: relative;
  z-index: 1;
}

.mc-env-hero {
  display: grid;
  gap: 8px;
  max-width: 640px;
  margin-bottom: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.mc-env-hero span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.mc-env-hero strong {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.08;
  font-weight: 950;
}

.mc-env-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mc-env-grid article {
  min-height: 206px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mc-env-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.mc-env-grid i {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #ffffff;
  background: var(--mc-green);
  border-radius: 8px;
  font-size: 20px;
}

.mc-env-grid h3 {
  color: var(--mc-ink);
  font-size: 21px;
  line-height: 1.12;
  font-weight: 950;
  margin: 0 0 10px;
}

.mc-env-grid p {
  color: var(--mc-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.mc-story {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 26, 51, 0.94), rgba(7, 26, 51, 0.72)),
    url("../img/multicolor/ai-hero-roller.png") center / cover;
}

.mc-story h2,
.mc-story .mc-lead {
  color: #ffffff;
}

.mc-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mc-values-grid div {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.mc-values-grid strong,
.mc-values-grid span {
  display: block;
}

.mc-values-grid strong {
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 14px;
}

.mc-values-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.mc-contact {
  background: #ffffff;
}

.mc-contact-copy {
  position: sticky;
  top: 120px;
}

.mc-contact-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.mc-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--mc-ink);
  font-weight: 900;
}

.mc-contact-list i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--paint-color);
  border-radius: 8px;
}

.mc-contact-list a {
  color: var(--mc-ink);
}

.mc-social-row {
  display: flex;
  gap: 10px;
}

.mc-social-row a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--mc-navy);
  border-radius: 8px;
}

.mc-contact-form {
  padding: 34px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--paint-color), var(--mc-blue), var(--mc-yellow)) border-box;
  border: 2px solid transparent;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.12);
}

.mc-contact-form label {
  display: block;
  color: var(--mc-ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mc-contact-form input,
.mc-contact-form select,
.mc-contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--mc-ink);
  border: 1px solid rgba(16, 24, 40, 0.16);
  border-radius: 8px;
  background: #ffffff;
  outline: none;
}

.mc-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.mc-contact-form input:focus,
.mc-contact-form select:focus,
.mc-contact-form textarea:focus {
  border-color: var(--paint-color);
  box-shadow: 0 0 0 4px rgba(var(--paint-rgb), 0.14);
}

.ajax-response {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: 15px;
  font-weight: 900;
}

.ajax-response.success {
  color: var(--mc-green);
}

.ajax-response.error {
  color: var(--mc-red);
}

.mc-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--mc-navy);
}

.mc-footer img {
  width: 178px;
  padding: 10px 14px;
  background: #ffffff;
  border-radius: 8px;
}

.mc-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.mc-footer a,
.mc-footer span {
  display: block;
  color: #ffffff;
  font-weight: 900;
}

.mc-footer span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 700;
}

.mc-products-featured {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(244, 196, 48, 0.34), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(33, 181, 199, 0.22), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.mc-products-featured::before,
.mc-products-featured::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 44% 56% 58% 42% / 45% 38% 62% 55%;
}

.mc-products-featured::before {
  left: -96px;
  top: 160px;
  width: 220px;
  height: 170px;
  background: rgba(225, 29, 46, 0.14);
  transform: rotate(-18deg);
}

.mc-products-featured::after {
  right: -84px;
  bottom: 110px;
  width: 260px;
  height: 210px;
  background: rgba(10, 78, 163, 0.13);
  transform: rotate(18deg);
}

.mc-products-featured .container {
  position: relative;
  z-index: 1;
}

.mc-product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.mc-products-featured .mc-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mc-products-featured .mc-product-card {
  cursor: pointer;
  min-height: 478px;
  outline: 0;
}

.mc-products-featured .mc-product-card::after {
  content: none;
}

.mc-product-card.is-active {
  box-shadow: 0 34px 90px rgba(225, 29, 46, 0.16);
}

.mc-product-card.is-active .mc-product-art::before {
  background: rgba(255, 255, 255, 0.62);
}

.mc-products-featured .mc-product-art {
  min-height: 304px;
}

.mc-products-featured .mc-product-art img {
  width: min(284px, 78%);
}

.mc-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.mc-product-actions button,
.mc-product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  text-decoration: none;
}

.mc-product-actions button:hover,
.mc-product-actions a:hover {
  transform: translateY(-2px);
}

.mc-product-more {
  color: #ffffff;
  background: var(--mc-navy);
  box-shadow: 0 12px 26px rgba(7, 26, 51, 0.18);
}

.mc-product-actions .mc-tech-btn {
  color: var(--mc-red);
  background: #ffffff;
  border-color: rgba(225, 29, 46, 0.28);
}

.mc-product-whatsapp,
.mc-btn-whatsapp {
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22);
}

.mc-product-whatsapp:hover,
.mc-btn-whatsapp:hover {
  color: #ffffff;
  background: #18b755;
}

.mc-product-detail {
  position: sticky;
  top: 118px;
  min-height: 720px;
  overflow: hidden;
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(7, 26, 51, 0.96), rgba(7, 26, 51, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(225, 29, 46, 0.38), transparent 34%);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(7, 26, 51, 0.23);
}

.mc-detail-paint-mark {
  position: absolute;
  left: -38px;
  right: -38px;
  top: 34%;
  height: 118px;
  background:
    linear-gradient(90deg, rgba(225, 29, 46, 0.92), rgba(244, 196, 48, 0.78), rgba(33, 181, 199, 0.74));
  border-radius: 999px;
  transform: rotate(-8deg);
  opacity: 0.86;
}

.mc-detail-copy,
.mc-detail-product {
  position: relative;
  z-index: 1;
}

.mc-detail-copy > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.mc-detail-copy h3 {
  color: #ffffff;
  font-size: 36px;
  line-height: 1.03;
  font-weight: 950;
  margin-bottom: 16px;
}

.mc-detail-copy p,
.mc-detail-copy li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.66;
}

.mc-detail-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 26px;
  list-style: none;
}

.mc-detail-copy li {
  position: relative;
  padding-left: 22px;
}

.mc-detail-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--mc-yellow);
}

.mc-detail-copy .mc-btn + .mc-btn {
  margin-left: 10px;
  margin-top: 10px;
}

.mc-detail-product {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 230px;
  margin-top: 12px;
}

.mc-detail-product img {
  width: min(300px, 86%);
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.36));
  animation: mcProductFloat 4.8s ease-in-out infinite alternate;
}

.mc-roller-reveal {
  position: relative;
  height: 310vh;
  background: #f3efe7;
}

.mc-roller-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
}

.mc-roller-wall {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.78), rgba(255,255,255,0.18)),
    repeating-linear-gradient(0deg, #f2eadf 0 58px, #e5d9c8 59px 60px);
}

.mc-wall-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(16, 24, 40, 0.07) 0 70px, transparent 72px),
    radial-gradient(circle at 80% 68%, rgba(16, 24, 40, 0.08) 0 94px, transparent 96px),
    linear-gradient(90deg, rgba(16,24,40,0.08) 1px, transparent 1px);
  background-size: auto, auto, 96px 96px;
}

.mc-roller-red-layer {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: var(--red-fill);
  min-height: 0;
  overflow: visible;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.16), transparent 28%, rgba(255, 255, 255, 0.18) 58%, transparent 80%),
    linear-gradient(145deg, #e11d2e, #b50f1f 68%, #8f0c19);
  box-shadow: 0 28px 46px rgba(143, 12, 25, 0.22);
}

.mc-roller-red-layer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  height: 84px;
  background:
    radial-gradient(ellipse at 8% 6%, #b50f1f 0 28px, transparent 30px),
    radial-gradient(ellipse at 23% 0%, #e11d2e 0 44px, transparent 46px),
    radial-gradient(ellipse at 42% 8%, #b50f1f 0 34px, transparent 36px),
    radial-gradient(ellipse at 66% 0%, #e11d2e 0 52px, transparent 54px),
    radial-gradient(ellipse at 86% 8%, #b50f1f 0 38px, transparent 40px);
  opacity: var(--red-drip-opacity);
}

.mc-red-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,0.28) 45%, transparent 56% 100%);
  transform: translateX(-64%);
  animation: mcSheen 4.6s ease-in-out infinite;
}

.mc-red-drip {
  position: absolute;
  bottom: calc(-1 * var(--red-drip-1));
  z-index: 3;
  width: 18px;
  height: var(--red-drip-1);
  border-radius: 0 0 999px 999px;
  background: #a80d1b;
  opacity: var(--red-drip-opacity);
}

.mc-red-drip-1 { left: 12%; height: var(--red-drip-1); bottom: calc(-1 * var(--red-drip-1)); }
.mc-red-drip-2 { left: 34%; width: 12px; height: var(--red-drip-2); bottom: calc(-1 * var(--red-drip-2)); }
.mc-red-drip-3 { left: 61%; width: 24px; height: var(--red-drip-3); bottom: calc(-1 * var(--red-drip-3)); }
.mc-red-drip-4 { left: 82%; width: 15px; height: var(--red-drip-4); bottom: calc(-1 * var(--red-drip-4)); }

.mc-before-label {
  position: absolute;
  z-index: 1;
  left: 34px;
  top: 132px;
  color: rgba(16, 24, 40, 0.16);
  font-size: 86px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.mc-roller-copy {
  position: absolute;
  z-index: 5;
  left: max(28px, calc((100vw - 1320px) / 2 + 24px));
  top: 138px;
  width: min(520px, calc(100% - 56px));
  pointer-events: none;
}

.mc-roller-copy h2 {
  color: var(--mc-ink);
  font-size: 62px;
  line-height: 0.98;
  font-weight: 950;
  margin: 12px 0 18px;
  transition: color 220ms ease;
}

.mc-roller-copy p {
  color: rgba(16, 24, 40, 0.72);
  font-size: 18px;
  line-height: 1.65;
  transition: color 220ms ease;
}

.mc-roller-reveal.is-painted .mc-roller-copy h2,
.mc-roller-reveal.is-painted .mc-roller-copy p,
.mc-roller-reveal.is-painted .mc-roller-copy .mc-kicker {
  color: #ffffff;
}

.mc-roller-reveal.is-painted .mc-roller-copy .mc-kicker::before {
  background: #ffffff;
}

.mc-advantage-reveal {
  position: absolute;
  z-index: 6;
  right: max(28px, calc((100vw - 1320px) / 2 + 24px));
  top: 118px;
  width: min(610px, calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mc-advantage-reveal article {
  min-height: 166px;
  padding: 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px rgba(91, 6, 14, 0.18);
  transition: opacity 320ms ease, transform 320ms ease;
}

.mc-advantage-reveal article.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mc-advantage-reveal i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--mc-red);
  background: #ffffff;
  border-radius: 8px;
}

.mc-advantage-reveal strong,
.mc-advantage-reveal span {
  display: block;
}

.mc-advantage-reveal strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 950;
  margin-bottom: 8px;
}

.mc-advantage-reveal span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.mc-giant-roller {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 0;
  width: min(1180px, 118vw);
  height: 250px;
  transform: translate3d(-50%, var(--roller-y), 0) rotate(var(--roller-tilt));
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.28));
  will-change: transform;
}

.mc-giant-roller-head {
  position: absolute;
  left: 50%;
  top: 28px;
  width: min(1080px, 108vw);
  height: 118px;
  overflow: hidden;
  border: 10px solid #f8fbff;
  border-radius: 999px;
  background: #f7f4ee;
  transform: translateX(-50%);
}

.mc-giant-roller-head::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.28), transparent 20%, rgba(255,255,255,0.2) 72%, transparent),
    repeating-linear-gradient(90deg, #ff6270 0 8px, #e11d2e 9px 22px, #bd1020 23px 33px);
  background-position: var(--roller-spin) 0;
}

.mc-giant-roller-head span {
  position: absolute;
  inset: 20px 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mc-giant-roller-arm {
  position: absolute;
  right: 16%;
  top: 118px;
  width: 178px;
  height: 86px;
  border-right: 16px solid #cbd5e1;
  border-bottom: 16px solid #cbd5e1;
  border-radius: 0 0 58px 0;
}

.mc-giant-roller-handle {
  position: absolute;
  right: calc(16% - 118px);
  top: 182px;
  width: 210px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(90deg, #101828, #2e3846);
  box-shadow: inset 18px 0 0 rgba(255, 255, 255, 0.08);
}

.mc-roller-reveal {
  height: 330vh;
  background: #f3efe7;
}

.mc-roller-wall {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.78), rgba(255,255,255,0.18)),
    repeating-linear-gradient(0deg, #f5efe4 0 58px, #e5d9c8 59px 60px);
}

.mc-roller-red-layer {
  left: var(--paint-strip-x);
  right: auto;
  top: var(--paint-start-y);
  width: var(--paint-strip-width);
  height: var(--paint-height);
  transform: translateX(-50%);
  transition: height 80ms linear;
}

.mc-roller-red-layer::after {
  display: none;
}

.mc-quality-strip {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: var(--message-opacity);
  text-shadow: 0 14px 32px rgba(91, 6, 14, 0.34);
}

.mc-paint-message-mask {
  display: none;
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: var(--paint-start-y);
  height: var(--paint-height);
  overflow: hidden;
  pointer-events: none;
}

.mc-vertical-promise {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(920px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.92;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 14px 34px rgba(91, 6, 14, 0.35);
  transform: translate(-50%, -50%);
  opacity: var(--message-opacity);
  transition: opacity 100ms linear;
}

.mc-vertical-promise span {
  display: block;
}

.mc-photo-roller {
  left: 50%;
  top: 0;
  width: clamp(380px, 44vw, 620px);
  height: auto;
  opacity: var(--roller-opacity);
  transform: translate3d(calc(-50% + var(--roller-x)), var(--roller-y), 0) rotate(var(--roller-tilt)) scale(var(--roller-scale));
  transform-origin: 50% 0;
  transition: transform 70ms linear, opacity 70ms linear, filter 140ms ease;
}

.mc-photo-roller-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 28px rgba(0, 0, 0, 0.22));
}

.mc-photo-roller-head {
  position: absolute;
  left: 50%;
  top: 34px;
  width: min(760px, 82vw);
  height: 142px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.42), rgba(255,255,255,0)),
    linear-gradient(180deg, #f7f8f4, #d7ddd2);
  border: 9px solid #ffffff;
  box-shadow:
    inset 0 -18px 30px rgba(16, 24, 40, 0.11),
    0 22px 36px rgba(16, 24, 40, 0.18);
  transform: translateX(-50%);
}

.mc-photo-roller-head::before {
  content: "";
  position: absolute;
  inset: -12px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.18), transparent 28%, rgba(255,255,255,0.16)),
    repeating-linear-gradient(90deg, #fb6a76 0 8px, #e11d2e 9px 22px, #bd1020 23px 35px);
  background-position: var(--roller-spin) 0;
  opacity: var(--roller-paint-opacity);
  transition: opacity 80ms linear;
}

.mc-photo-roller-head img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.72;
  transform: scale(1.5) rotate(-7deg);
}

.mc-photo-roller-arm {
  position: absolute;
  left: calc(50% + min(250px, 26vw));
  top: 154px;
  width: 190px;
  height: 92px;
  border-right: 15px solid #c8d1dd;
  border-bottom: 15px solid #c8d1dd;
  border-radius: 0 0 64px 0;
}

.mc-photo-roller-handle {
  position: absolute;
  left: calc(50% + min(396px, 39vw));
  top: 220px;
  width: 230px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(90deg, #101828, #2f3b49);
  box-shadow: inset 20px 0 0 rgba(255, 255, 255, 0.08);
}

.mc-roller-reveal.is-parked .mc-photo-roller {
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.22));
}

.mc-tech-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mc-tech-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mc-tech-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 51, 0.74);
  backdrop-filter: blur(8px);
}

.mc-tech-dialog {
  position: relative;
  width: min(560px, 100%);
  overflow: hidden;
  padding: 36px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32);
}

.mc-tech-dialog::before {
  content: "";
  position: absolute;
  left: -30px;
  right: -30px;
  top: 0;
  height: 18px;
  background: linear-gradient(90deg, var(--mc-red), var(--mc-yellow), var(--mc-blue), var(--mc-green));
}

.mc-tech-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--mc-navy);
  border: 0;
  border-radius: 8px;
}

.mc-tech-dialog h2 {
  color: var(--mc-ink);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  margin: 12px 54px 14px 0;
}

.mc-tech-dialog p {
  color: var(--mc-muted);
  font-size: 17px;
  line-height: 1.62;
}

.mc-tech-preview {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 6px 16px;
  align-items: center;
  padding: 18px;
  margin: 22px 0;
  background: var(--mc-paper);
  border: 1px solid var(--mc-line);
  border-radius: 8px;
}

.mc-tech-preview i {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--mc-red);
  border-radius: 8px;
  font-size: 24px;
}

.mc-tech-preview strong {
  color: var(--mc-ink);
  font-size: 18px;
  font-weight: 950;
}

.mc-tech-preview span {
  color: var(--mc-muted);
  font-size: 14px;
  line-height: 1.4;
}

@keyframes mcHeroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-2%, -1%, 0); }
}

@keyframes mcFloat {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(12px, -18px, 0) rotate(16deg); }
}

@keyframes mcScrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 22px); }
}

@keyframes mcWetShimmer {
  from { background-position: 0 0, 0 0; }
  to { background-position: 80px 0, 0 0; }
}

@keyframes mcSheen {
  0%, 35% { transform: translateX(-80%); }
  80%, 100% { transform: translateX(80%); }
}

@keyframes mcProductFloat {
  from { transform: translateY(0) rotate(-1deg); }
  to { transform: translateY(-14px) rotate(2deg); }
}

@media (max-width: 1199px) {
  .mc-journey-sticky {
    grid-template-columns: 1fr;
    min-height: 980px;
    align-content: center;
  }

  .mc-wall-stage {
    height: 570px;
  }

  .mc-product-grid,
  .mc-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mc-toolbelt {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mc-product-showcase {
    grid-template-columns: 1fr;
  }

  .mc-product-detail {
    position: relative;
    top: auto;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
    gap: 26px;
    align-items: center;
  }

  .mc-detail-product {
    margin-top: 0;
  }

  .mc-roller-copy {
    top: 106px;
  }

  .mc-advantage-reveal {
    top: 410px;
    left: 24px;
    right: 24px;
    width: auto;
    grid-template-columns: repeat(5, minmax(185px, 1fr));
  }

  .mc-advantage-reveal article {
    min-height: 154px;
  }
}

@media (max-width: 991px) {
  .mc-header {
    inset: 10px 0 auto;
  }

  .mc-navbar .container {
    min-height: 68px;
  }

  .mc-navbar .navbar-collapse {
    padding: 12px 0 18px;
    border-top: 1px solid var(--mc-line);
    margin-top: 10px;
  }

  .mc-navbar .nav-link {
    padding: 12px 0;
  }

  .mc-navbar .nav-link::after {
    left: 0;
    right: auto;
    width: 160px;
    bottom: 7px;
  }

  .mc-nav-cta {
    width: 100%;
    margin: 10px 0 0;
  }

  .mc-nav-advisor-group {
    width: 100%;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .mc-nav-advisor-group .mc-nav-cta {
    flex: 1 1 100%;
  }

  .mc-nav-social-icon {
    width: 50px;
    height: 50px;
    margin-top: 10px;
    flex: 0 0 50px;
  }

  .mc-hero-immersive {
    padding-top: 130px;
  }

  .mc-contact-copy {
    position: static;
  }

  .mc-environment h2 {
    font-size: 46px;
  }

  .mc-environment-board {
    padding: 22px;
  }

  .mc-product-detail {
    grid-template-columns: 1fr;
  }

  .mc-roller-sticky {
    min-height: 720px;
  }

  .mc-roller-copy h2 {
    font-size: 44px;
  }

  .mc-roller-copy p {
    max-width: 430px;
    font-size: 16px;
  }

  .mc-giant-roller {
    width: 128vw;
  }

  .mc-giant-roller-head {
    width: 122vw;
    height: 96px;
  }

  .mc-giant-roller-arm {
    top: 98px;
  }

  .mc-giant-roller-handle {
    top: 160px;
  }
}

@media (max-width: 767px) {
  .mc-brand img {
    width: 145px;
  }

  .mc-navbar .container::before,
  .mc-navbar .container::after {
    display: none;
  }

  .mc-hero-content h1 {
    font-size: 52px;
  }

  .mc-hero-content p {
    font-size: 17px;
  }

  .mc-hero-actions .mc-btn {
    width: 100%;
  }

  .mc-journey-sticky {
    min-height: 900px;
    padding-top: 100px;
  }

  .mc-wall-stage {
    min-height: 460px;
    height: 460px;
  }

  .mc-roller {
    width: 315px;
  }

  .mc-roller-head {
    width: 205px;
  }

  .mc-roller-arm {
    left: 188px;
    width: 82px;
  }

  .mc-roller-handle {
    width: 88px;
  }

  .mc-can-cluster img {
    width: 94px;
  }

  .mc-product-grid,
  .mc-mini-scenarios,
  .mc-values-grid,
  .mc-toolbelt {
    grid-template-columns: 1fr;
  }

  .mc-products-featured .mc-product-grid {
    grid-template-columns: 1fr;
  }

  .mc-products-featured .mc-product-card {
    min-height: auto;
  }

  .mc-products-featured .mc-product-art {
    min-height: 255px;
  }

  .mc-product-detail {
    padding: 24px;
    min-height: auto;
  }

  .mc-detail-copy h3 {
    font-size: 30px;
  }

  .mc-detail-product img {
    width: min(238px, 78%);
  }

  .mc-roller-reveal {
    height: 330vh;
  }

  .mc-roller-sticky {
    min-height: 690px;
  }

  .mc-before-label {
    left: 20px;
    top: 106px;
    font-size: 50px;
  }

  .mc-roller-copy {
    left: 20px;
    top: 92px;
    width: calc(100% - 40px);
  }

  .mc-roller-copy h2 {
    font-size: 34px;
    line-height: 1;
  }

  .mc-roller-copy p {
    font-size: 15px;
    line-height: 1.45;
  }

  .mc-advantage-reveal {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 20px;
    width: auto;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .mc-advantage-reveal article {
    flex: 0 0 258px;
    min-height: 146px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .mc-advantage-reveal i {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
  }

  .mc-advantage-reveal strong {
    font-size: 17px;
  }

  .mc-advantage-reveal span {
    font-size: 13px;
  }

  .mc-giant-roller {
    width: 146vw;
    height: 180px;
  }

  .mc-giant-roller-head {
    top: 24px;
    width: 140vw;
    height: 82px;
    border-width: 8px;
  }

  .mc-giant-roller-arm {
    right: 14%;
    top: 84px;
    width: 118px;
    height: 70px;
    border-right-width: 12px;
    border-bottom-width: 12px;
  }

  .mc-giant-roller-handle {
    right: calc(14% - 92px);
    top: 136px;
    width: 164px;
    height: 40px;
  }

  .mc-tech-dialog {
    padding: 30px 22px 24px;
  }

  .mc-tech-dialog h2 {
    font-size: 32px;
  }

  .mc-section {
    padding: 78px 0;
  }

  .mc-compare-shell,
  .mc-contact-form {
    padding: 18px;
  }

  .mc-compare {
    min-height: 300px;
  }
}

.mc-photo-roller.mc-giant-roller {
  width: clamp(380px, 44vw, 620px);
  height: auto;
}

@media (max-width: 991px) {
  .mc-photo-roller.mc-giant-roller {
    width: clamp(330px, 56vw, 460px);
    height: auto;
  }

  .mc-photo-roller-head {
    width: 86vw;
    height: 112px;
  }

  .mc-photo-roller-arm {
    left: calc(50% + min(178px, 24vw));
    top: 128px;
    width: 148px;
    height: 80px;
  }

  .mc-photo-roller-handle {
    left: calc(50% + min(286px, 37vw));
    top: 186px;
    width: 184px;
    height: 46px;
  }
}

@media (max-width: 767px) {
  .mc-photo-roller.mc-giant-roller {
    width: min(360px, 84vw);
    height: auto;
  }

  .mc-photo-roller-head {
    width: 96vw;
    height: 88px;
    border-width: 7px;
  }

  .mc-photo-roller-arm {
    left: calc(50% + min(112px, 22vw));
    top: 102px;
    width: 104px;
    height: 66px;
    border-right-width: 11px;
    border-bottom-width: 11px;
  }

  .mc-photo-roller-handle {
    left: calc(50% + min(186px, 34vw));
    top: 150px;
    width: 142px;
    height: 38px;
  }
}

.mc-before-after {
  padding-top: 76px;
}

.mc-before-after .mb-50 {
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  .mc-before-after {
    padding-top: 58px;
  }

  .mc-quality-strip {
    font-size: clamp(30px, 9vw, 46px);
  }

  .mc-vertical-promise {
    left: 50%;
    width: calc(100% - 28px);
    gap: 5px;
    font-size: clamp(28px, 10vw, 42px);
  }
}

/* Catalog 2026 */
.mc-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.mc-products-featured .mc-product-card {
  min-height: 500px;
}

.mc-products-featured .mc-product-art {
  min-height: 310px;
  padding: 24px 18px 8px;
}

.mc-products-featured .mc-product-art img {
  width: auto;
  height: 292px;
  max-width: 88%;
  object-fit: contain;
  transform: translateZ(46px);
}

.mc-package-badge {
  position: absolute;
  z-index: 4;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  color: var(--mc-ink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.mc-product-actions .mc-tech-btn {
  width: 42px;
  flex: 0 0 42px;
  padding: 0;
}

.mc-product-actions .mc-product-whatsapp {
  gap: 7px;
}

.mc-product-detail {
  max-height: calc(100vh - 136px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.32) transparent;
}

.mc-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mc-detail-specs div {
  padding: 13px 12px 13px 0;
}

.mc-detail-specs div:nth-child(even) {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mc-detail-specs span,
.mc-detail-specs strong {
  display: block;
}

.mc-detail-specs span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mc-detail-specs strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.mc-detail-product {
  flex-direction: column;
  justify-content: flex-start;
  min-height: 330px;
  padding-top: 18px;
}

.mc-package-switch {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: 100%;
  padding: 4px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.mc-package-switch button {
  flex: 1;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 950;
  background: transparent;
  border: 0;
  border-radius: 6px;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.mc-package-switch button.is-active {
  color: var(--mc-ink);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.mc-detail-product img {
  width: auto;
  height: 290px;
  max-width: 88%;
  object-fit: contain;
  animation: mcProductFloat 4.8s ease-in-out infinite alternate;
  transition: opacity 140ms ease, transform 180ms ease;
}

.mc-detail-product img.is-changing {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
}

#product-package-label {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mc-color-library {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 34px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.1);
  backdrop-filter: blur(16px);
}

.mc-color-library-copy h3 {
  color: var(--mc-ink);
  font-size: 34px;
  line-height: 1.02;
  font-weight: 950;
  margin: 12px 0 14px;
}

.mc-color-library-copy p {
  color: var(--mc-muted);
  font-size: 16px;
  line-height: 1.62;
  margin: 0;
}

.mc-color-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mc-color-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.06);
}

.mc-color-label {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--mc-blue);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.mc-color-card h4 {
  color: var(--mc-ink);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 950;
  margin: 0;
}

.mc-color-swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mc-color-swatches span {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 6px 8px;
  color: var(--mc-ink);
  background: #f8fafc;
  border-radius: 8px;
}

.mc-color-swatches i {
  display: block;
  width: 32px;
  height: 32px;
  background: var(--swatch);
  border: 1px solid rgba(16, 24, 40, 0.13);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.48);
}

.mc-color-swatches b {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  line-height: 1.12;
  font-weight: 950;
}

.mc-color-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 14px;
  color: #ffffff;
  background: var(--mc-navy);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.mc-color-card-link:hover {
  color: #ffffff;
  background: var(--mc-blue);
  transform: translateY(-2px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mc-advisor-float {
  position: fixed;
  z-index: 1100;
  left: 22px;
  right: auto;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mc-advisor-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 16px 10px 10px;
  color: #ffffff;
  background: #128c4b;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(7, 26, 51, 0.28);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.mc-advisor-main:hover {
  color: #ffffff;
  background: #0f7b42;
  transform: translateY(-3px);
}

.mc-advisor-socials {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mc-advisor-socials a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--mc-blue);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 26, 51, 0.16);
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.mc-advisor-socials a:hover {
  color: #ffffff;
  background: var(--mc-blue);
  transform: translateY(-2px);
}

.mc-advisor-icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #128c4b;
  background: #ffffff;
  border-radius: 50%;
  font-size: 23px;
}

.mc-advisor-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  animation: mcAdvisorPulse 2s ease-out infinite;
}

.mc-advisor-copy small,
.mc-advisor-copy strong {
  display: block;
  color: #ffffff;
}

.mc-advisor-copy small {
  margin-bottom: 2px;
  font-size: 11px;
  opacity: 0.76;
}

.mc-advisor-copy strong {
  font-size: 15px;
  line-height: 1.15;
  font-weight: 950;
}

@keyframes mcAdvisorPulse {
  from { opacity: 0.8; transform: scale(0.88); }
  to { opacity: 0; transform: scale(1.28); }
}

@media (max-width: 1199px) {
  .mc-product-detail {
    max-height: none;
    overflow: visible;
  }

  .mc-color-library {
    grid-template-columns: 1fr;
  }

  .mc-color-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .mc-catalog-actions .mc-btn {
    width: 100%;
  }

  .mc-products-featured .mc-product-art {
    min-height: 280px;
  }

  .mc-products-featured .mc-product-art img {
    height: 260px;
  }

  .mc-detail-specs {
    grid-template-columns: 1fr;
  }

  .mc-detail-specs div,
  .mc-detail-specs div:nth-child(even) {
    padding: 11px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mc-detail-specs div:last-child {
    border-bottom: 0;
  }

  .mc-detail-product img {
    height: 260px;
  }

  .mc-color-library {
    padding: 20px;
  }

  .mc-color-library-copy h3 {
    font-size: 28px;
  }

  .mc-color-swatches {
    grid-template-columns: 1fr;
  }

  .mc-environment h2 {
    font-size: 38px;
  }

  .mc-env-hero strong {
    font-size: 25px;
  }

  .mc-env-grid {
    grid-template-columns: 1fr;
  }

  .mc-advisor-float {
    left: 14px;
    right: auto;
    bottom: 18px;
    width: auto;
    min-height: 0;
  }

  .mc-advisor-main {
    width: 58px;
    min-height: 58px;
    padding: 7px;
  }

  .mc-advisor-socials {
    display: none;
  }

  .mc-advisor-copy {
    display: none;
  }

  .mc-advisor-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mc-advisor-icon::before,
  .mc-detail-product img {
    animation: none;
  }
}

/* Color inspiration */
.mc-inspiration {
  background: #ffffff;
}

.mc-inspiration h2 {
  color: var(--mc-ink);
  max-width: 720px;
  margin: 12px 0 0;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 950;
}

.mc-inspiration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.mc-scene {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef1f5;
}

.mc-scene-main {
  grid-row: 1 / 3;
}

.mc-scene::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(7, 26, 51, 0.78));
  pointer-events: none;
}

.mc-scene img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 650ms ease, filter 650ms ease;
}

.mc-scene:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.mc-scene figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding-right: 46px;
}

.mc-scene figcaption span,
.mc-scene figcaption strong {
  display: block;
  color: #ffffff;
}

.mc-scene figcaption span {
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.mc-scene figcaption strong {
  max-width: 520px;
  font-size: 25px;
  line-height: 1.08;
  font-weight: 950;
}

.mc-scene-swatch {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--scene-color);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.mc-swatch-azul-infinito { --scene-color: var(--mc-azul-infinito); }
.mc-swatch-teal { --scene-color: #008f93; }
.mc-swatch-melocoton { --scene-color: var(--mc-melocoton); }

.mc-footer .mc-footer-credit {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.mc-footer .mc-footer-credit:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .mc-inspiration h2 {
    font-size: 52px;
  }

  .mc-inspiration-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mc-scene,
  .mc-scene-main {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767px) {
  .mc-inspiration h2 {
    font-size: 40px;
  }

  .mc-scene,
  .mc-scene-main {
    aspect-ratio: 4 / 3;
  }

  .mc-scene figcaption {
    left: 16px;
    right: 16px;
    bottom: 15px;
  }

  .mc-scene figcaption strong {
    font-size: 20px;
  }
}
