.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left: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: #25d366;
  background-color:#fff;
}

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



/* Botón flotante del formulario */
.float-form {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #0056b3;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.float-form:hover {
  text-decoration: none;
  color: #0056b3;
  background-color: #fff;
}

/* Estilo para el modal */
#contactModal {
  display: none;
  position: fixed;
  bottom: 110px;
  right: 40px;
  width: 320px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  padding: 20px;
  border-radius: 8px;
  z-index: 101;
}

#contactModal input,
#contactModal textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#contactModal button {
  width: 100%;
  background: #0056b3;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}
