.popup {
  background-image: url('../img/back-1.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  max-width: 950px;
  width: 100%;
  height: 800px;
  background: rgba(0, 0, 0, .8);
  box-shadow: 0 15px 25px #FFAF16;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.popup-content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

button, a {
  background-color: #FFAF16;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
}

button, a:hover {
  background-color: #FFAF16;
}

@media (max-width: 767px) {
  .popup-content {
    max-width: none;
    width: 100%;
  }
}

.popup-content {
  /* Otros estilos aquí */
  animation: zoom-in 0.3s ease-out;
}

@keyframes zoom-in {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
