.pq-msg{
  max-width: 720px;
  margin: 24px auto;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.pq-public-wrap{
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

.pq-hero{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 82vh;
  background: #0b1220;
  background-size: cover;
  background-position: center;
  border: 1px solid #e5e7eb;
}

.pq-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55),
    rgba(0,0,0,.35),
    rgba(0,0,0,.70)
  );
}

.pq-hero-content{
  position: relative;
  padding: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pq-pill{
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 12px;
}

.pq-title{
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.pq-facts{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pq-fact{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.10); /* MÁS CLARO */
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  font-size: 14px;
}

.pq-actions{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.pq-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(17,24,39,.18);
  color: #fff;
}

.pq-btn-primary{
  background: rgba(59,130,246,.75);
  border-color: rgba(59,130,246,.95);
}

.pq-btn-secondary{
  background: rgba(16,185,129,.65);
  border-color: rgba(16,185,129,.9);
}

.pq-btn-ghost{
  background: rgba(255,255,255,.12);
}

.pq-note{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.pq-footer{
  margin-top: auto;
  padding-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.85);
}

@media (max-width: 520px){
  .pq-facts{ grid-template-columns: 1fr; }
  .pq-title{ font-size: 40px; }
  .pq-hero{ min-height: 86vh; }
}
