.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.popup-container {
  background-color: #fff;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
  text-align: center;
  position: relative;
  animation: popup-appear 0.5s ease-out;
  background-image: linear-gradient(to bottom right, #fee5f0, #ffffff);
  border: 2px solid #ff69b4;
}

.popup-title {
  color: #ff1493;
  font-size: 24px;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.popup-message {
  color: #333;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.close-button {
  background-color: #ff69b4;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.close-button:hover {
  background-color: #ff1493;
  transform: scale(1.05);
}

/* Corações caindo */
.heart {
  position: fixed;
  top: -100px;
  font-size: 24px;
  color: #ff1493;
  opacity: 0.8;
  z-index: 9990;
  animation: heartfall linear infinite;
  text-shadow: 0 0 5px #fff;
}

@keyframes heartfall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes popup-appear {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 500px) {
  .popup-container {
    width: 85%;
    padding: 15px;
  }
  
  .popup-title {
    font-size: 20px;
  }
  
  .popup-message {
    font-size: 16px;
  }
}