.bfb-wrapper {
	position: fixed;
	bottom: 32px;
	right: 32px;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 12px;
	z-index: 9999;
}

.bfb-icons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.bfb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	border: none;
	font-family: inherit;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.bfb-btn:hover {
	transform: scale(1.08);
}

.bfb-phone:hover {
	background: #3a3a3a;
	color: #f2ece8;
}

.bfb-whatsapp:hover svg {
	color: #3a3a3a;
}

/* Teléfono */
.bfb-phone {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #f2ece8;
	color: #3a3a3a;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.bfb-phone svg {
	width: 22px;
	height: 22px;
}

/* WhatsApp */
.bfb-whatsapp {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #25d366;
	color: #ffffff;
	box-shadow: 0 2px 12px rgba(37, 211, 102, 0.35);
}

.bfb-whatsapp svg {
	width: 26px;
	height: 26px;
}

/* Pide cita */
.bfb-cita {
	padding: 0 28px !important;
	height: 45px;
	border-radius: 100px !important;
	background-color: #3a3a3a !important;
	color: #f2ece8 !important;
	font-size: 15px !important;
	font-weight: 500;
	letter-spacing: 0.01em;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
	word-spacing: 0 !important;
	border-color: transparent !important;
}

/* Margen inferior extra al llegar al final del scroll */
.bfb-wrapper.bfb-at-bottom {
	bottom: 120px;
}

/* Móvil */
@media (max-width: 768px) {
	.bfb-wrapper {
		bottom: 20px;
		right: 16px;
		gap: 8px;
	}

	.bfb-cita {
		padding: 0 20px !important;
		height: 42px;
		font-size: 14px !important;
	}

	.bfb-phone,
	.bfb-whatsapp {
		width: 42px;
		height: 42px;
	}

	.bfb-wrapper.bfb-at-bottom {
		bottom: 100px;
	}
}
