#camaradeinfo-chat-widget {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999999;
	font-family: inherit;
}

#camaradeinfo-chat-toggle {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #4933D1;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(73, 51, 209, 0.4);
	transition: transform 0.2s ease;
}
#camaradeinfo-chat-toggle:hover {
	transform: scale(1.06);
}

#camaradeinfo-chat-window {
	position: absolute;
	bottom: 72px;
	right: 0;
	width: 340px;
	max-width: calc(100vw - 32px);
	height: 460px;
	max-height: calc(100vh - 120px);
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
#camaradeinfo-chat-window.wd-hidden {
	display: none;
}

#camaradeinfo-chat-header {
	background: #4933D1;
	color: #fff;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	font-size: 15px;
}
#camaradeinfo-chat-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

#camaradeinfo-chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #F7F7F9;
}

.cci-msg {
	max-width: 85%;
	padding: 9px 13px;
	border-radius: 12px;
	font-size: 13.5px;
	line-height: 1.45;
	white-space: pre-wrap;
}
.cci-msg.user {
	align-self: flex-end;
	background: #4933D1;
	color: #fff;
	border-bottom-right-radius: 3px;
}
.cci-msg.bot {
	align-self: flex-start;
	background: #EFEFF4;
	color: #222;
	border-bottom-left-radius: 3px;
}
.cci-msg.typing {
	opacity: 0.6;
	font-style: italic;
}

#camaradeinfo-chat-form {
	display: flex;
	border-top: 1px solid #eee;
	padding: 8px;
	gap: 6px;
}
#camaradeinfo-chat-input {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 9px 14px;
	font-size: 13.5px;
	outline: none;
}
#camaradeinfo-chat-input:focus {
	border-color: #4933D1;
}
#camaradeinfo-chat-form button[type="submit"] {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: #4933D1;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

#camaradeinfo-whatsapp-button {
	position: fixed;
	bottom: 94px;
	right: 24px;
	z-index: 999998;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
	transition: transform 0.2s ease;
}
#camaradeinfo-whatsapp-button:hover {
	transform: scale(1.06);
}
