
/*Quienes somos*/

.container-principal {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin: 50px 0;
  }
  
 
  .imagen-quienes {
    background: #62621fd5;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
  }
  
  .imagen-quienes img {
   
    width: 100%;
    height: 100%;
    max-width: 450px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transition: opacity 1s ease-in-out;
  }
  
  

  .contenido-info {
    flex: 2;
    padding: 40px 30px;
    background-color: #f4f6fc;
  }
  
  .info-texto h4 {
    color: #d5a85c;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  
  .info-texto h2 {
    font-size: 32px;
    color: #62621f;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .info-texto p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
  }
  
  .titulo-valores {
    font-size: 20px;
    color: #62621f;
    margin: 30px 0 20px 0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    
  }
  
  /* Valores como antes */
  .valores-cuadro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
    justify-items:center; 
    align-items: center;
    padding: 0 20px 20px 20px; 
}

  
  .valor {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1d;
    transition: transform 0.3s ease;
  }
  
  .valor:hover {
    transform: translateY(-4px);
  }
  
  .valor img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(67%) sepia(40%) saturate(336%) hue-rotate(355deg) brightness(93%) contrast(89%);
  }
  
  .valor span {
    color: #62621f;
  }
  
 
  @media (max-width: 950px) {
    .container-principal {
      flex-direction: column;
    }
  
    .imagen-quienes {
      padding: 30px 20px;
    }
  
    .contenido-info {
      padding: 30px 20px;
    }
  
    .valores-cuadro {
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      gap: 15px;
      padding:  10px 10px 0px;
    }
  
    .valor {
      width: 100%;
      justify-content: center;
      text-align: center;
      gap: 10px;
    }
  }
  
  