:root {
  --bg: #090a0c;
  --bg-soft: #121419;
  --surface: #1a1d22;
  --surface-strong: #23272d;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #faf9f5;
  --muted: #c1c0ba;
  --orange: #f47a0a;
  --orange-light: #ff9b3d;
  --orange-dark: #bd4e00;
  --paper: #f4f1e9;
  --ink: #111215;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --container: min(1180px, calc(100% - 40px));
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.consent-pending {
  overflow: auto;
}

.consent-dialog {
  position: fixed;
  inset: auto auto 20px 20px;
  z-index: 1200;
  width: min(680px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100dvh - 40px);
  margin: 0;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(24, 27, 32, 0.94);
  color: var(--text);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.consent-dialog::backdrop {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.consent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(33, 37, 44, 0.96), rgba(20, 23, 28, 0.96));
}

.consent-copy {
  min-width: 0;
}

.consent-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #aeb5bf;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consent-copy h2 {
  max-width: 570px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.12;
}

.consent-copy p {
  margin: 0;
  color: #d7d6d1;
  font-size: 0.95rem;
  line-height: 1.55;
}

.consent-copy a {
  display: inline;
  margin-top: 0;
  color: #e4e7eb;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-secondary {
  margin-top: 12px !important;
  color: rgba(244, 243, 238, 0.7) !important;
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
}

.consent-policy {
  display: block;
  margin-top: 5px;
}

.consent-actions {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.consent-actions button {
  width: 100%;
  min-height: 50px;
  cursor: pointer;
}

.consent-accept {
  justify-content: center;
  border: 1px solid #e7e9ec;
  background: #e7e9ec;
  color: #171a1f;
  font-weight: 850;
}

.consent-necessary {
  display: inline;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(244, 243, 238, 0.88);
  font: inherit;
  font-weight: 650;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-necessary:hover,
.consent-necessary:focus-visible {
  background: transparent;
  color: #fff;
}

.footer-consent-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: #bcbab4;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: inherit;
}

.footer-consent-settings:hover {
  color: var(--orange-light);
}

@media (max-width: 720px) {
  .consent-dialog {
    inset: auto 0 0;
    width: 100%;
    max-height: min(72dvh, 560px);
    overflow: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 16px 16px 0 0;
  }

  .consent-panel {
    display: block;
    padding: 20px 18px calc(18px + env(safe-area-inset-bottom));
  }

  .consent-actions {
    margin-top: 18px;
  }

  .consent-copy h2 {
    font-size: 1.45rem;
  }

  .consent-policy {
    display: inline;
    margin-top: 0;
  }
}

img {
  display: block;
  max-width: 100%;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange-light);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-light .eyebrow {
  color: var(--orange-dark);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(9, 10, 12, 0.82);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(9, 10, 12, 0.97);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(9, 10, 12, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.brand-mark {
  display: grid;
  width: 47px;
  height: 47px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #090a0c;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.nav-cta) {
  color: #efeee9;
  font-size: 0.86rem;
  font-weight: 650;
  transition: color 150ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--orange-light);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 150ms ease, transform 150ms ease;
}

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 790px;
  padding: calc(var(--header-height) + 90px) 0 88px;
  background:
    radial-gradient(circle at 78% 30%, rgba(244, 122, 10, 0.12), transparent 32%),
    linear-gradient(140deg, #0d0d0f 0%, #121214 62%, #0d0d0f 100%);
}

.hero::before {
  position: absolute;
  top: 122px;
  right: -110px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(244, 122, 10, 0.19);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 122, 10, 0.55));
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 108px);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5.35rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: #dfded8;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.hero-intro {
  max-width: 670px;
  margin: 28px 0 0;
  color: #dfded8;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.72;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #b9b8b2;
  font-size: 0.78rem;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 13px;
}

.hero-points li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

.hero-actions .button,
.header-cta,
.contact-form .button {
  background: var(--orange);
  color: #131313;
}

.hero-actions .button.button-whatsapp,
.contact-direct .button-whatsapp {
  gap: 10px;
  background: #25d366;
  color: #0c2415;
}

.button-whatsapp:hover {
  background: #49df7d;
}

.button-whatsapp img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.84rem;
}

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

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--orange);
  color: var(--orange-light);
}

.button-dark {
  background: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: #2a2a2e;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-light);
  font-weight: 750;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hero-note {
  margin: 24px 0 0;
  color: #858581;
  font-size: 0.83rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.visual-frame {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 0.95;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.visual-frame::before,
.visual-frame::after {
  position: absolute;
  content: "";
}

.visual-frame::before {
  top: -25px;
  right: 52px;
  width: 52px;
  height: 52px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.visual-frame::after {
  right: -25px;
  bottom: 60px;
  width: 76px;
  height: 2px;
  background: var(--orange);
}

.logo-stage {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
  place-items: center;
  border-radius: calc(var(--radius-lg) - 10px);
  background: #000;
}

.logo-stage::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.logo-stage img {
  width: 112%;
  max-width: none;
}

.visual-caption {
  position: absolute;
  right: -12px;
  bottom: 28px;
  max-width: 245px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(20, 20, 22, 0.94);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  color: #c5c4bf;
  font-size: 0.78rem;
  line-height: 1.45;
}

.visual-caption strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 0.9rem;
}

.visual-label {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20, 20, 22, 0.96);
  color: #b9b8b3;
  font-size: 0.7rem;
  font-weight: 750;
}

.visual-label-top {
  top: 36px;
  left: -28px;
}

.visual-label-bottom {
  right: -20px;
  bottom: 38px;
}

.authority {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(24, 24, 27, 0.98);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.27);
}

.authority-item {
  min-height: 138px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.authority-item:last-child {
  border-right: 0;
}

.authority-value {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-light);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.authority-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-light);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.authority-item > span {
  color: #d0cfc9;
  font-size: 0.84rem;
  line-height: 1.48;
}

.authority-label {
  color: #d0cfc9;
  font-size: 0.84rem;
  line-height: 1.48;
}

.section {
  padding: clamp(88px, 11vw, 146px) 0;
}

.section-dark {
  background: var(--bg);
}

.section-soft {
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--bg-soft);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 58px;
}

.section-heading > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.section-heading h2,
.split-heading h2,
.contact-copy h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
  font-weight: 730;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.section-heading p,
.split-heading p,
.contact-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.section-light .section-heading p,
.section-light .split-heading p {
  color: #414247;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, #1d2127, #111318);
  transition: border-color 180ms ease, transform 180ms ease;
}

.audience-card:hover {
  border-color: rgba(244, 122, 10, 0.46);
  transform: translateY(-5px);
}

.audience-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(244, 122, 10, 0.2);
  border-radius: 50%;
  content: "";
}

.card-index {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(244, 122, 10, 0.35);
  border-radius: 50%;
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 850;
}

.card-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(244, 122, 10, 0.35);
  border-radius: 50%;
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 850;
}

.card-kicker {
  margin: 48px 0 8px !important;
  color: var(--orange-light) !important;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card h3 {
  margin: 0 0 14px;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.audience-card > a {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  color: var(--orange-light);
  font-size: 0.86rem;
  font-weight: 800;
}

.audience-card p {
  margin: 0;
  color: #d0cfca;
}

.audience-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 32px 0 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 18px;
  color: #deddd8;
  font-size: 0.9rem;
}

.audience-card li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 120px);
}

.split-heading {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.solutions-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.solutions-intro h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
  font-weight: 730;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.solutions-intro > p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading p {
  margin-top: 24px;
}

.solution-list {
  border-top: 1px solid #c9c6bd;
}

.solution-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: 29px 0;
  border-bottom: 1px solid #c9c6bd;
}

.solution-row > span {
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.solution-row > div h3 {
  margin: 0 0 10px;
}

.solution-number {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.solution-row h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.25;
}

.solution-row p {
  margin: 0;
  color: #414247;
  font-size: 0.95rem;
}

.systems {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.systems > span {
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #cfcec9;
  font-size: 0.82rem;
  font-weight: 700;
}

.systems-label {
  display: block;
  margin-bottom: 17px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.systems-list span {
  padding: 9px 14px;
  border: 1px solid #bbb8b0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
  font-weight: 700;
}

.experience-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 68px;
}

.experience-header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 4.9vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.experience-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.scale-card {
  min-height: 330px;
  padding: 32px;
  border: 1px solid #cbc8c0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.3);
}

.scale-card .scale-line {
  width: 54px;
  height: 3px;
  margin-bottom: 78px;
  background: var(--orange-dark);
}

.scale-card .card-kicker {
  margin: 0 0 9px !important;
  color: var(--orange-dark) !important;
}

.scale-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.scale-card > p:last-child {
  margin: 0;
  color: #414247;
}

.scale-main,
.scale-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.scale-main {
  min-height: 435px;
  padding: clamp(34px, 5vw, 60px);
  background:
    linear-gradient(145deg, rgba(244, 122, 10, 0.12), transparent 48%),
    var(--surface);
}

.scale-main strong {
  display: block;
  max-width: 690px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.scale-main p {
  max-width: 650px;
  margin: 0;
  color: #adaca7;
}

.scale-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 56px;
}

.scale-point {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: #dbdad5;
  font-size: 0.88rem;
}

.scale-side {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  overflow: hidden;
}

.scale-side article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.scale-side article + article {
  border-top: 1px solid var(--line);
}

.scale-side small {
  margin-bottom: 18px;
  color: var(--orange-light);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scale-side h3 {
  margin: 0 0 9px;
  font-size: 1.42rem;
  line-height: 1.2;
}

.scale-side p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: center;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid #cbc8c0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.25);
}

.proof-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.proof-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.proof-copy .card-kicker {
  margin: 0 0 18px !important;
  color: var(--orange-dark) !important;
}

.proof-copy p {
  margin: 22px 0 0;
  color: #414247;
}

.proof-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.proof-slot {
  min-height: 148px;
  padding: 23px;
  border: 1px solid #c7c4bb;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.38);
}

.proof-slots > div {
  min-height: 148px;
  padding: 23px;
  border: 1px solid #c7c4bb;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.38);
}

.proof-slots > div strong {
  display: block;
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.proof-slots > div span {
  display: block;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.3;
}

.proof-slot span {
  display: block;
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.proof-slot strong {
  display: block;
  font-size: 1.03rem;
  line-height: 1.3;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-step {
  min-height: 255px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.process-grid > li {
  min-height: 255px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid > li span {
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-grid > li h3 {
  margin: 58px 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.process-grid > li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-step span {
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-step h3 {
  margin: 58px 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.differential-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(50px, 9vw, 120px);
}

.differential-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.differential-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.differential-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.differential-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #414247;
}

.differential-intro h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.differential-intro p {
  margin: 24px 0 0;
  color: var(--muted);
}

.differential-list {
  border-top: 1px solid var(--line);
}

.differential-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.differential-list > article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #c8c5bd;
}

.differential-list > article:first-child {
  border-top: 1px solid #c8c5bd;
}

.differential-list > article > span {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
}

.differential-list > article h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}

.differential-list > article p {
  margin: 0;
  color: #414247;
}

.differential-item span {
  color: var(--orange-light);
  font-size: 0.76rem;
  font-weight: 850;
}

.differential-item h3 {
  margin: 0 0 8px;
  font-size: 1.28rem;
}

.differential-item p {
  margin: 0;
  color: var(--muted);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.75fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.coverage-copy h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.4rem, 4.7vw, 4.4rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.coverage-copy > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #414247;
  font-size: 1.03rem;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.city-list span {
  padding: 8px 13px;
  border: 1px solid #bbb8b0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.coverage-map {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #c4c1b9;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

/* Landing de instalação para campanhas de pesquisa */
.ads-landing {
  background: var(--bg);
}

.ads-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 76px) 0 92px;
  background:
    radial-gradient(circle at 92% 12%, rgba(244, 122, 10, 0.15), transparent 28%),
    #090a0c;
  color: var(--text);
}

.ads-hero::after {
  position: absolute;
  top: -160px;
  right: -210px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 122, 10, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.ads-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1fr);
  gap: clamp(50px, 6vw, 82px);
  align-items: center;
}

.ads-hero-copy h1 {
  max-width: 11ch;
  margin: 16px 0 24px;
  color: var(--text);
  font-size: clamp(2.8rem, 5.1vw, 5rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.ads-hero-intro {
  max-width: 620px;
  margin: 0;
  color: #d0cfc9;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}

.ads-benefits {
  display: grid;
  gap: 11px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.ads-benefits li {
  position: relative;
  padding-left: 25px;
  color: #efeee9;
}

.ads-benefits li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(244, 122, 10, 0.13);
  content: "";
}

.ads-hero-form {
  min-width: 0;
}

.ads-hero-form .contact-form {
  width: 100%;
}

.ads-equipment {
  background: var(--bg-soft);
}

.ads-equipment .section-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.ads-equipment .section-heading h2,
.ads-projects .section-heading h2,
.ads-landing .process .section-heading h2,
.ads-landing .coverage-copy h2,
.ads-final-form .quick-contact-copy h2 {
  color: var(--text);
}

.ads-equipment .section-heading > p:last-child,
.ads-projects .section-heading > p:last-child,
.ads-landing .process .section-heading > p:last-child {
  color: #c6c5bf;
}

.ads-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ads-equipment-grid article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.ads-equipment-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ads-equipment-grid article > div {
  padding: 26px;
}

.ads-equipment-grid h3 {
  margin: 0 0 10px;
  color: var(--text);
}

.ads-equipment-grid p {
  margin: 0;
  color: #c3c2bc;
  line-height: 1.62;
}

.ads-cost {
  background: var(--paper);
  color: var(--ink);
}

.ads-cost-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(52px, 8vw, 100px);
  align-items: center;
}

.ads-cost-layout h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
}

.ads-cost-layout p:not(.eyebrow) {
  max-width: 640px;
  color: #414247;
}

.ads-cost-layout .eyebrow {
  color: var(--orange-dark);
}

.ads-cost-layout .button {
  margin-top: 16px;
}

.ads-cost-factors {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
}

.ads-cost-factors h3 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 1.4rem;
}

.ads-cost-factors ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ads-cost-factors li {
  position: relative;
  padding: 0 0 14px 22px;
  border-bottom: 1px solid var(--line);
  color: #d4d3ce;
}

.ads-cost-factors li::before {
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.ads-projects .section-heading {
  margin-bottom: 36px;
}

.ads-projects .ads-builder-grid {
  margin-bottom: 32px;
}

.ads-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ads-project-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.ads-project-grid img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.ads-project-grid article > div {
  padding: 18px 20px 21px;
}

.ads-project-grid small {
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ads-project-grid h3 {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 1.12rem;
}

.ads-project-action {
  margin-top: 24px;
}

.ads-project-action .button {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
}

.ads-project-action .button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #111215;
}

.ads-final-form {
  border-block: 1px solid rgba(244, 122, 10, 0.22);
  background:
    radial-gradient(circle at 8% 12%, rgba(244, 122, 10, 0.12), transparent 28%),
    radial-gradient(circle at 92% 85%, rgba(244, 122, 10, 0.08), transparent 28%),
    #0d0f12;
  color: var(--text);
}

.ads-final-form .quick-contact-copy > p:not(.eyebrow) {
  color: #c3c2bc;
}

.ads-final-form .contact-whatsapp {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .ads-hero-layout,
  .ads-cost-layout {
    grid-template-columns: 1fr;
  }

  .ads-hero-copy h1 {
    max-width: 14ch;
  }

  .ads-hero-form {
    width: min(760px, 100%);
  }
}

@media (max-width: 760px) {
  .ads-hero {
    padding: calc(var(--header-height) + 48px) 0 68px;
  }

  .ads-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .ads-equipment-grid,
  .ads-project-grid {
    grid-template-columns: 1fr;
  }

  .ads-equipment-grid article {
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 170px;
  }
}

@media (max-width: 520px) {
  .ads-equipment-grid article {
    grid-template-columns: 1fr;
  }

  .ads-equipment-grid img {
    height: 190px;
  }
}

.coverage-map {
  align-content: center;
  gap: 24px;
  padding: 54px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.coverage-map::before,
.coverage-map::after {
  display: none;
}

.coverage-core span,
.coverage-projects span {
  display: block;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage-core strong,
.coverage-projects strong {
  display: block;
  margin: 5px 0;
  font-size: 1.13rem;
}

.coverage-core p,
.coverage-projects p {
  margin: 0;
  color: #414247;
  font-size: 0.82rem;
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.city-cloud span {
  padding: 5px 9px;
  border: 1px solid #c2bfb7;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.coverage-map::before,
.coverage-map::after {
  position: absolute;
  border: 1px solid rgba(189, 78, 0, 0.32);
  border-radius: 50%;
  content: "";
}

.coverage-map::before {
  width: 62%;
  height: 62%;
}

.coverage-map::after {
  width: 28%;
  height: 28%;
}

.map-center {
  position: relative;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--orange-dark);
  box-shadow: 0 0 0 12px rgba(244, 122, 10, 0.15);
}

.map-label {
  position: absolute;
  z-index: 2;
  color: #414144;
  font-size: 0.74rem;
  font-weight: 800;
}

.map-label.main {
  top: 52%;
  left: 52%;
  color: var(--orange-dark);
}

.map-label.one {
  top: 25%;
  left: 24%;
}

.map-label.two {
  right: 14%;
  top: 38%;
}

.map-label.three {
  right: 25%;
  bottom: 17%;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 90%, rgba(244, 122, 10, 0.12), transparent 27%),
    var(--bg-soft);
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 90%, rgba(244, 122, 10, 0.12), transparent 27%),
    var(--bg-soft);
}

.quick-contact {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(244, 122, 10, 0.22);
  background:
    radial-gradient(circle at 12% 20%, rgba(244, 122, 10, 0.18), transparent 30%),
    radial-gradient(circle at 92% 85%, rgba(244, 122, 10, 0.08), transparent 28%),
    #0d0f12;
}

.quick-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1fr);
  gap: clamp(46px, 8vw, 108px);
  align-items: center;
}

.quick-contact-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.quick-contact-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 25px 0 0;
  color: #c3c2bc;
  font-size: 1.02rem;
}

.quick-contact-note {
  display: grid;
  gap: 5px;
  margin-top: 32px;
  padding: 21px 23px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.035);
}

.quick-contact-note strong {
  color: var(--orange-light);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-contact-note span {
  color: #aaa9a3;
  font-size: 0.84rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(55px, 9vw, 118px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.contact-copy > p {
  margin-top: 24px;
}

.contact-points {
  display: grid;
  gap: 13px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
}

.contact-direct,
.contact-note {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-direct span,
.contact-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--orange-light);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct a {
  font-size: 0.96rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-direct .contact-whatsapp {
  width: fit-content;
  margin-top: 18px;
  padding-inline: 20px;
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.contact-points li {
  position: relative;
  padding-left: 20px;
  color: #d2d1cc;
}

.contact-points li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.contact-form {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #deddd8;
  font-size: 0.82rem;
  font-weight: 750;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: #deddd8;
  font-size: 0.82rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #121214;
  color: var(--text);
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.form-full {
  grid-column: 1 / -1;
}

.button-full {
  width: 100%;
  margin-top: 24px;
  background: var(--orange);
  color: #111;
}

.form-privacy {
  margin: 8px 0 0;
  color: #aaa9a3;
  font-size: 0.72rem;
  text-align: center;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #121214;
  color: var(--text);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #73736f;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(244, 122, 10, 0.13);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}

.form-note {
  max-width: 280px;
  margin: 0;
  color: #b8b7b1;
  font-size: 0.74rem;
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  margin: 15px 0 0;
  color: var(--orange-light);
  font-size: 0.84rem;
}

.form-status.is-success {
  color: #7de2a3;
}

.form-status.is-error {
  color: #ff9b91;
}

.form-honeypot {
  display: none !important;
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.turnstile-container {
  width: 100%;
  grid-column: 1 / -1;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 9vw, 120px);
}

.faq-intro > p {
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--orange-light);
  font-size: 1.4rem;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 740px;
  margin: -5px 48px 26px 0;
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 32px;
  border-top: 1px solid var(--line);
  background: #09090a;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 42px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 42px;
}

.footer-brand p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #b8b7b1;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  border-color: rgba(244, 122, 10, 0.7);
  background: var(--surface-strong);
  transform: translateY(-2px);
}

.social-links img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
  color: #c9c8c3;
  font-size: 0.85rem;
  font-weight: 650;
}

.footer-links > div {
  display: grid;
  gap: 8px;
  min-width: 170px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--text);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #aaa9a3;
  font-size: 0.76rem;
}

.footer-credit {
  display: flex;
  min-height: 72px;
  margin-top: 22px;
  padding-top: 20px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #85847f;
  font-size: 0.7rem;
}

.developer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f4f2ec;
  transition: opacity 160ms ease, transform 160ms ease;
}

.developer-brand:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.developer-brand img {
  width: 38px;
  height: 32px;
  padding: 3px;
  border-radius: 7px;
  background: #fff;
  object-fit: contain;
}

.developer-brand-name {
  display: grid;
  gap: 0;
  line-height: 0.9;
}

.developer-brand-name strong,
.developer-brand-name small {
  display: block;
}

.developer-brand-name strong {
  color: #f4f2ec;
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.01em;
}

.developer-brand-name small {
  margin-top: 4px;
  color: #47bca0;
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.floating-contact {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  color: #111;
  font-size: 0.83rem;
  font-weight: 850;
  transition: background 150ms ease, transform 150ms ease;
}

.floating-contact:hover {
  background: #49df7d;
  transform: translateY(-2px);
}

.floating-contact::before {
  content: none;
}

.floating-contact img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav > a:not(.nav-cta) {
    font-size: 0.79rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 48px;
  }

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

  .authority-item:nth-child(2) {
    border-right: 0;
  }

  .authority-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .audience-card {
    min-height: 320px;
  }

  .audience-card h3 {
    margin-top: 48px;
  }

  .scale-grid,
  .proof-panel {
    grid-template-columns: 1fr;
  }

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

  .coverage-layout {
    grid-template-columns: 1fr 340px;
  }

  .coverage-map {
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    gap: 0;
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(13, 13, 15, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    padding: 14px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }

  .nav-cta {
    margin-top: 18px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-layout,
  .section-heading,
  .solutions-layout,
  .experience-header,
  .differential-layout,
  .coverage-layout,
  .contact-layout,
  .quick-contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .visual-frame {
    width: min(100%, 430px);
  }

  .section-heading {
    gap: 22px;
  }

  .split-heading,
  .solutions-intro,
  .differential-intro,
  .differential-copy,
  .contact-copy {
    position: static;
  }

  .experience-header {
    gap: 24px;
  }

  .coverage-map {
    width: min(100%, 430px);
    min-height: auto;
    aspect-ratio: 1;
    margin-inline: auto;
  }
}

/* Páginas jurídicas */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 76px;
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 122, 10, 0.16), transparent 32%),
    linear-gradient(145deg, #090a0c 0%, #15171b 100%);
}

.legal-hero::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(244, 122, 10, 0.18);
  border-radius: 50%;
  content: "";
}

.legal-hero .container {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.legal-hero h1 {
  max-width: 850px;
  margin: 20px 0 24px;
}

.legal-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #d7d6d1;
  font-size: 1.08rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: #aaa9a4;
  font-size: 0.88rem;
}

.legal-page {
  padding: 84px 0 110px;
  background: #f2f0e9;
  color: var(--ink);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 112px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 19, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(17, 17, 19, 0.06);
}

.legal-nav strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 17, 19, 0.08);
  color: #4a4a4d;
  font-size: 0.92rem;
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.legal-content {
  max-width: 820px;
}

.legal-content section {
  padding: 0 0 44px;
  scroll-margin-top: 120px;
}

.legal-content section + section {
  padding-top: 44px;
  border-top: 1px solid rgba(17, 17, 19, 0.12);
}

.legal-content h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-content h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li {
  color: #45454a;
  line-height: 1.78;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.legal-content li::marker {
  color: var(--orange-dark);
}

.legal-callout {
  margin-top: 20px;
  padding: 22px 24px;
  border-left: 3px solid var(--orange);
  border-radius: 0 16px 16px 0;
  background: #fff;
}

.legal-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--line);
}

.footer-legal a {
  color: #bcbab4;
  font-size: 0.84rem;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--orange-light);
}

.form-privacy a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 820px) {
  .legal-hero {
    padding: 132px 0 58px;
  }

  .legal-page {
    padding: 58px 0 82px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .legal-nav {
    position: static;
  }
}

/* Página institucional de Serviços */
.service-page-hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + 105px) 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 122, 10, 0.13), transparent 28%),
    #090a0c;
}

.service-page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.76fr);
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.service-page-intro h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.service-page-intro > p:last-of-type {
  max-width: 720px;
  margin: 28px 0 0;
  color: #c5c4be;
  font-size: 1.08rem;
  line-height: 1.7;
}

.service-hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-hero-system {
  display: grid;
  min-height: 190px;
  padding: 22px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #f5f3ed, #dfe3e5);
  color: #17191d;
}

.service-hero-system-main {
  grid-column: 1 / -1;
  min-height: 270px;
}

.service-hero-system img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(15, 20, 25, 0.18));
}

.service-hero-system span {
  align-self: end;
  color: #414247;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-scope {
  padding: 118px 0;
  background: var(--paper);
  color: #17191d;
}

.service-page-heading {
  max-width: 930px;
  margin-bottom: 58px;
}

.service-page-heading h2,
.service-systems-copy h2,
.service-evaluation h2,
.service-page-cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-page-heading > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: #4b4c50;
  font-size: 1rem;
}

.service-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #c9c5bb;
  border-left: 1px solid #c9c5bb;
}

.service-scope-grid article {
  min-height: 360px;
  padding: 40px;
  border-right: 1px solid #c9c5bb;
  border-bottom: 1px solid #c9c5bb;
  background: rgba(255, 255, 255, 0.32);
}

.service-scope-grid article > span {
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-scope-grid h3 {
  margin: 48px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.service-scope-grid p {
  color: #55565a;
}

.service-scope-grid ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-scope-grid li::before {
  margin-right: 9px;
  color: var(--orange-dark);
  content: "•";
}

.service-systems {
  padding: 116px 0;
  background: #101216;
}

.service-systems .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(55px, 9vw, 120px);
}

.service-systems-copy > p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: #bcbab4;
}

.service-system-list {
  border-top: 1px solid var(--line);
}

.service-system-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.service-system-list strong {
  color: var(--orange-light);
}

.service-system-list span {
  color: #c3c2bc;
}

.service-evaluation {
  padding: 112px 0;
  background: var(--paper);
  color: #17191d;
}

.service-evaluation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1fr);
  gap: clamp(55px, 9vw, 120px);
}

.service-evaluation ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #c9c5bb;
}

.service-evaluation li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #c9c5bb;
}

.service-evaluation li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  font-weight: 900;
}

.service-evaluation strong {
  font-size: 1.1rem;
}

.service-evaluation li p {
  margin: 8px 0 0;
  color: #55565a;
}

.service-page-cta {
  padding: 106px 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(244, 122, 10, 0.18), transparent 32%),
    #171a1f;
}

.service-page-cta .container {
  max-width: 920px;
}

.service-page-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #c5c4be;
}

.site-nav a[aria-current="page"] {
  color: var(--orange-light);
}

@media (max-width: 900px) {
  .service-page-hero-grid,
  .service-systems .container,
  .service-evaluation-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-visual {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .service-page-hero {
    min-height: 0;
    padding: calc(var(--header-height) + 70px) 0 80px;
  }

  .service-page-hero-grid {
    gap: 52px;
  }

  .service-page-intro h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .service-hero-system,
  .service-hero-system-main {
    min-height: 155px;
    padding: 16px;
  }

  .service-scope,
  .service-systems,
  .service-evaluation,
  .service-page-cta {
    padding-block: 78px;
  }

  .service-scope-grid {
    grid-template-columns: 1fr;
  }

  .service-scope-grid article {
    min-height: 0;
    padding: 30px 25px;
  }

  .service-scope-grid h3 {
    margin-top: 34px;
  }

  .service-system-list article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .service-evaluation li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
}

/* Página institucional de Construção Civil */
.construction-page-hero {
  position: relative;
  min-height: 790px;
  padding: calc(var(--header-height) + 105px) 0 110px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 12%, rgba(244, 122, 10, 0.15), transparent 30%), #090a0c;
}

.construction-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  gap: clamp(52px, 8vw, 105px);
  align-items: center;
}

.construction-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.1rem, 6.2vw, 6.2rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.construction-hero-copy > p:last-of-type {
  max-width: 700px;
  margin: 28px 0 0;
  color: #c8c6c0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.construction-hero-media {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 122, 10, 0.35);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.construction-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7, 8, 10, 0.9));
  content: "";
}

.construction-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.construction-hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.construction-hero-media small,
.construction-hero-media strong {
  display: block;
}

.construction-hero-media small {
  color: var(--orange-light);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.construction-hero-media strong {
  margin-top: 7px;
  font-size: 1.35rem;
}

.construction-delivery,
.construction-partners,
.construction-commercial {
  padding: 116px 0;
  background: var(--paper);
  color: #17191d;
}

.construction-page-heading,
.construction-partners-heading,
.construction-projects-heading {
  max-width: 960px;
  margin-bottom: 56px;
}

.construction-page-heading h2,
.construction-capacity h2,
.construction-partners h2,
.construction-projects h2,
.construction-commercial h2,
.construction-cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.construction-page-heading > p:last-child,
.construction-projects-heading > p:last-child {
  max-width: 720px;
  margin: 24px 0 0;
  color: #505155;
}

.construction-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c9c5bb;
  border-left: 1px solid #c9c5bb;
}

.construction-delivery-grid article {
  min-height: 330px;
  padding: 32px;
  border-right: 1px solid #c9c5bb;
  border-bottom: 1px solid #c9c5bb;
}

.construction-delivery-grid article > span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.construction-delivery-grid h3 {
  margin: 65px 0 16px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.construction-delivery-grid p {
  color: #55565a;
}

.construction-capacity,
.construction-projects,
.construction-cta {
  padding: 116px 0;
  background: #101216;
}

.construction-capacity-grid,
.construction-commercial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  gap: clamp(55px, 9vw, 125px);
}

.construction-capacity-grid > div:first-child > p:last-child {
  max-width: 680px;
  margin: 26px 0 0;
  color: #bdbcb6;
}

.construction-capacity-numbers {
  border-top: 1px solid var(--line);
}

.construction-capacity-numbers article {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.construction-capacity-numbers strong {
  color: var(--orange-light);
  font-size: 1.25rem;
}

.construction-capacity-numbers span {
  color: #c2c1bb;
}

.construction-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #d0ccc2;
  border-radius: 24px;
}

.construction-logo-grid .builder-logo {
  min-height: 145px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.construction-projects {
  background: #0c0e11;
}

.construction-project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.construction-project-grid figure {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.construction-project-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 8, 10, 0.9));
  content: "";
}

.construction-project-grid img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.construction-project-grid figure:hover img {
  transform: scale(1.035);
}

.construction-project-grid figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
}

.construction-project-grid small,
.construction-project-grid strong {
  display: block;
}

.construction-project-grid small {
  color: var(--orange-light);
  font-weight: 800;
}

.construction-project-grid strong {
  margin-top: 5px;
  font-size: 1.35rem;
}

.construction-commercial-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #c9c5bb;
}

.construction-commercial-grid li {
  display: grid;
  gap: 7px;
  padding: 23px 0;
  border-bottom: 1px solid #c9c5bb;
}

.construction-commercial-grid li span {
  color: #55565a;
}

.construction-cta {
  background: radial-gradient(circle at 84% 0%, rgba(244, 122, 10, 0.18), transparent 34%), #171a1f;
}

.construction-cta .container {
  max-width: 940px;
}

.construction-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 25px 0 0;
  color: #c5c4be;
}

@media (max-width: 1000px) {
  .construction-hero-grid,
  .construction-capacity-grid,
  .construction-commercial-grid {
    grid-template-columns: 1fr;
  }

  .construction-hero-media {
    max-width: 720px;
  }

  .construction-delivery-grid,
  .construction-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .construction-page-hero {
    min-height: 0;
    padding: calc(var(--header-height) + 70px) 0 78px;
  }

  .construction-hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .construction-hero-media,
  .construction-hero-media img {
    min-height: 430px;
  }

  .construction-delivery,
  .construction-capacity,
  .construction-partners,
  .construction-projects,
  .construction-commercial,
  .construction-cta {
    padding-block: 78px;
  }

  .construction-delivery-grid,
  .construction-logo-grid,
  .construction-project-grid {
    grid-template-columns: 1fr;
  }

  .construction-delivery-grid article {
    min-height: 0;
    padding: 28px 25px;
  }

  .construction-delivery-grid h3 {
    margin-top: 38px;
  }

  .construction-capacity-numbers article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .construction-project-grid figure,
  .construction-project-grid img {
    min-height: 310px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .brand {
    gap: 9px;
    font-size: 0.84rem;
  }

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

  .hero {
    padding-bottom: 72px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.65rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .visual-caption {
    right: 8px;
    bottom: 18px;
  }

  .authority {
    margin-top: -28px;
  }

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

  .authority-item,
  .authority-item:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .authority-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 82px;
  }

  .audience-card {
    min-height: 390px;
    padding: 28px;
  }

  .solution-row {
    grid-template-columns: 42px 1fr;
  }

  .solution-row p {
    grid-column: 2;
  }

  .scale-points,
  .proof-slots,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 230px;
  }

  .proof-panel {
    padding: 28px;
  }

  .form-footer,
  .footer-main,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

  .form-note {
    max-width: none;
  }

  .footer-main {
    display: flex;
  }

  .footer-top {
    display: flex;
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-credit {
    min-height: 64px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 11px 15px;
  }
}

/* Fachada, provas comerciais e portfólio */
.manufacturer-band {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  padding: 84px 0 132px;
  background:
    radial-gradient(circle at 82% 5%, rgba(244, 122, 10, 0.11), transparent 28%),
    #090a0c;
}

.manufacturer-band::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(9, 10, 12, 0), var(--paper));
  content: "";
  pointer-events: none;
}

.manufacturer-content {
  position: relative;
  z-index: 1;
}

.manufacturer-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.manufacturer-heading .eyebrow {
  margin: 0;
}

.manufacturer-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.65rem, 3vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.manufacturer-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f7f5ef;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.manufacturer-logo {
  display: grid;
  min-width: 0;
  height: 108px;
  padding: 25px 18px;
  place-items: center;
  border-right: 1px solid #d9d6ce;
  background: #f7f5ef;
}

.manufacturer-logo:last-child {
  border-right: 0;
}

.manufacturer-logo img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}

.installation-showcase {
  position: relative;
  display: grid;
  justify-items: center;
  margin-top: clamp(72px, 9vw, 118px);
  padding-bottom: 22px;
}

.installation-showcase-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
  text-align: center;
}

.installation-showcase-heading .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}

.installation-showcase-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.installation-showcase-heading > p:last-child {
  max-width: 590px;
  margin: 20px auto 0;
  color: #c7c9ce;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.installation-video-shell {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #050608;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.52),
    0 0 44px rgba(255, 255, 255, 0.1);
  isolation: isolate;
}

.installation-video-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  content: "";
  pointer-events: none;
}

.installation-video {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
}

.installation-video-prompt {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: min(84%, 350px);
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  color: #fff;
  background: rgba(8, 9, 12, 0.68);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  cursor: pointer;
}

.installation-video-prompt:hover,
.installation-video-prompt:focus-visible {
  border-color: rgba(255, 126, 19, 0.85);
  background: rgba(13, 14, 18, 0.82);
  transform: translate(-50%, -50%) scale(1.02);
}

.installation-video-prompt.is-dismissed {
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -46%);
  pointer-events: none;
}

.installation-video-prompt-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  color: #0a0b0d;
  background: var(--orange);
  font-size: 1.12rem;
}

.installation-video-prompt strong,
.installation-video-prompt small {
  display: block;
  text-align: left;
}

.installation-video-prompt strong {
  font-size: 0.95rem;
  line-height: 1.3;
}

.installation-video-prompt small {
  margin-top: 4px;
  color: #d6d8dc;
  font-size: 0.78rem;
}

.installation-video-audio {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 9, 12, 0.7);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.installation-video-audio[hidden] {
  display: none;
}

.installation-video-audio span:last-child {
  font-size: 0.72rem;
  font-weight: 800;
}

.installation-video-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.installation-video-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff7600, #ff9a3d);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 120ms linear;
}

@media (max-width: 620px) {
  .installation-showcase {
    margin-top: 66px;
  }

  .installation-showcase-heading {
    margin-bottom: 26px;
  }

  .installation-showcase-heading h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .installation-video-shell {
    width: min(100%, 420px);
    border-radius: 20px;
  }

  .installation-video-prompt {
    min-height: 76px;
    padding: 16px 18px;
  }

  .installation-video-audio span:last-child {
    display: none;
  }
}

.multisplit-bridge {
  position: relative;
  margin-top: -1px;
  padding: 12px 0 24px;
  overflow: hidden;
  background: var(--paper);
}

.multisplit-bridge .container {
  display: grid;
  place-items: center;
}

.multisplit-bridge img {
  display: block;
  width: min(820px, 88%);
  height: auto;
  filter: drop-shadow(0 28px 38px rgba(22, 25, 31, 0.16));
}

@media (max-width: 620px) {
  .multisplit-bridge {
    padding-top: 4px;
  }

  .multisplit-bridge img {
    width: 112%;
    max-width: none;
  }
}

.facility-stage {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 10px);
  background: #111318;
}

.facility-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 8, 10, 0.82) 100%);
  content: "";
  pointer-events: none;
}

.facility-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.facility-stage figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.client-proof {
  padding: 76px 0 82px;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 122, 10, 0.1), transparent 28%),
    #111318;
}

.client-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.client-proof-heading .eyebrow {
  margin: 0;
}

.client-proof-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.client-logo {
  display: grid;
  min-width: 0;
  height: 112px;
  padding: 25px 20px;
  place-items: center;
  border-right: 1px solid #dedbd3;
  background: #fff;
}

.client-logo:last-child {
  border-right: 0;
}

.client-logo img {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.client-logo-dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 122, 10, 0.12), transparent 66%),
    #171a1f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.construction-proof {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 10%, rgba(244, 122, 10, 0.12), transparent 27%),
    #0c0e11;
}

.builder-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-bottom: 96px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #171a1f;
}

.builder-logo {
  display: grid;
  height: 128px;
  padding: 28px;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #171a1f;
}

.builder-logo:nth-child(4n) {
  border-right: 0;
}

.builder-logo:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.builder-logo-light {
  background: #f7f5ef;
}

.builder-logo img {
  width: 100%;
  height: 66px;
  object-fit: contain;
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.portfolio-heading .eyebrow {
  margin-bottom: 14px;
}

.portfolio-heading h2 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.portfolio-filters button {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: #d5d4ce;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.portfolio-filters button:hover,
.portfolio-filters button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #111;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  position: relative;
  display: block;
  min-width: 0;
  height: 330px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #171a1f;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, transform 180ms ease;
}

.portfolio-card-featured {
  height: 440px;
}

.portfolio-card:hover {
  border-color: rgba(244, 122, 10, 0.72);
  transform: translateY(-4px);
}

.portfolio-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 6, 8, 0.94) 100%);
  content: "";
  pointer-events: none;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.035);
}

.portfolio-card > span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
}

.portfolio-card small,
.portfolio-card strong {
  display: block;
}

.portfolio-card small {
  margin-bottom: 6px;
  color: var(--orange-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card strong {
  font-size: 1.22rem;
  line-height: 1.15;
}

.portfolio-card.is-filtered-out {
  display: none;
}

.portfolio-actions {
  margin-top: 40px;
}

.portfolio-expand {
  display: none;
}

.portfolio-conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1.3fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 52px;
  padding: 34px 38px;
  border: 1px solid rgba(244, 122, 10, 0.42);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(244, 122, 10, 0.13), rgba(255, 255, 255, 0.035));
}

.portfolio-conversion > span {
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio-conversion h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.portfolio-conversion p {
  grid-column: 2;
  margin: -16px 0 0;
  color: #bdbcb6;
  font-size: 0.92rem;
}

.portfolio-conversion .button {
  grid-column: 3;
  grid-row: 1 / span 2;
  white-space: nowrap;
}

.portfolio-modal {
  width: min(1050px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: #111318;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.64);
  color: #fff;
}

.portfolio-modal::backdrop {
  background: rgba(5, 6, 8, 0.86);
  backdrop-filter: blur(8px);
}

.portfolio-modal figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  max-height: calc(100vh - 34px);
  margin: 0;
}

.portfolio-modal figure > img {
  width: 100%;
  max-height: calc(100vh - 135px);
  object-fit: contain;
  background: #08090b;
}

.portfolio-modal figcaption {
  padding: 20px 26px 22px;
  border-top: 1px solid var(--line);
}

.portfolio-modal figcaption small,
.portfolio-modal figcaption strong {
  display: block;
}

.portfolio-modal figcaption small {
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-modal figcaption strong {
  margin-top: 4px;
  font-size: 1.25rem;
}

.portfolio-modal-close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(10, 11, 13, 0.86);
  color: #fff;
  cursor: pointer;
  font-size: 1.55rem;
}

.hero-actions .button.button-whatsapp,
.contact-direct .button-whatsapp {
  color: #fff;
}

.floating-contact {
  width: 60px;
  height: 60px;
  min-height: 60px;
  padding: 13px;
  justify-content: center;
  border-radius: 50%;
  animation: whatsapp-pulse 2.15s ease-out infinite;
}

.floating-contact img {
  width: 32px;
  height: 32px;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(126, 242, 168, 0.56), 0 12px 34px rgba(0, 0, 0, 0.34);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(126, 242, 168, 0), 0 12px 34px rgba(0, 0, 0, 0.34);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(126, 242, 168, 0), 0 12px 34px rgba(0, 0, 0, 0.34);
  }
}

@media (max-width: 1020px) {
  .manufacturer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .manufacturer-logo {
    border-right: 1px solid #d9d6ce;
    border-bottom: 1px solid #d9d6ce;
  }

  .manufacturer-logo:nth-child(4n) {
    border-right: 0;
  }

  .manufacturer-logo:nth-child(n + 5) {
    border-bottom: 0;
  }

  .manufacturer-logo:last-child {
    border-right: 1px solid #d9d6ce;
  }

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

  .client-logo:nth-child(3n) {
    border-right: 0;
  }

  .client-logo:nth-child(-n + 3) {
    border-bottom: 1px solid #dedbd3;
  }

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

  .builder-logo,
  .builder-logo:nth-child(4n) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .builder-logo:nth-child(2n) {
    border-right: 0;
  }

  .builder-logo:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .portfolio-heading {
    grid-template-columns: 1fr;
  }

  .portfolio-filters {
    justify-content: flex-start;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-conversion {
    grid-template-columns: 1fr auto;
  }

  .portfolio-conversion > span,
  .portfolio-conversion h3,
  .portfolio-conversion p {
    grid-column: 1;
  }

  .portfolio-conversion p {
    margin-top: -12px;
  }

  .portfolio-conversion .button {
    grid-column: 2;
    grid-row: 1 / span 3;
  }
}

@media (max-width: 820px) {
  .manufacturer-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .client-proof-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-card,
  .portfolio-card-featured {
    height: 360px;
  }
}

@media (max-width: 620px) {
  .manufacturer-band {
    padding-top: 70px;
  }

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

  .manufacturer-logo,
  .manufacturer-logo:nth-child(4n),
  .manufacturer-logo:last-child {
    height: 96px;
    padding: 22px 16px;
    border-right: 1px solid #d9d6ce;
    border-bottom: 1px solid #d9d6ce;
  }

  .manufacturer-logo:nth-child(2n) {
    border-right: 0;
  }

  .manufacturer-logo:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

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

  .client-logo,
  .client-logo:nth-child(3n) {
    height: 100px;
    border-right: 1px solid #dedbd3;
    border-bottom: 1px solid #dedbd3;
  }

  .client-logo:nth-child(2n) {
    border-right: 0;
  }

  .client-logo:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .builder-logo {
    height: 108px;
    padding: 20px;
  }

  .builder-logo-grid {
    margin-bottom: 72px;
  }

  .portfolio-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .portfolio-filters button {
    flex: 0 0 auto;
  }

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

  .portfolio-card,
  .portfolio-card-featured {
    height: 380px;
  }

  .portfolio-card.is-mobile-collapsed {
    display: none;
  }

  .portfolio-expand {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid var(--orange);
    border-radius: 999px;
    background: transparent;
    color: var(--orange-light);
    cursor: pointer;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
  }

  .portfolio-conversion {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
    padding: 28px 24px;
  }

  .portfolio-conversion > span,
  .portfolio-conversion h3,
  .portfolio-conversion p,
  .portfolio-conversion .button {
    grid-column: 1;
    grid-row: auto;
  }

  .portfolio-conversion p {
    margin: 0;
  }

  .floating-contact {
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 12px;
  }

  .floating-contact img {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact {
    animation: none;
  }

  .portfolio-card:hover img {
    transform: none;
  }
}

/* Cards ilustrados das áreas de atuação */
.audience-card {
  min-height: 680px;
  padding: 0;
}

.audience-card::after {
  display: none;
}

.audience-media {
  position: relative;
  height: 220px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #101216;
}

.audience-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.04) 42%, rgba(8, 9, 11, 0.72) 100%);
  content: "";
  pointer-events: none;
}

.audience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.audience-card:hover .audience-media img {
  transform: scale(1.035);
}

.audience-media .card-number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  border-color: rgba(255, 155, 61, 0.72);
  background: rgba(10, 11, 13, 0.76);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.24);
  color: var(--orange-light);
  backdrop-filter: blur(8px);
}

.audience-body {
  display: flex;
  min-height: 460px;
  flex: 1;
  flex-direction: column;
  padding: 30px 32px 32px;
}

.audience-body .card-kicker {
  margin: 0 0 9px !important;
}

.audience-body h3 {
  margin: 0 0 14px;
}

.audience-body > p:not(.card-kicker) {
  margin: 0;
  color: #e2e1dc;
}

.audience-body ul {
  margin: 28px 0 0;
  padding-top: 0;
}

.audience-body > a {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 28px;
  color: var(--orange-light);
  font-size: 0.86rem;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .audience-card {
    min-height: 0;
  }

  .audience-media {
    height: clamp(220px, 42vw, 390px);
  }

  .audience-body {
    min-height: 390px;
  }
}

@media (max-width: 620px) {
  .audience-card {
    min-height: 0;
  }

  .audience-media {
    height: 210px;
  }

  .audience-body {
    min-height: 430px;
    padding: 27px 27px 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-card:hover .audience-media img {
    transform: none;
  }
}

/* Linguagens visuais das seções estratégicas */
.solution-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 58px;
}

.solution-showcase-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.solution-showcase-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.solution-showcase-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.solution-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 22px;
  align-items: stretch;
}

.service-compact-list {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #171a1f;
}

.service-list-label {
  margin: 0 0 18px;
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-compact-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.service-compact-list article > span {
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 850;
}

.service-compact-list h3 {
  margin: 0 0 5px;
  font-size: 1rem;
}

.service-compact-list article p {
  margin: 0;
  color: #b9b8b2;
  font-size: 0.82rem;
  line-height: 1.5;
}

.service-compact-list > a {
  margin-top: auto;
  padding-top: 26px;
}

.equipment-explorer {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #171a1f;
}

.equipment-tabs {
  display: flex;
  overflow-x: auto;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.equipment-tabs button {
  flex: 1 0 auto;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #bbb9b3;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 780;
  transition: background 150ms ease, color 150ms ease;
}

.equipment-tabs button:hover,
.equipment-tabs button.is-active {
  background: var(--orange);
  color: #111;
}

.equipment-stage {
  min-height: 540px;
}

.equipment-panel {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #eef1f2;
}

.equipment-panel[hidden] {
  display: none;
}

.equipment-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 9, 0.02) 35%, rgba(6, 7, 9, 0.93) 100%);
  content: "";
  pointer-events: none;
}

.equipment-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-panel[data-equipment-panel="multisplit"] > img {
  padding: 42px;
  object-fit: contain;
}

.equipment-panel > div {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  left: 34px;
  max-width: 650px;
}

.equipment-panel small {
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.equipment-panel h3 {
  margin: 7px 0 8px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.equipment-panel p {
  max-width: 580px;
  margin: 0;
  color: #deddd8;
}

.capacity-scale {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
  padding: 38px 0 52px;
}

.capacity-track {
  position: absolute;
  top: 78px;
  right: 9%;
  left: 9%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #d0ccc2;
}

.capacity-track span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ba4d00, var(--orange), #ffad60);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms ease 180ms;
}

.capacity-scale.is-visible .capacity-track span {
  transform: scaleX(1);
}

.capacity-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.capacity-index {
  display: grid;
  margin: 0 auto 30px;
  place-items: center;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px #c5c1b7, 0 12px 26px rgba(0, 0, 0, 0.12);
  color: #111;
  font-weight: 900;
}

.capacity-step-small .capacity-index {
  width: 58px;
  height: 58px;
}

.capacity-step-medium .capacity-index {
  width: 74px;
  height: 74px;
  margin-top: -8px;
}

.capacity-step-large .capacity-index {
  width: 90px;
  height: 90px;
  margin-top: -16px;
}

.capacity-step small {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.capacity-step h3 {
  margin: 7px 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.capacity-step p {
  max-width: 320px;
  margin: 0 auto;
  color: #4c4d51;
  font-size: 0.92rem;
}

.capacity-conclusion {
  display: grid;
  grid-template-columns: 0.48fr 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid rgba(244, 122, 10, 0.38);
  border-radius: 22px;
  background: #171a1f;
  color: #fff;
}

.capacity-conclusion > span {
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.capacity-conclusion h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.capacity-conclusion p {
  margin: 0;
  color: #c6c5bf;
  font-size: 0.88rem;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 22px 0 0;
  padding: 0 0 75px;
  list-style: none;
}

.process-timeline::before {
  position: absolute;
  top: 31px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-light));
  content: "";
}

.process-timeline > li {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.timeline-point {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: #101216;
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-timeline article {
  min-height: 230px;
  margin-top: 26px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #171a1f;
}

.process-timeline li:nth-child(even) article {
  transform: translateY(48px);
}

.process-timeline small {
  color: var(--orange-light);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-timeline h3 {
  margin: 24px 0 10px;
  font-size: 1.05rem;
  line-height: 1.18;
}

.process-timeline p {
  margin: 0;
  color: #adaca6;
  font-size: 0.8rem;
  line-height: 1.55;
}

.process-timeline li:last-child .timeline-point {
  border-color: var(--orange-light);
  background: var(--orange);
  color: #111;
  box-shadow: 0 0 0 8px rgba(244, 122, 10, 0.13);
}

.evaluation-comparison {
  overflow: hidden;
}

.comparison-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.comparison-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 4.35rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.comparison-heading > p:last-child {
  max-width: 730px;
  margin: 24px 0 0;
  color: #414247;
  font-size: 1.02rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  align-items: center;
}

.comparison-side {
  overflow: hidden;
  border: 1px solid #cbc7bd;
  border-radius: 24px;
}

.comparison-risk {
  background: #e5e2da;
}

.comparison-organized {
  border-color: rgba(244, 122, 10, 0.45);
  background: #171a1f;
  color: #fff;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.comparison-side-heading {
  min-height: 190px;
  padding: 30px 32px;
  border-bottom: 1px solid currentColor;
  border-bottom-color: rgba(91, 91, 91, 0.22);
}

.comparison-organized .comparison-side-heading {
  border-bottom-color: var(--line);
  background: rgba(244, 122, 10, 0.08);
}

.comparison-side-heading span {
  color: #7b3a0a;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-organized .comparison-side-heading span {
  color: var(--orange-light);
}

.comparison-side-heading h3 {
  margin: 17px 0 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.comparison-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-side li {
  display: grid;
  gap: 5px;
  min-height: 98px;
  padding: 22px 32px;
  border-bottom: 1px solid rgba(91, 91, 91, 0.18);
}

.comparison-organized li {
  border-bottom-color: var(--line);
}

.comparison-side li:last-child {
  border-bottom: 0;
}

.comparison-side li strong {
  font-size: 0.94rem;
}

.comparison-side li span {
  color: #55565a;
  font-size: 0.82rem;
}

.comparison-organized li span {
  color: #bdbcb6;
}

.comparison-transition {
  position: relative;
  z-index: 2;
  display: grid;
  width: 96px;
  height: 96px;
  margin-inline: -10px;
  place-items: center;
  border: 7px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  color: #111;
}

.comparison-transition span {
  font-size: 1.7rem;
  line-height: 1;
}

.comparison-transition small {
  margin-top: -22px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .process-timeline::before {
    top: 28px;
    right: auto;
    bottom: 28px;
    left: 30px;
    width: 2px;
    height: auto;
  }

  .process-timeline > li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 22px;
    align-items: start;
    margin-bottom: 18px;
  }

  .timeline-point {
    margin: 0;
  }

  .process-timeline article,
  .process-timeline li:nth-child(even) article {
    min-height: 0;
    margin: 0;
    transform: none;
  }
}

@media (max-width: 900px) {
  .solution-showcase-heading,
  .solution-showcase {
    grid-template-columns: 1fr;
  }

  .solution-showcase-heading {
    gap: 20px;
  }

  .solution-showcase-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .capacity-scale {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 5px;
  }

  .capacity-track {
    top: 46px;
    bottom: 75px;
    left: 48px;
    width: 4px;
    height: auto;
  }

  .capacity-track span {
    transform: scaleY(0);
    transform-origin: top;
  }

  .capacity-scale.is-visible .capacity-track span {
    transform: scaleY(1);
  }

  .capacity-step {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 22px;
    align-items: center;
    min-height: 170px;
    text-align: left;
  }

  .capacity-index,
  .capacity-step-medium .capacity-index,
  .capacity-step-large .capacity-index {
    margin: 0 auto;
  }

  .capacity-step p {
    margin: 0;
  }

  .capacity-conclusion {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparison-transition {
    display: flex;
    width: 78px;
    height: 78px;
    margin: -14px auto;
    padding: 7px 0 6px;
    flex-direction: column;
    gap: 1px;
    align-items: center;
    justify-content: center;
    border-width: 6px;
    transform: none;
  }

  .comparison-transition span {
    font-size: 1.25rem;
    transform: rotate(90deg);
  }

  .comparison-transition small {
    margin: 0;
    font-size: 0.5rem;
    line-height: 1;
    transform: none;
  }
}

@media (max-width: 620px) {
  .service-compact-list {
    padding: 25px;
  }

  .equipment-stage,
  .equipment-panel {
    min-height: 470px;
    height: 470px;
  }

  .equipment-panel[data-equipment-panel="multisplit"] > img {
    padding: 28px 18px 100px;
  }

  .equipment-panel > div {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

  .capacity-step {
    grid-template-columns: 84px 1fr;
  }

  .capacity-conclusion {
    padding: 28px;
  }

  .process-timeline > li {
    grid-template-columns: 56px 1fr;
    gap: 15px;
  }

  .timeline-point {
    width: 56px;
    height: 56px;
  }

  .process-timeline::before {
    left: 27px;
  }

  .process-timeline article {
    padding: 22px 19px;
  }

  .comparison-side-heading,
  .comparison-side li {
    padding-inline: 25px;
  }

  .comparison-transition {
    width: 68px;
    height: 68px;
    margin-block: -11px;
    border-width: 5px;
  }

  .comparison-transition span {
    font-size: 1.05rem;
  }

  .comparison-transition small {
    font-size: 0.46rem;
    letter-spacing: 0.035em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capacity-track span {
    transform: none;
  }
}

.facility-stage figcaption {
  right: 22px;
  left: auto;
  max-width: 190px;
  text-align: right;
}

@media (max-width: 620px) {
  .facility-stage figcaption {
    right: 16px;
    bottom: 18px;
    max-width: 150px;
    font-size: 0.68rem;
  }
}

/* Refinamentos de consistência e contraste */
.solution-showcase-heading {
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
  gap: 18px;
}

.solution-showcase-heading .eyebrow {
  grid-column: auto;
  margin-bottom: 4px;
}

.solution-showcase-heading > p:last-child {
  max-width: 780px;
  margin-top: 6px;
}

.construction-proof .eyebrow,
.process .eyebrow,
.contact .eyebrow {
  color: var(--orange-light);
}

.coverage .eyebrow {
  color: var(--orange-light);
}

#atuacao .eyebrow {
  color: var(--orange-dark);
}

.coverage-copy > p {
  color: #deddd8;
  font-weight: 500;
}

.faq-list details p {
  color: #414247;
  font-weight: 500;
}

.contact-direct {
  display: grid;
  justify-items: start;
}

.contact-direct > a:not(.contact-whatsapp) {
  display: block;
}

.contact-direct .contact-whatsapp {
  display: inline-flex;
  margin-top: 18px;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* Revisão de contraste e alinhamento das seções institucionais */
.section-heading {
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
  gap: 18px;
}

.section-heading > .eyebrow {
  grid-column: auto;
  margin-bottom: 4px;
}

.section-heading > p:last-child {
  max-width: 780px;
  margin-top: 6px;
}

.section-light .section-heading h2,
.experience-header h2 {
  color: var(--ink);
}

.audience-card h3 {
  color: var(--text);
}

.audience-card > p:not(.card-kicker) {
  color: #e2e1dc;
}

.audience-card li {
  color: #f0efea;
}

.audience-card > a {
  color: #ff9b3d;
}

.experience-header {
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
  align-items: start;
  gap: 20px;
}

.experience-header > p {
  max-width: 780px;
  color: #414247;
}

.coverage-map {
  display: grid;
  min-height: 0;
  gap: 0;
  align-content: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 122, 10, 0.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 122, 10, 0.18), transparent 36%),
    linear-gradient(145deg, #1d2127, #111318);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  color: var(--text);
  text-align: left;
}

.coverage-core,
.coverage-projects {
  padding: 34px 36px;
}

.coverage-core {
  border-bottom: 1px solid var(--line);
}

.coverage-core span,
.coverage-projects span {
  color: var(--orange-light);
}

.coverage-core strong,
.coverage-projects strong {
  margin: 7px 0 8px;
  color: var(--text);
  font-size: 1.3rem;
}

.coverage-core p,
.coverage-projects p {
  color: #d0cfca;
}

.city-cloud {
  justify-content: flex-start;
  gap: 8px;
  padding: 28px 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.city-cloud span {
  padding: 7px 11px;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.055);
  color: #f2f1ec;
}

.coverage-projects {
  position: relative;
  background: rgba(244, 122, 10, 0.08);
}

.coverage-projects::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 0;
  width: 3px;
  background: var(--orange);
  content: "";
}

@media (max-width: 620px) {
  .coverage-core,
  .coverage-projects,
  .city-cloud {
    padding-inline: 26px;
  }
}

@media (max-width: 820px) {
  .coverage-map {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  .coverage-projects {
    display: block;
    visibility: visible;
  }
}
