/* =========================================================
   OPÇÃO FERRAGENS — Design System Institucional
   Estrutura inspirada na Bascular · Identidade da Opção
   Paleta: Branco + Verde Floresta (logo) + Laranja-cobre
   Fontes: Barlow Condensed (títulos) + Inter (corpo)
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px; line-height: 1.6; color: var(--text);
  background: var(--bg); overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- VARIÁVEIS DA MARCA ---------- */
:root {
  /* Cores institucionais — extraídas do logo oficial */
  --bg: #ffffff;
  --bg-2: #f4f7f5;
  --bg-3: #e9efeb;
  --surface: #ffffff;

  --green: #2d5342;              /* Verde floresta (logo principal) */
  --green-dark: #1f3d30;
  --green-medium: #428c6c;       /* Verde médio (logo destaque) */
  --green-light: #78b592;
  --green-soft: #e3f0e9;         /* Verde-creme bg */

  --line: #dde3df;
  --line-strong: #c4ccc7;
  --text: #1f2a23;               /* Texto principal — quase preto esverdeado */
  --text-2: #5a6660;
  --muted: #8a948e;

  --accent: #d97c3a;             /* Laranja-cobre — contraste quente com o verde */
  --accent-2: #e89760;
  --accent-dark: #b86224;
  --accent-soft: #fbeee2;
  --success: #16a34a;
  --danger: #dc2626;
  --whats: #25D366;

  /* Tipografia */
  --font-heading: 'Barlow Condensed', 'Oswald', Impact, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --container: 1240px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(45,83,66,.06);
  --shadow: 0 6px 24px rgba(45,83,66,.09);
  --shadow-lg: 0 20px 50px rgba(45,83,66,.13);

  /* Animação */
  --t: .25s cubic-bezier(.2,.7,.3,1);
}

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--green);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p  { color: var(--text-2); }
.lead { font-size: 1.125rem; color: var(--text); }
.eyebrow {
  font-family: var(--font-heading);
  font-size: .9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--accent);
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: 24px;
}
.section { padding: 100px 0; position: relative; }
.section--sm { padding: 60px 0; }
.section--dark { background: var(--bg-2); }
.section--darker { background: var(--green); }
.section--darker h1, .section--darker h2, .section--darker h3, .section--darker h4 { color: #fff; }
.section--darker p { color: rgba(255,255,255,.82); }
.section--darker .eyebrow { color: var(--accent-2); }
.section--darker .eyebrow::before { background: var(--accent-2); }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-weight: 600; font-size: .95rem;
  border-radius: var(--radius); cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px;
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t), border-color var(--t);
  white-space: nowrap; border: 2px solid transparent;
}
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 14px rgba(217,124,58,.3);
}
.btn--primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--green);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--dark { background: var(--green); color: #fff; }
.btn--dark:hover { background: var(--green-dark); color: #fff; }
.btn--whats { background: var(--whats); color: #fff; }
.btn--whats:hover { background: #1ebe57; color: #fff; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn .ico { width: 18px; height: 18px; }

/* ---------- HEADER / NAV ---------- */
.topbar {
  background: var(--green);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 40px;
  flex-wrap: nowrap;
}
.topbar__left, .topbar__right { display: flex; gap: 18px; align-items: center; min-width: 0; }
.topbar a { color: rgba(255,255,255,.88); display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }
.topbar a:hover { color: var(--accent-2); }
.topbar__badge {
  background: var(--accent); color: #fff; padding: 4px 12px;
  border-radius: 4px; font-weight: 700; font-size: .72rem; letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 768px) {
  .topbar { font-size: .72rem; }
  .topbar__inner { height: 36px; }
  .topbar__badge { font-size: .62rem; padding: 3px 8px; letter-spacing: .5px; }
  .topbar__left, .topbar__right { gap: 12px; }
}
@media (max-width: 480px) {
  .topbar__badge { font-size: 0; padding: 4px 6px; position: relative; }
  .topbar__badge::before { content: "ATACADO"; font-size: .62rem; }
}

.nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
  gap: 24px;
}
.nav__logo {
  display: inline-flex; align-items: center;
  flex-shrink: 0; padding: 8px 0;
}
.nav__logo img { height: 56px; width: auto; display: block; }
@media (max-width: 1100px) { .nav__logo img { height: 48px; } }
@media (max-width: 600px) { .nav__logo img { height: 42px; } }

.nav__menu {
  display: flex; gap: 26px; align-items: center;
}
.nav__menu a {
  font-weight: 500; font-size: .85rem; color: var(--text);
  position: relative; padding: 8px 0;
  text-transform: uppercase; letter-spacing: .8px;
  white-space: nowrap;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--t);
}
.nav__menu a:hover { color: var(--green); }
.nav__menu a:hover::after, .nav__menu a.is-active::after { width: 100%; }
.nav__menu a.is-active { color: var(--green); }
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__burger {
  display: none; width: 44px; height: 44px;
  flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
}
.nav__burger span {
  display: block; width: 26px; height: 2px; background: var(--green);
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav__menu {
    position: fixed; inset: 90px 0 0 0;
    background: #fff; flex-direction: column;
    gap: 0; padding: 30px; transform: translateX(100%);
    transition: transform .3s ease; align-items: stretch;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 82vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7f5 70%, #e9efeb 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,83,66,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,83,66,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.hero::after {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,124,58,.12), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
  padding: 70px 0;
}
.hero__content h1 { margin: 18px 0 24px; }
.hero__content h1 span { color: var(--accent); }
.hero__content p { font-size: 1.15rem; max-width: 560px; margin-bottom: 32px; color: var(--text-2); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 44px; max-width: 540px;
}
.hero__stat {
  padding: 20px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.hero__stat strong {
  display: block; font-family: var(--font-heading);
  font-size: 2.2rem; color: var(--green); line-height: 1;
}
.hero__stat span { font-size: .78rem; color: var(--text-2); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: linear-gradient(140deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 28px 28px 110px;
  display: flex; flex-direction: column;
}
.hero__visual::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at top right, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero__visual::after {
  content: ""; position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(217,124,58,.28), transparent 60%);
  pointer-events: none;
}
.hero__visual-header {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  color: #fff;
}
.hero__visual-header .icon {
  width: 46px; height: 46px;
  background: var(--accent); border-radius: var(--radius);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(217,124,58,.4);
}
.hero__visual-header .icon svg { width: 24px; height: 24px; color: #fff; }
.hero__visual-header strong {
  display: block; font-family: var(--font-heading);
  font-size: 1.15rem; letter-spacing: 1.5px;
  text-transform: uppercase; line-height: 1.1;
}
.hero__visual-header span {
  font-size: .72rem; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: 2px;
}

.hero__products-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1;
  min-height: 0;
}
.hero__products-grid > div {
  background: rgba(255,255,255,.97);
  border-radius: 8px;
  padding: 14px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  transition: transform var(--t);
}
.hero__products-grid > div:hover { transform: scale(1.02); }
.hero__products-grid > div::before {
  content: attr(data-label);
  position: absolute; bottom: 8px; left: 10px;
  font-size: .62rem; font-weight: 700;
  color: var(--green); letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,.85);
  padding: 3px 8px; border-radius: 3px;
}
.hero__products-grid img {
  max-width: 78%; max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
}

.hero__badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: #fff; border: 1px solid var(--line);
  padding: 14px 18px; border-radius: var(--radius);
  display: flex; gap: 12px; align-items: center; z-index: 3;
  box-shadow: var(--shadow);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity:1 } 50% { transform: scale(1.4); opacity:.6 } }
.hero__badge strong { display: block; color: var(--green); font-size: .9rem; font-weight: 700; }
.hero__badge span { font-size: .75rem; color: var(--text-2); }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero__stat { padding: 14px 10px; }
  .hero__stat strong { font-size: 1.7rem; }
}

/* ---------- SEÇÃO HEADER ---------- */
.section__head {
  text-align: center; max-width: 720px; margin: 0 auto 60px;
}
.section__head--left { text-align: left; margin-left: 0; }
.section__head h2 { margin: 14px 0 18px; }
.section__head p { font-size: 1.05rem; }

/* ---------- DIFERENCIAIS ---------- */
.diff {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.diff__item {
  display: flex; gap: 16px; align-items: flex-start;
}
.diff__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius); background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center;
}
.diff__icon svg { width: 24px; height: 24px; }
.diff__item h4 { color: var(--green); font-size: 1rem; margin-bottom: 4px; }
.diff__item p { font-size: .85rem; color: var(--text-2); }
@media (max-width: 900px) { .diff { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .diff { grid-template-columns: 1fr; } }

/* ---------- CATEGORIAS / CARDS ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 980px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--6 { grid-template-columns: repeat(2, 1fr); }
}

.cat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
  min-height: 240px;
  box-shadow: var(--shadow-sm);
}
.cat-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card__icon {
  width: 56px; height: 56px;
  background: var(--green-soft); color: var(--green);
  border-radius: var(--radius);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: background var(--t), color var(--t);
}
.cat-card:hover .cat-card__icon { background: var(--accent-soft); color: var(--accent); }
.cat-card__icon svg { width: 30px; height: 30px; }
.cat-card h3 { color: var(--green); margin-bottom: 8px; font-size: 1.15rem; }
.cat-card p { font-size: .9rem; flex: 1; margin-bottom: 16px; color: var(--text-2); }
.cat-card__link {
  color: var(--accent); font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 6px;
}
.cat-card__link::after { content: "→"; transition: transform var(--t); }
.cat-card:hover .cat-card__link::after { transform: translateX(4px); }

/* Dark section overrides */
.section--darker .cat-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.section--darker .cat-card h3 { color: #fff; }
.section--darker .cat-card p { color: rgba(255,255,255,.72); }
.section--darker .cat-card__icon { background: rgba(217,124,58,.2); color: var(--accent-2); }

/* ---------- PRODUTOS ---------- */
.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.prod-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.prod-card__media {
  aspect-ratio: 1; background: #fff;
  display: grid; place-items: center; padding: 18px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.prod-card__media img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.prod-card:hover .prod-card__media img { transform: scale(1.06); }
.prod-card__tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: 4px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.prod-card__body { padding: 20px 22px 24px; }
.prod-card__cat { font-size: .72rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.prod-card__title { color: var(--green); font-size: 1rem; margin: 6px 0 14px; min-height: 48px; font-family: var(--font-body); font-weight: 600; text-transform: none; letter-spacing: normal; line-height: 1.35; }
.prod-card__btn {
  display: block; text-align: center;
  background: transparent; border: 1.5px solid var(--line-strong); color: var(--green);
  padding: 10px; border-radius: var(--radius);
  text-transform: uppercase; font-size: .78rem; font-weight: 700; letter-spacing: 1px;
  transition: all var(--t);
}
.prod-card__btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  background:
    linear-gradient(135deg, var(--green) 0%, var(--green-medium) 100%);
  padding: 70px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner::after {
  content: ""; position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,124,58,.25), transparent 60%);
}
.cta-banner__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; max-width: 700px; }
.cta-banner p { color: rgba(255,255,255,.88); font-weight: 400; margin-top: 8px; }
.cta-banner .btn--dark { background: #fff; color: var(--green); }
.cta-banner .btn--dark:hover { background: var(--accent); color: #fff; }
.cta-banner .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-banner .btn--ghost:hover { border-color: #fff; color: var(--accent-2); }

/* ---------- FOOTER ---------- */
.footer { background: var(--green-dark); color: rgba(255,255,255,.78); padding-top: 70px; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
}
.footer h4 {
  color: #fff; font-size: 1rem; margin-bottom: 20px;
  letter-spacing: 1.5px;
}
.footer__col p, .footer__col li { font-size: .9rem; color: rgba(255,255,255,.72); margin-bottom: 10px; }
.footer__col a { color: rgba(255,255,255,.78); }
.footer__col a:hover { color: var(--accent-2); }
.footer__logo {
  background: #fff; padding: 14px 18px;
  border-radius: var(--radius);
  display: inline-block; margin-bottom: 18px;
}
.footer__logo img { height: 46px; width: auto; display: block; }
.footer__contact { display: grid; gap: 10px; margin-top: 18px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: background var(--t);
}
.social a:hover { background: var(--accent); }
.social svg { width: 18px; height: 18px; color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: rgba(255,255,255,.55);
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.7); }
.footer__bottom a:hover { color: var(--accent-2); }
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 500px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ---------- WHATSAPP FLUTUANTE ---------- */
.whats-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whats); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  transition: transform .3s;
  animation: floatPulse 3s infinite ease-in-out;
}
.whats-float:hover { transform: scale(1.08); color: #fff; }
.whats-float svg { width: 30px; height: 30px; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,.7); }
}

/* ---------- BREADCRUMB / PAGE HEADER ---------- */
.page-head {
  padding: 80px 0 60px;
  background:
    linear-gradient(135deg, var(--green) 0%, var(--green-medium) 100%);
  position: relative; overflow: hidden;
  color: #fff;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}
.page-head::after {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217,124,58,.22), transparent 60%);
}
.page-head__inner { position: relative; text-align: center; z-index: 2; }
.page-head h1 { color: #fff; margin-bottom: 14px; }
.page-head p { max-width: 700px; margin: 0 auto; color: rgba(255,255,255,.88); }
.page-head .eyebrow { color: var(--accent-2); }
.page-head .eyebrow::before { background: var(--accent-2); }
.breadcrumb { color: rgba(255,255,255,.78); font-size: .85rem; margin-bottom: 16px; }
.breadcrumb a { color: var(--accent-2); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.5); margin: 0 8px; }

/* ---------- FILTROS PRODUTOS ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px; justify-content: center;
}
.filter-btn {
  padding: 10px 18px; background: #fff;
  border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: .82rem; color: var(--text); font-weight: 600;
  transition: all var(--t);
  text-transform: uppercase; letter-spacing: 1px;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ---------- FORMS ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__group label { font-size: .85rem; color: var(--green); font-weight: 600; }
.form__group input, .form__group select, .form__group textarea {
  background: #fff; border: 1px solid var(--line-strong);
  padding: 14px 16px; border-radius: var(--radius); color: var(--text);
  font-size: .95rem; transition: border-color var(--t), box-shadow var(--t);
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(217,124,58,.15);
}
.form__group textarea { resize: vertical; min-height: 130px; }
.form__check { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--text-2); }
.form__check input { width: 18px; height: 18px; accent-color: var(--accent); margin-top: 2px; }
.form__check a { color: var(--accent); }

/* ---------- CARDS CONTATO ---------- */
.contact-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { color: var(--green); margin-bottom: 18px; }
.contact-card ul { display: grid; gap: 14px; }
.contact-card li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--text-2); }
.contact-card svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-card a { color: var(--text); }
.contact-card a:hover { color: var(--accent); }

/* FAQ */
details {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px;
  margin-bottom: 14px; cursor: pointer;
  transition: border-color var(--t), box-shadow var(--t);
}
details:hover { border-color: var(--line-strong); }
details[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
details summary { color: var(--green); font-weight: 600; list-style: none; position: relative; padding-right: 30px; }
details summary::after {
  content: "+"; position: absolute; right: 0; top: -2px;
  font-size: 1.4rem; color: var(--accent); font-weight: 300;
  transition: transform var(--t);
}
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 12px; color: var(--text-2); }

/* ---------- ANIMAÇÕES SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- STATS ---------- */
.stat-box {
  padding: 32px 24px; background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.stat-box strong {
  font-family: var(--font-heading); font-size: 3rem;
  color: var(--green); line-height: 1; display: block;
}
.stat-box span {
  color: var(--text-2); font-size: .85rem;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}

/* ---------- UTIL ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.hide-mobile { display: block; }
.show-mobile { display: none; }
@media (max-width: 700px) { .hide-mobile { display: none; } .show-mobile { display: block; } }

/* ---------- CARROSSEL DE MARCAS (auto-scroll infinito) ---------- */
.brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.brand-marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: brandScroll 40s linear infinite;
}
.brand-marquee:hover .brand-marquee__track { animation-play-state: paused; }
.brand-marquee__item {
  flex-shrink: 0;
  width: 200px;
  height: 130px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  box-sizing: border-box;
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 800;
  color: var(--green); letter-spacing: 2px;
  text-align: center;
}
.brand-marquee__item:hover { transform: scale(1.05); box-shadow: var(--shadow); border-color: var(--accent); color: var(--accent); }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 16px)); }
}
@media (max-width: 700px) {
  .brand-marquee__item { width: 150px; height: 100px; padding: 14px 18px; font-size: 1.1rem; }
  .brand-marquee__track { gap: 20px; animation-duration: 30s; }
  @keyframes brandScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 10px)); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand-marquee__track { animation: none; }
}

/* ---------- MAPA ---------- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  height: 100%; min-height: 400px;
}
.map-container iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* =========================================================
   MOBILE OPTIMIZATIONS
   ========================================================= */
@media (max-width: 768px) {
  .container { padding-inline: 24px; }
  .section { padding: 60px 0; }
  .section--sm { padding: 40px 0; }
  .section__head { margin-bottom: 40px; }
  .section__head p { font-size: .95rem; }
}
@media (max-width: 480px) { .container { padding-inline: 20px; } }

@media (max-width: 768px) {
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); letter-spacing: .3px; }
  h2 { font-size: clamp(1.5rem, 6vw, 2.1rem); }
  h3 { font-size: 1.15rem; }
  .eyebrow { font-size: .78rem; letter-spacing: 2px; }
  body { font-size: 15px; }
}

@media (max-width: 900px) {
  .hero { padding: 0; }
  .hero__inner { padding: 40px 0 30px; grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__content .eyebrow { justify-content: center; }
  .hero__content p { font-size: 1rem; max-width: 100%; }
  .hero__visual {
    max-width: 420px; max-height: none; width: 100%;
    aspect-ratio: 4/5;
    padding: 22px 22px 92px;
  }
  .hero__visual-header { margin-bottom: 18px; }
  .hero__visual-header strong { font-size: 1.05rem; }
  .hero__visual-header span { font-size: .68rem; }
  .hero__products-grid { gap: 10px; }
  .hero__products-grid > div { padding: 12px 12px 22px; }
  .hero__products-grid > div::before { font-size: .58rem; padding: 2px 7px; bottom: 6px; left: 8px; letter-spacing: .5px; }
  .hero__badge { padding: 10px 14px; bottom: 18px; left: 18px; right: 18px; }
  .hero__badge strong { font-size: .82rem; }
  .hero__badge span { font-size: .68rem; }
  .hero__cta { gap: 10px; justify-content: center; width: 100%; }
  .hero__cta .btn { flex: 1; min-width: 0; justify-content: center; padding: 14px 18px; font-size: .82rem; letter-spacing: .5px; }
  .hero__stats { margin-top: 32px; }
  .hero__stat { text-align: center; }
}
@media (max-width: 480px) {
  .hero__inner { padding: 24px 0 30px; gap: 24px; }
  .hero__visual {
    max-width: 100%;
    aspect-ratio: 5/6;
    padding: 18px 18px 86px;
    border-radius: 10px;
  }
  .hero__visual-header { margin-bottom: 14px; gap: 12px; }
  .hero__visual-header .icon { width: 40px; height: 40px; }
  .hero__visual-header .icon svg { width: 20px; height: 20px; }
  .hero__visual-header strong { font-size: .95rem; letter-spacing: 1px; }
  .hero__visual-header span { font-size: .62rem; letter-spacing: 1.5px; }
  .hero__products-grid { gap: 8px; }
  .hero__products-grid > div { padding: 10px 10px 20px; border-radius: 6px; }
  .hero__products-grid > div::before { font-size: .55rem; padding: 2px 6px; }
  .hero__products-grid img { max-width: 75%; max-height: 70%; }
  .hero__badge { padding: 9px 12px; gap: 9px; bottom: 14px; left: 14px; right: 14px; }
  .hero__badge strong { font-size: .76rem; line-height: 1.3; }
  .hero__badge span { font-size: .64rem; }
  .hero__stat { padding: 12px 8px; }
  .hero__stat strong { font-size: 1.4rem; }
  .hero__stat span { font-size: .65rem; }
}
@media (max-width: 380px) {
  .hero__visual-header strong { font-size: .88rem; }
  .hero__visual-header span { font-size: .58rem; }
  .hero__products-grid > div::before { font-size: .5rem; padding: 1px 5px; }
}

@media (max-width: 600px) {
  .cat-card { padding: 22px 18px; min-height: auto; }
  .cat-card__icon { width: 48px; height: 48px; margin-bottom: 14px; }
  .cat-card__icon svg { width: 26px; height: 26px; }
  .prod-card__body { padding: 16px 16px 20px; }
  .prod-card__title { font-size: .92rem; min-height: 0; }
  .prod-card__btn { padding: 9px; font-size: .72rem; }
  .contact-card { padding: 24px 20px; }
}

@media (max-width: 1100px) {
  .nav__inner { height: 80px; }
  .nav__cta .btn--primary { padding: 11px 18px; font-size: .82rem; letter-spacing: .5px; }
  .nav__menu { inset: 80px 0 0 0; }
}
@media (max-width: 480px) {
  .nav__inner { height: 72px; }
  .nav__cta .btn--primary { padding: 10px 14px; font-size: .75rem; }
  .nav__menu { inset: 72px 0 0 0; padding: 24px 20px; }
}

@media (max-width: 768px) {
  .page-head { padding: 60px 0 40px; }
  .page-head h1 { margin-bottom: 10px; }
  .page-head p { font-size: .95rem; }
}

@media (max-width: 768px) {
  .cta-banner { padding: 50px 0; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cta-banner__inner > div:last-child { width: 100%; }
  .cta-banner__inner > div:last-child .btn { flex: 1; min-width: 0; justify-content: center; }
}

@media (max-width: 768px) {
  .footer { padding-top: 50px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; font-size: .75rem; padding: 20px 0; }
}

@media (max-width: 600px) {
  .whats-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whats-float svg { width: 26px; height: 26px; }
}

@media (max-width: 600px) {
  details { padding: 16px 18px; }
  details summary { font-size: .92rem; padding-right: 24px; }
}

@media (max-width: 600px) {
  .form__group input, .form__group select, .form__group textarea {
    padding: 12px 14px; font-size: 16px;
  }
}

@media (max-width: 600px) {
  .diff { padding: 32px 0; gap: 18px; }
  .diff__icon { width: 40px; height: 40px; }
  .diff__icon svg { width: 20px; height: 20px; }
  .diff__item h4 { font-size: .95rem; }
  .diff__item p { font-size: .8rem; }
}

@media (max-width: 700px) {
  .filters {
    flex-wrap: nowrap; overflow-x: auto;
    margin-left: -16px; margin-right: -16px;
    padding: 4px 16px 18px; justify-content: flex-start;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; font-size: .75rem; padding: 8px 14px; }
}

@media (max-width: 900px) {
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 1.2fr 1fr"],
  [style*="grid-template-columns: 1fr 1.2fr"],
  [style*="grid-template-columns: 1fr 1.3fr"],
  [style*="grid-template-columns: 1.3fr 1fr"],
  [style*="grid-template-columns: 1.4fr 1fr"],
  [style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 600px) {
  .topbar__left a:not(strong) { display: none; }
}
