/**
 * Botón flotante WhatsApp (footer).
 */
.container-boton {
	background-color: #25d366;
	border: 1px solid #fff;
	position: fixed;
	z-index: 999;
	border-radius: 50%;
	bottom: 30px;
	right: 25px;
	display: grid;
	width: 60px;
	height: 60px;
	place-items: center;
	transition: ease 0.3s;
	animation: oz-whatsapp-pulse 1.5s infinite;
	fill: #fff;
}

.container-boton svg {
	width: 30px;
	height: 30px;
}

.container-boton:hover {
	background: #fff;
	fill: #25d366;
	outline: 1px solid #25d366;
	transform: scale(1.1);
	transition: 0.3s;
}

@keyframes oz-whatsapp-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.85);
	}
	100% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
}
