/* Widget selector de WhatsApp (Setcom Toolkit) */
.scom-wa { position: fixed; right: 22px; bottom: 22px; z-index: 999998;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

.scom-wa-fab {
	width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer;
	background: #25D366; box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
	display: flex; align-items: center; justify-content: center;
	transition: transform .18s ease, box-shadow .18s ease;
	animation: scom-wa-pulse 2.6s infinite;
}
.scom-wa-fab:hover { transform: scale(1.07); }
@keyframes scom-wa-pulse {
	0% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.45); }
	70% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
	100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

.scom-wa-panel {
	position: absolute; right: 0; bottom: 74px; width: 330px; max-width: 86vw;
	background: #fff; border-radius: 16px; overflow: hidden;
	box-shadow: 0 18px 60px rgba(0,0,0,.28);
	transform-origin: bottom right; animation: scom-wa-in .18s ease;
}
@keyframes scom-wa-in { from { opacity: 0; transform: translateY(8px) scale(.96);} to {opacity:1;transform:none;} }

.scom-wa-head { background: #075E54; color: #fff; padding: 16px 16px 14px; display: flex; align-items: flex-start; gap: 8px; }
.scom-wa-head-txt { display: flex; flex-direction: column; gap: 3px; }
.scom-wa-head-txt strong { font-size: 16px; }
.scom-wa-head-txt span { font-size: 12.5px; opacity: .85; line-height: 1.35; }
.scom-wa-close { margin-left: auto; background: transparent; border: 0; color: #fff; font-size: 22px; cursor: pointer; line-height: 1; opacity: .85; }
.scom-wa-close:hover { opacity: 1; }

.scom-wa-list { list-style: none; margin: 0; padding: 6px; max-height: 320px; overflow-y: auto; }
.scom-wa-list li { margin: 0; }
.scom-wa-list a {
	display: flex; align-items: center; gap: 12px; padding: 11px 10px; border-radius: 12px;
	text-decoration: none; color: #0b2540; transition: background .15s ease;
}
.scom-wa-list a:hover { background: #f0f4f3; }
.scom-wa-av {
	flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%;
	background: #25D366; color: #fff; font-weight: 700; font-size: 18px;
	display: flex; align-items: center; justify-content: center;
}
.scom-wa-info { display: flex; flex-direction: column; min-width: 0; }
.scom-wa-name { font-weight: 600; font-size: 14.5px; color: #0b2540; }
.scom-wa-role { font-size: 12.5px; color: #6b7c8e; }
.scom-wa-go { margin-left: auto; color: #25D366; font-size: 22px; font-weight: 700; }
.scom-wa-foot { text-align: center; font-size: 11.5px; color: #8a98a6; padding: 8px 10px 12px; }

.scom-wa[hidden], .scom-wa-panel[hidden] { display: none !important; }

@media (max-width: 480px) {
	.scom-wa { right: 14px; bottom: 14px; }
	.scom-wa-fab { width: 54px; height: 54px; }
}
