/* ════════════════════════════════
   MODAL WHATSAPP + BOTÓN FLOTANTE
════════════════════════════════ */
.sv-wa-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.sv-wa-modal.is-open { display: flex; }

.sv-wa-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sv-wa-box {
  position: relative;
  z-index: 1;
  background: var(--card);
  border: 1px solid rgba(0,207,255,0.12);
  border-radius: 20px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 420px;
  margin: 20px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.75), var(--shadow-purple);
  animation: waSlideUp 0.28s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes waSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.sv-wa-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.07);
  border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}
.sv-wa-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
.sv-wa-close svg { width: 14px; height: 14px; }

.sv-wa-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(37,211,102,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(37,211,102,0.25);
}
.sv-wa-icon {
  width: 32px; height: 32px;
  fill: #25D366;
}

.sv-wa-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 8px;
}
.sv-wa-product {
  font-size: 14px;
  font-weight: 700;
  color: var(--neon-pink);
  background: rgba(255, 43, 214, 0.08);
  border: 1px solid rgba(255, 43, 214, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
  margin: 0 0 12px;
  min-height: 36px;
}
.sv-wa-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.sv-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  margin-bottom: 16px;
}
.sv-wa-btn:hover {
  background: #20c45a;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
  color: #fff;
}
.sv-wa-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

.sv-wa-note { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
.sv-wa-note a { color: var(--accent); text-decoration: none; }
.sv-wa-note a:hover { text-decoration: underline; }

/* ─── BOTÓN FLOTANTE ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s;
  border: none; cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 27px; height: 27px; fill: #fff; }
