/*
Theme Name: OceanWP Tema Hijo
Theme URI: https://industriasrecal.com.ar
Description: Tema hijo de OceanWP para personalizaciones de Industrias Recal.
Author: Industrias Recal
Template: oceanwp
Version: 1.0.0
Text Domain: oceanwp-tema-hijo
*/

/* Botón flotante de WhatsApp */
.recal-whatsapp-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #25D366;
	color: #ffffff !important;
	border-radius: 999px;
	text-decoration: none !important;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	z-index: 999999;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.recal-whatsapp-float:hover,
.recal-whatsapp-float:focus {
	transform: scale(1.08);
	opacity: 0.95;
	color: #ffffff !important;
	outline: none;
}

.recal-whatsapp-icon {
	width: 32px;
	height: 32px;
	display: block;
	fill: currentColor;
}

@media (max-width: 767px) {
	.recal-whatsapp-float {
		right: 16px;
		bottom: 16px;
		width: 56px;
		height: 56px;
	}

	.recal-whatsapp-icon {
		width: 30px;
		height: 30px;
	}
}