﻿/* ---------- Botón flotante de WhatsApp (izquierda) ---------- */
.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px; /* ← izquierda en lugar de derecha */
	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;
}

/* ---------- Botones adicionales (junto a WhatsApp) ---------- */
.Btc,
.Btni {
	width: 105px;
	height: 32px;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-shadow: 2px 2px 3px #000;
	border: 10px;
	border-radius: 20px;
	cursor: pointer;
	background: #25d366;
	background-image: linear-gradient(to top left, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 30%, rgba(0, 0, 0, 0));
	box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6), inset -2px -2px 3px rgba(0, 0, 0, .6);
	position: fixed;
	bottom: 40px;
	right: 110px; /* ← junto a WhatsApp */
	z-index: 100;
}

	.Btc:hover {
		color: #dcf8c6;
	}

.Btni {
	background: #9dbfe6;
}

	.Btni:hover {
		color: #9dbfe6;
	}