*,
*::before,
*::after { 
  box-sizing: border-box;
}


.cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .cards__item {
    display: flex;
    width: 100%;
    max-width: 500px;
  }
  
  @media (min-width: 40rem) {
    .cards__item {
      width: calc(50% - 1.5rem);
    }
  }
  
  .card {
    background-color: white;
    border: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-size: 0.95rem;
  }
  

  
  .card__content {
    display: flex;
    align-items: center;

    text-align: left;
    gap: 1rem;
    background-color: white;
    color: #001689;
  }
  
  .valores-header.left {
    flex-shrink: 0;
  }
  
  .valores-icon, .lema-calidad-icon {
    width: auto;
    height: 120px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
  }
  
  .valores-texto {
    display: flex;
    flex-direction: column;
    justify-content: left;
  }
  
  .card__title {
    color: #f68b1f;
    font-size: 1.15rem;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.3em;
  }
  
  .card__text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: black;
    font-family: 'Segoe UI', sans-serif;
  }

  @media (max-width: 600px) {
    .card__content {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .valores-icon {
      margin-bottom: 0.5rem;
    }
    .valores-texto {
      align-items: flex-start;
    }
  }

