/* UI refresh layer for the Innovative Net homepage. */
:root {
  --in-bg: #f6f8f9;
  --in-ink: #07161f;
  --in-muted: #51606a;
  --in-navy: #051923;
  --in-blue: #0e3446;
  --in-orange: #c16200;
  --in-orange-bright: #e4971f;
  --in-line: rgba(5, 25, 35, 0.12);
  --in-shadow: 0 24px 70px rgba(5, 25, 35, 0.18);
}

html {
  scroll-behavior: smooth;
}

#section2,
#section3 {
  scroll-margin-top: 52px;
}

body {
  background:
    radial-gradient(circle at 82% 22%, rgba(228, 151, 31, 0.1), transparent 28%),
    linear-gradient(180deg, var(--in-navy) 0%, #073044 46%, var(--in-navy) 100%);
  color: var(--in-ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.header-spacer {
  height: 56px;
  background: var(--in-navy);
}

#header {
  background: rgba(5, 25, 35, 0.82) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-navbar {
  width: 100%;
  min-height: 56px;
  padding: 7px clamp(18px, 3.5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 60px);
  background: transparent !important;
}

.logo {
  width: 124px;
  height: auto;
  margin-left: 0;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.26));
}

.brand-text {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 18px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-logo-link {
  display: inline-flex !important;
  align-items: center;
  gap: 11px;
  width: auto !important;
  max-width: none;
  height: 42px !important;
  min-height: 0 !important;
}

.header-brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 42px;
  max-height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.32));
}

.brand-logo-link span {
  color: #ffffff;
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 840;
  line-height: 1;
  white-space: nowrap;
}

.brand-text:hover {
  color: var(--in-orange-bright);
}

.nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  padding: 6px clamp(8px, 1.1vw, 16px) !important;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.1;
  white-space: nowrap;
  width: auto !important;
}

.nav-section-label {
  color: var(--in-orange-bright) !important;
  cursor: default;
  font-weight: 820;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}

.custom-navbar > .menu-list {
  display: flex !important;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(6px, 1vw, 18px) !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-right: 0 !important;
  list-style: none;
  width: auto !important;
  min-width: 0;
}

.custom-navbar > .menu-list li {
  flex: 0 0 auto !important;
  width: auto !important;
  margin-left: 0 !important;
}

.custom-navbar > .menu-list .nav-dropdown {
  position: relative;
  padding-block: 8px;
}

.menu-list a {
  color: rgba(255, 255, 255, 0.88) !important;
}

.nav-link:hover {
  color: var(--in-orange-bright) !important;
}

.nav-dropdown > .nav-link {
  gap: 6px;
}

.nav-dropdown > .nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 120;
  min-width: 218px;
  padding: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(5, 25, 35, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block !important;
  width: 100% !important;
  padding: 8px 12px !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.2;
  text-align: left !important;
  text-decoration: none;
  background: transparent !important;
  border-radius: 0 !important;
  justify-content: flex-start !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--in-orange-bright) !important;
  background: transparent !important;
  border-radius: 0 !important;
  outline: none;
}

.mobile-nav-group {
  padding-bottom: 6px;
}

.nav-dropdown-label {
  cursor: default;
}

.mobile-nav-submenu {
  display: grid;
  gap: 2px;
  padding: 0 10px 8px 24px;
}

.mobile-nav-submenu a {
  display: block !important;
  width: 100% !important;
  padding: 6px 4px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px !important;
  font-weight: 720;
  line-height: 1.2;
  text-align: left !important;
  text-decoration: none;
  background: transparent !important;
  border-radius: 0 !important;
  justify-content: flex-start !important;
}

.mobile-nav-submenu a:hover {
  color: var(--in-orange-bright) !important;
  background: transparent !important;
}

.responsive-toggle,
#menu-toggle.responsive-toggle {
  display: none !important;
}

#custom-menu.custom-menu {
  display: none;
}

@media (max-width: 820px) {
  .custom-navbar {
    gap: 14px;
  }

  .custom-navbar > .desktop-nav-list {
    display: none !important;
  }

  .responsive-toggle,
  #menu-toggle.responsive-toggle {
    display: flex !important;
  }

  #custom-menu.custom-menu {
    display: block;
    right: 14px;
    width: min(320px, calc(100vw - 28px));
    margin: 8px 0 0;
    padding: 8px;
    border: 1px solid rgba(228, 151, 31, 0.22);
    border-top: 3px solid var(--in-orange-bright);
    border-radius: 8px;
    background: rgba(5, 25, 35, 0.96);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  #custom-menu .menu-list {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  #custom-menu .menu-list li {
    display: block;
    width: 100%;
  }

  #custom-menu .nav-link-dropdown {
    display: block;
    width: 100%;
    padding: 10px 12px;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 780;
    line-height: 1.2;
    text-decoration: none;
  }

  #custom-menu .mobile-nav-submenu {
    padding: 0 12px 8px 22px;
  }

  #custom-menu .mobile-nav-submenu a {
    white-space: normal;
  }
}

.img_index {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  height: auto;
  width: 100%;
  background-image:
    linear-gradient(90deg, rgba(5, 25, 35, 0.88) 0%, rgba(5, 25, 35, 0.64) 44%, rgba(5, 25, 35, 0.2) 100%),
    url(img/fondo.png);
  background-size: cover;
  background-position: center;
}

.hero-slogan {
  position: fixed;
  top: 56px;
  left: 50%;
  z-index: 95;
  margin: 0;
  color: var(--in-orange-bright);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 14px 34px rgba(5, 25, 35, 0.72);
  text-transform: uppercase;
  transition: opacity 0.16s ease, transform 0.16s ease;
  pointer-events: none;
}

.hero-slogan::after {
  content: "";
  display: block;
  width: min(180px, 48vw);
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--in-orange-bright), transparent);
  box-shadow: 0 0 22px rgba(255, 196, 77, 0.48);
}

.contenedor.hero-shell {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 7vw, 96px);
  padding: 62px clamp(22px, 7vw, 110px) 64px;
  background:
    radial-gradient(circle at 78% 18%, rgba(228, 151, 31, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(5, 25, 35, 0.16), rgba(5, 25, 35, 0.46));
}

.hero-content {
  width: 100%;
  min-width: 0;
  max-width: 590px;
}

.texto {
  margin: 0;
  color: #ffffff;
  font-size: clamp(46px, 6.2vw, 78px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
  animation: none;
  transform: none;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.subtexto {
  width: 100%;
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.35;
  font-weight: 420;
  animation: none;
  transform: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-actions a {
  text-decoration: none;
}

.btnini {
  margin: 0;
  min-height: 58px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--in-orange-bright);
  box-shadow: 0 18px 40px rgba(193, 98, 0, 0.34);
}

.btnini:before {
  display: none;
}

.btnini span {
  color: var(--in-navy);
  font-size: 18px;
  letter-spacing: 0;
}

.btnini svg {
  stroke: var(--in-navy);
}

.btnini:hover {
  transform: translateY(-2px);
  background: #ffc15d;
}

.btn-ghost-home {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-ghost-home:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.hero-brand-honeycomb {
  --wheel-progress: 0;
  --label-opacity: 0;
  --wordmark-opacity: 1;
  position: fixed;
  top: 50vh;
  right: clamp(-112px, -7vw, -72px);
  z-index: 70;
  width: 520px;
  height: 520px;
  pointer-events: none;
  transform: translateY(-50%);
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.34));
}

.hero-brand-honeycomb.is-interactive {
  pointer-events: auto;
}

.hero-brand-honeycomb.is-offstage,
.wheel-service-panel.is-offstage {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(42px);
}

.hero-brand-honeycomb::before {
  content: "";
  position: absolute;
  inset: 12px 0 12px 76px;
  border-radius: 999px 0 0 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(228, 151, 31, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(5, 25, 35, 0.5), rgba(5, 25, 35, 0.16) 66%, transparent);
  opacity: calc(var(--wheel-progress) * 0.7);
}

.hero-logo-wordmark {
  position: absolute;
  top: 232px;
  left: -44px;
  z-index: 6;
  color: #ffffff;
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 880;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: var(--wordmark-opacity);
  transform: translateX(calc(var(--wheel-progress) * 420px));
  text-shadow:
    -2px -2px 0 rgba(5, 25, 35, 0.95),
    2px -2px 0 rgba(5, 25, 35, 0.95),
    -2px 2px 0 rgba(5, 25, 35, 0.95),
    2px 2px 0 rgba(5, 25, 35, 0.95),
    0 18px 42px rgba(0, 0, 0, 0.46);
  transition: opacity 0.16s ease-out, transform 0.16s ease-out;
}

.hero-logo-wordmark span {
  display: block;
}

.wheel-arc {
  position: absolute;
  inset: 0 0 0 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 100% 0 0 100%;
  background:
    radial-gradient(circle at 4% 50%, rgba(228, 151, 31, 0.22), transparent 36%),
    linear-gradient(90deg, rgba(5, 25, 35, 0.22), transparent 58%);
  opacity: calc(var(--wheel-progress) * 0.82);
}

.hero-brand-honeycomb .wheel-service {
  border: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(1px + (var(--label-opacity) * 3px));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 320px;
  min-height: 60px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-align: right;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.44);
  opacity: 0.95;
  transform-origin: 0 0;
  transition: transform 0.2s cubic-bezier(0.2, 0.72, 0.22, 1);
}

.hero-brand-honeycomb.is-interactive .wheel-service {
  cursor: pointer;
  pointer-events: auto;
  z-index: 8;
}

.hero-brand-honeycomb .wheel-service:focus-visible {
  outline: 2px solid rgba(228, 151, 31, 0.9);
  outline-offset: 4px;
}

.hero-brand-honeycomb .wheel-service::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  order: 2;
  width: calc(var(--label-opacity) * 16px);
  height: 1px;
  background: rgba(228, 151, 31, 0.82);
  opacity: var(--label-opacity);
  transition: opacity 0.16s ease;
}

.hero-brand-honeycomb .wheel-service img {
  flex: 0 0 auto;
  order: 1;
  width: 58px;
  height: 58px;
  object-fit: contain;
  transition: filter 0.18s ease, transform 0.18s ease;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
}

.hero-brand-honeycomb.is-interactive .wheel-service:hover img,
.hero-brand-honeycomb .wheel-service.is-active img,
.hero-brand-honeycomb .wheel-service:focus-visible img {
  transform: translateX(3px) scale(1.06);
  filter:
    drop-shadow(0 0 12px rgba(228, 151, 31, 0.44))
    drop-shadow(0 12px 20px rgba(0, 0, 0, 0.34));
}

.wheel-copy {
  order: 3;
  width: calc(var(--label-opacity) * 142px);
  max-width: 142px;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  opacity: var(--label-opacity);
  transition: opacity 0.16s ease;
}

.wheel-service-panel {
  position: fixed;
  top: 50vh;
  right: clamp(-42px, -2vw, -18px);
  z-index: 74;
  display: grid;
  width: clamp(390px, 30vw, 490px);
  grid-template-columns: minmax(132px, 0.36fr) minmax(230px, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: 1px solid rgba(228, 151, 31, 0.24);
  border-right: 3px solid rgba(228, 151, 31, 0.5);
  border-radius: 2px 0 0 2px;
  background: rgba(5, 25, 35, 0.18);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(5, 25, 35, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-18px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.48);
}

.wheel-service-panel.is-ready {
  opacity: 0.22;
  transform: translate(0, -50%);
}

.wheel-service-panel.is-visible {
  border-color: rgba(228, 151, 31, 0.7);
  border-right-color: rgba(228, 151, 31, 0.95);
  background: rgba(5, 25, 35, 0.78);
  opacity: 1;
  transform: translate(0, -50%);
}

.wheel-service-panel.is-offstage,
.wheel-service-panel.is-ready.is-offstage,
.wheel-service-panel.is-visible.is-offstage {
  opacity: 0;
  pointer-events: none;
  transform: translate(42px, -50%);
}

.wheel-panel-kicker {
  display: none;
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: #e49d2b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wheel-service-panel h3 {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 12px;
  border-right: 1px solid rgba(228, 151, 31, 0.55);
  color: #ffffff;
  font-size: clamp(14px, 1.08vw, 17px);
  font-weight: 800;
  line-height: 1.12;
  opacity: 0;
  transition: opacity 0.16s ease;
}

.wheel-service-panel p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11.5px;
  line-height: 1.32;
  opacity: 0;
  transition: opacity 0.16s ease;
}

.wheel-service-panel.is-visible h3,
.wheel-service-panel.is-visible p {
  opacity: 1;
}

.wheel-sector-tabs {
  display: none;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.wheel-service-panel.is-expanded .wheel-sector-tabs {
  display: flex;
}

.wheel-sector-tabs button {
  border: 1px solid rgba(228, 151, 31, 0.34);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 780;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.wheel-sector-tabs button:hover,
.wheel-sector-tabs button:focus-visible,
.wheel-sector-tabs button.is-current {
  border-color: var(--in-orange);
  color: var(--in-navy);
  background: var(--in-orange-bright);
  outline: none;
}

.wheel-service-panel .wheel-sector-note {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.wheel-service-panel.is-expanded .wheel-sector-note {
  display: block;
}

.servicios {
  background:
    linear-gradient(180deg, var(--in-navy) 0%, #073044 46%, var(--in-navy) 100%);
  padding: 0;
}

.colmena-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 74px;
}

.serv {
  max-width: 900px;
  margin: 0 auto;
  color: var(--in-ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: none;
}

.service-intro {
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--in-muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  text-align: center;
}

.service-proof-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px auto 0;
}

.service-proof-strip span {
  padding: 11px 15px;
  border: 1px solid var(--in-line);
  border-radius: 999px;
  color: var(--in-navy);
  font-size: 14px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.86);
}

.content,
.content2,
.content3 {
  display: none;
}

.divseparador {
  display: none;
}

.det_ser {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0 clamp(20px, 2vw, 30px);
  padding: clamp(56px, 7vw, 92px) clamp(18px, 4vw, 54px) 72px;
  background:
    linear-gradient(135deg, rgba(5, 25, 35, 0.96), rgba(14, 52, 70, 0.92)),
    url(img/fondodetser1.svg);
  background-size: cover;
}

.det_ser > br {
  display: none;
}

.det_ser > center {
  display: contents;
}

.image-hover {
  display: flex;
  flex-direction: column;
  order: 1;
  flex: 0 1 calc((min(100%, 1380px) - clamp(20px, 2vw, 30px)) / 2);
  width: auto;
  min-width: min(100%, 340px);
  min-height: clamp(520px, 45vw, 620px);
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--in-ink);
  background: #ffffff;
  box-shadow: var(--in-shadow);
}

.image-hover .image {
  height: clamp(250px, 24vw, 360px);
  overflow: hidden;
  background: var(--in-navy);
}

.image-hover .thumb,
#img1ds {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.03);
  filter: saturate(1.18) contrast(1.08) brightness(1.02);
  animation: serviceImageDrift 11s ease-in-out infinite alternate;
}

@keyframes serviceImageDrift {
  from {
    transform: scale(1.03) translateX(-1.5%);
  }

  to {
    transform: scale(1.1) translateX(1.5%);
  }
}

.image-hover:hover .thumb,
.image-hover.hover .thumb {
  opacity: 1;
  transform: scale(1.09);
}

.image-hover .title,
.image-hover .description {
  position: static;
  width: auto;
  margin: 0;
  background: transparent;
}

.image-hover .title {
  padding: 26px 28px 12px;
  color: var(--in-navy);
  font-size: clamp(22px, 1.75vw, 29px);
  line-height: 1.15;
  letter-spacing: 0;
  text-align: left;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.image-hover .description {
  flex: 1;
  padding: 0 28px 32px;
  color: var(--in-muted);
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}

.image-hover.multimedia-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  order: 3;
  flex: 0 0 min(100%, 1380px);
  min-width: 0;
  min-height: 330px;
  margin: clamp(28px, 3.5vw, 44px) auto 0;
}

.image-hover.multimedia-card .image {
  grid-row: 1 / span 2;
  height: 100%;
  min-height: 330px;
}

.image-hover.multimedia-card .title {
  grid-column: 2;
  align-self: end;
  font-size: clamp(21px, 1.45vw, 25px);
}

.image-hover.multimedia-card .description {
  grid-column: 2;
  align-self: start;
  font-size: 14px;
  line-height: 1.5;
}

.image-hover .separrafo {
  column-count: 1;
}

.image-hover a {
  position: static;
  text-decoration: none;
}

.image-hover center {
  display: block;
  padding: 0 28px 28px;
}

.btnservicioseparados,
.btnservicios,
.btnnosotros {
  width: auto;
  min-width: 150px;
  border-color: var(--in-orange);
  border-radius: 999px;
  color: var(--in-navy);
  background: transparent;
  font-weight: 760;
  letter-spacing: 0;
}

.det_ser .btnservicioseparados {
  color: var(--in-orange);
}

.det_ser .btnservicioseparados:hover {
  color: #ffffff;
}

.btnservicioseparados {
  color: var(--in-orange);
}

.btnservicioseparados:hover,
.btnservicios:hover,
.btnnosotros:hover {
  color: #ffffff;
  box-shadow: inset 0 -100px 0 0 var(--in-orange);
}

.inf-ser {
  order: 4;
  flex: 0 0 min(100%, 1380px);
  width: min(100%, 1380px);
  max-width: 1380px;
  margin: clamp(20px, 2.5vw, 32px) auto 0;
  text-align: center;
}

.inf-ser center {
  display: flex;
  justify-content: center;
}

.inf-ser a {
  text-decoration: none;
}

.target-sectors {
  display: block;
  order: 2;
  flex: 0 0 min(100%, 1380px);
  width: min(100%, 1380px);
  max-width: 1380px;
  margin: clamp(28px, 3.5vw, 44px) auto 0;
  padding: 0 0 2px;
  box-sizing: border-box;
  background: transparent;
}

.sector-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 22px;
}

.sector-carousel::before,
.sector-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(46px, 8vw, 110px);
  pointer-events: none;
}

.sector-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 38, 52, 0.98), rgba(3, 38, 52, 0));
}

.sector-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 38, 52, 0.98), rgba(3, 38, 52, 0));
}

.sector-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: sectorCarousel 56s linear infinite;
}

.sector-carousel:hover .sector-track {
  animation-play-state: paused;
}

@keyframes sectorCarousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.sector-card {
  display: flex;
  flex: 0 0 clamp(290px, 28vw, 380px);
  min-height: 260px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 250, 0.94));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 151, 31, 0.42);
  background: #ffffff;
}

.sector-card span {
  width: fit-content;
  padding: 6px 11px 6px 9px;
  border-left: 3px solid var(--in-orange);
  border-radius: 2px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--in-orange), #d77800);
  box-shadow: 0 8px 18px rgba(193, 98, 0, 0.16);
}

.sector-card h3 {
  margin: 16px 0 10px;
  color: var(--in-navy);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.1;
}

.sector-card p {
  margin: 0;
  color: var(--in-muted);
  font-size: 15px;
  line-height: 1.5;
}

.sector-services {
  margin-top: auto;
  padding-top: 20px;
}

.sector-services strong {
  display: block;
  margin-bottom: 7px;
  color: var(--in-navy);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-services small {
  display: block;
  color: var(--in-orange);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.btnservicios {
  display: inline-flex;
  width: 420px;
  max-width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 34px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--in-orange), #f0a72b);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 38px rgba(228, 151, 31, 0.28);
  animation: quoteButtonBreath 2.8s ease-in-out infinite;
}

.btnservicios:hover {
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(228, 151, 31, 0.38), inset 0 -100px 0 0 rgba(5, 25, 35, 0.14);
}

@keyframes quoteButtonBreath {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 38px rgba(228, 151, 31, 0.26);
  }

  50% {
    transform: scale(1.025);
    box-shadow: 0 24px 54px rgba(228, 151, 31, 0.4);
  }
}

.process-flow-section {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 78px);
  background:
    linear-gradient(180deg, rgba(7, 48, 64, 0.98), rgba(5, 25, 35, 0.98)),
    #051923;
}

.process-flow-copy {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1520px);
  margin: 0 auto clamp(30px, 4vw, 48px);
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.54fr);
  gap: clamp(24px, 5vw, 86px);
  align-items: end;
}

.process-flow-copy > div {
  text-align: left;
}

.process-flow-copy span,
.about-ethics span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--in-orange);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-flow-copy h2 {
  scroll-margin-top: 92px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 860;
  line-height: 0.95;
  text-align: left;
}

.process-flow-copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  text-align: left;
}

.process-proof {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  padding: clamp(22px, 2.2vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid var(--in-orange-bright);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(5, 25, 35, 0.72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.process-proof strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.1;
}

.process-proof p {
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.process-flow {
  position: relative;
  display: grid;
  z-index: 1;
  width: min(100%, 1520px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.process-flow::before {
  display: none;
}

.process-flow::after {
  display: none;
}

.process-step {
  --process-load: 0%;
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 250px;
  padding: clamp(22px, 2.4vw, 34px);
  grid-template-rows: auto auto 1fr;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid rgba(228, 151, 31, 0.78);
  border-radius: 8px;
  background: rgba(5, 25, 35, 0.72);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.process-step::before {
  display: none;
}

.process-step::after {
  display: none;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(228, 151, 31, 0.5);
  background: rgba(7, 48, 64, 0.78);
}

.process-step.is-lit {
  border-top-color: #ffc25f;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(228, 151, 31, 0.2),
    0 0 28px rgba(228, 151, 31, 0.18);
}

.process-step.is-complete {
  border-top-color: rgba(228, 151, 31, 0.5);
}

.process-step span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  margin: 0 0 clamp(22px, 2vw, 30px);
  border: 2px solid rgba(228, 151, 31, 0.85);
  border-radius: 50%;
  color: #ffffff;
  background: #041821;
  font-weight: 860;
  box-shadow: 0 0 0 7px rgba(228, 151, 31, 0.11);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.process-step.is-lit span {
  border-color: #ffc25f;
  color: #051923;
  background: #ffc25f;
  box-shadow:
    0 0 0 7px rgba(228, 151, 31, 0.16),
    0 0 24px rgba(255, 194, 95, 0.5);
}

.process-step.is-complete span {
  border-color: #ffc25f;
  color: #051923;
  background: #ffc25f;
  box-shadow:
    0 0 0 7px rgba(228, 151, 31, 0.16),
    0 0 24px rgba(255, 194, 95, 0.5);
}

.process-step i {
  display: block;
  width: 100%;
  height: 3px;
  margin: -10px 0 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.process-step i::before {
  content: "";
  display: block;
  width: var(--process-load);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--in-orange), #ffc25f);
  transition: width 0.12s linear;
}

.process-step h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 820;
  line-height: 1.15;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.58;
}

.body_objetivos {
  min-height: 100vh;
  padding-top: var(--in-header-height);
  background:
    radial-gradient(circle at 18% 8%, rgba(228, 151, 31, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(5, 25, 35, 0.97), rgba(7, 48, 64, 0.94)),
    url(img/fondoobj.svg);
  background-size: cover;
  background-position: center;
}

.objectives-hero {
  display: block;
  width: min(100% - 40px, 1380px);
  height: auto;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) 0 clamp(44px, 6vw, 78px);
}

.objectives-heading {
  max-width: 900px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}

.objectives-heading span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--in-orange);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.objectives-heading .h1objetivos {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 840;
  line-height: 0.96;
  text-align: center;
}

.objectives-heading p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.objectives-hiring-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  background:
    linear-gradient(135deg, #e4971f 0%, #cf6200 100%);
  box-shadow: 0 16px 34px rgba(207, 98, 0, 0.34);
  transform: translateZ(0);
  animation: hiringCtaBreath 3.8s ease-in-out infinite;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.objectives-hiring-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.objectives-hiring-cta:hover,
.objectives-hiring-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(207, 98, 0, 0.44);
  transform: translateY(-2px);
}

.objectives-hiring-cta:hover::after,
.objectives-hiring-cta:focus-visible::after {
  transform: translateX(120%);
}

.objectives-hiring-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

@keyframes hiringCtaBreath {
  0%, 100% {
    box-shadow: 0 16px 34px rgba(207, 98, 0, 0.3);
  }

  50% {
    box-shadow: 0 20px 46px rgba(228, 151, 31, 0.48);
  }
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

.objective-card {
  position: relative;
  min-height: clamp(390px, 42vw, 540px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateZ(0);
  transition:
    grid-column 0.38s ease,
    border-radius 0.38s ease,
    background 0.38s ease,
    color 0.38s ease,
    box-shadow 0.38s ease,
    transform 0.38s ease;
}

.objective-card:focus-visible {
  outline: 3px solid rgba(228, 151, 31, 0.9);
  outline-offset: 4px;
}

.objective-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.04);
  transition: opacity 0.38s ease, transform 0.5s ease, filter 0.38s ease;
}

.objective-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 25, 35, 0.16), rgba(5, 25, 35, 0.82)),
    radial-gradient(circle at 50% 84%, rgba(228, 151, 31, 0.34), transparent 45%);
  transition: opacity 0.38s ease;
}

.objective-card-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 840;
  line-height: 1;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
  transition: opacity 0.25s ease, transform 0.38s ease;
}

.objective-card-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(28px, 3.2vw, 48px);
  color: var(--in-muted);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease 0.08s, transform 0.38s ease;
}

.objective-card-content strong {
  color: var(--in-navy);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.objective-card-content span {
  max-width: 720px;
  color: #3d5060;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.objective-card:hover {
  transform: translateY(-6px);
}

.objective-card.is-active {
  grid-column: span 2;
  border-color: rgba(228, 151, 31, 0.34);
  border-radius: 42px;
  color: var(--in-navy);
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.objective-card.is-active .objective-card-image {
  opacity: 0;
  transform: scale(1.18);
  filter: saturate(0.85) contrast(0.9) blur(3px);
}

.objective-card.is-active .objective-card-shade,
.objective-card.is-active .objective-card-label {
  opacity: 0;
}

.objective-card.is-active .objective-card-label {
  transform: translateY(18px);
}

.objective-card.is-active .objective-card-content {
  opacity: 1;
  transform: translateY(0);
}

.btnnosotros {
  min-width: 190px;
  min-height: 54px;
  color: var(--in-navy);
  background: var(--in-orange-bright);
  border-color: var(--in-orange-bright);
  box-shadow: 0 18px 38px rgba(193, 98, 0, 0.32);
}

.btnnosotros:hover {
  color: #ffffff;
  border-color: var(--in-orange);
  box-shadow: inset 0 -100px 0 0 var(--in-orange);
}

.nos {
  min-height: 620px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px 22px 92px;
  background:
    linear-gradient(90deg, rgba(5, 25, 35, 0.92), rgba(5, 25, 35, 0.58)),
    url(img/nos.jpg) center center / cover no-repeat;
  background-attachment: scroll;
}

.nos br {
  display: none;
}

.hnos {
  margin: 0;
  color: #ffffff;
  font-size: clamp(50px, 8vw, 104px);
  font-weight: 820;
  letter-spacing: 0;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.pnos {
  max-width: 900px;
  margin: 24px auto 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(23px, 3.6vw, 44px);
  line-height: 1.14;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.contnosgen {
  margin-top: 0;
  padding: 72px 22px 88px;
  background:
    radial-gradient(circle at 18% 14%, rgba(228, 151, 31, 0.12), transparent 24%),
    linear-gradient(180deg, var(--in-navy) 0%, #073044 46%, var(--in-navy) 100%),
    url(img/fondo_aboutus.svg);
  background-size: cover;
  background-position: center;
}

.about-showcase {
  max-width: 1320px;
  margin: 0 auto;
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1160px);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 24px;
}

.about-proof article {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--in-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(5, 25, 35, 0.08);
}

.about-proof strong {
  display: block;
  color: var(--in-orange);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 880;
  line-height: 0.95;
}

.about-proof span {
  display: block;
  margin-top: 12px;
  color: var(--in-navy);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.about-ethics {
  display: grid;
  width: min(100%, 1160px);
  grid-template-columns: 1fr;
  gap: 26px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 24px;
  padding: clamp(28px, 3.4vw, 44px);
  border-left: 5px solid var(--in-orange);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(5, 25, 35, 0.1);
}

.about-ethics h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--in-navy);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 840;
  line-height: 1.04;
  text-align: center;
}

.about-ethics > div:first-child {
  text-align: center;
}

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

.ethics-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--in-line);
  border-radius: 8px;
  background: #f8fbfc;
}

.ethics-grid h3 {
  margin: 0 0 10px;
  color: var(--in-orange);
  font-size: 17px;
  font-weight: 820;
  line-height: 1.18;
}

.ethics-grid p {
  margin: 0;
  color: var(--in-muted);
  font-size: 14px;
  line-height: 1.5;
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.about-info-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  border: 1px solid var(--in-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(5, 25, 35, 0.12);
}

.about-info-card .titapsobnons {
  margin: 24px 24px 12px;
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.18;
}

.about-info-points {
  display: grid;
  flex: 1;
  gap: 0;
  padding: 0 24px 26px;
}

.about-info-card .letters {
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid rgba(5, 25, 35, 0.08);
  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1.45;
}

.about-info-card .letters:first-child {
  border-top-color: rgba(193, 98, 0, 0.22);
}

.about-info-card .letters strong {
  display: block;
  margin-bottom: 5px;
  color: var(--in-orange);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-video-full {
  margin-top: 24px;
}

.client-proof-section {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 24px;
  padding: 28px 26px 30px;
  border: 1px solid rgba(5, 25, 35, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 252, 0.98));
  box-shadow: 0 18px 50px rgba(5, 25, 35, 0.08);
}

.client-proof-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.client-proof-heading span {
  color: var(--in-orange);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-proof-heading h2 {
  max-width: 580px;
  margin: 0;
  color: var(--in-navy);
  font-size: 30px;
  font-weight: 840;
  line-height: 1.08;
  text-align: right;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--in-line);
  border-radius: 8px;
  background: var(--in-line);
}

.client-logo-grid img {
  --logo-pad-x: 34px;
  --logo-pad-y: 16px;
  display: block;
  width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: center;
  padding: var(--logo-pad-y) var(--logo-pad-x);
  background: #ffffff;
}

.client-logo-grid img[alt="Medtronic"],
.client-logo-grid img[alt="Eaton"],
.client-logo-grid img[alt="Infineon"],
.client-logo-grid img[alt="Sensata Technologies"],
.client-logo-grid img[alt="Prologis"],
.client-logo-grid img[alt="Linc Systems"],
.client-logo-grid img[alt="Warrior"] {
  --logo-pad-x: 20px;
  --logo-pad-y: 13px;
}

.client-logo-grid img[alt="Sensata Technologies"],
.client-logo-grid img[alt="Linc Systems"] {
  --logo-pad-x: 16px;
}

.client-logo-grid img[alt="Fender"],
.client-logo-grid img[alt="Insulet"],
.client-logo-grid img[alt="Vertiv"],
.client-logo-grid img[alt="Haskell"],
.client-logo-grid img[alt="Brady"],
.client-logo-grid img[alt="Profauna"] {
  --logo-pad-x: 46px;
  --logo-pad-y: 18px;
}

.client-logo-grid img[alt="Vertiv"],
.client-logo-grid img[alt="Profauna"] {
  --logo-pad-x: 50px;
}

.client-logo-grid img[alt="Intuitive Surgical"],
.client-logo-grid img[alt="ITJ"],
.client-logo-grid img[alt="Cushman & Wakefield"],
.client-logo-grid img[alt="BXN"],
.client-logo-grid img[alt="Ryerson"],
.client-logo-grid img[alt="EssilorLuxottica"],
.client-logo-grid img[alt="Steelcase"],
.client-logo-grid img[alt="Navico Group"],
.client-logo-grid img[alt="Corporación del Fuerte"] {
  --logo-pad-x: 28px;
  --logo-pad-y: 16px;
}

.about-certifications-detail {
  margin-top: 24px;
  border: 1px solid var(--in-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(5, 25, 35, 0.1);
  overflow: hidden;
}

.about-certifications-detail summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  color: var(--in-navy);
  cursor: pointer;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 840;
  list-style: none;
}

.about-certifications-detail summary::-webkit-details-marker {
  display: none;
}

.about-certifications-detail summary::after {
  content: "+";
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--in-orange);
  font-size: 22px;
  line-height: 1;
}

.about-certifications-detail[open] summary::after {
  content: "-";
}

.about-certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 26px 26px;
}

.about-certifications-grid article {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--in-line);
  border-radius: 8px;
  background: #f8fbfc;
}

.about-certifications-grid h3 {
  margin: 0 0 8px;
  color: var(--in-navy);
  font-size: 15px;
  font-weight: 840;
  line-height: 1.2;
}

.about-certifications-grid p {
  margin: 0;
  color: var(--in-muted);
  font-size: 15px;
  line-height: 1.5;
}

.about-certifications-grid strong {
  color: var(--in-navy);
}

.about-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(340px, 0.66fr);
  gap: 24px;
  align-items: start;
}

.about-video-column {
  display: grid;
  gap: 24px;
}

.about-video-grid #animadosegundo,
.about-video-grid .gris2 {
  height: auto;
}

.about-video-grid #animadosegundo {
  display: grid;
  gap: 24px;
}

.about-bottom-card .letters {
  columns: 1;
}

#animado,
#animadosegundo,
#animadotercero {
  animation: none !important;
  transform: none !important;
}

.gris,
.gris2,
.gris3 {
  width: 100%;
  margin: 0;
  border: 1px solid var(--in-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(5, 25, 35, 0.12);
}

.about-lead {
  margin-bottom: 24px;
  border-left: 5px solid var(--in-orange);
}

.about-lead .letters {
  columns: 1;
  max-width: 1180px;
}

.titapsobnons,
#titapsobnons2 {
  margin: 24px 32px 12px;
  color: var(--in-orange);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.18;
}

.letters,
.letters2 {
  width: auto;
  margin: 0;
  padding: 0 32px 30px;
  color: #263640;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.58;
  text-align: left;
}

.gris .letters,
.gris2 .letters2,
.gris3 .letters {
  width: auto;
  color: #263640;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.58;
  text-align: left;
}

.video-wrap {
  position: relative;
  max-width: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(5, 25, 35, 0.08), rgba(5, 25, 35, 0.08)),
    url(img_y_video/videopromocional-poster.jpg) center center / contain no-repeat,
    var(--in-navy);
  box-shadow: var(--in-shadow);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: none;
  background: var(--in-navy);
}

.iconyoutubevid {
  position: absolute;
  width: 60px;
  height: 60px;
  right: 24px;
  bottom: 24px;
  margin: 0;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.contact-locations {
  display: block;
  width: min(1180px, calc(100% - 44px));
  max-width: 1180px;
  height: auto;
  margin: 0 auto;
  padding: 34px 0 40px;
}

.body .mgform {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.body .formnegro {
  position: static;
  z-index: auto;
  width: auto;
  height: auto;
  min-height: 100%;
  margin: 0;
  padding: 10px 0 0;
  border: 0;
  border-top: 5px solid var(--in-orange);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.contact-panel-kicker {
  margin: 0 0 12px;
  color: var(--in-orange);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.body .letcontti {
  margin: 0;
  color: var(--in-navy);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 840;
  line-height: 0.98;
}

.contact-panel-copy {
  margin: 22px 0 34px;
  color: var(--in-muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
}

.contact-panel-card {
  display: block;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(5, 25, 35, 0.14);
  border-radius: 0;
  background: transparent;
}

.contact-panel-card + .contact-panel-card {
  margin-top: 14px;
}

.body .imgtelefonocontlo,
.body .imgcorreocont {
  display: none;
}

.body .ptelefonocon,
.body .pcorreoeleccont {
  margin: 0 0 5px;
  color: var(--in-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.body .numtelcont,
.body .pdireccioncorrecont {
  display: inline-block;
  margin: 0;
  color: var(--in-navy);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 820;
  line-height: 1.15;
  text-decoration: none;
}

.contact-phone-note {
  margin: 8px 0 0;
  color: var(--in-muted);
  font-size: 14px;
  line-height: 1.35;
}

.body .numtelcont:hover,
.body .pdireccioncorrecont:hover {
  color: var(--in-orange);
}

.body .form {
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.body .form > br {
  display: none;
}

.body .letras {
  margin: 0;
  color: var(--in-navy);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 840;
  line-height: 1;
}

.body .letras1 {
  width: auto;
  margin: 12px 0 26px;
  color: var(--in-muted);
  font-size: 17px;
  line-height: 1.45;
}

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

.body #contactform > br {
  display: none;
}

.body .inputGroup,
.body .inputGroup1,
.body .inputGroup2,
.body .inputGroup3,
.body .inputGroup4 {
  max-width: none;
  margin: 0;
}

.body .extphon,
.body .acomodo {
  display: contents;
}

.body .inputGroup3,
.body .inputGroup4,
.body #contactform > div[style],
.body .btnnose {
  grid-column: 1 / -1;
}

.body .contact-from,
.body .contact-from-phone,
.body .contact-from-extension,
.body .contact-from-descripcion,
.body .contact-from-intencion,
.body .inputGroup input,
.body .inputGroup1 input,
.body .inputGroup2 input,
.body .inputGroup3 textarea,
.body .inputGroup4 select {
  width: 100%;
  height: auto;
  min-height: 52px;
  margin: 0;
  padding: 16px 14px 10px;
  border: 1px solid rgba(5, 25, 35, 0.22);
  border-radius: 0;
  color: var(--in-navy);
  background: #ffffff;
}

.body .inputGroup3 textarea,
.body .contact-from-descripcion {
  min-height: 132px;
  resize: vertical;
}

.body .inputGroup label,
.body .inputGroup1 label,
.body .inputGroup2 label,
.body .inputGroup3 label {
  left: 0;
  margin: 0;
  padding: 0 6px;
  transform: translate(12px, -50%);
  color: #526676;
  font-size: 13px;
  font-weight: 760;
  background: #ffffff;
}

.body .inputGroup :is(input:focus, input:valid)~label,
.body .inputGroup1 :is(input:focus, input:valid)~label,
.body .inputGroup2 :is(input:focus, input:valid)~label,
.body .inputGroup3 :is(textarea:focus, textarea:valid)~label {
  margin: 0;
  padding: 0 6px;
  transform: translate(12px, -50%);
  color: var(--in-orange);
  background: #ffffff;
}

.body .inputGroup :is(input:focus, input:valid),
.body .inputGroup1 :is(input:focus, input:valid),
.body .inputGroup2 :is(input:focus, input:valid),
.body .inputGroup3 :is(textarea:focus, textarea:valid),
.body .inputGroup4 select:focus {
  border-color: var(--in-orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(228, 151, 31, 0.16);
}

.body .inputGroup4 select {
  color: var(--in-navy);
}

.body .btnnose {
  width: min(100%, 320px);
  min-height: 56px;
  margin: 6px 0 0 !important;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: var(--in-orange);
  font-weight: 820;
  box-shadow: none;
}

.contact-form-to-locations-spacer {
  height: 34px;
}

.contact-locations-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.contact-locations-heading span,
.office-kicker {
  color: var(--in-orange);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-locations-heading h2 {
  margin: 10px 0 14px;
  color: var(--in-navy);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 820;
  line-height: 1;
}

.contact-locations-heading p {
  margin: 0;
  color: var(--in-muted);
  font-size: 19px;
  line-height: 1.45;
}

.office-card-grid,
.location-map-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.office-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--in-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(5, 25, 35, 0.1);
}

.office-card h3 {
  margin: 8px 0 16px;
  color: var(--in-navy);
  font-size: 24px;
  font-weight: 820;
}

.office-card p {
  margin: 0 0 14px;
  color: var(--in-muted);
  font-size: 15px;
  line-height: 1.55;
}

.office-card a {
  color: var(--in-orange);
  font-weight: 780;
  text-decoration: none;
}

.office-card a:hover {
  color: var(--in-navy);
}

.location-map-grid {
  margin-top: 22px;
}

.where-operate {
  display: block;
  width: 100%;
  margin-top: 28px;
  padding: 30px;
  overflow-anchor: none;
  border: 1px solid rgba(5, 25, 35, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(228, 151, 31, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff, #f7fbfd);
  box-shadow: 0 24px 54px rgba(5, 25, 35, 0.1);
}

.where-operate-copy {
  max-width: 720px;
  margin-bottom: 24px;
}

.where-operate-copy h2 {
  margin: 8px 0 10px;
  color: var(--in-navy);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 820;
  line-height: 1;
}

.where-operate-copy p {
  margin: 0;
  color: var(--in-muted);
  font-size: 18px;
  line-height: 1.45;
}

.where-operate-map-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}

.mx-state-map {
  position: relative;
  min-height: 460px;
  padding: 24px 18px;
  overflow: hidden;
  contain: paint;
  overflow-anchor: none;
  border: 1px solid rgba(5, 25, 35, 0.06);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 48%, rgba(114, 179, 219, 0.15), transparent 44%),
    #ffffff;
}

.portfolio-map-stage {
  display: flex;
  flex-direction: column;
}

.portfolio-map-view {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100%;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.portfolio-map-view[hidden] {
  display: none;
}

.mx-geographic-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mx-interactive-map {
  width: min(100%, 960px);
  height: auto;
  max-height: 500px;
  filter: drop-shadow(0 18px 28px rgba(5, 25, 35, 0.09));
}

.mx-interactive-map image {
  pointer-events: none;
}

.mx-state-region,
.mx-city-pin {
  cursor: pointer;
  outline: none;
  pointer-events: bounding-box;
  transition: filter 0.16s ease, opacity 0.16s ease;
}

.mx-state-base-layer {
  pointer-events: none;
}

.mx-state-base {
  fill: rgba(186, 216, 232, 0.62);
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.mx-state-fill {
  fill: rgba(67, 133, 171, 0.92);
  stroke: #ffffff;
  stroke-width: 3;
  stroke-linejoin: round;
  opacity: 0.92;
  vector-effect: non-scaling-stroke;
  transition: fill 0.16s ease, stroke 0.16s ease, stroke-width 0.16s ease, opacity 0.16s ease, filter 0.16s ease;
}

.mx-state-region:hover .mx-state-fill,
.mx-state-region:focus-visible .mx-state-fill,
.mx-state-region.is-selected .mx-state-fill {
  fill: rgba(228, 151, 31, 0.96);
  stroke: #c16200;
  stroke-width: 3.4;
  opacity: 1;
  filter: brightness(1.08) saturate(1.35) sepia(0.45) hue-rotate(345deg);
}

.mx-state-region:hover,
.mx-state-region:focus-visible,
.mx-state-region.is-previewed {
  filter: drop-shadow(0 0 10px rgba(228, 151, 31, 0.58));
}

.mx-state-region.is-selected {
  filter: drop-shadow(0 0 12px rgba(193, 98, 0, 0.48));
}

.mx-cdmx-hit-region,
.mx-cdmx-hit-region:hover,
.mx-cdmx-hit-region:focus-visible,
.mx-cdmx-hit-region.is-previewed,
.mx-cdmx-hit-region.is-selected {
  filter: none;
}

.mx-cdmx-hit-region .mx-cdmx-hit-target,
.mx-cdmx-hit-region:hover .mx-cdmx-hit-target,
.mx-cdmx-hit-region:focus-visible .mx-cdmx-hit-target,
.mx-cdmx-hit-region.is-previewed .mx-cdmx-hit-target,
.mx-cdmx-hit-region.is-selected .mx-cdmx-hit-target {
  fill: transparent;
  stroke: transparent;
  opacity: 0;
  pointer-events: all;
}

.mx-state-region.is-previewed .mx-state-fill {
  fill: rgba(244, 180, 45, 0.98);
  stroke: #c16200;
  stroke-width: 3.7;
  opacity: 1;
  filter: brightness(1.12) saturate(1.55) sepia(0.62) hue-rotate(345deg);
}

.mx-operation-region .mx-state-fill,
.mx-operation-region:hover .mx-state-fill,
.mx-operation-region:focus-visible .mx-state-fill,
.mx-operation-region.is-selected .mx-state-fill {
  fill: rgba(228, 151, 31, 0.96);
  stroke: #c16200;
  filter: brightness(1.08) saturate(1.4) sepia(0.5) hue-rotate(345deg);
}

.mx-state-region path:not(.mx-state-fill),
.mx-state-region circle:not(.mx-state-fill) {
  fill: rgba(67, 133, 171, 0.92);
  stroke: #ffffff;
  stroke-width: 4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: fill 0.16s ease, stroke 0.16s ease;
}

.mx-state-region:hover path:not(.mx-state-fill),
.mx-state-region:hover circle:not(.mx-state-fill),
.mx-state-region:focus-visible path:not(.mx-state-fill),
.mx-state-region:focus-visible circle:not(.mx-state-fill),
.mx-state-region.is-previewed path:not(.mx-state-fill),
.mx-state-region.is-previewed circle:not(.mx-state-fill),
.mx-state-region.is-selected path:not(.mx-state-fill),
.mx-state-region.is-selected circle:not(.mx-state-fill) {
  fill: rgba(244, 180, 45, 0.98);
  stroke: #c16200;
}

.mx-state-region-small circle {
  stroke-width: 5;
}

.mx-city-pin {
  display: none;
  filter: drop-shadow(0 8px 12px rgba(5, 25, 35, 0.24));
}

.mx-city-pin path {
  fill: #e49d2b;
  stroke: #ffffff;
  stroke-width: 4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.mx-city-pin circle {
  fill: #ffffff;
  stroke: none;
}

.mx-city-pin:hover path,
.mx-city-pin:focus-visible path,
.mx-city-pin.is-previewed path,
.mx-city-pin.is-selected path {
  fill: #f4b42d;
  stroke: #c16200;
}

.mx-city-pin:hover circle,
.mx-city-pin:focus-visible circle,
.mx-city-pin.is-previewed circle,
.mx-city-pin.is-selected circle {
  fill: #ffffff;
}

.mx-city-pin:hover,
.mx-city-pin:focus-visible,
.mx-city-pin.is-previewed {
  filter: drop-shadow(0 0 12px rgba(244, 180, 45, 0.62));
}

.portfolio-map-toolbar {
  display: flex;
  width: min(100%, 620px);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--in-navy);
}

.portfolio-map-toolbar button {
  min-height: 38px;
  border: 1px solid rgba(5, 25, 35, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--in-navy);
  font-weight: 820;
  background: #ffffff;
  cursor: pointer;
}

.portfolio-map-toolbar button:hover,
.portfolio-map-toolbar button:focus-visible {
  color: #ffffff;
  background: var(--in-navy);
  outline: none;
}

.portfolio-map-toolbar strong {
  font-size: 18px;
  font-weight: 820;
}

.portfolio-map-toolbar span {
  color: var(--in-muted);
  font-size: 13px;
  font-weight: 740;
}

.baja-map-view {
  justify-content: flex-start;
}

.baja-zoom-map {
  width: min(100%, 660px);
  max-height: 430px;
}

.state-zoom-map {
  width: min(100%, 660px);
  max-height: 430px;
}

.baja-state-outline {
  fill: rgba(228, 151, 31, 0.16);
  stroke: rgba(193, 98, 0, 0.9);
  stroke-width: 4;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 18px 24px rgba(5, 25, 35, 0.14));
}

.state-zoom-outline {
  fill: rgba(228, 151, 31, 0.16);
}

.cdmx-zoom-outline {
  fill: rgba(228, 151, 31, 0.16);
  stroke: rgba(193, 98, 0, 0.9);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 18px 24px rgba(5, 25, 35, 0.14));
}

.city-outline-layer {
  opacity: 0.96;
  pointer-events: auto;
}

.city-area-outline {
  fill: rgba(255, 255, 255, 0.24);
  stroke: rgba(9, 54, 89, 0.62);
  stroke-width: 1.25;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  pointer-events: visiblePainted;
  transition: fill 0.16s ease, stroke 0.16s ease, stroke-width 0.16s ease;
}

.city-area-operation {
  fill: rgba(228, 151, 31, 0.34);
  stroke: rgba(193, 98, 0, 0.92);
  stroke-width: 1.7;
}

.city-area-outline:hover,
.city-area-outline:focus-visible,
.city-area-outline.is-previewed,
.city-area-outline.is-selected {
  fill: rgba(228, 151, 31, 0.42);
  stroke: rgba(193, 98, 0, 0.95);
  stroke-width: 1.9;
  outline: none;
}

.cdmx-borough-outline {
  fill: rgba(255, 255, 255, 0.16);
  stroke: rgba(9, 54, 89, 0.5);
  stroke-width: 0.9;
}

.baja-city-marker {
  cursor: pointer;
  outline: none;
  pointer-events: bounding-box;
  filter: none;
}

.baja-city-marker path {
  display: none;
}

.baja-city-marker circle {
  display: none;
}

.baja-city-marker text {
  fill: var(--in-navy);
  font-size: 5.6px;
  font-weight: 820;
  letter-spacing: 0;
  paint-order: stroke;
  pointer-events: none;
  stroke: #ffffff;
  stroke-width: 3px;
  stroke-linejoin: round;
}

.portfolio-map-view[data-map-view="baja-california"] .baja-city-marker text,
.portfolio-map-view[data-map-view="cdmx"] .baja-city-marker text {
  font-size: 5px;
}

.portfolio-map-view[data-map-view="guanajuato"] .baja-city-marker text,
.portfolio-map-view[data-map-view="edomex"] .baja-city-marker text {
  font-size: 4px;
}

.baja-city-marker:hover path,
.baja-city-marker:focus-visible path,
.baja-city-marker.is-previewed path,
.baja-city-marker.is-selected path {
  fill: #ffffff;
  stroke: #c16200;
}

.baja-city-marker:hover circle,
.baja-city-marker:focus-visible circle,
.baja-city-marker.is-previewed circle,
.baja-city-marker.is-selected circle {
  fill: #c16200;
}

.baja-city-marker:hover,
.baja-city-marker:focus-visible,
.baja-city-marker.is-previewed {
  filter: none;
}

.where-operate-panel {
  display: flex;
  min-height: 260px;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border: 1px solid rgba(5, 25, 35, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(114, 179, 219, 0.98), rgba(93, 161, 204, 0.96));
  box-shadow: 0 18px 45px rgba(5, 25, 35, 0.1);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.where-operate-panel.is-previewing {
  border-color: rgba(228, 151, 31, 0.52);
  background: linear-gradient(135deg, rgba(88, 151, 190, 0.98), rgba(67, 133, 171, 0.96));
  box-shadow: 0 18px 45px rgba(5, 25, 35, 0.12), 0 0 0 3px rgba(228, 151, 31, 0.14);
}

.where-operate-panel span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.where-operate-panel h3 {
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 820;
  line-height: 1.1;
}

.where-operate-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.5;
}

.where-detail-button {
  width: fit-content;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 10px 14px;
  color: #ffffff;
  font-weight: 780;
  background: transparent;
  cursor: pointer;
}

.where-detail-button:hover,
.where-detail-button:focus-visible {
  color: var(--in-navy);
  background: #ffffff;
  outline: none;
}

.portfolio-panel-meta {
  margin-top: 18px;
}

.portfolio-panel-counts {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.portfolio-panel-counts strong {
  font-size: 18px;
  font-weight: 820;
}

.portfolio-panel-counts span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0;
  text-align: right;
  text-transform: none;
}

.portfolio-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.portfolio-city-chip {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 6px 9px 6px 11px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.portfolio-city-chip strong {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--in-navy);
  font-size: 11px;
  background: #ffffff;
}

.portfolio-city-chip:hover,
.portfolio-city-chip:focus-visible,
.portfolio-city-chip.is-previewed,
.portfolio-city-chip.is-selected {
  color: var(--in-navy);
  background: #ffffff;
  outline: none;
}

.portfolio-city-chip:hover strong,
.portfolio-city-chip:focus-visible strong,
.portfolio-city-chip.is-previewed strong,
.portfolio-city-chip.is-selected strong {
  color: #ffffff;
  background: var(--in-orange);
}

.portfolio-location-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 25, 35, 0.66);
  backdrop-filter: blur(8px);
}

.portfolio-location-modal.is-open {
  display: flex;
}

.portfolio-location-dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(760px, 88vh);
  overflow: auto;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.portfolio-location-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--in-line);
  border-radius: 50%;
  color: var(--in-navy);
  font-size: 26px;
  line-height: 1;
  background: #ffffff;
  cursor: pointer;
}

.portfolio-location-dialog > span {
  color: var(--in-orange);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-location-dialog h2 {
  margin: 10px 48px 12px 0;
  color: var(--in-navy);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 820;
  line-height: 1;
}

.portfolio-location-summary {
  margin: 0;
  color: var(--in-muted);
  font-size: 18px;
  line-height: 1.45;
}

.portfolio-location-meta {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--in-navy);
  background: rgba(228, 151, 31, 0.12);
}

.portfolio-location-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.portfolio-location-projects article {
  padding: 18px;
  border: 1px solid rgba(5, 25, 35, 0.08);
  border-radius: 8px;
  background: #f7fafb;
}

.portfolio-location-projects h3 {
  margin: 0 0 8px;
  color: var(--in-navy);
  font-size: 18px;
  font-weight: 820;
}

.portfolio-location-projects p {
  margin: 8px 0 0;
  color: var(--in-muted);
  font-size: 14px;
  line-height: 1.45;
}

.map-key-notice {
  margin-top: 22px;
  padding: 24px;
  border: 1px dashed rgba(193, 98, 0, 0.45);
  border-radius: 8px;
  color: var(--in-muted);
  font-size: 15px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
}

.location-map-grid .mapsapis {
  width: 100%;
  height: 310px;
  overflow: hidden;
  border: 1px solid var(--in-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(5, 25, 35, 0.1);
}

.service-detail-page {
  padding: 86px 22px 76px;
  background:
    linear-gradient(180deg, #f6f8f9 0%, #ffffff 44%, #edf3f4 100%);
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  width: min(100%, 1180px);
  height: auto;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 20%, rgba(228, 151, 31, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(5, 25, 35, 0.98), rgba(14, 52, 70, 0.94));
  box-shadow: var(--in-shadow);
}

.service-back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--in-orange-bright);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-detail-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 820;
  line-height: 0.95;
}

.service-detail-copy p {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.service-detail-cta {
  display: inline-block;
  margin-top: 30px;
  border: 1px solid var(--in-orange-bright);
  border-radius: 999px;
  padding: 13px 18px;
  color: #ffffff;
  font-weight: 780;
  text-decoration: none;
}

.service-detail-cta:hover {
  color: var(--in-navy);
  background: var(--in-orange-bright);
}

.service-detail-icon {
  display: grid;
  place-items: center;
}

.service-detail-icon img {
  width: min(100%, 240px);
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.28));
}

.service-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  width: min(100%, 1180px);
  height: auto;
  max-width: 1180px;
  margin: 28px auto 0;
}

.service-detail-main,
.service-detail-side,
.related-services {
  border: 1px solid rgba(5, 25, 35, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(5, 25, 35, 0.08);
}

.service-detail-main {
  padding: clamp(30px, 4vw, 48px);
}

.service-detail-main span {
  color: var(--in-orange);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-main h2,
.service-detail-side h2,
.related-services h2 {
  margin: 10px 0 16px;
  color: var(--in-navy);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 820;
  line-height: 1.05;
}

.service-detail-main h3 {
  margin: 34px 0 14px;
  color: var(--in-orange);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 820;
  line-height: 1.12;
}

.service-detail-main p {
  margin: 0;
  color: var(--in-muted);
  font-size: 18px;
  line-height: 1.58;
}

.service-detail-main ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-main li {
  position: relative;
  padding-left: 22px;
  color: #263640;
  font-size: 16px;
  line-height: 1.5;
}

.service-detail-main li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--in-orange-bright);
}

.service-detail-extra {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(5, 25, 35, 0.1);
}

.service-detail-extra-section {
  display: block;
  width: auto;
  height: auto;
  padding: 18px;
  border: 1px solid rgba(5, 25, 35, 0.08);
  border-radius: 8px;
  background: #f8fbfc;
}

.service-detail-extra-section h3 {
  margin-top: 0;
}

.service-detail-extra-section ul {
  margin-top: 16px;
}

.service-detail-side {
  padding: 30px;
}

.service-detail-side p {
  margin: 10px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--in-navy);
  font-weight: 760;
  background: rgba(228, 151, 31, 0.12);
}

.service-page-wheel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(228, 151, 31, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 46%, rgba(228, 151, 31, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(5, 25, 35, 0.98), rgba(14, 52, 70, 0.94));
  box-shadow: var(--in-shadow);
}

.service-page-wheel-copy span {
  color: var(--in-orange-bright);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-page-wheel-copy h2 {
  margin: 12px 0 14px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 820;
  line-height: 1;
}

.service-page-wheel-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.5;
}

.service-page-wheel-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-page-wheel-orbit::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  pointer-events: none;
}

.service-page-wheel-orbit a {
  position: relative;
  display: grid;
  min-height: 148px;
  place-items: center;
  padding: 16px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-page-wheel-orbit a:hover,
.service-page-wheel-orbit a:focus-visible,
.service-page-wheel-orbit a.is-current {
  transform: translateY(-4px);
  border-color: rgba(228, 151, 31, 0.62);
  background: rgba(255, 255, 255, 0.095);
  outline: none;
}

.service-page-wheel-orbit a.is-current {
  box-shadow: 0 0 0 1px rgba(228, 151, 31, 0.38), 0 20px 40px rgba(0, 0, 0, 0.22);
}

.service-page-wheel-orbit img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.service-page-wheel-orbit span {
  display: block;
  margin-top: 10px;
}

.related-services {
  width: min(100%, 1180px);
  height: auto;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 30px;
}

.related-services > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.related-services a {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 132px;
  padding: 16px 10px;
  border: 1px solid rgba(5, 25, 35, 0.08);
  border-radius: 8px;
  color: var(--in-navy);
  font-size: 13px;
  font-weight: 780;
  text-align: center;
  text-decoration: none;
  background: #f7fafb;
}

.related-services a:hover {
  border-color: rgba(228, 151, 31, 0.44);
  background: #ffffff;
}

.related-services img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .contenedor.hero-shell {
    align-items: flex-end;
    min-height: 88vh;
  }

  .hero-brand-honeycomb {
    display: none;
  }

  .wheel-service-panel {
    display: none;
  }

  .det_ser > center {
    flex-direction: column;
    align-items: center;
  }

  .image-hover {
    flex: 0 0 min(100%, 620px);
    width: min(100%, 620px);
    min-height: auto;
  }

  .image-hover.multimedia-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 min(100%, 620px);
    margin-top: 28px;
  }

  .image-hover.multimedia-card .image {
    min-height: 260px;
  }

  .office-card-grid,
  .location-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .where-operate-map-shell {
    grid-template-columns: 1fr;
  }

  .body .mgform {
    grid-template-columns: 1fr;
  }

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

  .objective-card,
  .objective-card.is-active {
    grid-column: auto;
    min-height: 360px;
    border-radius: 18px;
  }

  .about-video-grid {
    grid-template-columns: 1fr;
  }

  .client-proof-heading {
    align-items: start;
    flex-direction: column;
  }

  .client-proof-heading h2 {
    text-align: left;
  }

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

  .process-flow-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .process-proof {
    min-height: auto;
  }

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

  .process-flow::before,
  .process-flow::after {
    display: none;
  }

  .about-proof,
  .ethics-grid,
  .about-certifications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-ethics {
    grid-template-columns: 1fr;
  }

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

  .about-info-card {
    min-height: auto;
  }

  .service-detail-hero,
  .service-detail-content,
  .service-page-wheel {
    grid-template-columns: 1fr;
  }

  .service-detail-icon {
    justify-items: start;
  }

  .related-services > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-page-wheel-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-lead .letters,
  .about-bottom-card .letters {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .img_index,
  .contenedor.hero-shell {
    min-height: 760px;
  }

  .contenedor.hero-shell {
    padding: 62px 20px 44px;
  }

  .hero-slogan {
    top: 54px;
    width: min(88vw, 360px);
    font-size: 18px;
  }

  .texto {
    font-size: clamp(48px, 16vw, 72px);
  }

  .subtexto {
    font-size: 19px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow-section {
    padding-inline: 16px;
  }

  .process-step {
    min-height: auto;
  }

  .about-proof,
  .ethics-grid,
  .about-certifications-grid {
    grid-template-columns: 1fr;
  }

  .client-proof-section {
    padding: 22px 16px;
  }

  .client-proof-heading h2 {
    font-size: 24px;
  }

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

  .client-logo-grid img {
    height: 78px;
    padding: calc(var(--logo-pad-y) * 0.9) calc(var(--logo-pad-x) * 0.72);
  }

  .btnini,
  .btn-ghost-home {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .servicios {
    padding-top: 0;
  }

  .det_ser {
    padding: 54px 16px;
  }

  .target-sectors {
    margin-top: 34px;
    padding: 0;
  }

  .sector-card {
    min-height: auto;
  }

  .about-info-grid {
    grid-template-columns: 1fr;
  }

  .gris,
  .gris2,
  .gris3 {
    width: calc(100% - 32px);
    margin: 0 auto 22px;
  }

  .contact-locations {
    width: min(100% - 32px, 1180px);
    padding-top: 24px;
  }

  .body .mgform {
    width: min(100% - 32px, 1180px);
  }

  .body #contactform {
    grid-template-columns: 1fr;
  }

  .contact-form-to-locations-spacer {
    height: 22px;
  }

  .where-operate {
    padding: 20px;
  }

  .office-card-grid,
  .location-map-grid {
    grid-template-columns: 1fr;
  }

  .mx-state-map {
    min-height: 300px;
    padding: 14px;
  }

  .portfolio-map-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .baja-zoom-map {
    max-height: 360px;
  }

  .where-operate-panel {
    padding: 20px;
  }

  .portfolio-panel-counts {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-panel-counts span {
    text-align: left;
  }

  .portfolio-location-projects {
    grid-template-columns: 1fr;
  }

  .office-card {
    min-height: auto;
  }

  .location-map-grid .mapsapis {
    height: 280px;
  }

  .nos {
    min-height: 560px;
    padding: 104px 20px 72px;
  }

  .pnos {
    font-size: 23px;
  }

  .contnosgen {
    padding: 42px 16px 58px;
  }

  .letters,
  .letters2 {
    padding: 0 24px 26px;
    font-size: 15px;
  }

  .video-wrap {
    aspect-ratio: 16 / 9;
  }

  .service-detail-page {
    padding: 68px 16px 54px;
  }

  .service-detail-hero {
    padding: 32px 22px;
  }

  .service-detail-icon img {
    width: 150px;
  }

  .related-services > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.service-page-wheel-orbit {
  grid-template-columns: 1fr;
}
}

.certifications-strip {
  display: block;
  width: 100%;
  height: auto;
  background:
    radial-gradient(circle at 82% 24%, rgba(228, 151, 31, 0.14), transparent 28%),
    linear-gradient(180deg, var(--in-navy) 0%, #073044 54%, var(--in-navy) 100%);
  border-top: 0;
  margin-top: 0;
  padding: 54px 0 44px;
  overflow: hidden;
}

.certifications-strip .h1objetivos {
  color: #ffffff;
  margin: 0 0 28px;
}

.certifications-strip .slider {
  --slide-w: 180px;
  --slide-h: 110px;
  --gap: 20px;
  --n: 21;
  height: var(--slide-h);
  width: 100%;
  margin: 0;
  background: #fff;
  box-shadow: 0 14px 32px rgba(3, 35, 51, 0.12);
  overflow: hidden;
  position: relative;
}

.certifications-strip .slider .slide-track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  width: max-content;
  animation: certifications-scroll 40s linear infinite;
  will-change: transform;
}

.certifications-strip .slider .slide-track.is-paused {
  animation-play-state: paused;
}

.certifications-strip .slider .slide {
  flex: 0 0 var(--slide-w);
  width: var(--slide-w);
  height: var(--slide-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}

.certifications-strip .slider .slide img.cert-logo {
  max-width: calc(var(--slide-w) - 20px);
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.certifications-strip .slider::before,
.certifications-strip .slider::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(60px, 10vw, 160px);
  height: 100%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.certifications-strip .slider::before {
  left: 0;
}

.certifications-strip .slider::after {
  right: 0;
  transform: rotate(180deg);
}

@keyframes certifications-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * (var(--n) * (var(--slide-w) + var(--gap)))));
  }
}

@media (max-width: 768px) {
  .certifications-strip {
    padding: 42px 0 34px;
  }

  .certifications-strip .slider {
    --slide-w: 140px;
    --slide-h: 90px;
    --gap: 20px;
  }

  .certifications-strip .slider .slide img.cert-logo {
    max-height: 70px;
  }
}
