.propuesta-valor {
  width: 100%;
  min-height: calc(100vh);
  margin: 0;
  padding: 3rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 1.5rem;
  background: #072143; 
  color: #ffffff;
}

.propuesta-valor h2 {
  text-align: center;
  font-size: 48px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  line-height: 1.2;
  max-width: 900px;
}

.propuesta-valor__resaltado {
  color: #F39C12;
  font-weight: 700;
}

.propuesta-valor__descripcion {
  text-align: center;
  font-size: 25px;
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
  max-width: 1000px;
  font-weight: 550;
  font-family: 'Montserrat', sans-serif;
}

.propuesta-valor__expectativas {
  background: #EFEDED;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  max-width: 650px;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.propuesta-valor__expectativas h3 {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  color: #181276;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
}

.expectativa {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 20px;
  font-size: 20px;
  font-weight: 500;
  width: 90%;
  color: #2C3E50;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.expectativa:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.expectativa img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  flex-shrink: 0;
}

.propuesta-valor__final {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  margin: 0.8rem 0 0 0;
  color: #ffffff;
  line-height: 1.5;
  max-width: 1000px;
  font-weight: 550;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
  .propuesta-valor {
    padding: 2rem 1rem;
    justify-content: flex-start;
  }

  .propuesta-valor h2 {
    font-size: 32px;
    max-width: 90%;
  }

  .propuesta-valor__descripcion,
  .propuesta-valor__final {
    font-size: 18px;
    max-width: 90%;
  }

  .propuesta-valor__expectativas {
    width: 90%;
    padding: 1.2rem;
  }

  .propuesta-valor__expectativas h3 {
    font-size: 22px;
  }

  .expectativa {
    font-size: 16px;
    padding: 1rem;
    gap: 1rem;
  }

  .expectativa img {
    width: 45px;
    height: 45px;
  }
}


@media (max-width: 480px) {
  .propuesta-valor {
    gap: 1rem; 
  }

  .propuesta-valor h2 {
    font-size: 24px;
  }

  .propuesta-valor__descripcion,
  .propuesta-valor__final {
    font-size: 16px;
  }

  .propuesta-valor__expectativas h3 {
    font-size: 20px;
  }

  .expectativa {
    gap: 0.8rem;
  }
}