  .enfoqueTitles{
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 800;
        font-style: normal;
        font-size:49px;
        line-height:53px;
        color:white;
        position: relative;
      }
      
      .enfoqueTitles span{
        color:#FCC400;
      }
      
      .enfoqueSubtitles{
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size:17px;
        line-height:26px;
        color:white;
      }
      
      .enfoqueTexto{
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size:17px;
        line-height:26px;
        color:white;
        text-align:justify;
      }
      
      .enfoque{
        display:flex;
        width:100%;
        flex-direction:column;
        /*background-color:lightgrey;*/
        position:relative;
        padding-top:140px;
      }
      
      .enfoquePleca{
        display:flex;
        width:100%;
        top:-282px;
        height:425px;
        /*border:6px solid orange;*/
        background-image:url("./imgs/enfoque/enfoquePleca.svg");
        background-position:center;
        background-size:cover;
        background-repeat:repeat;
        position:absolute;
      }
      
      .enfoqueTrailer{
        display:flex;
        /*background-color:purple;*/
        width:391px;
        height:366px;
        background-image:url("./imgs/enfoque/enfoqueTrailer.png");
        background-position:center;
        background-size:cover;
        background-repeat:repeat;
        position:absolute;
        bottom:0;
        right:130px;
      }
      
      .enfoqueContenido{
        display:flex;
        width:100%;
        padding: 0 281px 86px 271px;
        gap:54px;
        background-color:black;
        flex-direction:column;
      }
      
      .enfoqueTextos{
        display:flex;
        flex-direction:column;
        gap:18px;
      }
      
      .espacio{
        height:1300px;
      }

      @media(max-width:1100px){
          .enfoque{
            /*border: 4px solid white;*/
          }

          .enfoqueContenido{
            /*border: 4px solid yellow;*/
            padding: 0 40px;
          }

          .enfoqueTrailer{
            right: 50px;
          }
      }

      @media(max-width:600px){
          .enfoqueTrailer{
            right:10%;
            width:calc(392px / 1.33);
            height:calc(366px / 1.33);
          }

          .enfoqueContenido{
            padding-top: 50px;
            gap:30px;
          }

          .enfoqueTitles{
            font-size: 40px;
            line-height: 42px;
          }

          .enfoqueTextos{
            font-size: 15px;
            line-height: 21px;
          }

          .enfoqueSubtitles{
            font-size: 15px;
            line-height: 21px;
          }

      }