    
      .programaAprende{
        width:100%;
        display:flex;
        justify-content:center;
        padding:66px 40px;
        /*background-color:darkblue;*/
        align-items:center;
        min-height:350px;
        position:relative;
      }
      
      .programaAprende .contenedor{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:28px;
        /*background-color:brown;*/
        z-index:2;
      }
      
      .programaAprende h2{
        font-size:43px;
        line-height:43px;
        color:white;
        max-width:60%;
        color:#F1CB65;
      }
      
      .programaAprende p{
        font-size:22px;
        line-height:28px;
        color:white;
        max-width:60%;
      }
      
      .programaAprende .background{
        width:100%;
        height:100%;
        position:absolute;
        top:0;
        left:0;
        background-color:black;
        z-index:0;
      }
      
      
      .programaAprende img{
        width:100%;
        height:100%;
        object-position:center;
        object-fit:cover;
      }


      @media(max-width:900px){

        .programaAprende{
          padding:56px 30px;
          min-height:300px;
          justify-content: flex-start;
        }

        .programaAprende .contenedor{
          gap:20px;
          max-width: 60%;
        }

        .programaAprende h2{
          max-width:100%;
          font-size:32px;
          line-height:34px;
        }

        .programaAprende p{
          max-width:100%;
          font-size:16px;
          line-height:22px;
        }

      }


      @media (max-width:700px){

        .programaAprende{
          padding:46px 28px;
          min-height:300px;
        }

        .programaAprende .background{
          opacity: 0.7;
        }

        .programaAprende .background img{
          object-position: -300px top;
        }

        .programaAprende .contenedor{
          gap:18px;
          width: 100%;
          max-width: 100%;
          min-width: 0;
        }

        .programaAprende h2{
          font-size:30px;
          line-height:32.25px;
        }

        .programaAprende p{
          font-size:16px;
          line-height:20px;
        }

      }
      
