@font-face {
  font-family: "Google Sans Flex";
  src: url("../../accesorios/fuente/GoogleSansFlex_120pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("../../accesorios/fuente/GoogleSansFlex_120pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("../../accesorios/fuente/GoogleSansFlex_120pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("../../accesorios/fuente/GoogleSansFlex_120pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("../../accesorios/fuente/GoogleSansFlex_120pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex ExtraBold";
  src: url("../../accesorios/fuente/GoogleSansFlex_120pt-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("../../accesorios/fuente/GoogleSansFlex_120pt-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed LCDH";
  src: url("../../accesorios/fuente/RobotoCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #44499c;
  --deep-blue: #1c2468;
  --cyan: #009EE2;
  --orange: #E55F0D;
  --text: #1a1d28;
  --muted: #5f6573;
  --gray: #f0f0f0;
  --line: #dedfe6;
  --white: #fff;
  --font: "Google Sans Flex", Arial, sans-serif;
  --heavy: "Roboto Condensed LCDH", "Google Sans Flex", Arial, sans-serif;
  --max: 1120px;
  --hero-max: 1440px;
  --wide: min(1800px, calc(100% - 164px));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  overflow-x: clip;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.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;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease-out, visibility .6s ease-out;
}

#preloader::before,
#preloader::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 4px solid var(--blue);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: preloader-pulse 2s cubic-bezier(0, .2, .8, 1) infinite;
}

#preloader::after {
  animation-delay: -.5s;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloader-pulse {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #preloader::before,
  #preloader::after {
    animation-duration: 3.5s;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}

section,
footer,
header {
  scroll-margin-top: 92px;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.social-bar {
  position: fixed;
  left: 15px;
  top: calc(50% - 75px);
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 150px;
  transform: translateY(-50%);
  pointer-events: none;
}

.social-bar a {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 31px;
  line-height: 1;
  text-decoration: none;
  pointer-events: auto;
  transition: color .28s ease, transform .28s ease;
}

.social-bar a:hover,
.social-bar a:focus-visible {
  color: #EA580C;
  transform: translateX(2px) scale(1.06);
}

.social-whatsapp-icon {
  width: 1em;
  height: 1em;
  display: block;
  background: currentColor;
  -webkit-mask: url("../../accesorios/img/whatsapp.svg") center / contain no-repeat;
  mask: url("../../accesorios/img/whatsapp.svg") center / contain no-repeat;
}

.hero {
  height: clamp(560px, 80vh, 700px);
  min-height: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.68), rgba(255,255,255,.68)),
    linear-gradient(45deg, #e6e6e6 25%, transparent 25%),
    linear-gradient(-45deg, #e6e6e6 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e6e6e6 75%),
    linear-gradient(-45deg, transparent 75%, #e6e6e6 75%);
  background-color: #f5f5f5;
  background-size: auto, 96px 96px, 96px 96px, 96px 96px, 96px 96px;
  background-position: 0 0, 0 0, 0 48px, 48px -48px, -48px 0;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.28);
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1500px) {
  .hero__video {
    object-position: 38% center;
  }
}

.hero__nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 10px 16px 10px 14px;
  background: transparent;
  backdrop-filter: none;
  transition: background .2s ease, backdrop-filter .2s ease;
}

.hero__nav.is-scrolled {
  background: rgba(78,78,78,.72);
  backdrop-filter: blur(3px);
}

.hero__brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero__brand a {
  display: flex;
  align-items: center;
}

.hero__brand-services {
  width: auto;
  height: 48px;
  opacity: 1;
}

.hero__brand-main {
  width: auto;
  height: 48px;
}

.hero__links {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.6vw, 66px);
  margin-left: auto;
}

.hero__links a {
  position: relative;
  color: rgba(255,255,255,.84);
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(120,120,120,.14);
  transform-origin: center;
  transition: color .28s ease, transform .28s ease;
}

.hero__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 3px;
  background: #EA580C;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s ease;
}

.hero__links a:hover,
.hero__links a:focus-visible {
  color: rgba(255,255,255,.84);
  transform: scale(1.05);
}

.hero__links a:hover::after,
.hero__links a:focus-visible::after {
  transform: scaleX(1);
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.hero__content {
  width: min(1120px, calc(100% - 40px));
  position: absolute;
  inset: 0;
  margin: 0 auto;
  padding-top: 210px;
  z-index: 3;
}

.hero h1 {
  color: rgba(255,255,255,.92);
  font-family: var(--font);
  line-height: .89;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(120,120,120,.18);
}

.hero h1 span {
  display: block;
}

.hero__title-line {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(48px, 3.55vw, 68px);
  font-weight: 500;
}

.hero__title-strong {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(58px, 4.35vw, 84px);
  font-weight: 800;
}

.hero p {
  margin: 34px auto 0;
  color: rgba(255,255,255,.93);
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(22px, 1.56vw, 30px);
  font-weight: 700;
  line-height: 1.43;
  text-transform: uppercase;
}

.hero__ctas,
.footer-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__ctas {
  position: absolute;
  left: 50%;
  bottom: 82px;
  z-index: 4;
  transform: translateX(-50%);
}

.btn {
  min-width: 260px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 0;
  font-family: var(--heavy);
  font-size: 18px;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(28,36,104,.16);
}

.btn--primary { background: var(--blue); color: var(--white); }
.btn--light { background: var(--white); color: var(--blue); }
.btn--cyan { background: var(--cyan); color: var(--white); }

.operations-strip {
  background: #999999;
  color: var(--white);
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  text-align: center;
}

.operations-strip__track {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.operations-strip p,
.locations-strip {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 800;
  line-height: 1.43;
  text-transform: uppercase;
  white-space: nowrap;
}

.operations-strip p {
  width: var(--wide);
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.operations-strip__track p + p {
  display: none;
}

.badges-strip {
  width: var(--wide);
  margin: 0 auto;
  min-height: 86px;
}

.badges-track {
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 10px;
}

.badge-item {
  min-height: 42px;
  padding: 0 14px;
  border-left: 5px solid var(--orange);
  color: var(--blue);
  font-family: var(--heavy);
  font-size: 18px;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-item:last-child {
  border-right: 5px solid var(--orange);
}

@keyframes badgesCarousel {
  0%, 28% {
    transform: translateX(0);
  }
  34%, 62% {
    transform: translateX(-33.3333%);
  }
  68%, 96% {
    transform: translateX(-66.6666%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes operationsTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.locations-strip {
  background: var(--blue);
  color: var(--white);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 20px;
  text-align: center;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(18px, 1.15vw, 22px);
  font-weight: 800;
  line-height: 1.43;
  text-transform: uppercase;
}

.section-inner,
.about {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.about {
  width: var(--wide);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  padding: 52px 0 58px;
}

.section-heading {
  border-left: 11px solid var(--orange);
  padding-left: 14px;
  margin-bottom: 28px;
}

.section-heading span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--heavy);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--deep-blue);
  font-family: var(--heavy);
  font-size: clamp(25px, 2.65vw, 36px);
  line-height: .98;
  text-transform: uppercase;
}

.section-heading h2 em {
  color: var(--cyan);
  font-style: normal;
}

.about .section-heading {
  border-left-width: 11px;
}

.about .section-heading span {
  margin-bottom: 7px;
  color: #111;
  font-family: var(--heavy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.02;
}

.section-heading--large h2 {
  color: #111;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(36px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
}
.section-heading--single { margin-bottom: 34px; }
.section-heading--compact { margin-bottom: 18px; }
.section-heading--compact h2 { color: var(--text); font-size: clamp(20px, 2.2vw, 27px); }

.about__body {
  color: #111;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(14px, .9vw, 17px);
  line-height: 1.5;
}

.about__body p + p { margin-top: 18px; }
.about__body strong {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-weight: 700;
}

.about__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.about__media img {
  width: 100%;
  height: 173px;
  object-fit: cover;
}

.about__img-main {
  grid-column: 1 / -1;
  height: 218px !important;
}

.section-gray { background: var(--gray); }
.services { padding: 100px 0; }
.services .section-inner {
  width: var(--wide);
}

.services .section-heading {
  border-left-width: 11px;
}

.services .section-heading span,
.equipment .section-heading span {
  font-family: var(--heavy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 2px;
}

.services .section-heading h2,
.equipment .section-heading h2 {
  color: var(--blue);
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(28px, 2.7vw, 35px);
  font-weight: 700;
  line-height: 1.02;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
}

.service-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  object-fit: contain;
  object-position: left center;
}

.service-card strong {
  display: block;
  color: var(--orange);
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.22;
}

.service-card h3 {
  min-height: 54px;
  margin: 3px 0 5px;
  color: var(--blue);
  font-family: var(--heavy);
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.service-card p {
  color: #000;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(14px, .9vw, 17px);
  font-weight: 400;
  line-height: 1.5;
}

.equipment {
  padding: 100px 0;
}

.equipment .section-inner {
  width: var(--wide);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.equipment-item__thumb {
  width: 154px;
  height: 122px;
  flex: 0 1 154px;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-item__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.equipment-item h3 {
  min-width: 0;
  color: #10131b;
  font-family: var(--heavy);
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.equipment-item__mobile-break {
  display: none;
}

.presence {
  min-height: 620px;
  background: var(--blue);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(0, 1fr);
  column-gap: 70px;
  align-items: center;
  overflow: hidden;
  padding: 0 max(82px, calc((100vw - 1800px) / 2));
}

.presence__copy {
  grid-column: 1;
  padding: 74px 0 72px;
}

.presence__copy h2 {
  color: rgba(255,255,255,.28);
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(72px, 7.7vw, 100px);
  font-weight: 900;
  line-height: .86;
  text-transform: uppercase;
}

.presence__copy p {
  max-width: 720px;
  margin-top: 44px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 400;
  line-height: 1.28;
}

.presence__copy p strong {
  font-family: var(--heavy);
  font-weight: 700;
}

.presence__copy p span {
  font-weight: 400;
}

.presence-line {
  display: block;
  white-space: nowrap;
}

.presence__map {
  grid-column: 2;
  width: 700px;
  min-height: 640px;
  position: relative;
  justify-self: end;
  overflow: visible;
}

.presence__map img {
  position: absolute;
  width: clamp(360px, 22vw, 400px);
  height: auto;
  top: 0;
  right: 245px;
}

.map-label {
  position: absolute;
  right: 0;
  width: 250px;
  color: var(--white);
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
}

.map-label--top { top: 252px; }
.map-label--bottom { top: 372px; }
.map-label span {
  display: inline-block;
  /* margin-bottom: 10px; */
  padding-bottom: 5px;
  /*border-bottom: 2px solid rgba(255,255,255,.9);*/
  font-family: var(--heavy);
  font-size: 12px;
  font-weight: 700;
  opacity: 1;
  text-transform: uppercase;
}
.map-label strong {
  display: block;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
  border-bottom: 2px solid rgba(255, 255, 255, .9);
}
.map-label p {
  width: 100%;
  margin-top: 4px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  opacity: .78;
}

.certifications { padding: 66px 0 72px; }

.certifications .section-inner {
  width: var(--wide);
}

.certifications .section-heading {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-left-width: 11px;
  padding-left: 16px;
}

.certifications .section-heading h2 {
  color: #17191f;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(26px, 2.25vw, 34px);
  font-weight: 700;
  line-height: 1.02;
}

.certifications .section-heading--single {
  margin-bottom: 34px;
}

.certifications .section-heading--compact {
  margin-bottom: 34px;
}

.certifications .section-heading--compact h2 {
  color: #17191f;
  font-size: clamp(26px, 2.25vw, 34px);
}

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

.cert-card {
  height: 112px;
  position: relative;
  display: grid;
  grid-template-columns: 138px 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(20,24,34,.08);
}

.cert-card::after {
  content: "";
  position: absolute;
  left: 160px;
  top: 50%;
  width: 3px;
  height: 88px;
  background: var(--blue);
  transform: translateY(-50%);
}

.cert-card__logo {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0;
  padding-right: 18px;
  color: var(--blue);
  font-family: var(--heavy);
  font-size: 12px;
}

.cert-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
  transform: translateY(-6px);
}

.cert-card > div:not(.cert-card__logo) {
  height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-6px);
}

.cert-card h3 {
  color: var(--blue);
  font-family: var(--heavy);
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: break-word;
}

.cert-card p {
  margin-top: 8px;
  color: #2c303a;
  font-size: 16px;
  line-height: 1.2;
}

.cert-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: 84px;
}

.cert-bottom > div,
.cert-bottom__wide,
.cert-grid--small,
.cert-card {
  min-width: 0;
}

.cert-bottom__wide {
  grid-column: span 2;
}

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

.cert-card--risk h3 {
  white-space: normal;
}

@media (max-width: 1500px) {
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .cert-card {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    padding: 16px;
  }

  .cert-card::after {
    left: 126px;
  }

  .cert-card__logo {
    padding-right: 14px;
  }

  .cert-card h3 {
    font-size: 15px;
    white-space: normal;
  }

  .cert-card p {
    font-size: 15px;
  }

  .cert-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .cert-bottom__wide {
    grid-column: 1 / -1;
    margin-top: 60px;
  }
}

.availability {
  background: var(--blue);
  color: var(--white);
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(320px, 425px) minmax(540px, 1fr);
  align-items: center;
  padding: 0 max(82px, calc((100vw - 1800px) / 2));
}

.availability__copy {
  position: relative;
  grid-column: 1;
  padding: 42px 38px 38px 0;
}

.availability__copy::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 128px;
  background: #fff;
  transform: translateY(-50%);
}

.availability__copy span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--heavy);
  font-size: 14px;
  line-height: 1;
  opacity: 1;
  text-transform: uppercase;
}

.availability__copy span::after {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-top: 9px;
  background: var(--orange);
}

.availability__copy h2 {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(24px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.availability__stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  position: relative;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3px;
  height: 128px;
  background: #fff;
  transform: translateY(-50%);
}

.stat strong {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(82px, 5.8vw, 100px);
  font-weight: 900;
  line-height: .85;
}
.stat span {
  margin-top: 12px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
}

.stat span strong,
.stat span b {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

.backing {
  min-height: 840px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(to bottom, rgba(54,181,235,.12) 0%, rgba(78,174,222,.04) 45%, rgba(10,14,32,.22) 100%),
    url("../../accesorios/img/figma-respaldo.png") center 68% / cover no-repeat;
  color: var(--white);
}

.backing__overlay {
  width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 92px;
  padding-top: 44px;
}

.backing__years {
  position: relative;
  border-left: 0;
  padding-top: 12px;
  padding-left: 24px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
  transform: translateY(8px);
}

.backing__years::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 11px;
  height: 1.78em;
  background: var(--orange);
  transform: translateY(-50%);
}

.backing__copy {
  max-width: 790px;
  padding-top: 0;
  justify-self: end;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(17px, 1.42vw, 20px);
  font-weight: 500;
  line-height: 1.35;
  text-align: right;
}

.backing__copy p + p { margin-top: 16px; }
.backing__tagline {
  width: var(--wide);
  margin: 0 auto;
  background: transparent;
  padding: 0 0 34px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(18px, 1.65vw, 23px);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.backing__tagline strong {
  font-weight: 900;
}

.backing__mobile-break {
  display: none;
}

.footer-cta {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 38px max(82px, calc((100vw - 1500px) / 2));
  background: var(--blue);
  color: var(--white);
}

.footer-cta > div:first-child {
  flex: 1 1 auto;
}

.footer-cta h2 {
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(34px, 2.4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-cta p {
  margin-top: 7px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(22px, 1.5vw, 27px);
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-cta__buttons {
  flex: 0 0 auto;
  gap: 10px;
  flex-wrap: nowrap;
}

.footer-cta .btn {
  min-width: 300px;
  height: 78px;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 12px 18px rgba(22, 28, 92, .34);
}

/* Notebooks / laptops: 4 equipos no entran en fila hasta ~1600px
   (la palabra "Motosoldadoras" fija un ancho mínimo por tarjeta). */
@media (max-width: 1560px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* La seccion Presencia se maneja en los bloques dedicados de mas abajo
     (2 columnas fluido 951–1700px, y mobile apilado 601–950px). */

  .availability {
    grid-template-columns: 24px 1fr 24px;
    padding: 30px 0;
    gap: 28px;
  }

  .availability__copy,
  .availability__stats {
    grid-column: 2;
  }

  .availability__copy {
    border-right: 0;
    padding-right: 0;
  }

  .availability__copy::after {
    display: none;
  }

  .footer-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 24px;
  }

  .footer-cta h2,
  .footer-cta p {
    white-space: normal;
  }

  .footer-cta__buttons {
    justify-content: center;
  }
}

@media (max-width: 1020px) {
  .hero__links { display: none; }

  /* con el menu hamburguesa a la vista, la barra de redes del costado no va */
  .social-bar { display: none; }

  .hero__nav {
    left: 18px;
    right: 18px;
    min-height: 72px;
    padding: 10px 18px;
  }

  /* scrolleado o con el menu abierto, la barra va de borde a borde
     (si no, quedaba un espacio de 18px a cada lado) */
  .hero__nav.is-scrolled,
  .hero__nav.menu-open {
    left: 0;
    right: 0;
  }

  .hero__nav.menu-open {
    background: transparent;
    backdrop-filter: none;
  }

  .mobile-menu-button {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-button:focus-visible {
    outline: 2px solid #EA580C;
    outline-offset: 2px;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    max-height: calc(100dvh - 18px);
    padding: 92px 28px 24px;
    overflow-y: auto;
    background: rgba(32,32,32,.76);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 12px 26px rgba(0,0,0,.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu > a {
    position: relative;
    align-self: flex-start;
    padding: 5px 0;
    margin-bottom: 5px;
    color: var(--white);
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 1.3;
    text-transform: uppercase;
    transform-origin: left center;
    transition: color .28s ease, transform .28s ease;
  }

  .mobile-menu > a:hover,
  .mobile-menu > a:focus-visible {
    color: var(--white);
    transform: scale(1.04);
  }

  .mobile-menu__socials {
    display: flex;
    align-items: center;
    gap: 26px;
    width: 100%;
    margin-top: 14px;
    border-top: 1px solid rgba(255,255,255,.78);
    padding-top: 18px;
  }

  .mobile-menu__socials a {
    position: relative;
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    transition: color .28s ease, transform .28s ease;
  }

  .mobile-menu__socials a:hover,
  .mobile-menu__socials a:focus-visible {
    color: #EA580C;
    transform: scale(1.08);
  }

  .hero__content { padding-top: 105px; }

  .operations-strip p,
  .locations-strip { white-space: normal; }
  .operations-strip p { width: calc(100% - 36px); }
  .badges-track { grid-template-columns: repeat(3, 1fr); padding: 18px 0; }
  .about,
  .cert-bottom { grid-template-columns: 1fr; }
  .cert-bottom__wide {
    grid-column: 1;
    margin-top: 0;
  }
  .certifications .section-heading--single,
  .certifications .section-heading--compact {
    margin-bottom: 26px;
  }
  .cert-bottom {
    row-gap: 52px;
    margin-top: 52px;
  }
  .backing__overlay { grid-template-columns: 1fr; gap: 24px; }
  .backing__copy { text-align: left; }
}

@media (max-width: 760px) {
  .social-bar {
    display: none;
  }

  .hero {
    height: 420px;
    min-height: 0;
  }
  .hero p { margin-bottom: 42px; }
  .btn { width: 100%; min-width: 0; height: 46px; font-size: 12px; }
  .badges-track,
  .services-grid,
  .equipment-grid,
  .cert-grid,
  .cert-grid--small,
  .availability__stats { grid-template-columns: 1fr; }
  .badge-item { justify-content: flex-start; text-align: left; }
  .about__media { grid-template-columns: 1fr; }
  .about__img-main { height: 220px !important; }
  .about__media img { height: 180px; }
  .presence__copy h2 { font-size: 56px; }
  .presence__copy p { font-size: 17px; }
  .presence__map img { width: 300px; transform: translateX(-62%); }
  .map-label { left: 52%; width: 170px; }
  .map-label strong { white-space: normal; }
  .stat { border-right: 0; border-top: 1px solid rgba(255,255,255,.35); }
  .stat::after { display: none; }
  .footer-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .section-inner,
  .about,
  .backing__overlay { width: min(100% - 28px, var(--max)); }
  .hero__brand-services,
  .hero__brand-main {
    width: auto;
    height: 54px;
  }
  .hero__title-line { font-size: 34px; }
  .hero__title-strong { font-size: 40px; }
  .section-heading--large h2 { font-size: 30px; }
  .cert-card { grid-template-columns: 1fr; }
  .cert-card::after { display: none; }
  .cert-card__logo { border-right: 0; border-bottom: 2px solid var(--blue); }
  .presence__map { min-height: 360px; }
  .map-label { position: static; margin-left: 42%; margin-bottom: 18px; }
  .presence__map img { top: 10px; left: 36%; width: 230px; }
  .backing { min-height: 560px; }
}

@media (max-width: 600px),
       (orientation: landscape) and (max-height: 500px) and (max-width: 950px) {
  body {
    font-size: 14px;
  }

  .hero {
    height: 655px;
    min-height: 0;
  }

  .hero::after {
    background: rgba(0,0,0,.38);
  }

  .hero__video {
    object-position: 30% center;
  }

  .hero__nav {
    top: 16px;
    left: 22px;
    right: 18px;
    min-height: 42px;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero__nav.is-scrolled,
  .hero__nav.menu-open {
    top: 0;
    left: 0;
    right: 0;
    min-height: 66px;
    padding: 10px 22px;
  }

  .hero__nav.is-scrolled {
    background: rgba(78,78,78,.72);
    backdrop-filter: blur(3px);
  }

  .hero__nav.menu-open {
    background: transparent;
    backdrop-filter: none;
  }

  .hero__brand {
    gap: 14px;
  }

  .hero__brand-link--main { order: 2; }
  .hero__brand-link--services { order: 1; }

  .hero__brand-services {
    width: auto;
    height: 36px;
  }

  .hero__brand-main {
    width: auto;
    height: 36px;
  }

  .hero__content {
    width: calc(100% - 44px);
    padding-top: 238px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .hero h1 {
    line-height: 1.01;
  }

  .hero__title-line {
    width: min(100%, 286px);
    margin: 0 auto;
    font-size: clamp(31px, 8vw, 34px);
    font-weight: 500;
  }

  .hero__title-strong {
    width: min(100%, 315px);
    margin: 0 auto;
    font-size: clamp(33px, 8.4vw, 36px);
    font-weight: 700;
    line-height: .98;
  }

  .hero p {
    max-width: 335px;
    margin-top: 23px;
    font-size: 11px;
    line-height: 1.22;
  }

  .hero__ctas {
    width: min(190px, calc(100% - 46px));
    bottom: 156px;
    gap: 14px;
    flex-wrap: nowrap;
  }

  .hero__ctas .btn {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    height: 44px;
    border-radius: 6px;
    font-size: 14px;
  }

  .operations-strip {
    min-height: 34px;
    padding: 7px 0;
    overflow: hidden;
  }

  .operations-strip__track {
    display: flex;
    width: max-content;
    justify-content: flex-start;
    animation: operationsTicker 14s linear infinite;
  }

  .operations-strip__track p,
  .operations-strip__track p + p {
    display: block;
    width: auto;
    padding-right: 48px;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .badges-strip {
    width: 100%;
    min-height: 58px;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
  }

  .badges-track {
    width: 300%;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    animation: badgesCarousel 9s infinite;
  }

  .badges-strip::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 50%;
    height: 34px;
    z-index: 2;
    pointer-events: none;
    transform: translateY(-50%);
    background:
      linear-gradient(var(--orange), var(--orange)) 0 0 / 2px 100% no-repeat,
      linear-gradient(var(--orange), var(--orange)) 50% 0 / 2px 100% no-repeat,
      linear-gradient(var(--orange), var(--orange)) 100% 0 / 2px 100% no-repeat;
  }

  .badge-item {
    position: relative;
    z-index: 1;
    flex: 0 0 calc(100% / 6);
    min-height: 34px;
    padding: 0 10px;
    border-left: 0 !important;
    border-right: 0 !important;
    font-size: 13px;
    line-height: 1.08;
    display: grid;
    place-items: center;
    justify-content: normal;
    text-align: center;
  }

  .badge-item::before,
  .badge-item::after {
    display: none;
  }

  .locations-strip {
    min-height: 31px;
    padding: 5px 10px;
    gap: 4px;
    font-size: 10px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .section-inner,
  .about,
  .services .section-inner,
  .equipment .section-inner,
  .certifications .section-inner,
  .backing__overlay {
    width: calc(100% - 34px);
  }

  .about {
    display: block;
    padding: 48px 0 52px;
  }

  .section-heading {
    border-left-width: 5px;
    padding-left: 11px;
    margin-bottom: 18px;
  }

  .services .section-heading,
  .equipment .section-heading,
  .certifications .section-heading {
    border-left-width: 5px;
  }

  .about .section-heading {
    border-left-width: 5px;
    min-height: 100px;
    margin-bottom: 32px;
  }

  .about .section-heading span,
  .services .section-heading span,
  .equipment .section-heading span {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .section-heading--large h2 {
    font-size: 27px;
    line-height: 1.02;
  }

  .about__body {
    font-size: 16px;
    line-height: 1.5;
  }

  .about__body p + p {
    margin-top: 18px;
  }

  .about__media {
    grid-template-columns: 1fr 1fr;
    margin-top: 34px;
    gap: 6px;
  }

  .about__img-main {
    grid-column: 1 / -1;
  }

  .about__img-main {
    height: 145px !important;
  }

  .about__media img {
    height: 97px;
  }

  .services {
    padding: 48px 0 54px;
  }

  .services .section-heading h2,
  .equipment .section-heading h2 {
    font-size: 24px;
  }

  .services-grid {
    margin-top: 28px;
    gap: 32px;
  }

  .service-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    align-items: start;
  }

  .service-card img {
    grid-row: span 3;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .service-card strong {
    font-size: 15px;
    line-height: 1.05;
  }

  .service-card h3 {
    min-height: 0;
    margin: 4px 0 6px;
    font-size: 17px;
    line-height: 1.08;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .equipment {
    padding: 64px 0 68px;
  }

  .equipment .section-inner {
    width: calc(100% - 50px);
  }

  .equipment .section-heading {
    min-height: 54px;
    margin-bottom: 38px;
    padding-left: 14px;
    border-left-width: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .equipment .section-heading span {
    font-family: "Roboto Condensed LCDH", "Google Sans Flex", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
  }

  .equipment .section-heading h2 {
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
  }

  .equipment-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .equipment-item {
    width: 100%;
    min-height: 158px;
    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    gap: 0;
    align-items: center;
    text-align: center;
  }

  .equipment-item__thumb {
    width: 100%;
    height: 150px;
    flex-basis: auto;
    justify-content: center;
  }

  .equipment-item h3 {
    padding-left: 12px;
    color: #171717;
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: right;
  }

  .equipment-item__light {
    font-weight: 400;
  }

  .equipment-item__mobile-break {
    display: initial;
  }

  .equipment-item:nth-child(1) .equipment-item__thumb img { width: 132px; }
  .equipment-item:nth-child(2) .equipment-item__thumb img { width: 138px; }
  .equipment-item:nth-child(3) .equipment-item__thumb img { max-height: 136px; }
  .equipment-item:nth-child(4) .equipment-item__thumb img { max-height: 134px; }

  .equipment-item:nth-child(1) { order: 1; }
  .equipment-item:nth-child(2) { order: 4; }
  .equipment-item:nth-child(3) { order: 3; }
  .equipment-item:nth-child(4) { order: 2; }

  .presence {
    min-height: 0;
    display: block;
    padding: 48px 0 46px;
  }

  .presence__copy {
    width: calc(100% - 34px);
    margin: 0 auto;
    padding: 0;
  }

  .presence__copy h2 {
    font-size: clamp(40px, 12.8vw, 55px);
    line-height: .88;
  }

  .presence__copy p {
    max-width: 360px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.18;
  }

  .presence-line {
    white-space: normal;
  }

  .presence__map {
    width: calc(100% - 34px);
    min-height: 515px;
    margin: 28px auto 0;
  }

  .presence__map img {
    top: 0;
    left: 24px;
    width: 220px;
    transform: none;
  }

  .map-label {
    position: absolute;
    left: auto;
    right: 12px;
    width: 170px;
    font-size: 14px;
    line-height: 1.05;
  }

  .map-label--top {
    top: 200px;
  }

  .map-label--bottom {
    top: 318px;
  }

  .map-label span {
    margin-bottom: 9px;
    padding-bottom: 7px;
    border-bottom-width: 1px;
    font-size: 11px;
  }

  .map-label strong {
    font-size: 18px;
    white-space: normal;
  }

  .map-label p {
    margin-top: 4px;
  }

  .certifications {
    padding: 30px 0 34px;
  }

  .certifications .section-heading {
    min-height: 0;
    padding-left: 9px;
  }

  .certifications .section-heading--single,
  .certifications .section-heading--compact {
    margin-bottom: 18px;
  }

  .certifications .section-heading h2,
  .certifications .section-heading--compact h2 {
    font-size: 20px;
    line-height: 1.02;
  }

  .cert-grid,
  .cert-grid--small {
    gap: 16px;
    width: 100%;
  }

  .cert-card {
    height: 92px;
    min-height: 92px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 10px 14px;
    border-radius: 4px;
  }

  .cert-card::after {
    display: none;
  }

  .cert-card__logo {
    height: 72px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid var(--blue) !important;
    border-bottom: 0 !important;
    padding-right: 10px;
  }

  .cert-card__logo img {
    max-height: 48px;
    transform: none;
  }

  .cert-card > div:not(.cert-card__logo) {
    height: 72px;
    min-height: 72px;
    min-width: 0;
    transform: none;
  }

  .cert-card h3 {
    font-size: 12px;
    line-height: 1.14;
    white-space: normal;
  }

  .cert-card p {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.22;
  }

  .cert-bottom {
    gap: 34px;
    margin-top: 34px;
    width: 100%;
  }

  .cert-bottom > div,
  .cert-bottom__wide,
  .cert-bottom .cert-grid,
  .cert-bottom .cert-card {
    width: 100%;
  }

  .cert-bottom .cert-card--risk {
    width: 100%;
    max-width: none;
  }


  .availability {
    min-height: 0;
    display: block;
    padding: 60px 0;
  }

  .availability__copy {
    width: calc(100% - 48px);
    margin: 0 auto 34px;
    border-right: 0;
    padding: 0;
  }

  .availability__copy span {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .availability__copy span::after {
    width: 28px;
    height: 3px;
    margin-top: 6px;
  }

  .availability__copy h2 {
    font-size: clamp(19px, 5.8vw, 23px);
    line-height: 1.02;
    white-space: nowrap;
  }

  .availability__stats {
    width: calc(100% - 48px);
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }

  .stat {
    min-height: 118px;
    border-top: 0;
    border-right: 3px solid rgba(255,255,255,.9);
  }

  .stat:nth-child(2n) {
    border-right: 0;
  }

  .stat strong {
    font-size: 84px;
  }

  .stat span {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.05;
    white-space: nowrap;
  }

  .stat span strong,
  .stat span b {
    font-size: inherit;
    font-weight: 800;
    line-height: inherit;
  }

  .backing {
    min-height: 630px;
    background-position: center 70%;
    background-size: cover;
  }

  .backing__overlay {
    width: calc(100% - 44px);
    display: block;
    padding-top: 30px;
    padding-bottom: 41px;
  }

  .backing__years {
    padding-top: 0;
    padding-left: 14px;
    font-size: 31px;
    line-height: .9;
    transform: translateY(3px);
  }

  .backing__years::before {
    width: 7px;
    height: 1.78em;
  }

  .backing__copy {
    max-width: 360px;
    margin: 254px 0 0 auto;
    font-size: 14px;
    line-height: 1.24;
    text-align: right;
  }

  .backing__copy p + p {
    margin-top: 10px;
  }

  .backing__tagline {
    width: 100%;
    margin: 0;
    padding: 30px 24px 31px;
    background: #999999;
    font-size: 14px;
    line-height: 1.18;
    text-align: center;
  }

  .backing__mobile-break {
    display: initial;
  }

  .footer-cta {
    min-height: 275px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 38px 20px;
    text-align: center;
  }

  .footer-cta > div:first-child {
    width: 100%;
    flex: 0 0 auto;
  }

  .footer-cta h2 {
    max-width: 350px;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.02;
    white-space: normal;
  }

  .footer-cta p {
    margin-top: 20px;
    font-size: 13px;
    white-space: normal;
  }

  .footer-cta__buttons {
    width: auto;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .footer-cta .btn {
    width: 180px;
    min-width: 180px;
    flex: 0 0 auto;
    height: 46px;
    border-radius: 8px;
    font-size: 14px;
  }
}

@media (orientation: landscape) and (max-height: 500px) and (max-width: 950px) {
  .hero {
    height: 540px;
  }

  .hero__video {
    object-position: center;
  }

  .hero__content {
    padding-top: 145px;
  }

  .hero__ctas {
    bottom: 42px;
  }

  .section-inner,
  .about,
  .services .section-inner,
  .equipment .section-inner,
  .certifications .section-inner,
  .backing__overlay {
    max-width: 760px;
  }
}

/* Footer institucional */
.site-footer {
  color: #1d1d1d;
  background: #f3f3f3;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-weight: 400;
}

.site-footer__main {
  padding: 64px 0 58px;
}

.site-footer__inner,
.site-footer__bottom-inner {
  width: min(var(--wide), calc(100% - 96px));
  margin: 0 auto;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}

.site-footer__contact,
.site-footer__nav,
.site-footer__actions {
  padding-inline: clamp(28px, 3vw, 52px);
}

.site-footer h2 {
  margin: 0;
  font-family: "Google Sans Flex", Arial, sans-serif;
  text-transform: uppercase;
}

.site-footer__contact h2,
.site-footer__nav h2 {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: .1em;
  text-align: center;
}

.site-footer__contact address {
  display: grid;
  gap: 12px;
  width: fit-content;
  font-style: normal;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.site-footer__contact address a,
.site-footer__address-empty {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  transition: color .2s ease;
}

.site-footer__contact address a:hover,
.site-footer__contact address a:focus-visible,
.site-footer__nav a:hover,
.site-footer__nav button:hover,
.site-footer__nav a:focus-visible,
.site-footer__nav button:focus-visible {
  color: #ea580c;
  text-decoration: none;
}

.site-footer__contact i {
  flex: 0 0 auto;
  color: #44499c;
  font-size: 16px;
  transition: color .2s ease;
}

.site-footer__contact address a:hover i,
.site-footer__contact address a:focus-visible i {
  color: #ea580c;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(29, 29, 29, .18);
  border-left: 1px solid rgba(29, 29, 29, .18);
}

.site-footer__nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.site-footer__nav ul {
  margin: 0;
  padding: 4px clamp(14px, 1.3vw, 24px);
  list-style: none;
}

.site-footer__nav ul + ul {
  border-left: 1px solid rgba(29, 29, 29, .22);
}

.site-footer__nav li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 15px;
}

.site-footer__nav li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e55f0d;
}

.site-footer__nav a,
.site-footer__nav button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.site-footer__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-footer__qr {
  width: 112px;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.site-footer__careers-button {
  min-width: 280px;
  min-height: 48px;
  border: 1px solid rgba(29, 29, 29, .28);
  border-radius: 6px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #1d1d1d;
  background: rgba(255, 255, 255, .55);
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.site-footer__careers-button:hover,
.site-footer__careers-button:focus-visible {
  border-color: #009ee2;
  color: #009ee2;
  background: #fff;
}

.site-footer__bottom {
  color: #fff;
  background: #4b4b4a;
}

.site-footer__bottom-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 44px;
  align-items: center;
  gap: 34px;
}

.site-footer__credit {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 14px;
}

.site-footer__credit img {
  width: 94px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer__socials a {
  display: inline-flex;
  color: #d6d6d6;
  font-size: 20px;
  transition: color .2s ease, transform .2s ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.site-footer__to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #009ee2;
  font-size: 21px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
  /* oculto hasta que el usuario baja un poco (se activa con .is-visible) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background-color .2s ease;
}

.site-footer__to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-footer__to-top.is-visible:hover,
.site-footer__to-top.is-visible:focus-visible {
  background: #008fcf;
  transform: translateY(-2px);
}

/* Modal de RR. HH. */
.careers-modal[hidden] {
  display: none;
}

.careers-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.careers-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 15, 15, .72);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.careers-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 8px;
  padding: 54px;
  color: #161616;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

.careers-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #44499c;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.careers-modal__content {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.careers-modal__intro h2 {
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.careers-modal__intro h2 span {
  color: #009ee2;
}

.careers-modal__intro h2 strong {
  color: #44499c;
  font-weight: 800;
}

.careers-modal__intro p {
  margin: 0 0 16px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

.careers-modal__intro .careers-modal__closing {
  margin-top: 28px;
  font-size: 24px;
  font-weight: 700;
}

.careers-modal form {
  display: grid;
  gap: 20px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}

.careers-modal__feedback {
  border: 1px solid;
  border-radius: 6px;
  padding: 12px 14px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.careers-modal__feedback--success {
  border-color: #8ec9aa;
  color: #17633c;
  background: #edf8f2;
}

.careers-modal__feedback--error {
  border-color: #e0a2a2;
  color: #8b2424;
  background: #fff1f1;
}

.careers-modal__field input,
.careers-modal__field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  padding: 12px 14px;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.careers-modal__field textarea {
  min-height: 100px;
  resize: vertical;
}

.careers-modal__field input:focus,
.careers-modal__field textarea:focus {
  border-color: #009ee2;
  outline: 2px solid rgba(0, 158, 226, .16);
}

.careers-modal__file {
  position: relative;
  border: 1px dashed #cfcfcf;
  border-radius: 6px;
  padding: 18px;
  background: #f8f9fa;
  transition: border-color .2s ease;
}

.careers-modal__file:hover {
  border-color: #009ee2;
}

.careers-modal__file input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.careers-modal__file label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #4b4b4b;
  font-family: "Google Sans Flex", Arial, sans-serif;
  cursor: pointer;
}

.careers-modal__file i {
  margin-bottom: 6px;
  color: #009ee2;
  font-size: 36px;
}

.careers-modal__file strong {
  font-size: 15px;
  font-weight: 600;
}

.careers-modal__file label > span {
  margin-top: 3px;
  color: #777;
  font-size: 12px;
}

.careers-modal__file .careers-modal__file-name:not(:empty) {
  margin-top: 8px;
  color: #009ee2;
  font-size: 13px;
  font-weight: 600;
}

.careers-modal form > button {
  min-height: 50px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #009ee2;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

body.careers-modal-open {
  overflow: hidden;
}

@media (min-width: 761px) {
  .social-bar {
    top: 82px;
    bottom: 0;
    height: auto;
    transform: none;
    justify-content: center;
    gap: clamp(74px, 11vh, 128px);
  }
}

@media (max-width: 1180px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .site-footer__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4vw, 48px);
    padding-top: 40px;
    padding-inline: 0;
    border-top: 1px solid rgba(29, 29, 29, .18);
  }

  .site-footer__nav {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .site-footer__main {
    padding: 46px 0 42px;
  }

  .site-footer__inner,
  .site-footer__bottom-inner {
    width: calc(100% - 40px);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer__contact {
    padding-inline: 0;
  }

  .site-footer__nav {
    padding: 34px 0;
    border-top: 1px solid rgba(29, 29, 29, .18);
    border-bottom: 1px solid rgba(29, 29, 29, .18);
    border-left: 0;
  }

  .site-footer__contact h2,
  .site-footer__nav h2 {
    text-align: center;
  }

  .site-footer__nav-columns {
    gap: 0;
  }

  .site-footer__nav ul {
    padding-inline: 12px;
  }

  .site-footer__actions {
    grid-column: auto;
    flex-direction: column;
    padding-top: 0;
    padding-inline: 0;
    border-top: 0;
  }

  .site-footer__careers-button {
    width: 100%;
    min-width: 0;
  }

  .site-footer__bottom-inner {
    min-height: 136px;
    grid-template-columns: 1fr 44px;
    gap: 18px;
  }

  .site-footer__credit {
    align-self: end;
  }

  .site-footer__socials {
    grid-column: 1;
    align-self: start;
  }

  .site-footer__to-top {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .careers-modal__dialog {
    width: min(560px, 100%);
    padding: 42px 24px 28px;
  }

  .careers-modal__content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .careers-modal__intro {
    text-align: center;
  }

  .careers-modal__intro h2 {
    font-size: 34px;
  }

  .careers-modal__intro p {
    font-size: 15px;
  }

  .careers-modal__intro .careers-modal__closing {
    font-size: 20px;
  }

  .careers-modal form {
    padding: 20px;
  }
}

@media (min-width: 1200px) {
  :root {
    --wide: min(1680px, calc(100% - 240px));
  }

  .presence,
  .availability {
    padding-left: max(120px, calc((100vw - 1680px) / 2));
    padding-right: max(120px, calc((100vw - 1680px) / 2));
  }

  .footer-cta {
    padding-left: max(120px, calc((100vw - 1500px) / 2));
    padding-right: max(120px, calc((100vw - 1500px) / 2));
  }
}

/* -----------------------------------------------------------------------------
   Presencia Territorial — se mantiene el COMPORTAMIENTO de Desktop (2 columnas:
   texto a la izquierda, mapa a la derecha) de forma fluida en notebooks. El
   layout base de escritorio usa un mapa fijo de 700px que se encima con el
   titulo por debajo de ~1700px; aca lo hacemos fluido (el mapa se arma como
   imagen + etiquetas y se achica con el viewport) para que las 2 columnas
   aguanten hasta ~950px sin encimarse. Recien por debajo se pasa a mobile.
   -------------------------------------------------------------------------- */
@media (min-width: 951px) and (max-width: 1700px) {
  .presence {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(32px, 4vw, 70px);
    align-items: center;
  }

  .presence__copy {
    grid-column: 1;
    padding: clamp(56px, 6vw, 80px) 0;
  }

  .presence__copy h2 {
    font-size: clamp(44px, 5.4vw, 96px);
    line-height: .88;
  }

  .presence__copy p {
    max-width: 640px;
    margin-top: clamp(20px, 2.4vw, 40px);
    font-size: clamp(19px, 2vw, 30px);
  }

  .presence-line {
    white-space: normal;
  }

  /* Mapa fluido: imagen + etiquetas apiladas al costado, dentro de la 2da
     columna (misma disposicion que en Desktop, pero escalable). */
  .presence__map {
    grid-column: 2;
    position: static;
    width: auto;
    min-height: 0;
    justify-self: end;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: clamp(18px, 2vw, 40px);
    row-gap: clamp(16px, 2vw, 28px);
    overflow: visible;
  }

  .presence__map picture {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
  }

  .presence__map img {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: clamp(240px, 23.5vw, 380px);
    height: auto;
    opacity: 1;
  }

  .map-label {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    grid-column: 2;
    width: clamp(180px, 16vw, 240px);
    color: var(--white);
  }

  .map-label strong {
    white-space: normal;
  }

  .map-label--top {
    grid-row: 1;
    align-self: end;
  }

  .map-label--bottom {
    grid-row: 2;
    align-self: start;
  }
}

/* Modo mobile (601–950px): cuando el titulo se encimaria con el mapa en el
   layout de 2 columnas, se apila igual que en celular: texto arriba y debajo
   el mapa (imagen a la izquierda, etiquetas a la derecha), alineado al margen. */
@media (min-width: 601px) and (max-width: 950px) {
  .presence {
    display: block;
    min-height: 0;
    padding: clamp(48px, 6vw, 72px) 0;
    overflow: hidden;
  }

  .presence__copy {
    grid-column: auto;
    width: var(--wide);
    margin: 0 auto;
    padding: 0;
  }

  .presence__copy h2 {
    font-size: clamp(48px, 8vw, 88px);
    line-height: .9;
  }

  .presence__copy p {
    max-width: 560px;
    margin-top: clamp(16px, 2vw, 30px);
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.2;
  }

  .presence-line {
    white-space: normal;
  }

  .presence__map {
    grid-column: auto;
    position: static;
    width: var(--wide);
    min-height: 0;
    margin: clamp(28px, 4vw, 48px) auto 0;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    justify-content: start;
    align-items: center;
    column-gap: clamp(28px, 5vw, 64px);
    row-gap: clamp(16px, 2vw, 28px);
  }

  .presence__map picture {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
  }

  .presence__map img {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: clamp(200px, 30vw, 300px);
    height: auto;
    opacity: 1;
  }

  .map-label {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    grid-column: 2;
    width: clamp(190px, 28vw, 300px);
    color: var(--white);
  }

  .map-label strong {
    white-space: normal;
  }

  .map-label--top {
    grid-row: 1;
    align-self: end;
  }

  .map-label--bottom {
    grid-row: 2;
    align-self: start;
  }
}
