/* ===== FRICAFOOD PAGE STYLES ===== */
:root {
  --brand: #15803d;
  --brand-light: #22c55e;
  --brand-dark: #14532d;
  --brand-pale: #f0fdf4;
  --orange: #ea580c;
  --orange-light: #f97316;
  --orange-pale: #fff7ed;
}

/* ===== FRICAFOOD HERO ===== */
.ff-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #052e16 0%, #14532d 50%, #166534 100%);
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.ff-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 75% 35%, rgba(34,197,94,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(234,88,12,0.12) 0%, transparent 65%);
}

.ff-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='4' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.ff-hero-content { position: relative; max-width: 680px; }

.ff-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ff-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.ff-hero h1 span {
  background: linear-gradient(135deg, #86efac, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ff-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.ff-hero-cards {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 260px;
}

.ff-hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.ff-hero-card:hover { transform: translateX(-6px); }

.ff-hero-card .card-icon { font-size: 28px; margin-bottom: 8px; }
.ff-hero-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ff-hero-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ===== ABOUT ===== */
.ff-about { background: #fff; }

.ff-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ff-about-image {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brand-pale) 0%, #dcfce7 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  border: 2px solid #bbf7d0;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand);
  color: #fff;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(21,128,61,0.35);
}

.about-badge .big { font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge .small { font-size: 13px; opacity: 0.8; }

.ff-about-content h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ff-about-content p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ff-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--brand-pale);
  border-radius: 10px;
}

.pillar-icon { font-size: 24px; flex-shrink: 0; }

.pillar h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.pillar p { font-size: 13px; color: #6b7280; }

/* ===== PRODUCTS ===== */
.ff-products { background: #f0fdf4; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #d1fae5;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(21,128,61,0.15);
  border-color: var(--brand-light);
}

.product-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.product-card:nth-child(1) .product-img { background: linear-gradient(135deg, #fef9c3, #fef08a); }
.product-card:nth-child(2) .product-img { background: linear-gradient(135deg, #ecfdf5, #bbf7d0); }
.product-card:nth-child(3) .product-img { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.product-card:nth-child(4) .product-img { background: linear-gradient(135deg, #f0fdf4, #d1fae5); }
.product-card:nth-child(5) .product-img { background: linear-gradient(135deg, #fdf4ff, #e9d5ff); }
.product-card:nth-child(6) .product-img { background: linear-gradient(135deg, #fff1f2, #fecdd3); }

.product-body { padding: 24px; }

.product-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.product-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.product-body p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* ===== DISTRIBUTION ===== */
.ff-distribution { background: #fff; }

.distribution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.distribution-content h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.distribution-content p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 32px;
}

.dist-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dist-stat {
  text-align: center;
  padding: 20px;
  background: var(--brand-pale);
  border-radius: 12px;
}

.dist-stat .num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}

.dist-stat .lbl { font-size: 13px; color: #6b7280; }

.distribution-visual {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: 20px;
  padding: 40px;
  color: #fff;
}

.supply-chain { display: flex; flex-direction: column; gap: 0; }

.sc-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sc-step:last-child { border-bottom: none; }

.sc-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.sc-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.sc-step p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ===== QUALITY ===== */
.ff-quality { background: #f0fdf4; }

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quality-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  border: 1.5px solid #d1fae5;
  transition: all 0.3s ease;
}

.quality-card:hover {
  border-color: var(--brand-light);
  box-shadow: 0 8px 24px rgba(21,128,61,0.1);
  transform: translateY(-4px);
}

.quality-icon { font-size: 36px; margin-bottom: 14px; }

.quality-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.quality-card p { font-size: 13px; color: #6b7280; line-height: 1.5; }

/* ===== CTA ===== */
.ff-cta {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  text-align: center;
  padding: 96px 5%;
}

.ff-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.ff-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.btn-white-green {
  background: #fff;
  color: var(--brand);
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white-green:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== NAVBAR OVERRIDE ===== */
.navbar-food {
  background: rgba(5, 46, 22, 0.97);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ff-hero-cards { display: none; }
  .ff-about-grid,
  .distribution-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ff-hero { padding: 100px 5% 56px; }
  .ff-hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .ff-hero p { font-size: 16px; margin-bottom: 28px; }
  .products-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .ff-pillars { grid-template-columns: 1fr; }
  .dist-stats { grid-template-columns: 1fr 1fr; }
  .ff-about-grid { gap: 32px; }
}

@media (max-width: 480px) {
  .quality-grid { grid-template-columns: 1fr; }
  .dist-stats { grid-template-columns: 1fr; }
}
