/* Vista glass effect */
.glass {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

/* Hero image */
.hero img {
  width: 100%;
  border-radius: 10px;
  margin-top: 1rem;
}

/* Popup styles */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  z-index: 9999;
  display: none;
  flex-direction: column;
  text-align: center;
}
.popup button {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
