.poi-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: transform .3s ease,box-shadow .3s ease;
  -webkit-box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
  box-shadow: 0 0 40px rgba(82, 85, 90, 0.1);
}

.poi-card:hover {
  transform: translateY(-8px);
}

.poi-card img {
  transition: transform 0.5s ease;
}

.poi-card:hover img {
  transform: scale(1.1);
}

.poi-card .card-body {
  position: relative;
  z-index: 2;
}

.poi-list-grid {
  padding:4rem 0;
  background: #fff;
}


.stars {
  font-size: 24px;
  color: #f76c5e; /* dorado */
}

.star.full {
  color: #f76c5e; /* llena */
}

.star.half {
  color: #f76c5e; /* media (truco: puedes cambiar por un ícono SVG si quieres exactitud) */
  opacity: 0.6;
}

.star.empty {
  color: #ccc; /* vacía */
}
