/* =================================================================
   UNIRENTAL — Design System
   Premium institutional · Light mode · Industrial high-end
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --orange:        #F47A20;
  --orange-600:    #E26C13;
  --orange-700:    #C75A0A;
  --orange-soft:   #FFF1E6;
  --orange-glow:   rgba(244,122,32,.22);

  /* Ink / neutrals (light mode) */
  --ink:           #10151F;   /* headings */
  --ink-2:         #28313F;   /* strong body */
  --slate:         #5A6573;   /* body */
  --slate-2:       #8A95A3;   /* muted */
  --line:          #E7EAEF;   /* borders */
  --line-2:        #EFF2F6;
  --bg:            #FFFFFF;
  --bg-soft:       #F7F8FA;   /* section alt */
  --bg-soft-2:     #F2F4F7;
  --ink-section:   #0E1420;   /* dark feature section */
  --ink-section-2: #161E2C;

  --wa:            #25D366;

  /* Type */
  --f-head: "Sora", "Space Grotesk", system-ui, sans-serif;
  --f-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --container-wide: 1400px;
  --radius:   18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(16,21,31,.04), 0 2px 8px rgba(16,21,31,.04);
  --shadow:    0 4px 12px rgba(16,21,31,.05), 0 18px 40px rgba(16,21,31,.07);
  --shadow-lg: 0 20px 60px rgba(16,21,31,.12);
  --shadow-orange: 0 12px 30px rgba(244,122,32,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --nav-h: 84px;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overscroll-behavior: none; background: #10151F; }
body {
  font-family: var(--f-body);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,video { display: block; max-width: 100%; }
html,body { max-width: 100%; }
.eyebrow { white-space: normal; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
input,textarea { font-family: inherit; }
::selection { background: var(--orange); color: #fff; }

h1,h2,h3,h4 { font-family: var(--f-head); color: var(--ink); line-height: 1.1; font-weight: 600; letter-spacing: -.02em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.container-wide { max-width: var(--container-wide); }
.section { padding: clamp(72px, 9vw, 140px) 0; }
.section-sm { padding: clamp(56px, 6vw, 88px) 0; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }

/* ---------- Typography helpers ---------- */
.display {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 600;
}
.h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); letter-spacing: -.03em; }
.h2 { font-size: clamp(1.8rem, 3.4vw, 2.85rem); letter-spacing: -.025em; }
.h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--slate); line-height: 1.6; }
.muted { color: var(--slate-2); }
.grad-text { color: var(--orange); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-head);
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-700);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.eyebrow.is-light { color: var(--orange); }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; }
.section-head .h2 { margin-top: 16px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 600; font-size: .96rem; letter-spacing: -.01em;
  padding: 15px 26px; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(244,122,32,.36); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.22); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.3); }
.btn--wa:hover { background: #1fbe5a; transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-weight: 600; color: var(--ink); font-size: .95rem;
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .3s var(--ease); color: var(--orange); }
.link-arrow:hover { color: var(--orange-700); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =================================================================
   HEADER
   ================================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.header__inner { width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Transparent header over a dark hero (home): light text + blur (sem linha embaixo) */
.header--over-dark:not(.is-scrolled) { background: transparent; }
.header--over-dark:not(.is-scrolled)::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,15,19,.34), rgba(12,15,19,0));
  backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
  -webkit-mask-image: linear-gradient(180deg, #000 52%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 52%, transparent 100%);
}
.header--over-dark:not(.is-scrolled) .brand__word { color: #fff; }
.header--over-dark:not(.is-scrolled) .nav__link { color: rgba(255,255,255,.88); }
.header--over-dark:not(.is-scrolled) .nav__link:hover,
.header--over-dark:not(.is-scrolled) .nav__link.is-active { color: #fff; }
.header--over-dark:not(.is-scrolled) .burger span { background: #fff; }

.header.is-scrolled {
  background: linear-gradient(90deg, #dcdee1 0%, #eef0f2 50%, #e1e3e6 100%);
  box-shadow: 0 1px 0 rgba(16,21,31,.06), 0 8px 30px rgba(16,21,31,.06);
  height: 72px;
  border-bottom-color: rgba(16,21,31,.08);
}

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 34px; height: 38px; object-fit: contain; }
.brand__word { font-family: var(--f-head); font-weight: 700; font-size: 1.32rem; letter-spacing: -.03em; color: var(--ink); line-height: 1; }
.brand__word b { color: var(--orange); font-weight: 700; }

/* Nav */
.nav { display: flex; align-items: center; gap: 12px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--f-head); font-weight: 500; font-size: .92rem; color: var(--ink-2);
  padding: 9px 13px; border-radius: 100px; transition: color .25s, background .25s;
}
.nav__link svg { width: 14px; height: 14px; transition: transform .3s var(--ease); opacity: .65; }
.nav__link:hover { color: var(--orange-700); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }
.nav__link.is-active { color: var(--orange-700); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 320px; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown::before { content:""; position: absolute; top: -10px; left: 0; right: 0; height: 14px; }
.dropdown__link { display: flex; gap: 14px; align-items: center; padding: 13px 14px; border-radius: 12px; transition: background .2s; }
.dropdown__link:hover { background: var(--orange-soft); }
.dropdown__ico { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 11px; background: var(--orange-soft); color: var(--orange-700);
  display: grid; place-items: center; }
.dropdown__ico svg { width: 21px; height: 21px; }
.dropdown__link:hover .dropdown__ico { background: var(--orange); color: #fff; }
.dropdown__t { font-family: var(--f-head); font-weight: 600; color: var(--ink); font-size: .98rem; line-height: 1.2; }
.dropdown__d { font-size: .82rem; color: var(--slate-2); line-height: 1.35; margin-top: 2px; }

.header__cta { display: flex; align-items: center; gap: 10px; }
.header .header__cta .btn--primary { padding: 13px 22px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-head); font-weight: 600; font-size: .92rem; color: var(--ink); }
.header__phone svg { width: 17px; height: 17px; color: var(--orange); }

/* Burger */
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.burger span:nth-child(1){ top: 15px; } .burger span:nth-child(2){ top: 21px; } .burger span:nth-child(3){ top: 27px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.drawer { position: fixed; top: 0; left: 0; right: 0; z-index: 99; background: #fff; padding: calc(var(--nav-h) + 8px) 22px 22px;
  transform: translateY(-100%); transition: transform .4s var(--ease); display: none; flex-direction: column; visibility: hidden;
  box-shadow: 0 22px 44px rgba(16,21,31,.14); border-bottom: 1px solid var(--line); max-height: 100vh; overflow-y: auto; }
body.menu-open .drawer { transform: translateY(0); visibility: visible; }
.drawer__link { display: block; font-family: var(--f-head); font-weight: 600; font-size: 1.22rem; color: var(--ink); padding: 13px 0; border-bottom: 1px solid var(--line); letter-spacing: -.02em; }
.drawer__sub { padding-left: 16px; }
.drawer__sub a { display: block; font-family: var(--f-head); font-size: 1.05rem; font-weight: 500; color: var(--slate); padding: 11px 0; }
.drawer__sub a::before { content:"— "; color: var(--orange); }
.drawer__foot { margin-top: 18px; display: grid; gap: 12px; }

/* =================================================================
   HERO — full-bleed photo (industrial)
   ================================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px; overflow: hidden;
  background: #14181d; color: #fff;
}
/* Slideshow de fundo da hero (4 imagens em crossfade) */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center center; background-repeat: no-repeat; opacity: 0; transition: opacity 1.1s var(--ease); will-change: opacity; }
.hero__slide.is-active { opacity: 1; }
.hero__bg::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(12,15,19,.9) 0%, rgba(12,15,19,.6) 40%, rgba(12,15,19,.22) 70%, rgba(12,15,19,.4) 100%); }
/* extra bottom shade so text sits on a soft base */
.hero::after { content:""; position: absolute; inset: auto 0 0 0; height: 55%; z-index: 0;
  background: linear-gradient(180deg, transparent, rgba(10,13,17,.78)); pointer-events: none; }
.hero h1, .hero h2 { color: #fff; }


.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 760px; }
.hero__kicker { display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-head);
  font-size: .82rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-bottom: 22px; }
.hero__kicker::before { content:""; width: 40px; height: 2px; background: var(--orange); }
.hero h1 { font-size: clamp(2.7rem, 6.2vw, 5.1rem); line-height: 1.0; letter-spacing: -.035em; font-weight: 600; }
.hero h1 .grad-text { color: var(--orange); display: inline; }
.hero__sub { margin-top: 26px; font-size: clamp(1.06rem, 1.5vw, 1.28rem); line-height: 1.6; color: rgba(255,255,255,.82); max-width: 600px; }
.hero__cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.04); }
.hero .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* thin inline stat strip (no pills) */
.hero__stats { margin-top: 54px; display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.16); padding-top: 28px; max-width: 680px; }
.hero__stat { padding-right: 44px; margin-right: 44px; border-right: 1px solid rgba(255,255,255,.16); }
.hero__stat:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__stat b { display: block; font-family: var(--f-head); font-weight: 600; font-size: clamp(1.7rem,3vw,2.4rem); letter-spacing: -.03em; line-height: 1; }
.hero__stat b .suf { color: var(--orange); }
.hero__stat span { font-size: .84rem; color: rgba(255,255,255,.66); margin-top: 7px; display: block; }

/* Hero logos strip */
.logos { border-top: 1px solid var(--line); }
.logos__inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: space-between; padding: 28px 0; }
.logos__label { font-size: .82rem; letter-spacing: .04em; color: var(--slate-2); font-family: var(--f-head); font-weight: 500; }
.logos__list { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.logos__item { font-family: var(--f-head); font-weight: 700; font-size: 1.15rem; color: #B5BDC8; letter-spacing: -.02em; }

/* =================================================================
   STATS / CREDIBILITY
   ================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.stat { padding: 40px 32px; border-right: 1px solid var(--line); position: relative; }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--f-head); font-weight: 600; font-size: clamp(2.4rem, 4vw, 3.4rem); color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.stat__num .suf { color: var(--orange); }
.stat__label { margin-top: 12px; font-size: .94rem; color: var(--slate); }

/* =================================================================
   FEATURE / DIFERENCIAIS
   ================================================================= */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.feature::after { content:""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature:hover::after { transform: scaleX(1); }
.feature__ico { width: 56px; height: 56px; border-radius: 15px; background: var(--orange-soft); color: var(--orange-700); display: grid; place-items: center; margin-bottom: 22px; transition: background .3s, color .3s; }
.feature__ico svg { width: 27px; height: 27px; }
.feature:hover .feature__ico { background: var(--orange); color: #fff; }
.feature h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feature p { font-size: .96rem; }

/* =================================================================
   CATEGORIES
   ================================================================= */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat {
  position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s;
}
/* dedicated image area — never overlaps the text */
.cat__media { position: relative; height: 230px; overflow: hidden;
  background: linear-gradient(165deg, var(--bg-soft) 0%, #fff 70%); display: grid; place-items: center; }
.cat__media::after { content:""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, var(--orange-glow), transparent 70%); opacity: .45; }
.cat__img { position: relative; z-index: 1; max-height: 80%; max-width: 78%; width: auto; object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(16,21,31,.16)); transition: transform .55s var(--ease); }
.cat__tag { position: absolute; z-index: 2; top: 16px; left: 16px; font-family: var(--f-head); font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--orange-700); background: #fff; border: 1px solid var(--line); padding: 6px 12px; border-radius: 100px; }
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat:hover .cat__img { transform: scale(1.06); }
.cat__body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cat h3 { font-size: 1.25rem; }
.cat p { font-size: .92rem; }
.cat__link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-top: auto; padding-top: 8px; }
.cat__link svg { width: 16px; height: 16px; color: var(--orange); transition: transform .3s var(--ease); }
.cat:hover .cat__link svg { transform: translateX(4px); }

/* =================================================================
   SEGMENTS (9 linhas de equipamentos)
   ================================================================= */
.seg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seg {
  display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.seg:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.seg__ico { flex: none; width: 50px; height: 50px; border-radius: 13px; background: var(--orange-soft); color: var(--orange-700); display: grid; place-items: center; transition: background .3s, color .3s; }
.seg__ico svg { width: 24px; height: 24px; }
.seg:hover .seg__ico { background: var(--orange); color: #fff; }
.seg h3 { font-size: 1.08rem; margin-bottom: 4px; }
.seg p { font-size: .88rem; line-height: 1.5; }

/* =================================================================
   FAQ (acordeão)
   ================================================================= */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; padding: 26px 4px; font-family: var(--f-head); font-weight: 600; font-size: 1.1rem;
  color: var(--ink); letter-spacing: -.01em; transition: color .25s; cursor: pointer;
}
.faq__q:hover { color: var(--orange-700); }
.faq__ico { flex: none; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: background .3s, border-color .3s; }
.faq__ico::before, .faq__ico::after { content:""; position: absolute; background: var(--orange); border-radius: 2px; transition: transform .35s var(--ease); }
.faq__ico::before { width: 13px; height: 2px; }
.faq__ico::after { width: 2px; height: 13px; }
.faq__item.is-open .faq__ico { background: var(--orange); border-color: var(--orange); }
.faq__item.is-open .faq__ico::before, .faq__item.is-open .faq__ico::after { background: #fff; }
.faq__item.is-open .faq__ico::after { transform: rotate(90deg) scaleX(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 4px 26px; color: var(--slate); font-size: 1rem; line-height: 1.65; max-width: 92%; }

/* =================================================================
   DARK FEATURE / MANIFESTO
   ================================================================= */
.dark-sec { background: var(--ink-section); color: #fff; position: relative; overflow: hidden; }
.dark-sec h1,.dark-sec h2,.dark-sec h3 { color: #fff; }
.dark-sec .lead, .dark-sec p { color: rgba(255,255,255,.72); }
.dark-sec::before { content:""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px; mask-image: radial-gradient(70% 70% at 50% 30%, #000, transparent 80%); -webkit-mask-image: radial-gradient(70% 70% at 50% 30%, #000, transparent 80%); }
.dark-sec__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: var(--orange); filter: blur(160px); opacity: .18; top: -200px; right: -120px; pointer-events: none; }

.manifesto { position: relative; z-index: 1; }
.manifesto__head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.video-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; max-width: 820px; margin-inline: auto; border: 1px solid rgba(255,255,255,.1);
  background: #0a0e16 center/cover no-repeat; box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.video-frame__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.video-frame__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,14,22,.2), rgba(10,14,22,.7)); display: grid; place-items: center; }
.play-btn { width: 92px; height: 92px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-orange); transition: transform .35s var(--ease); position: relative; }
.play-btn::before { content:""; position: absolute; inset: -10px; border-radius: 50%; border: 1.5px solid rgba(244,122,32,.5); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0%{ transform: scale(1); opacity: .8; } 100%{ transform: scale(1.5); opacity: 0; } }
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.video-frame__cap { position: absolute; left: 28px; bottom: 24px; z-index: 2; }
.video-frame__cap b { font-family: var(--f-head); color: #fff; font-size: 1.1rem; }
.video-frame__cap span { display: block; color: rgba(255,255,255,.6); font-size: .85rem; }

/* =================================================================
   PORTFOLIO / OBRAS
   ================================================================= */
.works { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.work {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); border: 1px solid var(--line);
  min-height: 380px; display: flex; align-items: flex-end; padding: 30px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.work::before { content:""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,20,32,0) 35%, rgba(14,20,32,.86) 100%); }
.work__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.work:hover .work__bg { transform: scale(1.07); }
.work__body { position: relative; z-index: 2; color: #fff; }
.work__meta { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.work__badge { font-family: var(--f-head); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.2); }
.work__badge.is-orange { background: var(--orange); border-color: var(--orange); }
.work h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.work p { color: rgba(255,255,255,.8); font-size: .92rem; max-width: 90%; }
.work__loc { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 12px; }
.work__loc svg { width: 15px; height: 15px; }
.work--tall { grid-row: span 2; min-height: 100%; }

/* Generated industrial scene backgrounds (used where no site photo is available) */
.scene { background-color: #2a3340; background-size: cover; background-position: center; }
.scene-1 { background-image: linear-gradient(150deg, rgba(244,122,32,.34), rgba(16,21,31,.78)), repeating-linear-gradient(45deg,#39424f,#39424f 16px,#333c48 16px,#333c48 32px); }
.scene-2 { background-image: linear-gradient(150deg, rgba(16,21,31,.55), rgba(16,21,31,.82)), repeating-linear-gradient(135deg,#48515e,#48515e 18px,#404a57 18px,#404a57 36px); }
.scene-3 { background-image: linear-gradient(150deg, rgba(244,122,32,.4), rgba(16,21,31,.8)), repeating-linear-gradient(90deg,#3c4552,#3c4552 22px,#343d4a 22px,#343d4a 44px); }
.scene-4 { background-image: linear-gradient(150deg, rgba(16,21,31,.5), rgba(16,21,31,.84)), repeating-linear-gradient(60deg,#444d5a,#444d5a 20px,#3b4350 20px,#3b4350 40px); }

/* =================================================================
   PRODUCT GRID (Locação / Vendas)
   ================================================================= */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter { font-family: var(--f-head); font-weight: 500; font-size: .9rem; color: var(--ink-2); padding: 11px 20px; border-radius: 100px; border: 1.5px solid var(--line); transition: all .25s; background: #fff; }
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* --- Barra de busca + filtro dropdown do catálogo --- */
.catalog-tools { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; align-items: center; }
.search { position: relative; flex: 1 1 320px; min-width: 220px; }
.search > svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--slate-2); pointer-events: none; }
.search input { width: 100%; height: 54px; padding: 0 20px 0 48px; border: 1.5px solid var(--line); border-radius: 100px; font-family: var(--f-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.search input::placeholder { color: var(--slate-2); }
.search input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-glow); }
.search input::-webkit-search-cancel-button { -webkit-appearance: none; }

.filter-dd { position: relative; flex: 0 0 auto; }
.filter-dd__btn { display: inline-flex; align-items: center; gap: 10px; height: 54px; padding: 0 22px; border: 1.5px solid var(--line); border-radius: 100px; background: #fff; font-family: var(--f-head); font-weight: 600; font-size: .95rem; color: var(--ink-2); transition: border-color .2s; cursor: pointer; }
.filter-dd__btn:hover { border-color: var(--ink); }
.filter-dd__btn > svg { width: 19px; height: 19px; flex: none; }
.filter-dd__btn .chev { width: 16px; color: var(--slate-2); transition: transform .25s var(--ease); }
.filter-dd.is-open .filter-dd__btn { border-color: var(--ink); }
.filter-dd.is-open .filter-dd__btn .chev { transform: rotate(180deg); }
.filter-dd__panel { position: absolute; top: calc(100% + 12px); right: 0; z-index: 60; width: min(600px, 92vw); max-height: 62vh; overflow-y: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px; display: none; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 8px; }
.filter-dd.is-open .filter-dd__panel { display: grid; }
.filter-dd__panel .filter { padding: 10px 14px; font-size: .86rem; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.catalog-empty { text-align: center; color: var(--slate); font-size: 1.05rem; padding: 40px 0; margin: 0; }
@media (max-width: 560px) { .filter-dd { width: 100%; } .filter-dd__btn { width: 100%; justify-content: center; } .filter-dd__panel { width: 100%; grid-template-columns: 1fr 1fr; } }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.product__media { position: relative; container-type: size; aspect-ratio: 4/3; background: linear-gradient(160deg,#fff,var(--bg-soft)); display: grid; place-items: center; padding: 22px; overflow: hidden; }
.product__media::after { content:""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 45%, var(--orange-glow), transparent 70%); opacity: .5; }
.product__img { position: relative; z-index: 1; max-height: 100cqh; max-width: 100%; width: auto; object-fit: contain; transition: transform .5s var(--ease); filter: drop-shadow(0 14px 22px rgba(16,21,31,.14)); }
.product:hover .product__img { transform: scale(1.06); }
.product__media.is-missing .product__img { display: none; }
.product__media.is-missing::before { content: "Imagem em breve"; position: relative; z-index: 2; font-family: var(--f-head); font-weight: 500; font-size: .92rem; color: var(--slate-2); }
/* locação: imagens dos cards um pouco menores */
#equip-grid .product__img, #equip-related-grid .product__img { max-height: 94cqh; }
.product__tag { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--f-head); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.product__tag.is-new { background: var(--orange-soft); color: var(--orange-700); border-color: transparent; }
.product__tag.is-used { background: #EAF2FF; color: #2563A8; border-color: transparent; }
.product__body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product__cat { font-family: var(--f-head); font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-700); }
.product h3 { font-size: 1.18rem; }
.product__specs { display: grid; gap: 8px; margin-top: 2px; }
.product__spec { display: flex; justify-content: space-between; font-size: .88rem; padding-bottom: 8px; border-bottom: 1px dashed var(--line); }
.product__spec span:first-child { color: var(--slate-2); }
.product__spec span:last-child { color: var(--ink-2); font-weight: 500; }
.product__foot { margin-top: auto; padding-top: 6px; }
.product .btn--wa { width: 100%; }

/* Product media com ícone (sem foto) */
.product__ico { position: relative; z-index: 1; width: 88px; height: 88px; border-radius: 22px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--orange-700); box-shadow: var(--shadow-sm); }
.product__ico svg { width: 42px; height: 42px; }
.product__tag.is-epi { background: #EAF2FF; color: #2563A8; }
.product__tag.is-cons { background: var(--orange-soft); color: var(--orange-700); }

/* Product card: clickable area + subtle action buttons */
.product__link { display: flex; flex-direction: column; flex: 1; color: inherit; }
.product__tagline { font-size: .92rem; color: var(--slate); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.product__actions { display: flex; gap: 10px; padding: 0 24px 24px; }
/* alinha os botões na base do card (cards de venda têm as ações dentro do body) */
.product__body > .product__actions { margin-top: auto; padding-left: 0; padding-right: 0; }
.product__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--f-head); font-weight: 600; font-size: .82rem; padding: 11px 12px; border-radius: 100px;
  transition: background .25s, color .25s, border-color .25s, transform .25s; white-space: nowrap; }
.product__btn svg { width: 15px; height: 15px; }
.product__btn--ghost { border: 1.5px solid var(--line); color: var(--ink-2); }
.product__btn--ghost:hover { border-color: var(--ink); }
.product__btn--wa { background: var(--orange-soft); color: var(--orange-700); }
.product__btn--wa:hover { background: var(--orange); color: #fff; }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

/* =================================================================
   BLOG
   ================================================================= */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.post__media { position: relative; aspect-ratio: 16/10; }
.post__cat { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--f-head); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; background: var(--orange); color: #fff; }
.post__body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post__date { font-size: .8rem; color: var(--slate-2); font-family: var(--f-head); font-weight: 500; }
.post h3 { font-size: 1.12rem; line-height: 1.3; }
.post p { font-size: .92rem; }
.post__more { margin-top: auto; padding-top: 6px; display: inline-flex; align-items: center; gap: 7px; font-family: var(--f-head); font-weight: 600; font-size: .88rem; color: var(--ink); }
.post__more svg { width: 15px; height: 15px; color: var(--orange); transition: transform .3s var(--ease); }
.post:hover .post__more svg { transform: translateX(4px); }

/* =================================================================
   EQUIPMENT DETAIL PAGE
   ================================================================= */
.equip { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.equip__media { position: sticky; top: 100px; border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: linear-gradient(160deg, #fff, var(--bg-soft)); container-type: size; aspect-ratio: 1/1; display: grid; place-items: center;
  padding: 44px; overflow: hidden; box-shadow: var(--shadow-lg); }
.equip__media::after { content:""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 45%, var(--orange-glow), transparent 70%); opacity: .5; }
.equip__media img { position: relative; z-index: 1; max-height: 100cqh; max-width: 86cqw; width: auto; object-fit: contain; filter: drop-shadow(0 22px 32px rgba(16,21,31,.18)); }
.equip__media.is-missing { display: grid; place-items: center; min-height: 320px; }
.equip__media.is-missing img { display: none; }
.equip__media.is-missing::before { content: "Imagem em breve"; position: relative; z-index: 2; font-family: var(--f-head); font-weight: 500; font-size: 1rem; color: var(--slate-2); }
.equip__badge { position: absolute; z-index: 2; top: 18px; left: 18px; font-family: var(--f-head); font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; background: var(--orange-soft); color: var(--orange-700); }
.equip__cat { font-family: var(--f-head); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-700); }
.equip h1 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -.03em; margin: 12px 0 16px; }
.equip__tagline { font-size: 1.12rem; color: var(--ink-2); line-height: 1.55; font-weight: 500; }
.equip__desc { margin-top: 18px; font-size: 1rem; line-height: 1.7; color: var(--slate); }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 28px; }
.spec-table h4, .equip__spectitle { font-family: var(--f-head); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin: 32px 0 6px; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 13px 2px; font-size: .96rem; vertical-align: top; }
.spec-table td:first-child { color: var(--slate-2); width: 48%; }
.spec-table td:last-child { text-align: right; font-weight: 500; color: var(--ink-2); }
.equip__cta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.equip__note { margin-top: 16px; font-size: .88rem; color: var(--slate-2); }
.equip__back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: var(--slate); margin-bottom: 22px; }
.equip__back svg { width: 16px; height: 16px; }
.equip__back:hover { color: var(--orange-700); }

/* =================================================================
   PRODUCT MODAL (detalhes do equipamento)
   ================================================================= */
.product { cursor: pointer; }
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(8,11,15,.62); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); opacity: 0; transition: opacity .3s var(--ease); }
.modal.is-open .modal__overlay { opacity: 1; }
.modal__dialog {
  position: relative; z-index: 1; max-width: 940px; width: calc(100% - 40px); margin: 6vh auto; max-height: 88vh;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr;
  transform: translateY(24px) scale(.97); opacity: 0; transition: transform .4s var(--ease-out), opacity .4s;
}
.modal.is-open .modal__dialog { transform: none; opacity: 1; }
.modal__media { position: relative; background: linear-gradient(160deg, #fff, var(--bg-soft)); display: grid; place-items: center; padding: 40px; overflow: hidden; }
.modal__media::after { content:""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 45%, var(--orange-glow), transparent 70%); opacity: .5; }
.modal__media img { position: relative; z-index: 1; max-height: 320px; max-width: 90%; width: auto; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(16,21,31,.18)); }
.modal__badge { position: absolute; z-index: 2; top: 18px; left: 18px; font-family: var(--f-head); font-size: .68rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; background: var(--orange-soft); color: var(--orange-700); }
.modal__body { padding: 40px; overflow-y: auto; display: flex; flex-direction: column; }
.modal__cat { font-family: var(--f-head); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-700); }
.modal__body h3 { font-size: 1.7rem; letter-spacing: -.025em; margin: 8px 0 16px; }
.modal__desc { color: var(--slate); font-size: 1rem; line-height: 1.65; margin-bottom: 22px; }
.modal__foot { margin-top: auto; padding-top: 24px; display: grid; gap: 12px; }
.modal__close { position: absolute; top: 16px; right: 16px; z-index: 5; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.92); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), background .25s; }
.modal__close:hover { transform: rotate(90deg); background: #fff; }
.modal__close svg { width: 20px; height: 20px; }

/* =================================================================
   SERVICES — split (imagem ao lado)
   ================================================================= */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.svc + .svc { margin-top: 88px; }
.svc__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: var(--bg-soft); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.04); }
.svc__media::after { content:""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 60%, rgba(244,122,32,.12)); }
.svc--rev .svc__media { order: 2; }
.svc__num { display: inline-flex; align-items: center; gap: 12px; font-family: var(--f-head); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-700); margin-bottom: 18px; }
.svc__num::before { content: attr(data-n); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--orange-soft); color: var(--orange-700); font-size: 1rem; letter-spacing: 0; }
.svc__body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -.025em; margin-bottom: 16px; }
.svc__body p { font-size: 1.04rem; line-height: 1.7; color: var(--slate); }
.svc__list { display: grid; gap: 11px; margin-top: 22px; }
.svc__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; color: var(--ink-2); }
.svc__list svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 2px; }
.svc__body .btn { margin-top: 30px; }

/* =================================================================
   SERVICES
   ================================================================= */
.serv-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.serv-row {
  display: grid; grid-template-columns: 80px 1.2fr 2fr auto; gap: 28px; align-items: center;
  padding: 36px 8px; border-bottom: 1px solid var(--line); transition: background .35s, padding .35s; position: relative;
}
.serv-row:hover { background: var(--bg-soft); padding-inline: 24px; }
.serv-row__num { font-family: var(--f-head); font-weight: 600; font-size: 1.1rem; color: var(--orange); }
.serv-row__t { font-family: var(--f-head); font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: -.02em; }
.serv-row__d { font-size: .98rem; color: var(--slate); }
.serv-row__ico { width: 52px; height: 52px; border-radius: 13px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--orange-700); transition: all .3s; }
.serv-row:hover .serv-row__ico { background: var(--orange); color: #fff; border-color: var(--orange); transform: rotate(-6deg); }
.serv-row__ico svg { width: 24px; height: 24px; }

.serv-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.serv-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; display: flex; gap: 22px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.serv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.serv-card__ico { flex: none; width: 58px; height: 58px; border-radius: 15px; background: var(--orange-soft); color: var(--orange-700); display: grid; place-items: center; }
.serv-card__ico svg { width: 28px; height: 28px; }
.serv-card h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* =================================================================
   TIMELINE
   ================================================================= */
.timeline { position: relative; max-width: 880px; margin-inline: auto; }
.timeline::before { content:""; position: absolute; left: 50%; top: 8px; bottom: 8px; width: 2px; background: var(--line); transform: translateX(-50%); }
.tl-item { position: relative; width: 50%; padding: 0 48px 56px; }
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-dot { position: absolute; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--orange); box-shadow: 0 0 0 6px var(--orange-soft); z-index: 2; }
.tl-item:nth-child(odd) .tl-dot { right: -8px; }
.tl-item:nth-child(even) .tl-dot { left: -8px; }
.tl-year { font-family: var(--f-head); font-weight: 600; font-size: 1.7rem; color: var(--orange); letter-spacing: -.02em; }
.tl-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; margin-top: 10px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tl-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.tl-card p { font-size: .94rem; }

/* =================================================================
   CTA BANNER
   ================================================================= */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(120deg, #18202e 0%, #0e131d 100%); padding: clamp(36px,4.2vw,56px) clamp(32px,4.5vw,56px); display: flex; align-items: center; justify-content: space-between; gap: 28px 40px; flex-wrap: wrap; text-align: left; }
.cta-band__text { max-width: 620px; }
.cta-band__text .eyebrow { justify-content: flex-start; }
.cta-band__glow { position: absolute; width: 520px; height: 320px; background: var(--orange); filter: blur(150px); opacity: .2; right: -80px; top: -120px; left: auto; transform: none; }
.cta-band > *:not(.cta-band__glow) { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.55rem, 2.7vw, 2.25rem); margin-top: 12px; }
.cta-band p { color: rgba(255,255,255,.72); margin-top: 10px; font-size: clamp(1rem, 1.2vw, 1.1rem); }
.cta-band__btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.contact-card__ico { flex: none; width: 52px; height: 52px; border-radius: 13px; background: var(--orange-soft); color: var(--orange-700); display: grid; place-items: center; }
.contact-card__ico svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.08rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: .96rem; color: var(--slate); }
.contact-card a:hover { color: var(--orange-700); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 100%; box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; filter: grayscale(.2) contrast(1.02); }

/* =================================================================
   PAGE HERO (interior pages)
   ================================================================= */
.page-hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 70px; background: var(--bg-soft); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content:""; position: absolute; top: -30%; right: -5%; width: 50%; height: 130%; background: radial-gradient(50% 50% at 70% 40%, var(--orange-glow), transparent 70%); }
/* alinha o conteúdo ao mesmo eixo do logo (largura do header) e encosta à esquerda */
.page-hero__inner { position: relative; z-index: 1; max-width: var(--container-wide); padding-left: clamp(24px, 4vw, 68px); padding-right: 24px; text-align: left; }
.page-hero__inner .eyebrow { justify-content: flex-start; }
.page-hero h1, .page-hero .lead, .page-hero__inner .breadcrumb { max-width: 820px; margin-inline: 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--slate-2); margin-bottom: 20px; font-family: var(--f-head); }
.breadcrumb a:hover { color: var(--orange-700); }
.breadcrumb svg { width: 13px; height: 13px; }
.page-hero h1 { margin-bottom: 18px; }

/* =================================================================
   ABOUT VALUES
   ================================================================= */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.value { padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.value__ico { width: 50px; height: 50px; border-radius: 13px; background: var(--orange-soft); color: var(--orange-700); display: grid; place-items: center; margin-bottom: 18px; }
.value__ico svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { font-size: .94rem; }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.about-badge { position: absolute; z-index: 2; bottom: 24px; left: 24px; right: 24px; background: rgba(255,255,255,.86); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; display: flex; gap: 18px; align-items: center; }
.about-badge b { font-family: var(--f-head); font-size: 2rem; color: var(--orange); letter-spacing: -.03em; line-height: 1; }
.about-badge span { font-size: .9rem; color: var(--slate); }

.checklist { display: grid; gap: 14px; margin-top: 28px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink-2); }
.checklist svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 1px; }


/* =================================================================
   CONTATO HOME (layout imagem 1)
   ================================================================= */
.pill-eyebrow { display: inline-flex; align-items: center; gap: 9px; background: var(--orange-soft); color: var(--orange-700); font-family: var(--f-head); font-weight: 600; font-size: .85rem; padding: 9px 18px; border-radius: 100px; }
.pill-eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.contact2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact2 h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.03em; line-height: 1.05; margin: 22px 0 18px; }
.contact2__sub { font-size: 1.05rem; color: var(--slate); line-height: 1.6; max-width: 460px; }
.contact2__list { display: grid; gap: 22px; margin-top: 38px; }
.contact2__item { display: flex; gap: 16px; align-items: flex-start; }
.contact2__ico { flex: none; width: 50px; height: 50px; border-radius: 13px; background: var(--orange-soft); color: var(--orange-700); display: grid; place-items: center; }
.contact2__ico svg { width: 23px; height: 23px; }
.contact2__item h4 { font-family: var(--f-head); font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 4px; }
.contact2__item p, .contact2__item a { font-size: 1.02rem; color: var(--ink); display: block; }
.contact2__item a:hover { color: var(--orange-700); }
.map-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.map-card__head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 26px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.map-card__head h3 { font-size: 1.2rem; }
.map-card__head p { font-size: .9rem; color: var(--slate-2); margin-top: 2px; }
.map-card__map { min-height: 380px; position: relative; }
.map-card__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--ink-section); color: rgba(255,255,255,.66); padding: 80px 0 32px; position: relative; overflow: hidden; }
.footer::before { content:""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(80% 60% at 50% 0%, #000, transparent 70%); -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000, transparent 70%); }
.footer__top { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand__word { color: #fff; }
.footer__brand p { margin-top: 18px; font-size: .94rem; max-width: 320px; color: rgba(255,255,255,.6); }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: rgba(255,255,255,.8); transition: all .3s; }
.footer__social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; font-family: var(--f-head); font-weight: 600; }
.footer__col ul { display: grid; gap: 13px; }
.footer__col a { font-size: .94rem; color: rgba(255,255,255,.62); transition: color .25s, padding .25s; }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__contact li { display: flex; gap: 12px; font-size: .94rem; color: rgba(255,255,255,.62); margin-bottom: 14px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 2px; }
.footer__bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; padding-top: 28px; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer__legal a:hover { color: #fff; }

/* =================================================================
   FLOATING WHATSAPP
   ================================================================= */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: transform .35s var(--ease); }
.wa-float::before { content:""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: pulse 2.4s ease-out infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__product,.hero__chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   BANNERS (home — topo, placeholder)
   ================================================================= */
.banner-section { padding-left: 0; padding-right: 0; } /* full-bleed: vizinhos vazam até a borda */
.banners { overflow: hidden; padding: 6px 0 14px; }
.banner-track { display: flex; gap: 18px; will-change: transform; transition: transform .6s var(--ease); }
.banner-slide { flex: 0 0 62%; aspect-ratio: 2048 / 1070; position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: linear-gradient(135deg, var(--ink-section), #1d2735); }
.banner-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(10,13,17,.6)); pointer-events: none; }
.banner-slide__cta { position: absolute; left: clamp(14px, 2vw, 24px); bottom: clamp(12px, 2vw, 22px); z-index: 2; }
.banner-slide__cta .btn { padding: 9px 16px; font-size: .82rem; border-radius: 999px; gap: 7px; }
.banner-slide__cta .btn svg { width: 14px !important; height: 14px !important; }
.banner-slide__in { position: relative; z-index: 1; padding: 24px; }
.banner-slide__in .eyebrow { color: var(--orange); justify-content: center; }
.banner-slide__in h3 { color: #fff; font-size: clamp(1.4rem, 3vw, 2.4rem); margin-top: 10px; }
.banner-slide__in p { color: rgba(255,255,255,.78); margin-top: 8px; }
.banner-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.banner-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all .25s; cursor: pointer; border: 0; }
.banner-dot.is-active { background: var(--orange); width: 26px; border-radius: 6px; }

/* =================================================================
   PORTFÓLIO DE OBRAS
   ================================================================= */
.work { cursor: pointer; }
.work__play { position: absolute; top: 18px; right: 18px; z-index: 3; width: 52px; height: 52px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-orange); transition: transform .3s var(--ease); }
.work:hover .work__play { transform: scale(1.08); }
.work__play svg { width: 22px; height: 22px; margin-left: 3px; }

.modal__dialog--obra { grid-template-columns: 1fr; max-width: 760px; max-height: 92vh; overflow-y: auto; }
.modal__obra-img { width: 100%; aspect-ratio: 16/10; max-height: 46vh; object-fit: cover; display: block; }
.modal__obra-body { padding: 32px 36px 36px; }
.modal__obra-body .product__cat { color: var(--orange-700); }
.modal__obra-body h3 { font-size: 1.6rem; letter-spacing: -.02em; margin: 8px 0 14px; }
.modal__obra-body p { color: var(--slate); line-height: 1.65; margin-bottom: 24px; }

/* =================================================================
   REMOVER TEXTURA DE GRID (fundos)
   ================================================================= */
.dark-sec::before, .cta-band::before, .footer::before { background-image: none !important; }

/* =================================================================
   COMO FUNCIONA — fluxo / timeline
   ================================================================= */
.flow { position: relative; max-width: 1000px; margin: 56px auto 0; }
.flow::before { content:""; position: absolute; left: 50%; top: 6px; bottom: 6px; width: 3px; background: var(--orange); transform: translateX(-50%); border-radius: 3px; }
.flow__item { position: relative; display: grid; grid-template-columns: 1fr 58px 1fr; align-items: center; gap: 30px; margin-bottom: 22px; }
.flow__icon { grid-column: 2; width: 56px; height: 56px; border-radius: 50%; background: var(--orange); color: #fff; display: grid; place-items: center; z-index: 2; border: 4px solid #fff; box-shadow: 0 6px 16px rgba(244,122,32,.35); }
.flow__icon svg { width: 26px; height: 26px; }
.flow__block { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 26px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.flow__block:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.flow__block h3 { font-family: var(--f-head); font-weight: 600; font-size: 1.14rem; letter-spacing: -.02em; color: var(--ink); margin-bottom: 7px; }
.flow__block p { font-size: .96rem; color: var(--slate); line-height: 1.55; }
.flow__item--left .flow__block { grid-column: 1; text-align: right; }
.flow__item--right .flow__block { grid-column: 3; text-align: left; }

/* =================================================================
   BLOG — carrossel
   ================================================================= */
.blog-slider { position: relative; }
.blog-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.slider-nav { display: flex; gap: 10px; }
.slider-btn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; display: grid; place-items: center; color: var(--ink); transition: all .25s; }
.slider-btn:hover { border-color: var(--orange); background: var(--orange); color: #fff; transform: translateY(-2px); }
.slider-btn svg { width: 20px; height: 20px; }
.slider-btn[disabled] { opacity: .4; cursor: not-allowed; }
.blog-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 4px 12px; margin: 48px -4px 0; scrollbar-width: none; -ms-overflow-style: none; }
.blog-track::-webkit-scrollbar { display: none; }
.blog-track > .post { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }

/* track relacionados */
/* track horizontal de equipamentos relacionados */
.rel-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 4px 12px; margin: 44px -4px 0; scrollbar-width: none; -ms-overflow-style: none; }
.rel-track::-webkit-scrollbar { display: none; }
.rel-track > .product { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
@media (max-width: 760px) { .rel-track > .product { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 520px) { .rel-track > .product { flex-basis: 84%; } }

/* =================================================================
   ARTICLE (página de post)
   ================================================================= */
.article { max-width: 780px; margin: 0 auto; }
.article__hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; display: flex; align-items: flex-end; padding: 36px; margin-bottom: 40px; }
.article__hero::before { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,20,32,.2), rgba(14,20,32,.82)); }
.article__hero-in { position: relative; z-index: 1; color: #fff; }
.article__hero-in .post__cat { position: static; display: inline-block; margin-bottom: 14px; }
.article__hero h1 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.6rem); letter-spacing: -.03em; line-height: 1.12; max-width: 90%; }
.article__date { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: 12px; font-family: var(--f-head); }
.article h3 { font-size: 1.35rem; letter-spacing: -.02em; margin: 36px 0 12px; }
.article p { margin-bottom: 18px; line-height: 1.78; color: var(--ink-2); font-size: 1.06rem; }
.article ul { display: grid; gap: 12px; margin: 6px 0 22px; }
.article li { position: relative; padding-left: 30px; color: var(--ink-2); font-size: 1.04rem; line-height: 1.55; }
.article li::before { content:""; position: absolute; left: 4px; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }

/* =================================================================
   FORMULÁRIO
   ================================================================= */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--f-head); font-weight: 600; font-size: .86rem; color: var(--ink-2); }
.field input, .field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; font-family: var(--f-body); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-glow); }
.field textarea { min-height: 150px; resize: vertical; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow); }


/* =================================================================
   COMO FUNCIONA — horizontal numerado
   ================================================================= */
.hsteps { position: relative; display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 18px; margin-top: 52px; scrollbar-width: none; -ms-overflow-style: none; }
.hsteps::-webkit-scrollbar { display: none; }
.hstep { flex: 0 0 clamp(250px, 25vw, 290px); scroll-snap-align: start; position: relative; text-align: center; padding-top: 6px; }
.hstep::before { content: ""; position: absolute; top: 36px; left: -11px; right: -11px; height: 3px; background: var(--orange); opacity: .28; z-index: 0; }
.hstep:first-child::before { left: 50%; }
.hstep:last-child::before { right: 50%; }
.hstep__num { position: relative; z-index: 2; width: 60px; height: 60px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--f-head); font-weight: 600; font-size: 1.35rem; letter-spacing: -.02em; display: grid; place-items: center; margin: 0 auto; border: 4px solid #fff; box-shadow: 0 6px 16px rgba(244,122,32,.35); }
.hstep__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; margin-top: 22px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); height: calc(100% - 82px); }
.hstep__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hstep__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--orange-soft); color: var(--orange-700); display: grid; place-items: center; margin: 0 auto 16px; }
.hstep__ico svg { width: 24px; height: 24px; }
.hstep__card h3 { font-size: 1.06rem; letter-spacing: -.01em; margin-bottom: 8px; }
.hstep__card p { font-size: .92rem; color: var(--slate); line-height: 1.5; }



/* =================================================================
   CATEGORIAS — carrossel (3 por página)
   ================================================================= */
.cat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.cat-cards::-webkit-scrollbar { display: none; }
.cat-page { display: contents; }
.cat-nav { display: none; } /* desktop: mostra as 9, sem setas */
.cat-row { display: flex; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.cat-row:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.cat-row__ico { flex: none; width: 62px; height: 62px; border-radius: 15px; background: var(--ink-section); color: var(--orange); display: grid; place-items: center; }
.cat-row__ico svg { width: 28px; height: 28px; }
.cat-row h3 { font-size: 1.16rem; letter-spacing: -.01em; margin-bottom: 4px; }
.cat-row p { font-size: .94rem; color: var(--slate); line-height: 1.45; }

/* =================================================================
   COMO FUNCIONA — stepper vertical numerado
   ================================================================= */
.vsteps { max-width: 800px; margin: 52px auto 0; }
.vstep { display: grid; grid-template-columns: 60px 1fr; gap: 26px; position: relative; padding-bottom: 22px; }
.vstep:last-child { padding-bottom: 0; }
.vstep::before { content: ""; position: absolute; left: 29px; top: 66px; bottom: -4px; width: 2px; background: var(--orange); opacity: .25; }
.vstep:last-child::before { display: none; }
.vstep__num { width: 60px; height: 60px; display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; font-size: 1.7rem; letter-spacing: -.03em; color: var(--orange); position: relative; z-index: 1; }
.vstep__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.vstep__card:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: transparent; }
.vstep__ico { flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--orange-soft); color: var(--orange-700); display: grid; place-items: center; }
.vstep__ico svg { width: 24px; height: 24px; }
.vstep__txt h3 { font-size: 1.12rem; letter-spacing: -.01em; margin-bottom: 5px; }
.vstep__txt p { font-size: .95rem; color: var(--slate); line-height: 1.5; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1080px) {
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1),.stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .features,.cats,.products,.values,.seg-grid,.posts { grid-template-columns: repeat(2,1fr); }
  .serv-cards { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .header .header__cta .btn--primary { display: none; }
}
@media (max-width: 900px) {
  .nav, .header__phone { display: none; }
  .burger { display: block; }
  .drawer { display: flex; visibility: hidden; }
  body.menu-open .drawer { visibility: visible; }
  .header__cta .btn--primary { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .svc { grid-template-columns: 1fr; gap: 30px; }
  .svc + .svc { margin-top: 56px; }
  .svc--rev .svc__media { order: 0; }
  .equip { grid-template-columns: 1fr; gap: 32px; }
  .equip__media { position: relative; top: 0; max-width: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact2 { grid-template-columns: 1fr; gap: 36px; }
  .modal__dialog { grid-template-columns: 1fr; margin: 0; width: 100%; max-width: 100%; min-height: 100%; max-height: 100%; border-radius: 0; }
  .modal__media { padding: 30px; min-height: 240px; }
  .modal__media img { max-height: 200px; }
  /* modal de obra (portfólio): card centralizado, não tela cheia */
  .modal__dialog--obra { width: calc(100% - 32px); max-width: 460px; margin: 6vh auto; min-height: 0; max-height: 86vh; border-radius: var(--radius-lg); }
  .modal__obra-img { max-height: 36vh; }
  .modal__obra-body { padding: 22px 22px 26px; }
  .modal__obra-body h3 { font-size: 1.32rem; }
  .works { grid-template-columns: 1fr; }
  .work--tall { grid-row: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: span 2; }
  .blog-track > .post { flex-basis: calc((100% - 24px) / 2); }
  /* categorias: vira carrossel com setas no mobile/tablet */
  .cat-nav { display: flex; gap: 10px; }
  .cat-cards { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; gap: 22px; padding-bottom: 4px; scrollbar-width: none; -ms-overflow-style: none; }
  .cat-page { display: grid; flex: 0 0 100%; scroll-snap-align: start; gap: 14px; align-content: start; }
}
@media (max-width: 720px) {
  .timeline::before { left: 18px; }
  .vsteps { margin-top: 32px; }
  .vstep { grid-template-columns: 40px 1fr; gap: 14px; padding-bottom: 14px; }
  .vstep::before { left: 19px; top: 46px; }
  .vstep__num { width: 40px; height: 40px; font-size: 1rem; }
  .vstep__card { flex-direction: row; align-items: center; gap: 12px; padding: 13px 15px; }
  .vstep__ico { width: 40px; height: 40px; border-radius: 11px; }
  .vstep__ico svg { width: 20px; height: 20px; }
  .vstep__txt h3 { font-size: 1.02rem; margin-bottom: 2px; }
  .vstep__txt p { font-size: .86rem; line-height: 1.4; }
  /* banner mobile: scroll nativo (arrastar com o dedo), 1 inteiro + espia o próximo */
  .banners { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .banners::-webkit-scrollbar { display: none; }
  .banner-track { transform: none !important; transition: none; gap: 12px; }
  .banner-track::before, .banner-track::after { content: ""; flex: 0 0 7%; }
  .banner-slide { flex-basis: 86%; scroll-snap-align: center; }
  .cat-row { padding: 18px 18px; gap: 16px; }
  .cat-row__ico { width: 52px; height: 52px; }
  .cat-row h3 { font-size: 1.05rem; }
  .cat-row p { font-size: .88rem; }
  .form__row { grid-template-columns: 1fr; }
  .flow::before { left: 22px; }
  .flow__item { grid-template-columns: 46px 1fr; gap: 18px; }
  .flow__icon { grid-column: 1; width: 46px; height: 46px; }
  .flow__icon svg { width: 22px; height: 22px; }
  .flow__item--left .flow__block, .flow__item--right .flow__block { grid-column: 2; text-align: left; }
  .blog-track > .post { flex-basis: 84%; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 44px 48px; }
  .tl-item .tl-dot { left: 10px !important; right: auto !important; }
  .serv-row { grid-template-columns: 40px 1fr; gap: 14px; row-gap: 6px; }
  .serv-row__d { grid-column: 2; }
  .serv-row__ico { display: none; }
  .serv-row:hover { padding-inline: 8px; }
}
@media (max-width: 600px) {
  .container { padding-inline: 20px; }
  .features,.cats,.products,.values,.seg-grid,.posts { grid-template-columns: 1fr; }
  /* diferenciais (serviços): cards menores no mobile */
  .feature { padding: 18px 20px; }
  .feature__ico { width: 42px; height: 42px; border-radius: 12px; margin-bottom: 12px; }
  .feature__ico svg { width: 21px; height: 21px; }
  .feature h3 { font-size: 1.06rem; margin-bottom: 5px; }
  .feature p { font-size: .89rem; line-height: 1.45; }
  .stats { grid-template-columns: 1fr; }
  .product__actions { flex-direction: column; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__cta .btn { width: 100%; }
  .hero { min-height: 86vh; padding-top: calc(var(--nav-h) + 56px); }
}

/* =================================================================
   POLISH — Mobile & Tablet
   ================================================================= */
@media (max-width: 900px) {
  .section { padding: clamp(54px, 7vw, 84px) 0; }
  .section-sm { padding: clamp(38px, 5vw, 60px) 0; }
  .h2, .section-head .h2 { font-size: clamp(1.7rem, 4.6vw, 2.4rem); }
  .hero h1 { font-size: clamp(2.4rem, 7vw, 3.6rem); }
  .lead { font-size: 1.03rem; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 52px; }
  .map-card__map, .map-card__map iframe { min-height: 320px; }
}
@media (max-width: 600px) {
  .container { padding-inline: 20px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 34px 0; }
  .hero { min-height: 80vh; padding-top: calc(var(--nav-h) + 36px); padding-bottom: 40px; }
  .hero h1 { font-size: clamp(2.05rem, 8.8vw, 2.7rem); line-height: 1.12; }
  .br-mobile-hide { display: none; }
  .hero__kicker { font-size: .7rem; letter-spacing: .1em; margin-bottom: 26px; }
  .hero__sub { font-size: 1rem; margin-top: 30px; }
  .hero__cta { margin-top: 40px; gap: 14px; }
  .section-head .h2 { margin-top: 12px; }
  .section-head p { margin-top: 14px; }
  .lead { font-size: 1rem; }
  .cat__media { height: 196px; }
  .map-card__map, .map-card__map iframe { min-height: 280px; }
  .vstep__num { width: 38px; height: 38px; font-size: .95rem; }
  .vstep { grid-template-columns: 38px 1fr; gap: 12px; padding-bottom: 12px; }
  .vstep::before { left: 18px; top: 44px; }
  .vstep__ico { width: 38px; height: 38px; }
  /* trajetória / linha do tempo mais curta no mobile */
  .timeline { margin-top: 30px !important; }
  .tl-item { padding: 0 0 20px 38px; }
  .timeline::before { left: 13px; }
  .tl-item .tl-dot { left: 6px !important; width: 13px; height: 13px; box-shadow: 0 0 0 4px var(--orange-soft); }
  .tl-year { font-size: 1.22rem; }
  .tl-card { padding: 14px 16px; margin-top: 4px; }
  .tl-card h3 { font-size: 1rem; margin-bottom: 4px; }
  .tl-card p { font-size: .85rem; line-height: 1.42; }
  .contact2 h2 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .btn { padding: 14px 22px; }
  .btn--lg { padding: 16px 26px; font-size: .98rem; }
  .footer { padding: 60px 0 28px; }
  .footer__top { padding-bottom: 40px; }
}
@media (max-width: 400px) {
  .container { padding-inline: 16px; }
  .hero h1 { font-size: 1.95rem; }
  .h2, .section-head .h2 { font-size: 1.55rem; }
  .product__actions { gap: 8px; }
}

/* === Mobile: 2 cards de equipamento por linha === */
@media (max-width: 600px) {
  .products, .cats { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .product__media { padding: 14px; }
  .product__body { padding: 14px 13px 12px; gap: 6px; }
  .product__body h3 { font-size: .98rem; line-height: 1.2; }
  .product__cat { font-size: .66rem; }
  .product__tagline { font-size: .8rem; line-height: 1.35; }
  .product__actions { padding: 0 13px 13px; gap: 8px; }
  .product__btn { font-size: .76rem; padding: 10px 8px; }
  .product__btn--ghost { display: none; } /* mobile: sem "Ver detalhes" */
  .cat__media { height: 128px; }
  .cat__body { padding: 16px 14px; }
  .cat h3 { font-size: 1.02rem; }
  .cat p { font-size: .84rem; }
  .cat__tag { font-size: .6rem; padding: 5px 9px; }
}

/* =================================================================
   HERO — Tablet (iPad): menos espaço vazio, textos e botões maiores
   ================================================================= */
@media (min-width: 901px) and (max-width: 1200px) {
  .hero { min-height: 840px; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 72px; }
  .hero__slide { background-position: 64% center; }
  .hero__kicker { font-size: .92rem; margin-bottom: 26px; }
  .hero h1 { font-size: clamp(3.8rem, 6.8vw, 5rem); line-height: 1.02; }
  .hero__sub { font-size: 1.34rem; margin-top: 28px; max-width: 660px; }
  .hero__cta { margin-top: 38px; gap: 16px; }
  .hero__cta .btn { padding: 19px 34px; font-size: 1.1rem; }
  .hero__cta .btn svg { width: 20px; height: 20px; }
}

/* HERO — iPad Air e tablets retrato (601–900px): hero bem mais compacta */
@media (min-width: 601px) and (max-width: 900px) {
  .hero { min-height: 560px; padding-top: calc(var(--nav-h) + 32px); padding-bottom: 48px; }
}

/* HERO — mostrar o homem (lado direito da imagem) em telas menores */
@media (max-width: 900px) { .hero__slide { background-position: 74% center; } }
@media (max-width: 600px) { .hero__slide { background-position: 88% center; } }
/* última imagem (banner3): aparecer mais para a esquerda no mobile/tablet */
@media (max-width: 1200px) { .hero__slide:last-child { background-position: 25% center; } }

/* ============================================================
   PLATAFORMAS ELEVATÓRIAS
   ============================================================ */

/* --- Portfólio (3 linhas) --- */
.plat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 56px; }
.plat-card {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.plat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.plat-card__media { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(160deg,#fff,var(--bg-soft)); }
.plat-card__media img { width: 100%; height: 100%; padding: 22px; object-fit: contain; transition: transform .7s var(--ease); }
.plat-card:hover .plat-card__media img { transform: scale(1.05); }
.plat-card__body { padding: 30px 28px 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plat-card__body h3 { font-size: 1.26rem; letter-spacing: -.01em; }
.plat-card__body p { color: var(--slate); }
.plat-card__spec { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-family: var(--f-head); font-weight: 500; font-size: 1rem; color: var(--ink-2); }
.plat-card__spec b { color: var(--orange-700); font-weight: 700; }
.plat-card__spec svg { width: 19px; height: 19px; color: var(--orange); flex: none; }
.plat-note { margin-top: 28px; font-size: .92rem; color: var(--slate-2); }

/* --- Aplicações --- */
.plat-apps { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 18px; margin-top: 56px; }
.plat-app {
  display: flex; flex-direction: column; align-items: center; gap: 15px; text-align: center;
  padding: 30px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plat-app:hover { border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.plat-app__ico { width: 48px; height: 48px; display: grid; place-items: center; color: var(--orange-700); }
.plat-app__ico svg { width: 30px; height: 30px; }
.plat-app span { font-family: var(--f-head); font-weight: 600; font-size: .93rem; color: var(--ink-2); line-height: 1.3; }

/* --- Chamada final (imagem full-width) --- */
.plat-final { position: relative; min-height: 480px; display: grid; place-items: center; text-align: center; overflow: hidden; background: #0e131d; }
.plat-final__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.plat-final::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,14,20,.5) 0%, rgba(10,14,20,.82) 100%); }
.plat-final__inner { position: relative; z-index: 1; max-width: 740px; padding: clamp(72px, 10vw, 120px) 24px; }
.plat-final__inner .eyebrow { justify-content: center; color: var(--orange); }
.plat-final__inner h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 3rem); letter-spacing: -.025em; margin-top: 16px; }
.plat-final__inner p { color: rgba(255,255,255,.82); margin: 18px auto 34px; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.6; }

@media (max-width: 980px) { .plat-cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
@media (max-width: 560px) { .plat-final { min-height: 400px; } }

/* --- Ações do card: "Ver detalhes" (abre a página de detalhe) + orçamento --- */
.plat-card__actions { display: flex; gap: 10px; margin-top: auto; padding-top: 22px; }
.plat-btn--ghost { border: 1.5px solid var(--line); color: var(--ink-2); background: transparent; }
.plat-btn--ghost:hover { border-color: var(--ink); }
@media (max-width: 560px) { .plat-card__actions { flex-direction: column; } }

/* Grid de 4 diferenciais, responsivo */
.features--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .features--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .features--4 { grid-template-columns: 1fr; } }

/* Menu hambúrguer também em telas médias: com 8 itens + CTA o menu completo
   não cabe abaixo de ~1160px, então colapsamos antes de estourar. */
@media (min-width: 901px) and (max-width: 1160px) {
  .nav, .header__phone { display: none; }
  .burger { display: block; }
  .drawer { display: flex; visibility: hidden; }
  body.menu-open .drawer { visibility: visible; }
  .header__cta .btn--primary { display: none; }
}
/* Nav compacto na faixa em que o menu completo ainda aparece mas fica apertado */
@media (min-width: 1161px) and (max-width: 1360px) {
  .header__inner { gap: 14px; }
  .nav { gap: 0; }
  .nav__link { padding: 9px 10px; font-size: .88rem; }
}
