.vhw-home {
	--vhw-cor-titulo: #4a7c3f;
	--vhw-cor-destaque: #c9622b;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.vhw-section { margin: 40px 0; }

.vhw-section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
	text-align: center;
}
.vhw-section-titles { flex: 1; text-align: center; }
/* Título da seção (categoria "pai") — nível 1 da hierarquia. */
.vhw-section-title {
	color: var(--vhw-cor-titulo);
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-size: 36px;
	line-height: 1.15;
	margin: 0 0 6px;
}
/* Subtítulo/linha de apoio — nível 2 da hierarquia, sempre menor e mais leve que o título. */
.vhw-section-subtitle {
	margin: 0;
	color: #666;
	font-size: .95rem;
	font-weight: 400;
}
.vhw-veja-mais {
	color: var(--vhw-cor-destaque);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	text-transform: uppercase;
	font-size: .85rem;
}
.vhw-veja-mais:hover { text-decoration: underline; }

/* Categorias */
.vhw-categorias-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	row-gap: 20px;
}
.vhw-categoria-item { text-decoration: none; text-align: center; width: 130px; }
.vhw-categoria-img {
	display: block; width: 130px; height: 130px; border-radius: 50%;
	overflow: hidden; margin: 0 auto 10px; background: #eee;
}
.vhw-categoria-img img { width: 100%; height: 100%; object-fit: cover; }
/* Rótulo da categoria — nível 2 da hierarquia (abaixo do título da seção). */
.vhw-categoria-label {
	display: block; color: var(--vhw-cor-titulo); font-weight: 700; font-size: .95rem;
	letter-spacing: .03em;
}

/* Carrossel genérico */
.vhw-produtos-carrossel, .vhw-banner-carrossel { position: relative; }
.vhw-produtos-track {
	display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth;
	padding-bottom: 6px; scrollbar-width: thin;
}
.vhw-carrossel-seta {
	position: absolute; top: 40%; transform: translateY(-50%);
	background: #fff; border: 1px solid #ddd; border-radius: 50%;
	width: 36px; height: 36px; cursor: pointer; z-index: 2;
	display: flex; align-items: center; justify-content: center;
	color: var(--vhw-cor-destaque); box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.vhw-seta-prev { left: -10px; }
.vhw-seta-next { right: -10px; }

/* Produto card */
.vhw-produto-card { flex: 0 0 260px; display: flex; flex-direction: column; }
.vhw-produto-img { display: block; border-radius: 4px; overflow: hidden; margin-bottom: 8px; background: #f4f4f4; }
.vhw-produto-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
.vhw-produto-nome { color: #222; text-decoration: none; font-weight: 500; margin-bottom: 4px; }
.vhw-produto-preco { font-weight: 700; color: #222; }
.vhw-produto-loja { font-size: .8rem; color: #777; }
.vhw-produto-loja a { color: var(--vhw-cor-destaque); text-decoration: none; font-weight: 600; }

/* Faixas de preço */
.vhw-faixas-grid { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.vhw-faixa-item {
	background: var(--vhw-cor-titulo); color: #fff; text-decoration: none;
	border-radius: 50%; width: 160px; height: 160px;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	text-align: center; font-weight: 700; text-transform: uppercase;
}
.vhw-faixa-valor { font-size: 1.2rem; }

/* Marcas / lojas */
.vhw-marcas-tira {
	display: flex; flex-wrap: nowrap; overflow-x: auto; gap: 14px;
	background: var(--vhw-cor-destaque); padding: 20px; border-radius: 8px;
}
.vhw-marca-item {
	flex: 0 0 150px; background: #fff; border-radius: 6px; padding: 14px;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	text-decoration: none; color: #333; text-align: center;
}
.vhw-marca-item img { max-width: 100%; max-height: 40px; object-fit: contain; }

/* Lojas em destaque ("Nossos Brechós") — 4 cards por linha no desktop. */
.vhw-lojas-destaque-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.vhw-loja-destaque-card { text-decoration: none; color: #333; text-align: center; }
.vhw-loja-destaque-img {
	display: block; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden;
	margin-bottom: 8px; background: #eee; border: 2px solid var(--vhw-cor-destaque);
}
.vhw-loja-destaque-img img { width: 100%; height: 100%; object-fit: cover; }
.vhw-loja-destaque-nome { display: block; font-weight: 700; font-size: .9rem; color: var(--vhw-cor-titulo); text-transform: uppercase; margin-bottom: 4px; }
.vhw-loja-destaque-texto {
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
	overflow: hidden; font-size: .8rem; color: #666;
}

@media (max-width: 1024px) and (min-width: 783px) {
	.vhw-lojas-destaque-grid { grid-template-columns: repeat(3, 1fr); }
}

/* HTML livre */
.vhw-html-livre-conteudo { width: 100%; }
.vhw-full-bleed {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* Banner carousel */
.vhw-banner-track { display: flex; overflow: hidden; border-radius: 10px; }
.vhw-banner-slide { flex: 0 0 100%; }
.vhw-banner-picture, .vhw-banner-picture img { display: block; width: 100%; height: auto; }

@media (max-width: 782px) {
	.vhw-home { padding: 0 14px; }
	.vhw-section { margin: 28px 0; }
	.vhw-section-header { margin-bottom: 14px; }
	.vhw-section-title { font-size: 24px; }
	.vhw-section-subtitle { font-size: .85rem; }
	.vhw-veja-mais { font-size: .78rem; }

	/* Categorias */
	.vhw-categorias-grid { gap: 10px; row-gap: 14px; }
	.vhw-categoria-item, .vhw-categoria-img { width: 88px; height: 88px; }
	.vhw-categoria-label { font-size: .75rem; }

	/* Carrossel de produtos */
	.vhw-produto-card { flex-basis: 150px; }
	.vhw-produto-img img { height: 150px; }
	.vhw-produtos-track { gap: 12px; }
	.vhw-carrossel-seta { width: 30px; height: 30px; }

	/* Faixas de preço */
	.vhw-faixas-grid { gap: 12px; }
	.vhw-faixa-item { width: 100px; height: 100px; }
	.vhw-faixa-valor { font-size: 1rem; }

	/* Marcas / lojas */
	.vhw-marcas-tira { padding: 12px; gap: 10px; }
	.vhw-marca-item { flex-basis: 110px; padding: 10px; }

	/* Lojas em destaque ("Nossos Brechós") */
	.vhw-lojas-destaque-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.vhw-loja-destaque-nome { font-size: .8rem; }
	.vhw-loja-destaque-texto { font-size: .75rem; }

	/* Banners */
	.vhw-carrossel-seta.vhw-seta-prev { left: 4px; }
	.vhw-carrossel-seta.vhw-seta-next { right: 4px; }

	/* Quebra de texto — evita overflow horizontal em nomes/textos longos */
	.vhw-produto-nome, .vhw-loja-destaque-texto, .vhw-marca-item,
	.vhw-section-title, .vhw-section-subtitle {
		overflow-wrap: break-word; word-break: break-word;
	}
}

@media (max-width: 480px) {
	.vhw-lojas-destaque-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.vhw-categoria-item, .vhw-categoria-img { width: 76px; height: 76px; }
}
