/* ============================================================
   NYC THEME — main.css (replica exacta del index.html)
   ============================================================ */

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

:root {
  --red:    #E8001D;
  --red-dk: #C0001A;
  --dark:   #080808;
  --dark2:  #111111;
  --white:  #FFFFFF;
  --off:    #F6F6F6;
  --border: #E8E8E8;
  --text:   #111111;
  --muted:  #666666;
  --light:  #F0F0F0;
  --nyc-fixed-header-offset: 72px;
}

html {
  scroll-behavior: auto;
  overflow-x: clip;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── LOADER ────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
#loader-logo { height: 70px; opacity: 0; }
.loader-bar-wrap { width: 220px; height: 2px; background: rgba(255,255,255,.1); overflow: hidden; }
#loader-bar { height: 100%; width: 0%; background: var(--red); }

/* ── NAV ───────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 500; padding: 1.4rem 4rem;
  display: flex; align-items: center; gap: 2rem;
  transition: padding .4s, background .4s, border-color .4s, backdrop-filter .4s;
}
.nav--hero  { background: transparent; border-bottom: 1px solid transparent; }
.nav--white {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--border); padding: .9rem 4rem;
}

/* Logo */
.nav-brand   { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo    { height: 52px; display: block; }

/* Menu centrado — ocupa todo el espacio disponible */
.nav-menu {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 2.8rem; list-style: none; margin: 0; padding: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-left: .15rem;
}
.nav-social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.94);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  transition: all .2s;
  text-decoration: none;
}
.nav-social-link svg { width: 18px; height: 18px; }
.nav-social-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.16);
}
.nav--white .nav-social-link {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,.96);
}
.nav--white .nav-social-link:hover {
  color: var(--red);
  border-color: rgba(232,0,29,.24);
  background: rgba(232,0,29,.05);
}
.nav-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .92rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; transition: color .2s;
}
.nav--hero  .nav-menu a { color: rgba(255,255,255,.75); }
.nav--white .nav-menu a { color: var(--muted); }
.nav--hero  .nav-menu a:hover { color: var(--white); }
.nav--white .nav-menu a:hover { color: var(--red); }

/* CTA button — extremo derecho */
.nav-cta-btn, .nav-cta {
  flex-shrink: 0;
  background: var(--red) !important; color: var(--white) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: .7rem 2rem; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .2s;
}
.nav-cta-btn:hover, .nav-cta:hover {
  background: var(--red-dk) !important; transform: translateY(-1px);
}
.nav--white .nav-cta-btn { box-shadow: 0 2px 12px rgba(232,0,29,.25); }
.nav-search { position: relative; }
.nav-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.nav-lang-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: 0 .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.82);
  transition: all .2s;
}
.nav-lang-link:hover {
  border-color: rgba(255,255,255,.72);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-lang-link.is-current {
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.nav-lang-flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,.22);
}
.nav-lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}
.nav-lang-code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
}
.nav--white .nav-lang-link {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,.84);
}
.nav--white .nav-lang-link:hover {
  border-color: rgba(232,0,29,.26);
  color: var(--red);
  background: rgba(232,0,29,.05);
}
.nav--white .nav-lang-link.is-current {
  border-color: rgba(232,0,29,.2);
  color: var(--red);
  background: rgba(232,0,29,.08);
}
.nav--white .nav-lang-flag {
  box-shadow: 0 0 0 1px rgba(17,17,17,.08);
}
.nav-search-toggle {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  transition: all .2s;
}
.nav-search-toggle svg { width: 18px; height: 18px; }
.nav--white .nav-search-toggle {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,.82);
}
.nav-search-toggle:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255,255,255,.12);
}
.nav--white .nav-search-toggle:hover { background: rgba(232,0,29,.05); }
.nav-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(420px, 70vw);
  padding: .8rem;
  border-radius: 14px;
  background: rgba(11,11,11,.94);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}
.nav--white .nav-search-panel {
  background: rgba(255,255,255,.98);
  border-color: var(--border);
}
.nav-search-form {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.nav-search-form input {
  flex: 1;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 0 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: .95rem;
}
.nav--white .nav-search-form input {
  border-color: var(--border);
  background: var(--white);
  color: var(--text);
}
.nav-search-form input::placeholder {
  color: rgba(255,255,255,.58);
}
.nav--white .nav-search-form input::placeholder { color: #8d8d8d; }
.nav-search-form button {
  height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-search-form button:hover { background: var(--red-dk); }

/* Hamburger — oculto en desktop, visible en mobile */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.nav--white .nav-hamburger span { background: var(--text); }

/* ── MEGA MENU ──────────────────────────── */
li.has-megamenu { position: relative; }

li.has-megamenu > a {
  display: inline-flex; align-items: center; gap: 5px;
}
li.has-megamenu > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .25s ease;
  flex-shrink: 0;
}
li.has-megamenu.is-open > a::after { transform: rotate(180deg); }

.mega-panel {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #0d0d0d;
  border-top: 2px solid var(--red);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.8rem 4rem 2rem;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.mega-cat {
  position: relative;
  display: block;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.mega-cat img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}

.mega-cat:hover img { transform: scale(1.08); }

.mega-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.3)  55%,
    rgba(0,0,0,.05) 100%
  );
  transition: background .3s;
}

.mega-cat:hover .mega-cat-overlay {
  background: linear-gradient(
    to top,
    rgba(232,0,29,.75) 0%,
    rgba(0,0,0,.2)     55%,
    rgba(0,0,0,.0)     100%
  );
}

.mega-cat-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .75rem .8rem;
  display: flex; flex-direction: column; gap: 2px;
}

.mega-cat-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .94rem; font-weight: 800;
  letter-spacing: .1em;
  color: #fff;
  line-height: 1.15;
}

.mega-cat-count {
  font-family: 'Barlow', sans-serif;
  font-size: .78rem; font-weight: 400;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}

.mega-cat-arrow {
  position: absolute;
  bottom: .75rem; right: .8rem;
  color: #fff;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s, transform .25s;
}

.mega-cat:hover .mega-cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── MOBILE DRAWER ───────────────────────── */
.nav-mobile {
  position: fixed; inset: 0 0 0 auto;
  width: min(360px, 100vw);
  background: #0d0d0d;
  z-index: 600;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}

.nav-mobile-brand img { height: 38px; display: block; }

.nav-mobile-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.7); padding: 6px;
  transition: color .2s;
}
.nav-mobile-close:hover { color: var(--red); }

.nav-mobile-body { flex: 1; padding: .5rem 0; }
.nav-mobile-search {
  display: flex;
  gap: .55rem;
  padding: 0 1.5rem 1rem;
}
.nav-mobile-search input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: var(--white);
  padding: 0 1rem;
  font-family: 'Barlow', sans-serif;
}
.nav-mobile-search button {
  height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-mobile-lang-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  padding: 0 1.5rem 1rem;
}
.nav-mobile-lang-switcher .nav-lang-link {
  min-height: 48px;
  justify-content: flex-start;
  padding: 0 .95rem;
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.82);
}
.nav-mobile-lang-switcher .nav-lang-link:hover {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
}
.nav-mobile-lang-switcher .nav-lang-link.is-current {
  border-color: rgba(232,0,29,.34);
  background: rgba(232,0,29,.12);
  color: var(--white);
}
.nav-mobile-lang-switcher .nav-lang-flag {
  width: 22px;
  height: 15px;
}
.nav-lang-name {
  font-size: .92rem;
  color: inherit;
}

.nav-mobile-menu {
  list-style: none; margin: 0; padding: .5rem 0;
}

.nav-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.05); }

.nav-mobile-menu a {
  display: block; padding: 1rem 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s, background .2s;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu .current-menu-item a { color: var(--red); }

/* Categories accordion */
.nav-mobile-cats-wrap {
  border-top: 1px solid rgba(255,255,255,.05);
}

.nav-mobile-cats-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.nav-mobile-cats-toggle:hover { color: var(--red); }

.nav-mobile-chevron { transition: transform .3s ease; }
.nav-mobile-cats-toggle[aria-expanded="true"] .nav-mobile-chevron {
  transform: rotate(180deg);
}

.nav-mobile-cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  padding: .8rem 1rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
}

.nav-mobile-cats-grid.is-open {
  max-height: 900px;
}

.nav-mobile-cat {
  position: relative;
  display: block;
  height: 110px;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
}

.nav-mobile-cat img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.nav-mobile-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.1)  70%
  );
}

.nav-mobile-cat-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .4rem .5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .08em;
  color: #fff;
  line-height: 1.2;
}

.nav-mobile-footer {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}

/* Overlay */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 599;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(2px);
  transition: opacity .35s;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── HERO ──────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 620px; max-height: 960px;
  overflow: hidden;
}

/* Each slide fills the hero */
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-start;
  /* padding-top: nav fijo + espacio visual — reducido para que todo quepa */
  padding-top: clamp(5.5rem, 12vh, 9rem);
  opacity: 0; z-index: 0;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }

.hero-slide-picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-slide-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.78;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(8,8,8,.5)  0%,
    rgba(8,8,8,.1)  40%,
    rgba(8,8,8,.75) 75%,
    rgba(8,8,8,.97) 100%);
  z-index: 1;
}
.hero-left {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.7) 0%, transparent 60%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 0 5rem; max-width: 100vw; }
.hero-eyebrow {
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1.2rem; opacity: 0;
}

/* Carousel bullets */
.hero-bullets {
  position: absolute; bottom: 4.5rem; left: 5rem;
  z-index: 10; display: flex; align-items: center; gap: 0.5rem;
}
.hero-bullet {
  width: 22px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.3); padding: 0;
  transition: background .3s, width .3s;
}
.hero-bullet.is-active { background: var(--red); width: 38px; }
.eyebrow-bar { width: 32px; height: 2px; background: var(--red); }
.eyebrow-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red);
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-weight: 900; line-height: 1;
  text-transform: uppercase; letter-spacing: .045em; color: var(--white);
}
.hero-title--left,
.hero-title--right { text-align: left; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; }
.hero-title .red  { color: var(--red); }
.hero-title .out  { -webkit-text-stroke: 2px rgba(255,255,255,.6); color: transparent; }
.hero-sub { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; opacity: 0; }
.hero-desc { font-size: 1.12rem; line-height: 1.62; color: rgba(255,255,255,.7); max-width: 500px; }
.hero-btns { display: flex; flex-direction: row; gap: 1rem; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 2.5rem; right: 5rem;
  z-index: 10; display: flex; align-items: center; gap: 1rem; opacity: 0;
}
.scroll-wheel {
  width: 24px; height: 40px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.3); position: relative;
}
.scroll-wheel::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); width: 3px; height: 8px;
  background: var(--red); border-radius: 2px;
  animation: sw 1.8s ease-in-out infinite;
}
@keyframes sw { 0%{opacity:1;top:6px} 80%{opacity:0;top:22px} 100%{opacity:0;top:22px} }
.scroll-text {
  font-family: 'Barlow Condensed', sans-serif; font-size: .65rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.35); writing-mode: vertical-rl;
}

/* ── BTNS ──────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s; white-space: nowrap;
}
.btn-red       { background: var(--red); color: var(--white); padding: .9rem 2.2rem; border-radius: 4px; }
.btn-red:hover { background: var(--red-dk); transform: translateY(-2px); }
.btn-outline-w { color: var(--white); border: 1px solid rgba(255,255,255,.35); padding: .9rem 2rem; border-radius: 4px; }
.btn-outline-w:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-white       { background: var(--white); color: var(--dark) !important; padding: .9rem 2.2rem; border-radius: 4px; }
.btn-white:hover { background: var(--off); }
.btn-outline-w2  { color: var(--white) !important; border: 1px solid rgba(255,255,255,.4); padding: .9rem 2rem; border-radius: 4px; }
.btn-outline-w2:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ── MARQUEE ───────────────────────── */
.marquee-wrap { background: var(--red); overflow: hidden; padding: 1.1rem 0; }
.marquee-track { display: flex; width: max-content; animation: mq 35s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.mq-item { display: flex; align-items: center; gap: 1.8rem; padding: 0 1.8rem; flex-shrink: 0; white-space: nowrap; }
.mq-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem;
  font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.95);
}
.mq-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); flex-shrink: 0; }

/* ── SECTION LAYOUT ────────────────── */
.s-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: .98rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: .9rem;
}
.s-label--white { color: rgba(255,255,255,.6); }
.s-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 900;
  line-height: 1; text-transform: uppercase; letter-spacing: .04em;
}
.s-title--white { color: var(--white); }
.s-title--red   { color: var(--red); }
.s-body { font-size: 1.26rem; line-height: 1.72; color: var(--muted); max-width: 500px; }
.s-body--white  { color: rgba(255,255,255,.55); }
.s-body--whi60  { color: rgba(255,255,255,.6); }

.reveal       { opacity: 0; transform: translateY(40px); }
.reveal-left  { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }

/* ── CATEGORIES (PINNED H-SCROLL) ─── */
.cats-section { position: relative; background: var(--white); }
.cats-intro {
  padding: 2.25rem 5rem 1rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem;
}
.cats-intro-r { display: flex; flex-direction: column; gap: 1.25rem; }
.drag-hint {
  display: flex; align-items: center; gap: .75rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.drag-arr { animation: arr 1.6s ease-in-out infinite; }
@keyframes arr { 0%,100%{transform:translateX(0);opacity:.4} 50%{transform:translateX(8px);opacity:1} }
.cats-controls { display: flex; align-items: center; gap: 1.25rem; }
.cats-prog { height: 1px; background: var(--border); position: relative; flex: 1; min-width: 120px; }
.cats-prog-bar { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--red); transition: width .1s; }
.cats-nav { display: flex; gap: .45rem; flex-shrink: 0; }
.cats-nav-btn {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid var(--red);
  background: var(--white); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .2s, background .2s, color .2s, transform .2s, box-shadow .2s;
  flex-shrink: 0;
  box-shadow: 0 14px 28px rgba(232,0,29,.14);
  font-size: 1.15rem;
}
.cats-nav-btn svg { display: block; }
.cats-nav-btn:hover:not(:disabled) { border-color: var(--red-dk); background: var(--red); color: #fff; transform: translateY(-1px); box-shadow: 0 16px 30px rgba(232,0,29,.22); }
.cats-nav-btn:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; background: rgba(255,255,255,.9); color: rgba(232,0,29,.45); border-color: rgba(232,0,29,.45); }
.cats-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  padding: .75rem 5rem 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.cats-wrapper::-webkit-scrollbar { display: none; }
.cats-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 5rem) / 4.5);
  gap: 1.25rem;
  width: max-content;
  min-width: 100%;
  padding-right: 5rem;
  will-change: transform;
}
.cat-card {
  min-width: 0; height: 510px;
  border-radius: 14px; overflow: hidden; position: relative; cursor: pointer;
  scroll-snap-align: start;
}
.cat-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.cat-card:hover .cat-card-img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,rgba(0,0,0,.94) 0%,rgba(0,0,0,.52) 45%,rgba(0,0,0,.16) 72%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  transition: background .4s;
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(0deg,rgba(0,0,0,.96) 0%,rgba(232,0,29,.18) 55%,rgba(0,0,0,.12) 80%);
}
.cat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem;
}
.cat-name { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; text-transform: uppercase; line-height: 1; letter-spacing: .035em; color: var(--white); }
.cat-desc { font-size: 1.12rem; color: rgba(255,255,255,.72); line-height: 1.48; margin-top: .6rem; max-width: 280px; }
.cat-link {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); transition: color .2s;
}
.cat-link::before { content: ''; width: 18px; height: 1px; background: var(--red); }
.cat-card:hover .cat-link { color: var(--white); }

/* ── QUIÉNES SOMOS ─────────────────── */
.qs-section {
  padding: 2rem 5rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.qs-title em { color: var(--red); font-style: italic; }
.qs-body { font-size: 1.26rem; line-height: 1.75; color: var(--muted); margin-top: 1.5rem; }
.qs-founded {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.qs-year {
  font-family: 'Barlow Condensed', sans-serif; font-size: 5rem; font-weight: 900;
  line-height: 1; color: var(--red); flex-shrink: 0;
}
.qs-found-txt { font-size: 1.0rem; line-height: 1.6; color: var(--muted); }
.qs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 310px 200px; gap: .9rem;
}
.qs-img { border-radius: 12px; overflow: hidden; }
.qs-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qs-img:nth-child(2) { grid-column: 2/3; grid-row: 1/3; }

/* ── STATS (RED) ───────────────────── */
.stats-section {
  background: var(--red); padding: 1.75rem 5rem;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.stat { border-left: 1px solid rgba(255,255,255,.2); padding-left: 2rem; }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 4.5rem; font-weight: 900;
  line-height: 1; color: var(--white);
}
.stat-lbl { font-size: 1.1rem; color: rgba(255,255,255,.9); margin-top: .5rem; line-height: 1.4; }

/* ── CAPACIDAD INDUSTRIAL (DARK) ───── */
.cap-section {
  background:
    linear-gradient(to right, #111111 48%, rgba(17,17,17,.58) 100%),
    url('../images/scenes/explorer.jpg') center right / cover no-repeat;
  padding: 2.75rem 5rem;
}
.cap-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.cap-item {
  position: relative;
  padding: 2.5rem 1.75rem;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; transition: border-color .3s, background .3s;
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(12,12,12,.72);
}
.cap-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--cap-bg, none) center / cover no-repeat;
  transform: scale(1);
  transition: transform .45s ease;
}
.cap-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8,8,8,.26) 0%, rgba(10,10,10,.56) 34%, rgba(10,10,10,.92) 100%);
}
.cap-item:hover { border-color: rgba(232,0,29,.3); background: rgba(232,0,29,.04); }
.cap-item:hover::before { transform: scale(1.05); }
.cap-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem;
}
.cap-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800;
  text-transform: uppercase; line-height: 1.1; color: var(--white); margin-bottom: .75rem;
}
.cap-desc { font-size: 1.15rem; color: rgba(255,255,255,.55); line-height: 1.58; }
.cap-icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: rgba(232,0,29,.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.cap-icon svg { width: 26px; height: 26px; fill: var(--red); }

/* ── IN-MOLD (WHITE) ───────────────── */
.inmold-section { padding: 2.75rem 5rem; background: var(--white); }
.inmold-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.inmold-left { display: flex; flex-direction: column; align-items: flex-start; }
.inmold-lead { font-size: 1.1rem; line-height: 1.75; color: var(--muted); margin-bottom: 1rem; }
.inmold-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .6rem 1.2rem; border-radius: 4px;
  border: 1.5px solid var(--red);
  font-family: 'Barlow Condensed', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  text-decoration: none; transition: all .2s;
}
.inmold-badge:hover { background: var(--red); color: var(--white); }

/* ── Feature list (below CTA) ── */
.inmold-features {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .85rem 2rem;
  border-top: 1px solid var(--border); padding-top: .9rem; width: 100%;
}
.inmold-feat { display: flex; align-items: flex-start; gap: .7rem; }
.feat-dot {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  margin-top: .15rem; border: 2px solid var(--border);
}
.feat-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.02rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .02em; display: block; color: var(--dark);
}
.feat-desc { font-size: .96rem; color: var(--muted); line-height: 1.5; display: block; margin-top: .18rem; }
.inmold-footnote {
  width: 100%;
  margin: 1rem 0 0;
  font-size: .96rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Image column ── */
.inmold-img-col {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 4/5;
}
.inmold-img-col img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Keep old .finish-card/.finish-dot/.finish-name/.finish-desc for nos-inmold block */
.finish-card {
  padding: 1.75rem 1.5rem; border: 1px solid var(--border); border-radius: 10px;
  transition: border-color .25s, transform .25s;
}
.finish-card:hover { border-color: var(--red); transform: translateY(-3px); }
.finish-dot {
  width: 32px; height: 32px; border-radius: 50%; margin-bottom: 1rem; border: 2px solid var(--border);
}
.finish-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
}
.finish-desc { font-size: 1.05rem; color: var(--muted); margin-top: .3rem; line-height: 1.4; }

/* ── INDUSTRIAS (OFF-WHITE) ────────── */
.ind-section { padding: 2.5rem 5rem; background: var(--off); }
.ind-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; margin-top: 4rem; width: 100%; }
.ind-card {
  padding: 2rem 1.75rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  transition: border-color .25s, box-shadow .25s;
  min-width: 0;
  width: 100%;
}
.ind-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(232,0,29,.08); }
.ind-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(232,0,29,.06);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.ind-icon svg {
  width: 30px; height: 30px; fill: none; stroke: var(--red);
  stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round;
}
.ind-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em;
}
.ind-desc { font-size: 1.14rem; color: var(--muted); margin-top: .4rem; line-height: 1.48; }

/* ── CLIENTES (WHITE) ──────────────── */
.clients-section { padding: 2.25rem 5rem; background: var(--white); }
.clients-header { text-align: center; margin-bottom: 2rem; }
.clients-marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  position: relative;
  isolation: isolate;
}
.clients-marquee-wrap::before,
.clients-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.clients-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.92) 35%, rgba(255,255,255,0) 100%);
}
.clients-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.92) 35%, rgba(255,255,255,0) 100%);
}
.clients-track { display: flex; width: max-content; animation: mq 42s linear infinite; }
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  flex-shrink: 0; padding: 0 3rem;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
}
.client-logo:last-child { border-right: none; }
.client-logo-img {
  max-width: 180px; max-height: 72px;
  width: auto; height: auto; object-fit: contain;
  filter: none;
  opacity: .9;
  transition: opacity .25s ease, transform .25s ease;
}
.client-logo:hover .client-logo-img {
  opacity: 1;
  transform: translateY(-1px);
}
.client-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .05em; color: #C0C0C0; white-space: nowrap;
  transition: color .2s;
}
.client-logo:hover .client-name { color: var(--red); }

/* ── BLOG (OFF-WHITE) ──────────────── */
.blog-section { padding: 2.25rem 5rem; background: #f5f2ed; }
.blog-archive-hero {
  min-height: 520px;
}
.blog-archive-hero .wp-block-cover__inner-container {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.blog-archive-hero-inner {
  width: min(calc(100% - 10rem), 1440px);
  margin: 0 auto;
  padding: 0 0 3rem;
  box-sizing: border-box;
}
.blog-archive-hero .cat-hero-content.blog-archive-hero-inner {
  width: min(calc(100% - 10rem), 1440px);
  margin: 0 auto;
  padding: 0 0 3rem;
}
.blog-archive-hero-inner > .wp-block-group {
  margin-left: 0 !important;
  margin-right: auto !important;
}
.blog-archive-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.35;
}
.blog-archive-breadcrumb p {
  margin: 0;
  color: rgba(255,255,255,.72);
}
.blog-archive-breadcrumb a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
}
.blog-archive-breadcrumb a:hover {
  color: var(--white);
}
.blog-archive-hero-copy {
  width: 64%;
  max-width: 1220px;
  margin-left: 0 !important;
  margin-right: auto !important;
}
.blog-archive-hero-copy > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.blog-archive-hero .cat-hero-title {
  width: 100%;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .92;
  color: var(--white);
}
.blog-archive-hero .cat-hero-desc {
  display: block;
  width: 100%;
  max-width: 62ch;
  margin: 1rem 0 0 0;
  text-indent: 0;
  padding-left: 0;
  color: rgba(255,255,255,.78);
  font-size: 1.14rem;
  line-height: 1.72;
}
.blog-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.blog-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1rem;
}
.blog-link,
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.blog-card-media {
  display: block;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-card-label {
  display: block;
  margin-bottom: .65rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}
.blog-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  margin: 0 0 .8rem;
}
.blog-card-title a { color: var(--text); text-decoration: none; }
.blog-card-title a:hover { color: var(--red); }
.blog-card-excerpt {
  font-size: 1.06rem;
  line-height: 1.68;
  color: var(--muted);
  margin-bottom: 1rem;
}
.blog-archive-section { background: #f7f4ef; }
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.08);
  z-index: 760;
  pointer-events: none;
}
.reading-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(226, 12, 23, .45);
}
.admin-bar .reading-progress { top: 32px; }
.post-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin: .35rem 0 1.1rem;
}
.post-hero-chip,
.post-hero-meta-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.post-hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .35rem .8rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.08);
}
.post-hero-chip:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.14);
}
.post-hero-meta-item { color: rgba(255,255,255,.75); }
.post-hero-meta-sep {
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,.22);
}
.blog-pagination {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.blog-pagination a {
  color: var(--red);
  text-decoration: none;
}
.blog-pagination a:hover { color: var(--text); }
.blog-pagination .wp-block-query-pagination-previous,
.blog-pagination .wp-block-query-pagination-next {
  color: var(--red);
  text-decoration: none;
}
.blog-pagination .wp-block-query-pagination-previous:hover,
.blog-pagination .wp-block-query-pagination-next:hover {
  color: var(--text);
}
.blog-empty {
  padding: 4rem 0;
  text-align: center;
}
.post-shell {
  max-width: 920px;
}
.blog-related-section {
  background: #f2eee8;
}
.blog-post-hero .cat-hero-title {
  font-size: clamp(3.4rem, 6vw, 6rem);
  width: 100%;
  max-width: 100%;
}
.blog-post-hero .cat-hero-desc {
  width: 100%;
  max-width: 62ch;
  font-size: 1.14rem;
  line-height: 1.72;
}
.blog-post-hero .cat-hero-content {
  width: 55%;
  max-width: 1080px;
  padding-top: 8.5rem;
  padding-bottom: 4rem;
}
.blog-post-hero.cat-hero--sm {
  min-height: 680px;
}
.post-shell > p:first-child {
  font-size: 1.28rem;
  line-height: 1.8;
  color: #222;
}
.post-shell p + p {
  margin-top: 1.4rem;
}

/* ── CTA FINAL (DARK) ──────────────── */
.cta-section {
  background: var(--dark); padding: 2.5rem 5rem;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center;
}
.cta-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: block;
}
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 900;
  line-height: 1; text-transform: uppercase; letter-spacing: .04em; color: var(--white);
}
.cta-body { font-size: 1.18rem; line-height: 1.72; color: rgba(255,255,255,.5); margin-top: 1.5rem; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }

/* ── FOOTER ────────────────────────── */
@keyframes footerGlow {
  0%,100% { opacity: .25; transform: translateX(-50%) scale(1); }
  50%      { opacity: .65; transform: translateX(-50%) scale(1.18); }
}
.footer {
  background: #040404; padding: 2.25rem 5rem 1rem;
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; bottom: -180px; left: 50%;
  transform: translateX(-50%); width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,0,29,.22) 0%, transparent 65%);
  border-radius: 50%; animation: footerGlow 5s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
.footer-top, .footer-bottom { position: relative; z-index: 1; }
.footer-top {
  display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr .72fr;
  gap: 4rem; margin-bottom: 2.25rem; align-items: start;
}

/* Force inner block groups to stack vertically */
.footer-brand,
.footer-col,
.footer-brand.wp-block-group,
.footer-col.wp-block-group {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-top: .75rem; }

.footer-col h4,
.footer-col .wp-block-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,.5);
  margin: 0 0 1.25rem 0; display: block; width: 100%;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { font-size: .98rem; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--red); }
.footer-partner-logo {
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-partner-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 126px;
  object-fit: contain;
}
.footer-col--partner {
  justify-content: center !important;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.2); }
.footer-logo { display: block; margin-bottom: 1.3rem; }
.footer-logo img,
.wp-block-site-logo.footer-logo img,
.footer-brand .custom-logo { width: 90px; height: auto; object-fit: contain; display: block; padding-bottom: 10px; }

.footer-social { display: flex; gap: 1.2rem; align-items: center; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255,255,255,.78);
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}
.footer-social-link svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}
.footer-social-link:hover {
  color: var(--red);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════
   ARCHIVE DE PRODUCTOS
   ══════════════════════════════════════════════════════ */

.archive-main { background: var(--white); min-height: 100vh; }

/* ── Cat Hero: hero compacto oscuro con imagen ──── */
.cat-hero {
  position: relative;
  height: 72vh; min-height: 540px;
  display: flex; align-items: center;
  overflow: hidden;
}
.cat-hero-img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: auto;
  width: 68%; height: 100%;
  object-fit: cover; object-position: center center;
}
.cat-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg,
      #080808 0%,
      #080808 28%,
      rgba(8,8,8,.88) 42%,
      rgba(8,8,8,.35) 60%,
      transparent 76%),
    linear-gradient(180deg,
      rgba(8,8,8,.3) 0%,
      transparent 30%,
      rgba(8,8,8,.5) 80%,
      rgba(8,8,8,.95) 100%);
}
.cat-hero-left { display: none; }
.cat-hero-content {
  position: relative; z-index: 2;
  padding: 0 5rem; width: 52%;
}
.cat-breadcrumb {
  display: flex; align-items: center; gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .96rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  list-style: none;
  line-height: 1.35;
}
.cat-breadcrumb a { color: rgba(255,255,255,.82); text-decoration: none; transition: color .2s; }
.cat-breadcrumb a:hover { color: rgba(255,255,255,1); }
.cat-breadcrumb span { color: rgba(255,255,255,.42); }
.cat-breadcrumb span:last-child { color: rgba(255,255,255,.92); }
.cat-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 900; line-height: 1;
  text-transform: uppercase; letter-spacing: .045em;
  color: var(--white);
}
.cat-hero-title .accent { color: var(--red); }
.cat-hero-desc {
  font-size: 1.14rem; line-height: 1.7;
  color: rgba(255,255,255,.5); max-width: 460px;
  margin-top: 1rem;
}
.cat-hero-meta {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 1.75rem;
}
.hero-meta-item { display: flex; flex-direction: column; gap: .2rem; }
.hero-meta-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.hero-meta-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.hero-meta-div { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ── Cat Hero variante pequeña (páginas internas) ── */
.cat-hero--sm { height: 46vh; min-height: 360px; }

/* ── Contenido de Página Interna ────────────────── */
.page-main { background: var(--white); }
.page-content-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 2rem 2rem 2.75rem;
}
.page-content-inner { color: #1a1a1a; }
.page-content-inner h1,
.page-content-inner h2,
.page-content-inner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; text-transform: uppercase;
  color: var(--dark); margin: 2rem 0 .75rem;
}
.page-content-inner h2 { font-size: 2.2rem; }
.page-content-inner h3 { font-size: 1.6rem; }
.page-content-inner p  { font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.25rem; color: #333; }
.page-content-inner ul,
.page-content-inner ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-content-inner li { font-size: 1.05rem; line-height: 1.75; color: #333; }
.page-content-inner a  { color: var(--red); text-decoration: underline; }
.page-content-inner img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5rem 0; }

/* ── Filter Bar: sticky, blanco ─────────────────── */
.filter-bar {
  position: sticky; top: var(--nyc-fixed-header-offset); z-index: 400;
  background: var(--red);
  border-bottom: 0;
  padding: 0 5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  height: 60px;
  box-shadow: 0 14px 32px rgba(232,0,29,.18);
}
.filter-left {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .84rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.72); white-space: nowrap; flex: 0 0 auto;
}
.filter-left span { color: var(--white); font-size: 1.08rem; font-weight: 900; margin-right: .25rem; }
.filter-mobile-toolbar {
  display: none;
}
.filter-mobile-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
}
.filter-mobile-count span {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
  margin-right: .25rem;
}
.filter-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}
.filter-bar.is-open .filter-toggle svg {
  transform: rotate(180deg);
}
.filter-pills-wrap {
  flex: 1 1 auto;
  min-width: 0;
}
.filter-pills {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: .15rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filter-pills::-webkit-scrollbar { display: none; }
.filter-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .42rem 1rem; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.85);
  cursor: pointer; transition: all .2s; white-space: nowrap;
  text-decoration: none;
}
.filter-pill:hover { border-color: rgba(255,255,255,.82); color: var(--white); background: rgba(255,255,255,.12); }
.filter-pill.active { background: var(--white); color: var(--red); border-color: var(--white); }
.filter-right { flex: 0 0 auto; margin-left: auto; }
.catalog-search {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.catalog-search input {
  width: min(360px, 24vw);
  min-width: 220px;
  height: 42px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  padding: 0 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 1.02rem;
  color: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.catalog-search input::placeholder { color: rgba(255,255,255,.66); }
.catalog-search input:focus {
  outline: none;
  border-color: rgba(255,255,255,.86);
  box-shadow: 0 0 0 3px rgba(255,255,255,.12);
}
.catalog-search button,
.catalog-search-clear {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--white);
  background: var(--white);
  color: var(--red);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .2s;
}
.catalog-search button {
  gap: .45rem;
}
.catalog-search button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.catalog-search button:hover,
.catalog-search-clear:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,.1);
}

/* ── Instagram Feed ───────────────────────────── */
.ig-section {
  padding: 2rem 5rem 2.25rem;
  background:
    radial-gradient(circle at top right, rgba(232,0,29,.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #faf8f8 100%);
}
.ig-header {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.25rem;
}
.ig-header-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.ig-body {
  max-width: 420px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
}
.ig-profile-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ig-profile-link:hover {
  background: var(--red);
  transform: translateY(-1px);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.ig-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.08);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(0,0,0,.05);
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.ig-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,0,29,.24);
  box-shadow: 0 22px 60px rgba(0,0,0,.1);
}
.ig-card-media {
  aspect-ratio: 1 / 1;
  background: var(--off);
  overflow: hidden;
}
.ig-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ig-card:hover .ig-card-media img { transform: scale(1.04); }
.ig-card-meta {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.ig-card-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.ig-card-caption {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

/* ── Catalog Wrap + Grid ─────────────────────────── */
.catalog-wrap {
  padding: 1.25rem 5rem 2rem;
  background: var(--white);
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.no-results {
  grid-column: 1 / -1; text-align: center; padding: 3rem 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted);
}

/* ── Product Card ────────────────────────────────── */
.prod-card {
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; cursor: pointer;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  display: flex; flex-direction: column;
  background: var(--white);
}
.prod-card:hover {
  border-color: rgba(232,0,29,.25);
  box-shadow: 0 12px 48px rgba(0,0,0,.09);
  transform: translateY(-4px);
}

/* Área de imagen */
.prod-img-area {
  background: var(--off); position: relative;
  aspect-ratio: 1 / 1; overflow: hidden;
}
.prod-img-area a { display: block; width: 100%; height: 100%; }
.prod-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; padding: 1.5rem;
  transition: opacity .4s, transform .5s;
}
.prod-card-img { opacity: 1; }
.prod-card:hover .prod-card-img { transform: scale(1.03); }

/* Badge */
.prod-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 4px;
}
.prod-badge--top { background: var(--red);  color: var(--white); }
.prod-badge--new { background: var(--dark); color: var(--white); }
.prod-badge--eco { background: #1A7A4A;    color: var(--white); }

/* Swatches: dentro del área de imagen */
.prod-swatches {
  position: absolute; bottom: 1rem; left: 1rem;
  display: flex; gap: .45rem; z-index: 2;
}
.swatch {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.7);
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
  cursor: pointer; padding: 0;
  transition: transform .2s, border-color .2s;
  outline: none;
}
.swatch:hover { transform: scale(1.15); }
.swatch.active, .swatch.is-active {
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--red), 0 1px 4px rgba(0,0,0,.2);
}

/* Info */
.prod-info {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex; flex-direction: column; gap: .55rem; flex: 1;
}
.prod-sku {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .63rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--red);
}
.prod-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.95rem; font-weight: 900;
  text-transform: uppercase; line-height: .95;
  letter-spacing: -.01em; color: var(--text); margin: 0;
}
.prod-name a { color: inherit; text-decoration: none; }
.prod-name a:hover { color: var(--red); }
.prod-cap {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.capacity-num {
  font-size: inherit;
  font-weight: 600;
  letter-spacing: inherit;
}
.capacity-unit {
  font-size: .68em;
  font-weight: 700;
  letter-spacing: .14em;
  opacity: .88;
}
.prod-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .1rem; }
.prod-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 4px;
  background: var(--off); color: var(--muted);
  border: 1px solid var(--border);
}
.prod-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .9rem; border-top: 1px solid var(--border);
  margin-top: auto;
}
.prod-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color .2s; border: none; background: transparent; cursor: pointer;
}
.prod-link::after { content: '→'; transition: transform .2s; display: inline-block; }
.prod-card:hover .prod-link { color: var(--red); }
.prod-card:hover .prod-link::after { transform: translateX(4px); }
.prod-info-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; color: var(--muted);
  flex-shrink: 0;
}
.prod-info-btn svg { width: 14px; height: 14px; }
.prod-card:hover .prod-info-btn {
  border-color: var(--red); color: var(--red);
  background: rgba(232,0,29,.04);
}

/* ══════════════════════════════════════════════════════
   SINGLE PRODUCTO
   ══════════════════════════════════════════════════════ */

.single-main { background: var(--white); min-height: 100vh; }

/* ── Mini hero — Single Producto ── */
.prod-hero {
  position: relative; height: 270px; overflow: hidden;
}
.prod-hero-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: auto;
  width: 68%;
  background-size: cover; background-position: center;
}
.prod-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      #080808 0%,
      #080808 26%,
      rgba(8,8,8,.88) 40%,
      rgba(8,8,8,.3)  58%,
      transparent     74%),
    linear-gradient(180deg,
      rgba(8,8,8,.25) 0%,
      transparent     35%,
      rgba(8,8,8,.55) 85%,
      rgba(8,8,8,.9)  100%);
}
.prod-hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem 5rem 1.5rem;
  gap: .5rem;
}
.prod-hero .single-breadcrumb a { color: rgba(255,255,255,.55); }
.prod-hero .single-breadcrumb a:hover { color: var(--red); }
.prod-hero .single-breadcrumb span { color: rgba(255,255,255,.25); }
.prod-hero .single-breadcrumb span:last-child { color: rgba(255,255,255,.85); }
.prod-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--red); margin: 0;
}

/* Breadcrumb bar */
.single-breadcrumb-bar {
  padding: .75rem 5rem;
  border-bottom: 1px solid var(--border);
}
.single-breadcrumb {
  display: flex; align-items: center; gap: .6rem;
  flex-wrap: wrap;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  line-height: 1.35;
}
.single-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.single-breadcrumb a:hover { color: var(--red); }
.single-breadcrumb span { color: rgba(0,0,0,.25); }
.single-breadcrumb span:last-child { color: var(--text); }

/* Layout 2 columnas */
.single-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 2rem 5rem 3rem;
  max-width: 1440px; margin: 0 auto;
}

/* ── Galería ── */
.single-gallery { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 100px; align-self: start; }
.single-gallery-main {
  position: relative;
  background: var(--off); border-radius: 16px; overflow: hidden;
  aspect-ratio: 1 / 1;
}
.single-zoom-trigger {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: var(--text);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: transform .2s, color .2s, border-color .2s;
}
.single-zoom-trigger svg { width: 18px; height: 18px; }
.single-zoom-trigger:hover {
  transform: translateY(-1px);
  color: var(--red);
  border-color: rgba(232,0,29,.24);
}
.single-main-img {
  width: 100%; height: 100%; object-fit: contain; padding: 2.5rem;
  display: block; transition: opacity .3s, transform .3s;
  cursor: zoom-in;
}
.single-gallery-thumbs {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
.single-feature-card {
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.single-feature-card--compact {
  margin-top: 1rem;
  max-width: 520px;
}
.single-feature-card--under-swatches { margin: .35rem 0 1.5rem; }
.single-feature-card-img {
  display: block;
  width: 100%;
  height: auto;
}
.single-thumb {
  width: 80px; height: 80px; border-radius: 10px;
  border: 2px solid var(--border); overflow: hidden;
  background: var(--off); cursor: pointer;
  padding: 0; transition: border-color .2s, box-shadow .2s;
  flex-shrink: 0;
}
.single-thumb img { width: 100%; height: 100%; object-fit: contain; padding: .4rem; }
.single-thumb:hover { border-color: var(--muted); }
.single-thumb.is-active { border-color: var(--red); box-shadow: 0 0 0 2px rgba(232,0,29,.15); }

/* ── Contenido ── */
.single-content { padding-top: .5rem; }
.single-sku {
  display: block; margin-bottom: .75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--red);
}
.single-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem); font-weight: 900;
  text-transform: uppercase; line-height: 1;
  letter-spacing: .04em; color: var(--text); margin: 0 0 .75rem;
}
.single-subtitle {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.55; margin-bottom: 1.75rem;
}

/* Swatches grandes */
.single-swatches-wrap { margin-bottom: 2rem; }
.single-color-label {
  display: block; margin-bottom: .75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.single-swatches { display: flex; gap: .65rem; flex-wrap: wrap; }
.swatch--lg {
  width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.7);
  box-shadow: 0 1px 5px rgba(0,0,0,.18), 0 0 0 1.5px rgba(0,0,0,.08);
  cursor: pointer; padding: 0;
  transition: transform .2s, box-shadow .2s;
  outline: none;
}
.swatch--lg:hover { transform: scale(1.15); }
.swatch--lg.active, .swatch--lg.is-active {
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--red), 0 2px 8px rgba(0,0,0,.2);
}

/* Descripción */
.single-desc {
  font-size: 1.05rem; line-height: 1.72; color: var(--muted);
  margin-bottom: 2.25rem;
}
.single-desc p { margin-bottom: .85rem; }

/* Botones de acción */
/* Acordeón de especificaciones técnicas */
.prod-specs-accordion {
  border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 2rem; overflow: hidden;
}
.prod-specs-summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; cursor: pointer; list-style: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .96rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  transition: color .2s;
}
.prod-specs-summary::-webkit-details-marker { display: none; }
.prod-specs-summary:hover { color: var(--text); }
.prod-specs-chevron { flex-shrink: 0; color: var(--red); transition: transform .25s ease; width: 18px; height: 18px; }
details[open] .prod-specs-chevron { transform: rotate(180deg); }
.prod-specs-body { border-top: 1px solid var(--border); }
.prod-specs-table { width: 100%; border-collapse: collapse; }
.prod-specs-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.pst-label {
  padding: .95rem 1.25rem; width: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.pst-val {
  padding: .95rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.08rem; font-weight: 600; color: var(--text);
  line-height: 1.5;
}

.single-actions { display: flex; flex-direction: column; gap: .85rem; }
.btn-single {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 6px;
  cursor: pointer; text-decoration: none; border: none;
  transition: all .25s; width: 100%; justify-content: center;
}
.btn-single svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-single--red { background: var(--red); color: var(--white); }
.btn-single--red:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,0,29,.25); }
.btn-single--outline { color: var(--text); border: 1.5px solid var(--border); background: transparent; }
.btn-single--outline:hover { border-color: var(--text); background: var(--off); transform: translateY(-2px); }
.btn-disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
.btn-single--disabled {
  background: var(--off); color: var(--muted);
  border: 1.5px solid var(--border);
  opacity: .55; cursor: not-allowed; pointer-events: none;
  user-select: none;
}

body.pdf-modal-open { overflow: hidden; }
body.image-modal-open { overflow: hidden; }
.image-modal {
  position: fixed; inset: 0; z-index: 9998;
  display: none; align-items: center; justify-content: center;
  padding: 1.25rem;
}
.image-modal.is-open { display: flex; }
.image-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(5px);
}
.image-modal-dialog {
  position: relative; z-index: 1;
  width: min(1200px, 100%);
  max-height: 92vh;
  background: rgba(12,12,12,.96);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
}
.image-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: .95rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--white);
}
.image-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.image-modal-close {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.05);
}
.image-modal-close:hover { color: var(--white); background: rgba(255,255,255,.12); }
.image-modal-body {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: calc(92vh - 72px);
}
.image-modal-img {
  max-width: 100%;
  max-height: calc(92vh - 104px);
  width: auto;
  height: auto;
  object-fit: contain;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}
.pdf-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 1.25rem;
}
.pdf-modal.is-open { display: flex; }
.pdf-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,8,8,.82);
  backdrop-filter: blur(6px);
}
.pdf-modal-dialog {
  position: relative; z-index: 1;
  width: min(1240px, calc(100vw - 2.5rem));
  height: min(92vh, 980px);
  background: #101010;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.pdf-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pdf-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--white);
}
.pdf-modal-close {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: transparent; color: var(--white);
  cursor: pointer; transition: all .2s ease;
}
.pdf-modal-close:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}
.pdf-modal-body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: #1a1a1a;
}
.pdf-modal-body.is-pdfjs {
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  background: #161616;
}
.pdf-modal-frame {
  width: 100%; height: 100%;
  display: block;
  border: 0; background: #1a1a1a;
}
.pdf-modal-frame[hidden] {
  display: none !important;
}
.pdf-modal-viewer {
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: .7rem;
}
.pdf-modal-viewer[hidden] {
  display: none !important;
}
.pdf-modal-viewer-controls {
  position: sticky;
  top: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  align-self: flex-start;
  padding: .35rem;
  border-radius: 999px;
  background: rgba(12,12,12,.92);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.pdf-modal-viewer-zoom {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.pdf-modal-viewer-zoom-value {
  min-width: 3.5rem;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
}
.pdf-modal-viewer-status {
  padding: .8rem .95rem;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: .95rem;
  line-height: 1.45;
}
.pdf-modal-viewer-status.is-error {
  background: rgba(255,70,70,.14);
  color: #fff;
}
.pdf-modal-viewer-pages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  width: 100%;
}
.pdf-modal-viewer-page {
  width: auto;
  max-width: none;
  background: #fff;
  border-radius: 10px;
  padding: .32rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.pdf-modal-viewer-page canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 7px;
}

/* ── Relacionados ── */
.single-related {
  background: var(--off); padding: 2rem 5rem;
  border-top: 1px solid var(--border);
}
.single-related-header {
  display: flex; align-items: flex-start; gap: 1.5rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.single-related-heading {
  display: flex; flex-direction: column; gap: .55rem;
}
.single-related-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em; color: var(--text);
}
.single-related-title .text-red { color: var(--red); }
.single-related-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; margin-left: auto;
  transition: color .2s;
}
.single-related-link:hover { color: var(--red); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── ADMIN BAR OFFSET ──────────────── */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav { top: 46px; } }
@media screen and (max-width: 782px) { .admin-bar .reading-progress { top: 46px; } }

/* ══════════════════════════════════════════════════════════
   NOSOTROS — PAGE HERO
   ══════════════════════════════════════════════════════════ */
.nosotros-main { background: var(--white); min-height: 100vh; }

.page-hero {
  position: relative;
  height: 62vh; min-height: 480px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.2s ease, opacity .8s ease;
  opacity: 0;
}
.page-hero-img.loaded { opacity: 1; transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,8,8,.88) 0%, rgba(8,8,8,.55) 55%, rgba(8,8,8,.3) 100%);
}
.page-hero-left {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.5) 0%, transparent 40%);
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 5rem 3.5rem;
}
.page-hero-logo-wrap {
  position: absolute;
  right: 5rem;
  bottom: 3.5rem;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: min(18vw, 240px);
  pointer-events: none;
}
.page-hero-logo {
  display: block;
  width: 100%;
  max-width: 240px;
  max-height: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.22));
}
.pag-breadcrumb {
  display: flex; align-items: center; gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .96rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  line-height: 1.35;
}
.pag-breadcrumb a { color: rgba(255,255,255,.82); text-decoration: none; transition: color .2s; }
.pag-breadcrumb a:hover { color: rgba(255,255,255,1); }
.pag-sep { color: rgba(255,255,255,.42); }
.pag-cur { color: rgba(255,255,255,.92); }
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 900; line-height: 1;
  text-transform: uppercase; letter-spacing: .045em;
  color: var(--white);
}
.ph-accent { color: var(--red); }
.page-hero-desc {
  font-size: 1.18rem; line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 500px;
  margin-top: 1.25rem;
}

/* ── HISTORIA ─────────────────────────── */
.historia-section {
  padding: 2.75rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem;
  align-items: center; background: var(--white);
}
.historia-text .s-title { margin-bottom: 1.5rem; }
.historia-h2 em { color: var(--red); font-style: italic; }
.historia-body {
  font-size: 1.2rem; line-height: 1.75; color: var(--muted); margin-bottom: 1.25rem;
}
.historia-founded {
  display: flex; align-items: center; gap: 1.5rem;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.historia-year {
  font-family: 'Barlow Condensed', sans-serif; font-size: 5rem; font-weight: 900;
  line-height: 1; color: var(--red); flex-shrink: 0;
}
.historia-founded-txt { font-size: 1rem; line-height: 1.6; color: var(--muted); }
.historia-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 200px;
  gap: .9rem;
}
.mosaic-img { border-radius: 12px; overflow: hidden; }
.mosaic-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mosaic-img.mosaic-span { grid-column: 2/3; grid-row: 1/3; }

/* ── STATS (RED) ──────────────────────── */
.nos-stats-section {
  background: var(--red); padding: 1.75rem 5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.nos-stat { border-left: 1px solid rgba(255,255,255,.2); padding-left: 2rem; }
.nos-stat:first-child { border-left: none; padding-left: 0; }
.nos-stat-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 4.5rem; font-weight: 900;
  line-height: 1; color: var(--white);
}
.nos-stat-lbl { font-size: 1.1rem; color: rgba(255,255,255,.9); margin-top: .5rem; line-height: 1.4; }

/* ── VALORES ──────────────────────────── */
.valores-section {
  padding: 2.75rem 5rem;
  background-color: var(--dark);
  background-size: cover; background-position: center 40%;
  background-attachment: fixed;
  background-blend-mode: normal;
  position: relative;
}
.valores-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(8,8,8,.87) 0%, rgba(8,8,8,.93) 100%);
  pointer-events: none;
}
.valores-section > * { position: relative; z-index: 1; }
.valores-header { margin-bottom: 2.5rem; }
.valores-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.valor-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  transition: border-color .3s, background .3s;
}
.valor-card:hover {
  border-color: rgba(232,0,29,.3);
  background: rgba(232,0,29,.04);
}
.valor-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1.25rem; display: block;
}
.valor-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(232,0,29,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.valor-icon svg { width: 26px; height: 26px; color: var(--red); }
.valor-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.7rem; font-weight: 900;
  text-transform: uppercase; line-height: 1.05; color: var(--white);
  margin-bottom: .75rem;
}
.valor-desc { font-size: 1.14rem; color: rgba(255,255,255,.5); line-height: 1.62; }
.valor-logo-wrap {
  margin-top: 1.15rem;
}
.valor-logo-wrap--feature {
  margin-top: 0;
  margin-bottom: 1.1rem;
}
.valor-logo {
  display: block;
  width: auto;
  max-width: 118px;
  max-height: 76px;
  object-fit: contain;
}

/* ── TIMELINE ─────────────────────────── */
.timeline-section { padding: 2.75rem 5rem; background: var(--off); }
.timeline-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.timeline-header-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.timeline-nav {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  flex: 0 0 auto;
}
.timeline-nav-btn {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid var(--red);
  background: var(--white);
  color: var(--red);
  box-shadow: 0 10px 24px rgba(232,0,29,.12);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease;
}
.timeline-nav-btn svg { display: block; }
.timeline-nav-btn:hover:not(:disabled) {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(232,0,29,.22);
}
.timeline-nav-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  box-shadow: none;
  border-color: rgba(232,0,29,.35);
  color: rgba(232,0,29,.35);
}
.timeline-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 340px);
  gap: 1.5rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  position: relative;
}
.timeline-track::before { display: none; }
.timeline-item {
  padding: 1.5rem;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  scroll-snap-align: start;
}
.timeline-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); border: 3px solid var(--off);
  box-shadow: 0 0 0 1px var(--red);
  margin-bottom: 1.75rem; position: relative; z-index: 1;
}
.timeline-year {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900;
  color: var(--red); line-height: 1; margin-bottom: .5rem;
}
.timeline-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 800;
  text-transform: uppercase; color: var(--text); margin-bottom: .5rem;
}
.timeline-body { font-size: 1rem; line-height: 1.55; color: var(--muted); }
.timeline-track::-webkit-scrollbar { height: 10px; }
.timeline-track::-webkit-scrollbar-thumb { background: rgba(232,0,29,.28); border-radius: 999px; }
.timeline-track::-webkit-scrollbar-track { background: rgba(0,0,0,.06); border-radius: 999px; }

.cap-mobile-nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: .85rem;
}
.cap-nav-btn {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid var(--red);
  background: var(--white);
  color: var(--red);
  box-shadow: 0 10px 24px rgba(232,0,29,.12);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease;
}
.cap-nav-btn svg { display: block; }
.cap-nav-btn:hover:not(:disabled) {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(232,0,29,.22);
}
.cap-nav-btn:disabled {
  opacity: .38;
  cursor: not-allowed;
  box-shadow: none;
  border-color: rgba(232,0,29,.35);
  color: rgba(232,0,29,.35);
}

/* ── CAPACIDAD NOSOTROS (.nos-cap) ──────── */
.nos-cap {
  padding: 2.75rem 5rem;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 7rem; align-items: start;
  background-color: var(--dark);
  background-image: none;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  position: relative;
}
.nos-cap::before {
  display: none;
}
.nos-cap > * { position: relative; z-index: 1; }
.nos-cap .cap-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}
.nos-cap .cap-item {
  position: relative;
  isolation: auto;
  z-index: 0;
  overflow: hidden;
  min-height: 250px;
  padding: 1.75rem;
  border: 1.5px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(10,10,10,.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: span 2;
  transition: border-color .3s;
}
.nos-cap .cap-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--cap-bg, none) center / cover no-repeat;
  transition: transform .55s ease;
  transform: scale(1.1);
}
.nos-cap .cap-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.48) 50%,
    rgba(0,0,0,.08) 100%
  );
  transition: background .45s ease;
}
.nos-cap .cap-item:hover {
  border-color: rgba(232,0,29,.35);
}
.nos-cap .cap-item:hover::before {
  transform: scale(1.07);
}
.nos-cap .cap-item:hover::after {
  background: linear-gradient(to top,
    rgba(0,0,0,.95) 0%,
    rgba(232,0,29,.14) 58%,
    rgba(0,0,0,.06) 100%
  );
}
.nos-cap .cap-num {
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem;
}
.nos-cap .cap-name {
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.45rem; font-weight: 900;
  text-transform: uppercase; line-height: 1.04; color: var(--white); margin-bottom: .55rem;
}
.nos-cap .cap-desc {
  position: relative; z-index: 1;
  font-size: 1.02rem; color: rgba(255,255,255,.84); line-height: 1.5; max-width: 28ch;
}

/* ── CAPACIDAD HOME (.home-cap) ──────────
   Image-card grid, 2-col layout, proper overlay stack.
   These rules are higher-specificity than the global .cap-* rules
   defined earlier in this file, so they cleanly override. */
.cap-section.home-cap {
  /* Reset the background shorthand so sub-property overrides from .nos-cap don't bleed */
  background:
    linear-gradient(to right, #111111 52%, rgba(17,17,17,.58) 100%),
    var(--cap-section-bg, url('../images/scenes/explorer.jpg')) center right / cover no-repeat;
  background-attachment: scroll;
  padding: 2.75rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 6rem;
  align-items: start;
  position: relative;
}
/* Remove the section-level overlay that .nos-cap adds via ::before */
.cap-section.home-cap::before { display: none; }

/* Nosotros keeps the home process-card design, but with its own section image */
.nos-cap.home-cap {
  background-color: var(--dark);
  background-image: var(--cap-section-bg, none);
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.nos-cap.home-cap::before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to right, #111111 52%, rgba(17,17,17,.58) 100%);
}

/* Card grid */
.home-cap .cap-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

/* ── Image card base ── */
.home-cap .cap-item {
  /* Reset global styles that conflict */
  background: rgba(10,10,10,.85);   /* fallback when no image */
  isolation: auto;                   /* cancel global isolation:isolate */
  /* New layout */
  position: relative;
  z-index: 0;                        /* create local stacking context */
  overflow: hidden;
  border-radius: 14px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  border: 1.5px solid rgba(255,255,255,.07);
  transition: border-color .3s;
  grid-column: span 2;
}

/* Photo layer */
.home-cap .cap-item::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;                       /* behind in-flow content */
  background: var(--cap-bg, none) center / cover no-repeat;
  transition: transform .55s ease;
  transform: scale(1.1);             /* reset global transform rule */
}

/* Gradient overlay layer */
.home-cap .cap-item::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;                       /* same layer as ::before; ::after paints after ::before in DOM order */
  background: linear-gradient(to top,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.48) 50%,
    rgba(0,0,0,.08) 100%
  );
  transition: background .45s;
}

.home-cap .cap-item:hover { border-color: rgba(232,0,29,.35); }
.home-cap .cap-item:hover::before { transform: scale(1.07); }
.home-cap .cap-item:hover::after {
  background: linear-gradient(to top,
    rgba(0,0,0,.95) 0%,
    rgba(232,0,29,.14) 58%,
    rgba(0,0,0,.06) 100%
  );
}

/* 5th card spans full width — landscape banner style */
.home-cap .cap-item:nth-child(4),
.home-cap .cap-item:nth-child(5) {
  grid-column: span 3;
}

/* Content: explicitly above the z-index:-1 pseudo-elements */
.home-cap .cap-num {
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem;
}
.home-cap .cap-name {
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.42rem; font-weight: 800;
  text-transform: uppercase; line-height: 1.08; color: var(--white); margin-bottom: .55rem;
}
.home-cap .cap-desc {
  position: relative; z-index: 1;
  font-size: .96rem; color: rgba(255,255,255,.6); line-height: 1.45; max-width: 34ch;
}

/* ── IN-MOLD ──────────────────────────── */
.inmold-section { padding: 2.75rem 5rem; background: var(--white); }
.inmold-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.inmold-lead {
  font-size: 1.2rem; line-height: 1.75; color: var(--muted); margin-bottom: 1.25rem;
}
.inmold-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .6rem 1.2rem; border-radius: 4px;
  border: 1.5px solid var(--red);
  font-family: 'Barlow Condensed', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  text-decoration: none; transition: all .2s;
}
.inmold-badge:hover { background: var(--red); color: var(--white); }
.inmold-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem;
}
.finish-card {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .25s, transform .25s;
}
.finish-card:hover { border-color: var(--red); transform: translateY(-3px); }
.finish-dot {
  width: 32px; height: 32px; border-radius: 50%;
  margin-bottom: 1rem; border: 2px solid var(--border);
}
.finish-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -.01em; color: var(--text);
}
.finish-desc { font-size: 1.05rem; color: var(--muted); margin-top: .3rem; line-height: 1.4; }

/* ── NOSOTROS CATS (STATIC GRID) ──────── */
.nos-cats-section {
  padding: 2.75rem 5rem;
  background-color: var(--dark);
  background-size: cover; background-position: center;
  background-attachment: fixed;
  position: relative;
}
.nos-cats-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(8,8,8,.85) 0%, rgba(8,8,8,.91) 100%);
  pointer-events: none;
}
.nos-cats-section > * { position: relative; z-index: 1; }
.nos-cats-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 2rem;
}
.nos-cats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.nos-cats-row2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.25rem;
}
.nos-cat-card {
  border-radius: 14px; overflow: hidden; position: relative;
  cursor: pointer; height: 480px;
  display: block; text-decoration: none;
}
.nos-cats-row2 .nos-cat-card { height: 400px; }
.nos-cat-card .cat-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s; }
.nos-cat-card:hover .cat-card-img { transform: scale(1.06); }
.nos-cat-card .cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 45%, transparent 72%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  transition: background .4s;
}
.nos-cat-card:hover .cat-card-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,.95) 0%, rgba(232,0,29,.15) 55%, transparent 80%);
}

/* ── CTA FINAL NOSOTROS ───────────────── */
.nos-cta-section {
  background: var(--red); padding: 2.25rem 5rem;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center;
}
.nos-cta-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: 1rem; display: block;
}
.nos-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 900;
  line-height: 1; text-transform: uppercase; letter-spacing: .04em; color: var(--white);
}
.nos-cta-body {
  font-size: 1.18rem; line-height: 1.72; color: rgba(255,255,255,.7); margin-top: 1.5rem;
}
.nos-cta-actions { display: flex; flex-direction: column; gap: 1rem; }
.btn-dark { background: var(--dark); color: var(--white) !important; padding: 1rem 2rem; border-radius: 4px; }
.btn-dark:hover { background: #1a1a1a; }
.btn-outline-red {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: transparent; color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,.5);
  text-decoration: none; transition: all .2s;
}
.btn-outline-red:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ══════════════════════════════════════════════════════════
   CONTACTO
   ══════════════════════════════════════════════════════════ */
.contacto-main { background: var(--white); min-height: 100vh; }

/* ── Split form/info ──────────────────── */
.contacto-split {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
  background: var(--white);
}
.contacto-info {
  padding: 2.5rem 5rem;
  background: var(--off);
  border-right: 1px solid var(--border);
}
.contacto-info-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem); font-weight: 900;
  line-height: 1; text-transform: uppercase; letter-spacing: .04em;
  color: var(--text); margin: 1rem 0 1.5rem;
}
.contacto-info-body {
  font-size: 1.22rem; line-height: 1.75; color: var(--muted); margin-bottom: 3rem;
}
.contacto-datos { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 3rem; }
.contacto-dato { display: flex; align-items: flex-start; gap: 1.25rem; }
.contacto-dato-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contacto-dato-icon svg { width: 20px; height: 20px; color: var(--red); }
.contacto-dato-lbl {
  font-family: 'Barlow Condensed', sans-serif; font-size: .88rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem;
}
.contacto-dato-val {
  font-size: 1.2rem; color: var(--text); line-height: 1.6;
  text-decoration: none; transition: color .2s;
}
a.contacto-dato-val:hover { color: var(--red); }

.contacto-social { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.contacto-social-lbl {
  font-family: 'Barlow Condensed', sans-serif; font-size: .88rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  display: block; margin-bottom: 1rem;
}
.contacto-social-links { display: flex; gap: .75rem; }
.contacto-social-btn {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.contacto-social-btn svg { width: 16px; height: 16px; }
.contacto-social-btn:hover { border-color: var(--red); color: var(--red); background: rgba(232,0,29,.04); }
.nav-mobile-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  padding: .35rem 1.5rem 1rem;
}

/* Form wrap */
.contacto-form-wrap {
  padding: 5.5rem 5rem;
  background: var(--white);
}
.contacto-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900;
  line-height: .9; text-transform: uppercase; letter-spacing: -.02em;
  color: var(--text); margin: .75rem 0 .75rem;
}
.contacto-form-sub {
  font-size: 1rem; color: var(--muted); margin-bottom: 2.5rem;
}
.contacto-form-body { margin-top: 2.5rem; }

/* CF7 styles */
.wpcf7-form .wpcf7-form-control-wrap,
.wpcf7-form p { margin: 0; }
.wpcf7-form { display: flex; flex-direction: column; gap: 1rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Barlow', sans-serif; font-size: .95rem;
  color: var(--text); background: var(--off);
  transition: border-color .2s, background .2s;
  outline: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--red); background: var(--white);
}
.wpcf7-form textarea { min-height: 130px; resize: vertical; }
.wpcf7-form select[name="your-subject"] { margin-bottom: .8rem; }
.wpcf7-form input[type="submit"] {
  background: var(--red); color: var(--white);
  border: none; padding: 1rem 2.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: .85rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer;
  transition: background .2s;
  align-self: flex-start;
}
.wpcf7-form input[type="submit"]:hover { background: var(--red-dk); }
.cf-routing-preview {
  display: none !important;
}
.wpcf7-not-valid-tip { font-size: .8rem; color: var(--red); margin-top: .3rem; display: block; }
.wpcf7-response-output {
  margin-top: 1rem !important; padding: .85rem 1.25rem !important;
  border-radius: 6px; font-size: .9rem; border: none !important;
}
.wpcf7-mail-sent-ok { background: rgba(22,163,74,.1); color: #16a34a; }
.wpcf7-mail-sent-ng, .wpcf7-aborted { background: rgba(232,0,29,.08); color: var(--red); }

/* Fallback form styles */
.nyc-fallback-form { display: flex; flex-direction: column; gap: 1rem; }
.cf-row { display: flex; flex-direction: column; gap: 1rem; }
.cf-row--2 { flex-direction: row; }
.cf-row--2 .cf-field { flex: 1; }
.cf-field { display: flex; flex-direction: column; gap: .4rem; }
.cf-routing-field.is-hidden,
.cf-routing-row.is-hidden { display: none !important; }
.wpcf7-form > .wpcf7-form-control-wrap:has(select[name="your-subject"]) {
  display: block;
  margin-bottom: .7rem;
}
.cf-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.cf-input {
  padding: .85rem 1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: 'Barlow', sans-serif; font-size: .95rem; color: var(--text);
  background: var(--off); transition: border-color .2s, background .2s; outline: none;
}
.cf-input:focus { border-color: var(--red); background: var(--white); }
.cf-select { appearance: none; }
.cf-textarea { min-height: 130px; resize: vertical; }
.cf-submit {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--red); color: var(--white);
  border: none; padding: 1rem 2.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: .85rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer;
  transition: background .2s; align-self: flex-start;
}
.cf-submit:hover { background: var(--red-dk); }

/* ── Banda roja stats ─────────────────── */
.contacto-banda {
  background: var(--red); padding: 1.5rem 5rem;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; gap: 2rem;
}
.contacto-banda-sep { width: 1px; height: 40px; background: rgba(255,255,255,.25); }
.contacto-banda-item { text-align: center; }
.contacto-banda-val {
  font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 900;
  line-height: 1; color: var(--white);
}
.contacto-banda-lbl { font-size: 1rem; color: rgba(255,255,255,.85); margin-top: .4rem; }

/* ── CTA Distribuidores ───────────────── */
.contacto-cta {
  position: relative; padding: 3.5rem 5rem;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  display: flex; align-items: center;
}
.contacto-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,8,8,.9) 0%, rgba(8,8,8,.6) 60%, rgba(8,8,8,.35) 100%);
}
.contacto-cta-content { position: relative; z-index: 1; max-width: 680px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1100px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Historia */
  .historia-section { gap: 3rem; padding: 2.75rem 3rem; }
  /* Capacidad nosotros */
  .nos-cap { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.75rem 3rem; }
  /* Capacidad home */
  .cap-section.home-cap { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 3rem; }
  /* Inmold */
  .inmold-layout { grid-template-columns: 1fr; gap: 3rem; }
  .inmold-img-col { aspect-ratio: 16/9; order: -1; }
  /* Nosotros CTA */
  .nos-cta-section { gap: 2.5rem; padding: 2.5rem 3rem; }
  /* Contacto split */
  .contacto-split { grid-template-columns: 1fr; }
  .contacto-info { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 3rem; }
  .contacto-form-wrap { padding: 2rem 3rem; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  .nav {
    padding: 1rem 1.5rem;
    justify-content: space-between;
    gap: 1rem;
  }
  .nav--white { padding: .75rem 1.5rem; }
  .nav-menu { display: none; }
  .nav-actions { display: none; }
  .nav-brand {
    flex: 1 1 auto;
  }
  .nav-logo {
    height: 54px;
  }
  .nav-hamburger {
    display: flex;
    margin-left: auto;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(232,0,29,.24);
    background: rgba(232,0,29,.08);
  }
  .nav-hamburger span,
  .nav--white .nav-hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--red);
  }
  .nav-mobile-lang-switcher {
    grid-template-columns: 1fr;
  }

  /* ── PAGE HERO ── */
  .page-hero { height: 52vh; min-height: 380px; }
  .page-hero-content { padding: 0 1.5rem 3rem; }
  .page-hero-logo-wrap {
    right: 1.5rem;
    bottom: 3rem;
    max-width: min(28vw, 180px);
  }
  .page-hero-logo {
    max-width: 180px;
    max-height: 86px;
  }
  .page-hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .page-hero-desc { font-size: 1.08rem; margin-top: 1rem; }
  .pag-breadcrumb {
    font-size: .74rem;
    letter-spacing: .11em;
    row-gap: .32rem;
    column-gap: .42rem;
    margin-bottom: 1rem;
    max-width: 100%;
  }
  .pag-breadcrumb a,
  .pag-sep,
  .pag-cur {
    flex: 0 0 auto;
  }

  /* ── HERO (home) ── */
  .hero {
    min-height: 620px;
  }
  .hero-slide {
    align-items: flex-end;
    padding: 8.25rem 1.1rem 4.9rem;
  }
  .hero-left {
    background: linear-gradient(180deg, rgba(8,8,8,.22) 0%, rgba(8,8,8,.08) 22%, rgba(8,8,8,.84) 100%);
  }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(8,8,8,.46) 0%,
      rgba(8,8,8,.18) 26%,
      rgba(8,8,8,.82) 72%,
      rgba(8,8,8,.97) 100%);
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  .hero-eyebrow {
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
    justify-content: flex-start;
    margin-bottom: .85rem;
  }
  .eyebrow-bar { width: 28px; }
  .eyebrow-text {
    font-size: .62rem;
    letter-spacing: .24em;
    color: rgba(255,255,255,.92);
  }
  .hero-title { font-size: clamp(2.35rem, 8.9vw, 4.25rem); }
  .hero-title {
    max-width: 100%;
    width: 100%;
    align-self: stretch;
  }
  .hero-title--left { text-align: left; }
  .hero-title--right { text-align: right; }
  .hero-title .out {
    -webkit-text-stroke: 1.6px rgba(255,255,255,.88);
  }
  .hero-sub {
    margin-top: 1.15rem;
    gap: .9rem;
    align-items: flex-start;
    width: 100%;
  }
  .hero-desc {
    color: rgba(255,255,255,.9);
    max-width: 100%;
    width: 100%;
    font-size: .96rem;
    text-align: left;
  }
  .hero-content--right {
    align-items: flex-end;
  }
  .hero-content--right .hero-eyebrow {
    align-items: flex-end;
  }
  .hero-content--right .hero-sub {
    align-items: flex-end;
  }
  .hero-content--right .hero-desc {
    text-align: right;
  }
  .hero-btns {
    width: 100%;
    flex-direction: column;
    gap: .7rem;
    align-items: stretch;
  }
  .hero-btns .btn {
    justify-content: center;
    width: 100%;
    align-self: stretch;
  }
  .hero-bullets {
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .scroll-hint { display: none; }

  /* ── CAT HERO (archive) ── */
  .cat-hero { height: 52vh; min-height: 380px; align-items: flex-end; }
  .cat-hero-img { width: 100%; left: 0; }
  .cat-hero-overlay {
    background: linear-gradient(180deg,
      rgba(8,8,8,.4) 0%,
      rgba(8,8,8,.1) 30%,
      rgba(8,8,8,.75) 65%,
      rgba(8,8,8,.97) 100%);
  }
  .cat-hero-content { padding: 0 1.5rem 2.5rem; width: 100%; }
  .cat-hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .cat-hero-desc { font-size: 1.08rem; }
  .cat-breadcrumb {
    font-size: .74rem;
    letter-spacing: .11em;
    row-gap: .32rem;
    column-gap: .42rem;
    max-width: 100%;
  }
  .cat-breadcrumb a,
  .cat-breadcrumb span {
    flex: 0 0 auto;
  }
  .cat-hero-meta { gap: 1.2rem; margin-top: 1.25rem; }
  .hero-meta-val { font-size: 1.4rem; }
  .hero-meta-lbl { font-size: .74rem; letter-spacing: .14em; }

  /* ── FILTER BAR ── */
  .filter-bar {
    padding: .5rem 1.5rem;
    flex-wrap: wrap;
    height: auto;
    min-height: 52px;
    align-items: stretch;
    gap: .75rem;
  }
  .filter-left { display: none; }
  .filter-right {
    width: 100%;
    margin: 0;
    order: 1;
  }
  .filter-mobile-toolbar {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    order: 2;
  }
  .filter-mobile-count {
    font-size: .78rem;
    letter-spacing: .14em;
  }
  .filter-mobile-count span {
    font-size: 1rem;
  }
  .filter-toggle {
    flex: 0 0 auto;
    font-size: .82rem;
    letter-spacing: .12em;
  }
  .filter-pills-wrap {
    display: none;
    width: 100%;
    order: 3;
  }
  .filter-bar.is-open .filter-pills-wrap {
    display: block;
  }
  .filter-pills {
    width: 100%;
    gap: .55rem;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
  }
  .catalog-search { width: 100%; gap: .55rem; }
  .catalog-search input { width: 100%; min-width: 0; }
  .catalog-search button,
  .catalog-search-clear { flex-shrink: 0; }
  .filter-pill {
    width: 100%;
    text-align: center;
    font-size: .82rem;
    letter-spacing: .08em;
  }
  .catalog-search input { font-size: 1rem; }
  .catalog-search button,
  .catalog-search-clear { font-size: .8rem; letter-spacing: .12em; }
  .catalog-search button {
    width: 48px;
    min-width: 48px;
    padding: 0;
    gap: 0;
  }
  .catalog-search button span {
    display: none;
  }

  /* ── CATALOG GRID ── */
  .catalog-wrap { padding: 1.25rem 1.5rem 2rem; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* ── INSTAGRAM ── */
  .ig-section { padding: 2.25rem 1.5rem 2.5rem; }
  .ig-header { grid-template-columns: 1fr; gap: 1.25rem; }
  .ig-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82vw;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .25rem;
  }
  .ig-grid::-webkit-scrollbar { display: none; }
  .ig-card { scroll-snap-align: start; }

  /* ── PROD CARD (simplificado mobile) ── */
  .prod-card { border-radius: 10px; }
  .prod-img-area { aspect-ratio: 1; }
  .prod-img { width: 100%; height: 100%; object-fit: cover; }
  .prod-name { font-size: 1rem; }
  .prod-name a { font-size: 1rem; }
  .prod-sku { font-size: .65rem; }
  .prod-cap { font-size: .82rem; }
  .prod-tags { display: none; }
  .prod-footer { margin-top: .75rem; }
  .prod-link { font-size: .76rem; }
  .prod-info { padding: .85rem; }

  /* ── CATEGORIES PINNED → TOUCH SCROLL ── */
  .cats-section { overflow: hidden; }
  .cats-intro { padding: 2rem 1.5rem 1rem; flex-direction: column; align-items: flex-start; gap: .85rem; }
  .cats-intro-r { width: 100%; }
  .cats-controls { width: 100%; }
  .cats-prog { width: auto; }
  .cats-wrapper {
    overflow-x: auto; overflow-y: visible;
    padding: .75rem 2rem 1rem;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2rem;      /* snap positions align with left padding */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .cats-wrapper::-webkit-scrollbar { display: none; }
  .cats-track { grid-auto-columns: 78vw; gap: 1rem; padding-right: 2rem; }
  .cat-card { height: 420px; }
  .cat-name { font-size: 2.35rem; }
  .cat-desc { font-size: 1rem; line-height: 1.42; }

  /* ── MARQUEE ── */
  .marquee-wrap { padding: .9rem 0; }

  /* ── HISTORIA ── */
  .historia-section {
    grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 1.5rem;
  }
  .historia-mosaic {
    grid-template-rows: 240px 160px;
  }
  .historia-year { font-size: 3.5rem; }
  .historia-body { font-size: 1.05rem; }

  /* ── STATS ── */
  .nos-stats-section {
    grid-template-columns: 1fr 1fr; padding: 2.75rem 1.5rem; gap: 1.25rem;
  }
  .nos-stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.5rem; }
  .nos-stat:first-child, .nos-stat:nth-child(2) { border-top: none; padding-top: 0; }
  .nos-stat-num { font-size: 3rem; }
  .nos-stat-lbl { font-size: .9rem; }

  /* ── VALORES ── */
  .valores-section { padding: 2rem 1.5rem; background-attachment: scroll; }
  .valores-grid { grid-template-columns: 1fr; gap: 1rem; }
  .valores-header { margin-bottom: 3rem; }

  /* ── TIMELINE ── */
  .timeline-section { padding: 2rem 1.5rem; }
  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .timeline-nav { align-self: flex-end; }
  .timeline-nav-btn {
    width: 54px;
    height: 54px;
  }
  .timeline-track {
    grid-auto-columns: minmax(280px, 82vw);
    gap: 1rem;
    padding-bottom: .75rem;
  }
  .timeline-item { padding: 1.25rem; }
  .timeline-dot { margin-bottom: 1.1rem; }
  .timeline-year { font-size: 1.5rem; }

  /* ── CAPACIDAD ── */
  .nos-cap {
    grid-template-columns: 1fr; gap: 2.25rem; padding: 2rem 1.5rem;
    background-attachment: scroll;
  }
  .cap-mobile-nav {
    display: flex;
    margin-top: -.75rem;
  }
  .cap-nav-btn {
    width: 54px;
    height: 54px;
  }
  .nos-cap .cap-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: .9rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: .75rem;
  }
  .nos-cap .cap-grid::-webkit-scrollbar,
  .home-cap .cap-grid::-webkit-scrollbar { display: none; }
  .nos-cap .cap-grid,
  .home-cap .cap-grid {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nos-cap .cap-item { grid-column: auto; min-height: 245px; padding: 1.2rem; scroll-snap-align: start; }
  .nos-cap .cap-name { font-size: 1.15rem; }
  .nos-cap .cap-desc { font-size: 1rem; line-height: 1.46; }
  /* Home cap becomes mobile carousel */
  .cap-section.home-cap { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }
  .home-cap .cap-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: .9rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: .75rem;
  }
  .home-cap .cap-item,
  .home-cap .cap-item:nth-child(4),
  .home-cap .cap-item:nth-child(5) { grid-column: auto; }
  .home-cap .cap-item { min-height: 245px; padding: 1.2rem; scroll-snap-align: start; }
  .home-cap .cap-name { font-size: 1.15rem; }
  .home-cap .cap-desc { font-size: 1rem; line-height: 1.46; }

  /* ── IN-MOLD ── */
  .inmold-section { padding: 2rem 1.5rem; }
  .inmold-layout { grid-template-columns: 1fr; gap: 2rem; }
  .inmold-img-col { aspect-ratio: 16/9; order: -1; }
  .inmold-features { grid-template-columns: 1fr 1fr; gap: .6rem 1rem; }
  .feat-dot { width: 24px; height: 24px; }
  .feat-name { font-size: .94rem; }
  .feat-desc { font-size: .9rem; line-height: 1.42; }

  /* ── NOSOTROS CATS ── */
  .nos-cats-section { padding: 2rem 1.5rem; background-attachment: scroll; }
  .nos-cats-grid { grid-template-columns: 1fr; gap: .9rem; }
  .nos-cats-row2 { grid-template-columns: 1fr; gap: .9rem; }
  .nos-cat-card { height: 360px; }
  .nos-cats-row2 .nos-cat-card { height: 300px; }
  .nos-cats-header { flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }

  /* ── NOSOTROS CTA ── */
  .nos-cta-section { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem; }

  /* ── CONTACTO ── */
  .contacto-info { padding: 2rem 1.5rem; }
  .contacto-form-wrap { padding: 1.75rem 1.5rem; }
  .contacto-banda {
    grid-template-columns: 1fr 1fr; padding: 1.5rem 1.5rem;
    gap: 1.5rem 0;
  }
  .contacto-banda-sep:nth-child(2) { display: none; }
  .contacto-banda-sep:nth-child(4) { display: none; }
  .contacto-banda-sep:nth-child(6) { display: none; }
  .contacto-banda-item { border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 1.5rem; }
  .contacto-banda-item:nth-child(5),
  .contacto-banda-item:nth-child(7) { border-bottom: none; padding-bottom: 0; }
  .contacto-banda-val { font-size: 2.5rem; }
  .contacto-cta { padding: 2.375rem 1.5rem; background-attachment: scroll; }

  /* ── ARCHIVE HERO ── */
  .cat-hero { height: 50vh; min-height: 340px; }

  /* ── SINGLE PRODUCT ── */
  .prod-hero { height: 230px; }
  .prod-hero-bg { left: 0; width: 100%; }
  .prod-hero-overlay {
    background: linear-gradient(180deg,
      rgba(8,8,8,.35) 0%,
      rgba(8,8,8,.1)  30%,
      rgba(8,8,8,.7)  70%,
      rgba(8,8,8,.95) 100%);
  }
  .prod-hero-content { padding: 1.5rem 1.5rem 1.35rem; }
  .prod-hero .single-breadcrumb {
    flex-wrap: wrap;
    row-gap: .3rem;
    column-gap: .45rem;
    font-size: .72rem;
    letter-spacing: .13em;
    line-height: 1.35;
  }
  .prod-hero .single-breadcrumb span {
    flex: 0 0 auto;
  }
  .single-gallery-main {
    border-radius: 14px;
  }
  .single-main-img {
    padding: 1.4rem;
  }
  .single-gallery-thumbs {
    gap: .55rem;
  }
  .single-thumb {
    width: 58px;
    height: 58px;
    padding: .32rem;
  }
  .single-main .single-layout { grid-template-columns: 1fr; }
  .single-layout { display: flex; flex-direction: column; gap: 2.5rem; padding: 2.5rem 1.5rem 5rem; }
  .single-gallery { position: static; }
  .single-thumb-list { flex-direction: row; overflow-x: auto; gap: .5rem; }
  .single-thumb { width: 60px; height: 60px; flex-shrink: 0; }
  .pdf-modal { padding: .5rem; }
  .pdf-modal-dialog {
    width: calc(100vw - 1rem);
    height: calc(100svh - 1rem);
    max-height: none;
    border-radius: 12px;
  }
  .pdf-modal-header { padding: .85rem .9rem; }
  .single-info-wrap { padding: 0; }
  .single-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .single-related { padding: 3.5rem 1.5rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* ── FOOTER ── */
  .footer, .site-footer { padding: 3.5rem 1.5rem 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col--partner { grid-column: 1 / -1; }
  .footer-partner-logo { min-height: 0; }
  .footer-partner-logo img { max-height: 108px; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* ── SECTIONS PADDING ── */
  .s-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .stats-row, .stats-section { gap: 1.5rem; }

  /* ── CTA PANELS ── */
  .cta-dual { grid-template-columns: 1fr; }
  .cta-panel { padding: 4rem 1.5rem; }

  /* ── MISC ── */
  .cf-row--2 { flex-direction: column; }
  .nos-cats-section::before,
  .valores-section::before,
  .nos-cap::before { background: linear-gradient(rgba(8,8,8,.9) 0%, rgba(8,8,8,.95) 100%); }
}

@media (max-width: 520px) {
  .filter-bar {
    padding-top: 1rem;
    padding-bottom: 1.1rem;
    gap: .9rem;
  }
  .catalog-search {
    flex-wrap: nowrap;
    align-items: center;
  }
  .catalog-search input {
    flex: 1 1 80%;
    width: auto;
    min-width: 0;
  }
  .catalog-search button {
    flex: 0 0 20%;
    width: auto;
    min-width: 64px;
    max-width: 86px;
    justify-content: center;
  }
  .catalog-search-clear {
    flex: 1 1 100%;
    justify-content: center;
    margin-top: .55rem;
  }
}

@media (max-width: 640px) {
  .cats-track { grid-auto-columns: 80vw; }
  .cat-name { font-size: 2.1rem; }
}

/* ── Touch: disable GSAP pin for cats on mobile ── */
@media (max-width: 768px) {
  .cats-section.is-pinned-mobile-off { position: static !important; transform: none !important; }
}

/* ══════════════════════════════════════════════════════════
   PÁGINA DISTRIBUIDORES
   ══════════════════════════════════════════════════════════ */

/* ── Beneficios ── */
.dist-beneficios { padding: 2.25rem 5rem; background: var(--white); }
.dist-beneficios-inner { max-width: 1200px; margin: 0 auto; }
.dist-intro { max-width: 680px; margin-bottom: 4rem; }
.dist-intro-body { font-size: 1.1rem; color: var(--muted); margin-top: 1.25rem; line-height: 1.7; }
.dist-ben-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.dist-ben-card {
  padding: 2rem; border: 1px solid var(--border); border-radius: 4px;
  transition: border-color .2s, box-shadow .2s;
}
.dist-ben-card:hover { border-color: var(--red); box-shadow: 0 4px 24px rgba(232,0,29,.08); }
.dist-ben-icon {
  width: 46px; height: 46px; border-radius: 4px;
  background: rgba(232,0,29,.08); display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 1.25rem;
}
.dist-ben-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: .6rem;
}
.dist-ben-desc { font-size: 1rem; color: var(--muted); line-height: 1.62; }

/* ── Canales ── */
.dist-canales { padding: 2.25rem 5rem; background: var(--off); }
.dist-canales-inner { max-width: 1200px; margin: 0 auto; }
.dist-canales-header { margin-bottom: 3.5rem; }
.dist-canales-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.dist-canal-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 4px;
}
.dist-canal-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 4px;
  background: rgba(232,0,29,.07); display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.dist-canal-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1rem;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: .3rem;
}
.dist-canal-desc { font-size: .92rem; color: var(--muted); line-height: 1.52; }

/* ── Proceso / Steps ── */
.dist-proceso { padding: 2.25rem 5rem; background: var(--dark); }
.dist-proceso-inner { max-width: 900px; margin: 0 auto; }
.dist-proceso-header { margin-bottom: 3.5rem; }
.dist-proceso-header .s-label { color: rgba(255,255,255,.5); }
.dist-proceso-header .s-title { color: var(--white); }
.dist-proceso-sub { font-size: 1.05rem; color: rgba(255,255,255,.5); margin-top: 1rem; max-width: 560px; }
.dist-steps { display: flex; flex-direction: column; gap: 0; }
.dist-step {
  display: grid; grid-template-columns: 80px 1fr;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dist-step:last-child { border-bottom: none; }
.dist-step-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 900;
  color: rgba(255,255,255,.1); line-height: 1; padding-top: .1rem;
}
.dist-step-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--white); margin-bottom: .6rem;
}
.dist-step-desc { font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.dist-step-link {
  display: inline-block; margin-top: .9rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: .92rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); transition: color .2s;
}
.dist-step-link:hover { color: #ff1a35; }

/* ── CTA final ── */
.dist-cta { padding: 2.75rem 5rem; }

/* ══════════════════════════════════════════════════════════
   PÁGINA 404
   ══════════════════════════════════════════════════════════ */
.not-found-main {
  min-height: 100vh; background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem; position: relative; overflow: hidden;
}
.not-found-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .12;
}
.not-found-content { position: relative; z-index: 1; max-width: 600px; }
.not-found-code {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 900; line-height: .9; color: var(--red); letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.not-found-title {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800; text-transform: uppercase; color: var(--white);
  letter-spacing: .04em; margin-bottom: 1rem;
}
.not-found-desc { font-size: 1.05rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 2.5rem; }
.not-found-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   CF7 FORM — FLEX FIX (control-wrap inside cf-row--2)
   CF7 wraps both fields in a single <p>, so target that <p>
   ══════════════════════════════════════════════════════════ */
.cf-row--2 > p { display: flex; flex-direction: row; gap: 1rem; width: 100%; margin: 0; }
.cf-row--2 > p br { display: none; }
.cf-row--2 > p .wpcf7-form-control-wrap { flex: 1; min-width: 0; display: block; }
.cf-row--2 > p .wpcf7-form-control-wrap input { width: 100%; }
.wpcf7-form fieldset.hidden-fields-container { display: none; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (769px – 1100px) — home sections
   ══════════════════════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1100px) {
  /* Hero */
  .hero-content { padding: 0 3rem; }
  .hero-bullets  { left: 3rem; }
  .scroll-hint   { right: 3rem; }

  /* Quiénes somos */
  .qs-section { padding: 2rem 3rem 2.25rem; gap: 3rem; }
  .qs-grid { grid-template-rows: 260px 170px; }

  /* Stats (home) */
  .stats-section { grid-template-columns: 1fr 1fr; padding: 1.75rem 3rem; gap: 1.5rem 1.25rem; }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-left: none; padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.2); padding-top: 2rem; }

  /* Capacidad nosotros grid at this breakpoint */
  .nos-cap .cap-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1rem; }

  /* Industrias */
  .ind-section { padding: 2.375rem 3rem; }
  .ind-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Clientes */
  .clients-section { padding: 2rem 3rem; }
  .blog-section { padding: 2rem 3rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-pagination { flex-direction: column; align-items: flex-start; }
  .post-hero-meta { gap: .6rem; }
  .blog-archive-hero-inner {
    width: min(calc(100% - 6rem), 1440px);
    padding: 0 0 2.5rem;
  }
  .blog-archive-hero .cat-hero-content.blog-archive-hero-inner {
    width: min(calc(100% - 6rem), 1440px);
    padding: 0 0 2.5rem;
  }
  .blog-archive-hero .cat-hero-title { font-size: clamp(3.4rem, 7vw, 5.4rem); }

  /* CTA dark (home) */
  .cta-section { padding: 2.375rem 3rem; gap: 3rem; }

  /* Single producto */
  .single-wrap { padding: 1.5rem 3rem; gap: 3rem; }
  .single-related { padding: 1.625rem 3rem; }
  .related-grid { grid-template-columns: 1fr 1fr; }

  /* Catalog */
  .catalog-wrap { padding: 1.25rem 3rem 2rem; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }

  /* Filter bar */
  .filter-bar {
    padding: .85rem 3rem;
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
    align-items: center;
    gap: .9rem 1rem;
  }
  .filter-left {
    order: 1;
    flex: 0 0 auto;
  }
  .filter-pills {
    order: 2;
    flex: 1 1 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: .15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-pills::-webkit-scrollbar { display: none; }
  .filter-right {
    order: 3;
    flex: 1 1 100%;
    width: 100%;
    margin-left: 0;
  }
  .filter-left { font-size: .8rem; letter-spacing: .14em; }
  .filter-left span { font-size: 1rem; }
  .catalog-search {
    width: 100%;
  }
  .catalog-search input {
    width: 100%;
    min-width: 0;
  }
  .filter-pill { font-size: .84rem; letter-spacing: .08em; }
  .catalog-search input { font-size: 1rem; }
  .catalog-search button,
  .catalog-search-clear { font-size: .8rem; letter-spacing: .12em; }

  /* Single breadcrumb */
  .single-breadcrumb-bar { padding: 1.25rem 3rem; }
  .prod-hero-content { padding: 1.75rem 3rem 1.5rem; }

  /* Cat/page hero content */
  .cat-hero-content { padding: 0 3rem; width: 55%; }
  .page-hero-content { padding: 0 3rem 4rem; }
  .page-hero-logo-wrap {
    right: 3rem;
    bottom: 4rem;
    max-width: min(22vw, 200px);
  }

  /* Footer */
  .footer { padding: 1.875rem 3rem .9rem; }

  /* Distribuidores — tablet */
  .dist-beneficios, .dist-canales, .dist-proceso { padding: 2rem 3rem; }
  .dist-ben-grid { grid-template-columns: repeat(2, 1fr); }
  .dist-canales-grid { grid-template-columns: repeat(2, 1fr); }
  .dist-cta { padding: 2.5rem 3rem; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px) — additional fixes
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .hero-title--left { text-align: left; }
  .hero-title--right { text-align: right; }

  .hero {
    height: 88svh;
    min-height: 560px;
    max-height: 760px;
  }

  /* ── HERO (home) — content padding ── */
  .hero-content {
    padding: 0;
    max-width: 100%;
  }
  .hero-slide-img {
    object-position: center 32%;
  }

  /* ── QUIÉNES SOMOS (home) ── */
  .qs-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 2.125rem; gap: 2.5rem;
  }
  .qs-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 190px;
    gap: .85rem;
  }
  .qs-img:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }
  .qs-img:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
  }
  .qs-year { font-size: 3rem; }
  .qs-body { font-size: 1.18rem; }
  .qs-founded { gap: 1rem; }

  /* ── STATS (home red band) ── */
  .stats-section {
    grid-template-columns: 1fr 1fr;
    padding: 1.75rem 1.5rem; gap: 1.75rem 1rem;
  }
  .stat {
    border-left: none; padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.2); padding-top: 1.75rem;
  }
  .stat:first-child, .stat:nth-child(2) { border-top: none; padding-top: 0; }
  .stat-num { font-size: 2.8rem; }
  .stat-lbl { font-size: .95rem; }

  /* ── INDUSTRIAS ── */
  .ind-section { padding: 2.5rem 1.5rem; }
  .ind-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; width: 100%; }
  .ind-name { font-size: 1.05rem; }
  .ind-desc { font-size: 1.05rem; }

  /* ── CLIENTES ── */
  .clients-section { padding: 2rem 1.5rem; }
  .clients-header { margin-bottom: 2.5rem; }
  .blog-section { padding: 2.25rem 1.5rem; }
  .blog-header { grid-template-columns: 1fr; gap: 1.25rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-pagination { margin-top: 2rem; }
  .blog-archive-hero { min-height: 460px; }
  .blog-archive-hero-inner {
    width: calc(100% - 3rem);
    padding: 0 0 2.5rem;
  }
  .blog-archive-hero .cat-hero-content.blog-archive-hero-inner {
    width: calc(100% - 3rem);
    padding: 0 0 2.5rem;
  }
  .blog-archive-hero-copy { width: 100%; max-width: 100%; }
  .blog-archive-hero .cat-hero-title { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .blog-archive-breadcrumb {
    font-size: .74rem;
    letter-spacing: .11em;
    row-gap: .32rem;
    column-gap: .42rem;
    max-width: 100%;
  }
  .blog-archive-breadcrumb p,
  .blog-archive-breadcrumb a {
    flex: 0 0 auto;
  }
  .reading-progress { height: 3px; }
  .blog-post-hero .cat-hero-title {
    font-size: clamp(2.6rem, 10vw, 4.4rem);
    max-width: 100%;
  }
  .blog-post-hero .cat-hero-content {
    width: 100%;
    max-width: 100%;
    padding-top: 7rem;
    padding-bottom: 2.75rem;
  }
  .blog-post-hero.cat-hero--sm { min-height: 620px; }
  .post-hero-meta {
    row-gap: .42rem;
    column-gap: .52rem;
  }
  .post-hero-chip,
  .post-hero-meta-item {
    font-size: .64rem;
    letter-spacing: .12em;
    line-height: 1.35;
  }
  .post-hero-meta-sep { width: 10px; }

  /* ── CTA SECTION (home dark 2-col) ── */
  .cta-section {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem; gap: 2.5rem;
  }
  .cta-actions { flex-direction: row; flex-wrap: wrap; gap: .75rem; }

  /* ── INMOLD (home) ── */
  .inmold-grid { grid-template-columns: 1fr 1fr; }

  /* ── CAT HERO (archive/pages) — mobile full-width ── */
  .cat-hero-content { padding: 0 1.5rem 2.5rem; width: 100%; }

  /* ── PAGE HERO (nosotros/contacto) ── */
  .page-hero-content { padding: 0 1.5rem 3rem; }
  .page-hero-logo-wrap {
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: min(32vw, 150px);
  }
  .page-hero-logo {
    max-width: 150px;
    max-height: 72px;
  }

  /* ── SINGLE PRODUCTO ── */
  .single-wrap { grid-template-columns: 1fr; padding: 1rem 1.5rem 2rem; gap: 2rem; }
  .single-breadcrumb-bar { padding: 1rem 1.5rem; }
  .prod-hero-content { padding: 1.25rem 1.5rem; }
  .single-related { padding: 1.5rem 1.5rem; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: .85rem; }

  /* ── CATALOG ── */
  .catalog-wrap { padding: 1rem 1.5rem 2rem; }
  .filter-bar { padding: .5rem 1.5rem; }

  /* ── FOOTER ── */
  .footer { padding: 1.75rem 1.5rem 1rem; }

  /* ── CF7 — submit full width on mobile ── */
  .wpcf7-form input[type="submit"] {
    width: 100%; text-align: center;
  }

  /* ── CF7 2-col rows → stack on mobile ── */
  .cf-row--2 > p { flex-direction: column; gap: .75rem; }

  /* ── CONTACTO SPLIT — padding reduction ── */
  .contacto-info { padding: 2rem 1.5rem; }
  .contacto-form-wrap { padding: 1.75rem 1.5rem; }
  .contacto-form-sub { margin-bottom: 2rem; }

  /* ── CONTACTO BANDA — 2x2 grid ── */
  .contacto-banda-val { font-size: 2.2rem; }

  /* ── NOS CTA buttons ── */
  .nos-cta-actions { flex-direction: row; flex-wrap: wrap; gap: .75rem; }
  .btn-dark, .btn-outline-red { width: 100%; text-align: center; justify-content: center; }

  /* ── PAGE HERO TITLE ── */
  .page-hero-title { font-size: clamp(2.8rem, 10vw, 4.5rem); }

  /* ── HISTORIA mosaic on mobile: stack ── */
  .historia-mosaic { grid-template-columns: 1fr; grid-template-rows: 200px; }
  .mosaic-img.mosaic-span { grid-column: 1; grid-row: 1; }
  .historia-section { gap: 2rem; }

  /* ── DISTRIBUIDORES — mobile ── */
  .dist-beneficios, .dist-canales, .dist-proceso { padding: 2rem 1.5rem; }
  .dist-ben-grid { grid-template-columns: 1fr; }
  .dist-canales-grid { grid-template-columns: 1fr; }
  .dist-cta { padding: 3rem 1.5rem; }
  .dist-step { grid-template-columns: 56px 1fr; }
  .dist-step-num { font-size: 2.5rem; }

  /* ── 404 — mobile ── */
  .not-found-actions { flex-direction: column; align-items: center; }
  .not-found-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 640px) {
  .blog-card-title { font-size: 1.65rem; }
}
