
.pp-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999999;
}

.pp-box{
  width:92%;
  max-width:720px; /* 🔥 MÁS GRANDE EN DESKTOP */
  background:#fff;
  border-radius:18px;
  padding:34px;
  text-align:center;
  position:relative;
  box-shadow:0 25px 70px rgba(0,0,0,.4);
}

.pp-close{
  position:absolute;
  top:10px;
  right:14px;
  font-size:28px;
  border:none;
  background:none;
  cursor:pointer;
}

.pp-title{
  font-size:32px;
  margin:5px 0;
}

.pp-subtitle{
  font-size:20px;
  color:#666;
  margin-bottom:10px;
}

.pp-text{
  font-size:17px;
  line-height:1.6;
  margin-bottom:15px;
}

.pp-img{
  width:100%;
  max-height:320px; /* 🔥 MÁS GRANDE */
  object-fit:cover;
  border-radius:14px;
  margin:12px 0;
}

.pp-actions{
  display:flex;
  gap:14px;
  margin-top:18px;
}

.pp-btn{
  flex:1;
  padding:14px;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-size:16px;
}

.pp-secondary{
  background:#eee;
  color:#333;
}

@media(max-width:768px){
  .pp-box{
    padding:22px;
    max-width:95%;
  }

  .pp-title{ font-size:24px; }
  .pp-subtitle{ font-size:16px; }
  .pp-text{ font-size:15px; }

  .pp-actions{
    flex-direction:column;
  }
}
