/* ========================= CONTENEDOR GLOBAL ========================= */
.razon-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ========================= HERO ========================= */
.hero-uesg {
  height: 100vh;
  background: url("../img/razonsocial/BANNER.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 80px 40px;
}

.hero-uesg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-text h1 {
  font-size: 4rem;
  letter-spacing: 3px;
  font-weight: 900;
  text-transform: uppercase;
  color: #F4BE2C;
}

.hero-text p {
  font-size: 1.4rem;
  opacity: .9;
}

/* ========================= INTRO ========================= */
.intro-uesg {
  max-width: 850px;
  margin: 70px auto;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  color: #222;
}

/* ========================= ZIG ZAG ========================= */
.zigzag {
  max-width: 1200px;
  margin: 40px auto 120px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.zz-item {
  display: flex;
  align-items: center;
  gap: 50px;
}

.zz-item.reverse {
  flex-direction: row-reverse;
}

.zz-text {
  flex: 1;
}

.zz-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.zz-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444;
}

.zz-img {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.zz-img img {
  width: 100%;
  height: 330px;
  object-fit: initial;
  transition: .4s;
}

.zz-img img:hover {
  transform: scale(1.04);
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 900px) {
  .zz-item,
  .zz-item.reverse {
    flex-direction: column;
  }

  .zz-img img {
    height: 240px;
  }

  .hero-text h1 {
    font-size: 2.6rem;
  }

  .intro-uesg {
    font-size: 1.2rem;
  }
}
