/* Pop UP */ 
.popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    border: 2px solid #ff5722;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 15px 20px;
    border-radius: 12px;
    max-width: 300px;
    z-index: 10000;
    font-family: sans-serif;
    animation: slideUp 0.5s ease-out;
  }

  .popup-content {
    text-align: center;
  }

  .popup .emoji {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
  }

  .popup-button {
    display: inline-block;
    margin-top: 10px;
    background: #0088cc;
    color: white;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }

  .popup-button:hover {
    background: #006699;
  }

  .link-text {
    display: block;
    font-size: 12px;
    margin-top: 5px;
  }

  .cerrar-btn {
    margin-top: 10px;
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
  }

  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }