/* Patch seguro para v12.3.2: hero-points más pequeños y finos */
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .38rem;
  list-style: none;
  padding: 0;
  margin: .85rem 0 0;
  max-width: 100%;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  padding: .24rem .5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.035);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: #5f4b56;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-points li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-strong) 100%);
}

@media (max-width: 640px) {
  .hero-points {
    gap: .34rem;
  }

  .hero-points li {
    font-size: 10.5px;
    padding: .22rem .46rem;
  }
}
