   .destacados h3{
        font-family: 'futura-bold', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size:36px;
        line-height:38px;
        color:#0D426F;
      }
      
      .destacadosTitle{
        font-family: 'futura-bold', sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size:20.45px;
        line-height:25.35px;
        color:#0D426F;
        max-width: 350px;
      }
      
      .destacadosTexto{
        font-family: 'futura-medium', sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size:16.55px;
        line-height:19.8px;
        max-width: 340px;
      }
      
     .destacados h4{
        font-family: 'futura-medium', sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size:22.5px;
        line-height:29px;
      }
           
      .destacados{
        display:flex;
        position:relative;
        width:100%;
        padding:100px 40px 82px 40px;
        justify-content:center;
        color:#333333;
      }
      
      .destacadosContainer{
        display:flex;
        width:100%;
        max-width:1260px;
        flex-direction:column;
        gap:68px;
      }
      
      
      .destacadosTitular{
        display:flex;
        position:relative;
        width:100%;
        flex-direction:column;
        gap:37px;
        max-width:715px;
        z-index:3;
      }
      
      .destacadosListado{
        display:flex;
        position:relative;
        z-index:3;
        gap:40px;
        width:100%;
        padding:2px;
      }

      
      .destacadosCaja{
        display:flex;
        width:100%;
        background-color:#FFFFFF;
        padding:17px 16px 42px 16px;
        flex-direction:column;
        border-radius:12px;
        box-shadow: 0 2px 19px rgba(0, 0, 0, 0.15);
        text-align:center;
        transition: all 0.5s ease;
      }
      

      .destacadosCaja:hover{
        scale:1.07;
      }

      .destacadosGrafico{
        display:flex;
        flex-direction:column;
        align-items:center;
        position:relative;
        height:224.5px;
      }
      
      
      .destacadosFoto{
        display:flex;
        height:189px;
        border-radius:12px;
        width:100%;
        background-color:black;
        flex-shrink:0;
      }
      
      .destacadosFoto img{
        width:100%;
        object-fit:cover;
        object-position:center;
        /*background-color:pink;*/
        border-radius:12px;
      }
      
      .destacadosIcon{
        display:flex;
        width:67.2px;
        height:67.2px;
        flex-shrink:0;
        /*background-color:grey;*/
        position:absolute;
        bottom:0;
        background-position:center;
        background-size:cover;
        background-repeat:no-repeat;
      }
      
      .destacadosIcon.icon1{
        background-image:url("./imgs/destacados/destacado_icon1.png");
      }
      
      .destacadosIcon.icon2{
        background-image:url("./imgs/destacados/destacado_icon2.png");
      }
      
      .destacadosIcon.icon3{
        background-image:url("./imgs/destacados/destacado_icon3.png");
      }
      
      .destacadosCajaTextitos{
        display:flex;
        width:100%;
        flex-direction:column;
        gap:25px;
        padding:15.5px 0 0 0;
        justify-content:center;
        align-items:center;
      }
      
      .destacadosLinea{
        display:flex;
        width:80%;
        height:1px;
        background-color:#D8CA7B;
      }
      
      .destacadosFigura{
        display:flex;
        position:absolute;
        width:343px;
        height:495px;
        /*background-color:grey;*/
        right:0;
        top:75px;
        z-index:1;
      }
      
      .destacadosFigura img{
        width:100%;
        object-fit:cover;
        object-position:center;
      }

      @media(max-width:1020px){

        .destacados{
          padding:90px 20px 42px 20px;
        }

        .destacadosContainer{
          align-items: center;
          gap: 45px;
        }
           .destacadosListado{
               flex-direction:column;
               max-width: 500px;
               align-items: center;
               gap: 35px;
           }

           .destacadosTitular{
            text-align: center;
            gap: 30px;
           }

           .destacadosTexto{
            max-width: 90%;
           }

           .destacadosFigura{
            top: 50%;
            transform: translateY(-50%);
           }

           .destacadosFoto img{
            object-position: top;
           }
      }

      @media(max-width:700px) {

        .destacados{
          padding: 60px 20px 10px 20px;
        }
        
        .destacados h3{
          font-size: 30px;
          line-height: 33px;
          /*background-color: black;*/
        }

        .destacados h4{
          font-size: 19px;
          line-height: 22px;
        }

        .destacadosTitular{
          gap: 20px;
        }

        .destacadosCaja{
          max-width: 400px;
          padding: 18px 18px 30px 18px;
        }

        .destacadosGrafico{
          height: 200px;
          width: 100%;
          /*border: 3px solid orange;*/
        }

        .destacadosFoto{
          height: 80%;
        }

        .destacadosCajaTextitos{
          gap:17px;
        }

        .destacadosTexto{
          font-size: 15px;
          line-height: 18px;
          max-width: none;
        }

        .destacadosTitle{
          font-size: 18px;
          line-height: 22px;
          max-width: 340px;
        }

      }