:root {
  --navy-950: #031027;
  --navy-900: #071a3a;
  --navy-850: #08224d;
  --navy-800: #0b2a5d;
  --blue-700: #0757df;
  --blue-600: #0a67ff;
  --blue-500: #2180ff;
  --blue-100: #eaf4ff;
  --ink: #09204d;
  --muted: #5b6b88;
  --line: #dbe6f3;
  --paper: #ffffff;
  --paper-blue: #f5f9ff;
  --shadow: 0 22px 60px rgba(12, 43, 92, .12);
  --radius: 24px;
  --header-h: 88px;
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: none; }

.container { width: var(--container); margin-inline: auto; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.topbar.is-scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 34px rgba(7, 31, 70, .07);
}
.topbar__inner { display: grid; grid-template-columns: 240px 1fr auto; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; width: 220px; height: 68px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.nav { justify-self: center; display: flex; gap: 30px; }
.nav a {
  position: relative;
  text-decoration: none;
  color: #20345d;
  font-weight: 700;
  font-size: .92rem;
  padding-block: 12px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 5px;
  height: 2px;
  transform: scaleX(0);
  background: var(--blue-600);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.menu-toggle { display: none; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button--solid { color: #fff; background: linear-gradient(135deg, var(--blue-600), #0055e6); box-shadow: 0 12px 28px rgba(10,103,255,.22); }
.button--solid:hover { box-shadow: 0 16px 34px rgba(10,103,255,.3); }
.button--outline { color: #15376f; background: rgba(255,255,255,.52); border-color: #8facd2; }
.button--outline:hover { background: #fff; border-color: var(--blue-600); }
.button--small { min-height: 42px; padding: 10px 16px; border-radius: 999px; font-size: .9rem; }
.button--full { width: 100%; }
.location-card .button--full { font-weight: 400; }
.button__icon { font-size: 1.15rem; }
.topbar__cta--whatsapp {
  background: #25D366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .22);
  font-weight: 400;
}
.topbar__cta--whatsapp:hover {
  background: #25D366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, .3);
}
.topbar__cta--whatsapp .topbar__whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
  stroke: none;
  shape-rendering: geometricPrecision;
}
.topbar__cta--whatsapp {
  min-height: 48px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.topbar__whatsapp-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
  text-align: center;
}
.topbar__whatsapp-label {
  font-size: .9rem;
  font-weight: 400;
}
.topbar__whatsapp-number {
  margin-top: 0;
  font-size: .78rem;
  font-weight: 400;
}

.section-screen { position: relative; overflow: hidden; }
.section-center { min-height: inherit; display: flex; flex-direction: column; justify-content: center; }

@media (min-width: 1024px) {
  .section-screen--hero { min-height: 100svh; }
  .section-screen--standard { min-height: 80svh; }
  #empresa,
  #parceiros,
  #solucoes,
  #contato { min-height: 100svh; }

  #empresa .section-center,
  #parceiros .section-center,
  #solucoes .section-center,
  #contato .section-center,
  #localizacao .section-center {
    display: grid;
    grid-template-rows: auto 1fr;
    justify-content: initial;
    padding-bottom: 32px;
  }

  #empresa .section-center,
  #parceiros .section-center,
  #solucoes .section-center,
  #contato .section-center {
    padding-top: calc(var(--header-h) + 48px);
  }

  #localizacao .section-center {
    padding-top: calc(var(--header-h) + 48px - 6svh);
  }

  #empresa .section-heading,
  #parceiros .section-heading,
  #solucoes .section-heading,
  #contato .section-heading,
  #localizacao .section-heading {
    align-self: start;
    margin: 0 auto;
  }

  #empresa .feature-grid,
  #parceiros .brand-grid,
  #solucoes .solution-grid,
  #contato .contact-grid,
  #localizacao .location-panel {
    width: 100%;
    align-self: center;
  }

  .site-footer { min-height: 15svh; }
}

.hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 85% 75%, rgba(68,145,255,.23), transparent 28%),
    radial-gradient(circle at 70% 22%, rgba(218,235,255,.78), transparent 33%),
    linear-gradient(145deg, #ffffff 0%, #f9fcff 45%, #edf6ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(33,128,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,128,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to left, #000 5%, transparent 75%);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  overflow: hidden;
  pointer-events: none;
}
.hero__background-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
}

.hero__mesh {
  position: absolute;
  z-index: -1;
  right: -7%;
  top: 12%;
  width: 52vw;
  height: 65vh;
  opacity: .54;
  background:
    repeating-radial-gradient(circle at 70% 40%, transparent 0 28px, rgba(35,122,255,.13) 29px 30px, transparent 31px 56px),
    linear-gradient(120deg, transparent 30%, rgba(36,131,255,.08));
  transform: perspective(800px) rotateY(-16deg) rotateZ(-7deg);
  filter: blur(.2px);
}
.hero__inner {
  min-height: inherit;
  padding-top: calc(var(--header-h) + 42px);
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
}
.hero__content { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--blue-600);
  font-size: .78rem;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #071d4c;
  font-size: clamp(2.55rem, 4.25vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  transform: translateY(-10px);
}
.hero p { max-width: 660px; margin: 24px 0 0; color: #405677; font-size: clamp(1.02rem, 1.25vw, 1.22rem); line-height: 1.75; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 46px; }

.hero__visual { position: relative; min-height: 500px; display: grid; place-items: center; perspective: 1200px; }
.hero__photo { width: min(100%, 760px); height: auto; object-fit: contain; filter: drop-shadow(0 34px 42px rgba(13,55,118,.22)); }
.laptop { width: min(95%, 520px); transform: rotateY(-8deg) rotateX(3deg) translateY(18px); filter: drop-shadow(0 40px 40px rgba(13,55,118,.25)); }
.laptop__screen {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 9px solid #152135;
  border-bottom-width: 15px;
  border-radius: 18px 18px 8px 8px;
  background:
    radial-gradient(circle at 72% 28%, rgba(46,137,255,.35), transparent 24%),
    linear-gradient(150deg, #06183d, #0c397a 62%, #061c46);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.screen-grid { position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(78,149,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(78,149,255,.13) 1px, transparent 1px); background-size: 24px 24px; }
.screen-logo { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; color: #fff; transform: translateY(-8px); }
.screen-logo strong { font-size: clamp(2.3rem, 5vw, 4.1rem); line-height: .9; letter-spacing: -.08em; font-weight: 700; }
.screen-logo span { margin-top: 13px; font-size: .68rem; letter-spacing: .46em; padding-left: .46em; opacity: .9; }
.screen-pulse { position: absolute; width: 160px; height: 160px; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid rgba(76,161,255,.18); border-radius: 50%; animation: pulse 3.2s ease-out infinite; }
.laptop__base { position: relative; width: 114%; height: 28px; margin-left: -7%; margin-top: -4px; border-radius: 4px 4px 30px 30px; background: linear-gradient(180deg, #cdd4df, #788492 70%, #596470); clip-path: polygon(6% 0,94% 0,100% 65%,93% 100%,7% 100%,0 65%); }
.laptop__base::after { content: ""; position: absolute; left: 43%; top: 3px; width: 14%; height: 4px; border-radius: 0 0 8px 8px; background: #67727f; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb--one { width: 240px; height: 240px; right: 2%; top: 8%; background: rgba(43,133,255,.08); box-shadow: 0 0 80px rgba(43,133,255,.15); }
.orb--two { width: 90px; height: 90px; left: 7%; bottom: 12%; background: rgba(75,158,255,.15); box-shadow: 0 0 50px rgba(75,158,255,.22); }
.tech-node { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #1e7eff; box-shadow: 0 0 0 8px rgba(30,126,255,.08), 0 0 30px rgba(30,126,255,.55); animation: float 4s ease-in-out infinite; }
.tech-node--a { right: 6%; top: 28%; }
.tech-node--b { left: 7%; top: 46%; animation-delay: -1.3s; }
.tech-node--c { right: 18%; bottom: 8%; animation-delay: -2s; }

.company, .partners, .contact, .location { background: #fff; }
.company { background: linear-gradient(180deg, #fff, #fbfdff); }
.partners { border-top: 1px solid #edf2f8; border-bottom: 1px solid #e7eef7; background: #fff; }
.contact { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.location { background: linear-gradient(180deg, #f7fbff 0%, #ffffff 65%); }

.section-heading { max-width: 760px; margin: 0 auto clamp(34px, 5vh, 62px); text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 3vw, 3.25rem); letter-spacing: -.04em; line-height: 1.08; }
.section-heading p { max-width: 700px; margin: 17px auto 0; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.section-heading--compact { margin-bottom: clamp(25px, 3.5vh, 42px); }
.section-heading--light h2, .section-heading--light p { color: #fff; }
.section-heading--light p { color: #c9d8f4; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature { position: relative; padding: 12px clamp(22px, 3vw, 38px); text-align: center; }
.feature + .feature::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line); }
.feature__icon { width: 62px; height: 62px; margin: 0 auto 19px; display: grid; place-items: center; color: var(--blue-600); }
.feature__icon svg { width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin: 0; font-size: 1.16rem; line-height: 1.3; }
.feature p { margin: 13px auto 0; max-width: 230px; color: var(--muted); font-size: .92rem; line-height: 1.65; }

.brand-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: clamp(13px, 1.7vh, 22px) 18px; align-items: center; }
.brand-mark {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px;
  color: #1b2b45;
  font-weight: 900;
  font-size: clamp(.95rem, 1.3vw, 1.18rem);
  letter-spacing: -.02em;
  white-space: nowrap;
  filter: saturate(1.03);
}
.brand-mark.microsoft { font-weight: 600; color: #636363; }
.microsoft i { width: 22px; height: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.microsoft i b:nth-child(1){background:#f25022}.microsoft i b:nth-child(2){background:#7fba00}.microsoft i b:nth-child(3){background:#00a4ef}.microsoft i b:nth-child(4){background:#ffb900}
.logitech { color:#111; font-weight:800; }
.jabra { color:#101010; background:#ffd600; border-radius:4px; justify-self:center; min-height:32px; padding:3px 10px; }
.jabra small { font-size:.55em; }
.intelbras { color:#00a83e; }
.corel { color:#1687d3; }
.autodesk { color:#19334b; font-size:.92rem; }
.kaspersky { color:#1e2428; font-weight:700; }
.escan { color:#111; }
.cisco { color:#168dcc; letter-spacing:.12em; }
.hp { width:44px; height:44px; min-height:44px; margin:auto; color:#fff; background:#168bcc; border-radius:50%; font-size:1.2rem; font-style:italic; }
.canon { color:#e60012; font-family: Georgia, serif; font-size:1.45rem; }
.brother { color:#1247aa; text-transform:lowercase; }
.lexmark { color:#222; font-weight:650; }
.xerox, .oki, .lenovo { color:#e41d2d; }
.kyocera { color:#252525; font-size:.9rem; }
.epson, .samsung, .philips, .elgin { color:#163f9e; }
.optoma { color:#111; font-style:italic; font-weight:600; }
.benq { color:#6d3ea0; }
.jbl { width:44px; height:44px; min-height:44px; margin:auto; color:#fff; background:#f4511e; border-radius:3px; font-size:.82rem; }
.positivo { color:#111; }
.dell { color:#1879bd; }
.lg { color:#9e1b47; }
.panasonic { color:#123c8a; font-size:.95rem; }
.sony { color:#111; letter-spacing:.08em; font-family: Georgia, serif; }
.brastemp { color:#171717; font-size:.95rem; }
.consul { color:#59a933; }
.semptoshiba { color:#ec2227; font-size:.88rem; }
.zebra { color:#111; }
.dlink { color:#204889; font-family: Georgia, serif; }
.datacard { color:#28417a; font-family: Georgia, serif; text-decoration: underline; }
.tilibra { color:#214c85; border:2px solid #214c85; border-radius:5px; min-height:34px; padding:3px 8px; justify-self:center; }
.bic { color:#1a2770; background:#f8d622; border-radius:999px; min-height:32px; padding:2px 14px; justify-self:center; }
.pimaco { color:#1b1b1b; }
.suzano { color:#0ca35a; font-weight:600; }
.multilaser, .masterprint { color:#161616; font-size:.9rem; }
.masterprint { font-style:italic; }
.other { color:var(--blue-600); font-size:.84rem; font-weight:700; }
/* Interação visual das marcas: somente no hover. */
.brand-mark {
  transition: transform .28s cubic-bezier(.2,.75,.25,1), filter .28s ease, text-shadow .28s ease;
  transform-origin: center;
}
.brand-mark:hover {
  transform: translateY(-6px) scale(1.07);
  filter: saturate(1.12) drop-shadow(0 10px 13px rgba(11, 60, 127, .16));
  text-shadow: 0 6px 16px rgba(11, 60, 127, .12);
}

.brand-note { margin: 22px auto 0; text-align:center; color:#7d8da8; font-size:.78rem; }

.section-screen--dark { color: #fff; background: radial-gradient(circle at 84% 50%, rgba(30,119,255,.28), transparent 30%), linear-gradient(135deg, #031832, #062b62 50%, #041a3d); }
.solutions__mesh { position: absolute; right: -4%; top: -10%; width: 50%; height: 120%; opacity: .28; background-image: linear-gradient(rgba(98,164,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(98,164,255,.18) 1px, transparent 1px); background-size: 38px 38px; transform: rotate(13deg); mask-image: radial-gradient(circle at center, #000, transparent 70%); }
.solution-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(121,176,255,.26); border-radius: 20px; overflow: hidden; background: rgba(7,44,94,.5); backdrop-filter: blur(8px); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.solution-card { min-height: 300px; padding: clamp(24px, 3vw, 38px); }
.solution-card + .solution-card { border-left: 1px solid rgba(180,209,255,.25); }
.solution-card__icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #1182ff, #0055e9); box-shadow: 0 12px 30px rgba(0,81,223,.35); }
.solution-card__icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.solution-card h3 { margin: 21px 0 13px; font-size: 1.14rem; line-height: 1.35; }
.solution-card p { margin: 0; color: #d2ddf2; font-size: .93rem; line-height: 1.7; }

.contact__dots { position: absolute; width: 170px; height: 170px; opacity: .18; background-image: radial-gradient(circle, #1f7cff 2px, transparent 2px); background-size: 15px 15px; }
.contact__dots--left { left: -40px; top: 18%; }
.contact__dots--right { right: -40px; bottom: 8%; }
.contact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.contact-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 18px;
  border: 1px solid #e0e9f4;
  border-radius: 18px;
  background: rgba(255,255,255,.93);
  text-decoration: none;
  box-shadow: 0 16px 46px rgba(19,55,108,.09);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
a.contact-card:hover { transform: translateY(-7px); border-color: #a9c9f7; box-shadow: 0 22px 54px rgba(20,76,156,.15); }
.contact-card__icon { width: 64px; height: 64px; display:grid; place-items:center; color:#fff; background:linear-gradient(135deg,#1380ff,#0058e6); border-radius:50%; margin-bottom:21px; box-shadow:0 12px 28px rgba(18,105,238,.23); }
.contact-card__icon--whatsapp { background:linear-gradient(135deg,#2fda70,#09a94a); font-size:2rem; }
.contact-card__icon svg { width:31px; height:31px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.contact-card > span { color:#244267; font-weight:800; }
.contact-card strong { margin-top:12px; color:#081f4d; font-size:1.03rem; line-height:1.45; overflow-wrap:anywhere; }
.contact-card[href^="mailto:"] strong { font-size:.9rem; white-space:nowrap; overflow-wrap:normal; }
.contact-card small { margin-top:9px; color:#73839d; font-size:.82rem; }

.location-panel { display: grid; grid-template-columns: 320px 1fr; min-height: 470px; border:1px solid #dce7f4; border-radius:22px; overflow:hidden; background:#fff; box-shadow:var(--shadow); }
.location-card { position:relative; z-index:2; padding:34px 30px; display:flex; flex-direction:column; justify-content:center; border-right:1px solid #e2eaf4; background:#fff; }
.location-card__title-row { display:flex; align-items:center; justify-content:center; flex-wrap:nowrap; gap:12px; margin-bottom:16px; }
.location-card__pin-image { width:44px; height:44px; flex:0 0 44px; object-fit:contain; display:block; }
.location-card .location-card__title-row h3 { margin:0; white-space:nowrap; }
.location-card__pin { width:52px; height:52px; display:grid; place-items:center; margin-bottom:16px; border-radius:50%; color:#fff; background:linear-gradient(135deg,#1a83ff,#0057e8); }
.location-card__pin svg { width:28px; height:28px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.location-card h3 { margin:0 0 16px; font-size:1.3rem; }
.location-card address { margin:0 0 26px; color:#526581; font-style:normal; line-height:1.75; text-align:center; }
.map-wrap { min-height:470px; background:#edf4fb; }
.map-wrap iframe { width:100%; height:100%; min-height:470px; border:0; display:block; filter:saturate(.82) contrast(.96); }

.site-footer { display:flex; align-items:center; background:linear-gradient(135deg,#031329,#071f46); color:#dce8f9; }
.footer__inner { display:flex; align-items:center; justify-content:center; padding:28px 0; }
.footer__brand, .footer__contact, .footer__legal { display:flex; flex-direction:column; gap:7px; }
.footer__brand strong { color:#fff; font-size:1.18rem; }
.footer__brand span, .footer__contact span, .footer__legal span { color:#9fb2cf; font-size:.82rem; }
.footer__contact a { color:#fff; text-decoration:none; font-size:.88rem; }
.footer__contact a:hover { text-decoration:underline; }
.footer__legal { text-align:center; align-items:center; }
.footer__legal span { font-size:1rem; }

[data-reveal] {
  opacity: 0;
  transform: translateY(46px);
  filter: blur(5px);
  transition:
    opacity .9s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1),
    filter .9s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform, filter;
}
[data-reveal="scale"] { transform: translateY(34px) scale(.955); }
[data-reveal].is-visible { opacity: 1; transform: none; filter: blur(0); }

@keyframes pulse { 0%{opacity:.7;transform:translate(-50%,-50%) scale(.5)} 80%,100%{opacity:0;transform:translate(-50%,-50%) scale(1.6)} }
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)} }

@media (max-width: 1180px) {
  :root { --container: min(1100px, calc(100% - 40px)); }
  .topbar__inner { grid-template-columns: 210px 1fr auto; gap:16px; }
  .brand { width: 205px; height: 64px; }
  .nav { gap:16px; }
  .nav a { font-size: .86rem; }
  .brand-grid { grid-template-columns: repeat(6,1fr); }
  .brand-mark { font-size:.96rem; }
}

@media (max-width: 1023px) {
  :root { --header-h: 78px; }
  .topbar__inner { grid-template-columns: 170px 1fr auto; position:relative; }
  .brand { width:165px; height:56px; }
  .topbar__cta { display:none; }
  .menu-toggle { justify-self:end; width:46px; height:42px; display:grid; place-content:center; gap:5px; border:0; border-radius:10px; background:#fff; box-shadow:0 8px 20px rgba(10,48,104,.1); }
  .menu-toggle span { width:22px; height:2px; background:#143363; transition:.2s; }
  .nav { position:absolute; top:calc(100% + 10px); right:0; left:auto; width:min(220px, calc(100vw - 32px)); display:flex; flex-direction:column; gap:0; padding:14px; border:1px solid #e1e9f4; border-radius:16px; background:rgba(255,255,255,.98); box-shadow:var(--shadow); transform:translateY(-15px); opacity:0; pointer-events:none; transition:.2s; }
  .nav.is-open { transform:none; opacity:1; pointer-events:auto; }
  .nav a { padding:13px 14px; }
  .nav a::after { display:none; }
  .section-screen { min-height:auto; }
  .section-center { padding-block:90px; }
  .hero__media {
    top: auto;
    bottom: 0;
    height: 48%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 22%, #000 100%);
  }
  .hero__background-photo { object-position: 72% center; }
  .hero__inner { min-height:100svh; grid-template-columns:1fr; padding-top:calc(var(--header-h) + 70px); padding-bottom:90px; text-align:center; }
  .hero__content { margin:auto; }
  .hero p { margin-inline:auto; }
  .hero__actions { justify-content:center; }
  .hero__visual { min-height:380px; }
  .laptop { width:min(82vw,500px); }
  .feature-grid, .solution-grid, .contact-grid { grid-template-columns:repeat(2,1fr); }
  .feature:nth-child(3)::before { display:none; }
  .feature { padding-block:28px; }
  .brand-grid { grid-template-columns:repeat(5,1fr); }
  .solution-card:nth-child(3) { border-left:0; border-top:1px solid rgba(180,209,255,.25); }
  .solution-card:nth-child(4) { border-top:1px solid rgba(180,209,255,.25); }
  .location-panel { grid-template-columns:1fr; }
  .location-card { border-right:0; border-bottom:1px solid #e2eaf4; }

}

@media (max-width: 680px) {
  :root { --container: calc(100% - 28px); }
  .hero__media { height: 44%; }
  .hero__background-photo { object-position: 74% center; }
  .hero h1 { font-size:clamp(2.35rem, 12vw, 3.5rem); }
  .hero__visual { min-height:300px; }
  .hero__actions { flex-direction:column; }
  .hero__actions .button { width:100%; }
  .section-center { padding-block:76px; }
  .section-heading { margin-bottom:34px; }
  .feature-grid, .solution-grid, .contact-grid { grid-template-columns:1fr; }
  .feature + .feature::before { left:10%; right:10%; top:0; width:auto; height:1px; }
  .feature:nth-child(3)::before { display:block; }
  .brand-grid { grid-template-columns:repeat(3,1fr); gap:12px 8px; }
  .brand-mark { min-height:42px; font-size:.8rem; }
  .solution-card { min-height:auto; }
  .solution-card + .solution-card { border-left:0; border-top:1px solid rgba(180,209,255,.25); }
  .contact-card { min-height:215px; }
  .location-panel, .map-wrap, .map-wrap iframe { min-height:360px; }
  .location-card { padding:28px 24px; }
  .footer__inner { padding:36px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  [data-reveal] { opacity:1; transform:none; }
}

/* =========================================================
   Animações cinematográficas alternadas — Opção 3 refinada
   Somente camada de movimento. Conteúdo e layout preservados.
   ========================================================= */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  body.motion-cinema-alternada [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  body.motion-cinema-alternada .cine-section {
    perspective: 1400px;
    isolation: isolate;
  }

  body.motion-cinema-alternada .cine-item {
    --cine-delay: 0ms;
    --cine-exit-delay: 0ms;
    --cine-in-transform: translate3d(0, 70px, 0) scale(.97);
    --cine-out-up-transform: translate3d(0, -58px, 0) scale(.965);
    --cine-out-down-transform: translate3d(0, 58px, 0) scale(.965);
    --cine-in-clip: inset(0 0 0 0 round 16px);
    opacity: 0;
    transform: var(--cine-in-transform);
    transform-origin: center;
    filter: blur(10px);
    clip-path: var(--cine-in-clip);
    backface-visibility: hidden;
    will-change: opacity, transform, filter, clip-path;
    transition-property: opacity, transform, filter, clip-path;
    transition-duration: .72s, 1.02s, .78s, .96s;
    transition-timing-function: ease, cubic-bezier(.16,1,.3,1), cubic-bezier(.16,1,.3,1), cubic-bezier(.16,1,.3,1);
    transition-delay: 0ms;
  }

  body.motion-cinema-alternada .cine-item[data-cine="left"] {
    --cine-in-transform: translate3d(-125px, 20px, 0) rotateY(12deg) scale(.965);
    --cine-out-up-transform: translate3d(72px, -66px, 0) rotateZ(2.5deg) scale(.96);
    --cine-out-down-transform: translate3d(-70px, 68px, 0) rotateZ(-2deg) scale(.96);
    --cine-in-clip: inset(0 100% 0 0 round 16px);
  }

  body.motion-cinema-alternada .cine-item[data-cine="right"] {
    --cine-in-transform: translate3d(125px, 18px, 0) rotateY(-12deg) scale(.965);
    --cine-out-up-transform: translate3d(-72px, -66px, 0) rotateZ(-2.5deg) scale(.96);
    --cine-out-down-transform: translate3d(70px, 68px, 0) rotateZ(2deg) scale(.96);
    --cine-in-clip: inset(0 0 0 100% round 16px);
  }

  body.motion-cinema-alternada .cine-item[data-cine="top"] {
    --cine-in-transform: translate3d(0, -105px, 0) rotateX(-10deg) scale(.97);
    --cine-out-up-transform: translate3d(0, -78px, 0) rotateX(8deg) scale(.95);
    --cine-out-down-transform: translate3d(0, 74px, 0) rotateX(-8deg) scale(.95);
    --cine-in-clip: inset(100% 0 0 0 round 16px);
  }

  body.motion-cinema-alternada .cine-item[data-cine="bottom"] {
    --cine-in-transform: translate3d(0, 110px, 0) rotateX(10deg) scale(.96);
    --cine-out-up-transform: translate3d(0, -76px, 0) rotateX(7deg) scale(.95);
    --cine-out-down-transform: translate3d(0, 80px, 0) rotateX(-7deg) scale(.95);
    --cine-in-clip: inset(0 0 100% 0 round 16px);
  }

  body.motion-cinema-alternada .cine-item[data-cine="diag-left"] {
    --cine-in-transform: translate3d(-112px, 92px, 0) rotateZ(-4deg) rotateY(8deg) scale(.955);
    --cine-out-up-transform: translate3d(82px, -72px, 0) rotateZ(3deg) scale(.95);
    --cine-out-down-transform: translate3d(-82px, 74px, 0) rotateZ(-3deg) scale(.95);
    --cine-in-clip: inset(18% 68% 32% 0 round 18px);
  }

  body.motion-cinema-alternada .cine-item[data-cine="diag-right"] {
    --cine-in-transform: translate3d(112px, 92px, 0) rotateZ(4deg) rotateY(-8deg) scale(.955);
    --cine-out-up-transform: translate3d(-82px, -72px, 0) rotateZ(-3deg) scale(.95);
    --cine-out-down-transform: translate3d(82px, 74px, 0) rotateZ(3deg) scale(.95);
    --cine-in-clip: inset(18% 0 32% 68% round 18px);
  }

  body.motion-cinema-alternada .cine-item[data-cine="zoom"] {
    --cine-in-transform: translate3d(0, 38px, -120px) scale(.78) rotateX(7deg);
    --cine-out-up-transform: translate3d(0, -52px, -90px) scale(.88) rotateX(-5deg);
    --cine-out-down-transform: translate3d(0, 52px, -90px) scale(.88) rotateX(5deg);
    --cine-in-clip: inset(12% 12% 12% 12% round 28px);
  }

  body.motion-cinema-alternada .cine-item[data-cine="swing"] {
    --cine-in-transform: translate3d(0, 86px, 0) rotateZ(-7deg) rotateY(10deg) scale(.94);
    --cine-out-up-transform: translate3d(48px, -70px, 0) rotateZ(5deg) scale(.95);
    --cine-out-down-transform: translate3d(-48px, 72px, 0) rotateZ(-5deg) scale(.95);
    --cine-in-clip: inset(0 18% 46% 18% round 18px);
  }

  body.motion-cinema-alternada .cine-section.cine-section--active .cine-item {
    opacity: 1;
    transform: translate3d(0,0,0) rotateX(0) rotateY(0) rotateZ(0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0 round 0);
    transition-delay: var(--cine-delay);
  }

  body.motion-cinema-alternada .cine-section.cine-section--exit-up .cine-item {
    opacity: 0;
    transform: var(--cine-out-up-transform);
    filter: blur(8px);
    clip-path: inset(8% 6% 14% 6% round 18px);
    transition-duration: .46s, .66s, .55s, .55s;
    transition-delay: var(--cine-exit-delay);
  }

  body.motion-cinema-alternada .cine-section.cine-section--exit-down .cine-item {
    opacity: 0;
    transform: var(--cine-out-down-transform);
    filter: blur(8px);
    clip-path: inset(10% 7% 10% 7% round 18px);
    transition-duration: .46s, .66s, .55s, .55s;
    transition-delay: var(--cine-exit-delay);
  }

  /* O Hero usa uma entrada mais ampla, mas continua preservando o layout. */
  body.motion-cinema-alternada #inicio .hero__photo.cine-item {
    transform-origin: 60% 50%;
  }

  /* Dá profundidade às grades sem alterar sua geometria. */
  body.motion-cinema-alternada .feature-grid,
  body.motion-cinema-alternada .brand-grid,
  body.motion-cinema-alternada .solution-grid,
  body.motion-cinema-alternada .contact-grid,
  body.motion-cinema-alternada .location-panel,
  body.motion-cinema-alternada .hero__inner {
    perspective: 1400px;
    transform-style: preserve-3d;
  }
}

/* =========================================================
   Hero — revelação cinematográfica palavra por palavra
   Altera somente os efeitos da seção Início.
   ========================================================= */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  body.motion-cinema-alternada #inicio .hero-cine-title {
    overflow: visible;
  }

  body.motion-cinema-alternada #inicio .hero-cine-word {
    --hero-word-delay: 0ms;
    --hero-word-exit-delay: 0ms;
    display: inline-block;
    opacity: 0;
    filter: blur(11px);
    transform-origin: 50% 55%;
    backface-visibility: hidden;
    will-change: opacity, transform, filter, clip-path;
    transition:
      opacity .58s ease var(--hero-word-delay),
      transform .96s cubic-bezier(.16,1,.3,1) var(--hero-word-delay),
      filter .72s cubic-bezier(.16,1,.3,1) var(--hero-word-delay),
      clip-path .88s cubic-bezier(.16,1,.3,1) var(--hero-word-delay);
  }

  body.motion-cinema-alternada #inicio .hero-cine-word[data-hero-cine="left"] {
    transform: translate3d(-150px, 18px, 0) rotateY(18deg) rotateZ(-2deg) scale(.92);
    clip-path: inset(0 100% 0 0 round 10px);
  }

  body.motion-cinema-alternada #inicio .hero-cine-word[data-hero-cine="right"] {
    transform: translate3d(150px, -10px, 0) rotateY(-18deg) rotateZ(2deg) scale(.92);
    clip-path: inset(0 0 0 100% round 10px);
  }

  body.motion-cinema-alternada #inicio .hero-cine-word[data-hero-cine="top"] {
    transform: translate3d(0, -120px, 0) rotateX(-18deg) scale(.9);
    clip-path: inset(100% 0 0 0 round 10px);
  }

  body.motion-cinema-alternada #inicio .hero-cine-word[data-hero-cine="bottom"] {
    transform: translate3d(0, 125px, 0) rotateX(18deg) scale(.9);
    clip-path: inset(0 0 100% 0 round 10px);
  }

  body.motion-cinema-alternada #inicio .hero-cine-word[data-hero-cine="diag-left"] {
    transform: translate3d(-130px, 105px, 0) rotateZ(-6deg) rotateY(13deg) scale(.88);
    clip-path: inset(20% 72% 35% 0 round 12px);
  }

  body.motion-cinema-alternada #inicio .hero-cine-word[data-hero-cine="diag-right"] {
    transform: translate3d(130px, -95px, 0) rotateZ(6deg) rotateY(-13deg) scale(.88);
    clip-path: inset(35% 0 20% 72% round 12px);
  }

  body.motion-cinema-alternada #inicio .hero-cine-word[data-hero-cine="zoom"] {
    transform: translate3d(0, 26px, -180px) rotateX(10deg) scale(.62);
    clip-path: inset(24% 22% 24% 22% round 16px);
  }

  body.motion-cinema-alternada #inicio.cine-section--active .hero-cine-word {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0,0,0) rotateX(0) rotateY(0) rotateZ(0) scale(1);
    clip-path: inset(-12% -6% -22% -6% round 0);
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-up .hero-cine-word,
  body.motion-cinema-alternada #inicio.cine-section--exit-down .hero-cine-word {
    opacity: 0;
    filter: blur(8px);
    transition-delay: var(--hero-word-exit-delay);
    transition-duration: .42s, .62s, .48s, .48s;
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-up .hero-cine-word:nth-of-type(odd) {
    transform: translate3d(58px, -64px, 0) rotateZ(3deg) scale(.94);
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-up .hero-cine-word:nth-of-type(even) {
    transform: translate3d(-52px, -76px, 0) rotateZ(-3deg) scale(.94);
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-down .hero-cine-word:nth-of-type(odd) {
    transform: translate3d(-56px, 68px, 0) rotateZ(-3deg) scale(.94);
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-down .hero-cine-word:nth-of-type(even) {
    transform: translate3d(54px, 74px, 0) rotateZ(3deg) scale(.94);
  }

  body.motion-cinema-alternada #inicio .hero-cine-button {
    --hero-button-delay: 0ms;
    --hero-button-exit-delay: 0ms;
    opacity: 0;
    filter: blur(9px);
    overflow: hidden;
    will-change: opacity, transform, filter, clip-path;
    transition:
      opacity .58s ease var(--hero-button-delay),
      transform .92s cubic-bezier(.16,1,.3,1) var(--hero-button-delay),
      filter .7s cubic-bezier(.16,1,.3,1) var(--hero-button-delay),
      clip-path .86s cubic-bezier(.16,1,.3,1) var(--hero-button-delay);
  }

  body.motion-cinema-alternada #inicio .hero-cine-button[data-hero-button-cine="diag-left"] {
    transform: translate3d(-105px, 72px, 0) rotateZ(-5deg) scale(.9);
    clip-path: inset(18% 72% 28% 0 round 14px);
  }

  body.motion-cinema-alternada #inicio .hero-cine-button[data-hero-button-cine="diag-right"] {
    transform: translate3d(105px, 72px, 0) rotateZ(5deg) scale(.9);
    clip-path: inset(18% 0 28% 72% round 14px);
  }

  body.motion-cinema-alternada #inicio .hero-cine-button__label {
    display: inline-block;
    opacity: 0;
    filter: blur(7px);
    transition:
      opacity .46s ease calc(var(--hero-button-delay) + 180ms),
      transform .72s cubic-bezier(.16,1,.3,1) calc(var(--hero-button-delay) + 180ms),
      filter .58s ease calc(var(--hero-button-delay) + 180ms);
  }

  body.motion-cinema-alternada #inicio .hero-cine-button__label[data-hero-label-cine="top"] {
    transform: translate3d(0, -34px, 0) rotateX(-16deg);
  }

  body.motion-cinema-alternada #inicio .hero-cine-button__label[data-hero-label-cine="bottom"] {
    transform: translate3d(0, 34px, 0) rotateX(16deg);
  }

  body.motion-cinema-alternada #inicio.cine-section--active .hero-cine-button,
  body.motion-cinema-alternada #inicio.cine-section--active .hero-cine-button__label {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0,0,0) rotateX(0) rotateY(0) rotateZ(0) scale(1);
    clip-path: inset(0 0 0 0 round 0);
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-up .hero-cine-button,
  body.motion-cinema-alternada #inicio.cine-section--exit-down .hero-cine-button {
    opacity: 0;
    filter: blur(7px);
    transition-delay: var(--hero-button-exit-delay);
    transition-duration: .42s, .6s, .48s, .48s;
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-up .hero-cine-button:first-child {
    transform: translate3d(-54px, -58px, 0) rotateZ(-3deg) scale(.94);
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-up .hero-cine-button:last-child {
    transform: translate3d(54px, -58px, 0) rotateZ(3deg) scale(.94);
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-down .hero-cine-button:first-child {
    transform: translate3d(-52px, 58px, 0) rotateZ(-3deg) scale(.94);
  }

  body.motion-cinema-alternada #inicio.cine-section--exit-down .hero-cine-button:last-child {
    transform: translate3d(52px, 58px, 0) rotateZ(3deg) scale(.94);
  }
}


/* =========================================================
   Marcas/Parceiros — ampliação, distribuição e links oficiais
   ========================================================= */
.brand-link {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.brand-link:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 5px;
}

@media (min-width: 1181px) {
  #parceiros .brand-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(7, minmax(58px, 1fr));
    min-height: clamp(530px, 63svh, 660px);
    gap: clamp(9px, 1.25vh, 16px) clamp(20px, 2.2vw, 34px);
    align-items: center;
    align-content: center;
    padding: 10px 8px 16px;
  }
  #parceiros .brand-mark {
    min-height: 58px;
    width: 100%;
    padding: 7px 6px;
    font-size: clamp(1rem, 1.30vw, 1.28rem);
  }
  #parceiros .microsoft i { width: 24px; height: 24px; }
  #parceiros .hp,
  #parceiros .jbl { width: 46px; height: 46px; min-height: 46px; }
  #parceiros .canon { font-size: 1.55rem; }
  #parceiros .autodesk,
  #parceiros .panasonic,
  #parceiros .brastemp { font-size: .98rem; }
  #parceiros .kyocera,
  #parceiros .semptoshiba,
  #parceiros .multilaser,
  #parceiros .masterprint { font-size: .95rem; }
}

@media (min-width: 1024px) and (max-width: 1180px) {
  #parceiros .brand-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px 16px;
  }
  #parceiros .brand-mark {
    min-height: 58px;
    font-size: 1.02rem;
  }
}

/* Hover das marcas: zoom rápido no próprio centro e retorno ainda mais rápido. */
#parceiros .brand-grid { isolation: isolate; }
#parceiros .brand-link { overflow: visible; }
#parceiros .brand-mark {
  pointer-events: none;
  transform-origin: center center;
  transition: transform .065s ease-out !important;
}
#parceiros .brand-link:hover { z-index: 20; }
#parceiros .brand-link:hover .brand-mark {
  transform: scale(1.35);
  transform-origin: center center;
  transition: transform .095s cubic-bezier(.2,.8,.2,1) !important;
  filter: saturate(1.03) !important;
  text-shadow: none !important;
}
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  body.motion-cinema-alternada #parceiros.cine-section--active .brand-link .brand-mark.cine-item {
    transform-origin: center center !important;
    transition: transform .065s ease-out !important;
  }
  body.motion-cinema-alternada #parceiros.cine-section--active .brand-link:hover .brand-mark.cine-item {
    transform: scale(1.35) !important;
    transform-origin: center center !important;
    transition: transform .095s cubic-bezier(.2,.8,.2,1) !important;
    filter: saturate(1.03) !important;
    text-shadow: none !important;
  }
}

/* Correção pontual do hover: HP, JBL, Tilibra e BIC.
   Mantém as proporções naturais e evita recorte durante o zoom. */
#parceiros .hp,
#parceiros .jbl {
  flex: 0 0 auto;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px;
  min-height: 46px;
  aspect-ratio: 1 / 1;
  line-height: 1;
}

#parceiros .tilibra,
#parceiros .bic {
  flex: 0 0 auto;
  width: max-content !important;
  max-width: none;
  line-height: 1;
}

#parceiros .brand-link:has(> .hp):hover,
#parceiros .brand-link:has(> .jbl):hover,
#parceiros .brand-link:has(> .tilibra):hover,
#parceiros .brand-link:has(> .bic):hover {
  clip-path: none !important;
  overflow: visible !important;
}


/* Ajuste pontual — logos Tilibra e BIC com representação gráfica mais fiel. */
#parceiros .brand-logo-img {
  display: block;
  object-fit: contain;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-decoration: none !important;
}
#parceiros .tilibra-logo {
  max-width: 88px;
  max-height: 48px;
}
#parceiros .bic-logo {
  max-width: 92px;
  max-height: 48px;
}
#parceiros .brand-link:has(> .tilibra-logo),
#parceiros .brand-link:has(> .bic-logo) {
  overflow: visible !important;
}

/* Correção pontual do zoom — Tilibra e BIC.
   Remove o recorte herdado da animação cinematográfica do contêiner. */
#parceiros .brand-link:has(> .tilibra-logo),
#parceiros .brand-link:has(> .bic-logo),
body.motion-cinema-alternada #parceiros.cine-section--active .brand-link:has(> .tilibra-logo),
body.motion-cinema-alternada #parceiros.cine-section--active .brand-link:has(> .bic-logo) {
  clip-path: none !important;
  overflow: visible !important;
}

/* Correção pontual — Hero / botão Contato na primeira animação.
   Mantém o botão como uma peça única durante a entrada, evitando o estado
   intermediário em que apenas o ícone ficava visível. */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  body.motion-cinema-alternada #inicio .hero__actions .hero-cine-button:first-child {
    clip-path: inset(0 0 0 0 round 0);
  }

  body.motion-cinema-alternada #inicio .hero__actions .hero-cine-button:first-child .hero-cine-button__label {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotateX(0);
    transition: none;
  }
}

/* Correção pontual — evita flash do botão Contato antes da primeira animação do Hero. */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  #inicio .hero__actions .button:first-child {
    opacity: 0;
  }

  body.motion-cinema-alternada #inicio.cine-section--active .hero__actions .hero-cine-button:first-child {
    opacity: 1;
  }
}

/* Correção pontual — preserva a parte inferior da cedilha nos títulos
   Soluções e Localização durante a animação cinematográfica. */
@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  body.motion-cinema-alternada #solucoes.cine-section--active .section-heading.cine-item,
  body.motion-cinema-alternada #localizacao.cine-section--active .section-heading.cine-item {
    clip-path: inset(-8% -4% -24% -4% round 0) !important;
    overflow: visible !important;
  }
}

/* =========================================================
   HERO — ALTERNATIVA A: glass header + proteção visual lateral
   ========================================================= */
.topbar {
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  border-bottom: 1px solid rgba(219,230,243,.62);
  box-shadow: 0 6px 24px rgba(7,31,70,.035);
}

.topbar.is-scrolled {
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(219,230,243,.82);
  box-shadow: 0 9px 32px rgba(7,31,70,.075);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.97) 0%,
    rgba(255,255,255,.93) 20%,
    rgba(255,255,255,.80) 34%,
    rgba(255,255,255,.58) 45%,
    rgba(255,255,255,.22) 57%,
    rgba(255,255,255,0) 70%
  );
}

.hero h1 {
  text-shadow: 0 2px 12px rgba(7,31,75,.08);
}

@media (max-width: 1023px) {
  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.96) 42%,
      rgba(255,255,255,.76) 55%,
      rgba(255,255,255,.18) 69%,
      rgba(255,255,255,0) 82%
    );
  }
}

/* =========================================================
   CABEÇALHO — dois estados
   1) No topo: glass somente atrás do menu.
   2) Ao rolar: barra glass premium em toda a largura.
   ========================================================= */
.topbar {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

.topbar.is-scrolled {
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  border-bottom-color: rgba(219,230,243,.66);
  box-shadow: 0 7px 26px rgba(7,31,70,.065);
}

@media (min-width: 1024px) {
  .nav {
    padding: 0 26px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 999px;
    background: rgba(255,255,255,.56);
    -webkit-backdrop-filter: blur(14px) saturate(135%);
    backdrop-filter: blur(14px) saturate(135%);
    box-shadow: 0 8px 26px rgba(7,31,70,.055);
    transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, -webkit-backdrop-filter .3s ease;
  }

  .topbar.is-scrolled .nav {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-color: transparent;
    box-shadow: none;
  }
}

/* Ajuste pontual — alinha visualmente a borda esquerda da logomarca
   com a borda esquerda do título principal da seção Início. */
.brand img {
  transform: translateX(-11.33%);
}
