/* =============================================
   VIP Feno — Produtos Page CSS
   Hero + lista horizontal de produtos
   ============================================= */

/* === Hero compartilhado (/produtos e /blog) === */
.vf-page-hero {
  background: var(--vf-green);
  text-align: center;
  padding: 72px 40px;
}
.vf-page-hero__inner { max-width: var(--vf-container); margin: 0 auto; }
.vf-page-hero__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vf-white);
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .vf-page-hero        { padding: 56px 32px; }
  .vf-page-hero__title { font-size: 1.75rem; }
}
@media (max-width: 767px) {
  .vf-page-hero        { padding: 40px 20px; }
  .vf-page-hero__title { font-size: 1.4rem; }
}

/* === Lista de produtos === */
.vf-produtos-page {
  background: var(--vf-white);
  padding: 64px 24px 80px;
}
.vf-produtos-page__inner {
  max-width: 860px;
  margin: 0 auto;
}

/* === Item horizontal === */
.vf-prod-list {
  display: flex;
  flex-direction: column;
}
.vf-prod-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.vf-prod-list-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}

/* Imagem */
.vf-prod-list-item__img-wrap {
  border-radius: var(--vf-radius);
  overflow: hidden;
  background: var(--vf-green);
  width: 280px;
  height: 210px;
  flex-shrink: 0;
}
.vf-prod-list-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.vf-prod-list-item:hover .vf-prod-list-item__img {
  transform: scale(1.04);
}

/* Conteúdo */
.vf-prod-list-item__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vf-prod-list-item__name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--vf-green);
  line-height: 1.25;
  margin: 0;
}
.vf-prod-list-item__desc {
  font-size: 0.95rem;
  color: var(--vf-muted);
  line-height: 1.75;
  margin: 0;
}

/* === Responsivo === */
@media (max-width: 767px) {
  .vf-produtos-page { padding: 40px 20px 64px; }
  .vf-prod-list-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .vf-prod-list-item__img-wrap {
    width: 100%;
    height: 200px;
  }
  .vf-prod-list-item__name { font-size: 1.15rem; }
}
