/* Tarjetas de valores - uso compartido (sitio público y admin)
   Usa variables si existen; con fallback a colores de marca */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.valor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e6ebee;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.12s ease;
}
.valor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #d9e5e0;
}
.valor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-accent, #2bbf6b);
  color: #fff;
  margin-bottom: 10px;
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.1);
}
.valor-label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brand-dark, #1f7a3b);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
