/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/




.whatsapp-float {
	position: fixed;
	width: 50px;
	height: 50px;
	bottom: 90px;
	right: 30px;
	background-color: #25d366; /* Color verde de WhatsApp */
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
  }
  
  .whatsapp-float:hover {
	background-color: #128c7e; /* Color más oscuro al pasar el ratón */
  }
  
  .whatsapp-icon {
	margin: 0;
	max-width: 100%;
	height: auto;
  }