.datos-destacados{
   background-color: var(--black);
    color: var(--white);
   padding: 48px 20px;
}
.contenedor-datos-destacados{
    max-width: var(--acotado-grande);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}
.info-datos-destacados{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px;
}
.info-datos-destacados-texto {
    display: flex;
    width: 252px;
    min-height: 260px;
    padding-left: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
}
.info-datos-destacados-texto:nth-child(2n){
    justify-content: flex-end;
}
.info-datos-destacados-texto::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--red);
    z-index: 4;
    width: 2px;
}
.info-datos-destacados-texto:nth-child(1)::before, .info-datos-destacados-texto:nth-child(3)::before {
    height: 100%;
}
.info-datos-destacados-texto:nth-child(2)::before {
    height: 180px;
}
.info-datos-destacados-texto:nth-child(4)::before {
    height: 220px;
}

.imagen-datos-destacados {
    width: 100%;
    height: auto;
}
.imagen-datos-destacados img {
    width: 100%;
}
@media only screen and (max-width: 890px) {
    .info-datos-destacados{
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .info-datos-destacados-texto {
        width: 100%;
        min-height: 114px;
    }
    .info-datos-destacados-texto:nth-child(2)::before, .info-datos-destacados-texto:nth-child(4)::before {
        height: 100%;
    }
    .imagen-datos-destacados {
        display: none;
    }
    .info-datos-destacados-texto {
        display: block;
    }
}