/* Botoes de compartilhar no fim dos posts. */

.drd-compartilhar {
	margin: 36px 0 8px;
	padding: 18px 20px;
	background: #F6F3EA;
	border: 1px solid #DFD8C6;
	border-radius: 12px;
}

.drd-compartilhar-titulo {
	display: block;
	margin-bottom: 12px;
	font-size: 15px;
	font-weight: 700;
	color: #3A4842;
}

.drd-compartilhar-botoes {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.drd-compartilhar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 16px;
	border-radius: 999px;
	border: 1px solid #DFD8C6;
	background: #fff;
	color: #3A4842;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	text-decoration: none;
	cursor: pointer;
	line-height: 1.2;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.drd-compartilhar-btn:hover {
	background: #EFF7F1;
	border-color: #25D366;
	color: #3A4842;
	text-decoration: none;
}

.drd-rede-whatsapp:hover {
	background: #25D366;
	border-color: #25D366;
	color: #fff;
}

.drd-rede-facebook:hover {
	background: #1877F2;
	border-color: #1877F2;
	color: #fff;
}

.drd-rede-x:hover {
	background: #111;
	border-color: #111;
	color: #fff;
}

.drd-rede-telegram:hover {
	background: #2AABEE;
	border-color: #2AABEE;
	color: #fff;
}

.drd-rede-e-mail:hover {
	background: #6C7A73;
	border-color: #6C7A73;
	color: #fff;
}

/* Ficha do resgate e credito do detectorista dentro do post. */

.drd-ficha-resgate {
	display: inline-block;
	padding: 8px 14px;
	margin-bottom: 18px;
	background: #EFF7F1;
	border-radius: 8px;
	font-size: 14px;
	color: #3A4842;
}

.drd-credito {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
	margin-top: 28px;
	padding: 14px 18px;
	background: #F6F3EA;
	border-left: 4px solid #25D366;
	border-radius: 8px;
	font-size: 15px;
}

@media (max-width: 480px) {
	.drd-compartilhar {
		padding: 16px;
	}

	.drd-compartilhar-btn {
		flex: 1 1 auto;
	}
}
