/* ====== Tema / Tokens ====== */
:root{
  --brand-green: #166534;   /* verde principal */
  --brand-green-700:#155d33;
  --brand-cream: #fbf3e6;   /* bege claro das faixas */
  --text-dark: #111827;
  --text-muted: #6b7280;
  --radius: 14px;
}

/* Texto base */
body{ color: var(--text-dark); }
.text-brand{ color: var(--brand-green); }

/* ====== Seções ====== */
.section{ padding: 64px 0; }
.section-cream{ background: var(--brand-cream); }
.section-title{ font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: var(--brand-green); }

/* ====== HERO ====== */
.hero-wheat{
  background-size: cover;
  background-position: center;
  padding: 88px 0;
}
@media (min-width: 992px){
  .hero-wheat{ padding: 108px 0; }
}

/* ====== Produtos (cards) ====== */
.prod-card{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  text-align: center;
  padding: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.prod-card:hover{ transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.prod-img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}
.prod-title{ font-weight: 700; color: var(--brand-green); }

/* ====== CTA lateral ====== */
.cta-side{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

/* ====== KPIs (Eventos & Premiações) ====== */
.kpi-card{
  display: flex; gap: 14px; align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 16px 18px;
}
.kpi-ico{ font-size: 28px; }
.kpi-big{ font-size: 24px; font-weight: 800; color: var(--brand-green); line-height: 1; }
.kpi-sub{ font-size: 14px; color: var(--text-muted); }

/* ====== Navbar / Footer ajustes finos ====== */
.logo-nav{ height: 30px; width: auto; display: block; }
.navbar .nav-link{ padding: .85rem 1rem; font-weight: 500; }
.navbar .nav-link.active{ color: var(--brand-green) !important; }

.logo-foot{ height: 28px; width: auto; }
.social-ico{ font-size: 1.6rem; line-height: 1; }

/* ====== Utilidades ====== */
.lead{ color: var(--text-muted); }
