/**
 * Shared WhatsApp CTA — heroes, footers, landing pages
 */

.btn--wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.btn--wa:hover {
	transform: translateY(-2px);
}

.btn__wa-icon {
	width: 1.15rem;
	height: 1.15rem;
	flex-shrink: 0;
	color: #25d366;
}

/* Dark heroes (homepage, future dark heroes) */
.btn--wa--dark {
	padding: 0.95rem 1.5rem;
	background: transparent;
	color: #ffffff !important;
	font-family: var(--font-display, "Montserrat", sans-serif);
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: none;
}

.btn--wa--dark:hover {
	border-color: #25d366;
	background: rgba(37, 211, 102, 0.1);
	color: #ffffff !important;
}

/* Dark landing heroes (ghost sibling) */
.btn--wa--ghost {
	padding: 0.7rem 1.5rem;
	background: transparent;
	color: #ffffff !important;
	font-family: var(--font);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: lowercase;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: none;
}

.btn--wa--ghost:hover {
	border-color: #f26522;
	color: #f26522 !important;
	background: rgba(242, 101, 34, 0.08);
}

.btn--wa--ghost:hover .btn__wa-icon {
	color: #25d366;
}

/* Footer (dark background) */
.btn--wa--footer {
	padding: 0.5rem 1rem;
	background: transparent;
	color: rgba(255, 255, 255, 0.9) !important;
	font-family: var(--font);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: none;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: none;
}

.btn--wa--footer:hover {
	border-color: #25d366;
	background: rgba(37, 211, 102, 0.12);
	color: #ffffff !important;
}

.site-footer__actions {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	align-items: flex-start;
	margin-top: 0.25rem;
}
