.sparkle {
  position: fixed;
  top: -20px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #fffacd, #ffd700, transparent);
  border-radius: 50%;
  animation: sparkle-fall linear infinite;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.8;
}

@keyframes sparkle-fall {
  to {
    transform: translateY(100vh) rotateZ(360deg);
    opacity: 0;
  }
}


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');

.crea-price-reserve-btn {
  text-align: center;
  margin: 30px auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.5s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.crea-price-reserve-btn a {
  display: inline-block;
  background: linear-gradient(to right, #fff5cc, #ffd700);
  color: #7a4e00;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crea-price-reserve-btn a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
