/* V-Prime WhatsApp — botão flutuante + shortcode */

.vpw-wrap {
  position: fixed;
  z-index: 99998;
  bottom: var(--vpw-y, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vpw-wrap.vpw-right {
  right: var(--vpw-x, 20px);
  flex-direction: row-reverse;
}
.vpw-wrap.vpw-left {
  left: var(--vpw-x, 20px);
}

.vpw-fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vpw-bg, #25d366);
  color: var(--vpw-ic, #fff);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
  text-decoration: none;
}
.vpw-fab-btn:hover {
  transform: scale(1.06);
}
.vpw-fab-btn .vpw-icon {
  width: 30px;
  height: 30px;
}

.vpw-bubble {
  position: relative;
  max-width: 240px;
  background: #fff;
  color: #111;
  padding: 10px 30px 10px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  line-height: 1.35;
  animation: vpw-pop 0.2s ease;
}
.vpw-bubble.vpw-hidden {
  display: none;
}
.vpw-bubble-x {
  position: absolute;
  top: 3px;
  right: 6px;
  border: 0;
  background: transparent;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  color: #888;
  padding: 2px 4px;
}

@keyframes vpw-pop {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vpw-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--vpw-bg, #25d366);
  color: var(--vpw-ic, #fff);
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
}
.vpw-inline-btn:hover {
  filter: brightness(0.95);
}
.vpw-inline-btn .vpw-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .vpw-hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .vpw-hide-desktop { display: none !important; }
}
