/**
 * SR Compartilhar: barra de botões de compartilhamento.
 */
.srs-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.srs-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	border-radius: 8px;
	background-color: #d1d5db;
	color: #1e3a5f;
	line-height: 0;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, transform .15s ease;
	-webkit-appearance: none;
	appearance: none;
}

.srs-btn:hover {
	transform: translateY(-1px);
}

.srs-btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.srs-btn--primary {
	background-color: #1e3a5f;
	color: #ffffff;
}

.srs-icon {
	width: 18px;
	height: 18px;
	display: block;
}

/* Aviso "Link copiado" */
.srs-toast {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(4px);
	background: #111827;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
	padding: 6px 8px;
	border-radius: 6px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
	z-index: 5;
}

.srs-btn.srs-copied .srs-toast {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
