    
  * {
      font-family: 'Roboto Condensed', sans-serif;
  }
  /* Overlay oscuro de fondo */
  .popup-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 9998;
      animation: fadeIn 0.3s ease-in;
  }

  .popup-overlay.active {
      display: block;
  }

  /* Contenedor del popup */
  .popup-container {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      z-index: 9999;
      max-width: 550px;
      width: 90%;
      padding: 30px;
      animation: slideDown 0.4s ease-out;
  }

  /* Botón de cerrar */
  .popup-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      font-size: 28px;
      color: #666;
      cursor: pointer;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      line-height: 1;
      padding: 0;
  }

  .popup-close:hover {
      color: #333;
      transform: rotate(90deg);
  }

  /* Icono de información */
  .popup-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #00AC66 0%, #009955 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 32px;
      color: white;
  }

  /* Título */
  .popup-title {
      color: #00AC66;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 18px;
      text-align: center;
      line-height: 1.3;
  }

  /* Contenido del mensaje */
  .popup-content {
      color: #555;
      font-size: 16px;
      line-height: 1.6;
      text-align: center;
      margin-bottom: 0;
  }

  .popup-content strong {
      color: #00AC66;
      font-weight: 600;
  }

  /* Animaciones */
  @keyframes fadeIn {
      from {
          opacity: 0;
      }
      to {
          opacity: 1;
      }
  }

  @keyframes slideDown {
      from {
          transform: translate(-50%, -60%);
          opacity: 0;
      }
      to {
          transform: translate(-50%, -50%);
          opacity: 1;
      }
  }

  @keyframes fadeOut {
      from {
          opacity: 1;
      }
      to {
          opacity: 0;
      }
  }

  /* Responsive */
  @media (max-width: 600px) {
      .popup-container {
          padding: 25px 20px;
          max-width: 95%;
      }

      .popup-title {
          font-size: 19px;
      }

      .popup-content {
          font-size: 15px;
      }

      .popup-icon {
          width: 50px;
          height: 50px;
          font-size: 26px;
      }
  }
