/* Botão flutuante de contato (WhatsApp + telefone) */
.floating-contact {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 1050;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.floating-contact a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	color: #fff;
	font-size: 1.6rem;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease;
}

.floating-contact a:hover {
	transform: scale(1.08);
	color: #fff;
}

.floating-contact .floating-whatsapp {
	background-color: #25d366;
}

.floating-contact .floating-phone {
	background-color: var(--primary, #2e895b);
}

@media (max-width: 575.98px) {
	.floating-contact {
		right: 16px;
		bottom: 16px;
	}

	.floating-contact a {
		width: 48px;
		height: 48px;
		font-size: 1.35rem;
	}
}
