/* ---------- NUESTROS VALORES ---------- */
.values{padding:90px 0;background:var(--cream);}
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.value-card{
  background:var(--white);
  border:1px solid rgba(15,58,66,.08);
  border-radius:18px;
  padding:32px 20px;
  text-align:center;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 36px -24px rgba(15,33,41,.35);
  border-color:rgba(200,164,93,.35);
}
.value-icon{
  width:52px;height:52px;border-radius:50%;
  margin:0 auto 16px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(200,164,93,.16);
  color:var(--gold);
}
.value-icon svg{width:22px;height:22px;}
.value-card h3{font-size:1.05rem;margin:0 0 4px;color:var(--teal-deep);}
.value-card p{font-size:.88rem;color:var(--ink-soft);margin:0;}
