.zc-whatsapp-floating {
	position: fixed;
	left: 36px;
	right: auto;
	bottom: 36px;
	z-index: 9999;
	font-family: inherit;
}

.zc-whatsapp-floating__trigger {
	width: 72px;
	height: 72px;
	border: 0 !important;
	border-radius: 999px !important;
	background: #25d366;
	color: #ffffff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	padding: 0 !important;
}

.zc-whatsapp-floating__trigger:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.zc-whatsapp-floating__svg {
	width: 38px;
	height: 38px;
	display: block;
}

.zc-whatsapp-floating__panel {
	position: absolute;
	left: 0 !important;
	right: auto !important;
	bottom: 88px;
	width: min(360px, calc(100vw - 72px));
	background: #ffffff;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px) scale(0.96);
	transform-origin: bottom left;
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.zc-whatsapp-floating.is-open .zc-whatsapp-floating__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.zc-whatsapp-floating__header {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #075e54;
	color: #ffffff;
	padding: 18px;
}

.zc-whatsapp-floating__avatar {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.zc-whatsapp-floating__avatar .zc-whatsapp-floating__svg {
	width: 26px;
	height: 26px;
}

.zc-whatsapp-floating__header-text {
	min-width: 0;
	flex: 1;
}

.zc-whatsapp-floating__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.zc-whatsapp-floating__subtitle {
	font-size: 12px;
	line-height: 1.35;
	opacity: 0.82;
	margin-top: 3px;
}

.zc-whatsapp-floating__close {
	width: 32px;
	height: 32px;
	border: 0;
	background: rgba(255, 255, 255, 0.12) !important;
	color: #ffffff !important;
	border-radius: 999px !important;
    border: 0 !important;
	cursor: pointer;
	font-size: 22px !important;
	line-height: 1 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
}

.zc-whatsapp-floating__body {
	padding: 18px;
	background:
		radial-gradient(circle at 18px 18px, rgba(0, 0, 0, 0.035) 2px, transparent 2px),
		#efeae2;
	background-size: 28px 28px;
}

.zc-whatsapp-floating__bubble {
	position: relative;
	width: fit-content;
	max-width: 88%;
	background: #ffffff;
	color: #1f2933;
	font-size: 14px;
	line-height: 1.45;
	padding: 10px 12px;
	border-radius: 0 14px 14px 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 10px;
}

.zc-whatsapp-floating__bubble:last-child {
	margin-bottom: 0;
}

.zc-whatsapp-floating__bubble::before {
	content: "";
	position: absolute;
	top: 0;
	left: -8px;
	width: 0;
	height: 0;
	border-top: 8px solid #ffffff;
	border-left: 8px solid transparent;
}

.zc-whatsapp-floating__footer {
	padding: 14px;
	background: #ffffff;
}

.zc-whatsapp-floating__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	background: #25d366;
	color: #ffffff !important;
	text-decoration: none;
	border-radius: 999px;
	padding: 13px 18px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.zc-whatsapp-floating__cta:hover {
	color: #ffffff !important;
	opacity: 0.92;
	transform: translateY(-1px);
}

.zc-whatsapp-floating__cta .zc-whatsapp-floating__svg {
	width: 22px;
	height: 22px;
}

@media (min-width: 1025px) {
	.zc-whatsapp-floating--hide-desktop {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.zc-whatsapp-floating--hide-tablet {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.zc-whatsapp-floating {
		left: 36px !important;
		right: auto !important;
		bottom: 36px;
	}

	.zc-whatsapp-floating--hide-mobile {
		display: none !important;
	}

	.zc-whatsapp-floating__trigger {
		width: 54px;
		height: 54px;
	}

	.zc-whatsapp-floating__trigger .zc-whatsapp-floating__svg {
		width: 28px;
		height: 28px;
	}

	.zc-whatsapp-floating__panel {
		position: fixed;
		left: 36px !important;
		right: 36px !important;
		bottom: 104px;
		width: auto;
		max-width: none;
		transform-origin: bottom left;
	}
}