/* ========== Valor Humano ========== */
.vl-humano {
    background-color: var(--color-grey);
    padding-bottom: 5rem;
    padding-top: 8rem;
  }
  
  .vl-humano-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .vl-humano-logo img {
    height: 40px;
    width: auto;
  }
  
  .vl-humano-cap {
    background-color: white;
    max-width: 1080px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .vl-humano-cap-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .vl-humano-cap-cuerpo {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .vl-humano-cap-img {
    flex: 1 1 30%;
  }
  
  .vl-humano-cap-img img {
    width: 100%;
    border-radius: 20px;
  }
  
  .vl-humano-cap-texto {
    flex: 1 1 65%;
    background-color: var(--color-grey);
    padding: 20px;
    border-radius: 20px;
  }
  
  .vl-humano-cap-texto h3 {
    color: var(--color-orange);
    font-style: italic;
    padding: 0 0 5px 0;
  }
  
  .vl-humano-subtitulo {
    color: var(--color-grey-dark);
    padding-bottom: 0;
  }
  
  .vl-humano-linea {
    height: 1px;
    width: 100%;
    margin: 10px 0;
    border: none;
  }
  
  .vl-humano-linea-red {
    background-color: var(--color-orange);
  }
  
  .vl-humano-cap-download {
    display: flex;
    justify-content: end;
  }
  
  /* ========== Media Queries ========== */
  @media (max-width: 1080px) {
    .vl-humano-cap {
      margin: 1.5rem;
    }
  }
  
  @media (max-width: 450px) {
    .vl-humano {
      padding-bottom: 3rem;
      padding-top: 7rem;
    }
  
    .vl-humano-logo img {
      height: 20px;
    }
  
    .vl-humano-cap {
      padding: 1rem 0.63rem;
      gap: 1rem;
      margin: 16px;
    }
  
    .vl-humano-cap-texto {
      padding: 10px 10px 20px 10px;
      border-radius: 10px;
    }
  
    .vl-humano-cap-img img {
      border-radius: 10px;
    }
  
    .vl-humano-cap-cuerpo {
      flex-direction: column;
    }
  
    .vl-humano-cap-img,
    .vl-humano-cap-texto {
      flex: 1 1 100%;
    }
  
    .vl-humano-cap-download {
      justify-content: flex-start;
      margin-top: 1rem;
    }
  }
  