/* ==========================================================================
   INCOL ALIMENTOS — Design System
   Paleta extraída do logo oficial (logo_incol.png):
     vermelho #CA2825 · azul-marinho #29166F
   ========================================================================== */

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea { font: inherit; }

/* ---------- Design tokens ---------- */
:root {
  /* Marca */
  --incol-red: #c0272a;
  --incol-red-dark: #941d1f;
  --incol-red-light: #e2544f;
  --incol-navy: #251354;
  --incol-navy-dark: #170a38;
  --incol-navy-light: #3d2380;
  --incol-gold: #e0a23a;
  --incol-gold-light: #f4c876;

  /* Superfícies e texto */
  --bg: #fbf9f6;
  --surface: #ffffff;
  --surface-alt: #f4f1eb;
  --text: #241d38;
  --text-muted: #665f77;
  --border: #e7e1d6;

  /* Estado */
  --success: #2f8f4e;
  --danger: #c0272a;

  /* Tipografia */
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(37, 19, 84, 0.08);
  --shadow-md: 0 10px 30px rgba(37, 19, 84, 0.12);
  --shadow-lg: 0 20px 50px rgba(37, 19, 84, 0.18);
  --header-h: 76px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--incol-navy);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: 72px; }
.section--alt { background: var(--surface-alt); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--incol-red);
  margin-bottom: 12px;
}
.section-tag::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--incol-gold);
}

.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-lead { color: var(--text-muted); font-size: 1.05rem; max-width: 640px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary { background: var(--incol-red); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--incol-red-dark); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.btn--secondary { background: var(--incol-navy); color: #fff; }
.btn--secondary:hover { background: var(--incol-navy-light); transform: translateY(-2px); }

.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn--ghost { background: var(--surface); color: var(--incol-navy); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--incol-red); color: var(--incol-red); }

.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
/* O blur fica num pseudo-elemento, não no .header em si: backdrop-filter no
   próprio .header vira "containing block" para os descendentes position:fixed
   (inclusive o menu mobile), fazendo o inset dele calcular contra os 76px do
   header em vez da viewport inteira — é isso que causava o menu mobile
   colapsado/atrás do conteúdo. */
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 249, 246, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.header.is-scrolled::after {
  background: rgba(251, 249, 246, 0.97);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--incol-red);
  color: #fff;
}
.nav-mobile-cta { display: none; }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta .btn--sm { padding: 10px 20px; }

.nav-rep-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-rep-link:hover { color: var(--incol-red); background: var(--surface-alt); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--incol-navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   BANNER SLIDER (Home e Produtos) — Splide.js estilizado com a marca
   ========================================================================== */
.banner-slider {
  position: relative;
  margin-top: var(--header-h);
  background: var(--incol-navy-dark);
}
.banner-slider .splide__slide { aspect-ratio: 1920 / 650; }
.banner-slider--produtos .splide__slide { aspect-ratio: 1280 / 518; }
.banner-slider .splide__slide img { width: 100%; height: 100%; object-fit: cover; }

/* Setas — sombra/anel próprio (em vez de uma tarja de fundo) garante
   contraste em qualquer banner, claro ou escuro, sem criar uma faixa
   visível sobre banners com fundo branco. */
.banner-slider .splide__arrow {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(23, 10, 56, 0.08);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.banner-slider .splide__arrow:hover:not(:disabled) {
  background: #fff;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(23, 10, 56, 0.08);
  transform: translateY(-50%) scale(1.06);
}
.banner-slider .splide__arrow:disabled { opacity: 0.35; }
.banner-slider .splide__arrow svg { width: 18px; height: 18px; fill: var(--incol-navy); }
.banner-slider .splide__arrow:focus-visible { outline: 2px solid var(--incol-red); outline-offset: 2px; }

/* Paginação (dots) */
.banner-slider .splide__pagination { bottom: 1.1em; }
.banner-slider .splide__pagination__page {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(23, 10, 56, 0.3), 0 1px 3px rgba(23, 10, 56, 0.35);
  opacity: 1;
  margin: 0 5px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.banner-slider .splide__pagination__page:hover { background: #fff; }
.banner-slider .splide__pagination__page.is-active {
  background: var(--incol-red);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7), 0 1px 4px rgba(23, 10, 56, 0.4);
  transform: scale(1.3);
}

@media (max-width: 720px) {
  .banner-slider .splide__arrow { width: 34px; height: 34px; }
  .banner-slider .splide__arrow svg { width: 14px; height: 14px; }
}

/* Quando o slider vem antes, a seção seguinte não precisa do offset do
   header de novo — só o slider precisa encostar embaixo do header fixo. */
.banner-slider + .hero,
.banner-slider + .page-hero { margin-top: 0; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  padding-block: 80px 60px;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08), transparent 45%),
              linear-gradient(125deg, var(--incol-navy-dark) 0%, var(--incol-navy) 55%, var(--incol-red-dark) 130%);
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 18px; }
.hero h1 span { color: var(--incol-gold-light); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 1.6rem; font-family: var(--font-heading); color: var(--incol-gold-light); }
.hero-stats div span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.hero-visual .glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,162,58,0.35), transparent 70%);
  filter: blur(4px);
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  width: 150px;
  transition: transform 0.3s ease;
}
.hero-card img { border-radius: var(--radius-sm); }
.hero-card--1 { top: 0; left: 10%; transform: rotate(-8deg); }
.hero-card--2 { bottom: 10px; right: 4%; transform: rotate(7deg); z-index: 2; width: 170px; }
.hero-card--3 { top: 38%; right: 24%; transform: rotate(-3deg) scale(0.9); opacity: 0.9; z-index: 1; }
.hero-card--4 { bottom: 4%; left: 20%; width: 135px; transform: rotate(6deg) scale(0.88); opacity: 0.92; z-index: 1; }

/* Hero secundário (páginas internas) */
.page-hero {
  margin-top: var(--header-h);
  padding-block: 64px;
  background: linear-gradient(120deg, var(--incol-navy-dark), var(--incol-navy) 60%, var(--incol-red-dark) 150%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.3;
}
.page-hero .container { position: relative; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin-top: 12px; }

/* ==========================================================================
   SOBRE (resumo home)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--incol-navy), var(--incol-red-dark));
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.about-media img { width: 58%; background: #fff; padding: 28px 34px; border-radius: var(--radius-md); filter: drop-shadow(0 18px 30px rgba(0,0,0,0.35)); }
.about-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,0.95);
  color: var(--incol-navy);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 700;
}
.about-list { margin-top: 24px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); }
.about-list li strong { color: var(--text); }
.check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--incol-gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ==========================================================================
   PRODUCT GRID / CARDS
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 26px;
  margin-top: 40px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.product-card__media {
  aspect-ratio: 1 / 1;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
}
.product-card__media img { max-height: 100%; object-fit: contain; cursor: zoom-in; }
.product-card__category {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--incol-navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
}
.product-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card__brand { font-size: 0.75rem; font-weight: 700; color: var(--incol-red); text-transform: uppercase; letter-spacing: 0.04em; }
.product-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 1.02rem; color: var(--text); }
.product-card__meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px dashed var(--border); }
.product-card__weight { font-weight: 700; color: var(--incol-navy); font-size: 0.9rem; }
.product-card__badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(47, 143, 78, 0.12);
  color: var(--success);
}

/* Destaques (home) usam mesmo card dentro de um carrossel simples em grid */
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 24px; margin-top: 40px; }

/* ==========================================================================
   RECEITAS
   ========================================================================== */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}
.recipe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.recipe-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--surface-alt); }
.recipe-card__media img { width: 100%; height: 100%; object-fit: cover; }
.recipe-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--incol-navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
}

.recipe-card__body { padding: 26px; display: flex; flex-direction: column; }
.recipe-card__title { font-size: 1.3rem; margin-bottom: 4px; text-wrap: balance; }
.recipe-card__subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--incol-red);
  margin-top: 20px;
  margin-bottom: 12px;
}

.recipe-ingredients {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
}
.recipe-ingredients li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.recipe-ingredients li strong { color: var(--text); }
.recipe-ingredients li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 2px solid var(--incol-gold);
  background: rgba(224, 162, 58, 0.12);
}
.recipe-ingredients__group {
  grid-column: 1 / -1;
  padding-left: 0 !important;
  font-weight: 700;
  color: var(--incol-navy);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
.recipe-ingredients__group::before { display: none; }
.recipe-ingredients__group:first-child { margin-top: 0; }

.recipe-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.recipe-steps__item { display: flex; gap: 14px; align-items: flex-start; }
.recipe-steps__number {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--incol-navy);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recipe-steps__item span:last-child { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; padding-top: 3px; }
.recipe-steps__item span:last-child strong { color: var(--text); }

@media (max-width: 720px) {
  .recipes-grid { grid-template-columns: 1fr; gap: 24px; }
  .recipe-ingredients { grid-template-columns: 1fr; }
}

/* ---------- Filtros / busca ---------- */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.search-field {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.search-field input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.search-field input:focus { outline: none; border-color: var(--incol-red); background: #fff; }
.search-field svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.category-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--incol-red); color: var(--incol-red); }
.chip.is-active { background: var(--incol-red); border-color: var(--incol-red); color: #fff; }

.results-info { margin-top: 18px; color: var(--text-muted); font-size: 0.9rem; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state strong { display: block; color: var(--text); font-size: 1.1rem; margin-bottom: 6px; }

/* ==========================================================================
   VALORES / MISSÃO / CARDS GENÉRICOS
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--incol-red), var(--incol-navy));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; }

.timeline { margin-top: 44px; display: grid; gap: 24px; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; }
.timeline-item .year { font-family: var(--font-heading); font-weight: 700; color: var(--incol-red); font-size: 1.1rem; }
.timeline-item .content { padding-bottom: 24px; border-left: 2px solid var(--border); padding-left: 20px; margin-left: -1px; }
.timeline-item .content h4 { margin-bottom: 6px; font-size: 1rem; }
.timeline-item .content p { color: var(--text-muted); font-size: 0.92rem; }

.evolution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.evolution-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.evolution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.evolution-card img { width: 100%; height: 100%; object-fit: cover; }
.evolution-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(23,10,56,0.85), transparent);
  padding: 30px 16px 14px;
}
.evolution-year { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: #fff; }

.quality-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
.quality-item { display: flex; gap: 14px; padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); }
.quality-item .icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: rgba(192,39,42,0.1); color: var(--incol-red); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.quality-item h4 { font-size: 1rem; margin-bottom: 4px; }
.quality-item p { color: var(--text-muted); font-size: 0.9rem; }

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; margin-top: 40px; align-items: start; }

.contact-info-card {
  background: linear-gradient(150deg, var(--incol-navy-dark), var(--incol-navy) 70%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-card h3 { color: #fff; font-size: 1.3rem; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-row strong { display: block; font-size: 0.95rem; }
.contact-row span, .contact-row a { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.contact-row a:hover { color: #fff; text-decoration: underline; }
.contact-info-card hr { border: none; border-top: 1px solid rgba(255,255,255,0.15); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--incol-red); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.8rem; color: var(--danger); min-height: 16px; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: var(--danger); }

.form-feedback {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  gap: 10px;
}
.form-feedback.is-visible { display: flex; align-items: flex-start; }
.form-feedback.success { background: rgba(47,143,78,0.1); color: var(--success); }
.form-feedback.error { background: rgba(192,39,42,0.08); color: var(--danger); }
.form-feedback a { font-weight: 700; text-decoration: underline; }

/* Honeypot anti-spam: existe no DOM/acessível a bots, mas invisível a humanos */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.map-wrap {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   CTA FAIXA
   ========================================================================== */
.cta-strip {
  background: linear-gradient(120deg, var(--incol-red-dark), var(--incol-red) 60%, var(--incol-gold) 160%);
  color: #fff;
  padding-block: 56px;
  text-align: center;
}
.cta-strip h2 { color: #fff; margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.cta-strip .hero-actions { justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--incol-navy-dark); color: rgba(255,255,255,0.75); padding-block: 60px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand img { height: 46px; margin-bottom: 16px; background: #fff; padding: 8px 14px; border-radius: 10px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--incol-red); }
/* Faixa de destaque para a Área do Representante, entre a grade e o rodapé-baixo */
.footer-rep-strip {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-rep-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--incol-red);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-rep-link:hover { background: var(--incol-red-dark); transform: translateY(-2px); }

.footer-bottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ==========================================================================
   CONTATO FLUTUANTE (celular)
   ========================================================================== */
.contact-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--incol-red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}
.contact-float:hover { transform: scale(1.08); }

/* ==========================================================================
   LIGHTBOX (imagem ampliada do produto)
   ========================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(23, 10, 56, 0.72); backdrop-filter: blur(2px); }
.lightbox__panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lightbox__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 1;
}
.lightbox__close:hover { background: var(--incol-red); color: #fff; }
.lightbox__media { background: var(--surface-alt); display: flex; align-items: center; justify-content: center; padding: 32px; }
.lightbox__img { max-width: 100%; max-height: 60vh; object-fit: contain; }
.lightbox__info { padding: 32px 30px; display: flex; flex-direction: column; gap: 10px; }
.lightbox__title { font-size: 1.3rem; }
.lightbox__meta { font-weight: 700; color: var(--incol-red); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.lightbox__desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.lightbox__desc[hidden] { display: none; }

/* ==========================================================================
   MEIO AMBIENTE — variação de cor para conteúdo de sustentabilidade
   ========================================================================== */
.section-tag--eco { color: var(--success); }
.section-tag--eco::before { background: var(--success); }
.eco-media { border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 1 / 1; max-width: 380px; margin-inline: auto; }
.eco-media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 300px; margin-top: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .quality-list { grid-template-columns: 1fr; }
  .evolution-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lightbox__panel { grid-template-columns: 1fr; max-height: 92vh; }
  .lightbox__media { padding: 24px; }
}

/* Entre o desktop cheio e o menu hambúrguer: aperta o menu horizontal em vez
   de deixar os itens quebrarem linha dentro do próprio pill. */
@media (max-width: 1180px) and (min-width: 721px) {
  .navbar { gap: 14px; }
  .nav-links { gap: 2px; }
  .nav-links a { padding: 9px 11px; font-size: 0.86rem; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn--sm { padding: 9px 13px; font-size: 0.8rem; }
  .nav-rep-link { font-size: 0.74rem; padding: 6px 8px; }
}

@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--surface);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { padding: 16px 18px; border-radius: var(--radius-sm); font-size: 1.05rem; }
  .nav-mobile-cta { display: flex; margin-top: 12px; }

  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .quality-list { grid-template-columns: 1fr; }
  .evolution-grid { grid-template-columns: 1fr; }
  .section { padding-block: 52px; }
}
