/* Conjur Social Share — barra de compartilhamento */

.conjur-social-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 32px 0 24px;
	padding: 20px;
	background: #f6f7f9;
	border-radius: 8px;
	border-left: 4px solid #003d7c;
	font-family: inherit;
}

.conjur-social-share__label {
	font-size: 13px;
	font-weight: 600;
	color: #444;
	text-transform: uppercase;
	letter-spacing: .04em;
	white-space: nowrap;
	margin-right: 4px;
}

.conjur-social-share__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.conjur-social-share__btn-text {
	display: none;
}

.conjur-social-share__btn,
.conjur-social-share__buttons button.conjur-social-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border-radius: 4px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	border: none;
	outline: none;
	background: #003d7c;
	box-shadow: none;
	transition: opacity .15s ease, transform .1s ease;
	color: #fff;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.conjur-social-share__btn:hover,
.conjur-social-share__buttons button.conjur-social-share__btn:hover {
	opacity: .80;
	transform: translateY(-1px);
	color: #fff;
	text-decoration: none;
	background: #003d7c;
}

.conjur-social-share__btn:active {
	transform: translateY(0);
}

.conjur-social-share__btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	/* padrão: ícones de linha (copiar, impressora) */
	fill: none;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ícones de silhueta (fill sólido, sem stroke) */
.conjur-social-share__btn--facebook svg,
.conjur-social-share__btn--twitter svg,
.conjur-social-share__btn--linkedin svg,
.conjur-social-share__btn--whatsapp svg,
.conjur-social-share__btn--telegram svg {
	fill: #fff;
	stroke: none;
}

/* ícone PDF: documento branco com texto azul escuro */
.conjur-social-share__btn--pdf svg path  { fill: #fff; stroke: none; }
.conjur-social-share__btn--pdf svg polyline { fill: none; stroke: #003d7c; stroke-width: 1.5px; }
.conjur-social-share__btn--pdf svg text { fill: #003d7c; stroke: none; }

/* Estado "copiado" */
.conjur-social-share__btn--copied {
	opacity: .75;
}

@media (max-width: 540px) {
	.conjur-social-share {
		padding: 14px;
		gap: 6px;
	}
}