@font-face { font-family: "Barlow Condensed"; src: url("./media-a6ff1fc41bfd.woff2") format("woff2"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("./media-ef279f97eee9.woff2") format("woff2"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("./media-3b6f51719a0c.woff2") format("woff2"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Barlow Condensed"; src: url("./media-8fe5f45f3c5d.woff2") format("woff2"); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("./media-7b36b31b7305.woff2") format("woff2"); font-style: normal; font-weight: 400 700; font-display: swap; }

:root {
  --paper: #f6f6f2;
  --white: #ffffff;
  --ink: #111318;
  --muted: #5d626e;
  --line: #cfd2da;
  --line-dark: #2d3038;
  --cobalt: #2140d6;
  --cobalt-deep: #142891;
  --cobalt-pale: #e8ecff;
  --heritage: #9b7138;
  --whatsapp: #128c4a;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --radius-control: 8px;
  --radius-surface: 12px;
  --shadow-soft: 0 8px 24px rgb(17 19 24 / .07);
  --shadow-float: 0 16px 40px rgb(17 19 24 / .14);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --body: "Manrope", system-ui, sans-serif;
  --max: 1320px;
  --header: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--cobalt); }
* { scrollbar-color: var(--cobalt) var(--paper); scrollbar-width: thin; }
*:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
body { overflow-x: clip; }
.nav-shell {
  width: min(calc(100% - 48px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 30px;
  border: 2px solid var(--ink);
  position: relative;
  transform: skewX(-12deg);
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--paper);
  border: 2px solid var(--ink);
}
.brand-mark::before { width: 18px; height: 15px; left: 3px; top: -10px; transform: rotate(28deg); }
.brand-mark::after { width: 16px; height: 12px; right: 1px; top: -7px; transform: rotate(-22deg); }
.brand-word { display: grid; line-height: 1; }
.brand-word strong { font-family: var(--display); font-size: 1.7rem; letter-spacing: .12em; }
.brand-word small { margin-top: 5px; font-size: .56rem; font-weight: 700; letter-spacing: .24em; color: var(--muted); }

.nav-links { display: flex; justify-content: center; align-items: center; gap: 24px; }
.nav-links a {
  position: relative;
  padding: 10px 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--cobalt);
  transition: right .25s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.nav-whatsapp svg { width: 17px; fill: var(--whatsapp); }
.nav-whatsapp:hover { color: var(--white); background: var(--ink); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  cursor: pointer;
}
.menu-toggle svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 2; }

.shell { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.section { padding: clamp(84px, 10vw, 150px) 0; }
.section-tight { padding: clamp(62px, 7vw, 100px) 0; }
.section-rule { border-top: 1px solid var(--line); }
.section-dark { color: var(--white); background: var(--ink); }
.section-blue { color: var(--white); background: var(--cobalt); }
.measure { max-width: 72ch; }
.display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: .87;
  text-wrap: balance;
}
.display-medium { font-size: clamp(3rem, 6vw, 6rem); line-height: .94; }
.display-small { font-size: clamp(2.7rem, 4.8vw, 4.8rem); line-height: .98; }
.display,
.display-medium,
.display-small,
.sector-copy h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.lead { margin: 28px 0 0; max-width: 65ch; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.35rem); }
.section-dark .lead, .section-blue .lead { color: rgba(255,255,255,.76); }
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.meta-line span { display: inline-flex; align-items: center; gap: 8px; }
.meta-line span::before { content: ""; width: 7px; height: 7px; background: var(--cobalt); }
.section-dark .meta-line, .section-blue .meta-line { color: rgba(255,255,255,.68); }
.section-dark .meta-line span::before { background: var(--heritage); }
.section-blue .meta-line span::before { background: var(--white); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--cobalt); }
.btn-primary:hover { background: var(--cobalt-deep); }
.btn-light { color: var(--ink); background: var(--white); }
.btn-light:hover { background: var(--cobalt-pale); }
.btn-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-outline:hover { color: var(--white); background: var(--ink); }
.btn-whatsapp { color: var(--white); border-color: var(--whatsapp); background: var(--whatsapp); }
.btn-whatsapp svg { width: 19px; fill: currentColor; }
.btn-whatsapp:hover { color: var(--white); border-color: color-mix(in srgb, var(--whatsapp) 72%, var(--ink)); background: color-mix(in srgb, var(--whatsapp) 72%, var(--ink)); }
.section-dark .btn-whatsapp, .section-blue .btn-whatsapp { color: var(--white); border-color: var(--whatsapp); background: var(--whatsapp); }
.section-dark .btn-whatsapp:hover, .section-blue .btn-whatsapp:hover { color: var(--white); border-color: color-mix(in srgb, var(--whatsapp) 72%, var(--ink)); background: color-mix(in srgb, var(--whatsapp) 72%, var(--ink)); }

.hero { min-height: calc(100svh - var(--header)); display: grid; align-items: center; padding: clamp(54px, 7vw, 105px) 0; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: clamp(42px, 7vw, 100px); align-items: center; }
.hero h1 .shift { color: var(--cobalt); }
.hero-copy { position: relative; z-index: 2; }
.hero-visual {
  position: relative;
  min-height: min(66vw, 680px);
  display: grid;
  place-items: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 74%;
  height: 108%;
  background: var(--cobalt);
  transform: rotate(5deg) translate(8%, -2%);
}
.paper-feed {
  position: relative;
  z-index: 1;
  width: min(88%, 540px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  box-shadow: 16px 24px 50px rgba(17,19,24,.18);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  position: relative;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--ink);
}
.hero-poster-fallback,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-poster-fallback { z-index: 0; }
.hero-bg { z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, rgba(17,19,24,.86) 0%, rgba(17,19,24,.68) 46%, rgba(17,19,24,.32) 100%);
}
.hero-video-inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--max));
  padding-block: clamp(52px, 8vw, 110px);
}
.hero-video-inner .hero-lockup-large {
  width: min(42%, 300px);
  filter: brightness(0) invert(1);
}
.hero-video-inner .display { max-width: 14ch; color: var(--white); }
.hero-video-inner .hero-promise,
.hero-video-inner .manufacturer-line { color: rgba(255,255,255,.84); }
.hero-video-inner .manufacturer-line strong { color: var(--white); }
.hero-video-inner .button-row { margin-top: 28px; }
.paper-feed::before,
.paper-feed::after,
.image-placeholder::before,
.image-placeholder::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: currentColor;
  opacity: .7;
}
.paper-feed::before,
.image-placeholder::before { left: 18px; top: 18px; border-left: 1px solid; border-top: 1px solid; }
.paper-feed::after,
.image-placeholder::after { right: 18px; bottom: 18px; border-right: 1px solid; border-bottom: 1px solid; }
.feed-line {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 22%;
  background: var(--cobalt);
  mix-blend-mode: multiply;
  animation: print-pass 4.8s cubic-bezier(.22,1,.36,1) infinite;
}
.placeholder-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 30px;
  text-align: center;
}
.placeholder-copy strong { font-family: var(--display); font-size: clamp(2rem, 4vw, 4rem); letter-spacing: .02em; }
.placeholder-copy span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.paper-code { position: absolute; left: 24px; bottom: 22px; font-size: .64rem; font-weight: 800; letter-spacing: .14em; }
@keyframes print-pass { 0%, 12% { top: -24%; } 58%, 74% { top: 102%; } 100% { top: 102%; } }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { min-height: 126px; padding: 28px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-family: var(--display); font-size: 2.1rem; line-height: 1; }
.proof-item span { display: block; margin-top: 10px; color: var(--muted); font-size: .8rem; font-weight: 700; }

.heading-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 60px; align-items: end; margin-bottom: clamp(56px, 7vw, 94px); }
.heading-grid .lead { margin-top: 0; }
.solution-list { border-top: 1px solid var(--line); }
.solution-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: clamp(40px, 6vw, 82px) 0;
  border-bottom: 1px solid var(--line);
}
.solution-row:nth-child(even) .solution-media { order: -1; }
.solution-row h3 { margin: 0; font-family: var(--display); font-size: clamp(2.8rem, 5vw, 5.5rem); letter-spacing: -.02em; line-height: .95; }
.solution-row p { max-width: 58ch; margin: 20px 0 0; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; font-weight: 800; text-decoration: none; }
.text-link::after { content: ""; width: 58px; height: 2px; background: var(--cobalt); transform: scaleX(.58); transform-origin: left; transition: transform .2s ease; }
.text-link:hover::after { transform: scaleX(1); }
.image-placeholder {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ink);
  background-color: var(--cobalt-pale);
  background-image: none;
  border: 1px solid var(--line-dark);
}
.image-placeholder.tall { min-height: 520px; }
.image-placeholder.wide { min-height: 280px; }
.image-placeholder.dark { color: var(--white); background-color: #1d2027; background-image: linear-gradient(#353944 1px, transparent 1px), linear-gradient(90deg, #353944 1px, transparent 1px); border-color: #555b68; }
.image-placeholder strong { font-family: var(--display); font-size: clamp(2rem, 4vw, 4rem); }
.image-placeholder small { margin-top: 8px; color: var(--muted); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.image-placeholder.dark small { color: rgba(255,255,255,.62); }
.site-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  margin: 0;
  background: #e8e5dc;
  border: 1px solid currentColor;
}
.site-image.tall { min-height: 520px; }
.site-image.wide { min-height: 280px; }
.site-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.site-image:hover img { transform: scale(1.065); }
.site-image.focus-left img { object-position: 35% center; }
.site-image.focus-right img { object-position: 65% center; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid rgba(255,255,255,.25); }
.process-step { min-height: 260px; padding: 30px 26px 30px 0; border-right: 1px solid rgba(255,255,255,.25); }
.process-step + .process-step { padding-left: 26px; }
.process-step:last-child { border-right: 0; }
.process-step .num { font-family: var(--display); font-size: 1.5rem; color: var(--heritage); }
.process-step h3 { margin: 68px 0 0; font-family: var(--display); font-size: 2rem; line-height: 1; }
.process-step p { margin: 15px 0 0; color: rgba(255,255,255,.68); font-size: .9rem; }

.product-split { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-dark); background: var(--white); }
.product-panel { min-height: 490px; padding: clamp(34px, 5vw, 70px); display: flex; flex-direction: column; justify-content: space-between; }
.product-panel + .product-panel { color: var(--white); background: var(--cobalt); border-left: 1px solid var(--line-dark); }
.product-panel h3 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 5vw, 5rem); line-height: .9; }
.product-panel p { max-width: 46ch; color: var(--muted); }
.product-panel + .product-panel p { color: rgba(255,255,255,.75); }
.status { display: inline-flex; width: fit-content; padding: 7px 10px; border: 1px solid currentColor; border-radius: 8px; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.showcase-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; margin-top: 60px; }
.showcase-stack { display: grid; gap: 18px; }

.cta-band { padding: clamp(70px, 9vw, 130px) 0; color: var(--white); background: var(--cobalt); }
.cta-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 50px; align-items: end; }
.cta-grid .button-row { justify-content: flex-end; }

.page-hero { padding: clamp(74px, 9vw, 132px) 0; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.page-hero .image-placeholder { min-height: 390px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 36px; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--cobalt); }

.specialty-list { margin-top: 70px; border-top: 1px solid var(--line); }
.specialty-item { display: grid; grid-template-columns: 1fr minmax(260px, .8fr); gap: 40px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.specialty-item h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.4rem); line-height: 1; }
.specialty-item p { margin: 0; color: var(--muted); }

.material-list { margin-top: 65px; border-top: 1px solid var(--line); }
.material-row { display: grid; grid-template-columns: .7fr 1fr .5fr; gap: 30px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); }
.material-row h3 { margin: 0; font-family: var(--display); font-size: 2.6rem; }
.material-row p { margin: 0; color: var(--muted); }
.material-row a { justify-self: end; font-weight: 800; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: var(--line); border: 1px solid var(--line); }
.feature { min-height: 300px; padding: 0; background: var(--paper); }
.feature h3 { margin: 0; font-family: var(--display); font-size: 2.4rem; line-height: 1; }
.feature p { margin: 18px 0 0; color: var(--muted); }
.feature-media {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 210px;
  overflow: hidden;
  margin: 0;
  background: #e8e5dc;
  border-bottom: 1px solid var(--line);
}
.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.feature:hover .feature-media img { transform: scale(1.065); }
.feature-media-boxes img { object-position: 52% center; }
.feature-media-bags img { object-position: 72% center; }
.feature-copy { padding: 26px; }
.paper-use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.paper-use-list li {
  padding: 7px 10px;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.25;
}
.feature-image-reserve {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  color: var(--muted);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.feature-image-reserve::before,
.feature-image-reserve::after { content: ""; position: absolute; width: 28px; height: 28px; border-color: var(--ink); opacity: .55; }
.feature-image-reserve::before { top: 14px; left: 14px; border-top: 1px solid; border-left: 1px solid; }
.feature-image-reserve::after { right: 14px; bottom: 14px; border-right: 1px solid; border-bottom: 1px solid; }
.feature-image-reserve strong { font-family: var(--display); font-size: 1.65rem; letter-spacing: .04em; }
.feature-image-reserve small { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.supports-overview { padding-block: clamp(64px, 8vw, 108px); background: var(--white); }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 8vw, 100px); }
.contact-list { border-top: 1px solid var(--line); }
.contact-list a, .contact-list div { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-list small { color: var(--muted); font-weight: 800; }
.contact-list strong { font-size: 1.05rem; }
.contact-list a:hover strong { color: var(--cobalt); }
.brief-form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cobalt); outline: 3px solid var(--cobalt-pale); }
.form-note { margin: 0; color: var(--muted); font-size: .8rem; }

.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr); gap: clamp(40px, 7vw, 90px); align-items: start; }
.product-gallery { display: grid; grid-template-columns: 94px 1fr; gap: 15px; }
.thumbs { display: grid; gap: 12px; align-content: start; }
.thumb { min-height: 94px; display: grid; place-items: center; color: var(--muted); background: var(--white); border: 1px solid var(--line); font-size: .65rem; font-weight: 800; text-align: center; }
.product-info h1 { margin: 18px 0 0; font-family: var(--display); font-size: clamp(3.4rem, 6vw, 6rem); line-height: .9; }
.placeholder-text { color: var(--muted); }
.spec-list { margin: 38px 0 0; border-top: 1px solid var(--line); }
.spec-list div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.spec-list dt { color: var(--muted); font-size: .78rem; font-weight: 800; }
.spec-list dd { margin: 0; font-weight: 700; }
.empty-state { margin-top: 22px; padding: 16px; color: var(--cobalt-deep); background: var(--cobalt-pale); border: 1px solid #aeb9f4; border-radius: 10px; font-size: .85rem; }

.site-footer { color: var(--white); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; padding: 70px 0; }
.footer-brand p { max-width: 40ch; color: rgba(255,255,255,.63); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-col strong { display: block; margin-bottom: 15px; font-family: var(--display); font-size: 1.35rem; }
.footer-col a { display: block; width: fit-content; margin: 9px 0; color: rgba(255,255,255,.68); text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.55); font-size: .75rem; }

@media (max-width: 1120px) {
  .nav-links { gap: 15px; }
  .nav-links a { font-size: .82rem; }
  .nav-whatsapp { display: none; }
  .hero-grid { grid-template-columns: 1fr .82fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.25); }
}

@media (max-width: 920px) {
  :root { --header: 72px; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .nav-links {
    position: fixed;
    inset: var(--header) 0 0;
    display: none;
    align-content: start;
    justify-items: start;
    padding: 40px 24px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { width: 100%; padding: 14px 0; font-family: var(--display); font-size: 2.1rem; border-bottom: 1px solid var(--line); }
  .nav-whatsapp { display: none; }
  .nav-links .mobile-wa { display: inline-flex; margin-top: 24px; width: auto; padding: 13px 16px; font-family: var(--body); font-size: .9rem; border: 1px solid var(--line-dark); border-radius: 12px; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .page-hero-grid, .heading-grid, .cta-grid, .contact-layout, .product-detail { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 620px; }
  .heading-grid .lead { margin-top: -20px; }
  .solution-row { grid-template-columns: 1fr; }
  .solution-row:nth-child(even) .solution-media { order: initial; }
  .solution-media { max-width: 680px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-split, .showcase-grid { grid-template-columns: 1fr; }
  .product-panel + .product-panel { border-left: 0; border-top: 1px solid var(--line-dark); }
  .cta-grid .button-row { justify-content: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { min-height: auto; }
  .feature p { margin-top: 18px; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell, .nav-shell { width: min(calc(100% - 32px), var(--max)); }
  .brand-word small { display: none; }
  .brand-mark { width: 34px; height: 25px; }
  .display { font-size: clamp(3.5rem, 18vw, 5.8rem); }
  .display-medium { font-size: clamp(3.2rem, 15vw, 4.9rem); }
  .hero-visual { min-height: 480px; }
  .hero-visual::before { width: 78%; height: 101%; }
  .paper-feed { width: 88%; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { min-height: 220px; padding: 26px 0; border-right: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .process-step:first-child { border-top: 0; }
  .process-step h3 { margin-top: 50px; }
  .specialty-item, .material-row { grid-template-columns: 1fr; gap: 15px; }
  .material-row a { justify-self: start; }
  .page-hero .image-placeholder { min-height: 310px; }
  .product-gallery { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(3, 1fr); order: 2; }
  .contact-list a, .contact-list div { grid-template-columns: 1fr; gap: 5px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .btn { width: 100%; }
  .hero-video-inner { width: min(calc(100% - 32px), var(--max)); padding-block: 42px 54px; }
  .hero-video-inner .hero-lockup-large { width: min(52%, 220px); margin-bottom: 30px; }
  .hero-video-inner .display { max-width: 10ch; }
  .hero-video-inner .button-row { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .feed-line { top: 48%; }
  .hero-bg { display: none; }
}

/* EMBAPEL · sistema visual 2026 */
:root {
  --food: #f2b544;
  --food-deep: #4a2e00;
  --fashion: #2140d6;
  --fashion-deep: #142891;
  --ecommerce: #087568;
  --ecommerce-deep: #064b43;
  --success: #087568;
  --error: #b42318;
  --info: #2140d6;
  --focus: #f2b544;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.display { letter-spacing: -.03em; }
.display-medium { font-size: clamp(3.1rem, 6vw, 6rem); }
.lead { max-width: 70ch; }

.site-header {
  background: rgba(246, 246, 242, .96);
  border-bottom: 1px solid rgba(17, 19, 24, .14);
  backdrop-filter: blur(12px);
}
.nav-shell { gap: 22px; }
.brand { flex: 0 0 auto; color: var(--ink); }
.brand-logo { display: block; width: 215px; height: 54px; object-fit: contain; object-position: left center; }
.brand-mark, .brand-word { display: none !important; }
.nav-links { gap: clamp(13px, 1.25vw, 24px); }
.nav-links a { white-space: nowrap; }
.nav-links a[aria-current="page"] { color: var(--cobalt); }
.account-link {
  padding: 7px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
}
.account-link:hover { color: var(--white) !important; background: var(--ink); }
.header-account-link { white-space: nowrap; text-decoration: none; }
.nav-whatsapp { white-space: nowrap; }
.mobile-wa { display: none; }

.hero-refined { min-height: calc(100svh - var(--header)); display: grid; align-items: center; padding: 0; }
.hero-refined .hero-grid { align-items: center; }
.hero-refined .display { max-width: 14ch; font-size: clamp(3.45rem, 5.4vw, 5.2rem); line-height: .91; }
.hero-refined .hero-copy { padding-block: clamp(28px, 3vw, 42px); }
.hero-lockup-large {
  display: block;
  width: min(72%, 360px);
  height: auto;
  margin-bottom: clamp(22px, 2vw, 30px);
}
.manufacturer-line {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}
.manufacturer-line strong { color: var(--cobalt); }
.manufacturer-line + .lead { margin-top: 16px; }
.hero-refined .button-row { margin-top: 22px; }
.hero-refined .paper-feed {
  overflow: hidden;
  isolation: isolate;
  min-height: min(68vh, 760px);
  background: var(--white);
}
.hero-symbol {
  position: absolute;
  right: -8%;
  bottom: -3%;
  z-index: 3;
  width: 64%;
  color: var(--cobalt);
  opacity: .13;
  mix-blend-mode: multiply;
  transform: rotate(-3deg);
}

.proof-strip { background: var(--ink); color: var(--white); }
.proof-item { min-height: 150px; }
.proof-item strong { color: var(--food); }
.proof-item span { color: #d8dbe3; }

.sector-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(32px, 7vw, 112px);
  align-items: end;
  padding-block: clamp(76px, 10vw, 150px);
}
.sector-intro h2, .sector-intro p { margin: 0; }
.sector-band { position: relative; overflow: hidden; }
.sector-band::after {
  content: "";
  position: absolute;
  width: min(36vw, 520px);
  aspect-ratio: 1;
  border: 1px solid currentColor;
  opacity: .12;
  pointer-events: none;
  transform: rotate(11deg);
}
.sector-food { color: var(--ink); background: var(--food); }
.sector-fashion { color: var(--white); background: var(--fashion); }
.sector-ecommerce { color: var(--white); background: var(--ecommerce); }
.sector-food::after, .sector-ecommerce::after { left: -13vw; bottom: -45%; }
.sector-fashion::after { right: -12vw; top: -42%; }
.sector-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 130px);
  align-items: center;
  min-height: min(790px, 84vh);
  padding-block: clamp(72px, 10vw, 144px);
}
.sector-copy { max-width: 640px; }
.sector-right .sector-copy { justify-self: end; text-align: right; }
.sector-left .sector-copy { justify-self: start; text-align: left; }
.sector-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: -.03em;
}
.sector-copy > p { margin: 26px 0 0; font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.sector-uses {
  display: flex;
  flex-wrap: wrap;
  justify-content: inherit;
  gap: 8px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}
.sector-right .sector-uses { justify-content: flex-end; }
.sector-uses li {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
}
.sector-uses a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: inherit;
  border-radius: inherit;
  text-decoration: none;
}
.sector-uses a:hover { background: rgba(255,255,255,.16); }
.sector-uses a:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.sector-uses svg { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sector-icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sector-media {
  min-height: 430px;
  background: rgba(255,255,255,.32);
  border-color: currentColor;
  color: inherit;
}
.sector-fashion .sector-media, .sector-ecommerce .sector-media { background: rgba(0,0,0,.12); }
.sector-media img, .solution-media img { transition-duration: 1.1s; }
.sector-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 2px solid currentColor;
  font-weight: 800;
  text-decoration: none;
}
.sector-link::after { content: "→"; font-size: 1.35em; transition: transform .25s ease; }
.sector-link:hover::after { transform: translateX(6px); }

.brand-close { padding-block: clamp(80px, 11vw, 160px); color: var(--white); background: var(--ink); }
.brand-close-grid { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: clamp(48px, 9vw, 130px); align-items: center; }
.brand-close-grid > img { width: min(100%, 440px); filter: invert(1); }
.brand-close .lead { color: #d8dbe3; }
.brand-close .btn-whatsapp, .packaging-callout .btn-whatsapp, .cta-band .btn-whatsapp { color: var(--white); border-color: var(--whatsapp); background: var(--whatsapp); }
.brand-close .btn-whatsapp:hover, .packaging-callout .btn-whatsapp:hover, .cta-band .btn-whatsapp:hover { color: var(--white); border-color: color-mix(in srgb, var(--whatsapp) 72%, var(--ink)); background: color-mix(in srgb, var(--whatsapp) 72%, var(--ink)); }

.site-footer .brand-logo { filter: invert(1); width: 210px; height: 54px; }

/* Página de soluciones */
.solution-page-list { background: var(--paper); }
.solution-page-list .solution-row {
  width: 100%;
  max-width: none;
  min-height: min(720px, 82vh);
  margin: 0;
  padding: clamp(70px, 9vw, 140px) max(24px, calc((100vw - var(--max)) / 2));
  gap: clamp(42px, 8vw, 130px);
  align-items: center;
}
.solution-page-list .solution-row:nth-child(even) .solution-media { order: initial; }
.solution-page-list .solution-row p { color: inherit; font-size: 1.12rem; }
.solution-page-list .solution-row h2 { margin: 0; }
.solution-page-list .solution-copy { max-width: 650px; }
.solution-page-list .solution-food { color: var(--ink); background: var(--food); }
.solution-page-list .solution-fashion { color: var(--white); background: var(--fashion); }
.solution-page-list .solution-ecommerce { color: var(--white); background: var(--ecommerce); }
.solution-page-list .solution-food .solution-copy, .solution-page-list .solution-ecommerce .solution-copy { justify-self: end; text-align: right; }
.solution-page-list .solution-food .solution-media, .solution-page-list .solution-ecommerce .solution-media { order: -1; }

/* Tienda */
.shop-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.shop-heading h2, .shop-heading p { margin: 0; }
.shop-heading p { color: var(--muted); max-width: 56ch; }
.product-rows { border-top: 1px solid var(--ink); }
.product-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  min-height: 150px;
  padding-block: 22px;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  transition: transform .28s cubic-bezier(.16,1,.3,1), background .28s ease;
}
.product-row:hover { transform: translateX(8px); background: var(--white); }
.product-thumb { position: relative; overflow: hidden; display: grid; place-items: center; aspect-ratio: 4/3; border: 1px solid var(--ink); font-size: .7rem; font-weight: 800; text-align: center; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.16,1,.3,1); }
.product-row:hover .product-thumb img { transform: scale(1.08); }
.product-row strong { display: block; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3.4rem); line-height: 1; }
.product-row small { display: block; margin-top: 8px; color: var(--muted); }
.row-action { font-weight: 800; }
.packaging-callout { padding-block: clamp(80px, 11vw, 150px); color: var(--white); background: var(--ink); }
.packaging-grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(48px, 9vw, 130px); align-items: center; }
.packaging-callout .lead { color: rgba(255,255,255,.72); }

/* Acceso y cuenta */
.access-page { min-height: calc(100svh - var(--header)); display: grid; align-items: stretch; }
.access-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); min-height: calc(100svh - var(--header)); }
.access-story { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(56px, 8vw, 120px) max(24px, calc((100vw - var(--max)) / 2)); padding-right: clamp(50px, 7vw, 110px); color: var(--white); background: var(--fashion); }
.access-story .display { max-width: 9ch; }
.access-story p { max-width: 55ch; color: #e6eaff; }
.access-story .image-placeholder { min-height: 210px; margin-top: 60px; background: rgba(0,0,0,.12); }
.access-panel { display: grid; place-items: center; padding: clamp(42px, 7vw, 100px); background: var(--white); }
.access-box { width: min(100%, 520px); }
.access-box h1, .access-box h2 { margin: 0 0 12px; font-family: var(--display); font-size: clamp(3.4rem, 7vw, 5.6rem); line-height: .92; }
.access-box > p { margin: 0 0 34px; color: var(--muted); }
.access-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 28px;
  border-bottom: 1px solid var(--line-dark);
}
.access-mode-tab {
  min-height: 48px;
  padding: 10px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  font: 800 .88rem/1.2 var(--body);
  cursor: pointer;
}
.access-mode-tab:hover { color: var(--ink); background: var(--paper); }
.access-mode-tab.is-active { color: var(--ink); border-bottom-color: var(--cobalt); }
.access-mode-tab:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.access-panel-content[hidden] { display: none; }
.access-panel-content .access-divider { margin-top: 22px; }
.access-form { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .9rem; font-weight: 800; }
.field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
}
.field input:focus { border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(33,64,214,.14); outline: none; }
.btn-google, .btn-demo { width: 100%; justify-content: center; }
.btn-google { margin-bottom: 18px; color: var(--ink); background: var(--white); border: 1px solid var(--ink); }
.btn-google:hover { color: var(--white); background: var(--ink); }
.access-divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--muted); font-size: .85rem; }
.access-divider::before, .access-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.demo-credentials { margin-top: 28px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.demo-credentials strong { display: block; margin-bottom: 8px; }
.demo-credentials code { display: block; margin-top: 4px; font-family: var(--body); font-size: .9rem; }
.registration-note { margin: 18px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.5; }
.form-message { min-height: 25px; margin: 14px 0 0; font-size: .9rem; font-weight: 700; }
.form-message.is-error { color: var(--error); }
.form-message.is-success { color: var(--success); }
.form-message.is-info { color: var(--info); }

.account-page { padding-block: clamp(45px, 7vw, 90px); }
.demo-banner { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 34px; padding: 18px 22px; color: var(--food-deep); background: var(--food); }
.demo-banner strong { display: block; }
.demo-banner span { font-size: .88rem; }
.account-header { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 42px; }
.account-header h1 { margin: 0; font-family: var(--display); font-size: clamp(3.4rem, 7vw, 6rem); line-height: .95; }
.account-header p { margin: 8px 0 0; color: var(--muted); }
.account-layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: clamp(34px, 6vw, 80px); align-items: start; }
.account-nav { position: sticky; top: calc(var(--header) + 24px); display: grid; gap: 4px; }
.account-nav button {
  width: 100%;
  padding: 13px 15px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}
.account-nav button:hover { background: var(--white); }
.account-nav button.is-active { color: var(--white); background: var(--ink); }
.account-content { min-width: 0; }
.account-panel h2 { margin: 0 0 24px; font-family: var(--display); font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1; }
.account-panel[hidden] { display: none; }
.account-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.summary-block { min-height: 150px; padding: 22px; border-radius: 12px; color: var(--white); background: var(--fashion); }
.summary-block:nth-child(2) { color: var(--ink); background: var(--food); }
.summary-block:nth-child(3) { background: var(--ecommerce); }
.summary-block strong { display: block; font-family: var(--display); font-size: 2.5rem; line-height: 1; }
.summary-block span { display: block; margin-top: 10px; }
.account-table { width: 100%; border-collapse: collapse; background: var(--white); }
.account-table th, .account-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.account-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.status-chip { display: inline-flex; padding: 5px 9px; border-radius: 999px; color: var(--ecommerce-deep); background: #d9f6f0; font-size: .78rem; font-weight: 800; }
.empty-account { padding: clamp(38px, 6vw, 74px); border: 1px dashed var(--line-dark); text-align: center; background: var(--white); }
.empty-account h3 { margin: 0 0 10px; font-family: var(--display); font-size: 2.4rem; }
.data-list { display: grid; gap: 0; margin: 0; background: var(--white); }
.data-list div { display: grid; grid-template-columns: 220px 1fr; gap: 22px; padding: 18px; border-bottom: 1px solid var(--line); }
.data-list dt { font-weight: 800; }
.data-list dd { margin: 0; }

/* Movimiento global: lectura progresiva desde el primer viewport. */
.motion-ready [data-motion] {
  opacity: .01;
  filter: blur(3px);
  clip-path: inset(0 0 12% 0);
  transform: translate3d(0,34px,0);
  transition: opacity .5s var(--motion-delay, 0ms) ease-out, transform .72s var(--motion-delay, 0ms) cubic-bezier(.16,1,.3,1), filter .58s var(--motion-delay, 0ms) ease-out, clip-path .72s var(--motion-delay, 0ms) cubic-bezier(.16,1,.3,1);
  will-change: transform, opacity, clip-path;
}
.motion-ready [data-motion="header"] { clip-path: inset(0 0 18%); transform: translate3d(0,-18px,0); }
.motion-ready [data-motion="media"] { clip-path: inset(8% 0 0); transform: translate3d(0,42px,0) scale(.975); }
.motion-ready [data-motion].is-visible { opacity: 1; filter: none; clip-path: inset(0); transform: translate3d(0,0,0) scale(1); will-change: auto; }

/* Movimiento sectorial: cada solución entra como una hoja registrada en máquina. */
[data-reveal] { --media-x: -116px; --copy-x: 86px; --wipe-origin: left; }
[data-reveal="left"] { --media-x: 116px; --copy-x: -86px; --wipe-origin: right; }
.sector-band::before,
.solution-page-list .solution-row::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 3px;
  background: currentColor;
  opacity: .68;
  transform: scaleX(0);
  transform-origin: var(--wipe-origin) center;
}
.solution-page-list .solution-row { position: relative; overflow: hidden; }
.motion-ready [data-reveal] .sector-media,
.motion-ready .solution-page-list [data-reveal] .solution-media {
  opacity: .08;
  filter: saturate(.45) contrast(.86) blur(3px);
  clip-path: inset(0 18% 0 0);
  transform: translate3d(var(--media-x),0,0) scale(.96);
  transition: opacity .52s ease-out, transform .82s cubic-bezier(.16,1,.3,1), filter .68s ease-out, clip-path .82s cubic-bezier(.16,1,.3,1);
  will-change: transform, opacity, clip-path;
}
.motion-ready [data-reveal="left"] .sector-media,
.motion-ready .solution-page-list [data-reveal="left"] .solution-media { clip-path: inset(0 0 0 18%); }
.motion-ready [data-reveal] .sector-copy,
.motion-ready .solution-page-list [data-reveal] .solution-copy {
  opacity: .08;
  transform: translate3d(var(--copy-x),0,0);
  transition: opacity .5s .12s ease-out, transform .78s .08s cubic-bezier(.16,1,.3,1);
  will-change: transform, opacity;
}
.motion-ready [data-reveal] .sector-copy > *,
.motion-ready .solution-page-list [data-reveal] .solution-copy > * {
  opacity: 0;
  transform: translate3d(0,22px,0);
  transition: opacity .42s ease-out, transform .62s cubic-bezier(.16,1,.3,1);
}
.motion-ready [data-reveal] .sector-copy > :nth-child(1),
.motion-ready .solution-page-list [data-reveal] .solution-copy > :nth-child(1) { transition-delay: .2s; }
.motion-ready [data-reveal] .sector-copy > :nth-child(2),
.motion-ready .solution-page-list [data-reveal] .solution-copy > :nth-child(2) { transition-delay: .28s; }
.motion-ready [data-reveal] .sector-copy > :nth-child(3),
.motion-ready .solution-page-list [data-reveal] .solution-copy > :nth-child(3) { transition-delay: .36s; }
.motion-ready [data-reveal] .sector-copy > :nth-child(4),
.motion-ready .solution-page-list [data-reveal] .solution-copy > :nth-child(4) { transition-delay: .44s; }
.motion-ready [data-reveal].is-visible::before { transform: scaleX(1); transition: transform .72s cubic-bezier(.16,1,.3,1); }
.motion-ready [data-reveal].is-visible .sector-media,
.motion-ready .solution-page-list [data-reveal].is-visible .solution-media,
.motion-ready [data-reveal].is-visible .sector-copy,
.motion-ready .solution-page-list [data-reveal].is-visible .solution-copy,
.motion-ready [data-reveal].is-visible .sector-copy > *,
.motion-ready .solution-page-list [data-reveal].is-visible .solution-copy > * {
  opacity: 1;
  filter: none;
  clip-path: inset(0);
  transform: translate3d(0,0,0) scale(1);
}
.motion-ready [data-reveal].is-visible .sector-media,
.motion-ready .solution-page-list [data-reveal].is-visible .solution-media,
.motion-ready [data-reveal].is-visible .sector-copy,
.motion-ready .solution-page-list [data-reveal].is-visible .solution-copy { will-change: auto; }

@media (max-width: 1260px) {
  .nav-whatsapp { display: none; }
}

@media (max-width: 920px) {
  .site-header { background: var(--paper); backdrop-filter: none; }
  .nav-links { z-index: 200; overflow-y: auto; background: var(--paper); }
  .brand-logo { width: 174px; height: 44px; }
  .nav-links .account-link { display: block; border: 0; border-radius: 0; padding: 15px 24px; }
  .nav-links .mobile-wa { display: block; }
  .sector-intro, .shop-heading, .packaging-grid, .brand-close-grid, .access-layout, .manufacturer-grid { grid-template-columns: 1fr; }
  .sector-layout { grid-template-columns: 1fr; min-height: 0; }
  .sector-right .sector-copy, .sector-left .sector-copy { justify-self: start; text-align: left; }
  .sector-right .sector-uses { justify-content: flex-start; }
  .sector-copy { order: 1; }
  .sector-media { order: 2; min-height: 360px; }
  .solution-page-list .solution-row { grid-template-columns: 1fr; min-height: 0; }
  .solution-page-list .solution-food .solution-copy, .solution-page-list .solution-ecommerce .solution-copy { justify-self: start; text-align: left; }
  .solution-page-list .solution-row .solution-media { order: 2 !important; }
  .solution-page-list .solution-row .solution-copy { order: 1; }
  .access-story { min-height: 540px; padding-inline: 8vw; }
  .access-panel { order: -1; min-height: 760px; }
  .account-layout { grid-template-columns: 1fr; }
  .account-nav { position: static; display: flex; overflow-x: auto; padding-bottom: 8px; }
  .account-nav button { width: auto; white-space: nowrap; }
  .account-summary { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .hero-refined .hero-copy { padding-block: 54px 34px; }
  .hero-refined .paper-feed { min-height: 480px; }
  .hero-lockup-large { width: min(78%, 250px); margin-bottom: 38px; }
  .manufacturer-points p { grid-template-columns: 1fr; gap: 10px; }
  .proof-item { min-height: 120px; }
  .sector-intro { padding-block: 64px; }
  .sector-layout { padding-block: 66px; gap: 38px; }
  .sector-copy h3 { font-size: clamp(3.2rem, 17vw, 5.2rem); }
  .sector-media { min-height: 280px; }
  .product-row { grid-template-columns: 82px 1fr; }
  .row-action { display: none; }
  .access-story { min-height: 450px; }
  .access-panel { min-height: auto; padding: 52px 22px; }
  .account-header, .demo-banner { align-items: flex-start; flex-direction: column; }
  .account-table { display: block; overflow-x: auto; }
  .data-list div { grid-template-columns: 1fr; gap: 6px; }
  [data-reveal], [data-reveal="left"] { --media-x: 0; --copy-x: 0; }
  .motion-ready [data-reveal] .sector-media,
  .motion-ready .solution-page-list [data-reveal] .solution-media { clip-path: inset(12% 0 0); transform: translate3d(0,54px,0) scale(.97); }
  .motion-ready [data-reveal] .sector-copy,
  .motion-ready .solution-page-list [data-reveal] .solution-copy { transform: translate3d(0,42px,0); }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-motion] { opacity: 1; filter: none; clip-path: none; transform: none; transition: opacity .18s ease-out; }
  .sector-band::before, .solution-page-list .solution-row::before { transform: scaleX(1); }
  .motion-ready [data-reveal] .sector-media,
  .motion-ready .solution-page-list [data-reveal] .solution-media,
  .motion-ready [data-reveal] .sector-copy,
  .motion-ready .solution-page-list [data-reveal] .solution-copy,
  .motion-ready [data-reveal] .sector-copy > *,
  .motion-ready .solution-page-list [data-reveal] .solution-copy > * { opacity: 1; filter: none; clip-path: none; transform: none; transition: none; }
  .sector-link::after, .product-row { transition: none; }
}

/* Ecommerce B2B: catálogo, carrito y checkout */
[hidden] { display: none !important; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.btn, .remove-line { cursor: pointer; }
.btn:disabled {
  cursor: not-allowed;
  opacity: .48;
  transform: none;
}

.nav-shell { grid-template-columns: auto 1fr auto auto; }
.cart-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.cart-link:hover, .cart-link[aria-current="page"] { color: var(--white); background: var(--ink); transform: translateY(-2px); }
.cart-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-count {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding-inline: 5px;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 999px;
  font-size: .7rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cart-link:hover .cart-count, .cart-link[aria-current="page"] .cart-count { color: var(--ink); background: var(--food); }

.catalog-hero .site-image { min-height: 420px; }
.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: end;
  margin-bottom: 54px;
}
.catalog-heading .lead { margin-top: 24px; }
.catalog-demo-note {
  margin: 0;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}
.catalog-demo-note strong, .catalog-demo-note span { display: block; }
.catalog-demo-note strong { font-family: var(--display); font-size: 1.6rem; line-height: 1; }
.catalog-demo-note span { margin-top: 10px; color: rgba(255,255,255,.7); font-size: .82rem; }
.catalog-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}
.catalog-filters .field select { color: var(--ink); background: var(--paper); }
.catalog-count {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.catalog-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 260px 1fr;
  background: var(--paper);
}
.catalog-card-media { min-height: 0; border: 0; border-bottom: 1px solid var(--ink); }
.catalog-card-body {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(22px, 2.7vw, 34px);
}
.catalog-reference {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.catalog-card h2 { margin: 0; font-family: var(--display); font-size: clamp(2.35rem, 3vw, 3.35rem); line-height: .95; }
.catalog-description { margin: 18px 0 0; color: var(--muted); font-size: .9rem; }
.catalog-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.catalog-tags span { padding: 6px 9px; border: 1px solid var(--ink); border-radius: 999px; font-size: .67rem; font-weight: 800; }
.price-table { width: 100%; margin-top: auto; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.price-table th, .price-table td { padding: 10px 0; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th { color: var(--muted); font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; }
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.catalog-actions { display: grid; gap: 14px; }
.catalog-actions label { display: grid; gap: 8px; font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.catalog-actions select { width: 100%; padding: 12px 14px; color: var(--ink); background: var(--white); border: 1px solid var(--line-dark); border-radius: 10px; }
.catalog-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.catalog-buttons .btn { width: 100%; padding-inline: 12px; font-size: .78rem; }
.catalog-empty { grid-column: 1 / -1; min-height: 240px; display: grid; place-content: center; gap: 10px; margin: 0; border: 0; border-radius: 0; text-align: center; }
.catalog-empty strong { font-family: var(--display); font-size: 2rem; }
.catalog-empty span { color: var(--muted); }

.commerce-hero { background: var(--white); }
.commerce-hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .45fr); gap: clamp(46px, 9vw, 120px); align-items: end; }
.commerce-step { min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; color: var(--white); background: var(--cobalt); }
.commerce-step strong { font-family: var(--display); font-size: 2.8rem; line-height: 1; }
.commerce-step span { color: rgba(255,255,255,.74); font-size: .82rem; font-weight: 700; }

.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(38px, 6vw, 80px); align-items: start; }
.table-scroll { overflow-x: auto; border-top: 1px solid var(--ink); }
.cart-table { width: 100%; min-width: 720px; border-collapse: collapse; font-variant-numeric: tabular-nums; background: transparent; }
.cart-table th, .cart-table td { padding: 20px 16px; border-bottom: 1px solid var(--ink); text-align: left; vertical-align: middle; }
.cart-table th:first-child, .cart-table td:first-child { padding-left: 0; }
.cart-table th { color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.cart-table th:nth-child(3), .cart-table td:nth-child(3) { text-align: right; }
.cart-product { display: grid; grid-template-columns: 94px 1fr; gap: 18px; align-items: center; }
.cart-product img { width: 94px; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--ink); }
.cart-product strong, .cart-product small { display: block; }
.cart-product strong { font-family: var(--display); font-size: 1.7rem; line-height: 1; }
.cart-product small { margin-top: 8px; color: var(--muted); font-size: .7rem; letter-spacing: .08em; }
.remove-line { padding: 8px 0; color: var(--muted); background: transparent; border: 0; border-bottom: 1px solid currentColor; font-size: .78rem; font-weight: 800; }
.remove-line:hover { color: var(--error); }
.order-summary, .checkout-summary {
  position: sticky;
  top: calc(var(--header) + 28px);
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}
.order-summary h2, .checkout-summary h2 { margin: 0; font-family: var(--display); font-size: 2.7rem; line-height: 1; }
.order-summary dl, .checkout-summary dl { margin: 28px 0 0; }
.order-summary dl div, .checkout-summary dl div { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.2); }
.order-summary dt, .order-summary dd, .checkout-summary dt, .checkout-summary dd { margin: 0; }
.order-summary dd, .checkout-summary dd { font-weight: 800; font-variant-numeric: tabular-nums; text-align: right; }
.order-summary .order-total, .checkout-summary .order-total { align-items: end; padding-top: 22px; }
.order-total dt { font-family: var(--display); font-size: 1.7rem; }
.order-total dd { font-family: var(--display); font-size: 2.5rem; line-height: 1; }
.order-summary > p, .checkout-summary > p { color: rgba(255,255,255,.66); font-size: .78rem; }
.order-summary .btn { width: 100%; margin-top: 18px; }
.summary-link { display: block; margin-top: 18px; color: rgba(255,255,255,.76); font-size: .8rem; font-weight: 800; text-align: center; text-underline-offset: .25em; }
.commerce-empty { min-height: 430px; display: grid; align-content: center; justify-items: start; padding: clamp(28px, 5vw, 70px); background: var(--cobalt-pale); border: 1px solid #aeb9f4; }
.commerce-empty p { color: var(--muted); }
.commerce-empty .btn { margin-top: 20px; }
.commerce-empty.compact { min-height: 0; gap: 8px; padding: 18px; color: var(--cobalt-deep); background: var(--cobalt-pale); border: 0; }
.commerce-empty.compact a { color: var(--cobalt-deep); font-weight: 800; }

.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(310px, .55fr); gap: clamp(44px, 8vw, 100px); align-items: start; }
.checkout-form { display: grid; gap: 72px; }
.checkout-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.field-wide { grid-column: 1 / -1; }
.payment-section { padding-top: 58px; border-top: 1px solid var(--line); }
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.payment-choice { display: flex; align-items: flex-start; gap: 13px; padding: 18px; background: var(--white); border: 1px solid var(--line-dark); cursor: pointer; }
.payment-choice:has(input:checked) { color: var(--white); background: var(--cobalt); border-color: var(--cobalt); }
.payment-choice input { margin-top: 4px; accent-color: var(--food); }
.payment-choice strong, .payment-choice small { display: block; }
.payment-choice small { margin-top: 5px; color: var(--muted); }
.payment-choice:has(input:checked) small { color: rgba(255,255,255,.72); }
.payment-panel { margin-top: 20px; padding: clamp(22px, 4vw, 36px); background: var(--white); border: 1px solid var(--line-dark); }
.payment-panel .checkout-field-grid { margin-top: 0; }
.transfer-panel { color: var(--white); background: var(--ecommerce); border-color: var(--ecommerce-deep); }
.transfer-panel p { color: rgba(255,255,255,.76); }
.complete-order { width: 100%; min-height: 58px; }
.complete-order.is-loading::before { content: ""; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.36); border-top-color: var(--white); border-radius: 50%; animation: checkout-spin .8s linear infinite; }
@keyframes checkout-spin { to { transform: rotate(360deg); } }
.checkout-items { list-style: none; margin: 28px 0 0; padding: 0; }
.checkout-items li { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.2); }
.checkout-items li strong, .checkout-items li span { display: block; }
.checkout-items li span { margin-top: 5px; color: rgba(255,255,255,.6); font-size: .72rem; }

.success-dialog { width: min(620px, calc(100% - 32px)); padding: clamp(28px, 6vw, 58px); color: var(--ink); background: var(--paper); border: 1px solid var(--ink); border-radius: 0; }
.success-dialog::backdrop { background: rgba(17,19,24,.72); backdrop-filter: blur(3px); }
.success-dialog .display { margin-top: 28px; }
.success-dialog > p { color: var(--muted); }
.success-dialog .button-row { align-items: center; }
.success-dialog .button-row form { margin: 0; }
.success-mark { width: 66px; height: 66px; display: grid; place-items: center; color: var(--white); background: var(--ecommerce); }
.success-mark svg { width: 36px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cart-toast {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: min(390px, calc(100% - 48px));
  padding: 16px 20px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.28);
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity .2s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.cart-toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .cart-link-label { display: none; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .nav-shell { grid-template-columns: 1fr auto auto auto; gap: 10px; }
  .header-account-link { grid-column: 2; }
  .cart-link { grid-column: 3; }
  .menu-toggle { grid-column: 4; }
  .catalog-heading, .commerce-hero-grid, .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .catalog-heading { align-items: start; }
  .catalog-demo-note { max-width: 520px; }
  .order-summary, .checkout-summary { position: static; }
  .checkout-summary { order: -1; }
}

@media (max-width: 680px) {
  .cart-link { min-height: 44px; padding: 8px 9px; }
  .cart-link svg { width: 19px; }
  .catalog-hero .site-image { min-height: 300px; }
  .catalog-filters, .catalog-grid, .checkout-field-grid, .payment-options { grid-template-columns: 1fr; }
  .catalog-filters { padding: 22px; }
  .catalog-card { grid-template-rows: 230px 1fr; }
  .catalog-card-body { min-height: 0; }
  .catalog-buttons { grid-template-columns: 1fr; }
  .commerce-step { min-height: 140px; }
  .cart-layout { gap: 34px; }
  .checkout-form { gap: 54px; }
  .field-wide { grid-column: auto; }
  .success-dialog .button-row, .success-dialog .button-row form, .success-dialog .btn { width: 100%; }
  .cart-toast { right: 16px; bottom: 16px; max-width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  .cart-link, .cart-toast, .complete-order.is-loading::before { transition: none; animation: none; }
}

/* Catálogo visual B2B · recorrido sector → subsector → soporte → diseño */
.solutions-directory-hero { background: var(--white); }
.solutions-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .58fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
}
.solutions-directory-hero .display { max-width: 11ch; }
.solutions-directory-hero .btn { margin-top: 32px; }
.journey-map { border-top: 1px solid var(--ink); }
.journey-map > div {
  display: grid;
  grid-template-columns: minmax(100px, .55fr) 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ink);
}
.journey-map strong { font-family: var(--display); font-size: 1.65rem; line-height: 1; }
.journey-map span { color: var(--muted); font-size: .84rem; }
.directory-intro { background: var(--paper); }
.sector-directory-band { padding-bottom: clamp(74px, 10vw, 140px); }
.sector-directory-layout { min-height: min(680px, 76vh); }
.sector-directory-layout .sector-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: -.03em;
}
.sector-directory-layout .sector-copy > p { margin: 26px 0 34px; font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.sector-directory-media { min-height: 430px; background: rgba(255,255,255,.2); border-color: currentColor; }
.sector-fashion .sector-directory-media,
.sector-ecommerce .sector-directory-media { background: rgba(0,0,0,.12); }
.production-reserve { margin: 0; }
.sector-fashion .production-reserve small,
.sector-ecommerce .production-reserve small,
.subsector-hero.sector-fashion .production-reserve small,
.subsector-hero.sector-ecommerce .production-reserve small,
.design-catalog-hero.sector-fashion .production-reserve small,
.design-catalog-hero.sector-ecommerce .production-reserve small { color: rgba(255,255,255,.72); }
.subsector-directory { position: relative; z-index: 1; scroll-margin-top: calc(var(--header) + 24px); }
.subsector-directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .45fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
  padding-top: 42px;
  border-top: 1px solid currentColor;
}
.subsector-directory-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(2.7rem, 5vw, 4.7rem); line-height: .95; }
.subsector-directory-heading p { margin: 0; opacity: .76; }
.subsector-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: currentColor; border: 1px solid currentColor; }
.subsector-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 230px 1fr;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: transform .32s cubic-bezier(.16,1,.3,1), background .2s ease;
}
.subsector-card:hover { position: relative; z-index: 2; background: var(--white); transform: translateY(-7px); }
.subsector-card-media { min-height: 0; color: var(--ink); background: rgba(255,255,255,.45); border: 0; border-bottom: 1px solid var(--ink); }
.subsector-card-media strong { font-size: clamp(1.8rem, 2.7vw, 3rem); }
.subsector-card-copy { display: flex; min-height: 270px; flex-direction: column; padding: clamp(22px, 3vw, 32px); }
.subsector-card-copy > strong { font-family: var(--display); font-size: clamp(2rem, 3vw, 3rem); line-height: .95; }
.subsector-card-copy > span:not(.subsector-card-action) { margin-top: 18px; color: var(--muted); font-size: .88rem; }
.subsector-card-action { margin-top: auto; padding-top: 28px; font-size: .78rem; font-weight: 800; text-decoration: underline; text-underline-offset: .3em; }

.subsector-hero { border: 0; }
.subsector-hero.sector-food { color: var(--ink); }
.subsector-hero.sector-fashion,
.subsector-hero.sector-ecommerce { color: var(--white); }
.subsector-hero .lead,
.design-catalog-hero .lead { color: currentColor; opacity: .78; }
.subsector-hero .breadcrumbs,
.design-catalog-hero .breadcrumbs { color: currentColor; opacity: .75; }
.subsector-hero-media { min-height: 430px !important; color: currentColor; background: rgba(255,255,255,.18); border-color: currentColor; }
.category-section { background: var(--paper); }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.category-panel { min-width: 0; display: grid; grid-template-rows: 340px 1fr; color: var(--ink); background: var(--paper); text-decoration: none; }
.category-panel-media { min-height: 0; border: 0; border-bottom: 1px solid var(--ink); transition: background .25s ease; }
.category-panel:hover .category-panel-media { background: var(--food); }
.category-panel:nth-child(2):hover .category-panel-media { color: var(--white); background: var(--fashion); }
.category-panel:nth-child(2):hover .category-panel-media small { color: rgba(255,255,255,.72); }
.category-panel:nth-child(3):hover .category-panel-media { color: var(--white); background: var(--ecommerce); }
.category-panel:nth-child(3):hover .category-panel-media small { color: rgba(255,255,255,.72); }
.category-panel-copy { display: flex; min-height: 330px; flex-direction: column; padding: clamp(26px, 4vw, 44px); }
.category-panel-copy > strong { font-family: var(--display); font-size: clamp(2.7rem, 4.3vw, 4.5rem); line-height: .92; }
.category-panel-copy > span:not(.category-panel-action) { margin-top: 24px; color: var(--muted); }
.category-panel-action { width: fit-content; margin-top: auto; padding-top: 34px; border-bottom: 2px solid var(--cobalt); font-weight: 800; }

.design-catalog-hero { border: 0; }
.catalog-route-hero { display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: clamp(46px, 9vw, 120px); align-items: end; }
.catalog-route-hero .display { max-width: 13ch; }
.catalog-route-count { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; color: var(--white); background: var(--ink); }
.catalog-route-count strong { font-family: var(--display); font-size: 6rem; line-height: .8; }
.catalog-route-count span { color: rgba(255,255,255,.7); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.design-catalog-section { background: var(--paper); }
.design-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.design-card { min-width: 0; display: grid; grid-template-rows: 280px 1fr; color: var(--ink); background: var(--paper); text-decoration: none; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.design-card:hover { position: relative; z-index: 2; transform: translateY(-8px); }
.design-card-media { min-height: 0; border: 0; border-bottom: 1px solid var(--ink); transition: color .2s ease, background .2s ease; }
.design-card:hover .design-card-media { color: var(--white); background: var(--cobalt); }
.design-card:hover .design-card-media small { color: rgba(255,255,255,.72); }
.design-card-body { display: flex; min-height: 390px; flex-direction: column; padding: clamp(24px, 3vw, 36px); }
.design-card-body > strong { margin-top: 12px; font-family: var(--display); font-size: clamp(2.3rem, 3.5vw, 3.6rem); line-height: .92; }
.design-card-description { margin-top: 22px; color: var(--muted); font-size: .88rem; }
.design-card-footer { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-top: auto; padding-top: 30px; border-top: 1px solid var(--line); }
.design-card-footer b { font-family: var(--display); font-size: 1.7rem; }
.design-card-footer > span { font-size: .76rem; font-weight: 800; text-decoration: underline; text-underline-offset: .3em; }

.product-page-section { background: var(--paper); }
.product-main-reserve { background: var(--white); }
.product-info .catalog-reference { margin: 20px 0 0; }
.product-price { display: flex; align-items: baseline; gap: 12px; margin-top: 32px; }
.product-price span { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-price strong { font-family: var(--display); font-size: 3.3rem; line-height: 1; }
.product-price-table { margin-top: 24px; }
.product-purchase { display: grid; gap: 12px; margin-top: 30px; padding-top: 28px; border-top: 1px solid var(--ink); }
.product-purchase > label { font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-purchase select { width: 100%; padding: 14px 16px; color: var(--ink); background: var(--white); border: 1px solid var(--line-dark); border-radius: 10px; }
.product-feedback { min-height: 1.4em; margin: 0; color: var(--ecommerce); font-size: .82rem; font-weight: 800; }
.demo-disclaimer { margin: 18px 0 0; color: var(--muted); font-size: .74rem; }
.product-feature-grid .feature { color: var(--ink); background: var(--paper); }
.route-error { min-height: 55vh; display: grid; align-content: center; justify-items: start; }
.route-error .btn { margin-top: 30px; }

.cart-product-reserve { width: 94px; aspect-ratio: 4 / 3; display: grid; place-items: center; color: var(--muted); background: var(--cobalt-pale); border: 1px solid var(--ink); }
.cart-product-reserve span { font-family: var(--display); font-size: 1rem; letter-spacing: .08em; }
.cart-quantity { min-width: 132px; padding: 10px 12px; color: var(--ink); background: var(--white); border: 1px solid var(--line-dark); border-radius: 8px; }
.demo-form-note { max-width: 65ch; margin-top: 18px; padding: 14px 16px; color: var(--food-deep); background: #fff0cd; border: 1px solid #d9a235; }
.cart-layout > *, .checkout-layout > * { min-width: 0; }
.cart-layout .table-scroll { width: 100%; max-width: 100%; }

@media (max-width: 1080px) {
  .subsector-grid, .design-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: 1fr; }
  .category-panel { grid-template-columns: minmax(300px, .8fr) 1fr; grid-template-rows: 1fr; }
  .category-panel-media { min-height: 360px; border: 0; border-right: 1px solid var(--ink); }
}

@media (max-width: 920px) {
  .solutions-hero-grid, .subsector-directory-heading, .catalog-route-hero { grid-template-columns: 1fr; }
  .journey-map { margin-top: 18px; }
  .sector-directory-layout { min-height: 0; }
  .sector-directory-layout .sector-copy { order: 1; justify-self: start; text-align: left; }
  .sector-directory-layout .sector-media { order: 2; }
  .catalog-route-count { min-height: 150px; max-width: 240px; }
}

@media (max-width: 680px) {
  .solutions-directory-hero .display { max-width: none; }
  .journey-map > div { grid-template-columns: 100px 1fr; }
  .subsector-grid, .design-grid { grid-template-columns: 1fr; }
  .subsector-card { grid-template-rows: 210px 1fr; }
  .subsector-card-copy { min-height: 240px; }
  .category-panel { grid-template-columns: 1fr; grid-template-rows: 260px 1fr; }
  .category-panel-media { min-height: 0; border: 0; border-bottom: 1px solid var(--ink); }
  .category-panel-copy { min-height: 280px; }
  .design-card { grid-template-rows: 240px 1fr; }
  .design-card-body { min-height: 340px; }
  .catalog-route-count { width: 100%; max-width: none; }
  .product-purchase .catalog-buttons { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .subsector-card, .design-card { transition: none; }
  .subsector-card:hover, .design-card:hover { transform: none; }
}

/* Revisión final · navegación, legibilidad y densidad responsive */
::selection { color: var(--white); background: var(--cobalt); }
html { scrollbar-color: var(--cobalt) var(--paper); }
body { overflow-x: clip; }
:where(h1, h2, h3, h4, p, summary, a, button, dt, dd, strong, span) { overflow-wrap: break-word; }
:where(.hero-grid, .heading-grid, .manufacturer-grid, .commerce-hero-grid, .cart-layout, .checkout-layout, .faq-layout) > * { min-width: 0; }
.display, .sector-copy h2, .sector-copy h3, .cart-product strong { overflow: visible; }
.catalog-reference, .breadcrumbs { overflow-wrap: anywhere; }
.motion-ready [data-motion="rise"] { clip-path: none; }

/* El logotipo oficial conserva su composición completa en todos los contextos. */
:root { --header: 96px; }
.brand-logo { width: 112px; height: 82px; object-fit: contain; object-position: left center; }
.hero-lockup-large { width: min(58%, 350px); margin-bottom: clamp(18px, 2vw, 26px); }
.site-footer .brand-logo { width: 150px; height: 118px; }
.brand-close-grid > img { width: min(100%, 420px); }

/* Menú jerárquico de soluciones. */
.nav-solutions-menu { position: relative; }
.nav-menu-row { display: flex; align-items: center; min-width: 0; }
.nav-menu-row > a { min-width: 0; flex: 1; }
.submenu-toggle {
  width: 32px;
  height: 32px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
.submenu-toggle:hover { color: var(--cobalt); background: var(--cobalt-pale); }
.submenu-toggle:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.submenu-toggle svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .22s ease-out; }
.submenu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.solutions-flyout,
.subsector-flyout {
  position: absolute;
  z-index: 240;
  display: none;
  margin: 0;
  padding: 8px;
  list-style: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
}
.solutions-flyout { top: calc(100% + 17px); left: -18px; width: 330px; }
.solutions-flyout::before { content: ""; position: absolute; inset: -18px 0 auto; height: 18px; }
.sector-menu { margin: 0; padding: 0; list-style: none; }
.sector-menu-item { position: relative; }
.sector-menu-item + .sector-menu-item { border-top: 1px solid var(--line); }
.sector-menu-item > .nav-menu-row > a { padding: 13px 10px; font-size: .84rem; font-weight: 800; line-height: 1.35; text-decoration: none; }
.sector-menu-item > .nav-menu-row > a::after,
.subsector-flyout a::after { display: none; }
.sector-menu-item > .nav-menu-row > .submenu-toggle { margin-right: 4px; }
.sector-menu-item > .nav-menu-row > .submenu-toggle[aria-expanded="true"] svg { transform: rotate(90deg); }
.subsector-flyout { top: -9px; left: calc(100% + 8px); width: 310px; }
.subsector-flyout::before { content: ""; position: absolute; inset: 0 auto 0 -9px; width: 9px; }
.subsector-flyout a { display: block; padding: 10px 12px; color: var(--muted); font-size: .79rem; font-weight: 700; line-height: 1.35; text-decoration: none; }
.subsector-flyout a:hover,
.subsector-flyout a:focus-visible,
.sector-menu-item > .nav-menu-row > a:hover,
.sector-menu-item > .nav-menu-row > a:focus-visible { color: var(--cobalt); background: var(--cobalt-pale); }
.nav-solutions-menu:hover > .solutions-flyout,
.nav-solutions-menu:focus-within > .solutions-flyout,
.solutions-flyout.is-open,
.sector-menu-item:hover > .subsector-flyout,
.sector-menu-item:focus-within > .subsector-flyout,
.subsector-flyout.is-open { display: block; }
.mobile-menu-motif,
.mobile-menu-social { display: none; }

/* Blog demostrativo: lectura editorial con materiales reales del proyecto. */
.blog-hero { color: var(--white); background: var(--ink); }
.blog-hero .lead { color: #d8dbe3; }
.blog-index { background: var(--paper); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.blog-card { display: grid; min-width: 0; color: var(--ink); background: var(--white); text-decoration: none; }
.blog-card-media { aspect-ratio: 4 / 3; overflow: hidden; border-bottom: 1px solid var(--line-dark); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.blog-card-copy { display: grid; align-content: start; gap: 16px; padding: 26px; }
.blog-card-copy small { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.blog-card-copy strong { font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3rem); line-height: .98; }
.blog-card-copy span { color: var(--muted); line-height: 1.55; }
.blog-card:hover .blog-card-media img { transform: scale(1.035); }
.blog-card:hover .blog-card-copy strong { color: var(--cobalt); }
.blog-card:focus-visible { position: relative; z-index: 1; outline: 3px solid var(--focus); outline-offset: 4px; }
.blog-article { background: var(--white); }
.blog-article-shell { max-width: 880px; }
.blog-article-header { padding-bottom: 34px; border-bottom: 1px solid var(--ink); }
.blog-article-header .display { max-width: 13ch; margin-top: 26px; }
.blog-article-header .lead { margin-top: 24px; }
.blog-demo-label { display: inline-flex; margin-top: 22px; padding: 7px 10px; color: var(--food-deep); background: #fff0cd; border: 1px solid #d9a235; font-size: .76rem; font-weight: 800; }
.blog-article-body { max-width: 72ch; padding-top: 34px; }
.blog-article-body h2 { margin: 42px 0 14px; font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3.2rem); line-height: 1; }
.blog-article-body p { margin: 0 0 20px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.blog-article-body .btn { margin-top: 26px; }

/* Portada y bloques previos a Soluciones más compactos. */
.hero-refined .display { max-width: 14ch; }
.hero-promise { max-width: 33ch; margin: 20px 0 0; font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 700; line-height: 1.3; }
.supports-overview + .section-dark { padding-block: clamp(60px, 7vw, 96px); }
.supports-overview + .section-dark .heading-grid { margin-bottom: 0; }
.process-grid { margin-top: 42px; }
.process-step { min-height: 190px; padding-block: 22px; }
.process-step h3 { margin-top: 30px; }

/* Preguntas provisionales, sin afirmar información comercial no validada. */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: clamp(44px, 8vw, 112px); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header) + 28px); }
.faq-pending { max-width: 42ch; margin: 28px 0 0; padding: 14px 16px; color: var(--food-deep); background: #fff0cd; border: 1px solid #d9a235; font-size: .82rem; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { position: relative; padding: 24px 52px 24px 0; font-family: var(--display); font-size: clamp(1.55rem, 2.4vw, 2.25rem); font-weight: 700; line-height: 1.08; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after { content: ""; position: absolute; top: 50%; right: 8px; width: 18px; height: 2px; background: currentColor; transform: translateY(-50%); transition: transform .22s ease-out; }
.faq-list summary::after { transform: translateY(-50%) rotate(90deg); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(0); }
.faq-list summary:hover { color: var(--cobalt); }
.faq-list summary:focus-visible { outline: 3px solid var(--focus); outline-offset: 5px; }
.faq-list details p { margin: 0; padding: 0 52px 24px 0; color: var(--muted); }

@media (max-width: 1160px) and (min-width: 921px) {
  .nav-shell { gap: 13px; }
  .brand-logo { width: 96px; }
  .nav-links { gap: 11px; }
  .nav-links a { font-size: .77rem; }
  .cart-link { padding-inline: 10px; }
}

@media (max-width: 920px) {
  :root { --header: 84px; }
  .brand-logo { width: 90px; height: 70px; }
  .nav-links { align-content: start; justify-items: stretch; padding-top: 22px; }
  .mobile-menu-motif { display: block; width: 86px; height: 58px; margin: 0 0 10px; object-fit: contain; object-position: left center; }
  .nav-links > a,
  .nav-solutions-menu > .nav-menu-row { border-bottom: 1px solid var(--line); }
  .nav-solutions-menu > .nav-menu-row > a { width: 100%; padding: 14px 0; font-family: var(--display); font-size: 2.1rem; line-height: 1; text-decoration: none; }
  .nav-solutions-menu > .nav-menu-row > a::after { display: none; }
  .nav-solutions-menu > .nav-menu-row > .submenu-toggle { display: none; }
  .solutions-flyout,
  .subsector-flyout { position: static; width: 100%; border: 0; }
  .solutions-flyout { display: block; padding: 8px 0 12px; background: var(--paper); border-bottom: 1px solid var(--line-dark); }
  .solutions-flyout::before,
  .subsector-flyout::before { display: none; }
  .subsector-flyout { padding: 3px 0 10px 16px; background: var(--paper); }
  .nav-solutions-menu:hover > .solutions-flyout,
  .nav-solutions-menu:focus-within > .solutions-flyout,
  .sector-menu-item:hover > .subsector-flyout,
  .sector-menu-item:focus-within > .subsector-flyout { display: none; }
  .nav-solutions-menu > .solutions-flyout,
  .nav-solutions-menu > .solutions-flyout.is-open {
    display: block !important;
  }
  .nav-solutions-menu > .solutions-flyout.is-open,
  .sector-menu-item > .subsector-flyout.is-open { display: block; }
  .sector-menu-item { border-top: 0; }
  .sector-menu-item + .sector-menu-item { margin-top: 6px; border-top: 0; }
  .sector-menu-item > .nav-menu-row { min-height: 56px; padding-inline: 10px 4px; }
  .sector-menu-item > .nav-menu-row > a { padding: 13px 8px; color: inherit; font-family: var(--body); font-size: .92rem; }
  .sector-menu-item > .nav-menu-row > a:hover,
  .sector-menu-item > .nav-menu-row > a:focus-visible { color: inherit; background: rgba(255,255,255,.18); }
  .sector-menu-food { color: var(--food-deep); background: var(--food); }
  .sector-menu-fashion { color: var(--white); background: var(--fashion); }
  .sector-menu-ecommerce { color: var(--white); background: var(--ecommerce); }
  .sector-menu-item > .nav-menu-row > .submenu-toggle { width: 48px; height: 48px; color: inherit; }
  .sector-menu-item > .nav-menu-row > .submenu-toggle:hover { color: inherit; background: rgba(255,255,255,.18); }
  .subsector-flyout { padding: 5px 10px 12px; background: var(--paper); }
  .subsector-flyout a { min-height: 44px; padding: 12px 8px; color: var(--ink); font-size: .8rem; border-bottom: 1px solid var(--line); }
  .mobile-menu-social { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 20px; }
  .menu-social-link { min-height: 48px; display: grid; place-items: center; color: var(--muted); border: 1px solid var(--line); }
  .menu-social-link svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .menu-social-link[aria-disabled="true"] { cursor: not-allowed; opacity: .66; }
  .blog-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .header-account-link { padding: 9px 11px; font-size: .76rem; }
}

@media (max-width: 680px) {
  .display { font-size: clamp(3rem, 15vw, 4.75rem); line-height: .95; }
  .display-medium { font-size: clamp(2.65rem, 13vw, 4rem); line-height: .98; }
  .display-small { font-size: clamp(2.35rem, 11vw, 3.4rem); line-height: 1; }
  .heading-grid { gap: 22px; margin-bottom: 38px; align-items: start; }
  .heading-grid .lead { margin-top: 0; }
  .hero-lockup-large { width: min(68%, 230px); margin-bottom: 24px; }
  .hero-refined .hero-copy { padding-block: 40px 24px; }
  .hero-refined .display { max-width: none; font-size: clamp(2.75rem, 11.5vw, 3.8rem); line-height: .96; }
  .hero-promise { margin-top: 18px; font-size: 1.13rem; }
  .supports-overview { padding-block: 52px; }
  .supports-overview + .section-dark { padding-block: 52px; }
  .supports-overview + .section-dark .heading-grid { gap: 18px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 30px; }
  .process-step,
  .process-step + .process-step { min-height: 0; padding: 18px 14px; border-top: 0; border-right: 0; }
  .process-step:nth-child(odd) { padding-left: 0; border-right: 1px solid rgba(255,255,255,.25); }
  .process-step:nth-child(even) { padding-right: 0; }
  .process-step:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.25); }
  .process-step h3 { margin-top: 18px; font-size: 1.5rem; line-height: 1.02; }
  .process-step p { margin-top: 10px; font-size: .76rem; line-height: 1.45; }
  .faq-section { padding-block: 58px; }
  .faq-layout { gap: 34px; }
  .faq-pending { margin-top: 20px; }
  .faq-list summary { padding-block: 19px; padding-right: 42px; font-size: 1.55rem; }
  .faq-list details p { padding-right: 38px; padding-bottom: 19px; font-size: .88rem; }
  .access-panel { padding: 42px 22px 58px; }
  .access-box h1, .access-box h2 { font-size: clamp(3rem, 14vw, 4.4rem); overflow-wrap: normal; }
  .access-mode-tabs { margin-bottom: 24px; }
  .blog-grid { margin-top: 34px; }
  .blog-card-copy { padding: 22px; }
  .blog-article-body p { font-size: 1rem; }

  .commerce-hero { padding-block: 42px; }
  .commerce-hero-grid { gap: 22px; }
  .commerce-hero .breadcrumbs { margin-bottom: 20px; }
  .commerce-hero .lead { margin-top: 16px; }
  .commerce-step { min-height: 0; flex-direction: row; align-items: center; gap: 14px; padding: 16px 18px; }
  .commerce-step strong { font-size: 2rem; }
  .commerce-step span { text-align: right; }
  .commerce-hero + .section { padding-block: 42px 56px; }
  .cart-layout { gap: 24px; }
  .table-scroll { overflow: visible; }
  .cart-table { display: block; min-width: 0; }
  .cart-table thead { display: none; }
  .cart-table tbody { display: block; }
  .cart-table tr { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px 18px; padding: 16px 0; border-bottom: 1px solid var(--ink); }
  .cart-table td,
  .cart-table th,
  .cart-table td:first-child { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 12px; padding: 0; border: 0; text-align: left; }
  .cart-table td:first-child { grid-column: 1 / -1; justify-content: flex-start; }
  .cart-table td::before { content: attr(data-label); color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .cart-table td:first-child::before,
  .cart-table td:last-child::before { display: none; }
  .cart-product { grid-template-columns: 64px minmax(0, 1fr); gap: 12px; width: 100%; }
  .cart-product-reserve { width: 64px; }
  .cart-product-reserve span { font-size: .72rem; }
  .cart-product strong { font-size: 1.35rem; line-height: 1.05; }
  .cart-product small { margin-top: 5px; font-size: .63rem; overflow-wrap: anywhere; }
  .cart-quantity { min-width: 116px; padding: 9px 10px; }
  .order-summary,
  .checkout-summary { padding: 22px; }
  .order-summary h2,
  .checkout-summary h2 { font-size: 2.25rem; }
  .order-summary dl,
  .checkout-summary dl,
  .checkout-items { margin-top: 18px; }
  .order-summary dl div,
  .checkout-summary dl div,
  .checkout-items li { padding-block: 12px; }
  .order-total dd { font-size: 2rem; }
  .checkout-layout { gap: 28px; }
  .checkout-form { gap: 32px; }
  .checkout-field-grid { gap: 12px; margin-top: 18px; }
  .payment-section { padding-top: 32px; }
  .payment-options { gap: 9px; margin-top: 18px; }
  .payment-choice { padding: 14px; }
  .payment-panel { margin-top: 12px; padding: 18px; }
  .complete-order { min-height: 52px; }
  .success-dialog { padding: 26px 20px; }
}

@media (max-width: 360px) {
  .nav-shell { width: calc(100% - 16px); gap: 4px; }
  .brand-logo { width: 60px; height: 62px; }
  .header-account-link { max-width: 78px; padding: 7px 8px; font-size: .66rem; overflow: hidden; text-overflow: ellipsis; }
  .cart-link { min-height: 42px; gap: 4px; padding: 6px 7px; }
  .cart-link svg { width: 18px; height: 18px; }
  .cart-count { min-width: 20px; height: 20px; padding-inline: 4px; }
  .menu-toggle { width: 42px; height: 42px; }
  .menu-toggle svg { width: 21px; }
}

  .unified-app main { min-height: 60vh; }
  .unified-app .spa-route[aria-busy="true"] { opacity: .72; }
  .unified-app .nav-links a[aria-current="page"] { color: var(--cobalt); }
  .unified-app .spa-back { margin-top: 28px; }
  
.motion-ready [data-motion="left"] { clip-path: none; transform: translate3d(-52px,18px,0); }
.motion-ready [data-motion="right"] { clip-path: none; transform: translate3d(52px,18px,0); }
.motion-ready [data-motion="media-left"] { clip-path: inset(0 14% 0 0); transform: translate3d(-46px,24px,0) scale(.98); }
.motion-ready [data-motion="media-right"] { clip-path: inset(0 0 0 14%); transform: translate3d(46px,24px,0) scale(.98); }
.motion-ready [data-motion="left"].is-visible,
.motion-ready [data-motion="right"].is-visible,
.motion-ready [data-motion="media-left"].is-visible,
.motion-ready [data-motion="media-right"].is-visible { clip-path: inset(-12% -6% -18% -6%); transform: translate3d(0,0,0) scale(1); }
html, body { overflow-x: clip; }

.hero-video .hero-lockup-large, .hero-video-inner .hero-lockup-large { filter: brightness(0) invert(1) !important; }

.contact-map { margin-top: 26px; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(17,19,24,.14); }
.contact-map iframe { display: block; width: 100%; border: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); color: #fff; transition: background .18s, border-color .18s, transform .18s; }
.footer-social a:hover { background: var(--cobalt); border-color: var(--cobalt); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }

/* ===== Configurador de personalización ===== */
.pers-config { padding-block: clamp(40px, 6vw, 80px); background: var(--white); }
.pers-config .shell { max-width: 1180px; }
.pers-config-head { margin-bottom: 28px; }
.pers-config-head h2 { margin-bottom: 8px; }
.pers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .pers-grid { grid-template-columns: 1fr; } }
/* Vista previa */
.pers-preview { position: sticky; top: 90px; }
.pers-canvas { position: relative; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; background: #f4f4f2; display: grid; place-items: center; box-shadow: 0 12px 34px rgba(17,19,24,.10); }
.pers-canvas img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.pers-swatch-badge { position: absolute; left: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.92); padding: 7px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; box-shadow: 0 4px 14px rgba(17,19,24,.14); }
.pers-swatch-badge i { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); }
.pers-price-tag { position: absolute; right: 16px; top: 16px; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 12px; text-align: right; box-shadow: 0 6px 18px rgba(17,19,24,.24); }
.pers-price-tag strong { display: block; font-family: var(--display); font-size: 1.5rem; line-height: 1; }
.pers-price-tag span { font-size: .72rem; opacity: .8; }
.pers-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.pers-thumb { width: 62px; height: 62px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; cursor: pointer; background: #f4f4f2; padding: 0; }
.pers-thumb.is-active { border-color: var(--cobalt); }
.pers-thumb img { width: 100%; height: 100%; object-fit: cover; }
/* Panel de opciones */
.pers-panel { display: grid; gap: 22px; }
.pers-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.pers-tag-best { background: #eef1ff; color: var(--cobalt); font-size: .72rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; letter-spacing: .02em; }
.pers-desc { color: var(--muted); max-width: 52ch; }
.pers-field > label, .pers-field-label { display: block; font-weight: 800; font-size: .82rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 10px; }
.pers-field-label .muted { color: var(--muted); font-weight: 600; text-transform: none; letter-spacing: 0; margin-left: 6px; }
.pers-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.pers-opt { border: 1px solid var(--line); background: #fff; border-radius: 10px; padding: 12px 16px; font-weight: 700; font-size: .9rem; cursor: pointer; transition: border-color .15s, background .15s; }
.pers-opt:hover { border-color: var(--ink); }
.pers-opt.is-active { border-color: var(--cobalt); background: #eef1ff; color: var(--cobalt); }
.pers-opt small { display: block; font-weight: 500; color: var(--muted); font-size: .74rem; margin-top: 2px; }
.pers-opt.is-active small { color: var(--cobalt); }
/* Selector de color */
.pers-colors { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.pers-color-dot { width: 34px; height: 34px; border-radius: 50%; cursor: pointer; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); transition: transform .12s, box-shadow .12s; }
.pers-color-dot.is-active { box-shadow: 0 0 0 2px var(--cobalt); transform: scale(1.08); }
.pers-color-custom { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pers-color-custom input[type=color] { width: 44px; height: 34px; border: 1px solid var(--line); border-radius: 8px; padding: 2px; cursor: pointer; background: #fff; }
.pers-hex { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.pers-hex span { padding: 0 4px 0 10px; color: var(--muted); font-weight: 700; }
.pers-hex input { border: 0; padding: 8px 10px 8px 2px; width: 90px; font-family: monospace; font-size: .95rem; text-transform: uppercase; outline: none; }
/* Cantidad */
.pers-qty-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pers-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.pers-qty button { border: 0; background: #f4f4f2; width: 42px; height: 44px; font-size: 1.3rem; cursor: pointer; color: var(--ink); }
.pers-qty button:hover { background: #e7e7e4; }
.pers-qty input { border: 0; width: 90px; text-align: center; font-size: 1rem; font-weight: 700; outline: none; }
.pers-unit { color: var(--muted); font-size: .86rem; }
.pers-qty-presets { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.pers-qty-preset { border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 6px 12px; font-size: .82rem; font-weight: 700; cursor: pointer; }
.pers-qty-preset.is-active { border-color: var(--cobalt); background: #eef1ff; color: var(--cobalt); }
/* Subir logo / diseño */
.pers-upload-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .pers-upload-row { grid-template-columns: 1fr; } }
.pers-upload { border: 1.5px dashed var(--line); border-radius: 12px; padding: 20px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; }
.pers-upload:hover { border-color: var(--cobalt); background: #fafbff; }
.pers-upload svg { width: 26px; height: 26px; margin-bottom: 8px; color: var(--cobalt); }
.pers-upload strong { display: block; font-size: .9rem; }
.pers-upload span { font-size: .76rem; color: var(--muted); }
.pers-logo-opts { margin-top: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 10px; background: #fafafa; display: none; }
.pers-logo-opts.is-open { display: block; }
.pers-logo-opts p { font-weight: 800; font-size: .8rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .03em; }
/* Entrega + resumen */
.pers-delivery { display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: #f4f7f4; border-radius: 10px; font-size: .88rem; }
.pers-delivery svg { width: 20px; height: 20px; color: #2f7d4f; flex-shrink: 0; }
.pers-cta { display: grid; gap: 10px; margin-top: 4px; }
.pers-cta .btn-cart { font-size: 1.05rem; padding: 16px; }
.pers-cta-note { font-size: .78rem; color: var(--muted); text-align: center; }
.btn-cart { background: var(--cobalt); color: #fff; border: 0; border-radius: 12px; font-weight: 800; cursor: pointer; transition: background .15s, transform .1s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-cart:hover { background: #1a34b0; }
.btn-cart:active { transform: scale(.99); }
.btn-cart svg { width: 20px; height: 20px; }
.pers-toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 12px; font-weight: 700; box-shadow: 0 10px 30px rgba(17,19,24,.3); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 200; }
.pers-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

.pers-price-panel { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 2px 0 4px; }
.pers-price-panel strong { font-family: var(--display); font-size: 2rem; line-height: 1; color: var(--ink); }
.pers-price-vat { font-size: .78rem; color: var(--muted); font-weight: 600; }
.pers-price-per { font-size: .92rem; color: var(--muted); font-weight: 700; }
@media (min-width: 901px) { .pers-preview { position: sticky; top: 90px; align-self: start; } }

.pers-color-trigger { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 7px 12px; font-weight: 700; font-size: .86rem; cursor: pointer; }
.pers-color-trigger:hover { border-color: var(--ink); }
.pers-color-trigger i { width: 18px; height: 18px; border-radius: 4px; border: 1px solid rgba(0,0,0,.15); }
.pers-picker { display: none; margin-top: 12px; width: 240px; }
.pers-picker.is-open { display: block; }
.pers-picker-sv { position: relative; width: 240px; height: 150px; border-radius: 8px; cursor: crosshair; background: hsl(90, 100%, 50%); overflow: hidden; }
.pers-picker-sv-white { position: absolute; inset: 0; background: linear-gradient(to right, #fff, rgba(255,255,255,0)); }
.pers-picker-sv-black { position: absolute; inset: 0; background: linear-gradient(to top, #000, rgba(0,0,0,0)); }
.pers-picker-cursor { position: absolute; width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.4); transform: translate(-50%,-50%); pointer-events: none; }
.pers-picker-hue { position: relative; width: 240px; height: 16px; margin-top: 10px; border-radius: 8px; cursor: pointer; background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%); }
.pers-picker-hue-cursor { position: absolute; top: 50%; width: 6px; height: 22px; border-radius: 3px; border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.4); transform: translate(-50%,-50%); pointer-events: none; }

@media (max-width: 900px) {
  .pers-preview { position: sticky; top: 56px; z-index: 8; background: var(--white); padding: 8px 0 12px; margin-bottom: 4px; box-shadow: 0 6px 12px -6px rgba(17,19,24,.15); }
  .pers-canvas { aspect-ratio: 16/10; max-height: 210px; }
  .pers-thumbs { display: none; }
  .pers-preview::after { content: attr(data-title); display: block; font-family: var(--display); font-size: 1.05rem; font-weight: 800; margin-top: 8px; color: var(--ink); line-height: 1.15; }
}

/* UX: evitar título duplicado y limpiar preview en móvil */
@media (max-width: 900px) {
  #persTitle { display: none; }
  .pers-tag-best { display: none; }
  .pers-swatch-badge { display: none; }
  .pers-preview { padding-top: 6px; box-shadow: 0 2px 0 rgba(17,19,24,.04); }
  .pers-config-head { margin-bottom: 18px; }
  .pers-config-head h2 { font-size: 1.9rem; }
  .pers-config-head .lead { font-size: .95rem; }
}
@media (min-width: 901px) {
  .pers-preview::after { display: none; }
}
/* espaciado más limpio entre campos */
.pers-panel { gap: 20px; }
.pers-desc { font-size: .92rem; line-height: 1.5; }

/* Ajuste comercial final: catálogo, fichas y solicitud de presupuesto. */
.hero-overlay { background: rgba(10, 12, 17, .68); }
.hero-video-inner { max-width: 920px; margin-left: max(24px, calc((100vw - var(--max)) / 2)); margin-right: 24px; }
.hero-video-inner .display { max-width: 12.5ch; text-wrap: balance; }
.hero-video-inner .manufacturer-line { max-width: 64ch; }
.hero-video-inner .btn-outline { color: var(--white); border-color: var(--white); }
.hero-video-inner .btn-outline:hover { color: var(--ink); background: var(--white); }
.hero-video-inner .btn:focus-visible { outline-color: var(--white); }
.whatsapp-float { position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); z-index: 25; display: grid; place-items: center; width: 52px; height: 52px; color: var(--white); background: var(--whatsapp); border-radius: 50%; box-shadow: 0 4px 16px rgba(17,19,24,.2); }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
.whatsapp-float:hover { background: color-mix(in srgb, var(--whatsapp) 72%, var(--ink)); }
body.menu-open .whatsapp-float { visibility: hidden; }
.site-footer { padding-bottom: 84px; }
.process-step h3 { margin-top: 0; }
.solutions-hero-grid { grid-template-columns: minmax(0, 860px); }
.solutions-directory-hero .lead { max-width: 62ch; }

.solution-filter-shell { padding-bottom: clamp(38px, 6vw, 74px); }
.solution-filters {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--ink);
}
.solution-filters label { display: grid; gap: 8px; }
.solution-filters label > span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.solution-filters select { width: 100%; min-height: 52px; padding: 12px 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line-dark); border-radius: 8px; }
.solution-filters select:focus { border-color: var(--cobalt); outline: 3px solid var(--cobalt-pale); }
.solution-filter-count { min-width: 175px; margin: 0; padding-bottom: 13px; color: var(--cobalt-deep); font-size: .8rem; font-weight: 800; text-align: right; }
.solution-empty { padding: 0 0 clamp(48px, 7vw, 90px); }
.solution-empty .shell { padding: clamp(28px, 5vw, 60px); background: var(--cobalt-pale); border: 1px solid #aeb9f4; }
.solution-empty h2 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: .95; }
.solution-empty p { color: var(--muted); }

.product-gallery { position: sticky; top: calc(var(--header) + 24px); }
.thumb { min-height: 0; aspect-ratio: 1; padding: 0; overflow: hidden; cursor: pointer; transition: border-color .18s ease, transform .18s ease; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { border-color: var(--cobalt); transform: translateY(-2px); }
.thumb.is-active { border: 3px solid var(--cobalt); }
.product-main-reserve { min-height: 620px; aspect-ratio: 4 / 5; }
.product-main-reserve img { object-fit: cover; }
.product-price-quote { display: grid; grid-template-columns: auto 1fr; align-items: end; column-gap: 16px; }
.product-price-quote strong { font-size: clamp(2.3rem, 4vw, 3.35rem); }
.product-price-quote small { grid-column: 1 / -1; max-width: 52ch; margin-top: 9px; color: var(--muted); }
.product-spec-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 34px 0 0; border-top: 1px solid var(--line-dark); }
.product-spec-grid div { padding: 15px 14px 15px 0; border-bottom: 1px solid var(--line); }
.product-spec-grid div:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line); }
.product-spec-grid dt { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-spec-grid dd { margin: 5px 0 0; font-weight: 700; }
.product-options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.product-options-grid label { display: grid; align-content: start; gap: 8px; min-width: 0; }
.product-options-grid label > span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-options-grid select,
.product-options-grid input,
.product-options-grid textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid var(--line-dark); border-radius: 8px; }
.product-options-grid textarea { resize: vertical; }
.product-options-grid small { color: var(--muted); font-size: .7rem; }
.product-purchase .catalog-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.product-feedback { padding-top: 4px; }

.cart-product-options { display: flex; flex-wrap: wrap; gap: 5px 10px; margin-top: 7px; }
.cart-product-options span { color: var(--muted); font-size: .69rem; }
.cart-product-options span + span::before { content: "/"; margin-right: 10px; color: var(--line-dark); }
.quote-pending { white-space: nowrap; font-size: .82rem; }
.clear-cart { width: fit-content; margin: 18px 0 0 auto; padding: 5px 0; color: var(--muted); background: transparent; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; }
.clear-cart:hover { color: var(--ink); }
.consent-field { display: flex; align-items: flex-start; gap: 12px; padding: 15px; background: var(--white); border: 1px solid var(--line); cursor: pointer; }
.consent-field input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--cobalt); }
.consent-field span { color: var(--muted); font-size: .8rem; }

@media (max-width: 1100px) {
  .solution-filters { grid-template-columns: 1fr 1fr; }
  .solution-filter-count { grid-column: 1 / -1; min-width: 0; padding: 0; text-align: left; }
  .product-gallery { position: static; }
}

@media (max-width: 680px) {
  .hero-video { min-height: calc(100svh - var(--header)); align-items: end; }
  .hero-video-inner { width: min(calc(100% - 32px), var(--max)); max-width: none; margin-inline: auto; padding-block: 34px 42px; }
  .hero-video-inner .display { max-width: none; font-size: clamp(2.65rem, 11vw, 3.65rem); }
  .hero-video-inner .button-row { gap: 9px; }
  .hero-video-inner .button-row .btn { width: 100%; }
  .solution-filters { grid-template-columns: 1fr; padding: 18px; }
  .solution-filter-count { grid-column: auto; }
  .product-gallery { grid-template-columns: 1fr; }
  .product-main-reserve { min-height: 0; aspect-ratio: 4 / 5; order: 1; }
  .thumbs { grid-template-columns: repeat(4, 1fr); order: 2; }
  .product-options-grid,
  .product-spec-grid { grid-template-columns: 1fr; }
  .product-spec-grid div:nth-child(even) { padding-left: 0; border-left: 0; }
  .product-purchase .catalog-buttons { grid-template-columns: 1fr; }
  .cart-product-options { display: grid; gap: 2px; }
  .cart-product-options span + span::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .thumb { transition: none; }
  .thumb:hover { transform: none; }
}
