body::before {
  background: rgba(25, 33, 54, 0.05);
}
.enf-hero {
  position: relative;
  background: transparent;
  padding: 40px 120px 70px;
  text-align: center;
}

.enf-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, #0d1b2e 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.enf-hero__content {
  position: relative;
  z-index: 1;
}

.enf-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 768px) {
  .enf-hero {
    padding: 80px 20px 60px;
  }
  .enf-hero__gradient {
    height: 90px;
  }
  .enf-hero__title {
    font-size: 2.2rem;
    letter-spacing: 0.06em;
  }
}

.enf-intro {
  background: #E3E4F1;
  padding: 120px 220px;
}

.enf-intro__texto {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(26, 26, 46, 0.55);
  line-height: 1.9;
  text-align: justify;
}

@media (max-width: 1024px) {
  .enf-intro { padding: 60px 80px; }
}

@media (max-width: 768px) {
  .enf-intro { padding: 50px 24px; }
  .enf-intro__texto { font-size: 16px; }
}
.enf-sec {
  padding: 100px 160px;
}

.enf-sec--azul     { background: #192136; }
.enf-sec--blanco   { background: #E3E4F1; }
.enf-sec--amarillo { background: #D1A146; }

.enf-sec__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
} 

.enf-sec__content--reverse {
  direction: rtl;
}

.enf-sec__content--reverse > * {
  direction: ltr;
}

.enf-sec__img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 16px;
}

.enf-sec__titulo {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.enf-sec__texto {
  width: 100%;
}

.enf-sec--azul .enf-sec__titulo     { color: #fff; }
.enf-sec--blanco .enf-sec__titulo   { color: #192136; }
.enf-sec--amarillo .enf-sec__titulo { color: #fff; }

.enf-sec__parrafo {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.9;
  text-align: justify;
}
.enf-sec--azul .enf-sec__parrafo     { color: rgba(255,255,255,0.70); }
.enf-sec--blanco .enf-sec__parrafo   { color: rgba(25,33,54,0.60); }
.enf-sec--amarillo .enf-sec__parrafo { color: rgba(255,255,255,0.85); }

@media (max-width: 1024px) {
  .enf-sec { padding: 80px 60px; }
}

@media (max-width: 768px) {
  .enf-sec { padding: 60px 24px; }
  .enf-sec__content,
  .enf-sec__content--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
  .enf-sec__img { height: 260px; }
}
@media (max-width: 768px) {
  .enf-hero {
    background-attachment: scroll;
  }
}