/* ============================================================
   RODAMIENTOS CUYO — servicios-tecnicos.css  v2
   Prefijo: st-
   ============================================================ */

/* ---- Página base ---- */
.st-page {
  padding-top: var(--nav-h);
  background: var(--bg);
  min-height: 100vh;
}

.st-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Secciones */
.st-section {
  padding: 72px 0;
  background: #fff;
  border-bottom: 1px solid rgba(148,163,184,.28);
}
.st-section--alt {
  background: #f2f4f8;
}
.st-section--compact {
  padding: 48px 0;
}

/* Dos secciones unidas: misma sección visual continua */
.st-section--flush {
  background: #f2f4f8;
  border-bottom: none;
  padding-bottom: 32px;
}
.st-section--flush-top {
  background: #f2f4f8;
  padding-top: 32px;
}

/* Títulos de sección */
.st-heading {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.025em;
  margin-bottom: 48px;
  line-height: 1.15;
}
.st-heading--center {
  text-align: center;
}
.st-heading em {
  font-style: normal;
  color: var(--blue);
}

/* ---- Título de sección (mismo formato que las páginas internas de
   rodamientos: cr-why__title — marca de puntito+línea, dots decorativos,
   Anton mayúscula gigante, acento en <em> azul, regla inferior). ---- */
.st-title-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 40px;
}
.st-title-mark{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.st-title-mark-dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  flex-shrink: 0;
}
.st-title-mark-line{
  width: 110px; height: 1.5px;
  background: var(--blue);
  flex-shrink: 0;
}
.st-title-row{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 64px;
}
.st-title-dots{
  flex-shrink: 0;
  color: rgba(27,83,212,.28);
  margin-top: 6px;
}
.st-title{
  font-family: 'Anton', var(--font), sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: .94;
  margin: 0;
}
.st-title-a{ display: block; color: var(--dark); }
.st-title-b{ display: block; color: var(--dark); }
.st-title-b em{ font-style: normal; color: var(--blue); }
.st-title-rule{
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 18px;
  background: var(--blue);
  border-radius: 2px;
}
.st-title-head--center{ justify-content: center; }
.st-title-head--center .st-title-mark,
.st-title-head--center .st-title-row{ justify-content: center; }
.st-title-head--center .st-title-rule{ margin-left: auto; margin-right: auto; }

/* ---- Eyebrow + heading v2 (usados en las secciones rediseñadas) ---- */
.st-eyebrow2 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}
.st-eyebrow2::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-top: 12px;
}
.st-eyebrow2--center { text-align: center; }
.st-eyebrow2--center::after { margin-left: auto; margin-right: auto; }

.st-heading2 {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.04;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin: 16px 0 44px;
}
.st-heading2 span { display: block; }
.st-heading2__a { color: var(--dark); }
.st-heading2__b { color: var(--blue); }
.st-heading2--center { text-align: center; }

.st-heading3 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.22;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin: 16px 0 48px;
}
.st-heading3 span { color: var(--blue); }
.st-heading3--center { text-align: center; }

/* ---- Placeholder de foto (sin URL real) ----
   El <img> apunta a la ruta definitiva del archivo; si no existe, el
   onerror agrega .ph--empty y se ve un degradé de marca + ícono en vez
   de un ícono de imagen rota. Basta con subir el archivo real a esa
   ruta para que se muestre solo, sin tocar el HTML. */
.ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1b33 0%, #163a7a 55%, #1B53D4 130%);
}
.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph--shift-left img{ object-position: 28% 50%; }
.ph__fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  text-align: center;
  padding: 12px;
}
.ph__fallback svg { opacity: .5; }
.ph__fallback span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .75;
}
.ph--empty img { display: none; }
.ph--empty .ph__fallback { display: flex; }


/* ============================================================
   HERO — minimalista (círculo + retrato + tipografía grande)
   ============================================================ */
@keyframes hero3-in{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}
.st-hero3{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - var(--nav-h));
  padding: 36px 0 28px;
  background: #fff;
}

.st-hero3__eyebrow{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
}
.st-hero3__eyebrow::before{
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}
.st-hero3__main{
  width: 100%;
  display: grid;
  grid-template-columns: minmax(380px, max-content) 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex: 1;
  padding: clamp(24px, 4vw, 48px) 0 clamp(48px, 5vw, 72px);
}

.st-hero3__copy{
  justify-self: start;
  animation: hero3-in .6s var(--ease) .15s both;
}
.st-hero3__headline{
  margin: 0 0 20px;
  font-family: 'Anton', var(--font), sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(64px, 8.8vw, 132px);
  line-height: .88;
  white-space: nowrap;
}
.st-hero3__headline-a{ color: var(--dark); }
.st-hero3__headline-b{ color: var(--blue); }
.st-hero3__rule{
  display: block;
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background: var(--blue);
  margin-bottom: 20px;
}
.st-hero3__desc{
  margin: 0 0 28px;
  max-width: 340px;
  font-size: 15px;
  line-height: 1.65;
  color: #55617a;
}
.st-hero3__cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: var(--blue);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.st-hero3__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(27,83,212,.5);
}

.st-hero3__photo-wrap{
  position: relative;
  justify-self: center;
  width: 100%;
  animation: hero3-in .7s var(--ease) .3s both;
}
.st-hero3__dots{
  position: absolute;
  top: -30px;
  right: 12px;
  color: rgba(27,83,212,.3);
  z-index: 0;
}
.st-hero3__photo{
  position: relative;
  z-index: 1;
  border-radius: 28px;
}
.st-hero3__photo img{
  display: block;
  width: 100%;
  height: clamp(400px, 48vw, 680px);
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 40px 70px -30px rgba(10,27,51,.35);
}
.st-hero3__stats{
  align-items: flex-start;
  margin-top: -18px;
  margin-bottom: 48px;
}
.st-hero3__stats .cr-ind__stats-row{ gap: 22px; }
.st-hero3__stats .cr-ind__stat-icon{ width: 20px; height: 20px; }
.st-hero3__stats .cr-ind__stat-num{ font-size: 20px; }
.st-hero3__stats .cr-ind__stat-label{ font-size: 9.5px; }
.st-hero3__stats .cr-ind__stat-label{ text-align: left; }

.st-hero3__foot{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(10,27,51,.08);
  animation: hero3-in .6s var(--ease) .7s both;
}
.st-hero3__social{ display: flex; align-items: center; gap: 18px; }
.st-hero3__social a{
  color: rgba(10,27,51,.5);
  transition: color .2s var(--ease);
}
.st-hero3__social a:hover{ color: var(--blue); }
.st-hero3__location{
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(10,27,51,.55);
}

@media (prefers-reduced-motion: reduce){
  .st-hero3__copy, .st-hero3__photo-wrap,
  .st-hero3__foot{ animation: none; }
}

@media (max-width: 900px){
  .st-hero3__main{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 56px;
  }
  .st-hero3__copy{ justify-self: center; }
  .st-hero3__stats{ align-items: center; }
  .st-hero3__stats .cr-ind__stats-row{ justify-content: center; }
  .st-hero3__stats .cr-ind__stat-label{ text-align: center; }
  .st-hero3__eyebrow{ justify-content: center; }
  .st-hero3__headline{ white-space: normal; }
  .st-hero3__rule{ margin-left: auto; margin-right: auto; }
  .st-hero3__desc{ margin-left: auto; margin-right: auto; }
  .st-hero3__dots{ right: 50%; transform: translateX(120px); }
  /* La foto y el pie (redes + ubicación) quedan pegados sin aire al
     apilarse en una columna: se separan con margen. */
  .st-hero3__foot{ margin-top: 28px; }
}

@media (max-width: 560px){
  .st-hero3{ min-height: auto; padding: 28px 0 24px; }
  .st-hero3__headline{ font-size: clamp(40px, 12vw, 64px); }
  .st-hero3__stats .cr-ind__stats-row{ gap: 20px; }
  .st-hero3__foot{ flex-wrap: wrap; gap: 14px; justify-content: center; text-align: center; }
}


/* ============================================================
   HERO (legado — reemplazado por .st-hero3, se deja sin usar)
   ============================================================ */
.st-hero2 { background: #fff; }

.st-hero2__top { padding: 48px 0 0; }

.st-hero2__top-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.st-hero2__title {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .98;
  color: var(--dark);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin: 0;
}
.st-hero2__title span { display: block; }

.st-hero2__blurb {
  border-left: 3px solid var(--blue);
  padding: 2px 0 2px 18px;
  margin-top: 8px;
}
.st-hero2__blurb p {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.62;
  margin: 0;
}

.st-hero2__photo {
  position: relative;
  margin-top: 8px;
  height: min(58vh, 580px);
  min-height: 340px;
}
.st-hero2__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,15,31,.45) 0%, rgba(6,15,31,.1) 20%, rgba(6,15,31,.1) 45%, rgba(6,15,31,.58) 100%);
  pointer-events: none;
  z-index: 1;
}

.st-hero2__title-white-wrap {
  position: absolute;
  top: 6px; left: 0; right: 0;
  z-index: 2;
  pointer-events: none;
}
.st-hero2__title-white {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.025em;
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: .98;
  margin: 0;
}
.st-hero2__kinetic {
  display: inline-block;
  transform-origin: left center;
  will-change: transform, letter-spacing, text-shadow;
  animation: st-hero-kinetic 3.4s ease-in-out infinite;
}
@keyframes st-hero-kinetic {
  0%, 100% {
    transform: translate3d(0,0,0) scaleX(1);
    letter-spacing: -.025em;
    text-shadow: 0 0 0 rgba(66,133,255,0);
  }
  45% {
    transform: translate3d(0,-3px,0) scaleX(1.018);
    letter-spacing: -.012em;
    text-shadow: 8px 0 20px rgba(66,133,255,.28);
  }
  58% {
    transform: translate3d(0,-1px,0) scaleX(.997);
    letter-spacing: -.02em;
    text-shadow: -4px 0 14px rgba(66,133,255,.18);
  }
}

.st-hero2__nav-wrap {
  position: absolute;
  left: 0; right: 0; bottom: 24px;
  z-index: 2;
}

.st-hero2__resources {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.st-hero2__resource {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 320px;
  max-width: 440px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 13px 16px;
  text-decoration: none;
  transition: background .2s, transform .2s var(--ease), border-color .2s;
}
.st-hero2__resource:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.38);
  transform: translateY(-2px);
}

.st-hero2__resource-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.st-hero2__resource--wa .st-hero2__resource-icon { background: #25D366; }

.st-hero2__resource-text {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.32;
  color: #fff;
  flex: 1;
}

.st-hero2__resource-arrow {
  color: rgba(255,255,255,.75);
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.st-hero2__resource:hover .st-hero2__resource-arrow {
  transform: translateX(3px);
  color: #fff;
}



/* ============================================================
   PILARES — 3 columnas con flechas
   ============================================================ */
.st-pillars-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.st-pillar {
  flex: 1;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow .2s var(--ease), border-color .2s;
}
.st-pillar:hover {
  box-shadow: 0 8px 28px rgba(10,27,51,.10);
  border-color: rgba(27,83,212,.3);
}

.st-pillar__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 4px;
}

.st-pillar__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(27,83,212,.25);
  border-radius: 50%;
  color: var(--blue);
  flex-shrink: 0;
}

.st-pillar__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  padding-top: 10px;
}

.st-pillar__num {
  font-size: 28px;
  font-weight: 800;
  color: rgba(10,27,51,.18);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.st-pillar__desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* Flecha separadora entre pilares */
.st-pillar-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: rgba(27,83,212,.75);
  flex-shrink: 0;
  align-self: center;
  animation: st-arrow-flow 1.4s ease-in-out infinite;
}
.st-pillars-row .st-pillar-sep:nth-child(2) { animation-delay: 0s;    }
.st-pillars-row .st-pillar-sep:nth-child(4) { animation-delay: 0.35s; }


/* ============================================================
   SERVICIOS — GRID DE 6 CARDS NUMERADAS
   ============================================================ */
.st-srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 22px;
}

.st-srv-card {
  display: flex;
  align-items: stretch;
  gap: 28px;
  background: #fff;
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 22px;
  overflow: hidden;
  padding: 26px 20px 26px 26px;
  transition: box-shadow .22s var(--ease), border-color .22s, transform .22s var(--ease);
}
.st-srv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(10,27,51,.10);
  border-color: rgba(27,83,212,.24);
}

.st-srv-card__body {
  flex: 1 1 56%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.st-srv-card__num {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .01em;
  margin-bottom: 10px;
}

.st-srv-card__title {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--dark);
  line-height: 1.28;
  margin-bottom: 10px;
}
.st-srv-card__title span { color: var(--blue); }

.st-srv-card__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.st-srv-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  background: rgba(37,211,102,.1);
  color: #1da851;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 5px 10px 5px 8px;
  border-radius: 999px;
  margin-top: 16px;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.st-srv-card__link:hover {
  background: #25d366;
  color: #fff;
}
.st-srv-card__link svg { flex: 0 0 auto; width: 11px; height: 11px; }
.st-srv-card__link-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}

.st-srv-card__photo {
  flex: 0 0 42%;
  border-radius: 90px 16px 16px 16px;
  overflow: hidden;
  min-height: 190px;
}

/* Avisos complementarios debajo del listado de servicios */
.st-services-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.st-services-note,
.st-services-advice {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 98px;
  padding: 20px 24px;
  border-radius: 18px;
  box-sizing: border-box;
}
.st-services-note {
  background: #fef6e6;
  border: 1px solid #f2d489;
  border-left: 4px solid #e8a723;
}
.st-services-advice {
  color: var(--muted);
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.28);
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}
.st-services-advice:hover {
  background: rgba(37,211,102,.14);
  border-color: rgba(37,211,102,.42);
  transform: translateY(-2px);
}
.st-services-foot__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.st-services-foot__icon--warning { color: #7a4a04; background: #f5b83d; }
.st-services-foot__icon--wa { color: #fff; background: #25d366; }
.st-services-note p { margin: 0; color: #7a4a04; font-size: 15px; font-weight: 800; line-height: 1.45; }
.st-services-note p span { display: block; margin-top: 3px; color: #8a5c12; font-size: 13.5px; font-weight: 500; }
.st-services-note a { color: #8a5c12; font-size: 12px; font-weight: 800; text-transform: uppercase; text-underline-offset: 3px; }
.st-services-advice__text { flex: 1; font-size: 13.5px; line-height: 1.5; }
.st-services-advice__text strong { display: block; margin-bottom: 3px; color: var(--dark); font-size: 15px; }
.st-services-advice__arrow { flex-shrink: 0; color: #1b8f48; }


/* ============================================================
   CÓMO TRABAJAMOS
   ============================================================ */
.st-process{
  display: grid;
  grid-template-columns: minmax(0, 460px) 1fr;
  grid-template-rows: auto auto;
  column-gap: 160px;
  row-gap: 0;
}
.st-process__intro{ grid-column: 1 / -1; grid-row: 1; }
.st-process__mark{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.st-process__mark-dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  flex-shrink: 0;
}
.st-process__mark-line{
  width: 110px; height: 1.5px;
  background: var(--blue);
  flex-shrink: 0;
}
.st-process__title-row{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.st-process__dots{
  flex-shrink: 0;
  color: rgba(27,83,212,.28);
  margin-top: 4px;
}
.st-process__title{
  font-family: 'Anton', var(--font), sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(56px, 7.4vw, 104px);
  line-height: .92;
  margin: 0;
}
.st-process__title-a{ display: block; color: var(--dark); }
.st-process__title-b{ display: block; color: var(--blue); }
.st-process__subtitle{
  margin: 18px 0 28px;
  max-width: 340px;
  font-size: 15px;
  line-height: 1.55;
  color: #55617a;
}
.st-process__photo{
  grid-column: 1;
  grid-row: 2;
  position: relative;
}
.st-process__photo-frame{
  border-radius: 20px;
  overflow: hidden;
}
.st-process__photo img{
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.st-process__badge{
  position: absolute;
  top: -22px;
  right: -22px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--blue);
  border: 5px solid #fff;
  box-shadow: 0 14px 30px -8px rgba(27,83,212,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  z-index: 2;
}
.st-process__badge strong{
  font-family: 'Anton', var(--font), sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1;
}
.st-process__badge small{
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.st-process__steps{
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.st-process__step{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(148,163,184,.32);
}
.st-process__step:first-child{ padding-top: 0; }
.st-process__step:last-child{ border-bottom: none; padding-bottom: 0; }
.st-process__num{
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Anton', var(--font), sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-process__step-copy h3{
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--dark);
  text-transform: uppercase;
}
.st-process__step-copy p{
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #55617a;
}


/* ============================================================
   INDUSTRIAS — ÍCONOS
   ============================================================ */
.st-ind-row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 24px 16px;
}

.st-ind-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 80px;
}

.st-ind-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(27,83,212,.2);
  border-radius: 14px;
  color: var(--blue);
  background: rgba(27,83,212,.05);
  transition: all .2s var(--ease);
}
.st-ind-item:hover .st-ind-icon {
  background: rgba(27,83,212,.12);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.st-ind-item span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mid);
  text-align: center;
  line-height: 1.3;
}


/* ============================================================
   RESPALDO TÉCNICO
   ============================================================ */
.st-respaldo2-section {
  position: relative;
  overflow: hidden;
}
.st-respaldo2-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.st-respaldo2-dots {
  position: absolute;
  top: 28px; left: 0;
  color: rgba(27,83,212,.3);
}
.st-respaldo2-rings {
  position: absolute;
  top: -40px; right: -20px;
  color: rgba(27,83,212,.18);
}

.st-respaldo2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.st-respaldo2-card {
  display: flex;
  flex-direction: column;
}

.st-respaldo2-card__photo {
  position: relative;
  height: 190px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}
.st-respaldo2-card__photo--brand {
  background: #f5f8fc;
}
.st-respaldo2-card__photo--brand img {
  object-fit: contain;
  padding: 24px 42px 38px;
}

.st-respaldo2-card__flag {
  position: absolute;
  right: 0; top: 0;
  z-index: 2;
  padding: 9px 16px 13px 20px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24% 100%);
}
.st-respaldo2-card__flag--dark { background: var(--dark); }
.st-respaldo2-card__flag--blue { background: var(--blue); }

.st-respaldo2-card__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: -27px 0 18px 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #fff;
  flex-shrink: 0;
}
.st-respaldo2-card__icon--dark { background: var(--dark); color: #fff; }
.st-respaldo2-card__icon--blue { background: #fff; color: var(--blue); border: 2px solid var(--blue); }

.st-respaldo2-card__title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.32;
  padding: 0 22px;
  margin-bottom: 10px;
}

.st-respaldo2-card__text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 22px;
  margin-bottom: 24px;
}

.st-respaldo2-card__dots {
  margin: auto 22px 0;
  height: 2px;
  position: relative;
  background-image: linear-gradient(to right, rgba(27,83,212,.35) 0 5px, transparent 5px 11px);
  background-size: 11px 2px;
  background-repeat: repeat-x;
}
.st-respaldo2-card__dots::after {
  content: '';
  position: absolute;
  right: -3px; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: #fff;
}


/* ============================================================
   CTA BAR
   ============================================================ */
.st-cta-bar {
  background: #eef3fb;
  border-top: 1px solid rgba(27,83,212,.12);
  padding: 40px 0;
}

.st-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.st-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.st-cta-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.st-cta-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.st-cta-sub {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 380px;
}

.st-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* CTA buttons */
.btn-pill--cta-primary {
  background: var(--blue);
  color: #fff;
  padding: 12px 22px;
  font-size: 14px;
}
.btn-pill--cta-primary:hover {
  background: #1644b8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,83,212,.3);
}

.btn-pill--cta-outline {
  background: #fff;
  color: var(--dark);
  border: 1.5px solid rgba(10,27,51,.2);
  padding: 12px 22px;
  font-size: 14px;
}
.btn-pill--cta-outline:hover {
  border-color: var(--dark);
  transform: translateY(-1px);
}


/* ============================================================
   FORMULARIO DE CONTACTO
   ============================================================ */
.st-contact-wrap {
  background: #eef2f7;
  padding: 72px 0;
}
.st-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border: 1px solid rgba(10,27,51,.08);
  border-radius: 28px;
  box-shadow: 0 24px 70px -42px rgba(10,27,51,.45);
}
.st-contact-heading .st-title-row {
  gap: 10px;
  margin-bottom: 24px;
}
.st-contact-heading .st-title {
  font-size: clamp(32px, 3.4vw, 52px);
}
.st-contact-heading .st-title-dots {
  width: 44px;
  height: auto;
}
.st-contact-heading .st-title-rule {
  margin-top: 14px;
}
.st-contact-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.st-contact-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.st-contact-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

@media (prefers-reduced-motion: reduce) {
  .st-hero2__kinetic { animation: none; }
}

/* Llamados de contacto contextuales al cierre de proceso e industrias */
.st-section-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
  padding: 20px 22px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #071b35 0%, #133d83 100%);
  border: 1px solid rgba(96,145,255,.28);
  border-radius: 18px;
  box-shadow: 0 20px 45px -30px rgba(7,27,53,.9);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.st-section-contact:hover {
  transform: translateY(-3px);
  border-color: rgba(96,145,255,.55);
  box-shadow: 0 24px 48px -28px rgba(7,27,53,.9);
}
.st-section-contact__icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: #fff;
  background: #22c767;
  border-radius: 50%;
  box-shadow: 0 8px 20px -10px rgba(34,199,103,.9);
}
.st-section-contact__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.st-section-contact__copy strong {
  font-size: 16px;
  line-height: 1.3;
}
.st-section-contact__copy small {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}
.st-section-contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.st-section-contact__cta span {
  font-size: 18px;
  transition: transform .2s ease;
}
.st-section-contact:hover .st-section-contact__cta span { transform: translateX(4px); }
.st-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.st-contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.st-contact-info-item svg {
  color: var(--blue);
  flex-shrink: 0;
}
.st-contact-form-card {
  background: #f8fafc;
  border: 1px solid rgba(148,163,184,.3);
  border-radius: 20px;
  padding: 28px 26px;
}
.st-contact-form-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.st-contact-form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.st-contact-form-card .qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.st-contact-form-card .qf-input {
  width: 100%;
  font-family: var(--font);
  font-size: 13.5px;
  padding: 11px 14px;
  border: 1.5px solid rgba(10,27,51,.13);
  border-radius: 10px;
  background: #f8fafc;
  color: var(--dark);
  margin-bottom: 10px;
  box-sizing: border-box;
  display: block;
}
.st-contact-form-card .qf-input[hidden] { display: none; }
.st-contact-form-card .qf-input:focus {
  outline: none;
  border-color: rgba(27,83,212,.4);
  background: #fff;
}
.st-contact-form-card .qf-textarea { resize: none; }
.st-contact-form-card select.qf-input { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.st-contact-form-card .qf-submit {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.st-contact-form-card .qf-submit:hover {
  background: #1644b8;
  transform: translateY(-1px);
}
/* Vista previa estilo WhatsApp, completada en vivo desde el formulario */
.st-contact-phone {
  max-width: 430px;
  margin-top: 30px;
  padding: 7px;
  overflow: hidden;
  background: #0b1220;
  border-radius: 24px;
  box-shadow: 0 22px 55px -30px rgba(10,27,51,.5);
}
.st-contact-phone__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #fff;
  background: #075e54;
  border-radius: 18px 18px 0 0;
}
.st-contact-phone__head img { width: 34px; height: 34px; padding: 4px; object-fit: contain; background: #fff; border-radius: 50%; }
.st-contact-phone__head span { display: flex; flex: 1; flex-direction: column; }
.st-contact-phone__head strong { font-size: 13.5px; }
.st-contact-phone__head small { font-size: 10.5px; opacity: .75; }
.st-contact-phone__chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 235px;
  padding: 18px 14px;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(60,80,70,.08) 1px, transparent 1px);
  background-size: 17px 17px;
  border-radius: 0 0 18px 18px;
}
.st-contact-phone__bubble { max-width: 88%; padding: 10px 12px; border-radius: 10px; font-size: 11.5px; line-height: 1.45; box-shadow: 0 1px 1px rgba(0,0,0,.08); }
.st-contact-phone__bubble--in { align-self: flex-start; color: #27333b; background: #fff; }
.st-contact-phone__bubble--out { align-self: flex-end; color: #25352f; background: #d9fdd3; }
.st-contact-phone__bubble--out > strong { display: block; margin-bottom: 7px; font-size: 12px; }
.st-contact-phone__bubble ul { display: grid; gap: 3px; margin: 0; padding: 0; list-style: none; }
.st-contact-phone__bubble li { overflow-wrap: anywhere; }
.st-contact-phone__bubble li b { font-weight: 700; }


/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .st-srv-grid { grid-template-columns: repeat(2, 1fr); }
  .st-respaldo2-grid { gap: 24px; }

  .st-hero2__top-inner { grid-template-columns: 1fr; gap: 18px; }
  .st-hero2__blurb { max-width: 460px; }
}

@media (max-width: 900px) {
  .st-container { padding: 0 24px; }
  .st-section { padding: 52px 0; }

  .st-hero2__top { padding: 36px 0 0; }
  .st-hero2__photo { height: min(70vh, 460px); margin-top: 8px; }


  .st-pillars-row {
    flex-direction: column;
    gap: 12px;
  }
  .st-pillar-sep { transform: rotate(90deg); padding: 0; }

  /* La grilla de escritorio empareja el alto de todas las cards con
     grid-auto-rows:1fr (columna a columna), y .st-srv-card__body/__text
     usan flex-basis/flex:1 pensados para esa fila horizontal. En mobile
     cada card debe crecer solo según su propio contenido: se resetea
     todo eso a alto automático para que no queden huecos vacíos. */
  .st-srv-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 20px; }
  .st-srv-card { flex-direction: column; align-items: stretch; padding: 24px 24px 32px; }
  .st-srv-card__body { flex: none; }
  .st-srv-card__text { flex: none; }
  .st-srv-card__link { margin-top: 24px; }
  .st-srv-card__photo {
    flex-basis: auto;
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    min-height: 0;
    order: -1;
    border-radius: 20px;
    margin-bottom: 18px;
  }
  /* Card 05 (Capacitaciones): el recuadro 3:2 de mobile recorta muy
     abajo de la foto y tapa la cara del operario; se sube el encuadre. */
  .st-srv-card__photo img[src*="capacitaciones-tecnicas"] { object-position: center 18%; }

  .st-services-foot { grid-template-columns: 1fr; }

  .st-respaldo2-grid { grid-template-columns: 1fr; gap: 28px; max-width: 380px; margin: 0 auto; }

  .st-ind-row { grid-template-columns: repeat(4, 1fr); }

  .st-process { grid-template-columns: 1fr; grid-template-rows: none; gap: 40px; }
  .st-process__intro,
  .st-process__photo,
  .st-process__steps { grid-column: 1; grid-row: auto; }
  .st-process__intro { max-width: 420px; }
  .st-process__photo img { height: 360px; }
  .st-process__title-row { flex-wrap: wrap; }

  .st-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .st-contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .st-contact-phone { max-width: none; }
}

@media (max-width: 600px) {
  .st-container { padding: 0 18px; }
  .st-section { padding: 40px 0; }
  .st-heading, .st-heading2, .st-heading3 { margin-bottom: 32px; }
  .st-title-dots { display: none; }
  .st-title-row { margin-bottom: 44px; }

  .st-process__photo img { height: 260px; }
  .st-process__badge { width: 76px; height: 76px; top: -14px; right: -14px; }
  .st-process__badge strong { font-size: 24px; }
  .st-process__step { gap: 14px; }
  .st-process__num { width: 34px; height: 34px; font-size: 13px; }

  .st-hero2__photo { height: min(80vh, 480px); }
  .st-hero2__title-white-wrap { top: 6px; }
  .st-hero2__nav-wrap { bottom: 16px; }
  .st-hero2__resources { flex-direction: column; gap: 10px; }
  .st-hero2__resource { flex: 0 0 auto; max-width: none; padding: 11px 14px; }
  .st-hero2__resource-text { font-size: 12.5px; }
  .st-hero2__resource-icon { width: 34px; height: 34px; }

  .st-ind-row { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
  .st-ind-item { min-width: 0; }
  .st-ind-icon { width: 48px; height: 48px; }

  .st-cta-left { flex-direction: column; align-items: flex-start; gap: 14px; }
  .st-cta-actions { width: 100%; flex-direction: column; }
  .st-cta-actions .btn-pill { justify-content: center; }
  .st-services-note, .st-services-advice { align-items: flex-start; padding: 18px; }
  .st-contact-wrap { padding: 46px 0; }
  .st-contact-layout { padding: 22px 18px; border-radius: 20px; }
  .st-contact-form-card .qf-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .st-section-contact { align-items: flex-start; flex-wrap: wrap; margin-top: 38px; padding: 18px; }
  .st-section-contact__cta { width: 100%; padding-left: 64px; }
}
