/* Estilos del popup */
.popup {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Fondo oscuro */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px; /* Ajusta el tamaño máximo */
  text-align: center;
}

.popup p {
  font-size: 16px;
  color: #333;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

/* Responsividad */
@media (max-width: 600px) {
  .popup-content {
    width: 80%;
  }

  .popup p {
    font-size: 14px; /* Tamaño de fuente más pequeño para móviles */
  }
}
