/* ════════════════════════════════════════════════
   bpc-company-products — grid de produtos / serviços
   ════════════════════════════════════════════════ */
.bpc-prod {
	--bpc-ink:   #2b2018;
	--bpc-muted: #5a5044;
	--bpc-green: #2f6b46;
	--bpc-line:  #ece4d8;

	box-sizing: border-box;
	width: 100%;
	max-width: 1140px;
	margin-inline: auto;
}
.bpc-prod *, .bpc-prod *::before, .bpc-prod *::after { box-sizing: border-box; }

.bpc-prod__title {
	margin: 0 0 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--bpc-ink);
}

.bpc-prod__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.bpc-prod__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--bpc-line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(43, 32, 24, 0.05);
}

.bpc-prod__media {
	height: 170px;
	background: var(--bpc-line);
}
.bpc-prod__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bpc-prod__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 20px;
	flex: 1;
}
.bpc-prod__name {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--bpc-ink);
}
.bpc-prod__desc {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--bpc-muted);
	flex: 1;
}
.bpc-prod__price {
	margin-top: 4px;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--bpc-green);
}

/* ── Responsivo ────────────────────────────────── */
@media (max-width: 880px) {
	.bpc-prod__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.bpc-prod__grid { grid-template-columns: 1fr; }
	.bpc-prod__media { height: 190px; }
}
