/* ============================================================
   NETMÁQUINAS — Main Stylesheet
   Tractus Comércio e Serviços de Empilhadeiras LTDA
   ============================================================ */

:root {
  --red: #30478d;
  --red-deep: #243a73;
  --ink: #17181c;
  --graphite: #23262e;
  --muted: #7a7d86;
  --line: #ececef;
  --bg: #ffffff;
  --soft: #f6f6f8;
  --good: #1d8a4e;
  --shadow-sm: 0 2px 10px rgba(23,24,28,.05);
  --shadow: 0 12px 40px rgba(23,24,28,.09);
  --shadow-lg: 0 30px 70px rgba(23,24,28,.18);
  --r: 18px;
  --r-lg: 26px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: -.01em;
}
h1, h2, h3, h4 { font-weight: 900; line-height: 1.04; letter-spacing: -.03em; }
.ital { font-weight: 700; font-style: italic; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
::selection { background: var(--red); color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px; padding: 14px 26px;
  border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; font-family: inherit;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s, color .2s, box-shadow .2s;
}
.btn svg, .btn [data-lucide] { width: 18px; height: 18px; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 24px rgba(48,71,141,.28); }
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(48,71,141,.35); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ── Announce Bar ── */
.announce { background: var(--ink); color: #e9eaec; font-size: 13px; }
.announce .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 42px; }
.announce .l { display: flex; align-items: center; gap: 9px; opacity: .9; }
.announce .l .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(48,71,141,.25); }
.announce .r { display: flex; align-items: center; gap: 22px; }
.announce a { display: inline-flex; align-items: center; gap: 6px; opacity: .88; transition: .15s; }
.announce a:hover { opacity: 1; color: #fff; }
.announce svg, .announce [data-lucide] { width: 14px; height: 14px; }
@media (max-width: 760px) { .announce .l span { display: none; } }

/* ── Header / Nav ── */
header.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.8); backdrop-filter: blur(16px);
  transition: box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
header.nav .wrap { display: flex; align-items: center; gap: 30px; height: 80px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo .mark {
  width: 40px; height: 40px; background: var(--red);
  border-radius: 12px; display: grid; place-items: center; color: #fff;
  box-shadow: 0 6px 18px rgba(48,71,141,.32);
}
.logo .mark svg, .logo .mark [data-lucide] { width: 23px; height: 23px; }
.logo .name { font-weight: 900; font-size: 21px; letter-spacing: -.04em; line-height: 1; }
.logo small { display: block; font-weight: 700; font-size: 9.5px; letter-spacing: .22em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }
nav.main { display: flex; gap: 2px; margin-left: 8px; }
nav.main a { font-weight: 700; font-size: 14.5px; color: var(--graphite); padding: 10px 15px; border-radius: 11px; transition: .18s; }
nav.main a:hover { color: var(--red); background: var(--soft); }
nav.main a.nav-cta { background: var(--red); color: #fff !important; padding: 10px 20px; }
nav.main a.nav-cta:hover { background: #2a3d7d; transform: translateY(-1px); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.quote-btn { position: relative; }
.quote-count {
  position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px;
  padding: 0 5px; background: var(--ink); color: #fff;
  border-radius: 999px; font-size: 12px; font-weight: 700;
  display: grid; place-items: center; border: 2px solid #fff;
}
.burger { display: none; background: none; border: none; cursor: pointer; color: var(--ink); }
@media (max-width: 1080px) { nav.main { display: none; } .burger { display: grid; } }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; padding: 100px 0 120px; background: #0b1733; }
#heroCanvas { position: absolute; top: 0; left: 0; pointer-events: none; z-index: 1; }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-style: italic; font-size: 14px; color: #9fb1e3; margin-bottom: 24px; }
.eyebrow .bar { width: 30px; height: 2px; background: #9fb1e3; }
.hero h1 { font-size: clamp(38px, 5.8vw, 76px); margin-bottom: 24px; color: #fff; }
.hero h1 .ital { color: #7da8ff; }
.hero p.lead { font-size: 18px; color: #b9bcc5; max-width: 500px; margin-bottom: 36px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { border-color: rgba(255,255,255,.22); color: #fff; }
.hero .btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); transform: translateY(-2px); }
.stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.stats .n { font-weight: 900; font-size: 38px; line-height: 1; letter-spacing: -.04em; color: #fff; }
.stats .n span { color: #7da8ff; }
.stats .l { font-size: 13px; color: #8a8e98; margin-top: 7px; max-width: 130px; font-weight: 400; }
.hero-visual { position: relative; padding-bottom: 52px; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(22px); border-radius: var(--r-lg); padding: 34px;
  color: #fff; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hero-card::after { content: ""; position: absolute; right: -70px; top: -70px; width: 240px; height: 240px; background: var(--red); filter: blur(80px); opacity: .45; }
.hero-card .tag { position: relative; display: inline-block; font-weight: 700; font-style: italic; font-size: 13px; color: #9fb1e3; margin-bottom: 18px; }
.hero-card .imgbox { position: relative; border-radius: 16px; background: #fff; aspect-ratio: 1/1; display: grid; place-items: center; overflow: hidden; }
.hero-card .imgbox img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.hero-card h3 { position: relative; font-size: 21px; margin: 22px 0 6px; font-weight: 900; }
.hero-card .pr { position: relative; color: #b9bcc5; font-size: 14px; }
.hero-card .pr b { color: #fff; font-size: 20px; font-weight: 900; }
.float-badge {
  position: absolute; left: 16px; bottom: 0;
  background: #fff; color: var(--ink); border-radius: 16px; padding: 13px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 11px;
  font-weight: 700; font-size: 13.5px; white-space: nowrap;
}
.float-badge .ic { width: 40px; height: 40px; border-radius: 11px; background: #eafaef; color: var(--good); display: grid; place-items: center; flex: none; }
.float-badge .ic svg, .float-badge .ic [data-lucide] { width: 20px; height: 20px; }
.float-badge small { display: block; color: var(--muted); font-weight: 400; font-size: 11.5px; }
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; padding-bottom: 52px; }
  .stats { gap: 28px; }
}

/* ── Trust Bar ── */
.trust { background: var(--soft); }
.trust .wrap { display: flex; align-items: center; gap: 38px; flex-wrap: wrap; padding: 26px 30px; justify-content: center; }
.trust .badge { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--graphite); font-size: 14.5px; }
.trust .badge svg, .trust .badge [data-lucide] { width: 19px; height: 19px; color: var(--red); }

/* ── Sections ── */
section { padding: 96px 0; }
.sec-head { max-width: 640px; margin-bottom: 48px; }
.sec-head .k { font-weight: 700; font-style: italic; font-size: 14px; color: var(--red); margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(32px, 4.4vw, 52px); }
.sec-head p { color: var(--muted); margin-top: 16px; font-size: 17px; }

/* ── Categories ── */
.cats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cat {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 26px;
  cursor: pointer; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.cat .ci { width: 56px; height: 56px; border-radius: 15px; background: var(--soft); display: grid; place-items: center; color: var(--ink); margin-bottom: 22px; transition: .3s; }
.cat:hover .ci { background: var(--red); color: #fff; transform: rotate(-6deg); }
.cat .ci svg, .cat .ci [data-lucide] { width: 27px; height: 27px; }
.cat h3 { font-size: 20px; margin-bottom: 8px; }
.cat p { font-size: 14px; color: var(--muted); }
.cat .go { margin-top: 20px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--red); }
.cat .go svg, .cat .go [data-lucide] { width: 16px; height: 16px; transition: .25s; }
.cat:hover .go svg, .cat:hover .go [data-lucide] { transform: translateX(4px); }
@media (max-width: 980px) { .cats { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .cats { grid-template-columns: 1fr; } }

/* ── Catalog ── */
#catalogo { background: var(--soft); }
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }
.filter-sidebar { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 24px; position: sticky; top: 100px; }
.filter-group { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.filter-group:last-of-type { border-bottom: none; margin-bottom: 12px; padding-bottom: 0; }
.filter-title { font-weight: 700; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 13px; }
.filter-check { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink); cursor: pointer; margin-bottom: 9px; font-weight: 400; user-select: none; }
.filter-check input[type=checkbox] { width: 17px; height: 17px; accent-color: var(--red); cursor: pointer; flex: none; }
.range-labels { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 700; color: var(--graphite); margin-bottom: 10px; margin-top: 4px; }
.range-labels .range-cur { color: var(--red); }
.range-wrap input[type=range] { width: 100%; accent-color: var(--red); cursor: pointer; }
.btn-clear { width: 100%; padding: 10px; border: 2px solid var(--line); border-radius: 999px; background: none; font-family: inherit; font-weight: 700; font-size: 13.5px; color: var(--muted); cursor: pointer; transition: .2s; margin-top: 4px; }
.btn-clear:hover { border-color: var(--red); color: var(--red); }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.results-count { font-weight: 700; font-size: 15px; color: var(--graphite); }
.sort-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sort-select { font-family: inherit; font-size: 14px; font-weight: 700; padding: 10px 16px; border: 2px solid var(--line); border-radius: 999px; outline: none; cursor: pointer; color: var(--ink); background: var(--bg); transition: .2s; }
.sort-select:focus { border-color: var(--red); }
.search { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 999px; padding: 10px 18px; min-width: 220px; box-shadow: var(--shadow-sm); border: 2px solid transparent; transition: .2s; }
.search:focus-within { border-color: var(--red); }
.search svg, .search [data-lucide] { width: 17px; height: 17px; color: var(--muted); }
.search input { border: none; outline: none; font-family: inherit; font-size: 14px; width: 100%; background: none; color: var(--ink); }
.grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 1080px) { .grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .grid { grid-template-columns: 1fr; } }
@media (max-width: 980px) { .catalog-layout { grid-template-columns: 1fr; } .filter-sidebar { position: static; } }

/* ── Cards ── */
.card {
  background: var(--bg); border-radius: var(--r); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ph { aspect-ratio: 4/3; background: #fff; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.card .ph img { position: absolute; inset: 14px; width: calc(100% - 28px); height: calc(100% - 28px); object-fit: contain; transition: transform .4s; }
.card:hover .ph img { transform: scale(1.05); }
.card .ph .fallback { position: absolute; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(140deg,#23262e,#16181c); color: #fff; }
.card .ph .fallback svg, .card .ph .fallback [data-lucide] { width: 44px; height: 44px; color: var(--red); }
.card .ph .fallback b { font-weight: 900; font-size: 19px; letter-spacing: .02em; }

/* ── Carousel ── */
.catalog-carousel { display: flex; align-items: center; gap: 14px; }
.carousel-viewport { flex: 1; overflow: hidden; min-width: 0; }
@keyframes slideOutLeft  { to   { transform: translateX(-56px); opacity: 0; } }
@keyframes slideInRight  { from { transform: translateX(56px);  opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutRight { to   { transform: translateX(56px);  opacity: 0; } }
@keyframes slideInLeft   { from { transform: translateX(-56px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.grid.slide-out-left  { animation: slideOutLeft  .24s ease forwards; }
.grid.slide-out-right { animation: slideOutRight .24s ease forwards; }
.grid.slide-in-right  { animation: slideInRight  .24s ease; }
.grid.slide-in-left   { animation: slideInLeft   .24s ease; }
.car-btn { flex: none; width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--line); background: var(--bg); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); transition: background .2s, border-color .2s, color .2s, box-shadow .2s, transform .2s; }
.car-btn:hover:not(:disabled) { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 8px 24px rgba(48,71,141,.30); transform: scale(1.1); }
.car-btn:disabled { opacity: .25; cursor: not-allowed; }
.car-btn svg, .car-btn [data-lucide] { width: 22px; height: 22px; pointer-events: none; }
.page-counter { display: flex; justify-content: center; margin-top: 20px; }
.page-counter span { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.ver-mais-btn { color: var(--red); font-weight: 700; text-decoration: none; transition: color .15s; white-space: nowrap; }
.ver-mais-btn:hover { color: var(--red-deep); text-decoration: underline; }

/* ── Catalog page ── */
.catalog-page-hero { background: var(--graphite); color: #fff; padding: 44px 0 48px; }
.breadcrumb-bar { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #8a8e98; margin-bottom: 18px; }
.breadcrumb-bar a { color: #8a8e98; transition: .15s; }
.breadcrumb-bar a:hover { color: #fff; }
.breadcrumb-bar [data-lucide] { width: 14px; height: 14px; flex: none; }
.catalog-page-hero h1 { font-size: clamp(28px, 4vw, 46px); color: #fff; margin-bottom: 10px; }
.catalog-page-hero p { color: #b9bcc5; font-size: 15px; max-width: 560px; margin-bottom: 22px; }
.cat-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cat-hero-btns .btn-ghost { border-color: rgba(255,255,255,.25); color: #fff; }
.cat-hero-btns .btn-ghost:hover { border-color: #fff; }
.catalog-page-body { padding: 48px 0 80px; }

.card .ctag { position: absolute; top: 14px; left: 14px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 11px; border-radius: 8px; }
.card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card h3 { font-size: 16.5px; line-height: 1.2; margin-bottom: 14px; font-weight: 700; }
.card .specs { display: flex; gap: 18px; margin-bottom: 16px; }
.card .specs div { font-size: 12px; color: var(--muted); font-weight: 400; }
.card .specs b { display: block; color: var(--ink); font-size: 15px; font-weight: 900; margin-top: 1px; }
.card .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line); }
.card .price { font-weight: 900; font-size: 19px; }
.card .price small { display: block; font-weight: 400; font-size: 11px; color: var(--muted); }
.card .price.consult { font-size: 15px; color: var(--graphite); font-weight: 700; }
.add { width: 44px; height: 44px; border-radius: 13px; border: none; background: var(--red); color: #fff; cursor: pointer; display: grid; place-items: center; transition: .2s; flex: none; }
.add:hover { background: var(--red-deep); transform: scale(1.08); }
.add svg, .add [data-lucide] { width: 20px; height: 20px; }
.add.added { background: var(--good); }

/* ── Features ── */
.feats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feat { padding: 34px 30px; border-radius: var(--r); background: var(--bg); border: 1px solid var(--line); transition: .3s; }
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.feat .fi { width: 54px; height: 54px; border-radius: 15px; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 22px; }
.feat .fi svg, .feat .fi [data-lucide] { width: 26px; height: 26px; }
.feat h3 { font-size: 20px; margin-bottom: 10px; }
.feat p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .feats { grid-template-columns: 1fr; } }

/* ── CTA Band ── */
.cta-band {
  background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 64px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; right: -60px; bottom: -120px; width: 380px; height: 380px; background: var(--red); filter: blur(110px); opacity: .45; }
.cta-band h2 { font-size: clamp(30px, 4.2vw, 46px); position: relative; }
.cta-band p { color: #b9bcc5; margin-top: 16px; max-width: 440px; position: relative; font-size: 16.5px; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; position: relative; }
@media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; padding: 42px; } }

/* ── CTA Section Full Width ── */
.sec-cta { background: var(--ink); overflow: hidden; position: relative; padding: 72px 0; }
.sec-cta::before { content: ""; position: absolute; right: -60px; bottom: -120px; width: 380px; height: 380px; background: var(--red); filter: blur(110px); opacity: .45; pointer-events: none; }
.sec-cta .cta-band { background: transparent; border-radius: 0; padding: 0; overflow: visible; }
.sec-cta .cta-band::before { display: none; }

/* ── Contact Section ── */
.sec-contact { background: var(--soft); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.ci-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 22px; display: flex; align-items: flex-start; gap: 16px;
  transition: .3s;
}
.ci-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 13px; background: var(--soft);
  color: var(--red); display: grid; place-items: center; flex: none;
}
.ci-icon svg, .ci-icon [data-lucide] { width: 20px; height: 20px; }
.ci-card b { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.ci-card span { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.contact-form-box {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 40px 36px; box-shadow: var(--shadow-sm);
}
.contact-form-box h3 { font-size: 22px; margin-bottom: 24px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 6px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; color: var(--graphite); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 14px; padding: 11px 13px;
  border: 1.5px solid var(--line); border-radius: 11px; outline: none;
  background: var(--soft); transition: .15s; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); background: #fff; }
.field textarea { resize: vertical; min-height: 100px; }
.recaptcha-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.recaptcha-note a { color: var(--red); }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .form-grid-2 { grid-template-columns: 1fr; } .contact-form-box { padding: 28px 22px; } }

/* ── Map Section ── */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(15%); }

/* ── Footer ── */
footer { background: var(--graphite); color: #c7cad1; padding: 72px 0 32px; }
.fgrid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 38px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.09); }
footer .logo .name { color: #fff; }
footer .logo small { color: #8a8e98; }
footer .logo { margin-bottom: 18px; }
footer p.desc { font-size: 14px; line-height: 1.7; max-width: 330px; }
footer h4 { color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 11px; }
footer ul a { font-size: 14.5px; color: #c7cad1; transition: .15s; }
footer ul a:hover { color: var(--red); }
.fcontact div { display: flex; gap: 11px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.fcontact svg, .fcontact [data-lucide] { width: 17px; height: 17px; color: #fff; flex: none; margin-top: 3px; }
.fbottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: 12.5px; color: #8a8e98; }
@media (max-width: 820px) { .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fgrid { grid-template-columns: 1fr; } }

/* ── Quote Drawer ── */
.overlay { position: fixed; inset: 0; background: rgba(23,24,28,.55); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: .3s; z-index: 60; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 450px; max-width: 93vw; background: var(--soft); z-index: 70; transform: translateX(100%); transition: transform .42s cubic-bezier(.16,1,.3,1); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; background: #fff; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 21px; }
.drawer-head .x { background: none; border: none; cursor: pointer; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; transition: .15s; color: var(--ink); }
.drawer-head .x:hover { background: var(--soft); }
.drawer-body { flex: 1; overflow-y: auto; padding: 22px 26px; }
.empty { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty svg, .empty [data-lucide] { width: 56px; height: 56px; color: var(--line); margin-bottom: 18px; }
.qline { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.qline .qimg { width: 66px; height: 66px; border-radius: 13px; background: #fff; border: 1px solid var(--line); flex: none; display: grid; place-items: center; overflow: hidden; }
.qline .qimg img { width: 100%; height: 100%; object-fit: contain; padding: 7px; mix-blend-mode: multiply; }
.qline .qinfo { flex: 1; min-width: 0; }
.qline h4 { font-weight: 700; font-size: 14px; line-height: 1.3; margin-bottom: 3px; }
.qline .qcat { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
.qline .qprice { font-weight: 900; font-size: 15px; margin-top: 6px; }
.qctrl { display: flex; align-items: center; gap: 11px; margin-top: 9px; }
.stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; background: #fff; overflow: hidden; }
.stepper button { width: 30px; height: 30px; border: none; background: none; cursor: pointer; font-size: 17px; color: var(--graphite); transition: .15s; }
.stepper button:hover { background: var(--soft); color: var(--red); }
.stepper span { width: 32px; text-align: center; font-weight: 700; font-size: 14px; }
.qrm { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 12.5px; display: inline-flex; align-items: center; gap: 5px; margin-left: auto; font-family: inherit; }
.qrm:hover { color: var(--red); }
.qrm svg, .qrm [data-lucide] { width: 15px; height: 15px; }
.drawer-foot { background: #fff; border-top: 1px solid var(--line); padding: 22px 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.summary { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.summary span:first-child { font-size: 13.5px; color: var(--muted); }
.summary .total { font-weight: 900; font-size: 24px; }
.drawer-foot .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.hint { font-size: 11.5px; color: var(--muted); text-align: center; line-height: 1.5; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 26px; left: 50%; translate: -50% 30px;
  background: var(--ink); color: #fff; padding: 14px 22px;
  border-radius: 14px; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: .3s; z-index: 90;
}
.toast.show { opacity: 1; visibility: visible; translate: -50% 0; }
.toast svg, .toast [data-lucide] { width: 18px; height: 18px; color: #5fd28c; }

/* ── Mobile Menu ── */
.mobile-menu { position: fixed; inset: 0; background: #fff; z-index: 80; padding: 100px 30px 30px; transform: translateX(100%); transition: .35s cubic-bezier(.16,1,.3,1); overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; font-weight: 900; font-size: 26px; padding: 16px 0; border-bottom: 1px solid var(--line); letter-spacing: -.02em; }
.mobile-menu .x { position: absolute; top: 26px; right: 26px; background: none; border: none; cursor: pointer; color: var(--ink); }

/* ── Reveal Animation ── */
.reveal { opacity: 0; transform: translateY(24px); animation: rise .9s cubic-bezier(.16,1,.3,1) forwards; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .16s; }
.reveal.d3 { animation-delay: .24s; }
.reveal.d4 { animation-delay: .32s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ── LGPD Banner ── */
.lgpd-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--graphite); color: #d0d3db; z-index: 200; transform: translateY(100%); transition: transform .4s cubic-bezier(.16,1,.3,1); border-top: 1px solid rgba(255,255,255,.1); }
.lgpd-banner.show { transform: translateY(0); }
.lgpd-inner { display: flex; align-items: center; gap: 24px; padding-top: 16px; padding-bottom: 16px; flex-wrap: wrap; }
.lgpd-text { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 260px; }
.lgpd-text [data-lucide] { flex: none; width: 20px; height: 20px; color: var(--red); margin-top: 2px; }
.lgpd-text p { font-size: 13px; line-height: 1.6; }
.lgpd-link { background: none; border: none; color: inherit; font: inherit; text-decoration: underline; cursor: pointer; padding: 0; }
.lgpd-actions { display: flex; gap: 10px; flex-shrink: 0; }
.lgpd-actions .btn-ghost { border-color: rgba(255,255,255,.25); color: #fff; }

/* ── Modais ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(23,24,28,.65); backdrop-filter: blur(6px); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-box { background: var(--bg); border-radius: var(--r-lg); width: 100%; max-width: 500px; max-height: 90vh; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(20px); transition: transform .3s cubic-bezier(.16,1,.3,1); }
.modal-overlay.show .modal-box { transform: none; }
.modal-lg { max-width: 700px; }
.modal-head { padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.modal-head h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; }
.modal-head [data-lucide] { width: 20px; height: 20px; color: var(--red); }
.modal-head .x { background: none; border: none; cursor: pointer; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: var(--graphite); transition: .15s; }
.modal-head .x:hover { background: var(--soft); color: var(--red); }
.modal-body { flex: 1; overflow-y: auto; padding: 26px; }
.modal-body h4 { font-size: 14px; font-weight: 700; color: var(--red); margin: 20px 0 6px; text-transform: uppercase; letter-spacing: .04em; }
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { font-size: 14px; line-height: 1.7; color: var(--graphite); margin-bottom: 14px; }
.modal-body p:last-child { margin-bottom: 0; }
.modal-body a { color: var(--red); text-decoration: underline; }
.modal-foot { padding: 18px 26px; border-top: 1px solid var(--line); display: flex; justify-content: flex-end; gap: 10px; flex-shrink: 0; }

/* ── FAB — Botão flutuante de contato ── */
.fab-wrap { position: fixed; bottom: 32px; right: 28px; z-index: 150; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab-items { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; pointer-events: none; opacity: 0; transform: translateY(16px) scale(.95); transition: opacity .25s, transform .25s cubic-bezier(.16,1,.3,1); }
.fab-items.open { pointer-events: auto; opacity: 1; transform: none; }
.fab-item { display: grid; place-items: center; border: none; cursor: pointer; font-family: inherit; text-decoration: none; border-radius: 50%; width: 54px; height: 54px; color: #fff; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.fab-item:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.fab-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; }
.fab-icon [data-lucide], .fab-icon svg { width: 20px; height: 20px; }
.fab-wa    { background: #25d366; }
.fab-phone { background: var(--red); }
.fab-msg   { background: var(--ink); }
.fab-main { width: 58px; height: 58px; border-radius: 50%; background: var(--red); border: none; color: #fff; cursor: pointer; display: grid; place-items: center; box-shadow: 0 8px 28px rgba(48,71,141,.45); transition: background .2s, transform .2s, box-shadow .2s; }
.fab-main:hover { background: var(--red-deep); transform: scale(1.08); }
.fab-main [data-lucide] { width: 24px; height: 24px; }
/* ── Announce extras ── */
.announce-addr { display: inline-flex; align-items: center; gap: 6px; opacity: .88; }
@media (max-width: 900px) { .announce-addr { display: none; } }

/* ── Botão lateral — Orçamento ── */
.side-quote-btn { position: fixed; right: 0; top: 50%; transform: translateY(-50%) rotate(180deg); background: var(--red); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; gap: 8px; padding: 14px 12px; border-radius: 0 var(--r) var(--r) 0; writing-mode: vertical-rl; font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: .05em; box-shadow: -4px 0 20px rgba(48,71,141,.30); transition: background .2s, box-shadow .2s, transform .2s; z-index: 100; }
.side-quote-btn:hover { background: var(--red-deep); box-shadow: -6px 0 26px rgba(48,71,141,.45); transform: translateY(-50%) rotate(180deg) translateX(4px); }
.side-quote-btn [data-lucide] { width: 18px; height: 18px; transform: rotate(180deg); }

/* ── Voltar ao topo ── */
.back-top { position: fixed; bottom: 32px; left: 50%; translate: -50% 0; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity .3s, visibility .3s, transform .3s; z-index: 100; }
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--graphite); }
.back-top [data-lucide] { width: 20px; height: 20px; }
@media(max-width:600px) { .fab-icon { background: none; } .fab-item { width: 48px; height: 48px; } }

/* ── Chat Widget ── */
@keyframes chat-ring { 0%{box-shadow:0 4px 22px rgba(23,24,28,.38),0 0 0 0 rgba(48,71,141,.55)} 65%{box-shadow:0 4px 22px rgba(23,24,28,.38),0 0 0 14px rgba(48,71,141,0)} 100%{box-shadow:0 4px 22px rgba(23,24,28,.38),0 0 0 0 rgba(48,71,141,0)} }
.chat-bubble-btn { position: fixed; bottom: 32px; left: 24px; height: 52px; border-radius: 26px; padding: 0 18px 0 14px; background: var(--ink); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: transform .2s, box-shadow .2s; z-index: 150; animation: chat-ring 2.4s ease-in-out infinite; }
.chat-bubble-btn:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(23,24,28,.5); animation: none; }
.chat-bubble-btn svg { width: 22px; height: 22px; flex: none; }
.chat-bubble-label { font-size: 14px; font-weight: 600; white-space: nowrap; }
.chat-unread { position: absolute; top: -6px; left: 28px; background: var(--red); color: #fff; border-radius: 50%; width: 20px; height: 20px; font-size: 11px; font-weight: 700; display: none; place-items: center; border: 2px solid #fff; }
.chat-unread.show { display: grid; }
.wa-icon { fill: currentColor; stroke: none; flex: none; }
.chat-panel { position: fixed; bottom: 100px; left: 24px; width: 340px; max-height: 530px; background: var(--bg); border-radius: 20px; box-shadow: 0 20px 60px rgba(23,24,28,.24); display: flex; flex-direction: column; overflow: hidden; transform: scale(.9) translateY(20px); opacity: 0; visibility: hidden; transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s, visibility .3s; transform-origin: bottom left; z-index: 149; }
.chat-panel.open { transform: scale(1) translateY(0); opacity: 1; visibility: visible; }
.chat-ph { background: var(--ink); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.chat-ph .ch-av { width: 38px; height: 38px; border-radius: 50%; background: var(--red); display: grid; place-items: center; flex: none; }
.chat-ph .ch-av svg { width: 20px; height: 20px; }
.chat-ph .ch-info strong { display: block; font-size: 15px; font-weight: 700; }
.chat-ph .ch-info span { font-size: 12px; color: #9fb1e3; }
.chat-ph .ch-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; transition: .15s; }
.chat-ph .ch-close:hover { color: #fff; background: rgba(255,255,255,.1); }
.chat-ph .ch-close svg { width: 18px; height: 18px; }
.chat-reg { padding: 22px 20px; flex: 1; overflow-y: auto; }
.chat-reg p { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.chat-reg select { width: 100%; padding: 9px 12px; border: 1.5px solid var(--line); border-radius: 11px; font-family: inherit; font-size: 14px; background: var(--soft); outline: none; margin-bottom: 10px; display: block; color: var(--ink); cursor: pointer; }
.chat-reg input { width: 100%; padding: 10px 13px; border: 1.5px solid var(--line); border-radius: 11px; font-family: inherit; font-size: 14px; background: var(--soft); outline: none; transition: .15s; margin-bottom: 10px; display: block; }
.chat-reg input:focus { border-color: var(--ink); background: #fff; }
.chat-reg .btn-chat-start { width: 100%; padding: 12px; background: var(--ink); color: #fff; border: none; border-radius: 11px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: .2s; margin-top: 4px; }
.chat-reg .btn-chat-start:hover { background: #000; }
.chat-reg .btn-chat-start:disabled { opacity: .55; cursor: default; }
.chat-reg-err { font-size: 12px; color: #e53; margin-top: -6px; margin-bottom: 8px; display: none; }
.chat-msgs-wrap { flex: 1; display: none; flex-direction: column; min-height: 0; }
.chat-msgs-wrap.active { display: flex; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 14px 14px 6px; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { max-width: 82%; padding: 9px 13px; border-radius: 15px; font-size: 13.5px; line-height: 1.5; word-break: break-word; }
.chat-msg.visitor { background: var(--ink); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.admin { background: var(--soft); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg .mt { font-size: 9.5px; opacity: .55; margin-top: 4px; text-align: right; }
.chat-msg.admin .mt { text-align: left; }
.chat-typing { display: flex; gap: 4px; align-self: flex-start; padding: 10px 14px; background: var(--soft); border-radius: 15px; border-bottom-left-radius: 4px; }
.chat-typing span { width: 6px; height: 6px; background: var(--muted); border-radius: 50%; animation: chat-pulse 1.4s infinite ease-in-out; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chat-pulse { 0%,80%,100%{transform:scale(.6);opacity:.4} 40%{transform:scale(1);opacity:1} }
.chat-input-row { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); background: #fff; flex-shrink: 0; }
.chat-input-row input { flex: 1; padding: 9px 13px; border: 1.5px solid var(--line); border-radius: 20px; font-family: inherit; font-size: 13.5px; outline: none; transition: .15s; }
.chat-input-row input:focus { border-color: var(--ink); }
.chat-input-row button { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; transition: .2s; flex: none; }
.chat-input-row button:hover { background: var(--red); }
.chat-input-row button svg { width: 17px; height: 17px; }
@media(max-width:400px) { .chat-panel { width: calc(100vw - 48px); } }
