#hero-cumplimiento {
  height: 85vh;
  position: relative;
  width: 90%;
  margin: auto;
  border-radius: 30px;
  overflow: hidden; /* Para que la imagen respete el borde redondeado */
}

.hero-wrapper {
  position: relative;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: absolute;
  bottom: 2rem;

  color: white;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: bold;
  margin: 0;
  line-height: 1.1;
}
/*Bloque 2*/
.titl-cumpli {
  color: #000;
  font-size: clamp(16px, 2.5vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 50%;
}
/*Bloque 3*/
.circle-bg {
  width: 130px;
  height: 130px;
  background-color: #ba0000;
  border-radius: 50%; /* círculo perfecto */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.h3-strong {
  color: #000;
  font-size: clamp(16px, 2.5vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.par-strong-small {
  color: #000;
  font-size: clamp(14px, 1.5vw, 18px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#bloque-3-cumplimiento {
  position: relative;
  background-image: url("../assets/05_cumplimiento/frase.webp");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  text-align: center;
  height: 100vh;
  overflow: hidden;
}

#bloque-3-cumplimiento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.3;
  z-index: 1;
}

#bloque-3-cumplimiento > * {
  position: relative;
  z-index: 2;
}
/*Bloque 5*/
.titl-cumpli-white {
  color: #fff;
  font-size: clamp(16px, 2.5vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.par-cumpli-white {
  color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.mt-6rem {
  margin-top: 6rem;
}
.mb-6rem {
  margin-bottom: 6rem;
}

/*Media Queries*/
@media (min-width: 0px) and (max-width: 767px) {
  #hero-cumplimiento {
    height: 75vh;
    width: 95%;
  }

  .hero-content {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .mt-6rem {
    margin-top: 2rem;
  }
  .pb-6rem {
    padding-bottom: 2rem !important;
  }
  .mobile {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  .mb-6rem {
    margin-bottom: 4rem;
  }
}
