/* === WhatsApp FAB === */
.wpp-fab{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25), 0 2px 6px rgba(0,0,0,.15);
  cursor: pointer;
  z-index: 1000;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wpp-fab:hover{ transform: translateY(-2px) scale(1.03); }
.wpp-ico{ width: 32px; height: 32px; fill:#fff; }

/* Pulse sutil */
.wpp-fab::after{
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: wpp-pulse 2.2s infinite;
}
@keyframes wpp-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5) }
  70%{ box-shadow: 0 0 0 16px rgba(37,211,102,0) }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0) }
}

/* === Panel === */
.wpp-menu{
  position: fixed;
  right: 20px;
  bottom: 96px; /* separadito del FAB */
  width: min(92vw, 360px);
  background:#fff;
  border-radius: 16px;
  padding: 14px 14px 10px;
  box-shadow: 0 24px 48px rgba(0,0,0,.22), 0 8px 16px rgba(0,0,0,.18);
  z-index: 1000;
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.wpp-menu.is-open{
  opacity:1;
  transform: translateY(0);
  pointer-events: auto;
}
.wpp-head{
  font-weight: 700;
  font-size: 15px;
  margin: 2px 6px 8px;
}
.wpp-list{
  list-style:none;
  margin:0; padding:0;
  display: grid; gap: 8px;
}
.wpp-list li a{
  display:flex; flex-direction: column;
  gap: 2px;
  padding:12px;
  border-radius:12px;
  text-decoration:none;
  background:#f7f9fc;
  transition: background .2s ease, transform .2s ease;
  border:1px solid #eef2f7;
}
.wpp-list li a strong{ color:#0f172a; font-weight:600; }
.wpp-list li a span{ color:#2563eb; font-weight:600; } /* azul del sitio */
.wpp-list li a:hover{ background:#eef5ff; transform: translateY(-1px); }

/* Botón cerrar */
.wpp-close{
  position:absolute; top:8px; right:8px;
  width:28px; height:28px; border-radius:50%;
  background:#f1f5f9; border:0; cursor:pointer;
  font-size:18px; line-height:28px;
}
.wpp-close:hover{ background:#e2e8f0; }

/* Backdrop opcional (si querés oscurecer el fondo, descomenta)
body.wpp-open::before{
  content:""; position:fixed; inset:0; background:rgba(0,0,0,.2);
  z-index: 999; backdrop-filter: blur(2px);
}
*/
