/* ============================================
   NJOYBCN — Estilos globales
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; background: #f5f4f0; color: #1a1a1a; }

:root {
  --red: #c41e1e;
  --dark: #111;
  --light-bg: #f5f4f0;
  --white: #fff;
  --green: #1a5c38;
  --serif: 'Instrument Serif', Georgia, serif;
}

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ---- NAV (new SVG logo version) ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  border-bottom: 1px solid #e0e0e0;
  transition: background .3s;
}
.nav.nav-light { background: var(--white); }
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 28px; width: auto; }
.nav .nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav .nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color .2s;
}
.nav .nav-links a:hover { color: var(--red); }
.nav .nav-links a.active { border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.btn--cta {
  background: var(--red); color: white !important; border: none;
  padding: 8px 18px; font-size: 14px; font-weight: 600;
  cursor: pointer; border-radius: 4px; font-family: inherit;
  text-decoration: none;
}
.btn--cta:hover { opacity: 0.9; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
}

/* Mobile Overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-overlay a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}
.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

/* Legacy nav compat (keep for any old pages that still use it) */
nav:not(.nav) {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { font-size: 20px; font-weight: 700; letter-spacing: -0.5px; cursor: pointer; }
.logo span:first-child { color: var(--red); }
nav:not(.nav) .nav-links { display: flex; gap: 2rem; list-style: none; }
nav:not(.nav) .nav-links li a { text-decoration: none; color: #333; font-size: 14px; cursor: pointer; }
nav:not(.nav) .nav-links li a.active { border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.nav-cta {
  background: var(--red); color: white; border: none;
  padding: 8px 18px; font-size: 14px; font-weight: 600;
  cursor: pointer; border-radius: 2px; font-family: inherit;
}

/* ---- HERO ---- */
.hero {
  background: var(--dark); color: white;
  padding: 80px 2rem;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
}
.hero-text { max-width: 780px; text-align: center; }
.hero-text h1 { font-size: clamp(28px, 4.5vw, 52px); font-weight: 900; line-height: 1.15; letter-spacing: -.02em; }
.hero-text h1 em { font-family: var(--serif); color: var(--red); font-style: italic; font-weight: 400; }
.hero-text p { color: #aaa; margin: 1.5rem auto; font-size: 16px; max-width: 500px; line-height: 1.7; }
.btn-primary {
  background: white; color: black; border: none;
  padding: 12px 28px; font-size: 15px; font-weight: 600;
  cursor: pointer; border-radius: 2px; font-family: inherit;
}

/* ---- SECCIONES ---- */
.section { padding: 64px 2rem; }
.section-label { color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(24px, 4vw, 40px); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.section-title em { color: var(--red); font-style: italic; }
.section-dark { background: var(--dark); color: white; }
.section-dark .section-title { color: white; }

/* ---- CTA BLOCK ---- */
.cta-block {
  background: var(--red); color: white;
  padding: 64px 2rem; text-align: center;
  border-radius: 12px; margin: 0 2rem 0;
}
.cta-block-wrap { background: var(--light-bg); padding: 48px 0; }
.cta-block h2 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 900; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-w { background: white; color: var(--red); border: none; padding: 13px 28px; font-size: 15px; font-weight: 700; cursor: pointer; border-radius: 3px; font-family: inherit; }
.btn-cta-o { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); padding: 13px 24px; font-size: 15px; font-weight: 600; cursor: pointer; border-radius: 3px; font-family: inherit; }

/* ---- CAROUSEL ---- */
.carousel-wrap { overflow: hidden; }
.carousel-track { display: flex; gap: 20px; animation: slide 30s linear infinite; width: max-content; }
@keyframes slide { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.carousel-track:hover { animation-play-state: paused; }
.proj-card { width: 270px; flex-shrink: 0; background: var(--white); border-radius: 6px; overflow: hidden; }
.proj-card-img { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #aaa; overflow: hidden; padding: 1rem; }
.proj-card-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.proj-card-img.blue { background: #e8ecf5; color: #8090bb; }
.proj-card-img.cream { background: #f5efe0; color: #bba080; }
.proj-card-img.lavender { background: #ede8f5; color: #9080bb; }
.proj-card-img.pink { background: #f5e8e8; color: #bb8080; }
.proj-card-body { padding: 14px 16px; }
.proj-card-body h3 { font-size: 14px; font-weight: 700; }
.proj-tag { display: inline-block; font-size: 11px; background: #f0ece5; padding: 3px 9px; border-radius: 3px; margin-top: 5px; color: #666; }

/* ---- LOGOS STRIP ---- */
.logos-strip { background: var(--white); padding: 36px 2rem; overflow: hidden; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.logos-strip h3 { text-align: center; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #999; margin-bottom: 24px; }
.logos-track { display: flex; gap: 48px; animation: logos 30s linear infinite; width: max-content; align-items: center; }
@keyframes logos { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.logo-item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; height: 40px; }
.logo-item img { height: 32px; width: auto; object-fit: contain; }
.logo-item--lg { height: 56px; }
.logo-item--lg img { height: 52px; }

/* ---- STATS ---- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 3rem; }
.stat-card { background: #1e1e1e; padding: 2rem 1.5rem; text-align: center; }
.stat-num { font-size: 40px; font-weight: 900; color: white; }
.stat-label { color: #888; font-size: 13px; margin-top: 6px; }

/* ---- FEAT CARDS ---- */
.feat-card { border-top: 3px solid var(--red); background: var(--white); padding: 1.25rem; border-radius: 2px; }
.feat-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonial { border-left: 3px solid var(--red); padding: 1rem 1.5rem; margin-bottom: 1.5rem; background: var(--white); }
.testimonial blockquote { font-size: 14px; color: #444; line-height: 1.7; font-style: italic; }
.testimonial cite { display: block; margin-top: 8px; font-size: 12px; color: #999; font-style: normal; font-weight: 600; }

/* ---- SOSTENIBILIDAD (VERDE) ---- */
.sust-section { background: var(--green); padding: 64px 2rem; }
.sust-title { font-size: clamp(22px, 3.5vw, 36px); font-weight: 900; line-height: 1.1; color: white; text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
.sust-title em { color: #7ecda0; font-style: italic; }
.sust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 860px; margin: 0 auto; }
.sust-item { background: rgba(255,255,255,0.08); padding: 1.5rem; border-radius: 4px; border-top: 3px solid #7ecda0; }
.sust-item h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.sust-item p { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.6; }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 2rem; }
.service-card { background: var(--white); border-radius: 6px; padding: 1.75rem; border-top: 3px solid var(--red); }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* ---- LOGISTICS ---- */
.logistics-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 2rem 0; }
.log-card { background: #1e1e1e; border-top: 3px solid var(--red); padding: 1.5rem; }
.log-num { font-size: 36px; font-weight: 900; color: white; }
.log-label { color: #888; font-size: 13px; margin-top: 4px; }
.flags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2rem; font-size: 22px; }

/* ---- PROCESO (círculos conectados) ---- */
.proceso-section { background: var(--light-bg); padding: 72px 2rem; text-align: center; }
.proceso-pill { display: inline-block; background: #fde8e8; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.proceso-title { font-size: clamp(26px, 4vw, 42px); font-weight: 900; margin-bottom: 8px; color: #111; }
.proceso-subtitle { font-size: 15px; color: #888; margin-bottom: 56px; }
.proceso-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto; position: relative; }
.proceso-step { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.proceso-step-top { display: flex; align-items: center; width: 100%; justify-content: center; position: relative; margin-bottom: 20px; }
.proceso-circle { width: 64px; height: 64px; border-radius: 50%; background: var(--red); color: white; font-size: 17px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 2; }
.proceso-line { flex: 1; height: 2px; background: var(--red); opacity: 0.35; }
.proceso-step:first-child .proceso-line-left { display: none; }
.proceso-step:last-child .proceso-line-right { display: none; }
.proceso-step h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: #111; }
.proceso-step p { font-size: 13px; color: #666; line-height: 1.6; max-width: 180px; }

/* ---- PROYECTOS ---- */
.proj-hero { background: var(--dark); color: white; padding: 64px 2.5rem 48px; text-align: center; position: relative; overflow: hidden; }
.proj-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 120%, rgba(196,30,30,.08) 0%, transparent 60%); }
.proj-hero h1 { font-size: clamp(22px, 3.2vw, 38px); font-weight: 900; margin-bottom: 12px; letter-spacing: -.02em; position: relative; }
.proj-hero p { color: #aaa; font-size: 15px; position: relative; }
.proj-hero-sub { font-size: 17px !important; color: #ccc !important; margin-top: 12px; }
.proj-hero-sub em { font-family: 'Playfair Display', Georgia, serif; color: var(--red); font-style: italic; }

.proj-cat-section { padding: 52px 2rem 0; background: var(--light-bg); }
.proj-cat-title { font-size: 20px; font-weight: 900; margin-bottom: 22px; color: #111; }
.proj-items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.proj-item { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid #eee; }
.proj-item-img { height: 280px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #aaa; overflow: hidden; padding: 1rem; }
.proj-item-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.pi-blue { background: #e8ecf5; color: #8090bb; }
.pi-cream { background: #f5efe0; color: #bba080; }
.pi-lav { background: #ede8f5; color: #9080bb; }
.pi-pink { background: #f5e8e8; color: #bb8080; }
.pi-ora { background: #fff0e5; color: #bb8050; }
.pi-grn { background: #e8f5ee; color: #80bb90; }
.pi-yel { background: #fdf5e0; color: #b8a060; }
.proj-item-body { padding: 14px 16px; }
.proj-item-tag { font-size: 11px; color: var(--red); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.proj-item-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: #111; }
.proj-item-desc { font-size: 13px; color: #666; line-height: 1.6; }

.proj-dl-red { background: var(--red); padding: 56px 2.5rem; text-align: center; }
.proj-dl-red h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; color: #fff; margin-bottom: 10px; letter-spacing: -.02em; }
.proj-dl-red p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.7; margin-bottom: 2rem; max-width: 440px; margin-left: auto; margin-right: auto; }
.btn-dl-white { background: #fff; color: var(--red); border: none; padding: 14px 32px; font-size: 14px; font-weight: 700; cursor: pointer; border-radius: 8px; font-family: inherit; transition: transform .2s, box-shadow .2s; }
.btn-dl-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.proj-cta-dark { background: var(--dark); padding: 28px 2.5rem; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.proj-cta-text { color: #999; font-size: 14px; margin: 0; }
.proj-cta-actions { display: flex; gap: 12px; align-items: center; }
.btn-cta-outline { background: transparent; color: #fff; border: 1px solid #444; padding: 10px 22px; font-size: 13px; font-weight: 600; cursor: pointer; border-radius: 6px; font-family: inherit; transition: border-color .2s; }
.btn-cta-outline:hover { border-color: #888; }
.proj-cta-phone { color: #555; font-size: 13px; }

/* Keep old proj-dl for backward compat */
.proj-dl { background: var(--white); padding: 48px 2rem; text-align: center; border-top: 1px solid #eee; }
.proj-dl h2 { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.proj-dl p { color: #666; font-size: 14px; margin-bottom: 1.5rem; }
.btn-dl { background: var(--dark); color: white; border: none; padding: 13px 28px; font-size: 14px; font-weight: 700; cursor: pointer; border-radius: 4px; font-family: inherit; }

/* ---- CATÁLOGOS ---- */
.cat-hero { background: var(--dark); color: white; padding: 64px 2rem 48px; text-align: center; position: relative; overflow: hidden; }
.cat-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 120%, rgba(196,30,30,.08) 0%, transparent 60%); }
.cat-hero h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 900; margin-bottom: 10px; letter-spacing: -.02em; position: relative; line-height: 1.05; }
.cat-hero h1 em { font-family: var(--serif); color: var(--red); font-style: italic; font-weight: 400; }
.cat-hero p { color: #888; font-size: 15px; position: relative; }
.cat-online { padding: 52px 2rem; background: var(--light-bg); }
.cat-slabel { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #999; margin-bottom: 10px; }
.cat-stitle { font-size: 22px; font-weight: 900; margin-bottom: 1.75rem; color: #111; }
.cat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card { background: var(--white); border-radius: 8px; padding: 2rem; border: 1px solid #eee; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: inherit; transition: box-shadow .2s, border-color .2s; }
.cat-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: #ccc; }
.cat-card h3 { font-size: 17px; font-weight: 800; color: #111; }
.cat-card p { font-size: 13px; color: #666; line-height: 1.6; flex: 1; }
.cat-card-link { color: var(--red); font-size: 13px; font-weight: 700; }
.cat-custom { padding: 52px 2rem; background: var(--white); border-top: 1px solid #eee; }
.cat-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 1.75rem 0 2.5rem; }
.cat-feat { background: var(--light-bg); border-radius: 8px; padding: 1.5rem; }
.cat-feat-icon { width: 38px; height: 38px; background: #fee; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 12px; }
.cat-feat h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #111; }
.cat-feat p { font-size: 13px; color: #666; line-height: 1.6; }
.cat-cta-dark { background: var(--dark); border-radius: 10px; padding: 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cat-cta-dark h3 { font-size: 19px; font-weight: 800; color: white; margin-bottom: 6px; }
.cat-cta-dark p { color: #aaa; font-size: 14px; line-height: 1.6; }
.cat-cta-btns { display: flex; gap: 10px; flex-direction: column; flex-shrink: 0; }
.btn-wsm { background: white; color: black; border: none; padding: 11px 20px; font-size: 13px; font-weight: 700; cursor: pointer; border-radius: 4px; font-family: inherit; white-space: nowrap; }
.btn-osm { background: transparent; color: white; border: 1px solid #555; padding: 11px 20px; font-size: 13px; font-weight: 600; cursor: pointer; border-radius: 4px; font-family: inherit; white-space: nowrap; }

/* ---- CONTACTO ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.contact-flujo { background: var(--white); border-radius: 6px; padding: 2rem; }
.contact-flujo.special { border-top: 3px solid var(--red); }
.flujo-title { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.flujo-desc { font-size: 13px; color: #666; margin-bottom: 1.5rem; }
.contact-info-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.form-field { width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; margin-bottom: 12px; background: #fafafa; outline: none; font-family: inherit; }
.form-field:focus { border-color: var(--red); }
.form-submit { background: var(--red); color: white; border: none; padding: 13px 28px; font-size: 14px; font-weight: 700; cursor: pointer; border-radius: 4px; width: 100%; font-family: inherit; }
.no-form-note { font-size: 12px; color: #aaa; font-style: italic; margin-top: 1.5rem; }

/* ---- DUO BLOCK (Stock + Medida) ---- */
.duo-block { background: var(--white); padding: 56px 2rem; }
.duo-inner { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo-card { background: var(--light-bg); border-radius: 12px; padding: 2.25rem; border-left: 4px solid var(--red); }
.duo-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; color: #111; }
.duo-card p { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }
.btn-explorar {
  background: var(--red); color: #fff; border: none;
  padding: 14px 30px; font-size: 14px; font-weight: 700;
  cursor: pointer; border-radius: 8px; font-family: inherit;
  transition: transform .2s, box-shadow .2s;
}
.btn-explorar:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,30,30,.25); }

/* ---- FOOTER (new 4-column version) ---- */
.footer {
  background: var(--dark);
  color: #999;
  padding: 4rem 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand p {
  color: #888;
  font-size: 13px;
  line-height: 1.7;
  max-width: 300px;
}
.footer h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 8px;
}
.footer ul li a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.footer ul li a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #222;
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 12px;
  color: #666;
}

/* Legacy footer compat */
footer:not(.footer) { background: var(--dark); color: #888; padding: 1.5rem 2rem; text-align: center; font-size: 12px; border-top: 1px solid #222; }
footer:not(.footer) a { color: #888; text-decoration: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  nav:not(.nav) .nav-links { display: none; }
  .stats-grid,
  .logistics-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid,
  .sust-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .proj-items-grid,
  .cat-cards,
  .cat-feats { grid-template-columns: 1fr; }
  .proj-cta-dark { flex-direction: column; text-align: center; gap: 1rem; }
  .proceso-steps { flex-direction: column; gap: 2rem; }
  .proceso-line { display: none; }
  .cat-cta-dark { flex-direction: column; text-align: center; }
  .duo-inner { grid-template-columns: 1fr; }
}
