.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #FFF;
  background-color:#1ab152;  
  animation: shake 1s;
  animation-iteration-count: infinite;
  transform: translateY(-4px);
}

.my-float{
	margin-top:16px;
}

@keyframes pulse-animation {
  0% {
   box-shadow 0 0 0 0px #25d36657; rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

@keyframes shake {
   0% { transform translateX(0) }
 25% { transform translateX(5px) }
 50% { transform translateX(-5px) }
 75% { transform translateX(5px) }
 100% { transform translateX(0) }
}

/**** Código css para el botón flotante de email */

/* Estilos del botón flotante */
.boton-flotante-email {
    position: fixed; /* Fijo en la ventana */
    width:60px;/* A 60px del borde derecho */
		height:60px;/* A 60px del borde derecho */
		bottom:120px;/* A 60px del borde derecho */
		right:40px;/* A 60px del borde derecho */
    z-index: 1000;   /* Para que esté encima de otros elementos */
    background-color: #007bff; /* Color azul */
    color: white;
    border-radius: 50%; /* Para hacerlo circular */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Transición suave */
}

.boton-flotante-email i {
    font-size: 24px; /* Tamaño del ícono */
}

/* Efecto al pasar el ratón */
.boton-flotante-email:hover {
    /*background-color: #0056b3; /* Azul más oscuro */
    /*transform: scale(1.1); /* Aumenta ligeramente de tamaño */
    transform: translateY(-4px);
}

/* Responsividad (opcional) */
@media (max-width: 768px) {
    .boton-flotante-email {
        width: 60px;
        height: 60px;
        bottom: 120px;
        right: 40px;
    }
    .boton-flotante-email i {
        font-size: 20px;
    }
}