
   /* Botões flutuantes WhatsApp */

   .floating-whatsapp-buttonxxx {
	z-index: 999999999;
	position: fixed;
	bottom: 14px;
	left: 14px;
	padding: 11px 11px 11px 11px;
	background-color: #25D366; /* verde WhatsApp */
	border-radius: 55px;
	color: #ffffff; /* Texto branco */
	font-size: 30px;
	text-decoration: none;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.5s ease;
	font-weight: 400;
   }
  
  .floating-whatsapp-button.visiblexxx {
	opacity: 1;
  }
  
  .floating-whatsapp-buttonxxx i {
	margin-right: 6px;
	font-size: 16px;
  }
  
  /* Ajuste de cor para o texto dos links */
  .floating-whatsapp-buttonxxx,
  .floating-whatsapp-button:hoverxxx {
	color: #ffffff; /* Cor do texto sempre branca */
	text-decoration: none; /* Mantém sem sublinhado */
  }
  
  
  .whatsapp-button {
	z-index: 999999999;
	position: fixed;
	left: 14px;
	bottom: 14px;
	width: 47px;
	height: 47px;
	background-color: #25D366;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 23px;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s, box-shadow 0.3s;
  }
  
  .whatsapp-button:hover {
	background-color: #167838;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	color: white;
	font-size: 23px;
  }
  

    /* Tooltip */
.whatsapp-button:hover::after {
    content: "    Atendimento via WhatsApp    ";
    position: absolute;
    bottom: 55px; /* Ajuste a posição conforme necessário */
    left: 25px; /* Centraliza o tooltip */
    background-color: #442e16e1;
    color: #ffffff;
    padding: 10px 10px 10px 10px;
    border-radius: 22px 22px 22px 0px ;
    white-space: nowrap;
    font-size: 17px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	font-weight: 200;
}
