/* ============================================================
   GALERIA 175 — Landing Page
   Design system: tokens, type, motifs, sections
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --brand: #1A8BA0;          /* UI accent (overridable via Tweaks) */
  --brand-ink: #0f5563;      /* darker brand for text on light */
  --brand-soft: #e9f4f6;     /* brand wash */
  --logo: #00a5dd;           /* exact logo blue (do not alter logo) */

  --ink: #1a1a1a;            /* grafite — primary text */
  --muted: #6b7280;          /* cinza-medio — secondary text */
  --line: #e5e7eb;           /* cinza-claro — borders */
  --bg: #ffffff;
  --bg-2: #f8f9fa;           /* off-white */
  --warm: #f0ebe3;           /* neutro-quente */

  --radius-pill: 9999px;
  --radius-card: 20px;       /* overridable */
  --radius-foto: 16px;       /* overridable */

  --shadow: 0 8px 24px rgba(26,139,160,.08);
  --shadow-hover: 0 12px 32px rgba(26,139,160,.16);
  --shadow-soft: 0 2px 10px rgba(26,26,26,.04);

  --section-pad: 104px;      /* overridable via density */
  --maxw: 1240px;

  --font-head: 'Oswald', system-ui, sans-serif;   /* overridable */
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---- Type ---- */
h1, h2, h3, .head {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 6.2vw, 60px); line-height: 1.08; }
h2 { font-size: clamp(30px, 4.6vw, 44px); }
h3 { font-family: var(--font-body); font-weight: 700; font-size: 22px; text-transform: none; letter-spacing: -0.01em; line-height: 1.25; }
p  { text-wrap: pretty; }

.lead { font-size: clamp(17px, 2vw, 19px); color: var(--muted); line-height: 1.7; }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: var(--section-pad); }
.section--tight { padding-block: calc(var(--section-pad) * 0.7); }

/* ---- Section label (echoes the bar over GALERIA in the logo) ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 30px;
  color: var(--brand-ink);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

/* The signage bar motif — a short rule that can sit above a heading */
.barred { position: relative; padding-top: 22px; }
.barred::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 5px;
  background: var(--brand);
  border-radius: 3px;
}
.barred--center { text-align: center; }
.barred--center::before { left: 50%; transform: translateX(-50%); }

/* ---- Buttons (pill — conversa com a logo) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .005em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--brand-ink); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn--wa { background: #1faa4e; color: #fff; box-shadow: 0 8px 24px rgba(31,170,78,.18); }
.btn--wa:hover { background: #178a3f; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(31,170,78,.26); }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--brand-ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn--lg { padding: 17px 34px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---- Placeholder imagery (striped, monospace caption) ---- */
.ph {
  position: relative;
  border-radius: var(--radius-foto);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(26,139,160,.07) 0 12px,
      rgba(26,139,160,.0) 12px 24px),
    var(--warm);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  min-height: 160px;
}
.ph__tag {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11.5px;
  letter-spacing: .02em;
  color: var(--brand-ink);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(2px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 10px;
  margin: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.ph__tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex: none; }
.ph--cover { min-height: 100%; height: 100%; }

/* ---- Real photos (object-fit cover, mirrors .ph framing) ---- */
.foto {
  position: relative;
  border-radius: var(--radius-foto);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.foto > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-soft); }
.header__row { display: flex; align-items: center; gap: 24px; height: 84px; }
.header__logo { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  font-weight: 600; font-size: 15.5px; color: var(--ink);
  padding: 9px 14px; border-radius: var(--radius-pill);
  transition: background .2s, color .2s;
}
.nav__link:hover { background: var(--brand-soft); color: var(--brand-ink); }
.header__cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.header__cta .btn { padding: 11px 20px; font-size: 15px; }

.burger { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 14px; border: 1.5px solid var(--line); align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 84px 0 auto 0; z-index: 55;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow); padding: 16px 24px 26px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .3s, opacity .3s;
}
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a.nav__link { font-size: 18px; padding: 14px 12px; border-radius: 14px; }
.mobile-menu .btn { margin-top: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 56px; padding-bottom: var(--section-pad); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__title { margin: 18px 0 22px; }
.hero__title .pop { color: var(--brand); }
.hero__sub { max-width: 30em; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__copy .eyebrow { font-size: 22px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 38px; }
.hero__meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero__meta-num { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--ink); line-height: 1; }
.hero__meta-label { font-size: 13.5px; color: var(--muted); }
.hero__meta-divider { width: 1px; align-self: stretch; background: var(--line); }

/* hero collage */
.hero__art { position: relative; }
.hero__art .ph, .hero__art .foto { box-shadow: var(--shadow); }
.hero__art-main { aspect-ratio: 4/5; }
.hero__art-stack { position: absolute; right: -18px; bottom: -28px; width: 46%; aspect-ratio: 1/1; box-shadow: var(--shadow-hover); }
.hero__chip {
  position: absolute; left: -16px; top: 30px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 11px 18px 11px 13px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14.5px;
}
.hero__chip .dot { width: 28px; height: 28px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-ink); display: grid; place-items: center; }
.hero__chip .dot svg { width: 16px; height: 16px; }

.hero__blob { position: absolute; z-index: -1; width: 540px; height: 540px; border-radius: 50%; right: -160px; top: -120px;
  background: radial-gradient(circle at 30% 30%, var(--brand-soft), transparent 70%); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip { background: var(--bg-2); border-block: 1px solid var(--line); }
.strip__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; padding-block: 26px; }
.strip__item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); font-size: 15.5px; }
.strip__item svg { width: 22px; height: 22px; color: var(--brand); flex: none; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cats__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 46px; flex-wrap: wrap; }
.cats__head .lead { max-width: 34em; }
.cats__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.cat {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.cat__img { width: 100%; min-width: 0; min-height: 0; aspect-ratio: 4/3; border-radius: 0; border: none; }
.cat__body { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; }
.cat__name { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .01em; font-size: 19px; }
.cat__count { font-size: 13px; color: var(--muted); font-weight: 600; }
.cat__arrow { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-2); display: grid; place-items: center; color: var(--brand-ink); transition: background .25s, transform .25s, color .25s; flex: none; }
.cat:hover .cat__arrow { background: var(--brand); color: #fff; transform: rotate(-45deg); }
.cat__arrow svg { width: 18px; height: 18px; }
/* feature card spans two columns */
.cat--wide { grid-column: span 2; }
.cat--wide .cat__img { aspect-ratio: 16/9; }

/* ============================================================
   PRODUCTS / DESTAQUES
   ============================================================ */
.prods { background: var(--bg-2); }
.prods__head { text-align: center; max-width: 42em; margin: 0 auto 48px; }
.prods__head .lead { margin-top: 14px; }
.prods__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.prod {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.prod:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.prod__img { aspect-ratio: 4/3; border-radius: 0; border: none; }
.prod__img > img { transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.prod:hover .prod__img > img { transform: scale(1.04); }
.prod__body { display: flex; flex-direction: column; gap: 12px; padding: 24px 24px 26px; flex: 1; }
.prod__brand {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .14em; font-size: 12px; color: var(--brand-ink);
}
.prod__name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .005em; font-size: 24px; line-height: 1.05; margin-top: -4px; }
.prod__desc { color: var(--muted); font-size: 15px; line-height: 1.6; flex: 1; }
.prod__dims {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 9px;
  border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px;
  font-size: 13.5px; color: var(--ink); font-weight: 600;
}
.prod__dims svg { width: 18px; height: 18px; color: var(--brand); flex: none; }
.prod__dims-label { color: var(--muted); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 11.5px; white-space: nowrap; }
.prod__dims-val { white-space: nowrap; }
.prod .btn { margin-top: 4px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-2); }
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.about__art { position: relative; }
.about__art .ph-a { aspect-ratio: 5/6; box-shadow: var(--shadow); }
.about__badge {
  position: absolute; right: -22px; bottom: 34px;
  background: var(--brand); color: #fff; border-radius: var(--radius-card);
  padding: 22px 26px; box-shadow: var(--shadow-hover); max-width: 220px;
}
.about__badge .n { font-family: var(--font-head); font-weight: 700; font-size: 40px; line-height: 1; }
.about__badge .t { font-size: 14px; opacity: .92; margin-top: 4px; }
.about__title { margin: 14px 0 20px; }
.about__list { display: grid; gap: 18px; margin-top: 30px; }
.about__item { display: flex; gap: 15px; align-items: flex-start; }
.about__ic { width: 44px; height: 44px; border-radius: 13px; background: var(--brand-soft); color: var(--brand-ink); display: grid; place-items: center; flex: none; }
.about__ic svg { width: 22px; height: 22px; }
.about__item h3 { margin-bottom: 2px; }
.about__item p { color: var(--muted); font-size: 15.5px; }

/* ============================================================
   GALLERY / AMBIENTES
   ============================================================ */
.gallery__head { text-align: center; max-width: 40em; margin: 0 auto 48px; }
.gallery__head .lead { margin-top: 14px; }
.masonry { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 12px; gap: 18px; }
.tile { position: relative; border-radius: var(--radius-foto); overflow: hidden; cursor: pointer; }
.tile .ph, .tile .foto { height: 100%; min-height: 0; border-radius: 0; border: none; }
.tile .ph { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.tile:hover .ph { transform: scale(1.04); }
.tile .foto > img { transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.tile:hover .foto > img { transform: scale(1.04); }
.tile__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,85,99,.55), transparent 55%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.tile:hover .tile__veil { opacity: 1; }
.tile__veil span { color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.tile__veil svg { width: 18px; height: 18px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(15,18,20,.86); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 30px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__frame { width: min(820px, 92vw); }
.lightbox__frame .ph { aspect-ratio: 3/2; min-height: 0; box-shadow: 0 30px 80px rgba(0,0,0,.5); background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 12px, rgba(255,255,255,0) 12px 24px), #2b2f31; border-color: rgba(255,255,255,.12); }
.lightbox__frame .ph__tag { background: rgba(0,0,0,.5); color: #fff; border-color: rgba(255,255,255,.18); }
.lightbox__frame .foto { aspect-ratio: 3/2; border: none; box-shadow: 0 30px 80px rgba(0,0,0,.5); background: #2b2f31; }
.lightbox__frame .foto > img { object-fit: contain; background: #15181a; }
.lightbox__cap { color: #fff; text-align: center; margin-top: 16px; font-weight: 600; }
.lightbox__close { position: absolute; top: 22px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.lightbox__close:hover { background: rgba(255,255,255,.22); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__nav.prev { left: 22px; } .lightbox__nav.next { right: 22px; }
.lightbox__nav svg, .lightbox__close svg { width: 24px; height: 24px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 46px; }
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s, box-shadow .3s;
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testi__stars { display: flex; gap: 3px; color: #f0a500; }
.testi__stars svg { width: 18px; height: 18px; }
.testi__quote { font-size: 16.5px; line-height: 1.65; color: var(--ink); }
.testi__who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.testi__av { width: 46px; height: 46px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-ink); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 18px; flex: none; }
.testi__name { font-weight: 700; font-size: 15.5px; }
.testi__role { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   LOCATION
   ============================================================ */
.loc { background: var(--warm); }
.loc__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.loc__title { margin: 14px 0 22px; }
.loc__rows { display: grid; gap: 20px; margin: 28px 0 32px; }
.loc__row { display: flex; gap: 15px; align-items: flex-start; }
.loc__ic { width: 46px; height: 46px; border-radius: 13px; background: #fff; color: var(--brand-ink); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-soft); }
.loc__ic svg { width: 22px; height: 22px; }
.loc__row h3 { margin-bottom: 2px; font-size: 17px; }
.loc__row p { color: var(--muted); font-size: 15.5px; }
.loc__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.loc__map { position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; border: 1px solid var(--line); }
.loc__map .ph { height: 100%; min-height: 0; border: none; border-radius: 0; background:
    repeating-linear-gradient(0deg, rgba(26,139,160,.06) 0 22px, transparent 22px 44px),
    repeating-linear-gradient(90deg, rgba(26,139,160,.06) 0 22px, transparent 22px 44px),
    var(--bg-2); }
.loc__pin { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-100%); display: flex; flex-direction: column; align-items: center; }
.loc__pin .pin-dot { width: 50px; height: 50px; border-radius: 50% 50% 50% 0; background: var(--brand); transform: rotate(-45deg); display: grid; place-items: center; box-shadow: var(--shadow-hover); }
.loc__pin .pin-dot svg { transform: rotate(45deg); color: #fff; width: 24px; height: 24px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta { padding-block: var(--section-pad); }
.finalcta__card {
  position: relative; overflow: hidden;
  background: var(--brand); color: #fff;
  border-radius: 32px; padding: clamp(40px, 6vw, 76px);
  text-align: center;
}
.finalcta__card::before, .finalcta__card::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.finalcta__card::before { width: 320px; height: 320px; top: -120px; right: -80px; }
.finalcta__card::after { width: 240px; height: 240px; bottom: -120px; left: -60px; }
.finalcta h2 { color: #fff; position: relative; }
.finalcta .lead { color: rgba(255,255,255,.9); max-width: 32em; margin: 18px auto 30px; position: relative; }
.finalcta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #cfd3d6; padding-block: 64px 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; }
.footer__logo { height: 76px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__about { font-size: 15px; color: #9aa1a6; max-width: 30em; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.footer__social a:hover { background: var(--brand); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__col h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: 15px; color: #fff; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: #9aa1a6; font-size: 15px; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #7e858a; }

/* ---- floating whatsapp ---- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 60px; height: 60px; border-radius: 50%; background: #1faa4e; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(31,170,78,.4); transition: transform .25s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { max-width: 460px; margin-inline: auto; width: 100%; }
  .about__grid, .loc__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__art, .loc__map { max-width: 480px; }
  .cats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prods__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat--wide { grid-column: span 2; }
  .testi__grid { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  :root { --section-pad: 64px; }
  .cats__grid { grid-template-columns: 1fr; }
  .prods__grid { grid-template-columns: 1fr; }
  .cat--wide { grid-column: span 1; }
  .masonry { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__meta-divider { display: none; }
  .strip__row { justify-content: flex-start; }
  .about__badge { right: 12px; }
}


/* ============================================================
   MAPA (adicionado no build de producao)
   Substitui o placeholder hachurado do prototipo por um mapa real.
   pointer-events:none deixa o clique atravessar para o <a> que
   abre o Google Maps, preservando o comportamento do design.
   ============================================================ */
.loc__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
