/* ============================================================
   RODAMIENTOS CUYO — industrias.css  v2
   Prefijo: ind-
   ============================================================ */

/* ---- Página base ---- */
.ind-page {
  padding: calc(var(--nav-h) + 24px) 24px 48px;
  max-width: 1460px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
}

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

/* ---- Secciones ---- */
.ind-section {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid rgba(148,163,184,.28);
}
.ind-section--alt  { background: #f2f4f8; }
.ind-section--dark {
  background: var(--dark);
  border-bottom: none;
}

/* ---- Headings de sección ---- */
.ind-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.ind-heading {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ind-heading--center { text-align: center; }
.ind-heading em {
  font-style: normal;
  color: var(--dark);
}

.ind-desc {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}
.ind-desc--center {
  text-align: center;
  margin: 0 auto;
}


/* ============================================================
   HERO 2 — copy + grilla de industrias con insignia central
   ============================================================ */
@keyframes hero3-in{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}
.ind-hero2{
  min-height: calc(100vh - var(--nav-h) - 48px);
  display: flex;
  align-items: center;
  padding: 56px 0;
  margin-bottom: 64px;
  background: #fff;
}
.ind-hero2__inner{
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 440px) 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}
.ind-hero2__copy{ animation: hero3-in .6s var(--ease) both; }
.ind-hero2__eyebrow{
  display: block;
  margin-bottom: 14px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.ind-hero2__title{
  margin: 0 0 20px;
  font-family: 'Anton', var(--font), sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(46px, 5.4vw, 74px);
  line-height: .96;
}
.ind-hero2__title-a{ color: var(--dark); }
.ind-hero2__title-b{ color: var(--blue); }
.ind-hero2__desc{
  margin: 0 0 28px;
  max-width: 460px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

.ind-hero2__grid{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  aspect-ratio: 1 / 1;
  animation: hero3-in .7s var(--ease) .15s both;
}
.ind-hero2__cell{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.ind-hero2__cell img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ind-hero2__cell--flip .ind-hero2__pill{ left: auto; right: 14px; }
.ind-hero2__pill{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10,27,51,.82);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
}
.ind-hero2__badge{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 20px 46px -14px rgba(10,27,51,.35);
  padding: 12px;
}
.ind-hero2__badge img{
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce){
  .ind-hero2__copy, .ind-hero2__grid{ animation: none; }
}
@media (max-width: 900px){
  .ind-hero2__inner{ grid-template-columns: 1fr; }
  .ind-hero2__copy{ text-align: center; }
  .ind-hero2__desc{ margin-left: auto; margin-right: auto; }
  .ind-hero2__grid{ max-width: 480px; margin: 0 auto; }
}
@media (max-width: 560px){
  .ind-hero2__title{ font-size: clamp(38px, 11vw, 56px); }
  .ind-hero2__pill{ font-size: 11px; padding: 6px 11px; }
  .ind-hero2__pill svg{ width: 11px; height: 11px; }
}

/* ============================================================
   HERO (legado — reemplazado por .ind-hero2, se deja sin usar)
   ============================================================ */
.ind-hero-wrap {
  background: #fff;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 44px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  height: 640px;
}

.ind-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 35%;
}

.ind-hero {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px 48px 64px;
  max-width: 580px;
}

.ind-hero__left {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 40px 56px 0;
}

.ind-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 20px;
}
.ind-hero__breadcrumb a { color: var(--muted); transition: color .2s; }
.ind-hero__breadcrumb a:hover { color: var(--blue); }
.ind-hero__breadcrumb svg { color: rgba(100,116,139,.5); }

.ind-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.ind-hero__h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.ind-hero__h1 em {
  font-style: normal;
  color: var(--blue);
}

.ind-hero__desc {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.ind-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

/* Hero CTA buttons */
.btn-pill--ind-primary {
  background: var(--blue);
  color: #fff;
  padding: 13px 26px;
  font-size: 14.5px;
}
.btn-pill--ind-primary:hover {
  background: #1644b8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,83,212,.3);
}
.btn-pill--ind-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(10,27,51,.2);
  padding: 13px 26px;
  font-size: 14.5px;
}
.btn-pill--ind-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

/* Hero chips */
.ind-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ind-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,83,212,.06);
  border: 1.5px solid rgba(27,83,212,.15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
}
.ind-hero__chip svg { flex-shrink: 0; }


.ind-radar-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.ind-radar-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Radar animation: rotating scan line */
@keyframes ind-radar-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes ind-radar-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.12); }
}
@keyframes ind-node-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.ind-radar-scan {
  transform-origin: 240px 230px;
  animation: ind-radar-spin 6s linear infinite;
}
.ind-radar-ring-pulse {
  transform-origin: 240px 230px;
  animation: ind-radar-pulse 2.5s ease-in-out infinite;
}
.ind-radar-node {
  animation: ind-node-blink 2.5s ease-in-out infinite;
}
.ind-radar-node:nth-child(2)  { animation-delay: .4s; }
.ind-radar-node:nth-child(3)  { animation-delay: .8s; }
.ind-radar-node:nth-child(4)  { animation-delay: 1.2s; }
.ind-radar-node:nth-child(5)  { animation-delay: 1.6s; }
.ind-radar-node:nth-child(6)  { animation-delay: 2.0s; }


/* ============================================================
   DATOS CLAVE — GALERÍA TIPO GALLERY4
   ============================================================ */
.ind-gallery-section {
  padding: 80px 0 0;
  background: #fff;
  border-bottom: 1px solid rgba(148,163,184,.28);
  overflow: hidden;
}

.ind-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.ind-gallery-header__text { flex: 1; }
.ind-gallery-header__text .ind-desc { margin-bottom: 0; }

.ind-gallery-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.ind-gallery-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(10,27,51,.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.ind-gallery-btn:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(27,83,212,.06);
}
.ind-gallery-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
}

/* Viewport: desborda por la derecha */
.ind-gallery-viewport {
  width: 100%;
  overflow: hidden;
}

.ind-gallery-track {
  display: flex;
  will-change: transform;
  /* Alinea el primer slide con el borde del container */
  padding-left: max(40px, calc((100vw - 1200px) / 2 + 40px));
}

.ind-gallery-slide {
  flex: 0 0 auto;
  width: 340px;
  padding-right: 20px;
  box-sizing: content-box;
}
@media (min-width: 1024px) {
  .ind-gallery-slide { width: 380px; }
}

.ind-gallery-card {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 440px;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

.ind-gallery-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
  /* fallback si la imagen no carga */
  background: linear-gradient(145deg, #0b2356, #1B53D4);
}
.ind-gallery-card:hover .ind-gallery-card__img {
  transform: scale(1.06);
}

.ind-gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,27,51,0)   0%,
    rgba(10,27,51,.35) 40%,
    rgba(10,27,51,.85) 100%
  );
  transition: opacity .3s;
}
.ind-gallery-card:hover .ind-gallery-card__overlay {
  opacity: .92;
}

.ind-gallery-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}

.ind-gallery-card__sector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}

.ind-gallery-card__title {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}

.ind-gallery-card__text {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.ind-gallery-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  transition: gap .2s, color .2s;
}
.ind-gallery-card:hover .ind-gallery-card__cta {
  gap: 10px;
  color: #fff;
}

/* Dots */
.ind-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 28px 40px 0;
  margin-bottom: 0;
  /* bottom padding of the section */
  padding-bottom: 56px;
}

.ind-gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(27,83,212,.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.ind-gallery-dot.active {
  background: var(--blue);
  transform: scale(1.25);
}


/* ============================================================
   SECTORES — PHOTO GRID (estilo Our Services)
   ============================================================ */
.ind-srv-section {
  background: #fff;
  padding: 80px 0;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 44px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* ---- Header (heading a lo ancho + logo en el espacio en blanco) ---- */
.ind-srv-header2{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.ind-srv-header2__logo{
  flex-shrink: 0;
  order: 2;
  width: clamp(240px, 22vw, 320px);
  height: auto;
}
.ind-srv-header2__sep{ display: none; }
.ind-srv-header2 > div{ order: 1; min-width: 0; }
.ind-srv-title-mark{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ind-srv-title-mark-dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  flex-shrink: 0;
}
.ind-srv-title-mark-line{
  width: 110px; height: 1.5px;
  background: var(--blue);
  flex-shrink: 0;
}
.ind-srv-heading2{
  margin: 0;
  width: 100%;
  font-family: 'Anton', var(--font), sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: .96;
}
.ind-srv-heading2-a,
.ind-srv-heading2-b{ display: block; color: var(--dark); }
.ind-srv-heading2-b em{ font-style: normal; color: var(--blue); }
.ind-srv-title-rule{
  display: block;
  width: 56px; height: 3px;
  margin: 20px 0 22px;
  background: var(--blue);
  border-radius: 2px;
}
.ind-srv-sub2{
  max-width: 640px;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---- Grid de cards fotográficas ---- */
.ind-srv-grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ind-srv-item2{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
}
.ind-srv-item2__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .5s ease;
}
.ind-srv-item2:hover .ind-srv-item2__img{ transform: scale(1.05); }
.ind-srv-item2__scrim{
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(6,14,28,.88) 0%, rgba(6,14,28,.5) 42%, rgba(6,14,28,0) 72%);
}
.ind-srv-item2__num{
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.ind-srv-item2__body{
  padding: 22px 24px 24px;
  transition: padding .35s var(--ease);
}
.ind-srv-item2__title{
  margin: 0;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  transition: margin .35s var(--ease);
}
.ind-srv-item2__text{
  margin: 0;
  max-width: 420px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), opacity .3s var(--ease), margin .35s var(--ease);
}
.ind-srv-item2__cta{
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--dark);
  font-size: 12.5px;
  font-weight: 700;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), max-height .35s var(--ease), opacity .3s var(--ease), margin .35s var(--ease);
}
.ind-srv-item2__cta:hover{
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}
.ind-srv-item2:hover .ind-srv-item2__title,
.ind-srv-item2:focus-within .ind-srv-item2__title{
  margin: 0 0 6px;
}
.ind-srv-item2:hover .ind-srv-item2__text,
.ind-srv-item2:focus-within .ind-srv-item2__text{
  max-height: 120px;
  opacity: 1;
  margin: 0 0 16px;
}
.ind-srv-item2:hover .ind-srv-item2__cta,
.ind-srv-item2:focus-within .ind-srv-item2__cta{
  max-height: 44px;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 900px){
  .ind-srv-header2{ flex-direction: column; align-items: flex-start; gap: 18px; }
  .ind-srv-header2__sep{ display: none; }
  .ind-srv-header2__logo{ order: 0; margin-top: 0; }
  .ind-srv-header2 > div{ order: 0; }
}
@media (max-width: 700px){
  .ind-srv-grid2{ grid-template-columns: 1fr; }
  .ind-srv-item2{ aspect-ratio: 4 / 5; }
}
@media (hover: none){
  .ind-srv-item2__title{ margin: 0 0 6px; }
  .ind-srv-item2__text{ max-height: 120px; opacity: 1; margin: 0 0 16px; }
  .ind-srv-item2__cta{ max-height: 44px; opacity: 1; pointer-events: auto; }
}

/* ============================================================
   SECTORES — HEADER Y GRID (legado — reemplazado por .ind-srv-header2/.ind-srv-grid2, se deja sin usar)
   ============================================================ */
.ind-srv-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}

.ind-srv-heading {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.025em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ind-srv-sub {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.ind-srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

/* Ítem */
.ind-srv-item { display: flex; flex-direction: column; }

.ind-srv-item__img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 14px;
}

.ind-srv-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ind-srv-item:hover .ind-srv-item__img { transform: scale(1.04); }

.ind-srv-item__body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ind-srv-item__icon {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(10,27,51,.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
  transition: background .2s, border-color .2s, color .2s;
}
.ind-srv-item:hover .ind-srv-item__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.ind-srv-item__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.01em;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ind-srv-item__text {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .ind-srv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ind-srv-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* ============================================================
   SECTORES — CARD CAROUSEL (legacy, unused)
   ============================================================ */
.ind-sc2-section {
  background: #eef0f4;
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(148,163,184,.28);
  overflow: hidden;
}

.ind-sc2-header {
  text-align: center;
  margin-bottom: 48px;
}

.ind-sc2-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.ind-sc2-heading strong { font-weight: 700; }

.ind-sc2-ruler {
  width: 48px; height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 0 auto;
}

/* Grid 3×2 */
.ind-sc2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

/* Tarjeta */
.ind-sc2-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(10,27,51,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}
.ind-sc2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10,27,51,.13);
}

/* Top — fondo de color + blob + foto */
.ind-sc2-card__top {
  position: relative;
  height: 210px;
  background: var(--accent, #1B53D4);
  flex-shrink: 0;
  overflow: hidden;
}
/* Blob circular decorativo */
.ind-sc2-card__top::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  top: -30px;
  left: 50%;
  transform: translateX(-15%);
  pointer-events: none;
}
.ind-sc2-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .48;
  mix-blend-mode: luminosity;
}

/* Título */
.ind-sc2-card__title-area {
  padding: 18px 20px 14px;
}
.ind-sc2-card__name {
  font-size: 22px;
  font-weight: 200;
  color: var(--dark);
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.ind-sc2-card__name strong {
  font-weight: 800;
}
.ind-sc2-card__region {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Sección de datos */
.ind-sc2-card__data {
  padding: 0 20px 0;
  border-top: 1px solid rgba(148,163,184,.2);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ind-sc2-card__data-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0 10px;
}

/* Iconos */
.ind-sc2-card__icons {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.ind-sc2-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(148,163,184,.3);
  background: #f5f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}
.ind-sc2-icon--accent {
  background: var(--accent, #1B53D4);
  border-color: var(--accent, #1B53D4);
  color: #fff;
}

/* Specs */
.ind-sc2-spec {
  display: flex;
  flex-direction: column;
  margin-bottom: 9px;
}
.ind-sc2-spec__k {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1px;
}
.ind-sc2-spec__v {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* Botón */
.ind-sc2-card__btn {
  display: block;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  background: transparent;
  border: 1.5px solid rgba(10,27,51,.2);
  border-radius: 7px;
  padding: 9px 0;
  text-align: center;
  text-decoration: none;
  margin: 14px 20px 20px;
  transition: background .2s, border-color .2s, color .2s;
}
.ind-sc2-card__btn:hover {
  background: var(--accent, #1B53D4);
  border-color: var(--accent, #1B53D4);
  color: #fff;
}

/* Pill de navegación */
.ind-sc2-nav {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.ind-sc2-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #2d3748;
  border-radius: 50px;
  padding: 6px 10px;
}
.ind-sc2-pill-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.75);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.ind-sc2-pill-btn:hover:not(:disabled) {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.ind-sc2-pill-btn:disabled { opacity: .3; cursor: default; }
.ind-sc2-pill-div {
  width: 1px; height: 22px;
  background: rgba(255,255,255,.2);
  margin: 0 2px;
}

@media (max-width: 900px) {
  .ind-sc2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ind-sc2-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   SECTORES — TIMELINE CAROUSEL (legacy, unused)
   ============================================================ */
.ind-tlc-section {
  background: #f5f6f8;
  border-bottom: 1px solid rgba(148,163,184,.28);
  padding-bottom: 72px;
  overflow: hidden;
}

.ind-tlc-header {
  text-align: center;
  padding: 72px 0 36px;
}

.ind-tlc-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.ind-tlc-heading strong { font-weight: 700; }

.ind-tlc-ruler {
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin: 0 auto;
}

/* Nav: flechas + línea de puntos */
.ind-tlc-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.ind-tlc-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(10,27,51,.22);
  background: #fff;
  color: var(--dark);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.ind-tlc-arrow:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.ind-tlc-arrow:disabled { opacity: .32; cursor: default; }

.ind-tlc-timeline {
  flex: 1;
  position: relative;
  padding-top: 28px;
}

.ind-tlc-line {
  position: absolute;
  top: 40px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(10,27,51,.14);
}

.ind-tlc-dots {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.ind-tlc-dot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ind-tlc-dot-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color .2s;
}

.ind-tlc-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(10,27,51,.22);
  background: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1;
  transition: background .2s, border-color .2s, transform .2s;
}
.ind-tlc-dot:hover { background: rgba(27,83,212,.3); border-color: var(--blue); }
.ind-tlc-dot.active {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.4);
}
.ind-tlc-dot-item:has(.ind-tlc-dot.active) .ind-tlc-dot-label {
  color: var(--blue);
  font-weight: 700;
}

/* Viewport y track */
.ind-tlc-viewport { overflow: hidden; }

.ind-tlc-track {
  display: flex;
  padding-left: max(40px, calc((100vw - 1200px) / 2 + 40px));
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

/* Tarjetas */
.ind-tlc-card {
  flex-shrink: 0;
  width: 300px;
  background: #fff;
  border: 1px solid rgba(148,163,184,.22);
  border-right: none;
  display: flex;
  flex-direction: column;
  opacity: .55;
  filter: grayscale(.6);
  transition: opacity .4s, filter .4s;
}
.ind-tlc-card:last-child { border-right: 1px solid rgba(148,163,184,.22); }
.ind-tlc-card.active { opacity: 1; filter: none; }

.ind-tlc-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: visible;
  flex-shrink: 0;
}

.ind-tlc-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.ind-tlc-card__badge {
  position: absolute;
  bottom: -26px; left: 18px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  z-index: 2;
}
.ind-tlc-card__badge span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .82;
}
.ind-tlc-card__badge strong {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.ind-tlc-card__body {
  padding: 44px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ind-tlc-card__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
}

.ind-tlc-card__text {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ind-tlc-card__btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #6b7280;
  border-radius: 5px;
  padding: 8px 18px;
  text-decoration: none;
  align-self: flex-start;
  transition: background .2s;
}
.ind-tlc-card__btn:hover { background: var(--blue); }

@media (max-width: 768px) {
  .ind-tlc-card { width: 240px; }
  .ind-tlc-dot-label { display: none; }
  .ind-tlc-timeline { padding-top: 12px; }
  .ind-tlc-line { top: 18px; }
}


/* ============================================================
   SECTORES — FEATURES GRID (legacy, unused)
   ============================================================ */
.ind-fg-section {
  background: #fff;
  border-bottom: 1px solid rgba(148,163,184,.28);
}

.ind-fg-header {
  text-align: center;
  padding: 72px 0 52px;
}
.ind-fg-header .ind-heading { margin: 0; }

.ind-fg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(148,163,184,.18);
  border: 1px solid rgba(148,163,184,.18);
  margin-bottom: 0;
}

.ind-fg-card {
  background: #fff;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background .22s;
}
.ind-fg-card:hover { background: #f8faff; }

.ind-fg-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(27,83,212,.08);
  border: 1.5px solid rgba(27,83,212,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 24px;
  flex-shrink: 0;
  transition: background .22s, box-shadow .22s;
}
.ind-fg-card:hover .ind-fg-card__icon {
  background: rgba(27,83,212,.14);
  box-shadow: 0 0 0 6px rgba(27,83,212,.06);
}

.ind-fg-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.25;
}

.ind-fg-card__text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 28px;
  flex: 1;
}

.ind-fg-card__btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  background: transparent;
  border: 1.5px solid rgba(10,27,51,.22);
  border-radius: 6px;
  padding: 9px 24px;
  text-decoration: none;
  letter-spacing: .01em;
  transition: border-color .2s, background .2s, color .2s;
}
.ind-fg-card__btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Banner oscuro central */
.ind-fg-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #091630;
}

.ind-fg-banner__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}

.ind-fg-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #091630 38%, rgba(9,22,48,.78) 62%, rgba(9,22,48,.28) 100%);
}

.ind-fg-banner__content {
  position: relative;
  z-index: 1;
  padding: 68px 0;
  max-width: 520px;
}

.ind-fg-banner__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 16px;
}

.ind-fg-banner__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ind-fg-banner__desc {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 400px;
}

.ind-fg-banner__cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  border-radius: 8px;
  padding: 13px 28px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.ind-fg-banner__cta:hover {
  background: #eef3ff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .ind-fg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ind-fg-grid { grid-template-columns: 1fr; }
  .ind-fg-header { padding: 52px 0 36px; }
  .ind-fg-banner__title { font-size: 2rem; }
  .ind-fg-banner__content { padding: 48px 0; }
}


/* ============================================================
   SECTORES — CAROUSEL (legacy, unused)
   ============================================================ */
.ind-sc-section {
  padding: 80px 0 0;
  background: #fff;
  overflow: hidden;
}

.ind-sc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.ind-sc-header__left {
  display: flex;
  flex-direction: column;
}
.ind-sc-header__left .ind-heading { margin-bottom: 12px; }

.ind-sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap .2s;
}
.ind-sc-link:hover { gap: 10px; }

.ind-sc-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 6px;
}

.ind-sc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(10,27,51,.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.ind-sc-btn:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(27,83,212,.06);
}
.ind-sc-btn:disabled { opacity: .3; cursor: not-allowed; }

.ind-sc-viewport { width: 100%; overflow: hidden; }

.ind-sc-track {
  display: flex;
  will-change: transform;
  padding-left: max(40px, calc((100vw - 1200px) / 2 + 40px));
}

.ind-sc-slide {
  flex: 0 0 auto;
  width: 280px;
  padding-right: 28px;
  box-sizing: content-box;
}
@media (min-width: 768px)  { .ind-sc-slide { width: 320px; } }
@media (min-width: 1024px) { .ind-sc-slide { width: 360px; } }

.ind-sc-card {
  background: #fff;
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ind-sc-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #e8eaed;
  overflow: hidden;
  flex-shrink: 0;
}
.ind-sc-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ind-sc-card:hover .ind-sc-card__img { transform: scale(1.04); }

.ind-sc-card__body {
  padding: 18px 4px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.ind-sc-card__title {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.3;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
}

.ind-sc-card__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.ind-sc-card__footer { display: none; }

.ind-sc-card__btn {
  display: inline-block;
  padding: 9px 20px;
  background: var(--dark);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  width: fit-content;
  margin-top: 4px;
  transition: background .2s;
}
.ind-sc-card__btn:hover { background: var(--blue); }

.ind-sc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 28px 40px 56px;
}

.ind-sc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(27,83,212,.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.ind-sc-dot.active {
  background: var(--blue);
  transform: scale(1.25);
}


/* ============================================================
   DATOS CLAVE — LISTA VERTICAL
   ============================================================ */
.ind-vlist-section {
  background: #fff;
}

.ind-vlist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--dark);
}

.ind-vlist-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 3px;
}

.ind-vlist-nav {
  display: flex;
  gap: 4px;
}

.ind-vlist-nav-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(10,27,51,.18);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.ind-vlist-nav-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.ind-vlist {
  display: flex;
  flex-direction: column;
}

.ind-vlist-item {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(148,163,184,.2);
  align-items: center;
  text-decoration: none;
}

.ind-vlist-item__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8eaed;
  flex-shrink: 0;
}
.ind-vlist-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ind-vlist-item:hover .ind-vlist-item__img { transform: scale(1.04); }

.ind-vlist-item__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ind-vlist-item__title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.025em;
  margin: 0;
  transition: color .2s;
}
.ind-vlist-item:hover .ind-vlist-item__title { color: var(--blue); }

.ind-vlist-item__meta {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ind-vlist-item__meta::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.ind-vlist-item__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .ind-vlist-item { grid-template-columns: 260px 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .ind-vlist-item { grid-template-columns: 1fr; padding: 24px 0; }
}


/* ============================================================
   ACTUALIDAD — BLOG / NOVEDADES
   ============================================================ */
.ind-blog-section {
  padding: 80px 0;
}
.ind-blog-header {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}
.ind-blog-header .ind-srv-title-mark { justify-content: center; }
.ind-blog-heading {
  margin: 0;
  font-family: 'Anton', var(--font), sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1;
}
.ind-blog-heading-a,
.ind-blog-heading-b { display: block; color: var(--dark); }
.ind-blog-heading-b em { font-style: normal; color: var(--blue); }
.ind-blog-header .ind-srv-title-rule { margin-left: auto; margin-right: auto; }
.ind-blog-sub {
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}
.ind-blog-carousel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.ind-blog-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
}
.ind-blog-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}
.ind-blog-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.ind-blog-slide__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-blog-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  border: 1px solid rgba(148,163,184,.3);
  box-shadow: 0 8px 20px -10px rgba(10,27,51,.3);
  cursor: pointer;
  z-index: 2;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.ind-blog-carousel__arrow:hover { background: var(--blue); color: #fff; }
.ind-blog-carousel__arrow--prev { left: -20px; }
.ind-blog-carousel__arrow--next { right: -20px; }
.ind-blog-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.ind-blog-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(10,27,51,.18);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.ind-blog-dot.is-active {
  background: var(--blue);
  transform: scale(1.2);
}
@media (max-width: 700px) {
  .ind-blog-carousel__arrow--prev { left: 8px; }
  .ind-blog-carousel__arrow--next { right: 8px; }
}

/* ============================================================
   DATOS CLAVE — PHOTO BENTO GRID (legado — reemplazado por la sección
   "Actualidad" tipo blog de arriba, se deja sin usar)
   ============================================================ */
.ind-pgrid-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 44px;
  margin-bottom: 20px;
}

.ind-pgrid-header {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: center;
}

.ind-pgrid-heading {
  font-family: var(--font);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.025em;
  text-transform: uppercase;
  margin: 0;
}

.ind-pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 240px;
  gap: 6px;
  grid-template-areas:
    "a a b"
    "c d b";
}

.ind-pgrid-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.ind-pgrid-card--a { grid-area: a; }
.ind-pgrid-card--b { grid-area: b; }
.ind-pgrid-card--c { grid-area: c; }
.ind-pgrid-card--d { grid-area: d; }

.ind-pgrid-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.ind-pgrid-card:hover .ind-pgrid-card__img { transform: scale(1.06); }

.ind-pgrid-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05) 20%, rgba(0,0,0,.72) 100%);
  transition: opacity .3s;
}
.ind-pgrid-card:hover .ind-pgrid-card__overlay { opacity: .9; }

.ind-pgrid-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
}

.ind-pgrid-card__meta {
  display: block;
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 7px;
}

.ind-pgrid-card__title {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -.02em;
  margin: 0;
  text-align: left;
}
.ind-pgrid-card--a .ind-pgrid-card__title,
.ind-pgrid-card--b .ind-pgrid-card__title {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

@media (max-width: 768px) {
  .ind-pgrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 200px;
    grid-template-areas: "a a" "b c" "d d";
  }
}
@media (max-width: 480px) {
  .ind-pgrid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "a" "b" "c" "d";
  }
  .ind-pgrid-card { min-height: 200px; }
}


/* ============================================================
   BENTO GRID — INDUSTRIAS
   ============================================================ */
.ind-bento-intro {
  margin-bottom: 40px;
}

.ind-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 220px 200px;
  gap: 14px;
}

/* Grid placement */
.ind-bcard--oilgas    { grid-column: 1 / 3; grid-row: 1; }
.ind-bcard--mineria   { grid-column: 3;     grid-row: 1; }
.ind-bcard--indgral   { grid-column: 4;     grid-row: 1; }
.ind-bcard--agro      { grid-column: 1;     grid-row: 2; }
.ind-bcard--vitivi    { grid-column: 2;     grid-row: 2; }
.ind-bcard--alim      { grid-column: 3;     grid-row: 2; }
.ind-bcard--transp    { grid-column: 4;     grid-row: 2; }
.ind-bcard--maq       { grid-column: 1 / 3; grid-row: 3; }
.ind-bcard--serv      { grid-column: 3 / 5; grid-row: 3; }

.ind-bcard {
  background: #fff;
  border: 1.5px solid rgba(148,163,184,.22);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.ind-bcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10,27,51,.1);
  border-color: rgba(27,83,212,.3);
}

/* Featured cards (Oil & Gas, Minería) */
.ind-bcard--featured {
  background: linear-gradient(145deg, #f0f5ff 0%, #fff 60%);
  border-color: rgba(27,83,212,.2);
}
.ind-bcard--featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(27,83,212,.08), transparent 70%);
  pointer-events: none;
}

/* Oil & Gas — fondo azul profundo */
.ind-bcard--oilgas {
  background: linear-gradient(145deg, #0b2356 0%, #1044b8 55%, #1B53D4 100%);
  border-color: transparent;
}
.ind-bcard--oilgas::before {
  background: radial-gradient(ellipse at top right, rgba(255,255,255,.12), transparent 60%);
}
.ind-bcard--oilgas::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
  pointer-events: none;
}
.ind-bcard--oilgas:hover {
  box-shadow: 0 24px 56px rgba(27,83,212,.4);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-5px);
}
.ind-bcard--oilgas .ind-bcard__badge {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.ind-bcard--oilgas .ind-bcard__icon {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.ind-bcard--oilgas .ind-bcard__title { color: #fff; }
.ind-bcard--oilgas .ind-bcard__text  { color: rgba(255,255,255,.72); }
.ind-bcard--oilgas .ind-bcard__challenge { color: rgba(255,255,255,.6); }
.ind-bcard--oilgas .ind-bcard__challenge strong { color: rgba(255,255,255,.8); }
.ind-bcard--oilgas .ind-bcard__zone {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
}
.ind-bcard--oilgas .ind-bcard__link {
  color: #fff;
}
.ind-bcard--oilgas:hover .ind-bcard__link { color: #fff; }

.ind-bcard__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,83,212,.09);
  border: 1px solid rgba(27,83,212,.18);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .05em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 14px;
}
.ind-bcard--featured .ind-bcard__badge {
  background: rgba(27,83,212,.12);
}

.ind-bcard__icon {
  width: 44px; height: 44px;
  background: rgba(27,83,212,.08);
  border: 1.5px solid rgba(27,83,212,.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.ind-bcard--featured .ind-bcard__icon {
  width: 52px; height: 52px;
  background: rgba(27,83,212,.1);
}

.ind-bcard__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.ind-bcard--featured .ind-bcard__title {
  font-size: 19px;
}

.ind-bcard__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
  flex: 1;
}
.ind-bcard--featured .ind-bcard__text {
  font-size: 13.5px;
}

.ind-bcard__meta {
  margin-bottom: 14px;
}

.ind-bcard__challenge {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 8px;
}
.ind-bcard__challenge strong {
  color: var(--mid);
  font-weight: 700;
}

.ind-bcard__zone {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(27,83,212,.08);
  border-radius: 4px;
  padding: 2px 8px;
}

.ind-bcard__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: gap .2s, opacity .2s;
  margin-top: auto;
}
.ind-bcard:hover .ind-bcard__link { gap: 8px; }


/* ============================================================
   COBERTURA — TIMELINE DARK
   ============================================================ */
.ind-timeline-section {
  background: #0d1e3a;
  border-bottom: none;
}

.ind-timeline-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.ind-timeline__left { padding-top: 12px; }

.ind-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

.ind-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(255,255,255,.12);
}

.ind-timeline-item {
  display: grid;
  grid-template-columns: 18px 1fr 110px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ind-timeline-item:last-child { border-bottom: none; }

.ind-timeline-item__dot {
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(27,83,212,.25);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ind-timeline-item__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}

.ind-timeline-item__location {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 0 6px;
}

.ind-timeline-item__sectors {
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.55;
}

.ind-timeline-item__img-wrap {
  width: 110px; height: 78px;
  overflow: hidden;
  border-radius: 6px;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
}
.ind-timeline-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: .85;
  transition: opacity .3s, transform .4s ease;
}
.ind-timeline-item:hover .ind-timeline-item__img {
  opacity: 1;
  transform: scale(1.06);
}

@media (max-width: 1024px) {
  .ind-timeline-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .ind-timeline-item { grid-template-columns: 18px 1fr; }
  .ind-timeline-item__img-wrap { display: none; }
}


/* ============================================================
   CONTEXTO RECIENTE — EDITORIAL
   ============================================================ */
.ind-editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.ind-editorial-card {
  background: #fff;
  border: 1.5px solid rgba(148,163,184,.18);
  border-left: 3px solid var(--blue);
  border-radius: 0 18px 18px 0;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.ind-editorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10,27,51,.1);
  border-left-color: #1044b8;
}

/* Número decorativo de fondo */
.ind-editorial-card::before {
  content: attr(data-num);
  position: absolute;
  bottom: -18px; right: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  color: rgba(27,83,212,.05);
  pointer-events: none;
  user-select: none;
}

.ind-editorial-card__sector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(27,83,212,.07);
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
  margin-bottom: 16px;
}

.ind-editorial-card__title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.35;
  margin-bottom: 12px;
}

.ind-editorial-card__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.68;
  flex: 1;
  margin-bottom: 16px;
}

.ind-editorial-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
  align-self: flex-start;
}
.ind-editorial-card__tag::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .5;
}


/* ============================================================
   COBERTURA REGIONAL
   ============================================================ */
.ind-coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.ind-coverage__map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-coverage-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}

/* Map pulse animation */
@keyframes ind-map-pulse {
  0%, 100% { r: 8; opacity: 1; }
  50%       { r: 14; opacity: .3; }
}
.ind-map-pulse { animation: ind-map-pulse 2s ease-in-out infinite; }
.ind-map-pulse:nth-child(2) { animation-delay: .4s; }
.ind-map-pulse:nth-child(3) { animation-delay: .8s; }
.ind-map-pulse:nth-child(4) { animation-delay: 1.2s; }
.ind-map-pulse:nth-child(5) { animation-delay: 1.6s; }
.ind-map-pulse:nth-child(6) { animation-delay: 2.0s; }

.ind-coverage__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ind-coverage-card {
  background: #fff;
  border: 1.5px solid rgba(148,163,184,.18);
  border-left: 3px solid rgba(27,83,212,.3);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ind-coverage-card:hover {
  border-left-color: var(--blue);
  transform: translateX(5px);
  box-shadow: 0 8px 24px rgba(10,27,51,.07);
}

.ind-coverage-card__icon {
  width: 38px; height: 38px;
  background: rgba(27,83,212,.07);
  border: 1.5px solid rgba(27,83,212,.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.ind-coverage-card__region {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.ind-coverage-card__cities {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

.ind-coverage-card__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(27,83,212,.08);
  border-radius: 4px;
  padding: 2px 7px;
  margin-top: 4px;
}


/* ============================================================
   COBERTURA REGIONAL — SPOT CARDS  (v12)
   ============================================================ */
.ind-spot-section {
  background: #0b2545;
  padding: 80px 0 64px;
  overflow: hidden;
  border-radius: 44px;
  margin-bottom: 20px;
}

.ind-spot-header {
  text-align: center;
  margin-bottom: 48px;
}

.ind-spot-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.05;
  margin: 0;
}

/* ---- Viewport & track ---- */
.ind-spot-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* padding dinámico: centra el track (5×240+4×16=1264px) cuando cabe, sino 32px mínimo */
  padding: 0 max(32px, calc((100% - 1264px) / 2));
  box-sizing: border-box;
}
.ind-spot-viewport::-webkit-scrollbar { display: none; }

.ind-spot-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

/* ---- Card ---- */
.ind-spot-card {
  position: relative;
  width: 240px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: default;
  transition: transform .35s ease, box-shadow .35s ease;
}
.ind-spot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.55);
}

.ind-spot-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.ind-spot-card:hover .ind-spot-card__img {
  transform: scale(1.05);
}

.ind-spot-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.0) 30%,
    rgba(0,0,0,.45) 60%,
    rgba(0,0,0,.82) 100%
  );
  pointer-events: none;
}

.ind-spot-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 22px;
}

.ind-spot-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 4px;
}

.ind-spot-card__name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.ind-spot-card__sectors {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
}

/* ---- Footer link ---- */
.ind-spot-footer {
  margin-top: 36px;
  text-align: center;
}

.ind-spot-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.ind-spot-footer a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .ind-spot-card { width: 180px; }
  .ind-spot-heading { font-size: 1.8rem; }
  .ind-spot-viewport { padding: 0 20px; }
}


/* ============================================================
   SECTOR CTA BANNER
   ============================================================ */
.ind-sector-cta {
  background: linear-gradient(135deg, #091630 0%, #0e2a72 55%, #1B53D4 100%);
  border: none;
  border-radius: 44px;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ind-sector-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.ind-sector-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,83,212,.3) 0%, transparent 60%);
  pointer-events: none;
}

.ind-sector-cta__content .ind-eyebrow { color: rgba(255,255,255,.45); }
.ind-sector-cta__content .ind-heading {
  color: #fff;
  max-width: 560px;
  margin-bottom: 14px;
}
.ind-sector-cta__content .ind-desc {
  color: rgba(255,255,255,.6);
  max-width: 520px;
}

.ind-sector-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
/* Botones sobre fondo oscuro */
.ind-sector-cta .btn-pill--ind-primary {
  background: #fff;
  color: var(--dark);
}
.ind-sector-cta .btn-pill--ind-primary:hover {
  background: #f0f5ff;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.ind-sector-cta .btn-pill--ind-outline {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
}
.ind-sector-cta .btn-pill--ind-outline:hover {
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-1px);
}


/* ============================================================
   CONTACT FORM (CTA FINAL)
   ============================================================ */
.ind-cta-wrap {
  background: var(--dark);
  padding: 72px 0 64px;
  border-radius: 44px;
  overflow: hidden;
}

.ind-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ind-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ind-cta-title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.ind-cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 32px;
}

.ind-cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ind-cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.ind-cta-contact-item svg { color: rgba(255,255,255,.4); flex-shrink: 0; }

.ind-cta-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
}

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

.ind-cta-form-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.ind-cta-form-card .qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.ind-cta-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;
}
.ind-cta-form-card .qf-input:focus {
  outline: none;
  border-color: rgba(27,83,212,.4);
  background: #fff;
}
.ind-cta-form-card .qf-textarea { resize: none; }
.ind-cta-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; }
.ind-cta-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;
}
.ind-cta-form-card .qf-submit:hover {
  background: #1644b8;
  transform: translateY(-1px);
}

.ind-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.ind-cta-wa:hover { color: #fff; }


/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.ind-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.ind-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE — Tablet 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .ind-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 40px;
  }
  .ind-hero__left { padding: 32px 0 24px; }
  .ind-hero__right { display: none; }

  .ind-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .ind-bcard--oilgas  { grid-column: 1 / 3; grid-row: auto; }
  .ind-bcard--mineria { grid-column: 1;     grid-row: auto; }
  .ind-bcard--indgral { grid-column: 2;     grid-row: auto; }
  .ind-bcard--agro    { grid-column: 1;     grid-row: auto; }
  .ind-bcard--vitivi  { grid-column: 2;     grid-row: auto; }
  .ind-bcard--alim    { grid-column: 1;     grid-row: auto; }
  .ind-bcard--transp  { grid-column: 2;     grid-row: auto; }
  .ind-bcard--maq     { grid-column: 1 / 3; grid-row: auto; }
  .ind-bcard--serv    { grid-column: 1 / 3; grid-row: auto; }

  .ind-gallery-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ind-gallery-nav    { align-self: flex-end; }
  .ind-editorial-grid { grid-template-columns: repeat(2, 1fr); }

  .ind-coverage-layout { grid-template-columns: 1fr; gap: 32px; }
  .ind-coverage__map   { display: none; }

  .ind-sector-cta { grid-template-columns: 1fr; gap: 28px; }
  .ind-sector-cta__actions { flex-direction: row; }

  .ind-cta-layout { grid-template-columns: 1fr; gap: 36px; }
  .ind-cta-form-card .qf-row { grid-template-columns: 1fr; }
}


/* ============================================================
   RESPONSIVE — Mobile 768px
   ============================================================ */
@media (max-width: 768px) {
  .ind-container { padding: 0 20px; }
  .ind-section   { padding: 56px 0; }

  .ind-gallery-section { padding-top: 56px; }
  .ind-editorial-grid  { grid-template-columns: 1fr; }
  .ind-sector-cta     { padding: 32px 24px; }
  .ind-sector-cta__actions { flex-direction: column; }

  .ind-bento {
    grid-template-columns: 1fr;
  }
  .ind-bcard--oilgas,
  .ind-bcard--maq,
  .ind-bcard--serv { grid-column: 1; }

  .ind-hero__h1  { font-size: 1.8rem; }
  .ind-heading   { font-size: 1.45rem; }

  .ind-cta-wrap { padding: 48px 0 40px; }
}

@media (max-width: 580px) {
  .ind-page { padding-left: 12px; padding-right: 12px; }
  .ind-hero-wrap,
  .ind-pgrid-section,
  .ind-srv-section,
  .ind-spot-section,
  .ind-sector-cta,
  .ind-cta-wrap { border-radius: 28px; }
}
