/* BOTÃO FLUTUANTE */
.whatsapp-button {
	position: fixed;
	right: 25px;
	bottom: 5.2rem; /* 75px */
	width: 60px;
	height: 60px;
	background-color: #25D366;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 32px;
	cursor: pointer;
	z-index: 9999;
	box-shadow: 0 4px 12px rgba(0,0,0,0.25);
	transition: transform .2s ease;
}
.whatsapp-button:hover {
	transform: scale(1.1);
}

/* POPUP */
.whatsapp-popup {
	position: fixed;
	right: 25px;
	bottom: 95px;
	width: 300px;
	background: white;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	z-index: 9999;
	font-family: sans-serif;
	display: none;
	overflow: hidden;
}

/* HEADER */
.whatsapp-popup-header {
	background: #25D366;
	color: white;
	padding: 14px;
	display: flex;
	align-items: center;
	position: relative;
}

/* FOTO */
.whatsapp-popup-header img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	margin-right: 10px;
}

/* BOTÃO FECHAR */
.whatsapp-popup-close {
	position: absolute;
	right: 12px;
	top: 12px;
	font-size: 18px;
	cursor: pointer;
	padding: 4px 11px;
	border-radius: 50%;
	transition: background .2s;
}
.whatsapp-popup-close:hover {
	background: rgba(255,255,255,0.3);
}

/* TÍTULO E TEXTO */
.popup-title {
	font-weight: bold;
	font-size: 16px;
}
.popup-message {
	padding: 15px;
	color: #333;
	font-size: 14px;
}

/* COPIED */
@keyframes joinchat_show {
	0% {
		transform: scale3d(0,0,0)
	}
	to {
		transform: scaleX(1)
	}
}
.popup-message {
	position: relative;
	min-width: 60px;
	max-width: calc(100% - 52px);
	min-height: 56px;
	padding: 18px 20px 15px 20px;
	margin: 26px auto;
	border-radius: 26px;
	background: #fff;
	color: #4a4a4a;
	word-break: break-word;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .3));
	transform-origin: 0 50%;
	animation: joinchat_show .25s 
	cubic-bezier(0, 0, .58, 1.19) 10ms both;
}
.popup-message:before {
	content: "";
	display: block;
	position: absolute;
	bottom: 18px;
	left: -15px;
	width: 17px;
	height: 25px;
	background: inherit;
	clip-path: path("M17 25V0C17 12.877 6.082 14.9 1.031 15.91c-1.559.31-1.179 2.272.004 2.272C9.609 18.182 17 18.088 17 25z");
}
/* COPIED */

/* BOTÃO ABRIR CHAT */
.popup-open-chat-btn {
	/* display: block;
	width: 100%; */
	padding: 14px;
	background: #25D366;
	color: white;
	text-align: center;
	font-weight: bold;
	/* text-decoration: none; */
	transition: background .2s;
}
.popup-open-chat-btn:hover {
	background: #1ebe5c;
}