/* =========================
   SUSTENTABILIDAD HERO
========================= */

.sustentabilidad-hero {
  position: relative;
  height: 55vh;
  min-height: 350px;
  background: url('../assets/images/institucional/sustentabilidad.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sustentabilidad-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.sustentabilidad-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 15px;
}

.sustentabilidad-hero h1 {
  font-family: 'GT Walsheim Bold', sans-serif;
  font-size: clamp(2rem, 8vw, 6rem);
  max-width: 95vw;
  margin: 0 auto;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  word-break: break-word;
}

@media (max-width: 360px) {
  .sustentabilidad-hero h1 {
    font-size: 8vw;
  }
}

/* =========================================
   SUSTENTABILIDAD INFO 
========================================= */

.sust-info {
  width: 100%;
}

.sust-info-block {
  width: 100%;
  padding: 120px 0;
}

.sust-info-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sust-info-blue {
  background: #1C2249;
}

.sust-info-white {
  background: #ffffff;
}

.sust-info-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.sust-info-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sust-info-image:hover {
  transform: scale(1.05);
}

.sust-info-content h2 {
  font-family: 'GT Walsheim Bold', sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sust-info-blue h2,
.sust-info-blue p {
  color: #ffffff;
}

.sust-info-white h2 {
  color: #1C2249;
}

.sust-info-white p {
  color: #4a4a4a;
}

.sust-info-content p {
  font-family: 'Maven Pro', sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

sup {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.1em;
}


@media (max-width: 900px) {

  .sust-info-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sust-info-block {
    padding: 80px 0;
  }

  .sust-info-white .sust-info-container {
    display: flex;
    flex-direction: column-reverse;
  }

}