/* ============================================================
   K2 · Newkar — Equipamentos para supermercado
   Sistema visual: preto quente + vermelho K2, Archivo/Hanken
   ============================================================ */

:root {
  --ink: #16140f;
  --ink-2: #2b2722;
  --paper: #ffffff;
  --bone: #f4f2ee;
  --bone-2: #ece9e3;
  --steel: #e0ddd6;
  --muted: #6f6a62;
  --muted-2: #948e84;

  --red: #da291d;
  --red-deep: #b21c1c;
  --red-ink: #7d1410;

  --wa: #25d366;
  --wa-deep: #1eb457;

  --gold: #e8a33d;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 18px;
  --pill: 999px;

  --shadow-sm: 0 2px 10px rgba(22, 20, 15, 0.06);
  --shadow: 0 14px 40px rgba(22, 20, 15, 0.10);
  --shadow-hard: 8px 8px 0 var(--ink);
  --shadow-hard-red: 7px 7px 0 var(--red);

  --maxw: 1200px;
  --pad: clamp(1.1rem, 5vw, 2.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}
.eyebrow.center { justify-content: center; }

.lead {
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 60ch;
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: #f3efe7; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-top: 0.5rem;
}
.section--ink .section-title { color: #fff; }
.section--ink .lead { color: #c7c0b4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 1.05em 1.6em;
  border-radius: var(--pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(.2,.7,.3,1), background 0.18s, box-shadow 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn svg, .btn img { width: 1.2em; height: 1.2em; flex: none; }
.btn--wa { background: var(--wa); color: #08361b; }
.btn--wa:hover { background: var(--wa-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn--wa:active { transform: translateY(0); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #000; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--sm { padding: 0.7em 1.05em; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* rebrand announcement bar */
.rebrand-bar {
  background: var(--ink);
  color: #efe9df;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 0.6rem var(--pad);
  line-height: 1.4;
}
.rebrand-bar b { font-weight: 800; color: #fff; }
.rebrand-bar b:last-of-type { color: #ff7a6e; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--steel);
}
.header-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 0.85rem; flex: none; }
.brand__mark { height: 52px; width: auto; }
.brand__div { width: 1px; height: 34px; background: var(--steel); }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__word b {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand__word span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.nav a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .2s;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 0.8rem; flex: none; }
.header-phone {
  display: flex; flex-direction: column; line-height: 1.1; text-align: right;
}
.header-phone small { font-size: 0.66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.header-phone b { font-family: var(--font-display); font-size: 1.02rem; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--steel);
  border-radius: var(--r-sm);
  background: #fff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.burger span { width: 22px; height: 2px; background: var(--ink); transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 78px 0 auto 0;
  background: #fff;
  border-bottom: 1px solid var(--steel);
  padding: 1rem var(--pad) 1.6rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 55;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 0.85rem 0; font-weight: 600; border-bottom: 1px solid var(--bone-2); }
.mobile-nav .btn { margin-top: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  color: #f3efe7;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: linear-gradient(135deg, transparent 40%, rgba(218,41,29,0.16) 100%);
  transform: skewX(-12deg);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  color: #fff;
  background: var(--red);
  padding: 0.45em 0.9em;
  border-radius: var(--pill);
  font-size: 0.72rem;
}
.hero__eyebrow::before { background: #fff; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  margin: 1.3rem 0 0;
  color: #fff;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero h1 .sup { color: var(--red); }
.hero__sub {
  margin-top: 1.3rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #cfc8bc;
  max-width: 46ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; }
.trust-item b { font-family: var(--font-display); font-size: 1.55rem; display: block; line-height: 1; color: #fff; }
.trust-item small { font-size: 0.8rem; color: #b7b0a4; }
.stars { color: var(--gold); letter-spacing: 1px; font-size: 1rem; }

.hero__media { position: relative; }
.hero__photo {
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  background: #fff;
}
.hero__badge {
  position: absolute;
  left: -14px; bottom: -18px;
  background: var(--red);
  color: #fff;
  border-radius: var(--r);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-hard);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 250px;
}
.hero__badge b { font-family: var(--font-display); font-size: 1.05rem; display: block; line-height: 1.1; }
.hero__badge small { font-size: 0.78rem; opacity: .92; }
.hero__badge .ic { font-size: 1.6rem; }

/* marquee strip under hero */
.logos-strip {
  background: var(--bone);
  border-bottom: 1px solid var(--steel);
  padding: 1.1rem 0;
  overflow: hidden;
}
.logos-strip__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.logos-strip:hover .logos-strip__inner { animation-play-state: paused; }
.logos-strip__inner span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--muted-2);
  letter-spacing: -0.01em;
  flex: none;
}
.logos-strip__inner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--steel);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d2cec6; }
.cat-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bone-2);
  overflow: hidden;
}
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.6rem;
  background:
    repeating-linear-gradient(45deg, #efece6 0 12px, #eae7e0 12px 24px);
  color: var(--muted);
}
.cat-card__ph svg { width: 56px; height: 56px; stroke: var(--ink-2); opacity: .8; }
.cat-card__ph span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.cat-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(22,20,15,.82);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0.35em 0.7em;
  border-radius: var(--pill);
  backdrop-filter: blur(4px);
}
.cat-card__body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.cat-card__body h3 { font-size: 1.32rem; }
.cat-card__body p { color: var(--muted); font-size: 0.95rem; margin: 0.5rem 0 1.1rem; flex: 1; }
.cat-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--red);
  align-self: flex-start;
  white-space: nowrap;
}
.cat-link svg { width: 1.05em; height: 1.05em; transition: transform .2s; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }

/* ---------- Featured product grid (3 items, gôndola hero) ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.4rem;
}
.prod-card {
  background: #fff;
  border: 1px solid var(--steel);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d2cec6; }
.prod-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bone-2);
}
.prod-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.prod-card:hover .prod-card__media img { transform: scale(1.06); }
.prod-card__body { padding: 1.2rem 1.35rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.prod-card__body h3 { font-size: 1.5rem; }
.prod-card__body p { color: var(--muted); font-size: 0.96rem; margin: 0.5rem 0 1.1rem; flex: 1; }
/* gôndola featured: tall card on the left spanning both rows */
.prod-card--feat { grid-row: 1 / span 2; }
.prod-card--feat .prod-card__media { aspect-ratio: auto; flex: 1; min-height: 320px; }
.prod-card--feat .prod-card__body h3 { font-size: 2rem; }
.prod-card--feat .prod-card__body p { font-size: 1.02rem; }
.prod-note {
  margin: 1.6rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
}
.prod-note a { color: var(--red); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 860px) {
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card--feat { grid-row: auto; }
  .prod-card--feat .prod-card__media { aspect-ratio: 16/10; min-height: 0; }
}

/* ============================================================
   MODES (venda / locação / eventos)
   ============================================================ */
.modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.mode {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r);
  padding: 2rem 1.7rem;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.mode:hover { transform: translateY(-4px); border-color: var(--red); }
.mode__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--red);
  letter-spacing: .1em;
}
.mode h3 { font-size: 1.55rem; color: #fff; margin: 0.8rem 0 0.6rem; }
.mode p { color: #c1bab0; font-size: 0.98rem; margin: 0 0 1.4rem; }
.mode ul { list-style: none; padding: 0; margin: 0 0 0.4rem; display: grid; gap: 0.55rem; }
.mode li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: #ded8cd; }
.mode li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; stroke: var(--wa); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.benefits__list { display: grid; gap: 1rem; }
.benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--steel);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.benefit__ic {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--red);
  display: grid; place-items: center;
}
.benefit__ic svg { width: 22px; height: 22px; stroke: #fff; }
.benefit b { font-family: var(--font-display); font-size: 1.08rem; display: block; }
.benefit p { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.92rem; }

.benefits__aside {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  position: relative;
  overflow: hidden;
}
.benefits__aside::after {
  content: "K²";
  position: absolute;
  right: -10px; bottom: -40px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12rem;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.benefits__aside .eyebrow { color: #ff7a6e; }
.benefits__aside .eyebrow::before { background: #ff7a6e; }
.benefits__aside h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin: 0.7rem 0 0.9rem; position: relative; z-index: 2; }
.benefits__aside p { color: #cfc8bc; position: relative; z-index: 2; margin: 0 0 1.6rem; }
.benefits__aside .btn { position: relative; z-index: 2; }
.price-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--pill);
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.4rem;
  position: relative; z-index: 2;
}
.price-pill small { font-size: 0.78rem; color: #b7b0a4; white-space: nowrap; }
.price-pill b { font-family: var(--font-display); font-size: 1.35rem; color: var(--wa); white-space: nowrap; }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--steel);
  border: 1px solid var(--steel);
  border-radius: var(--r);
  overflow: hidden;
}
.client {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 1.7rem 1rem;
  min-height: 100px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  text-align: center;
  transition: background .2s, color .2s;
}
.client:hover { background: var(--ink); color: #fff; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
  background: var(--bone-2);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure::after {
  content: "Ampliar";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: rgba(22,20,15,.45);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .25s;
}
.gallery figure:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2rem; }
.stat {
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}
.stat b { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem); display: block; line-height: 1; }
.stat span { color: var(--muted); font-size: 0.9rem; }
.about__media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 3/3.4;
  object-fit: cover;
}

/* ============================================================
   SHIPPING band
   ============================================================ */
.ship {
  background: var(--red);
  color: #fff;
}
.ship__row {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.ship__row svg { width: 54px; height: 54px; stroke: #fff; flex: none; }
.ship h3 { font-size: clamp(1.4rem, 3vw, 2rem); color: #fff; }
.ship p { margin: 0.3rem 0 0; color: #ffe2de; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta {
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.finalcta h2 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; max-width: 18ch; margin: 0 auto; }
.finalcta h2 em { font-style: normal; color: var(--red); }
.finalcta p { color: #cfc8bc; max-width: 50ch; margin: 1.2rem auto 0; }
.finalcta__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* ============================================================
   MAP + FOOTER
   ============================================================ */
.map-wrap { height: 440px; background: var(--bone-2); position: relative; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(1.02); }

.footer { background: #0f0e0a; color: #c8c2b7; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer__brand .brand__word b { color: #fff; }
.footer__brand p { margin: 1.1rem 0 1.4rem; max-width: 38ch; color: #9b9488; font-size: 0.95rem; }
.footer h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: .14em; color: #fff; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer ul a { color: #b7b0a4; font-size: 0.95rem; }
.footer ul a:hover { color: var(--red); }
.footer__contact li { display: flex; gap: 0.6rem; align-items: flex-start; color: #b7b0a4; font-size: 0.95rem; line-height: 1.45; }
.footer__contact svg { width: 17px; height: 17px; stroke: var(--red); flex: none; margin-top: 3px; }
.footer__bottom {
  margin-top: 2.6rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: #79736a;
}
.footer__social { display: flex; gap: 0.7rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.footer__social a:hover { background: var(--red); border-color: var(--red); }
.footer__social svg { width: 18px; height: 18px; stroke: #fff; }

/* float whatsapp */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 70;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--wa);
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .2s;
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,.45); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0.0); }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(12,11,8,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 4vw;
  opacity: 0;
  transition: opacity .25s;
}
.lightbox.show { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--r); box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__close {
  position: absolute; top: 22px; right: 26px;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: #fff; font-size: 1.6rem; cursor: pointer;
  display: grid; place-items: center;
}
.lightbox__close:hover { background: var(--red); border-color: var(--red); }

/* reveal — kept as a no-op hook; content is always visible (no load-time
   opacity animation, which can stick invisible when an iframe is backgrounded) */
.reveal { opacity: 1; transform: none; }

/* ============================================================
   LOCAÇÕES — square photo gallery (destaque)
   ============================================================ */
.locgal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.locgal figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r);
  cursor: zoom-in;
  background: var(--bone-2);
  border: 1px solid var(--steel);
}
.locgal img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.3,1); }
.locgal figure:hover img { transform: scale(1.07); }
.locgal figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.6rem 0.9rem 0.7rem;
  background: linear-gradient(to top, rgba(12,11,8,.82), transparent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
}
.locgal figure:hover figcaption { opacity: 1; transform: none; }
.locgal__zoom {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(22,20,15,.55);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  opacity: 0; transition: opacity .25s;
}
.locgal figure:hover .locgal__zoom { opacity: 1; }
.locgal__zoom svg { width: 15px; height: 15px; stroke: #fff; }
.locgal__more {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: 1.6rem;
}

/* lightbox navigation (prev/next + counter) */
.lightbox__stage { position: relative; display: grid; place-items: center; width: 100%; height: 100%; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .15s;
  z-index: 2;
}
.lb-nav:hover { background: var(--red); border-color: var(--red); }
.lb-nav:active { transform: translateY(-50%) scale(.93); }
.lb-nav svg { width: 24px; height: 24px; stroke: #fff; fill: none; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: #fff; font-family: var(--font-display); font-weight: 700;
  font-size: .85rem; letter-spacing: .06em;
  background: rgba(22,20,15,.6); padding: .35rem .9rem; border-radius: var(--pill);
  backdrop-filter: blur(4px);
}
@media (max-width: 640px) {
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}

/* ============================================================
   CATÁLOGO — teaser band on home + full catalog page
   ============================================================ */
.cat-teaser { display: flex; align-items: center; gap: clamp(1.2rem,4vw,3rem); flex-wrap: wrap; justify-content: space-between; }
.cat-teaser__chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.cat-teaser__chips span {
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  padding: .5em 1em; border-radius: var(--pill);
  border: 1px solid var(--steel); background: #fff; color: var(--ink-2);
}

/* catalog page */
.cat-page-head { padding-block: clamp(2.2rem,5vw,3.4rem) 0; }
.catfilter {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin: 1.8rem 0 0;
  position: sticky; top: 78px; z-index: 30;
  padding: .9rem 0; background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
}
.catfilter button {
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  padding: .6em 1.1em; border-radius: var(--pill);
  border: 1.5px solid var(--steel); background: #fff; color: var(--ink-2);
  cursor: pointer; transition: all .18s; white-space: nowrap;
}
.catfilter button:hover { border-color: var(--ink-2); }
.catfilter button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.cat-group { margin-top: clamp(2rem,4vw,3rem); }
.cat-group__head { display: flex; align-items: baseline; gap: .9rem; margin-bottom: 1.3rem; }
.cat-group__head h2 { font-size: clamp(1.5rem,3.5vw,2.1rem); }
.cat-group__head span { font-size: .9rem; color: var(--muted); font-weight: 600; }
.cat-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  color: var(--red); text-decoration: none; white-space: nowrap;
}
.cat-link svg { width: 17px; height: 17px; transition: transform .18s; }
.cat-link:hover svg { transform: translateX(3px); }
@media (max-width: 560px) { .cat-link { display: none; } }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}
.cat-item {
  background: #fff; border: 1px solid var(--steel); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d2cec6; }
.cat-item__media { position: relative; aspect-ratio: 1/1; background: var(--bone-2); overflow: hidden; cursor: zoom-in; }
.cat-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-item:hover .cat-item__media img { transform: scale(1.05); }
.cat-item__media .cat-card__ph { position: absolute; inset: 0; }
.cat-item__tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(22,20,15,.82); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: .66rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35em .7em; border-radius: var(--pill); backdrop-filter: blur(4px);
}
.cat-item__zoom {
  position: absolute; top: 10px; right: 10px; width: 30px; height: 30px;
  border-radius: 50%; background: rgba(22,20,15,.55); backdrop-filter: blur(4px);
  display: grid; place-items: center; opacity: 0; transition: opacity .2s;
}
.cat-item__media:hover .cat-item__zoom { opacity: 1; }
.cat-item__zoom svg { width: 15px; height: 15px; stroke: #fff; }
.cat-item__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.cat-item__body h3 { font-size: 1.2rem; line-height: 1.12; }
.cat-stock {
  display: inline-flex; align-items: center; gap: .4rem;
  align-self: flex-start;
  margin: .7rem 0 0;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  color: var(--mint-ink, #1f8a4c);
  background: #e7f5ec; border: 1px solid #bfe3cc;
  padding: .32em .7em; border-radius: var(--pill);
}
.cat-stock b { font-weight: 800; }
.cat-spec { list-style: none; padding: 0; margin: .7rem 0 1.1rem; display: grid; gap: .35rem; flex: 1; }
.cat-spec li { display: flex; gap: .5rem; align-items: baseline; font-size: .88rem; color: var(--muted); }
.cat-spec li b { color: var(--ink-2); font-weight: 600; min-width: 88px; flex: none; }
.cat-color { display: inline-flex; gap: .35rem; align-items: center; flex-wrap: wrap; margin: 0 0 1.1rem; }
.cat-color .sw { width: 15px; height: 15px; border-radius: 50%; border: 1px solid var(--steel); }
.cat-color small { font-size: .8rem; color: var(--muted); }
.cat-item .btn { margin-top: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }
.faq-item {
  background: #fff; border: 1px solid var(--steel); border-radius: var(--r);
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: #d2cec6; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
  color: var(--ink); line-height: 1.25;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ic {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--bone); display: grid; place-items: center;
  transition: background .2s, transform .25s; margin-left: auto;
}
.faq-item summary .q-ic svg { width: 16px; height: 16px; stroke: var(--ink-2); transition: stroke .2s; }
.faq-item[open] summary .q-ic { background: var(--red); transform: rotate(180deg); }
.faq-item[open] summary .q-ic svg { stroke: #fff; }
.faq-item__a { padding: 0 1.3rem 1.25rem; color: var(--muted); font-size: .98rem; line-height: 1.6; max-width: 64ch; }
.faq-item__a b { color: var(--ink-2); font-weight: 600; }
.faq-cta {
  margin-top: 2.2rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.1rem;
}
.faq-cta p { font-size: clamp(1.05rem,2.2vw,1.28rem); font-family: var(--font-display); font-weight: 700; color: var(--ink); max-width: 30ch; }

@media (max-width: 980px) {
  .locgal { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .locgal { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .catfilter { top: 66px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; }
  .modes { grid-template-columns: 1fr; }
  .benefits, .about { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-row { height: 66px; gap: 0.8rem; }
  .brand__mark { height: 42px; }
  .brand__word { display: none; }
  .header-cta .btn span.lbl { display: none; }
  .header-cta .btn { padding: 0.8em; }
  .mobile-nav { inset-block-start: 66px; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .g-wide { grid-column: span 2; }
  .hero__badge { left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
