/* ════════════════════════════════════════════════
   bpc-company-cta — faixa de contato (CTA)
   ════════════════════════════════════════════════ */
.bpc-cta {
	--bpc-green:  #2f6b46;
	--bpc-ink:    #2b2018;

	box-sizing: border-box;
	width: 100%;
	max-width: 1140px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	background: #2f6b46;
	border-radius: 20px;
	padding: 30px 36px;
}
.bpc-cta *, .bpc-cta *::before, .bpc-cta *::after { box-sizing: border-box; }

.bpc-cta__text { flex: 1 1 320px; }
.bpc-cta__title {
	margin: 0 0 6px;
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
}
.bpc-cta__sub {
	margin: 0;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.82);
}

.bpc-cta__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.bpc-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.15s ease, opacity 0.15s ease;
}
.bpc-cta__btn:hover { transform: translateY(-2px); }

.bpc-cta__wa {
	background: #fff;
	color: var(--bpc-green);
}
.bpc-cta__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #25d366;
}
.bpc-cta__tel {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.7);
}

/* ── Responsivo ────────────────────────────────── */
@media (max-width: 680px) {
	.bpc-cta { padding: 24px 22px; flex-direction: column; align-items: stretch; text-align: center; }
	.bpc-cta__actions { justify-content: center; }
	.bpc-cta__btn { flex: 1; justify-content: center; }
}
@media (max-width: 400px) {
	.bpc-cta__actions { flex-direction: column; }
	.bpc-cta__title { font-size: 1.3rem; }
}
