/* ════════════════════════════════════════════════
   bpc-business-hours — card de horário de funcionamento
   ════════════════════════════════════════════════ */
.bpc-bh {
	--bpc-ink:   #2b2018;
	--bpc-muted: #5a5044;
	--bpc-green: #2f6b46;
	--bpc-coral: #d24b32;
	--bpc-line:  #ece4d8;

	box-sizing: border-box;
	width: 100%;
	max-width: 460px;
	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: 28px 30px;
}
.bpc-bh *, .bpc-bh *::before, .bpc-bh *::after { box-sizing: border-box; }

.bpc-bh__title {
	margin: 0 0 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--bpc-ink);
}
.bpc-bh__list { list-style: none; margin: 0; padding: 0; }
.bpc-bh__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid var(--bpc-line);
}
.bpc-bh__row:last-child { border-bottom: 0; }
.bpc-bh__day {
	font-size: 0.96rem;
	color: var(--bpc-muted);
}
.bpc-bh__hour {
	font-size: 0.96rem;
	font-weight: 700;
	color: var(--bpc-ink);
	white-space: nowrap;
}
.bpc-bh__row--destaque .bpc-bh__day,
.bpc-bh__row--destaque .bpc-bh__hour { color: var(--bpc-green); }
.bpc-bh__row--fechado .bpc-bh__hour { color: var(--bpc-coral); }

/* ── Responsivo ────────────────────────────────── */
@media (max-width: 480px) {
	.bpc-bh { padding: 22px 22px; }
	.bpc-bh__row { padding: 11px 0; }
}
