/* =========================================================
   PERS PICAZ TECNOLOGIAS — WEBSITE V2
   Dark editorial / orange identity
   ========================================================= */

:root {
  --bg: #080808;
  --bg-2: #0d0d0d;
  --bg-3: #121212;
  --paper: #f0eee9;
  --paper-2: #e7e3dd;
  --text: #f5f2ed;
  --ink: #11110f;
  --muted: #9f9a93;
  --muted-dark: #68635c;
  --line: rgba(255, 255, 255, .12);
  --line-soft: rgba(255, 255, 255, .07);
  --line-dark: rgba(0, 0, 0, .14);
  --orange: #ff6900;
  --orange-light: #ff963f;
  --orange-dark: #c64e00;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --page-x: clamp(22px, 5.5vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.panel-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--orange);
  color: #080808;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  opacity: .027;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 5200;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 105, 0, .65);
}

/* HEADER */
.site-header {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 22px var(--page-x);
  border-bottom: 1px solid transparent;
  transition:
    background .4s ease,
    border-color .4s ease,
    padding .4s var(--ease);
}

.site-header.scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(8, 8, 8, .84);
  border-bottom-color: var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: start;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.045em;
}

.brand-mark {
  display: block;
  width: 29px;
  height: 29px;
}

.brand-dot {
  color: var(--orange);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: #c7c2bb;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .32s var(--ease);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f4f1eb;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.header-cta span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--orange);
  color: #080808;
  font-size: 1.02rem;
  transition: transform .35s var(--ease);
}

.header-cta:hover span {
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  justify-self: end;
  position: relative;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 17px;
  height: 1px;
  background: #fff;
  transition: top .3s var(--ease), transform .3s var(--ease);
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 24px; }

body.menu-open .menu-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--page-x) 50px;
  background:
    radial-gradient(circle at 85% 85%, rgba(255,105,0,.16), transparent 32%),
    #090909;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-label {
  position: absolute;
  top: 110px;
  left: var(--page-x);
  color: #64605a;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 11vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -.06em;
  transition: color .25s ease, transform .3s var(--ease);
}

.mobile-menu nav a span {
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: .64rem;
  letter-spacing: .14em;
}

.mobile-menu nav a:hover {
  color: var(--orange);
  transform: translateX(6px);
}

.mobile-menu > p {
  position: absolute;
  left: var(--page-x);
  bottom: 38px;
  margin: 0;
  color: #66625d;
  font-size: .75rem;
  line-height: 1.6;
}

/* GLOBAL */
section {
  position: relative;
  min-height: 100vh;
  padding: 120px var(--page-x);
  overflow: hidden;
}

.section-meta {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  color: #8b857e;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-meta-light {
  border-bottom-color: var(--line);
  color: #5f5c57;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* BUTTONS */
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 248px;
  padding: 17px 18px 17px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition:
    transform .3s var(--ease),
    background .3s ease,
    color .3s ease,
    border-color .3s ease;
}

.pill-button span {
  font-size: 1.1rem;
  transition: transform .3s var(--ease);
}

.pill-button:hover {
  transform: translateY(-3px);
}

.pill-button:hover span {
  transform: rotate(45deg);
}

.pill-button-primary {
  background: var(--orange);
  color: #090909;
}

.pill-button-primary:hover {
  background: var(--orange-light);
}

.pill-button-dark {
  border-color: rgba(0,0,0,.19);
  color: #111;
}

.pill-button-dark:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.pill-button-large {
  min-width: 315px;
  padding-block: 20px;
}

/* HERO */
.hero {
  min-height: 100svh;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 145px;
  padding-bottom: 45px;
}

#network {
  position: absolute;
  z-index: -5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .38;
}

.hero-grid {
  position: absolute;
  z-index: -4;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.9) 62%, transparent 95%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.97) 0%, rgba(8,8,8,.83) 47%, rgba(8,8,8,.33) 100%),
    linear-gradient(180deg, rgba(8,8,8,.4), transparent 60%, #080808 99%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.hero-glow-a {
  width: min(44vw, 620px);
  aspect-ratio: 1;
  top: 10%;
  right: -4%;
  background: rgba(255,105,0,.24);
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.hero-glow-b {
  width: min(25vw, 360px);
  aspect-ratio: 1;
  right: 28%;
  bottom: 2%;
  background: rgba(255,150,63,.09);
  animation: floatGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  to {
    transform: translate3d(-38px, 30px, 0) scale(1.12);
  }
}

.hero-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: #928d87;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 13px var(--orange);
}

.hero-divider {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #45413d;
}

.hero-title-wrap {
  position: relative;
}

.hero-overline {
  margin: 0 0 17px;
  color: #efebe5;
  font-size: clamp(.82rem, 1vw, .98rem);
  font-weight: 700;
  letter-spacing: .02em;
}

.hero h1 {
  width: min(1250px, 100%);
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.3rem, 9.5vw, 10.3rem);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.078em;
  text-transform: uppercase;
}

.title-line {
  display: block;
  overflow: hidden;
  padding: .04em 0;
}

.title-inner {
  display: block;
  transform: translateY(115%);
  animation: titleIn 1.1s var(--ease) forwards;
}

.title-line:nth-child(2) .title-inner { animation-delay: .11s; }
.title-line:nth-child(3) .title-inner { animation-delay: .22s; }

@keyframes titleIn {
  to { transform: translateY(0); }
}

.title-outline {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(245,242,237,.62);
}

.hero-side-word {
  position: absolute;
  right: -2.6vw;
  top: 48%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  color: rgba(255,255,255,.075);
  font-family: "Space Grotesk", sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .45em;
}

.hero-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-top: 48px;
}

.hero-footer > p {
  width: min(520px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: clamp(.9rem, 1.08vw, 1.05rem);
  line-height: 1.75;
}

.hero-footer strong {
  color: #ded9d2;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.circle-button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transition:
    transform .3s var(--ease),
    background .3s ease,
    color .3s ease;
}

.circle-button:hover {
  transform: translateY(4px);
  background: #fff;
  color: #111;
}

.hero-sequence {
  position: absolute;
  right: var(--page-x);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #55514d;
  font-size: .57rem;
  letter-spacing: .12em;
}

.hero-sequence i {
  display: block;
  width: 48px;
  height: 1px;
  background: #353230;
}

/* COMPANY */
.company-section {
  min-height: 112vh;
  background: var(--paper);
  color: var(--ink);
}

.company-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .65fr;
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
  margin-top: 70px;
}

.company-heading h2 {
  margin: 22px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.2rem, 8.6vw, 9.2rem);
  font-weight: 500;
  line-height: .85;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.company-heading h2 em {
  color: var(--orange);
  font-style: normal;
}

.company-copy {
  padding-bottom: 10px;
}

.company-copy p {
  margin: 0 0 21px;
  color: var(--muted-dark);
  font-size: .92rem;
  line-height: 1.8;
}

.company-copy .lead {
  color: #2f2d29;
  font-size: 1.1rem;
  line-height: 1.72;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #aaa49b;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.inline-link span {
  color: var(--orange);
}

.company-visual {
  position: absolute;
  right: -16vw;
  bottom: -23vw;
  width: min(760px, 62vw);
  aspect-ratio: 1;
}

.tech-sphere {
  position: absolute;
  inset: 0;
  animation: sphereFloat 7s ease-in-out infinite alternate;
}

@keyframes sphereFloat {
  to { transform: translateY(-18px); }
}

.sphere-ring {
  position: absolute;
  border: 1px solid rgba(0,0,0,.11);
  border-radius: 50%;
}

.ring-a { inset: 0; animation: spin 22s linear infinite; }
.ring-b { inset: 16%; animation: spin 15s linear infinite reverse; }
.ring-c { inset: 31%; animation: spin 10s linear infinite; }

.sphere-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255,105,0,.35);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.sphere-core {
  position: absolute;
  inset: 42%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 60px rgba(255,105,0,.25);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.sphere-core span {
  font-size: clamp(1.5rem, 3vw, 3rem);
}

.orbit-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d1c19;
}

.node-a { left: 20%; top: 23%; }
.node-b { left: 39%; bottom: 10%; }
.node-c { right: 14%; top: 40%; }

.visual-caption {
  position: absolute;
  left: 9%;
  top: 51%;
  display: grid;
  gap: 10px;
  transform: rotate(-90deg);
  color: rgba(0,0,0,.35);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .24em;
}

.visual-caption span:nth-child(2) {
  color: var(--orange);
}

/* PURPOSE */
.purpose-section {
  background: #0a0a0a;
}

.purpose-intro {
  margin-top: 64px;
}

.purpose-intro h2 {
  max-width: 1060px;
  margin: 22px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.8rem, 7.2vw, 8rem);
  font-weight: 500;
  line-height: .89;
  letter-spacing: -.072em;
  text-transform: uppercase;
}

.purpose-intro h2 span {
  color: var(--orange);
}

.purpose-cards {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 1px;
  margin-top: 85px;
  background: var(--line);
  border: 1px solid var(--line);
}

.purpose-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 54px);
  background: #0d0d0d;
  transition: background .35s ease;
}

.purpose-card:hover {
  background: #111;
}

.purpose-card-featured {
  grid-row: span 2;
  min-height: 801px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255,105,0,.16), transparent 30%),
    #0d0d0d;
}

.purpose-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.purpose-number {
  color: #5d5954;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.purpose-symbol {
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.purpose-label {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.purpose-card h3 {
  max-width: 820px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.1vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.purpose-card-featured h3 {
  font-size: clamp(2.4rem, 4vw, 5rem);
}

.values-card {
  min-height: 400px;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.values-list span {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: #d7d2cc;
  font-size: .75rem;
  font-weight: 600;
}

/* SERVICES */
.services-section {
  background: var(--paper);
  color: var(--ink);
  padding-bottom: 145px;
}

.services-heading {
  display: grid;
  grid-template-columns: .58fr 1fr;
  gap: 45px;
  margin-top: 68px;
}

.services-heading h2 {
  grid-column: 2;
  margin: -9px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 7.4vw, 8.2rem);
  font-weight: 500;
  line-height: .87;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.services-heading-copy {
  grid-column: 2;
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted-dark);
  font-size: .95rem;
  line-height: 1.8;
}

.services-list {
  margin-top: 90px;
  border-top: 1px solid var(--line-dark);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 55px 70px minmax(250px,.9fr) minmax(300px,1fr) 105px;
  gap: 18px;
  align-items: center;
  min-height: 205px;
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  transition: padding .38s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(-12%);
  background: linear-gradient(90deg, rgba(255,105,0,.13), transparent 64%);
  transition:
    opacity .4s ease,
    transform .5s var(--ease);
}

.service-row:hover::before {
  opacity: 1;
  transform: none;
}

.service-row:hover {
  padding-left: 14px;
}

.service-index,
.service-symbol,
.service-main,
.service-summary,
.service-open {
  position: relative;
  z-index: 2;
}

.service-index {
  color: #a29c94;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.service-symbol {
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem;
}

.service-main p {
  margin: 0 0 7px;
  color: #8a847c;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-main h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.9rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.045em;
}

.service-summary {
  max-width: 590px;
  color: var(--muted-dark);
  font-size: .85rem;
  line-height: 1.75;
}

.service-open {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-open span {
  border-bottom: 1px solid rgba(0,0,0,.28);
}

.service-open:hover {
  color: var(--orange);
}

.services-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 55px;
}

.services-foot p {
  margin: 0;
  color: #686159;
  font-size: .9rem;
}

.services-foot strong {
  color: #141311;
}

/* IMPACT */
.impact-section {
  min-height: 112vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0a0a0a;
}

.impact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.impact-ring {
  position: absolute;
  right: -17vw;
  top: -17vw;
  width: 70vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 50%;
}

.impact-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255,105,0,.6);
}

.impact-ring.ring-1 { animation: spin 32s linear infinite; }
.impact-ring.ring-2 {
  width: 53vw;
  right: -8.5vw;
  top: -8.5vw;
  animation: spin 24s linear infinite reverse;
}
.impact-ring.ring-3 {
  width: 36vw;
  right: 0;
  top: 0;
  animation: spin 18s linear infinite;
}

.impact-line {
  position: absolute;
  top: 0;
  right: 26%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(255,105,0,.6), transparent);
  opacity: .22;
  animation: scanX 7s ease-in-out infinite alternate;
}

@keyframes scanX {
  to { right: 7%; }
}

.impact-copy {
  position: relative;
  z-index: 2;
  margin-top: 62px;
}

.impact-copy h2 {
  margin: 22px 0 40px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.3rem, 8.2vw, 9.2rem);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.078em;
  text-transform: uppercase;
}

.impact-copy h2 span {
  color: var(--orange);
}

.impact-description {
  max-width: 520px;
  margin: 0;
  color: #96918a;
  font-size: .94rem;
  line-height: 1.8;
}

.impact-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line);
}

.impact-pillar {
  min-height: 190px;
  padding: 28px 32px 0 0;
  border-right: 1px solid var(--line);
}

.impact-pillar:not(:first-child) {
  padding-left: 32px;
}

.impact-pillar:last-child {
  border-right: 0;
}

.impact-pillar strong {
  color: var(--orange);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.impact-pillar h3 {
  margin: 18px 0 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -.04em;
}

.impact-pillar p {
  margin: 0;
  color: #75716b;
  font-size: .78rem;
  line-height: 1.7;
}

/* MILESTONES */
.milestones-section {
  background: var(--paper);
  color: var(--ink);
  padding-bottom: 140px;
}

.milestones-heading {
  display: grid;
  grid-template-columns: .58fr 1fr;
  margin-top: 66px;
}

.milestones-heading h2 {
  grid-column: 2;
  margin: 20px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4rem, 7.5vw, 8.2rem);
  font-weight: 500;
  line-height: .87;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.milestones-heading h2 em {
  color: var(--orange);
  font-style: normal;
}

.milestones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 85px;
}

.milestone-card {
  position: relative;
  min-height: 730px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3vw, 45px);
}

.milestone-card-orange {
  background: var(--orange);
  color: #0e0d0b;
}

.milestone-card-dark {
  background: #111;
  color: #f4f0ea;
}

.milestone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.milestone-tag {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.milestone-arrow {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.milestone-art {
  flex: 1;
  min-height: 265px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0 20px;
}

.milestone-art-puc {
  gap: 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.09em;
}

.milestone-art-puc span:last-child {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(12,12,10,.65);
}

.milestone-art-inpi {
  position: relative;
}

.registered-r {
  position: relative;
  z-index: 2;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(9rem, 18vw, 17rem);
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.4);
}

.registered-circle {
  position: absolute;
  width: clamp(140px, 18vw, 255px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,105,0,.65);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(255,105,0,.025),
    0 0 80px rgba(255,105,0,.11);
}

.milestone-body {
  position: relative;
  z-index: 2;
}

.milestone-kicker {
  margin: 0 0 13px;
  opacity: .65;
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.milestone-body h3 {
  max-width: 600px;
  margin: 0 0 19px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  font-weight: 500;
  line-height: .97;
  letter-spacing: -.055em;
}

.milestone-body > p:not(.milestone-kicker) {
  max-width: 570px;
  margin: 0;
  opacity: .7;
  font-size: .82rem;
  line-height: 1.75;
}

.milestone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.milestone-link span {
  transition: transform .3s var(--ease);
}

.milestone-link:hover span {
  transform: rotate(45deg);
}

/* CONTACT */
.contact-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 38px;
  background:
    linear-gradient(180deg, #090909, #0a0a0a 58%, #100b08);
}

.contact-glow {
  position: absolute;
  left: 16%;
  bottom: -52%;
  width: 67vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,105,0,.17);
  filter: blur(155px);
}

.contact-big-p {
  position: absolute;
  right: -4vw;
  bottom: -21vw;
  color: transparent;
  font-family: "Space Grotesk", sans-serif;
  font-size: min(72vw, 980px);
  font-weight: 700;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
  pointer-events: none;
}

.contact-main {
  position: relative;
  z-index: 2;
  margin-top: 62px;
}

.contact-main h2 {
  margin: 22px 0 52px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.2rem, 8.5vw, 9.3rem);
  font-weight: 500;
  line-height: .83;
  letter-spacing: -.078em;
  text-transform: uppercase;
}

.contact-main h2 span {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(245,242,237,.55);
}

.contact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}

.contact-bottom > p {
  max-width: 480px;
  margin: 0;
  color: #85807a;
  font-size: .9rem;
  line-height: 1.8;
}

footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-size: 1rem;
}

.footer-center {
  color: #5f5b56;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-meta {
  justify-self: end;
  display: flex;
  gap: 25px;
  color: #625e59;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-meta a:hover {
  color: var(--orange);
}

/* DETAIL DRAWERS */
.detail-panel {
  position: fixed;
  z-index: 4000;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}

.detail-panel.is-open {
  pointer-events: auto;
  visibility: visible;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.68);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity .45s ease;
}

.detail-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(760px, 92vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #111;
  color: #f5f2ed;
  transform: translateX(103%);
  box-shadow: -30px 0 70px rgba(0,0,0,.28);
  transition: transform .6s var(--ease);
}

.detail-panel.is-open .detail-backdrop {
  opacity: 1;
}

.detail-panel.is-open .detail-drawer {
  transform: none;
}

.detail-drawer-head {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(22px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
}

.detail-drawer-head > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.detail-eyebrow {
  color: var(--orange);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.detail-count {
  color: #5f5b56;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.detail-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  transition: background .25s ease, color .25s ease, transform .3s var(--ease);
}

.detail-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #111;
  transform: rotate(90deg);
}

.detail-scroll {
  overflow-y: auto;
  padding: 0 clamp(22px, 5vw, 54px) 50px;
}

.detail-hero {
  padding: 55px 0 52px;
  border-bottom: 1px solid var(--line);
}

.detail-symbol {
  display: block;
  margin-bottom: 35px;
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.4rem;
}

.detail-hero h2 {
  margin: 0 0 24px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.068em;
}

.detail-hero p {
  max-width: 600px;
  margin: 0;
  color: #9d9891;
  font-size: .95rem;
  line-height: 1.8;
}

.detail-section {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.detail-section h3 {
  margin: 0 0 24px;
  color: #ece8e2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.035em;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #aaa59e;
  font-size: .82rem;
  line-height: 1.65;
}

.detail-list li:first-child {
  border-top: 0;
}

.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--orange);
  font-weight: 800;
}

.detail-list li strong {
  color: #f0ece6;
  font-weight: 600;
}

.detail-list-secondary li::before {
  content: "↗";
}

.detail-cta {
  padding: 44px 0 10px;
}

.detail-cta > p {
  margin: 0 0 26px;
  color: #8f8a84;
  font-size: .9rem;
  line-height: 1.75;
}

.story-drawer {
  background:
    radial-gradient(circle at 80% 12%, rgba(255,105,0,.09), transparent 28%),
    #111;
}

.story-hero {
  padding-bottom: 42px;
}

.story-content {
  padding: 38px 0 0;
}

.story-content p {
  margin: 0 0 20px;
  color: #aaa59e;
  font-size: .87rem;
  line-height: 1.85;
}

.story-content h3 {
  margin: 38px 0 18px;
  color: #f3efe9;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -.035em;
}

.story-content ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.story-content li {
  position: relative;
  padding-left: 24px;
  color: #aaa59e;
  font-size: .85rem;
  line-height: 1.7;
}

.story-content li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .company-layout {
    grid-template-columns: 1fr .7fr;
  }

  .services-heading,
  .milestones-heading {
    grid-template-columns: 1fr;
  }

  .services-heading h2,
  .services-heading-copy,
  .milestones-heading h2 {
    grid-column: 1;
  }

  .service-row {
    grid-template-columns: 45px 52px minmax(240px,.85fr) 1fr 92px;
  }

  .impact-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-pillar:nth-child(2) {
    border-right: 0;
  }

  .impact-pillar:nth-child(3),
  .impact-pillar:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .impact-pillar:nth-child(3) {
    padding-left: 0;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-center {
    display: none;
  }
}

@media (max-width: 860px) {
  section {
    min-height: auto;
    padding-top: 105px;
    padding-bottom: 90px;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 14vw, 7rem);
  }

  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .pill-button {
    flex: 1;
  }

  .company-section {
    min-height: 100svh;
  }

  .company-layout {
    grid-template-columns: 1fr;
  }

  .company-copy {
    max-width: 620px;
  }

  .company-visual {
    right: -32vw;
    bottom: -32vw;
    width: 90vw;
    opacity: .55;
  }

  .purpose-cards {
    grid-template-columns: 1fr;
  }

  .purpose-card-featured {
    grid-row: auto;
    min-height: 520px;
  }

  .purpose-card,
  .values-card {
    min-height: 370px;
  }

  .service-row {
    grid-template-columns: 38px 1fr 42px;
    gap: 12px;
    padding: 32px 0;
  }

  .service-row:hover {
    padding-left: 0;
  }

  .service-symbol {
    display: none;
  }

  .service-main {
    grid-column: 2;
  }

  .service-summary {
    grid-column: 2;
    margin-top: 14px;
  }

  .service-open {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .service-open span {
    display: none;
  }

  .services-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .milestones-grid {
    grid-template-columns: 1fr;
  }

  .milestone-card {
    min-height: 650px;
  }

  .contact-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    width: 100%;
    justify-self: auto;
    justify-content: space-between;
  }
}

@media (max-width: 620px) {
  :root {
    --page-x: 20px;
  }

  .site-header {
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .section-meta {
    align-items: flex-start;
    font-size: .56rem;
  }

  .section-meta span:last-child {
    text-align: right;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .hero-topline {
    flex-wrap: wrap;
    font-size: .56rem;
  }

  .hero-overline {
    max-width: 290px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16.4vw, 5.4rem);
  }

  .hero-side-word {
    display: none;
  }

  .hero-footer {
    margin-top: 37px;
  }

  .hero-footer > p {
    max-width: 340px;
    font-size: .84rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .pill-button {
    min-width: 0;
    padding-left: 19px;
  }

  .circle-button {
    flex: 0 0 52px;
    width: 52px;
  }

  .company-heading h2 {
    font-size: clamp(3.55rem, 16vw, 5.6rem);
  }

  .company-copy .lead {
    font-size: 1rem;
  }

  .purpose-intro h2,
  .services-heading h2,
  .milestones-heading h2 {
    font-size: clamp(3.35rem, 15vw, 5.4rem);
  }

  .purpose-card {
    padding: 28px 24px;
  }

  .purpose-card-featured {
    min-height: 470px;
  }

  .purpose-card-featured h3 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .purpose-card h3 {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
  }

  .service-row {
    min-height: auto;
  }

  .service-index {
    align-self: start;
    padding-top: 7px;
  }

  .service-main h3 {
    font-size: 1.95rem;
  }

  .service-summary {
    font-size: .8rem;
  }

  .services-foot .pill-button {
    width: 100%;
  }

  .impact-copy h2,
  .contact-main h2 {
    font-size: clamp(3.45rem, 16vw, 5.7rem);
  }

  .impact-pillars {
    grid-template-columns: 1fr;
  }

  .impact-pillar,
  .impact-pillar:not(:first-child) {
    min-height: 150px;
    padding: 27px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .impact-pillar:first-child {
    border-top: 0;
  }

  .milestone-card {
    min-height: 590px;
    padding: 28px 24px;
  }

  .milestone-art {
    min-height: 205px;
  }

  .milestone-body h3 {
    font-size: 2.15rem;
  }

  .pill-button-large {
    width: 100%;
    min-width: 0;
  }

  .contact-buttons {
    width: 100%;
  }

  .footer-meta {
    flex-direction: column;
    gap: 10px;
  }

  .detail-drawer {
    width: 100%;
  }

  .detail-scroll {
    padding-inline: 22px;
  }

  .detail-hero {
    padding-top: 42px;
  }

  .detail-hero h2 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   V3.2 — CINEMATIC DATA FIELD
   Uma atmosfera persistente, sutil e tecnológica.
   Sem cubo, sem logo flutuante e sem objeto central dominante.
   ========================================================= */

.brand-image {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 9px;
  filter: drop-shadow(0 0 12px rgba(255, 146, 65, .20));
}

.footer-brand .brand-image {
  width: 31px;
  height: 31px;
}

/* ----- abertura cinematográfica curta ----- */
.cinematic-intro {
  position: fixed;
  z-index: 9000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
  pointer-events: none;
  animation: introExit 2.55s var(--ease) forwards;
}

.cinematic-intro::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 105, 0, .15), transparent 28%),
    linear-gradient(115deg, transparent 32%, rgba(255,255,255,.025) 48%, transparent 61%);
  filter: blur(8px);
  animation: introLight 2.1s ease-out forwards;
}

.intro-center {
  position: relative;
  z-index: 3;
  width: min(520px, calc(100vw - 48px));
  text-align: center;
  animation: introCenter 2.2s var(--ease) forwards;
}

.intro-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -.035em;
}

.intro-brand img {
  width: 37px;
  height: 37px;
  object-fit: contain;
  border-radius: 10px;
}

.intro-line {
  width: 0;
  height: 1px;
  margin: 22px auto 17px;
  background: linear-gradient(90deg, transparent, var(--orange), rgba(255,255,255,.65), var(--orange), transparent);
  box-shadow: 0 0 16px rgba(255,105,0,.35);
  animation: introLine 1.15s .25s var(--ease) forwards;
}

.intro-center p {
  margin: 0;
  color: #706b65;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .26em;
  opacity: 0;
  animation: introText .75s .55s ease forwards;
}

.intro-frame {
  position: absolute;
  left: 0;
  width: 100%;
  height: 9.5vh;
  background: #000;
  z-index: 4;
}

.intro-frame-top { top: 0; animation: frameTop 2.35s var(--ease) forwards; }
.intro-frame-bottom { bottom: 0; animation: frameBottom 2.35s var(--ease) forwards; }

.intro-scan {
  position: absolute;
  z-index: 2;
  left: -20%;
  top: 50%;
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,120,22,.8), rgba(255,255,255,.8), transparent);
  box-shadow: 0 0 22px rgba(255,105,0,.34);
  opacity: 0;
  animation: introScan 1.5s .15s ease-out forwards;
}

@keyframes introLine { to { width: 100%; } }
@keyframes introText { to { opacity: 1; } }
@keyframes introCenter {
  0% { opacity: 0; transform: translateY(12px) scale(.985); filter: blur(8px); }
  22% { opacity: 1; transform: none; filter: blur(0); }
  72% { opacity: 1; transform: none; filter: blur(0); }
  100% { opacity: 0; transform: translateY(-8px) scale(1.01); filter: blur(5px); }
}
@keyframes introLight {
  0% { opacity: 0; transform: translateX(-8%); }
  35% { opacity: 1; }
  100% { opacity: .18; transform: translateX(7%); }
}
@keyframes introScan {
  0% { transform: translateY(70px) scaleX(.1); opacity: 0; }
  25% { opacity: .75; }
  100% { transform: translateY(-70px) scaleX(1); opacity: 0; }
}
@keyframes frameTop { 0%, 65% { transform: translateY(0); } 100% { transform: translateY(-110%); } }
@keyframes frameBottom { 0%, 65% { transform: translateY(0); } 100% { transform: translateY(110%); } }
@keyframes introExit { 0%, 80% { visibility: visible; opacity: 1; } 100% { visibility: hidden; opacity: 0; } }

/* ----- ambiente fixo que atravessa todo o site ----- */
.cinematic-atmosphere {
  --scene-energy: .85;
  --scene-x: 72%;
  --scene-y: 40%;
  --scene-theme-opacity: 1;
  position: fixed;
  z-index: 8;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity .35s ease;
}

.cinematic-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cinematic-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--scene-x) var(--scene-y), transparent 0 12%, rgba(8,8,8,.015) 34%, rgba(8,8,8,.11) 72%, rgba(8,8,8,.18) 100%),
    linear-gradient(90deg, rgba(0,0,0,.11), transparent 14%, transparent 86%, rgba(0,0,0,.10));
  opacity: var(--scene-theme-opacity);
  transition: opacity .6s ease;
}

.cinematic-atmosphere.is-light .cinematic-vignette {
  opacity: .05;
}

.cinematic-lens {
  position: absolute;
  left: var(--scene-x);
  top: var(--scene-y);
  width: min(42vw, 640px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,169,76,.085), rgba(255,105,0,.032) 23%, rgba(78,167,255,.018) 45%, transparent 69%);
  filter: blur(34px);
  opacity: calc(var(--scene-energy) * .9);
  transition: left .2s linear, top .2s linear, opacity .5s ease;
}

.cinematic-atmosphere.is-light .cinematic-lens {
  opacity: calc(var(--scene-energy) * .38);
  mix-blend-mode: multiply;
}

.cinematic-scanline {
  position: absolute;
  left: -25vw;
  top: 0;
  width: 26vw;
  height: 100%;
  transform: skewX(-13deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.018), rgba(255,149,54,.055), transparent);
  filter: blur(6px);
  opacity: calc(var(--scene-energy) * .55);
  animation: cinematicScan 11s linear infinite;
}

@keyframes cinematicScan {
  to { transform: translateX(155vw) skewX(-13deg); }
}

.cinematic-hud {
  position: absolute;
  right: clamp(22px, 4vw, 68px);
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.30);
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .45s ease, opacity .45s ease;
}

.cinematic-hud span { color: var(--orange); }
.cinematic-hud i { width: 31px; height: 1px; background: currentColor; }
.cinematic-hud strong { font: inherit; }

.cinematic-atmosphere.is-light .cinematic-hud {
  color: rgba(66,50,38,.34);
}

/* Conteúdo sempre acima do ambiente tecnológico. */
.hero-topline,
.hero-title-wrap,
.hero-footer,
.hero-sequence,
.company-section .section-meta,
.company-layout,
.purpose-section .section-meta,
.purpose-intro,
.purpose-cards,
.services-section .section-meta,
.services-heading,
.services-list,
.services-foot,
.impact-section .section-meta,
.impact-copy,
.impact-pillars,
.milestones-section .section-meta,
.milestones-heading,
.milestones-grid,
.contact-section .section-meta,
.contact-main,
.contact-section footer {
  position: relative;
  z-index: 12;
}

/* O restante dos elementos decorativos das seções fica mais discreto. */
.hero-grid { opacity: .42; }
.hero-glow { opacity: .42; filter: blur(135px); }
.contact-glow { opacity: .62; }
.contact-big-p { opacity: .55; }

/* Remove qualquer sobra do gráfico anterior da seção Empresa. */
.company-visual { display: none !important; }

/* ----- linguagem mais trailer / editorial ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(7px);
  transition:
    opacity .95s var(--ease),
    transform .95s var(--ease),
    filter .95s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.hero h1 {
  text-shadow: 0 0 44px rgba(255,255,255,.015);
}

.title-outline {
  -webkit-text-stroke: 1px rgba(245,242,237,.70);
  text-shadow: 0 0 34px rgba(255,105,0,.08);
}

.hero-cinematic-code {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 13px;
  color: #5f5a54;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-cinematic-code i {
  display: block;
  width: 35px;
  height: 1px;
  background: linear-gradient(90deg, #4d4944, var(--orange));
}

.hero-cinematic-code span:last-child {
  color: var(--orange);
}

/* Pequenos cortes de luz nas seções, lembrando transições de trailer. */
section::after {
  content: "";
  position: absolute;
  z-index: 9;
  left: var(--page-x);
  right: var(--page-x);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,105,0,.16), transparent);
  opacity: .45;
  pointer-events: none;
}

.hero::after {
  background: linear-gradient(90deg, transparent, rgba(255,105,0,.20), transparent);
  opacity: .7;
}

/* O fundo escuro de impacto fica mais limpo para o campo persistente aparecer. */
.impact-section {
  background:
    radial-gradient(circle at 75% 46%, rgba(255,105,0,.045), transparent 28%),
    #0a0a0a;
}

/* Light sections: o canvas tem traços escuros/laranjas e precisa ficar sutil. */
.company-section,
.services-section,
.milestones-section {
  isolation: isolate;
}

/* ----- mobile ----- */
@media (max-width: 980px) {
  .brand-image { width: 31px; height: 31px; }
  .cinematic-hud { display: none; }
  .cinematic-lens { width: min(65vw, 520px); }
}

@media (max-width: 620px) {
  .brand-image { width: 28px; height: 28px; }

  .cinematic-intro .intro-brand {
    font-size: 1.05rem;
  }

  .cinematic-intro .intro-brand img {
    width: 32px;
    height: 32px;
  }

  .intro-center p {
    font-size: .48rem;
    letter-spacing: .19em;
  }

  .cinematic-lens {
    width: 86vw;
  }

  .cinematic-scanline {
    width: 42vw;
    opacity: calc(var(--scene-energy) * .36);
  }

  .hero-grid { opacity: .25; }
  section::after { left: 20px; right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-intro { display: none; }
  .cinematic-scanline { animation: none; }
  .reveal { filter: none; }
}

body.panel-open .cinematic-atmosphere { opacity: .12; }
body.menu-open .cinematic-atmosphere { opacity: .20; }


/* =========================================================
   V4 — PURPOSE + CINEMATIC VIDEO + MULTI-SPEED DATA PACKETS
   ========================================================= */

/* Propósito com mais foco nos títulos e espaço para vídeo */
.purpose-section {
  min-height: 115vh;
  padding-bottom: 150px;
}

.purpose-intro-v4 {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  column-gap: 44px;
  align-items: start;
}

.purpose-intro-v4 .eyebrow {
  grid-column: 1;
}

.purpose-intro-v4 h2 {
  grid-column: 2;
  margin-top: -8px;
  font-size: clamp(3.7rem, 6.4vw, 7.1rem);
}

.purpose-intro-copy {
  grid-column: 2;
  max-width: 590px;
  margin: 28px 0 0;
  color: #8f8a84;
  font-size: .88rem;
  line-height: 1.8;
}

.purpose-v4-layout {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(390px, .86fr) minmax(480px, 1.14fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: stretch;
  margin-top: 64px;
}

.purpose-principles {
  display: grid;
  gap: 12px;
}

.purpose-mini-card {
  position: relative;
  min-height: 178px;
  padding: 24px 70px 25px 27px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(120deg, rgba(255,105,0,.045), transparent 48%),
    rgba(13,13,13,.86);
  overflow: hidden;
  transition:
    transform .42s var(--ease),
    border-color .35s ease,
    background .35s ease;
}

.purpose-mini-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255,105,0,.42);
  transition: height .45s var(--ease);
}

.purpose-mini-card:hover {
  transform: translateX(7px);
  border-color: rgba(255,132,42,.26);
  background:
    linear-gradient(120deg, rgba(255,105,0,.085), transparent 54%),
    rgba(15,15,15,.94);
}

.purpose-mini-card:hover::before {
  height: 100%;
}

.purpose-mini-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #66615c;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.purpose-mini-meta span:first-child {
  color: var(--orange);
}

.purpose-mini-meta i {
  width: 26px;
  height: 1px;
  background: rgba(255,255,255,.13);
}

.purpose-mini-card h3 {
  margin: 0 0 11px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.82rem, 2.4vw, 2.75rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}

.purpose-mini-card h3 strong {
  color: var(--orange);
  font-weight: 600;
}

.purpose-mini-card > p {
  max-width: 520px;
  margin: 0;
  color: #99948d;
  font-size: .76rem;
  line-height: 1.65;
}

.purpose-mini-symbol {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,126,31,.44);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.purpose-values-v4 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.purpose-values-v4 span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: #a6a19a;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .035em;
}

/* Preview institucional */
.institutional-video {
  min-width: 0;
}

.video-preview {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 558px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 69% 30%, rgba(255,105,0,.18), transparent 27%),
    radial-gradient(circle at 31% 74%, rgba(69,151,235,.08), transparent 24%),
    linear-gradient(145deg, #12100f 0%, #080808 58%, #0d0b09 100%);
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition:
    transform .55s var(--ease),
    border-color .4s ease,
    box-shadow .55s ease;
}

.video-preview::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.03) 62%),
    linear-gradient(180deg, transparent 52%, rgba(0,0,0,.60));
}

.video-preview::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255,255,255,.045);
  pointer-events: none;
  transition: inset .6s var(--ease), border-color .45s ease;
}

.video-preview:hover {
  transform: scale(1.012);
  border-color: rgba(255,139,47,.34);
  box-shadow: 0 24px 80px rgba(0,0,0,.36), 0 0 60px rgba(255,105,0,.08);
}

.video-preview:hover::after {
  inset: 6%;
  border-color: rgba(255,166,94,.11);
}

.video-preview-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 70% 38%, #000 0, rgba(0,0,0,.9) 34%, transparent 77%);
}

.video-preview-sweep {
  position: absolute;
  left: -35%;
  top: -15%;
  width: 24%;
  height: 135%;
  transform: skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgba(255,224,196,.14), rgba(255,139,45,.12), transparent);
  filter: blur(7px);
  animation: videoPreviewSweep 6.5s ease-in-out infinite;
}

@keyframes videoPreviewSweep {
  0%, 18% { transform: translateX(-80%) skewX(-16deg); opacity: 0; }
  34% { opacity: .9; }
  74%, 100% { transform: translateX(720%) skewX(-16deg); opacity: 0; }
}

.video-preview-orbit {
  position: absolute;
  right: -11%;
  top: 4%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,132,40,.14);
  border-radius: 50%;
  transform: rotateX(68deg);
}

.video-preview-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #ff8c35;
  box-shadow: 0 0 16px rgba(255,105,0,.8);
}

.video-orbit-a { animation: videoOrbitA 18s linear infinite; }
.video-orbit-b {
  right: 1%;
  top: 15%;
  width: 43%;
  border-color: rgba(82,169,255,.10);
  transform: rotateY(64deg) rotateZ(15deg);
  animation: videoOrbitB 13s linear infinite reverse;
}

.video-orbit-b::after {
  background: #6ab7ff;
  box-shadow: 0 0 15px rgba(83,165,255,.68);
}

@keyframes videoOrbitA {
  to { transform: rotateX(68deg) rotateZ(360deg); }
}

@keyframes videoOrbitB {
  to { transform: rotateY(64deg) rotateZ(375deg); }
}

.video-preview-brand {
  position: absolute;
  left: 34px;
  top: 31px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.68);
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: -.015em;
}

.video-preview-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 8px;
}

.video-preview-copy {
  position: absolute;
  left: 34px;
  bottom: 112px;
  max-width: 78%;
}

.video-preview-copy small {
  display: block;
  margin-bottom: 15px;
  color: var(--orange);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.video-preview-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 4.25vw, 5rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.065em;
}

.video-preview-play {
  position: absolute;
  left: 34px;
  bottom: 31px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.play-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(0,0,0,.16);
  backdrop-filter: blur(7px);
  transition: background .35s ease, border-color .35s ease, transform .4s var(--ease);
}

.play-ring::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255,105,0,.18);
  border-radius: 50%;
  animation: playPulse 2.8s ease-out infinite;
}

@keyframes playPulse {
  0% { transform: scale(.85); opacity: 0; }
  28% { opacity: 1; }
  100% { transform: scale(1.42); opacity: 0; }
}

.play-ring i {
  margin-left: 3px;
  color: var(--orange);
  font-style: normal;
  font-size: .95rem;
}

.video-preview:hover .play-ring {
  transform: scale(1.08);
  background: var(--orange);
  border-color: var(--orange);
}

.video-preview:hover .play-ring i {
  color: #080808;
}

.play-label {
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.video-preview-duration {
  position: absolute;
  right: 30px;
  bottom: 34px;
  color: #65615d;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.video-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  color: #66615c;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

/* Cinema modal */
.video-cinema {
  position: fixed;
  z-index: 6100;
  inset: 0;
  display: grid;
  place-items: center;
  visibility: hidden;
  pointer-events: none;
}

.video-cinema.is-open {
  visibility: visible;
  pointer-events: auto;
}

.video-cinema-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,3,3,.88);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity .6s ease;
}

.video-cinema.is-open .video-cinema-backdrop {
  opacity: 1;
}

.video-letterbox {
  position: absolute;
  z-index: 3;
  left: 0;
  width: 100%;
  height: 0;
  background: #000;
  transition: height .8s var(--ease);
  pointer-events: none;
}

.video-letterbox-top { top: 0; }
.video-letterbox-bottom { bottom: 0; }

.video-cinema.is-open .video-letterbox {
  height: clamp(24px, 5.6vh, 66px);
}

.video-cinema-shell {
  position: relative;
  z-index: 5;
  width: min(1260px, 92vw);
  transform: scale(.72) translateY(45px);
  opacity: 0;
  transition:
    transform .85s var(--ease),
    opacity .5s ease;
}

.video-cinema.is-open .video-cinema-shell {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.video-cinema-header,
.video-cinema-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #6f6a65;
  font-size: .54rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.video-cinema-header {
  margin-bottom: 14px;
}

.video-cinema-id {
  display: flex;
  align-items: center;
  gap: 11px;
}

.video-cinema-id span { color: var(--orange); }
.video-cinema-id i { width: 35px; height: 1px; background: #47433f; }
.video-cinema-id strong { font: inherit; }

.video-cinema-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  color: #fff;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease;
}

.video-cinema-close:hover {
  transform: rotate(90deg);
  background: var(--orange);
  color: #080808;
}

.video-cinema-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 58% 44%, rgba(255,105,0,.14), transparent 32%),
    #080808;
  box-shadow: 0 35px 100px rgba(0,0,0,.65), 0 0 90px rgba(255,105,0,.06);
}

.video-cinema-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, #000 10%, transparent 78%);
}

.video-media-host,
.video-media-host video,
.video-media-host iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-media-host {
  z-index: 2;
}

.video-media-host video {
  object-fit: contain;
  background: #000;
}

.video-media-host iframe {
  border: 0;
}

.video-cinema-placeholder {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.video-cinema-placeholder.is-hidden {
  display: none;
}

.video-cinema-placeholder img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 24px;
  border-radius: 16px;
  filter: drop-shadow(0 0 24px rgba(255,105,0,.20));
}

.video-cinema-placeholder small {
  color: var(--orange);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.video-cinema-placeholder h3 {
  margin: 14px 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 5.1rem);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.06em;
}

.video-cinema-placeholder p {
  max-width: 540px;
  margin: 0;
  color: #827d77;
  font-size: .75rem;
  line-height: 1.7;
}

.video-cinema-placeholder code {
  color: #bbb5ae;
}

.video-cinema-scan {
  position: absolute;
  z-index: 4;
  top: -20%;
  left: -2%;
  width: 104%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,128,32,.7), rgba(100,181,255,.45), transparent);
  box-shadow: 0 0 24px rgba(255,105,0,.34);
  opacity: .55;
  pointer-events: none;
  animation: cinemaScan 7s linear infinite;
}

@keyframes cinemaScan {
  to { top: 120%; }
}

.video-cinema-flare {
  position: absolute;
  z-index: 4;
  left: -35%;
  top: 15%;
  width: 36%;
  height: 70%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,218,183,.14), transparent);
  filter: blur(12px);
  pointer-events: none;
  animation: cinemaFlare 8s ease-in-out infinite;
}

@keyframes cinemaFlare {
  0%, 24% { transform: translateX(-70%) skewX(-18deg); opacity: 0; }
  38% { opacity: .8; }
  78%, 100% { transform: translateX(500%) skewX(-18deg); opacity: 0; }
}

.video-cinema-footer {
  margin-top: 13px;
}

body.video-open {
  overflow: hidden;
}

body.video-open .cinematic-atmosphere {
  opacity: .08;
}

/* V4 responsive */
@media (max-width: 1050px) {
  .purpose-intro-v4 {
    grid-template-columns: 1fr;
  }

  .purpose-intro-v4 .eyebrow,
  .purpose-intro-v4 h2,
  .purpose-intro-copy {
    grid-column: 1;
  }

  .purpose-intro-v4 h2 {
    margin-top: 22px;
  }

  .purpose-v4-layout {
    grid-template-columns: 1fr;
  }

  .purpose-principles {
    grid-template-columns: repeat(3, 1fr);
  }

  .purpose-mini-card {
    min-height: 245px;
    padding: 24px 24px 70px;
  }

  .purpose-mini-symbol {
    right: auto;
    left: 24px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .video-preview {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .purpose-section {
    padding-bottom: 105px;
  }

  .purpose-intro-v4 h2 {
    font-size: clamp(3.35rem, 15vw, 5.4rem);
  }

  .purpose-v4-layout {
    margin-top: 48px;
  }

  .purpose-principles {
    grid-template-columns: 1fr;
  }

  .purpose-mini-card {
    min-height: 170px;
    padding: 23px 65px 24px 23px;
  }

  .purpose-mini-symbol {
    left: auto;
    right: 22px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .video-preview {
    min-height: 460px;
  }

  .video-preview-copy {
    left: 24px;
    bottom: 106px;
  }

  .video-preview-copy strong {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .video-preview-brand,
  .video-preview-play {
    left: 24px;
  }

  .video-preview-brand {
    top: 24px;
  }

  .video-preview-play {
    bottom: 24px;
  }

  .video-preview-duration {
    right: 23px;
    bottom: 28px;
  }

  .video-caption {
    flex-direction: column;
    gap: 6px;
  }

  .video-cinema-shell {
    width: 94vw;
  }

  .video-cinema-header,
  .video-cinema-footer {
    font-size: .46rem;
  }

  .video-cinema-id strong,
  .video-cinema-id i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-preview-sweep,
  .video-preview-orbit,
  .play-ring::before,
  .video-cinema-scan,
  .video-cinema-flare {
    animation: none !important;
  }
}


/* =========================================================
   V4.1 — HEADER DE CONVERSÃO + CLIENTES
   ========================================================= */

.site-header {
  grid-template-columns: minmax(155px, 1fr) auto minmax(350px, 1fr);
  gap: clamp(18px, 2vw, 30px);
}

.desktop-nav {
  gap: clamp(15px, 1.45vw, 25px);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 11px;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: #d8d3cc;
  transition: color .3s ease, transform .3s var(--ease);
}

.header-whatsapp:hover {
  color: #fff;
  transform: translateY(-1px);
}

.header-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: var(--orange);
  box-shadow: inset 0 0 16px rgba(255,105,0,.025);
  transition: border-color .3s ease, background .3s ease;
}

.header-whatsapp:hover .header-whatsapp-icon {
  border-color: rgba(255,119,24,.45);
  background: rgba(255,105,0,.08);
}

.header-whatsapp-icon svg {
  width: 18px;
  height: 18px;
}

.header-whatsapp-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.header-whatsapp-copy small {
  color: #6f6a64;
  font-size: .49rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.header-whatsapp-copy strong {
  color: inherit;
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .025em;
}

.support-ticket-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 155px;
  justify-content: center;
  padding: 12px 14px;
  overflow: hidden;
  border: 1px solid rgba(255,157,77,.38);
  border-radius: 999px;
  background: var(--orange);
  color: #0c0805;
  box-shadow:
    0 0 0 1px rgba(255,105,0,.03),
    0 8px 28px rgba(255,105,0,.16),
    0 0 34px rgba(255,105,0,.08);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .085em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s ease, box-shadow .3s ease;
}

.support-ticket-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -70%;
  left: -34%;
  width: 32%;
  height: 240%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  animation: ticketShine 4.6s ease-in-out infinite;
}

@keyframes ticketShine {
  0%, 58% { transform: translateX(-180%) rotate(18deg); opacity: 0; }
  66% { opacity: .8; }
  85%, 100% { transform: translateX(620%) rotate(18deg); opacity: 0; }
}

.support-ticket-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #191008;
  box-shadow: 0 0 0 4px rgba(20,10,4,.09);
  animation: ticketPulse 2.1s ease-in-out infinite;
}

@keyframes ticketPulse {
  50% { transform: scale(.72); opacity: .56; }
}

.support-ticket-arrow {
  font-size: 1rem;
  transition: transform .3s var(--ease);
}

.support-ticket-button:hover {
  transform: translateY(-2px);
  background: var(--orange-light);
  box-shadow: 0 10px 34px rgba(255,105,0,.24), 0 0 42px rgba(255,105,0,.11);
}

.support-ticket-button:hover .support-ticket-arrow {
  transform: rotate(45deg);
}

.mobile-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
  max-width: 620px;
}

.mobile-whatsapp-action,
.mobile-ticket-action {
  min-height: 68px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
}

.mobile-whatsapp-action span {
  color: #77716b;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-whatsapp-action strong {
  margin-top: 6px;
  color: #f1ede7;
  font-size: .86rem;
}

.mobile-ticket-action {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--orange);
  border-color: var(--orange);
  color: #0c0805;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mobile-ticket-action span { font-size: 1.2rem; }

/* ----- CLIENTES / PROVA SOCIAL ----- */
.clients-section {
  min-height: 92vh;
  padding-bottom: 125px;
  background:
    radial-gradient(circle at 50% 60%, rgba(255,105,0,.055), transparent 31%),
    linear-gradient(180deg, #090909, #0b0b0b 55%, #090909);
}

.clients-glow {
  position: absolute;
  left: 50%;
  bottom: -26%;
  width: 75vw;
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255,105,0,.08);
  filter: blur(120px);
  pointer-events: none;
}

.clients-section .section-meta,
.clients-heading,
.clients-showcase {
  position: relative;
  z-index: 12;
}

.clients-heading {
  display: grid;
  grid-template-columns: 1.25fr .62fr;
  gap: clamp(45px, 8vw, 135px);
  align-items: end;
  margin-top: 66px;
}

.clients-heading h2 {
  margin: 21px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.7rem, 6.6vw, 7.5rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.073em;
  text-transform: uppercase;
}

.clients-heading h2 span { color: var(--orange); }

.clients-intro {
  max-width: 510px;
  margin: 0 0 8px;
  color: #8f8a84;
  font-size: .86rem;
  line-height: 1.8;
}

.clients-showcase {
  position: relative;
  margin-top: 70px;
  padding: 44px 0 25px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 28%, transparent 72%, rgba(255,255,255,.012)),
    rgba(11,11,11,.52);
}

.clients-showcase::before,
.clients-showcase::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: clamp(55px, 8vw, 145px);
  pointer-events: none;
}

.clients-showcase::before {
  left: 0;
  background: linear-gradient(90deg, #0a0a0a 10%, rgba(10,10,10,.84) 36%, transparent);
}

.clients-showcase::after {
  right: 0;
  background: linear-gradient(270deg, #0a0a0a 10%, rgba(10,10,10,.84) 36%, transparent);
}

.clients-stage-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.clients-stage-lines i {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,105,0,.08), rgba(87,175,255,.05), transparent);
}

.clients-stage-lines i:nth-child(1) { top: 29%; transform: rotate(-1.4deg); }
.clients-stage-lines i:nth-child(2) { top: 52%; transform: rotate(.9deg); }
.clients-stage-lines i:nth-child(3) { top: 75%; transform: rotate(-.5deg); }

.clients-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 8px 0 26px;
}

.clients-track {
  --client-gap: 16px;
  display: flex;
  width: max-content;
  animation: clientsMarquee 42s linear infinite;
  will-change: transform;
}

.clients-showcase:hover .clients-track {
  animation-play-state: paused;
}

.clients-set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--client-gap);
  padding-right: var(--client-gap);
}

@keyframes clientsMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.client-logo-card {
  position: relative;
  flex: 0 0 clamp(170px, 13.1vw, 220px);
  height: clamp(150px, 12vw, 190px);
  display: grid;
  place-items: center;
  margin: 0;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.085);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,105,0,.025), transparent 52%),
    rgba(255,255,255,.018);
  transition: transform .38s var(--ease), border-color .35s ease, background .35s ease;
}

.client-logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,139,50,.06), transparent 65%);
  transition: opacity .35s ease;
}

.client-logo-card:hover {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(255,126,31,.28);
  background: rgba(255,255,255,.03);
}

.client-logo-card:hover::after { opacity: 1; }

.client-logo-card > span {
  position: absolute;
  left: 13px;
  top: 11px;
  color: #4d4945;
  font-size: .49rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.client-logo-card img {
  position: relative;
  z-index: 2;
  width: min(82%, 160px);
  max-height: 140px;
  object-fit: contain;
  opacity: .64;
  filter: grayscale(1) brightness(1.5) contrast(.82);
  transition: opacity .35s ease, filter .35s ease, transform .38s var(--ease);
}

.client-logo-card:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1) contrast(1);
  transform: scale(1.055);
}

.clients-showcase-footer {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(22px, 2.8vw, 45px) 0;
  color: #57534e;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.clients-showcase-footer span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.clients-showcase-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255,105,0,.55);
}

.clients-showcase-footer strong {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 400;
}

@media (max-width: 1240px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
}

@media (max-width: 860px) {
  .header-actions { display: none; }
  .site-header { grid-template-columns: 1fr auto; }

  .clients-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .clients-intro { max-width: 620px; }
  .client-logo-card { flex-basis: clamp(170px, 27vw, 215px); }
}

@media (max-width: 620px) {
  .mobile-menu {
    justify-content: flex-start;
    overflow-y: auto;
    padding-top: 125px;
  }

  .mobile-menu nav a {
    font-size: clamp(2.3rem, 10vw, 4rem);
  }

  .mobile-contact-actions {
    grid-template-columns: 1fr;
    margin-bottom: 90px;
  }

  .clients-section {
    min-height: auto;
    padding-bottom: 90px;
  }

  .clients-heading h2 {
    font-size: clamp(3.2rem, 14.5vw, 5rem);
  }

  .clients-showcase {
    margin-left: -20px;
    margin-right: -20px;
    padding-top: 34px;
  }

  .client-logo-card {
    flex-basis: min(58vw, 205px);
    height: 150px;
  }

  .clients-track { animation-duration: 36s; }

  .clients-showcase-footer {
    padding-inline: 20px;
    font-size: .46rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-ticket-button::before,
  .support-ticket-status,
  .clients-track {
    animation: none !important;
  }

  .clients-marquee { overflow-x: auto; }
}


/* =========================================================
   V4.2 — CLIENTES / FOOTER / MODAL AJAX / FERRAMENTAS
   ========================================================= */

.nav-tools-link {
  color: #f1ede7 !important;
}

.nav-tools-link::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  vertical-align: 1px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255,105,0,.65);
}

.clients-impact-copy {
  display: grid;
  gap: 14px;
}

.clients-impact-copy strong {
  display: block;
  color: #f3efe9;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.12rem, 1.55vw, 1.55rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.orange-heart {
  display: inline-block;
  color: var(--orange);
  filter: saturate(1.25);
  transform: translateY(1px);
}

.footer-verse {
  max-width: 470px;
  text-align: center;
  line-height: 1.55;
}

.footer-verse span {
  text-transform: none;
  letter-spacing: .035em;
  font-size: .67rem;
  color: #77716b;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.footer-legal-links a {
  position: relative;
  white-space: nowrap;
}

.footer-legal-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .28s var(--ease);
}

.footer-legal-links a:hover::after {
  width: 100%;
}

/* AJAX modal */
.ajax-info-modal {
  position: fixed;
  z-index: 4700;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 44px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s;
}

.ajax-info-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ajax-info-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 26%, rgba(255,105,0,.09), transparent 34%),
    rgba(4,4,4,.82);
  backdrop-filter: blur(14px);
}

.ajax-info-shell {
  position: relative;
  z-index: 2;
  width: min(950px, 92vw);
  height: min(80vh, 800px);
  min-height: 0;
  max-height: min(80vh, 800px);
  padding: 0;
  display: grid;
  grid-template-rows: auto 2px minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent 18%),
    #0e0e0e;
  box-shadow: 0 35px 110px rgba(0,0,0,.55), 0 0 70px rgba(255,105,0,.05);
  transform: translateY(24px) scale(.985);
  transition: transform .55s var(--ease);
}

.ajax-info-modal.is-open .ajax-info-shell {
  transform: none;
}

.ajax-info-shell::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.ajax-info-header,
.ajax-info-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 21px clamp(20px, 3vw, 38px);
}

.ajax-info-header {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.ajax-info-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  color: #5f5b55;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.ajax-info-id {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #68635d;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ajax-info-id i {
  display: block;
  width: 34px;
  height: 1px;
  background: #45413c;
}

.ajax-info-id strong {
  color: var(--orange);
  font: inherit;
}

.ajax-info-close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.025);
  color: #fff;
  cursor: pointer;
  font-size: 1.45rem;
  transition: transform .3s var(--ease), color .3s ease, background .3s ease;
}

.ajax-info-close:hover {
  transform: rotate(90deg);
  color: #111;
  background: var(--orange);
  border-color: var(--orange);
}

.ajax-info-progress {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: rgba(255,255,255,.025);
}

.ajax-info-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffad66);
  box-shadow: 0 0 14px rgba(255,105,0,.55);
  transition: width .25s ease;
}

.ajax-info-modal.is-loading .ajax-info-progress span {
  width: 72%;
  animation: ajaxProgress 1.2s ease-in-out infinite alternate;
}

.ajax-info-modal.is-loaded .ajax-info-progress span {
  width: 100%;
}

@keyframes ajaxProgress {
  from { transform: translateX(-22%); }
  to { transform: translateX(44%); }
}

.ajax-info-content {
  position: relative;
  z-index: 2;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(30px, 5vw, 64px);
  scrollbar-width: thin;
  scrollbar-color: #4a433c transparent;
}

.ajax-info-loading {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: #78736c;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ajax-info-loading i {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: ajaxSpin .75s linear infinite;
}

@keyframes ajaxSpin { to { transform: rotate(360deg); } }

/* Conteúdo carregado */
.ajax-document {
  max-width: 820px;
  margin: 0 auto;
}

.ajax-document .doc-kicker {
  margin: 0 0 17px;
  color: var(--orange);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ajax-document h1 {
  margin: 0 0 22px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.065em;
}

.ajax-document .doc-lead {
  max-width: 720px;
  margin: 0 0 42px;
  color: #a39e97;
  font-size: .96rem;
  line-height: 1.8;
}

.ajax-document .doc-updated {
  display: inline-block;
  margin-bottom: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #77716b;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ajax-document h2 {
  margin: 38px 0 13px;
  color: #f2eee8;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -.035em;
}

.ajax-document p,
.ajax-document li {
  color: #96918a;
  font-size: .85rem;
  line-height: 1.82;
}

.ajax-document ul {
  display: grid;
  gap: 8px;
  padding-left: 19px;
}

.ajax-document a {
  color: #f3eee8;
  border-bottom: 1px solid rgba(255,105,0,.5);
}

/* Ferramentas */
.tools-document {
  max-width: 900px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.tool-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  color: inherit !important;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(110deg, rgba(255,105,0,.09), transparent 55%);
  transition: opacity .3s ease;
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,105,0,.28) !important;
  background: rgba(255,255,255,.035);
}

.tool-card:hover::before { opacity: 1; }

.tool-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255,105,0,.08);
  border: 1px solid rgba(255,105,0,.17);
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.tool-copy {
  position: relative;
  z-index: 2;
}

.tool-copy strong {
  display: block;
  margin-bottom: 5px;
  color: #f1ede7;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.tool-copy span {
  display: block;
  color: #75706a;
  font-size: .68rem;
  line-height: 1.5;
}

.tool-arrow {
  position: relative;
  z-index: 2;
  color: var(--orange);
  font-size: 1.12rem;
}

body.ajax-modal-open {
  overflow: hidden;
}

body.ajax-modal-open .cinematic-atmosphere {
  opacity: .23;
}

@media (max-width: 1240px) {
  .footer-meta {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 860px) {
  .footer-legal-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .ajax-info-shell {
    width: min(96vw, 820px);
    max-height: 91vh;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ajax-info-modal {
    padding: 8px;
  }

  .ajax-info-shell {
    width: 100%;
    max-height: 94vh;
    border-radius: 12px;
  }

  .ajax-info-header,
  .ajax-info-footer {
    padding-inline: 17px;
  }

  .ajax-info-id > span,
  .ajax-info-id i {
    display: none;
  }

  .ajax-info-content {
    padding: 28px 20px 38px;
  }

  .ajax-document h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .tool-card {
    grid-template-columns: 46px 1fr auto;
    min-height: 92px;
    padding: 14px;
  }

  .tool-icon {
    width: 46px;
    height: 46px;
  }

  .footer-verse {
    text-align: left;
  }
}


/* =========================================================
   V4.3 — LOGO OFICIAL / ÁREA DO CLIENTE / REDES SOCIAIS
   ========================================================= */

.brand-official {
  min-width: 0;
}

.brand-image-official {
  width: clamp(160px, 11.5vw, 218px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  filter: drop-shadow(0 5px 18px rgba(0,0,0,.18));
}

.intro-brand-official img {
  width: clamp(230px, 28vw, 430px);
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 10px 34px rgba(0,0,0,.28));
}

.footer-official-logo {
  width: clamp(185px, 13vw, 235px);
  max-height: 62px;
}

.site-header {
  grid-template-columns: minmax(175px, .8fr) auto minmax(545px, 1.25fr);
}

.header-actions {
  gap: 9px;
}

.client-area-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d8d3cc;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: border-color .3s ease, background .3s ease, color .3s ease, transform .3s var(--ease);
}

.client-area-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,123,28,.43);
  background: rgba(255,105,0,.075);
  color: #fff;
}

.client-area-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255,105,0,.10);
  color: var(--orange);
}

.client-area-icon svg {
  width: 15px;
  height: 15px;
}

.mobile-client-action,
.mobile-whatsapp-action,
.mobile-ticket-action {
  min-height: 68px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
}

.mobile-client-action {
  background: rgba(255,255,255,.025);
}

.mobile-client-action span {
  color: #77716b;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-client-action strong {
  margin-top: 6px;
  color: #f1ede7;
  font-size: .83rem;
}

/* Rodapé em duas faixas: identidade + redes e, abaixo, dados legais. */
.contact-section footer {
  grid-template-columns: minmax(190px, .8fr) minmax(260px, 1.2fr) auto;
  align-items: center;
}

.footer-socials {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #7d7872;
  transition: border-color .28s ease, background .28s ease, color .28s ease, transform .28s var(--ease);
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,105,0,.38);
  background: rgba(255,105,0,.07);
  color: #f0ece6;
}

.footer-socials span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: .65rem;
  font-weight: 800;
  text-transform: none;
}

.footer-socials strong {
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.footer-meta {
  grid-column: 1 / -1;
  justify-self: stretch;
  width: 100%;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,.065);
  justify-content: space-between;
}

@media (max-width: 1460px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
}

@media (max-width: 980px) {
  .contact-section footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-socials {
    justify-self: end;
  }

  .footer-verse {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: none;
    text-align: left;
  }

  .footer-meta {
    grid-row: 3;
  }
}

@media (max-width: 860px) {
  .brand-image-official {
    width: clamp(150px, 35vw, 190px);
  }

  .footer-socials {
    justify-self: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .brand-image-official {
    width: 150px;
  }

  .intro-brand-official img {
    width: min(78vw, 330px);
  }

  .mobile-contact-actions-v43 {
    grid-template-columns: 1fr;
  }

  .contact-section footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-socials {
    width: 100%;
  }

  .footer-socials a {
    flex: 1 1 auto;
    justify-content: center;
  }

  .footer-meta {
    padding-top: 18px;
  }
}


/* =========================================================
   V4.3.1 — REVISÃO DE ESTABILIDADE / RESPONSIVIDADE
   ========================================================= */

/* O conjunto de ações do header fica muito comprimido entre 980–1180px.
   Nessa faixa, priorizamos logo + menu e levamos as ações para o menu mobile. */
@media (max-width: 1180px) {
  .header-actions {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }
}

/* Evita que a frase longa do segundo verso do Hero seja cortada em celulares. */
@media (max-width: 620px) {
  .hero h1 .title-line:nth-child(2) {
    font-size: .76em;
    letter-spacing: -.055em;
  }

  .hero h1 .title-line:nth-child(2) .title-inner {
    width: 100%;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-title-wrap,
  .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .brand-image-official {
    max-width: calc(100vw - 108px);
    height: auto;
  }
}

/* A imagem oficial é horizontal; não deve herdar regras antigas de ícone quadrado. */
.brand-official .brand-image-official,
.intro-brand-official img,
.footer-brand .footer-official-logo,
.video-preview-brand img,
.video-cinema-placeholder img {
  aspect-ratio: auto;
}

/* Segurança contra scroll horizontal causado por elementos decorativos. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}

/* Ajuste fino do Hero em telas estreitas: mantém impacto sem cortar palavras. */
@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(3.25rem, 14.2vw, 5rem);
  }

  .hero h1 .title-line:nth-child(2) {
    font-size: .80em;
  }
}


/* =========================================================
   V4.4 — CONTATO SOCIAL + FOOTER REORGANIZADO
   ========================================================= */

.contact-actions-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
  min-width: min(100%, 315px);
}

.contact-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-inline: 8px;
}

.contact-socials-label {
  color: #625d57;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-socials-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.contact-socials-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 999px;
  background: rgba(255,255,255,.018);
  color: #6f6a64;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s var(--ease);
}

.contact-socials-links a:hover {
  transform: translateY(-1px);
  color: #e9e4de;
  border-color: rgba(255,105,0,.32);
  background: rgba(255,105,0,.055);
}

.contact-socials-links a > span {
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: .56rem;
  font-weight: 800;
}

.contact-socials-links strong {
  color: inherit;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.contact-section footer.footer-v44 {
  grid-template-columns: minmax(180px, .72fr) minmax(520px, 1.8fr) auto;
  align-items: center;
  column-gap: clamp(24px, 3vw, 54px);
}

.footer-legal-verse-row {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
}

.footer-verse-inline {
  color: #77716b;
  font-size: .62rem;
  line-height: 1.4;
  letter-spacing: .025em;
  text-transform: none;
}

.footer-inline-divider {
  flex: 0 0 1px;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.11);
}

.footer-legal-verse-row .footer-legal-links {
  gap: 13px;
  flex: 0 0 auto;
}

.footer-legal-verse-row .footer-legal-links a {
  color: #6c6761;
  font-size: .54rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-meta-v44 {
  grid-column: auto;
  justify-self: end;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  white-space: nowrap;
}

.footer-meta-v44 > span,
.footer-meta-v44 > a {
  font-size: .53rem;
}

/* Esconde o antigo layout social do V4.3, caso algum browser mantenha CSS em cache. */
.footer-socials {
  display: none !important;
}

@media (max-width: 1380px) {
  .contact-section footer.footer-v44 {
    grid-template-columns: minmax(170px, .7fr) 1.7fr;
  }

  .footer-legal-verse-row {
    justify-content: flex-end;
    flex-wrap: wrap;
    white-space: normal;
    row-gap: 7px;
  }

  .footer-meta-v44 {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.065);
    justify-content: space-between;
  }
}

@media (max-width: 860px) {
  .contact-actions-stack {
    width: min(100%, 420px);
  }

  .contact-section footer.footer-v44 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-legal-verse-row {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-meta-v44 {
    align-self: stretch;
  }
}

@media (max-width: 620px) {
  .contact-actions-stack {
    width: 100%;
    min-width: 0;
  }

  .contact-socials {
    padding-inline: 2px;
  }

  .contact-socials-links a {
    padding: 6px 9px;
  }

  .footer-legal-verse-row {
    display: grid;
    gap: 10px;
  }

  .footer-inline-divider {
    display: none;
  }

  .footer-legal-verse-row .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-meta-v44 {
    gap: 14px;
  }
}


/* =========================================================
   V4.5 — FERRAMENTAS EM DESTAQUE + COPYRIGHT NO FOOTER
   ========================================================= */

.featured-tools {
  display: grid;
  min-height: 50px;
  max-height: 600px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 5px;
}

.tool-card-featured {
  grid-template-columns: 64px 1fr auto;
  min-height: 152px;
  max-height: 250px;
  padding: 28px 22px 22px;
  border-color: rgba(255,105,0,.34) !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,155,67,.16), transparent 34%),
    linear-gradient(135deg, rgba(255,105,0,.095), rgba(255,255,255,.025) 48%, rgba(61,152,255,.035));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.018), 0 18px 55px rgba(0,0,0,.12);
}

.tool-card-featured::before {
  opacity: .82;
  background: linear-gradient(105deg, rgba(255,105,0,.15), transparent 48%, rgba(81,170,255,.055));
}

.tool-card-featured:hover {
  transform: translateY(-5px);
  border-color: rgba(255,133,37,.58) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,.2), 0 0 36px rgba(255,105,0,.055);
}

.tool-feature-badge {
  position: absolute;
  left: 22px;
  top: 12px;
  z-index: 3;
  color: rgba(255,171,101,.78);
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.tool-icon-featured {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, rgba(255,137,43,.18), rgba(255,105,0,.07));
  border-color: rgba(255,137,43,.36);
  box-shadow: 0 0 28px rgba(255,105,0,.08);
  font-size: .86rem;
}

.tool-card-featured .tool-copy strong {
  font-size: 1.22rem;
}

.tool-card-featured .tool-copy span {
  max-width: 330px;
  font-size: .72rem;
}

.tool-action {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--orange);
}

.tool-action small {
  font-size: .45rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.tool-action b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform .28s var(--ease);
}

.tool-card-featured:hover .tool-action b {
  transform: translateY(4px);
}

.tools-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding: 0 0 13px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.tools-section-heading > span {
  color: var(--orange);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.tools-section-heading p {
  max-width: 480px;
  margin: 0;
  color: #6f6a64;
  font-size: .65rem;
  line-height: 1.5;
  text-align: right;
}

.tools-security-note {
  margin: 26px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--orange);
  background: rgba(255,105,0,.045);
  color: #77716a;
  font-size: .68rem;
  line-height: 1.65;
}

.tools-security-note strong { color: #d9d3cc; }

.footer-copyright-home {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #78726b;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s var(--ease);
}

.footer-copyright-home::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255,105,0,.58);
}

.footer-copyright-home:hover {
  color: #eee9e2;
  transform: translateY(-1px);
}

.footer-meta-v44 {
  min-width: max-content;
}

@media (max-width: 860px) {
  .featured-tools { grid-template-columns: 1fr; }
  .tool-card-featured { min-height: 138px; }
  .footer-copyright-home { justify-self: auto; }
}

@media (max-width: 620px) {
  .tool-card-featured {
    grid-template-columns: 52px 1fr auto;
    min-height: 132px;
    padding: 28px 14px 16px;
  }
  .tool-icon-featured { width: 52px; height: 52px; }
  .tool-card-featured .tool-copy strong { font-size: 1rem; }
  .tool-action small { display: none; }
  .tools-section-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .tools-section-heading p { text-align: left; }
}

/* =========================================================
   V5 — SELETOR DE IDIOMAS
   ========================================================= */
.language-switcher-host {
  position: relative;
  z-index: 1600;
  flex: 0 0 auto;
}

.language-switcher {
  position: relative;
}

.language-current {
  height: 42px;
  min-width: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #f4f0ea;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}

.language-current:hover,
.language-switcher.is-open .language-current {
  border-color: rgba(255,105,0,.55);
  background: rgba(255,105,0,.09);
}

.language-current-flag {
  display: block;
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 2px 8px rgba(0,0,0,.22);
}

.language-current-code {
  font-size: .61rem;
  letter-spacing: .11em;
}

.language-current i {
  margin-left: 1px;
  color: var(--orange);
  font-style: normal;
  font-size: .72rem;
  transition: transform .25s ease;
}

.language-switcher.is-open .language-current i {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 212px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(12,12,12,.96);
  box-shadow: 0 24px 70px rgba(0,0,0,.42), 0 0 45px rgba(255,105,0,.055);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px) scale(.98);
  transform-origin: 80% 0;
  transition: opacity .22s ease, visibility .22s ease, transform .28s var(--ease);
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.language-option {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 27px 34px 1fr;
  align-items: center;
  gap: 7px;
  padding: 10px 11px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #aaa59e;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.language-option:hover,
.language-option.is-active {
  background: rgba(255,105,0,.095);
  color: #fff;
}

.language-option.is-active::after {
  content: "•";
  position: absolute;
  right: 18px;
  color: var(--orange);
}

.language-option-flag {
  display: block;
  width: 24px;
  height: 17px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 2px 7px rgba(0,0,0,.18);
}

.language-option strong {
  color: var(--orange);
  font-size: .6rem;
  letter-spacing: .1em;
}

.language-option small {
  font-size: .69rem;
  font-weight: 600;
}

.mobile-language-switcher {
  display: none;
}

/* Japonês e chinês precisam de um pouco mais de respiro nos títulos gigantes. */
html.cjk-language .hero h1,
html.cjk-language .company-heading h2,
html.cjk-language .purpose-intro h2,
html.cjk-language .services-heading h2,
html.cjk-language .impact-copy h2,
html.cjk-language .milestones-heading h2,
html.cjk-language .clients-heading h2,
html.cjk-language .contact-main h2 {
  letter-spacing: -.045em;
  line-height: .94;
  text-transform: none;
}

@media (max-width: 1180px) {
  .mobile-language-switcher {
    display: block;
    position: absolute;
    top: 96px;
    right: var(--page-x);
  }

  .mobile-language-switcher .language-current {
    height: 40px;
  }

  .mobile-language-switcher .language-menu {
    right: 0;
    width: min(235px, calc(100vw - 40px));
  }
}

@media (max-width: 620px) {
  .mobile-menu-label {
    top: 105px;
  }

  .mobile-language-switcher {
    top: 91px;
  }

  .language-menu {
    width: 205px;
  }

  html.cjk-language .hero h1 {
    font-size: clamp(3.1rem, 14vw, 4.9rem);
  }
}
