/* ════════════════════════════════════════════════
   bpc-company-contact — card lateral de contato
   ════════════════════════════════════════════════ */
.bpc-cc {
	--bpc-ink:    #2b2018;
	--bpc-muted:  #9a8f7e;
	--bpc-text:   #3a3026;
	--bpc-green:  #2f6b46;
	--bpc-line:   #ece4d8;

	box-sizing: border-box;
	width: 100%;
	max-width: 360px;
	margin-inline: auto;
	background: #fff;
	border: 1px solid var(--bpc-line);
	border-radius: 18px;
	box-shadow: 0 8px 30px rgba(43, 32, 24, 0.05);
	padding: 24px;
}
.bpc-cc *, .bpc-cc *::before, .bpc-cc *::after { box-sizing: border-box; }

.bpc-cc__eyebrow {
	margin: 0 0 14px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bpc-muted);
}

.bpc-cc__wa {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 14px 18px;
	margin-bottom: 20px;
	border-radius: 12px;
	background: var(--bpc-green);
	color: #fff;
	font-size: 0.98rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.15s ease;
}
.bpc-cc__wa:hover { background: #25603f; transform: translateY(-1px); color: #fff; }
.bpc-cc__wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; }

.bpc-cc__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.bpc-cc__item { display: flex; align-items: flex-start; gap: 13px; }
.bpc-cc__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: #f3ece0;
	color: var(--bpc-green);
}
.bpc-cc__icon svg { width: 17px; height: 17px; }
.bpc-cc__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.bpc-cc__label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--bpc-muted);
}
.bpc-cc__value {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--bpc-text);
	text-decoration: none;
	overflow-wrap: anywhere;
}
a.bpc-cc__value:hover { color: var(--bpc-green); }

.bpc-cc__redes {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--bpc-line);
}
.bpc-cc__rede {
	flex: 1;
	min-width: 90px;
	text-align: center;
	padding: 9px 12px;
	border-radius: 10px;
	border: 1px solid var(--bpc-line);
	background: #fff;
	color: var(--bpc-text);
	font-size: 0.86rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bpc-cc__rede:hover { background: #faf6ee; border-color: var(--bpc-green); color: var(--bpc-green); }

/* ── Responsivo ────────────────────────────────── */
@media (max-width: 480px) {
	.bpc-cc { padding: 20px; max-width: 100%; }
	.bpc-cc__rede { min-width: 0; }
}
