 body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('https://datamaint.co/demodm/pics/bg/people-working-call-center.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
  }

  #bloqueo-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 9999;
  }

  #bloqueo-popup img.logo {
      width: 50%;
      max-width: 80%;
      height: auto;
      margin-bottom: 2rem;
      animation: fadeIn 0.8s ease-in-out;
    }

    /* Tamaño de logo para móviles */
    @media (max-width: 768px) {
      #bloqueo-popup img.logo {
        width: 80%;
        margin-bottom: 1.5rem;
      }
    }

  #bloqueo-popup h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in-out;
  }

  #bloqueo-popup p {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 1.8rem;
    animation: fadeIn 1.5s ease-in-out;
  }

  #bloqueo-popup button {
    background-color: #0352a6;
    border: none;
    color: white;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: fadeIn 2s ease-in-out;
  }

  #bloqueo-popup button:hover {
    background-color: #39f;
  }

  footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    color: #f1f1f1;
    text-align: center;
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 400;
    backdrop-filter: blur(2px);
    box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.6);
    z-index: 99999;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  /* 🔁 Media Query para móviles */
  @media (max-width: 480px) {
    #bloqueo-popup {
      padding: 1.5rem;
    }

    #bloqueo-popup h2 {
      font-size: 1.5rem;
    }

    #bloqueo-popup p {
      font-size: 0.95rem;
    }

    #bloqueo-popup button {
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
    }

    footer {
      font-size: 0.85rem;
      padding: 0.6rem;
    }
  }
