:root {
  --catalog-navy: #102d38;
  --catalog-blue: #097ebc;
  --catalog-green: #3d983f;
  --catalog-ink: #0b2030;
  --catalog-muted: #526776;
  --catalog-line: #dbe5ea;
  --catalog-soft: #f6f8f9;
  --catalog-white: #ffffff;
}

/* Contenido editorial, cobertura y respuestas técnicas */
.knowledge-section {
  background: #f6f8f9;
}

.knowledge-grid,
.coverage-grid,
.answer-grid,
.guide-grid {
  display: grid;
  gap: 18px;
}

.knowledge-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.knowledge-card,
.coverage-card,
.answer-card,
.guide-card {
  padding: 26px;
  border: 1px solid var(--catalog-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 45, 56, 0.06);
}

.knowledge-card b,
.coverage-card b,
.answer-card b,
.guide-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--catalog-blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.knowledge-card h3,
.coverage-card h3,
.answer-card h3,
.guide-card h2,
.guide-card h3 {
  margin-bottom: 10px;
}

.knowledge-card p,
.coverage-card p,
.answer-card p,
.guide-card p {
  margin-bottom: 0;
}

.coverage-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
}

.coverage-map {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  background:
    radial-gradient(circle at 76% 22%, rgba(91, 170, 199, 0.42), transparent 25%),
    radial-gradient(circle at 32% 74%, rgba(61, 152, 63, 0.28), transparent 28%),
    linear-gradient(145deg, #102d38, #1f3b48);
  color: #fff;
}

.coverage-map::before {
  content: "CL";
  position: absolute;
  top: 6px;
  right: 24px;
  color: rgba(255, 255, 255, 0.07);
  font: 900 clamp(8rem, 20vw, 15rem)/1 Archivo, sans-serif;
}

.coverage-map > * {
  position: relative;
  z-index: 1;
}

.coverage-map span {
  color: #8bdcf6;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coverage-map h2,
.coverage-map p {
  color: #fff;
}

.coverage-list {
  display: grid;
  gap: 14px;
}

.coverage-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.coverage-card strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e9f5fa;
  color: var(--catalog-blue);
  font-weight: 900;
}

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

.answer-card h3 {
  font-size: 1.08rem;
}

/* Página de cobertura: contenido conciso y legible en móvil */
.coverage-page-main {
  padding: 48px 0 !important;
  background: #edf1f2;
}

.coverage-page-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: 44px;
  align-items: center;
}

.coverage-page-copy h2 {
  max-width: 620px;
  margin: 8px 0 14px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.coverage-page-copy > p {
  max-width: 660px;
  margin: 0 0 22px;
  color: var(--catalog-muted);
}

.coverage-city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-city-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid #d7e1e5;
  border-radius: 10px;
  background: #fff;
  font-size: .75rem;
}

.coverage-city-list strong { color: var(--catalog-ink); }
.coverage-city-list span { color: var(--catalog-muted); }
.coverage-city-list .is-base { border-color: rgba(61, 152, 63, .5); background: #f1f9f1; }
.coverage-city-list .is-base strong { color: #2f7d33; }

.coverage-page-map {
  margin: 0;
  padding: 16px 18px 10px;
  border: 1px solid #d7e1e5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 45, 56, .08);
}

.coverage-page-map img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.coverage-page-map figcaption {
  padding: 9px 0 2px;
  border-top: 1px solid #e6ecee;
  color: #687a82;
  font-size: .68rem;
  text-align: center;
}

.coverage-process {
  padding: 48px 0 !important;
  background: #fff;
}

.coverage-process-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.coverage-process-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
}

.coverage-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.coverage-process-grid article {
  padding: 18px;
  border: 1px solid var(--catalog-line);
  border-radius: 13px;
  background: #f7f9fa;
}

.coverage-process-grid b { color: var(--catalog-blue); font-size: .72rem; }
.coverage-process-grid h3 { margin: 8px 0 6px; font-size: .95rem; }
.coverage-process-grid p { margin: 0; color: var(--catalog-muted); font-size: .78rem; }
.coverage-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

@media (max-width: 820px) {
  .coverage-page-layout { grid-template-columns: 1fr; gap: 24px; }
  .coverage-page-map { order: -1; }
  .coverage-page-map img { max-height: 400px; }
  .coverage-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .coverage-page-main,
  .coverage-process { padding: 30px 0 !important; }
  .coverage-page-map { padding: 10px 10px 7px; border-radius: 14px; }
  .coverage-page-map img { max-height: 330px; }
  .coverage-city-list,
  .coverage-process-grid { grid-template-columns: 1fr; }
  .coverage-city-list li { padding: 10px 12px; }
  .coverage-actions .button { width: 100%; }
}

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

.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.guide-card .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 42px;
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin-top: 48px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.article-body h3 {
  margin-top: 30px;
}

.article-body p,
.article-body li {
  color: var(--catalog-muted);
  line-height: 1.75;
}

.article-body li + li {
  margin-top: 9px;
}

.article-aside {
  position: sticky;
  top: 26px;
  padding: 22px;
  border: 1px solid var(--catalog-line);
  border-radius: 14px;
  background: #f6f8f9;
}

.article-aside a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--catalog-line);
  color: var(--catalog-blue);
  font-weight: 800;
}

.fact-band {
  padding: 34px 0 !important;
  background: var(--catalog-navy);
  color: #fff;
}

.fact-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fact-band-grid div {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.fact-band-grid strong,
.fact-band-grid span {
  display: block;
}

.fact-band-grid strong {
  font-size: 1.05rem;
}

.fact-band-grid span {
  margin-top: 5px;
  color: #c8d9df;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .knowledge-grid,
  .coverage-grid,
  .answer-grid,
  .guide-grid,
  .article-layout,
  .fact-band-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .fact-band-grid div {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

/* Página institucional */
.identity-hero {
  overflow: hidden;
  background: linear-gradient(135deg, #102d38 0%, #173d4a 58%, #0b2430 100%);
  color: #fff;
}

.identity-hero-grid,
.identity-intro-grid,
.identity-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.identity-hero-copy {
  padding: 34px 0;
}

.identity-hero-copy h1,
.identity-hero-copy p {
  color: #fff;
}

.identity-hero-copy p {
  max-width: 700px;
  font-size: 1.08rem;
}

.identity-hero-media {
  min-height: 520px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.identity-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 24, 32, 0.78));
}

.identity-hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.identity-hero-media figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.identity-intro-grid {
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
}

.identity-intro-grid > span {
  color: var(--catalog-blue);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.identity-intro-grid h2 {
  max-width: 880px;
}

.identity-intro-grid p {
  max-width: 820px;
  font-size: 1.03rem;
  line-height: 1.75;
}

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

.purpose-card {
  min-height: 330px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 20px;
  color: #fff;
}

.purpose-card-mission {
  background: linear-gradient(145deg, #087dbb, #15526e);
}

.purpose-card-vision {
  background: linear-gradient(145deg, #3d983f, #21632b);
}

.purpose-card small {
  margin-bottom: auto;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.purpose-card h3,
.purpose-card p {
  color: #fff;
}

.purpose-card h3 {
  max-width: 520px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.purpose-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

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

.value-card {
  min-height: 250px;
  padding: 23px;
  border-top: 4px solid var(--catalog-blue);
  background: #f6f8f9;
}

.value-card b {
  color: var(--catalog-green);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.value-card h3 {
  margin-top: 46px;
}

.identity-story {
  background: #102d38;
  color: #fff;
}

.identity-story-grid {
  align-items: start;
}

.identity-story h2,
.identity-story h3,
.identity-story p {
  color: #fff;
}

.identity-story-heading {
  position: sticky;
  top: 26px;
}

.identity-story-heading p,
.identity-timeline p {
  color: #bfd0d7;
}

.identity-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: story;
}

.identity-timeline li {
  min-height: 190px;
  padding: 8px 0 34px 66px;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.identity-timeline li::before {
  counter-increment: story;
  content: counter(story, decimal-leading-zero);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 0;
  left: -22px;
  border-radius: 50%;
  background: var(--catalog-green);
  color: #fff;
  font-weight: 900;
}

.identity-timeline b {
  color: #7dd7f5;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.people-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.people-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #102d38;
}

.people-card-large {
  grid-row: 1 / 3;
}

.people-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(4, 21, 29, 0.86));
}

.people-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.people-card:hover img {
  transform: scale(1.025);
}

.people-card figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: #fff;
}

.people-card figcaption b,
.people-card figcaption span {
  display: block;
}

.people-card figcaption span {
  margin-top: 4px;
  color: #c5d7de;
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .identity-hero-grid,
  .identity-intro-grid,
  .identity-story-grid,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .identity-hero-media,
  .identity-hero-media img {
    min-height: 390px;
    height: 390px;
  }

  .identity-story-heading {
    position: static;
  }

  .people-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 320px);
  }

  .people-card-large {
    grid-row: auto;
  }
}

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

  .purpose-card {
    min-height: 300px;
    padding: 28px;
  }

  .people-grid {
    grid-template-rows: repeat(3, 270px);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.catalog-site {
  margin: 0;
  overflow-x: hidden;
  background: #f1f3f4;
  color: var(--catalog-ink);
  font-family: Poppins, system-ui, sans-serif;
  line-height: 1.55;
}

body.catalog-site a {
  color: inherit;
  text-decoration: none;
}

body.catalog-site .ma-menu a {
  color: #fff;
}

body.catalog-site img {
  display: block;
  max-width: 100%;
}

body.catalog-site main > section {
  padding: 82px 0;
}

body.catalog-site main > section + section {
  border-top: 1px solid var(--catalog-line);
}

.catalog-site h1,
.catalog-site h2,
.catalog-site h3 {
  margin-top: 0;
  font-family: Poppins, sans-serif;
  line-height: 1.04;
}

.catalog-site h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.8vw, 4.25rem);
  letter-spacing: -0.05em;
}

.catalog-site h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  letter-spacing: -0.045em;
}

.catalog-site h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.catalog-site p {
  color: var(--catalog-muted);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--catalog-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--catalog-line);
  border-radius: 9px;
  background: #fff;
  color: var(--catalog-ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.button.primary {
  border-color: var(--catalog-green);
  background: linear-gradient(135deg, var(--catalog-green), #51b455);
  box-shadow: 0 14px 28px rgba(61, 152, 63, 0.22);
  color: #fff;
}

.button.secondary {
  border-color: rgba(9, 126, 188, 0.35);
  color: var(--catalog-blue);
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.catalog-site .home-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--catalog-navy);
  color: #fff;
}

body.catalog-site .home-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 48%;
  background:
    linear-gradient(90deg, var(--catalog-navy), rgba(16, 45, 56, 0.16)),
    url("Imagen1.png") center 18% / cover no-repeat;
  opacity: 0.94;
}

body.catalog-site .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 25% 30%,
    rgba(9, 126, 188, 0.22),
    transparent 32%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.home-hero h1 {
  color: #fff;
}

.home-hero p {
  max-width: 680px;
  margin: 0 0 30px;
  color: #dce9ee;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.home-hero .visual-note {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
}

.visual-note,
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(16, 45, 56, 0.78);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.route-section {
  margin-top: -34px;
  position: relative;
  z-index: 4;
  padding-top: 0 !important;
}

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

.route-card {
  margin: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--catalog-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(16, 45, 56, 0.09);
  transition: 0.2s ease;
}

.route-card:hover {
  transform: translateY(-5px);
  border-color: rgba(9, 126, 188, 0.45);
}

.route-number {
  color: var(--catalog-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.route-card h2 {
  margin: 28px 0 10px;
  font-size: 1.8rem;
}

.route-card p {
  margin: 0 0 20px;
}

.route-card b {
  margin-top: auto;
  color: var(--catalog-blue);
  font-size: 0.86rem;
}

.section-heading {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}

.section-heading > div:first-child {
  max-width: 720px;
}

.section-heading p {
  max-width: 640px;
  margin: 0;
}

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

.catalog-card,
.project-card {
  overflow: hidden;
  border: 1px solid var(--catalog-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 45, 56, 0.06);
}

.machine-visual {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(9, 126, 188, 0.1), transparent),
    repeating-linear-gradient(
      135deg,
      #eaf1f4 0,
      #eaf1f4 1px,
      #f8fafb 1px,
      #f8fafb 13px
    );
  color: var(--catalog-navy);
}

.machine-visual span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 6px;
  background: #fff;
  color: var(--catalog-blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.machine-visual strong {
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.machine-visual-photo,
.machine-teaser-photo {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #dfe8eb;
}

.machine-visual-photo img,
.machine-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.02) brightness(1.03);
}

.machine-visual-photo span,
.machine-teaser-photo span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(47, 126, 52, 0.9);
  color: #fff;
}

.catalog-card-body {
  padding: 22px;
}

.catalog-card-body p {
  min-height: 70px;
  margin: 0 0 16px;
  font-size: 0.92rem;
}

.catalog-card-body ul {
  min-height: 90px;
  margin: 0;
  padding-left: 18px;
  color: var(--catalog-muted);
  font-size: 0.83rem;
}

.catalog-card-body li + li {
  margin-top: 5px;
}

.card-meta,
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card-meta {
  margin-bottom: 14px;
  color: var(--catalog-blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-meta .status-pill {
  border-color: #d7e2e7;
  background: #eef3f5;
  color: #4f6572;
  letter-spacing: 0;
  text-transform: none;
}

.card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--catalog-line);
  font-size: 0.78rem;
}

.card-footer b {
  color: var(--catalog-muted);
}

.card-footer a,
.text-link {
  color: var(--catalog-blue);
  font-weight: 900;
}

.card-links {
  display: grid;
  gap: 5px;
  text-align: right;
}

.card-links a:last-child {
  color: var(--catalog-green);
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #eaf0f2;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.18) contrast(1.02) brightness(1.06);
}

.service-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(16, 45, 56, 0.84);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
}

.service-image .real-media-label {
  background: rgba(47, 126, 52, 0.9);
}

.service-card .catalog-card-body p {
  min-height: 86px;
}

.service-card-text {
  min-height: 250px;
  border-style: dashed;
  background:
    radial-gradient(circle at 100% 0, rgba(9, 126, 188, 0.08), transparent 38%),
    #fff;
}

.service-card-text .catalog-card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-text .catalog-card-body p {
  min-height: 0;
}

.service-card-text .text-link {
  margin-top: auto;
}

.catalog-note {
  margin: 20px 0 0;
  color: var(--catalog-muted);
  font-size: 0.78rem;
}

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

.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--catalog-line);
  border-radius: 16px;
  background: #fff;
}

.project-media {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: 330px 94px;
  overflow: hidden;
  background: #eaf0f2;
}

.project-main-image {
  width: 100%;
  height: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.18) contrast(1.02) brightness(1.06);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding-top: 4px;
  background: #fff;
}

.project-gallery img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.project-gallery img:nth-child(n + 5) { display: none; }

.case-study-summary {
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}

.case-study-summary div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--catalog-line);
}

.case-study-summary dt { color: var(--catalog-blue); font-size: .7rem; font-weight: 900; text-transform: uppercase; }
.case-study-summary dd { margin: 0; color: var(--catalog-muted); font-size: .8rem; line-height: 1.45; }

.project-process {
  margin-top: 1rem;
  border-top: 1px solid rgba(31, 59, 72, 0.14);
  padding-top: 0.8rem;
}

.project-process summary {
  color: var(--catalog-blue);
  cursor: pointer;
  font-weight: 800;
}

.project-process[open] summary {
  margin-bottom: 0.75rem;
}

.project-copy {
  padding: 26px;
  flex: 1;
}

.process-video-section {
  background: #edf3f6;
}

.process-video-section .compact-heading p {
  max-width: 360px;
  margin: 0;
  color: var(--catalog-muted);
  font-size: 0.82rem;
}

.process-video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--catalog-line);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(31, 59, 72, 0.08);
}

.process-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  background: #07121a;
  object-fit: cover;
}

.process-video-card > div {
  padding: 14px;
}

.process-video-card small {
  color: var(--catalog-blue);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-video-card h3 {
  margin: 5px 0 0;
  font-size: 0.92rem;
  line-height: 1.25;
}

.project-steps {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--catalog-muted);
  font-size: 0.82rem;
}

.project-card .status-pill {
  margin-bottom: 24px;
  border: 0;
  background: #eef3f5;
  color: #4f6572;
}

.project-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--catalog-blue);
  font-weight: 900;
  text-transform: uppercase;
}

body.catalog-site .trust-section,
body.catalog-site .request-section {
  background: var(--catalog-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  padding: 22px;
  border-left: 3px solid var(--catalog-blue);
  background: #fff;
}

.trust-item b,
.trust-item span {
  display: block;
}

.trust-item span {
  margin-top: 8px;
  color: var(--catalog-muted);
  font-size: 0.88rem;
}

body.catalog-site .page-intro {
  padding: 46px 0 42px !important;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(9, 126, 188, 0.07),
      transparent 24%
    ),
    linear-gradient(180deg, #ffffff, #f8fafb);
}

body.catalog-site .page-intro h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
}

.page-intro p {
  max-width: 760px;
  margin: 0;
  font-size: 1rem;
}

.filter-bar,
.requirement-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--catalog-line);
  border-radius: 14px;
  background: #fff;
}

.filter-bar {
  grid-template-columns: 1fr auto;
  margin-bottom: 26px;
}

.filter-bar input,
.requirement-form input,
.requirement-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid var(--catalog-line);
  border-radius: 8px;
  background: #fff;
  color: var(--catalog-ink);
  font: inherit;
}

.filter-bar input:focus,
.requirement-form input:focus,
.requirement-form select:focus {
  border-color: var(--catalog-blue);
  outline: 3px solid rgba(9, 126, 188, 0.1);
}

.filter-label {
  display: grid;
  gap: 6px;
}

.filter-label span {
  color: var(--catalog-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-help {
  color: #71838e;
  font-size: 0.72rem;
  line-height: 1.35;
}

.empty-state {
  padding: 34px;
  border: 1px dashed #b9cbd3;
  border-radius: 14px;
  background: #f7fafb;
  text-align: center;
}

.empty-state p {
  max-width: 620px;
  margin: 10px auto 20px;
}

.parts-shell,
.request-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: start;
}

.category-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.category-list span {
  padding: 13px 15px;
  border: 1px solid var(--catalog-line);
  border-radius: 8px;
  background: #fff;
  color: var(--catalog-muted);
  font-weight: 700;
}

.requirement-form {
  grid-template-columns: 1fr 1fr;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(16, 45, 56, 0.08);
}

.requirement-form .full,
.requirement-form button {
  grid-column: 1 / -1;
}

.search-shell {
  max-width: 900px;
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--catalog-line);
  border-radius: 12px;
  background: #fff;
}

.search-result > span {
  color: var(--catalog-blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-result h3,
.search-result p {
  margin: 0;
}

.search-result p {
  margin-top: 5px;
  font-size: 0.9rem;
}

.search-result > b {
  color: var(--catalog-blue);
  font-size: 1.4rem;
}

[hidden] {
  display: none !important;
}

/* Ficha comercial y técnica de maquinaria */
.machine-detail-page main > section {
  padding: 0;
}

.machine-loading,
.machine-not-found {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
}

.machine-not-found {
  padding: 80px 20px;
}

.machine-detail-hero {
  padding: 34px 0 70px !important;
  background:
    radial-gradient(circle at 90% 5%, rgba(9, 126, 188, 0.09), transparent 28%),
    linear-gradient(180deg, #fff, #f5f8f9);
}

.machine-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #6c7e89;
  font-size: 0.78rem;
}

.machine-breadcrumb a:hover {
  color: var(--catalog-blue);
}

.machine-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 42px;
  align-items: start;
}

.machine-gallery-main {
  position: relative;
  height: 545px;
  overflow: hidden;
  border: 1px solid var(--catalog-line);
  border-radius: 16px;
  background: #e9eff1;
  box-shadow: 0 18px 50px rgba(16, 45, 56, 0.1);
}

.machine-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.03) brightness(1.04);
}

.machine-gallery-main span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(16, 45, 56, 0.86);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.machine-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.machine-gallery-thumb {
  height: 78px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #e9eff1;
  cursor: pointer;
}

.machine-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machine-gallery-thumb:hover,
.machine-gallery-thumb.is-active {
  border-color: var(--catalog-blue);
}

.machine-product-copy {
  position: sticky;
  top: 24px;
  padding: 4px 0;
}

.machine-product-labels {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.machine-product-labels span,
.machine-product-labels small {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.machine-product-labels span {
  background: #e8f4e8;
  color: #2f7e34;
}

.machine-product-labels small {
  background: #eaf3f7;
  color: var(--catalog-blue);
  text-transform: uppercase;
}

.machine-product-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.machine-product-summary {
  margin: 0 0 24px;
  color: #435b69 !important;
  font-size: 1.03rem;
}

.machine-key-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0;
}

.machine-key-facts div {
  padding: 15px;
  border: 1px solid var(--catalog-line);
  border-radius: 10px;
  background: #fff;
}

.machine-key-facts strong,
.machine-key-facts span {
  display: block;
}

.machine-key-facts strong {
  color: var(--catalog-navy);
  font-family: Poppins, sans-serif;
  font-size: 1.28rem;
}

.machine-key-facts span {
  margin-top: 4px;
  color: #667b87;
  font-size: 0.72rem;
}

.machine-commercial-note {
  margin: 22px 0;
  padding: 18px;
  border-left: 4px solid var(--catalog-green);
  background: #f2f8f2;
}

.machine-commercial-note strong {
  color: #2f7e34;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.machine-commercial-note p {
  margin: 7px 0 0;
  font-size: 0.84rem;
}

.machine-detail-nav-section {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0 !important;
  border-top: 1px solid var(--catalog-line);
  border-bottom: 1px solid var(--catalog-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.machine-detail-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
}

.machine-detail-nav a {
  padding: 17px 18px;
  color: #506773;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.machine-detail-nav a:hover {
  background: #edf5f8;
  color: var(--catalog-blue);
}

.machine-detail-section {
  scroll-margin-top: 64px;
  padding: 58px 0 !important;
  background: #fff;
}

.machine-detail-soft {
  background: #f6f9fa;
}

.machine-description-grid,
.machine-two-column,
.machine-spec-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
  align-items: start;
}

.machine-prose p {
  margin: 0;
  color: #405967;
  font-size: 1.05rem;
}

.machine-prose p + p {
  margin-top: 20px;
}

.machine-operation-list,
.machine-support-grid > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.machine-operation-list li,
.machine-support-grid > ul li {
  position: relative;
  padding: 17px 18px 17px 42px;
  border: 1px solid var(--catalog-line);
  border-radius: 10px;
  background: #fff;
  color: #405967;
  font-size: 0.88rem;
}

.machine-operation-list li::before,
.machine-support-grid > ul li::before {
  content: "✓";
  position: absolute;
  left: 17px;
  color: var(--catalog-green);
  font-weight: 900;
}

.machine-spec-heading {
  position: sticky;
  top: 80px;
}

.source-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--catalog-blue) !important;
  font-size: 0.82rem;
  font-weight: 900;
}

.machine-spec-table {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--catalog-line);
  border-radius: 12px;
}

.machine-spec-content {
  min-width: 0;
}

.machine-spec-more {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--catalog-line);
  border-radius: 12px;
  background: #fff;
}

.machine-spec-more summary {
  padding: 13px 16px;
  color: var(--catalog-blue);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 900;
  list-style-position: inside;
}

.machine-spec-more summary span {
  margin-left: 6px;
  color: var(--catalog-muted);
  font-size: .72rem;
  font-weight: 700;
}

.machine-spec-more .machine-spec-table {
  border: 0;
  border-top: 1px solid var(--catalog-line);
  border-radius: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
}

.spec-row + .spec-row {
  border-top: 1px solid var(--catalog-line);
}

.spec-row:nth-child(even) {
  background: #f7fafb;
}

.spec-row dt,
.spec-row dd {
  margin: 0;
  padding: 11px 15px;
  font-size: 0.84rem;
}

.spec-row dt {
  color: #526a76;
  font-weight: 700;
}

.spec-row dd {
  border-left: 1px solid var(--catalog-line);
  color: var(--catalog-ink);
  font-weight: 800;
}

.machine-support-section {
  background: linear-gradient(135deg, #edf5f7, #f8faf8);
}

.machine-support-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 0.75fr;
  gap: 34px;
  align-items: start;
}

.machine-support-grid > ul {
  grid-template-columns: 1fr;
}

.machine-support-cta {
  padding: 24px;
  border-radius: 14px;
  background: var(--catalog-navy);
  color: #fff;
}

.machine-support-cta strong {
  font-family: Poppins, sans-serif;
  font-size: 1.35rem;
}

.machine-support-cta p {
  color: #d7e5e9;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .catalog-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .parts-shell,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .home-hero::before {
    inset: 0 0 0 35%;
    opacity: 0.55;
  }

  .machine-product-layout,
  .machine-description-grid,
  .machine-two-column,
  .machine-spec-layout,
  .machine-support-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .machine-product-copy,
  .machine-spec-heading {
    position: static;
  }
}

@media (max-width: 720px) {
  body.catalog-site main > section {
    padding: 58px 0;
  }

  body.catalog-site .home-hero {
    min-height: 590px;
  }

  .home-hero::before {
    inset: 0;
    opacity: 0.28;
  }

  .route-section {
    margin-top: 0;
    padding-top: 20px !important;
  }

  .route-grid,
  .catalog-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .project-main-image {
    height: 230px;
    min-height: 0;
  }

  .project-media {
    min-height: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .process-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery img {
    height: 68px;
  }

  .filter-bar,
  .requirement-form {
    grid-template-columns: 1fr;
  }

  .requirement-form .full,
  .requirement-form button {
    grid-column: auto;
  }

  .search-result {
    grid-template-columns: 1fr auto;
  }

  .search-result > span {
    grid-column: 1 / -1;
  }

  .machine-detail-hero {
    padding-bottom: 48px !important;
  }

  .machine-gallery-main {
    height: 390px;
  }

  .machine-gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .machine-operation-list {
    grid-template-columns: 1fr;
  }

  .machine-detail-section {
    padding: 42px 0 !important;
  }
}

@media (max-width: 480px) {
  .catalog-site h1 {
    font-size: 2.75rem;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-links {
    text-align: left;
  }

  .machine-gallery-main {
    height: 280px;
  }

  .machine-key-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 16px 0;
  }

  .machine-key-facts div {
    padding: 11px;
  }

  .machine-key-facts strong {
    font-size: 1.04rem;
  }

  .spec-row {
    grid-template-columns: 1fr;
  }

  .spec-row dd {
    padding-top: 0;
    border-left: 0;
  }
}

/* Renovación visual industrial 2026: compacta, táctil y mobile-first */
body.catalog-site.commerce-home { background: #f1f3f4; }

body.commerce-home .commercial-showcase { background: #f1f3f4; }

.promo-carousel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #152f3a;
}

.promo-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity .55s ease, transform .8s ease;
}

.promo-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.promo-slide > img,
.promo-slide > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-slide > video { object-position: center 50%; }

.promo-slide .promo-content { z-index: 3; }

body.commerce-home .promo-slide .promo-content h2 {
  max-width: 690px;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.promo-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(13,37,46,.46);
  color: #fff;
  cursor: pointer;
  font: 500 1.6rem/1 Poppins, sans-serif;
  transform: translateY(-50%);
}

.promo-prev { left: 13px; }
.promo-next { right: 13px; }
.promo-control:hover, .promo-control:focus-visible { background: #087fbd; }

.promo-dots {
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 6;
  display: flex;
  gap: 7px;
}

.promo-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
  cursor: pointer;
}

.promo-dots button.is-active { width: 25px; border-radius: 999px; background: #fff; }

.trust-band {
  padding: 18px 0 !important;
  border-top: 1px solid #dfe5e8 !important;
  border-bottom: 1px solid #dfe5e8;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.trust-grid article {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  padding: 5px 17px;
  border-right: 1px solid #e0e6e9;
}

.trust-grid article:first-child { padding-left: 0; }
.trust-grid article:last-child { padding-right: 0; border-right: 0; }
.trust-icon { color: #3d983f; font-size: 1.7rem; font-weight: 700; line-height: 1; text-align: center; }
.trust-grid strong { display: block; color: #1d292f; font-size: .72rem; line-height: 1.25; text-transform: uppercase; }
.trust-grid p { margin: 4px 0 0; color: #66747b; font-size: .64rem; line-height: 1.35; }

body.commerce-home .solution-band { background: #f1f3f4; }

.solution-rail .solution-featured,
.solution-rail .solution-quote {
  border-color: #dbe2e5;
  background: #fff;
  color: #203b48;
}

.solution-rail a:hover,
.solution-rail a:focus-visible,
.solution-rail a:active {
  border-color: #087fbd;
  background: #087fbd;
  color: #fff;
}

.solution-rail .solution-quote:hover,
.solution-rail .solution-quote:focus-visible,
.solution-rail .solution-quote:active {
  border-color: #3d983f;
  background: #3d983f;
  color: #fff;
}

.machine-teaser,
.shortcut-grid a,
.home-guide-links a { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease; }

.machine-teaser:hover,
.machine-teaser:focus-within,
.shortcut-grid a:hover,
.shortcut-grid a:focus-visible,
.home-guide-links a:hover,
.home-guide-links a:focus-visible {
  border-color: rgba(8,127,189,.55);
  box-shadow: 0 13px 28px rgba(18,48,59,.1);
  transform: translateY(-3px);
}

body.commerce-home .home-coverage {
  padding: 48px 0 !important;
  background: #edf0f1;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 55px;
  align-items: center;
}

.coverage-copy h2 { margin: 7px 0 15px; max-width: 520px; color: #1d292f; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.coverage-copy > p { max-width: 590px; margin: 0 0 18px; color: #607078; font-size: .88rem; }
.coverage-cities { margin: 0 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.coverage-cities li { padding: 6px 10px; border: 1px solid #d5dee2; border-radius: 999px; background: #fff; color: #29444f; font-size: .68rem; font-weight: 700; }

.chile-map-card {
  margin: 0;
  padding: 14px 18px 10px;
  border: 1px solid #d8e0e3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 17px 45px rgba(21,47,58,.08);
}

.chile-map { width: 100%; max-height: 450px; display: block; }
.map-point circle { fill: #168cca; stroke: #fff; stroke-width: 3px; }
.map-point line { stroke: #8fa5ae; stroke-width: 1.5px; }
.map-point text { fill: #29444f; font: 600 13px Poppins, sans-serif; }
.map-point.is-base circle { fill: #3d983f; r: 9px; }
.map-point.is-base text { fill: #2f7d33; font-weight: 800; }
.chile-map-card figcaption { padding: 7px 0 3px; border-top: 1px solid #e6eaec; color: #69787f; font-size: .64rem; text-align: center; }

@media (max-width: 980px) {
  .promo-carousel { min-height: 390px; }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 0; }
  .trust-grid article:nth-child(3) { border-right: 0; }
  .coverage-layout { grid-template-columns: minmax(0, .8fr) minmax(370px, 1.2fr); gap: 30px; }
}

@media (max-width: 720px) {
  .promo-carousel { min-height: 286px; }
  .promo-slide .promo-content { inset: auto 20px 42px; max-width: calc(100% - 40px); }
  body.commerce-home .promo-slide .promo-content h1,
  body.commerce-home .promo-slide .promo-content h2 { max-width: 90%; font-size: clamp(1.65rem, 8vw, 2.2rem); line-height: 1; }
  .promo-slide .promo-content p { max-width: 92%; margin-top: 9px; font-size: .72rem; line-height: 1.38; }
  .promo-slide .promo-content small { margin-bottom: 7px; font-size: .56rem; }
  .promo-slide .promo-button { min-height: 36px; margin-top: 12px; padding: 0 14px; font-size: .68rem; }
  .promo-control { top: 18px; width: 32px; height: 32px; transform: none; }
  .promo-prev { left: auto; right: 50px; }
  .promo-next { right: 12px; }
  .promo-dots { right: auto; left: 20px; bottom: 17px; }
  .trust-band { padding: 10px 0 !important; }
  .trust-grid {
    width: min(100% - 22px, 1235px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 78%);
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:last-child {
    grid-template-columns: 28px 1fr;
    padding: 10px 12px;
    border: 1px solid #e1e7e9;
    border-radius: 10px;
    scroll-snap-align: start;
  }
  .trust-icon { font-size: 1.25rem; }
  .trust-grid p { margin-top: 2px; }
  .coverage-layout { grid-template-columns: 1fr; gap: 20px; }
  body.commerce-home .home-coverage { padding: 30px 0 !important; }
  .coverage-copy h2 { font-size: 1.45rem; }
  .chile-map-card { padding: 8px 8px 7px; }
  .chile-map { max-height: 390px; }
}

@media (prefers-reduced-motion: reduce) {
  .promo-slide { transition: none; }
}

/* Inicio comercial inspirado en la composición de JAO Group */
body.commerce-home .ma-container {
  width: min(1235px, calc(100% - 32px));
}

body.catalog-site.commerce-home main > section {
  padding: 0;
}

body.catalog-site.commerce-home main > section + section {
  border-top: 0;
}

body.commerce-home .commercial-showcase {
  padding: 24px 0 !important;
  background: #fff;
}

.promo-grid {
  height: 416px;
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(320px, 1fr);
  gap: 14px;
}

.promo-side {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.promo-card {
  position: relative;
  min-width: 0;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #122c38;
  color: #fff;
}

.promo-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.28) contrast(1.02) brightness(1.1);
  transition: transform 0.45s ease;
}

.promo-main > img {
  object-position: center 46%;
}

.promo-main .promo-shade {
  background: linear-gradient(
    90deg,
    rgba(10, 35, 45, 0.74) 0%,
    rgba(10, 35, 45, 0.3) 48%,
    rgba(10, 35, 45, 0.02) 78%
  );
}

.promo-card:hover > img {
  transform: scale(1.025);
}

.promo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 35, 45, 0.64),
    rgba(10, 35, 45, 0.05)
  );
}

.promo-small .promo-shade {
  background: linear-gradient(
    90deg,
    rgba(10, 35, 45, 0.58),
    rgba(10, 35, 45, 0.1)
  );
}

.promo-content {
  position: absolute;
  inset: auto 38px 34px;
  z-index: 2;
  max-width: 630px;
  text-shadow: 0 2px 16px rgba(4, 25, 34, 0.42);
}

.promo-content small {
  display: block;
  margin-bottom: 12px;
  color: #72c9ec;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.commerce-home .promo-content h1,
body.commerce-home .promo-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

body.commerce-home .promo-small .promo-content {
  inset: auto 24px 22px;
}

body.commerce-home .promo-small .promo-content h2 {
  max-width: 350px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.02;
}

.promo-content p {
  margin: 15px 0 0;
  color: #e6f0f3;
  font-size: 0.95rem;
}

.promo-small .promo-content p {
  margin-top: 7px;
  font-size: 0.82rem;
}

.promo-button {
  min-height: 44px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--catalog-green);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.reference-label {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.58rem;
  font-weight: 700;
}

body.commerce-home .solution-band {
  padding: 28px 0 32px !important;
  background: #f7f9fa;
}

body.commerce-home .solution-band h2 {
  margin: 0 0 22px;
  color: var(--catalog-ink);
  font-family: Poppins, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.solution-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.solution-rail a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid #e0e6e9;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(16, 45, 56, 0.04);
  color: #203b48;
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
  transition: 0.2s ease;
}

.solution-rail .solution-featured {
  border-color: var(--catalog-blue);
  background: var(--catalog-navy);
  color: #fff;
}

.solution-rail .solution-quote {
  border-color: rgba(61, 152, 63, .5);
  color: var(--catalog-green-dark);
}

.solution-rail a:hover {
  border-color: var(--catalog-blue);
  color: var(--catalog-blue);
  transform: translateY(-3px);
}

body.commerce-home .machine-window,
body.commerce-home .service-shortcuts {
  padding: 54px 0 !important;
  background: #fff;
}

body.commerce-home .owner-support {
  padding: 40px 0 !important;
  background: #edf3f6;
}

.owner-support-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: 40px;
  align-items: center;
}

.owner-support h2 { margin: 6px 0 12px; max-width: 700px; color: var(--catalog-ink); font-size: clamp(1.75rem, 3vw, 2.45rem); line-height: 1.04; }
.owner-support p { max-width: 680px; margin: 0; color: var(--catalog-muted); font-size: .9rem; line-height: 1.55; }
.owner-support .button { margin-top: 12px; }
.support-steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; list-style: none; }
.support-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 12px 13px; border: 1px solid #d9e4e8; border-radius: 12px; background: #fff; }
.support-steps b { color: var(--catalog-blue); font-size: 1.1rem; }
.support-steps strong, .support-steps span { display: block; }
.support-steps strong { font-size: .84rem; }
.support-steps span { margin-top: 2px; color: var(--catalog-muted); font-size: .72rem; line-height: 1.35; }

@media (max-width: 820px) {
  .owner-support-grid { grid-template-columns: 1fr; gap: 30px; }
  .project-media { grid-template-rows: 250px 84px; }
  .project-main-image { height: 250px; }
  .project-gallery img { height: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.quote-section { background: #f3f7f8; }
.quote-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .7fr); gap: 28px; align-items: start; }
.guided-quote, .quote-assurance { padding: clamp(24px, 4vw, 44px); border: 1px solid var(--catalog-line); border-radius: 18px; background: #fff; box-shadow: 0 18px 42px rgba(31,59,72,.08); }
.quote-step { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.quote-step > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--catalog-blue); color: #fff; font-weight: 900; }
.quote-step strong, .quote-step small { display: block; }
.quote-step small { margin-top: 3px; color: var(--catalog-muted); }
.quote-options { margin: 0 0 28px; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; border: 0; }
.quote-options input { position: absolute; opacity: 0; }
.quote-options span { min-height: 48px; display: grid; place-items: center; padding: 10px; border: 1px solid var(--catalog-line); border-radius: 9px; cursor: pointer; font-weight: 800; text-align: center; }
.quote-options input:checked + span { border-color: var(--catalog-blue); background: #e9f5fb; color: var(--catalog-blue); }
.quote-options input:focus-visible + span { outline: 3px solid #4ab5e6; outline-offset: 2px; }
.quote-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-fields label { display: grid; gap: 7px; color: var(--catalog-ink); font-size: .78rem; font-weight: 800; }
.quote-fields .full { grid-column: 1 / -1; }
.quote-fields input, .quote-fields select, .quote-fields textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #cbd7dc; border-radius: 8px; background: #fff; color: var(--catalog-ink); font: inherit; }
.quote-fields textarea { resize: vertical; }
.file-field small { color: var(--catalog-muted); font-weight: 500; line-height: 1.45; }
.guided-quote > .button { margin-top: 22px; }
.form-status { min-height: 1.5em; margin: 12px 0 0; color: var(--catalog-green); font-size: .8rem; font-weight: 700; line-height: 1.55; }
.form-status[data-state="sending"] { color: var(--catalog-blue); }
.form-status[data-state="error"] { color: #a52a2a; }
.form-status[data-state="success"] { margin-top: 18px; padding: 16px; border: 1px solid #b8dbc7; border-radius: 10px; background: #edf8f1; color: #174e31; }
.form-status .quote-whatsapp-link { display: inline-flex; margin-top: 10px; color: #fff; text-decoration: none; }
.guided-quote .button[disabled] { cursor: wait; opacity: .65; }
.quote-assurance { position: sticky; top: 150px; background: var(--catalog-ink); color: #fff; }
.quote-assurance > span { color: #72c9ec; font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.quote-assurance h2 { margin: 10px 0 20px; color: #fff; font-size: 2rem; line-height: 1.05; }
.quote-assurance ul { margin: 0; padding-left: 20px; display: grid; gap: 12px; color: #e7f0f3; }
.quote-assurance p { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: #b9cbd3; font-size: .78rem; line-height: 1.6; }
@media (max-width: 820px) { .quote-layout { grid-template-columns: 1fr; } .quote-assurance { position: static; } .quote-fields { grid-template-columns: 1fr; } .quote-fields .full { grid-column: auto; } .quote-options { grid-template-columns: 1fr; } }

body.commerce-home .service-shortcuts {
  background: #fbfcfc;
}

body.commerce-home .home-resources {
  padding: 34px 0 !important;
  background: #f6f8f9;
}

.home-resources-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 16px;
  align-items: start;
}

.home-resource-card {
  padding: 20px;
  border: 1px solid var(--catalog-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 45, 56, .05);
}

.home-resource-heading {
  position: relative;
  padding-right: 88px;
}

.home-resource-heading > span {
  display: block;
  color: var(--catalog-blue);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

body.commerce-home .home-resource-heading h2 {
  margin: 3px 0 14px;
  color: var(--catalog-ink);
  font-size: 1.3rem;
  letter-spacing: -.025em;
}

.home-resource-heading > a {
  position: absolute;
  top: 4px;
  right: 0;
  color: var(--catalog-blue);
  font-size: .7rem;
  font-weight: 900;
}

.home-guide-links {
  display: grid;
  gap: 7px;
}

.home-guide-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 11px 12px;
  border-radius: 9px;
  background: #f4f8f9;
}

.home-guide-links small {
  grid-column: 1;
  color: var(--catalog-muted);
  font-size: .6rem;
  font-weight: 700;
}

.home-guide-links strong {
  grid-column: 1;
  color: var(--catalog-ink);
  font-size: .78rem;
  line-height: 1.25;
}

.home-guide-links b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--catalog-blue);
}

.faq-accordion {
  border-top: 1px solid var(--catalog-line);
}

.faq-accordion details {
  border-bottom: 1px solid var(--catalog-line);
}

.faq-accordion summary {
  position: relative;
  padding: 11px 30px 11px 0;
  cursor: pointer;
  color: var(--catalog-ink);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  position: absolute;
  top: 9px;
  right: 2px;
  color: var(--catalog-blue);
  font-size: 1rem;
  font-weight: 900;
}

.faq-accordion details[open] summary::after {
  content: "−";
}

.faq-accordion p {
  margin: -2px 28px 11px 0;
  color: var(--catalog-muted);
  font-size: .73rem;
  line-height: 1.5;
}

body.commerce-home .home-bottom-context {
  padding: 22px 0 !important;
  background: #fff;
}

.coverage-compact {
  border: 1px solid var(--catalog-line);
  border-radius: 12px;
  background: #f7fafb;
}

.coverage-compact > summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
}

.coverage-compact > summary::-webkit-details-marker {
  display: none;
}

.coverage-compact > summary span {
  color: var(--catalog-blue);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.coverage-compact > summary strong {
  color: var(--catalog-ink);
  font-size: .86rem;
}

.coverage-compact > summary small {
  color: var(--catalog-blue);
  font-size: .66rem;
  font-weight: 900;
}

.coverage-compact-body {
  padding: 0 18px 17px;
  border-top: 1px solid var(--catalog-line);
}

.coverage-compact-body > p {
  margin: 15px 0;
  color: var(--catalog-muted);
  font-size: .78rem;
}

.coverage-compact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 13px;
}

.coverage-compact-steps div {
  padding: 11px;
  border-radius: 8px;
  background: #fff;
}

.coverage-compact-steps b,
.coverage-compact-steps span {
  display: block;
}

.coverage-compact-steps b {
  margin-bottom: 4px;
  color: var(--catalog-ink);
  font-size: .69rem;
}

.coverage-compact-steps span {
  color: var(--catalog-muted);
  font-size: .67rem;
  line-height: 1.4;
}

body.commerce-home .home-fact-band {
  padding: 15px 0 !important;
  background: #102d38 !important;
  color: #fff !important;
}

body.commerce-home .home-fact-band .fact-band-grid {
  gap: 10px;
}

body.commerce-home .home-fact-band .fact-band-grid div {
  padding: 0 10px 0 0;
}

body.commerce-home .home-fact-band .fact-band-grid strong {
  color: #fff;
  font-size: .73rem;
}

body.commerce-home .home-fact-band .fact-band-grid span {
  margin-top: 2px;
  color: #c8d9df;
  font-size: .63rem;
  line-height: 1.35;
}

.compact-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.compact-heading > div > span,
.commercial-cta-box > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--catalog-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.commerce-home .compact-heading h2 {
  margin: 0;
  color: var(--catalog-ink);
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.compact-heading > a {
  color: var(--catalog-blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.machine-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.machine-teaser {
  overflow: hidden;
  border: 1px solid var(--catalog-line);
  border-radius: 12px;
  background: #fff;
  transition: 0.2s ease;
}

.machine-teaser:hover {
  border-color: rgba(9, 126, 188, 0.5);
  box-shadow: 0 12px 24px rgba(16, 45, 56, 0.08);
  transform: translateY(-3px);
}

.machine-teaser-visual {
  height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
  background:
    linear-gradient(135deg, rgba(9, 126, 188, 0.12), transparent),
    repeating-linear-gradient(
      135deg,
      #edf3f5 0,
      #edf3f5 1px,
      #fafcfc 1px,
      #fafcfc 12px
    );
}

.machine-teaser-visual span {
  width: fit-content;
  padding: 5px 7px;
  border-radius: 5px;
  background: #fff;
  color: var(--catalog-blue);
  font-size: 0.62rem;
  font-weight: 900;
}

.machine-teaser-visual strong {
  color: #294753;
  font-family: Poppins, sans-serif;
  font-size: 1.25rem;
}

.machine-teaser-copy {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  padding: 17px;
}

.machine-teaser-copy small {
  color: var(--catalog-muted);
  font-size: 0.66rem;
  font-weight: 700;
}

body.commerce-home .machine-teaser-copy h3 {
  margin: 8px 0 16px;
  color: var(--catalog-ink);
  font-size: 1rem;
  line-height: 1.2;
}

.machine-teaser-copy b {
  margin-top: auto;
  color: var(--catalog-blue);
  font-size: 0.75rem;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.shortcut-grid a {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--catalog-line);
  border-radius: 11px;
  background: #fff;
}

.shortcut-grid strong {
  color: #9cb0b9;
  font-size: 0.74rem;
}

.shortcut-grid span {
  color: var(--catalog-ink);
  font-weight: 900;
}

.shortcut-grid b {
  color: var(--catalog-blue);
  font-size: 1.3rem;
}

body.commerce-home .commercial-cta {
  padding: 42px 0 !important;
  background: var(--catalog-navy);
}

.commercial-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

body.commerce-home .commercial-cta-box h2 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  letter-spacing: -0.04em;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.35);
  background: #fff;
  color: var(--catalog-navy);
}

@media (max-width: 860px) {
  body.commerce-home .home-fact-band .fact-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.commerce-home .home-fact-band .fact-band-grid div {
    padding: 7px 9px;
    border-right: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  body.commerce-home .home-fact-band .fact-band-grid div:nth-child(even) {
    border-right: 0;
  }

  body.commerce-home .home-fact-band .fact-band-grid div:nth-child(n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 980px) {
  .solution-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promo-grid {
    height: auto;
    grid-template-columns: 1fr;
  }

  .promo-main {
    min-height: 390px;
  }

  .promo-side {
    min-height: 420px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  .machine-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  body.commerce-home .ma-container {
    width: min(100% - 22px, 1235px);
  }

  body.commerce-home .commercial-showcase {
    padding: 12px 0 22px !important;
  }

  .home-resources-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.commerce-home .home-resources {
    padding: 22px 0 !important;
  }

  .home-resource-card {
    padding: 15px;
  }

  body.commerce-home .home-resource-heading h2 {
    margin-bottom: 10px;
    font-size: 1.08rem;
  }

  .home-guide-links {
    grid-template-columns: 1fr;
  }

  .home-guide-links a {
    padding: 9px;
  }

  .home-guide-links strong {
    font-size: .7rem;
  }

  .faq-accordion summary {
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: .72rem;
  }

  .coverage-compact > summary {
    grid-template-columns: 1fr auto;
    gap: 2px 10px;
    padding: 12px 14px;
  }

  .coverage-compact > summary span {
    grid-column: 1;
  }

  .coverage-compact > summary strong {
    grid-column: 1;
    font-size: .76rem;
  }

  .coverage-compact > summary small {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .coverage-compact-steps {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.commerce-home .home-fact-band .fact-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  body.commerce-home .home-fact-band .fact-band-grid div {
    padding: 7px 9px;
    border-right: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  body.commerce-home .home-fact-band .fact-band-grid div:nth-child(even) {
    border-right: 0;
  }

  body.commerce-home .home-fact-band .fact-band-grid div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .promo-main {
    min-height: 310px;
  }

  .promo-side {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-small {
    min-height: 165px;
  }

  .promo-content {
    inset: auto 24px 26px;
  }

  body.commerce-home .promo-small .promo-content {
    inset: auto 12px 15px;
    width: calc(100% - 24px);
  }

  body.commerce-home .promo-small .promo-content small {
    margin-bottom: 6px;
    font-size: .58rem;
    line-height: 1.18;
    letter-spacing: .045em;
    white-space: normal;
  }

  body.commerce-home .promo-content h1 {
    font-size: 2.45rem;
  }

  .solution-rail,
  .machine-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  body.commerce-home .solution-band,
  body.commerce-home .machine-window,
  body.commerce-home .service-shortcuts {
    padding: 28px 0 !important;
  }

  .solution-rail a {
    min-height: 58px;
    padding: 8px;
    font-size: .72rem;
  }

  .machine-teaser-visual {
    height: 100px;
    padding: 11px;
  }

  .machine-teaser-copy {
    min-height: 120px;
    padding: 12px;
  }

  body.commerce-home .machine-teaser-copy h3 {
    margin: 6px 0 10px;
    font-size: .84rem;
  }

  .shortcut-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .shortcut-grid a {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 9px 6px;
    text-align: center;
  }

  .shortcut-grid span { font-size: .72rem; line-height: 1.25; }
  .shortcut-grid b { display: none; }

  body.commerce-home .owner-support {
    padding: 30px 0 !important;
  }

  .owner-support-grid { gap: 20px; }
  .support-steps { gap: 7px; }
  .support-steps li { grid-template-columns: 24px 1fr; gap: 7px; padding: 9px; }
  .support-steps span { font-size: .66rem; }

  body.commerce-home .commercial-cta {
    padding: 28px 0 !important;
  }

  body.commerce-home .commercial-cta-box h2 {
    font-size: 1.22rem;
  }

  .compact-heading,
  .commercial-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .solution-rail,
  .machine-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-cta-box .section-actions {
    width: 100%;
  }
}

/* Capa final del tema: prevalece sobre los estilos heredados de portada. */
body.catalog-site.commerce-home,
body.commerce-home .commercial-showcase,
body.commerce-home .solution-band { background: #f1f3f4; }

.solution-rail .solution-featured,
.solution-rail .solution-quote {
  border-color: #dbe2e5;
  background: #fff;
  color: #203b48;
}

.solution-rail a:hover,
.solution-rail a:focus-visible,
.solution-rail a:active {
  border-color: #087fbd;
  background: #087fbd;
  color: #fff;
}

.solution-rail .solution-quote:hover,
.solution-rail .solution-quote:focus-visible,
.solution-rail .solution-quote:active {
  border-color: #3d983f;
  background: #3d983f;
  color: #fff;
}

@media (max-width: 720px) {
  .promo-carousel { min-height: 286px; }
  .promo-slide .promo-content { inset: auto 20px 42px; max-width: calc(100% - 40px); }
  body.commerce-home .promo-slide .promo-content h1,
  body.commerce-home .promo-slide .promo-content h2 { max-width: 90%; font-size: clamp(1.65rem, 8vw, 2.2rem); line-height: 1; }
  .promo-slide .promo-content p { max-width: 92%; margin-top: 9px; font-size: .72rem; line-height: 1.38; }
  .promo-slide .promo-content small { margin-bottom: 7px; font-size: .56rem; }
  .promo-slide .promo-button { min-height: 36px; margin-top: 12px; padding: 0 14px; font-size: .68rem; }
}

/* Correcciones visuales posteriores a la revisión en pantalla completa. */
body.catalog-site,
body.catalog-site button,
body.catalog-site input,
body.catalog-site select,
body.catalog-site textarea { font-family: Poppins, system-ui, sans-serif; }

body.catalog-site.commerce-home { background: #eceff1; }
body.commerce-home .commercial-showcase,
body.commerce-home .solution-band,
body.commerce-home .home-resources { background: #eceff1; }
body.commerce-home .machine-window { background: #f8f9fa; }
body.commerce-home .owner-support { background: #e4eaed; }
body.commerce-home .service-shortcuts { padding: 29px 0 !important; background: #f7f8f9; }

.promo-carousel { height: 100%; min-height: 416px; }
.promo-carousel .promo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.promo-carousel .promo-slide > img,
.promo-carousel .promo-slide > video { display: block; width: 100%; height: 100%; }

body.commerce-home .service-shortcuts .compact-heading { margin-bottom: 13px; }
body.commerce-home .service-shortcuts .compact-heading h2 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
body.commerce-home .service-shortcuts .compact-heading > div > span { font-size: .6rem; }
.service-shortcuts .shortcut-grid { gap: 10px; }
.service-shortcuts .shortcut-grid a { min-height: 60px; padding: 11px 14px; }

.trust-band-bottom { border-top: 1px solid #d9e1e4 !important; }

.chile-map-image {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  .promo-carousel { min-height: 390px; }
}

@media (max-width: 720px) {
  .promo-carousel { min-height: 286px; }
  body.commerce-home .service-shortcuts { padding: 21px 0 !important; }
  body.commerce-home .service-shortcuts .compact-heading { margin-bottom: 10px; }
  .service-shortcuts .shortcut-grid a { min-height: 54px; }
  .chile-map-image { height: 390px; }
}

.service-card.is-support {
  border: 2px solid #3d983f;
  box-shadow: 0 18px 42px rgba(61, 152, 63, .14);
}
.service-card.is-support .card-meta span:first-child {
  background: #e9f5e9;
  color: #2f7d33;
}
.service-card.is-support .catalog-card-body::before {
  content: "Acompañamiento MAQELEC";
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #3d983f;
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.project-location {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 8px 0 2px;
  padding: 6px 10px;
  border: 1px solid #d7e1e5;
  border-radius: 999px;
  background: #f5f8f9;
  color: #425c67;
  font-size: .68rem;
  font-weight: 800;
}
