/* Popup Canal de WhatsApp - FULL IMAGE + BUTTON ONLY */
#df-pcw.pcw{
  position: fixed;
  bottom: 16px;
  z-index: 999999;
  width: 340px;
  max-width: calc(100vw - 24px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.30);
  display: none;
  background: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Positions */
#df-pcw.pcw-pos-right{ right: 16px; }
#df-pcw.pcw-pos-left{ left: 16px; }

/* Show */
#df-pcw[aria-hidden="false"]{ display:block; }

/* Close */
#df-pcw .pcw-close{
  position:absolute;
  top: 8px;
  left: 8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  cursor: pointer;
  display:grid;
  place-items:center;
}

/* CTA button overlay */
#df-pcw .pcw-cta{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display:block;
  text-align:center;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: var(--df-pcw-btn-bg, #b99254);
  color: var(--df-pcw-btn-text, #ffffff);
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

/* Make popup feel like an image card */
#df-pcw.pcw::before{
  content:"";
  display:block;
  padding-top: 66%; /* aspect ratio ~ 3:2 */
}

/* Mobile: wider and centered, keep ratio */
@media (max-width: 480px){
  #df-pcw.pcw{
    left: 12px !important;
    right: 12px !important;
    width: auto;
    bottom: 12px;
  }
  #df-pcw.pcw::before{ padding-top: 72%; }
}
