/**
 * Botón público de WhatsApp.
 *
 * Estilos deliberadamente autocontenidos y con especificidad baja: el tema
 * Motors se va a reescribir, así que el botón no debe depender de sus clases.
 */

.mwa-boton-envoltorio {
	margin: 16px 0;
}

.mwa-boton {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border-radius: 4px;
	background-color: #25d366;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.mwa-boton:hover,
.mwa-boton:focus {
	background-color: #1da851;
	color: #fff;
	text-decoration: none;
}

/* Contorno visible al navegar con teclado. */
.mwa-boton:focus-visible {
	outline: 2px solid #0a3622;
	outline-offset: 2px;
}

.mwa-boton__icono {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	fill: currentColor;
}

/* En móvil ocupa todo el ancho: es la acción principal de la ficha. */
@media (max-width: 480px) {
	.mwa-boton {
		width: 100%;
		justify-content: center;
	}
}
