:root {
  --white: #fff;
  --surface: #f2f3f1;
  --surface-muted: #e8ebe8;
  --ink: #222;
  --cream: #efe3d2;
  --cream-deep: #e6d4bc;
  --leaf: #6d8a3f;
  --leaf-dark: #31512f;
  --wood: #a58462;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: var(--surface);
}

body.home-intro-active {
  overflow: hidden;
}

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

.home-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #f4f3ef;
  animation: home-intro-fade 1.9s cubic-bezier(.22, 1, .36, 1) forwards;
}

.home-intro img {
  width: clamp(84px, 10vw, 150px);
  height: auto;
  opacity: 0;
  transform: scale(.86);
  animation: home-intro-logo 1.45s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes home-intro-logo {
  0% {
    opacity: 0;
    transform: scale(.82);
  }

  30%,
  68% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes home-intro-fade {
  0%,
  68% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-intro-active {
    overflow: auto;
  }

  .home-intro {
    display: none;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(9px, .7vw, 14px);
  width: 100%;
  padding: 24px clamp(24px, 7vw, 150px);
  color: var(--white);
  background: transparent;
  box-shadow: none;
  transition: padding .28s ease, background-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 110px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, height .28s ease;
}

.site-header.is-scrolled {
  min-height: 90px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(17, 17, 17, .08), 0 16px 34px rgba(0, 0, 0, .12);
  color: #111;
  backdrop-filter: none;
}

.site-header:has(.nav-dropdown:hover),
.site-header:has(.nav-dropdown:focus-within) {
  background: var(--surface);
  color: #111;
  box-shadow: 0 1px 0 rgba(17, 17, 17, .08);
}

.site-header.is-scrolled::before {
  height: 100%;
  opacity: 0;
}

.site-header.is-scrolled .brand {
  min-height: 0;
}

.site-header.is-scrolled .brand img {
  height: 56px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(18px, 2.2vw, 42px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-left {
  justify-content: flex-end;
  padding-left: clamp(130px, 13vw, 230px);
}

.nav-right {
  justify-content: flex-start;
  gap: clamp(16px, 1.8vw, 34px);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-dropdown::before {
  content: "";
  position: fixed;
  top: 58px;
  right: 0;
  left: 0;
  display: none;
  height: 76px;
}

.nav-dropdown:hover::before,
.nav-dropdown:focus-within::before {
  display: block;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  white-space: nowrap;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 20px;
  width: 100vw;
  padding: 54px max(24px, calc((100vw - 1030px) / 2));
  color: #202320;
  text-transform: none;
  background: var(--surface);
  border: 0;
  border-radius: 0;
  box-shadow: 0 22px 38px rgba(0, 0, 0, .16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 112px;
  padding: 24px 20px;
  color: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.15;
  background: var(--white);
  border-radius: 8px;
  transition: color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.nav-dropdown-menu a::after {
  content: "\2192";
  flex: 0 0 auto;
  color: var(--leaf-dark);
  font-size: 27px;
  line-height: 1;
}

.nav-dropdown-menu a span {
  max-width: 17ch;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #111;
  box-shadow: 0 14px 26px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
  outline: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-scrolled .nav-dropdown-menu {
  top: 90px;
}

.naldi-wordmark {
  position: absolute;
  top: 50%;
  left: clamp(24px, 3vw, 42px);
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, .7vw, 12px);
  width: clamp(170px, 15vw, 250px);
  height: 54px;
  transform: translateY(-50%);
}

.naldi-wordmark img {
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 0, 0, .6));
  transition: filter .28s ease;
}

.naldi-wordmark-symbol {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
}

.naldi-wordmark-text {
  width: auto;
  max-width: calc(100% - 58px);
  height: 48px;
}

.site-header.is-scrolled .naldi-wordmark img {
  filter: none;
}

.site-header:has(.nav-dropdown:hover) .naldi-wordmark img,
.site-header:has(.nav-dropdown:focus-within) .naldi-wordmark img {
  filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  min-height: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 72px;
}

.icon-button,
.slider-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-header .icon-button {
  position: static;
  transform: none;
  color: var(--white);
}

.site-header.is-scrolled .icon-button {
  color: #111;
}

.site-header:has(.nav-dropdown:hover) .icon-button,
.site-header:has(.nav-dropdown:focus-within) .icon-button {
  color: #111;
}

.header-actions {
  position: absolute;
  top: 50%;
  right: clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 24px;
  transform: translateY(-50%);
}

.mobile-menu-toggle,
.mobile-navigation {
  display: none;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: start center;
  padding: clamp(92px, 12vh, 140px) 24px 32px;
  background: rgba(16, 18, 16, .58);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(3px);
  transition: opacity .18s ease, visibility .18s ease;
}

.site-search.is-open {
  opacity: 1;
  visibility: visible;
}

.site-search-open {
  overflow: hidden;
}

.site-search-panel {
  position: relative;
  display: grid;
  gap: 22px;
  width: min(100%, 680px);
  padding: clamp(28px, 4vw, 44px);
  color: #202320;
  background: #fff;
  border: 1px solid rgba(31, 42, 34, .1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.site-search-panel > span {
  color: rgba(32, 35, 32, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-search-panel h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.04;
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.site-search-form input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: #202320;
  font: inherit;
  font-size: 16px;
  background: #f6f7f4;
  border: 1px solid rgba(32, 35, 32, .16);
  border-radius: 0;
}

.site-search-form input:focus {
  background: #fff;
  border-color: rgba(32, 35, 32, .52);
  outline: none;
}

.site-search-form button {
  min-height: 52px;
  padding: 0 22px;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #202320;
  border: 0;
  cursor: pointer;
}

.site-search-results {
  display: grid;
  gap: 10px;
  min-height: 52px;
}

.site-search-results p {
  margin: 0;
  color: rgba(32, 35, 32, .62);
  font-size: 15px;
  line-height: 1.6;
}

.site-search-result {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  color: #202320;
  text-decoration: none;
  background: #f6f7f4;
  border: 1px solid rgba(32, 35, 32, .1);
  transition: background-color .18s ease, border-color .18s ease;
}

.site-search-result:hover,
.site-search-result:focus-visible {
  background: #fff;
  border-color: rgba(32, 35, 32, .32);
  outline: none;
}

.site-search-result span {
  color: rgba(32, 35, 32, .58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-search-result strong {
  font-size: 17px;
  font-weight: 600;
}

.site-search-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  color: #202320;
  font-size: 28px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, .88);
}

.site-header.is-scrolled .social-link {
  color: #111;
}

.site-header:has(.nav-dropdown:hover) .social-link,
.site-header:has(.nav-dropdown:focus-within) .social-link {
  color: #111;
}

.social-link svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-link:first-child svg {
  fill: currentColor;
  stroke: none;
}

.social-link span {
  display: block;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.icon-button svg,
.slider-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .28)),
    radial-gradient(circle at 54% 22%, rgba(255, 255, 255, .22), transparent 10%),
    rgba(0, 0, 0, .2);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(30, 40, 38, .35), rgba(255, 255, 255, 0) 30%),
    linear-gradient(90deg, var(--hero-side, #ded9cd) 0 9%, var(--hero-wood, #b8a58d) 9% 15%, var(--hero-main, #ece9df) 15% 70%, var(--hero-warm, #cbbda9) 70% 80%, var(--hero-side, #ded6c9) 80% 100%);
  overflow: hidden;
}

.hero-image.has-photo {
  background: #202725;
}

.hero-image.has-photo > :not(.hero-photo-layer) {
  opacity: 0;
}

.hero-image.has-photo::before {
  opacity: 0;
}

.hero-photo-layer {
  position: absolute;
  inset: -1px;
  z-index: 1;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity .72s cubic-bezier(.4, 0, .2, 1), transform 1.1s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}

.hero-photo-layer.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.hero-photo-layer.is-outgoing {
  z-index: 1;
  opacity: 0;
  transform: scale(1.006);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 42, 43, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 42, 43, .12) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .45;
}

.building {
  position: absolute;
  background: rgba(246, 243, 235, .86);
  box-shadow: inset 0 0 0 1px rgba(48, 48, 48, .08);
}

.building-left {
  left: 0;
  top: 0;
  width: 25%;
  height: 71%;
}

.building-center {
  left: 8%;
  top: 23%;
  width: 74%;
  height: 48%;
}

.building-right {
  right: 0;
  top: 0;
  width: 22%;
  height: 80%;
}

.green-wall {
  position: absolute;
  background-color: var(--hero-leaf, var(--leaf));
  background-image:
    radial-gradient(circle at 20% 20%, rgba(215, 236, 154, .7) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 55%, rgba(38, 82, 35, .6) 0 2px, transparent 3px);
  background-size: 18px 18px, 15px 15px;
  box-shadow: inset 0 -28px 44px rgba(27, 54, 25, .35);
}

.green-wall-large {
  left: 8%;
  top: 0;
  width: 64%;
  height: 43%;
}

.green-wall-low {
  left: 7%;
  bottom: 11%;
  width: 66%;
  height: 18%;
}

.tree {
  position: absolute;
  bottom: 8%;
  width: 28px;
  height: 54%;
  background: linear-gradient(90deg, #5b4638, #8d725b);
  border-radius: 16px;
  transform-origin: bottom;
}

.tree::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5%;
  width: 280px;
  height: 280px;
  background:
    radial-gradient(circle at 50% 50%, #8db84f 0 40%, transparent 41%),
    radial-gradient(circle at 28% 64%, #6c9a38 0 26%, transparent 27%),
    radial-gradient(circle at 70% 65%, #79a942 0 30%, transparent 31%);
  filter: blur(.4px);
  transform: translateX(-50%);
}

.tree-one {
  left: 47%;
}

.tree-two {
  right: 18%;
  height: 48%;
  transform: rotate(7deg);
}

.storefront {
  position: absolute;
  left: 49%;
  bottom: 0;
  width: 24%;
  height: 22%;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, .7) 8% 10%, transparent 10% 48%, rgba(255, 255, 255, .7) 48% 50%, transparent 50% 90%, rgba(255, 255, 255, .7) 90% 92%, transparent 92%),
    linear-gradient(180deg, rgba(240, 231, 211, .95), rgba(167, 130, 92, .9));
  border: 8px solid rgba(226, 215, 199, .9);
  box-shadow: 0 -12px 38px rgba(0, 0, 0, .25);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 130px 24px 60px;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .36);
  transition: opacity .3s ease, transform .3s ease;
}

.hero-content.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo-layer,
  .hero-content {
    transition-duration: .01ms;
  }
}

.hero-content p,
.hero-content span {
  margin: 0;
}

.hero-content p {
  font-size: clamp(16px, 1.25vw, 22px);
  font-weight: 400;
}

.hero-content h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.02;
}

.hero-content span {
  max-width: 560px;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 21px;
  color: #604c35;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: none;
  background: #f5ede1;
}

.hero-cta::after {
  content: "->";
  font-size: 18px;
  font-weight: 400;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
}

.clients-strip {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  width: min(92vw, 1180px);
  overflow: hidden;
  pointer-events: auto;
  transform: translateX(-50%);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 3vw, 48px);
  width: max-content;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  animation: clients-marquee 34s linear infinite;
}

.clients-track::-webkit-scrollbar {
  display: none;
}

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

.client-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: clamp(68px, 6.4vw, 82px);
  height: 46px;
  padding: 0;
  opacity: .68;
  pointer-events: auto;
  transition: opacity .25s ease, transform .25s ease;
}

.client-logo-wide {
  width: clamp(112px, 12vw, 158px);
}

.client-logo.active {
  opacity: .96;
}

.client-logo:hover,
.client-logo:focus-visible {
  transform: translateY(-3px);
}

.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, .34));
}

@keyframes clients-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(11px, 1.5vw, 24px)));
  }
}

.institutional-section {
  color: #202320;
  background: var(--surface);
}

.institutional-shell {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 6vw, 96px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 132px) 0;
}

.institutional-intro {
  display: grid;
  align-content: start;
  gap: 20px;
}

.section-kicker {
  margin: 0;
  color: #b91f2b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.institutional-intro h2,
.pillar-item h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1;
}

.institutional-intro h2 {
  max-width: 9ch;
  font-size: clamp(44px, 5.2vw, 78px);
}

.institutional-intro p,
.pillar-item p {
  margin: 0;
  color: rgba(32, 35, 32, .74);
  font-size: clamp(17px, 1.18vw, 19px);
  line-height: 1.82;
}

.institutional-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 38px;
  align-content: start;
  align-items: start;
  min-width: 0;
}

.pillar-item {
  display: grid;
  align-content: start;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(32, 35, 32, .18);
}

.pillar-item span {
  color: #b91f2b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.pillar-item h3 {
  font-size: clamp(34px, 3.35vw, 52px);
}

.pillar-item-wide {
  grid-column: 1 / -1;
  max-width: 780px;
}

@media (max-width: 1180px) {
  .institutional-shell {
    grid-template-columns: minmax(320px, .82fr) minmax(360px, 1fr);
    gap: clamp(34px, 4.5vw, 62px);
  }

  .institutional-intro h2 {
    font-size: clamp(42px, 5vw, 66px);
  }

  .institutional-pillars {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pillar-item-wide {
    max-width: none;
  }
}

.featured-project {
  color: #141414;
  background: var(--surface);
}

.featured-project-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(230px, 24vw, 300px);
  overflow: hidden;
  isolation: isolate;
}

.featured-project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .48);
}

.featured-project-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(.72) contrast(.96);
}

.featured-project-hero--argo > img {
  object-position: center 54%;
}

.featured-project-title {
  display: grid;
  justify-items: center;
  gap: 30px;
  width: min(100% - 36px, 1120px);
  padding: 34px 0 28px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .46);
}

.featured-project-title h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 66px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: .18em;
}

.featured-project-title p {
  margin: 0;
  font-size: clamp(10px, .9vw, 13px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .62em;
}

.featured-project-body {
  display: grid;
  gap: clamp(38px, 4.8vw, 62px);
  justify-items: center;
  padding: clamp(58px, 7vw, 82px) 0 clamp(70px, 8vw, 112px);
}

.featured-project-copy {
  display: grid;
  justify-items: center;
  color: #4f5662;
  text-align: center;
}

.featured-project-copy p {
  margin: 0 0 18px;
  color: #111;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .62em;
  text-transform: uppercase;
}

.featured-project-copy span {
  display: block;
  margin: 0;
  font-size: clamp(12px, .9vw, 14px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: .18em;
}

.featured-project-image {
  width: min(1028px, calc(100% - 48px));
  margin: 0;
  overflow: hidden;
  background: var(--surface-muted);
}

.featured-project-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1028 / 578;
  object-fit: cover;
}

.clients-showcase {
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0;
  color: #202320;
  background: var(--surface);
}

.clients-showcase-heading {
  display: grid;
  gap: 14px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(34px, 4vw, 58px);
}

.clients-showcase-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.8vw, 70px);
  font-weight: 600;
  line-height: 1.02;
}

.client-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.client-marquee + .client-marquee {
  margin-top: 22px;
}

.client-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  width: max-content;
  margin: 0;
  padding: 0 clamp(18px, 2vw, 34px) 0 0;
  list-style: none;
  animation: client-logo-flow 42s linear infinite;
}

.client-marquee-reverse .client-marquee-track {
  animation-direction: reverse;
}

.client-marquee-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: clamp(138px, 12vw, 184px);
  height: clamp(70px, 6vw, 88px);
  padding: 16px 22px;
  background: #f5f5f2;
  border: 1px solid rgba(32, 35, 32, .08);
  border-radius: 6px;
}

/* Categorias de obras da home */
.sector-showcase {
  padding: clamp(82px, 9vw, 140px) 0 clamp(94px, 10vw, 150px);
  color: #202320;
  background: var(--surface);
}

.sector-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: end;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto clamp(48px, 6vw, 82px);
}

.sector-showcase-heading h2 {
  max-width: 850px;
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 600;
  line-height: 1.02;
}

.sector-showcase-heading > p {
  margin: 0 0 8px;
  color: rgba(32, 35, 32, .7);
  font-size: 16px;
  line-height: 1.78;
}

.category-carousels {
  display: grid;
  gap: clamp(38px, 5vw, 72px);
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
}

.category-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .74fr) minmax(0, 1.26fr);
  min-height: clamp(430px, 38vw, 560px);
  min-width: 0;
  padding-left: clamp(28px, 3.4vw, 52px);
  overflow: hidden;
  color: #fff;
  background: #1d211f;
}

.category-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(28px, 3.4vw, 52px);
  width: 74px;
  height: 4px;
  background: #e14a50;
}

.category-carousel:nth-child(even) {
  background: #282e2b;
}

.category-carousel-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
  min-width: 0;
  padding: clamp(52px, 5vw, 78px) clamp(34px, 4vw, 68px) clamp(42px, 4vw, 64px) 0;
}

.category-carousel-header h3 {
  max-width: 9.4em;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 3.25vw, 56px);
  font-weight: 500;
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.category-carousel-header h3[id="categoryPesquisa"] {
  max-width: 10.5em;
  font-size: clamp(30px, 2.4vw, 40px);
  line-height: 1.08;
}

.category-carousel-header h3[id="categoryAgro"] {
  font-size: clamp(34px, 3.35vw, 52px);
  white-space: nowrap;
}

.category-carousel-header h3[id="categoryImobiliario"],
.category-carousel-header h3[id="categoryAeroportuario"] {
  max-width: 11em;
  font-size: clamp(32px, 2.45vw, 44px);
  line-height: 1.08;
  white-space: normal;
}

.category-carousel-header p {
  max-width: 310px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.6;
}

.category-carousel-header > div:first-child::before {
  content: "Obras selecionadas";
  display: block;
  margin-bottom: 18px;
  color: #e14a50;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.category-carousel-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  align-self: flex-start;
}

.category-carousel-controls button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #fff;
  font-size: 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, opacity .2s ease;
}

.category-carousel-controls button:hover,
.category-carousel-controls button:focus-visible {
  color: #202320;
  background: #fff;
}

.category-carousel-controls button:disabled {
  opacity: .26;
  cursor: default;
}

.category-carousel-viewport {
  min-width: 0;
  height: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.category-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.category-carousel-track {
  display: flex;
  gap: 18px;
  height: 100%;
  width: 100%;
}

.work-card {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
  color: #fff;
  background: #1d211f;
  scroll-snap-align: start;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 18, 16, .9), rgba(15, 18, 16, .02) 65%);
  pointer-events: none;
}

.work-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.work-card:hover > img {
  transform: scale(1.025);
}

.work-card > div:last-child {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3vw, 38px);
  bottom: clamp(22px, 3vw, 36px);
  left: clamp(22px, 3vw, 38px);
}

.work-card span {
  display: none;
}

.work-card h4 {
  max-width: 82%;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500;
  line-height: 1.04;
}

.work-card h4 + p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.work-card-brand {
  background: #e8ebe8;
}

.work-card-brand-dark {
  background: #0d2b40;
}

.work-card-brand::after {
  background: linear-gradient(0deg, rgba(20, 24, 21, .92), transparent 72%);
}

.work-card-brand > img {
  width: 52%;
  height: 55%;
  margin: 10% auto 0;
  object-fit: contain;
}

.work-card-logo-only::after,
.work-card-logo-only > div {
  display: none;
}

.work-card-logo-only > img {
  width: 62%;
  height: 62%;
  margin: auto;
}

.work-card-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .08);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(72px, 10vw, 150px);
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .04), transparent),
    #242a27;
}

.sector-showcase-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1380px, calc(100% - 48px));
  margin: clamp(34px, 4vw, 58px) auto 0;
  padding: 24px 0;
  color: #202320;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-top: 1px solid rgba(32, 35, 32, .22);
  border-bottom: 1px solid rgba(32, 35, 32, .22);
}

.sector-showcase-link span {
  font-size: 22px;
}

@media (max-width: 1020px) {
  .sector-showcase-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(100% - 48px, 820px);
  }

  .sector-showcase-heading > p {
    max-width: 650px;
  }

  .category-carousel-header {
    align-items: flex-start;
  }

  .category-carousel {
    grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  }

  .work-card {
    flex-basis: 100%;
  }
}

@media (max-width: 640px) {
  .sector-showcase {
    padding: 68px 0 82px;
  }

  .sector-showcase-heading {
    width: calc(100% - 32px);
    margin-bottom: 36px;
  }

  .sector-showcase-heading h2 {
    font-size: 42px;
  }

  .category-carousels,
  .sector-showcase-link {
    width: 100%;
  }

  .category-carousels {
    gap: 24px;
  }

  .category-carousel {
    display: block;
    min-height: 0;
    padding: 30px 0 22px;
  }

  .category-carousel::before {
    left: 20px;
  }

  .category-carousel-header {
    flex-direction: row;
    align-items: flex-end;
    gap: 18px;
    padding: 30px 20px 24px;
  }

  .category-carousel-header h3 {
    font-size: 38px;
  }

  .category-carousel-header h3[id="categoryPesquisa"] {
    font-size: 31px;
  }

  .category-carousel-header h3[id="categoryAgro"] {
    font-size: 34px;
  }

  .category-carousel-header h3[id="categoryImobiliario"],
  .category-carousel-header h3[id="categoryAeroportuario"] {
    font-size: 34px;
  }

  .category-carousel-header p {
    display: none;
  }

  .category-carousel-header > div:first-child::before {
    margin-bottom: 12px;
  }

  .category-carousel-controls {
    align-self: flex-end;
  }

  .category-carousel-controls button {
    width: 42px;
    height: 42px;
  }

  .category-carousel-track {
    gap: 10px;
    height: 390px;
    padding: 0 20px;
  }

  .work-card {
    flex-basis: calc(100% - 40px);
    height: 100%;
  }

  .sector-showcase-link {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.client-marquee-item img {
  display: block;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

@keyframes client-logo-flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 20px 24px;
  }

  .nav-left {
    display: none;
  }

  .nav-right {
    justify-content: flex-end;
    gap: 18px;
  }

  .site-header .icon-button {
    position: absolute;
    top: 50%;
    right: 78px;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }

  .nav-right a:nth-child(-n+2) {
    display: none;
  }

  .nav-right > .nav-dropdown {
    display: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    position: absolute;
    top: 50%;
    right: 24px;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 0;
    cursor: pointer;
    transform: translateY(-50%);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .24s ease, opacity .18s ease;
  }

  .site-header.is-menu-open {
    color: #111;
    background: var(--surface);
    box-shadow: 0 1px 0 rgba(17, 17, 17, .08);
  }

  .site-header.is-menu-open .naldi-wordmark img {
    filter: none;
  }

  .site-header.is-menu-open .icon-button {
    color: #111;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

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

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-navigation {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: block;
    max-height: calc(100dvh - 82px);
    padding: 24px clamp(24px, 6vw, 54px) 36px;
    overflow-y: auto;
    color: #171917;
    background: var(--surface);
    border-top: 1px solid rgba(17, 17, 17, .08);
    box-shadow: 0 24px 40px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }

  .site-header.is-menu-open .mobile-navigation {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-navigation-main {
    display: grid;
  }

  .mobile-navigation-main a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    color: inherit;
    font-size: clamp(24px, 5vw, 34px);
    font-family: "Playfair Display", serif;
    font-weight: 500;
    text-transform: none;
    border-bottom: 1px solid rgba(17, 17, 17, .12);
  }

  .mobile-navigation-main a::after {
    content: "\2192";
    color: var(--leaf-dark);
    font-family: "Inter", sans-serif;
    font-size: 22px;
  }

  .mobile-navigation-contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 24px;
    padding-top: 26px;
  }

  .mobile-navigation-contact p {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    color: #777c76;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .mobile-navigation-contact a,
  .mobile-navigation-social a {
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: none;
  }

  .mobile-navigation-social {
    display: flex;
    gap: 22px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, .08);
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 100vh;
  }

  .clients-track {
    overflow-x: visible;
  }

  .institutional-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .institutional-intro h2 {
    max-width: none;
  }

  .clients-showcase-heading {
    width: min(100% - 48px, 760px);
  }

  .featured-project-title p,
  .featured-project-copy p,
  .featured-project-copy span {
    letter-spacing: .32em;
  }

}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
    padding: 16px 18px;
  }

  .site-header .icon-button {
    right: 62px;
    width: 38px;
    height: 38px;
  }

  .mobile-menu-toggle {
    right: 14px;
    width: 42px;
    height: 42px;
  }

  .mobile-navigation {
    top: 78px;
    max-height: calc(100dvh - 78px);
    padding: 14px 20px 30px;
  }

  .mobile-navigation-main a {
    min-height: 54px;
    font-size: 25px;
  }

  .mobile-navigation-contact {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .naldi-wordmark {
    left: 18px;
    gap: 7px;
    width: clamp(150px, 46vw, 180px);
    height: 44px;
  }

  .naldi-wordmark-symbol {
    width: 38px;
    height: 38px;
  }

  .naldi-wordmark-text {
    width: auto;
    max-width: calc(100% - 45px);
    height: 38px;
  }

  .social-link {
    width: 16px;
    height: 16px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .nav-right a {
    display: none;
  }

  .nav-right .naldi-wordmark {
    display: inline-flex;
  }

  .brand {
    display: none;
  }

  .hero-content {
    gap: 18px;
    padding-top: 112px;
  }

  .hero-content h1 {
    max-width: 12ch;
  }

  .green-wall-large {
    left: 0;
    width: 82%;
  }

  .green-wall-low {
    left: 0;
    width: 78%;
  }

  .tree-one {
    left: 38%;
  }

  .tree-two {
    right: 8%;
  }

  .storefront {
    left: 32%;
    width: 48%;
  }

  .slider-controls {
    bottom: 28px;
  }

  .clients-strip {
    bottom: 18px;
  }

  .client-logo {
    width: 76px;
    height: 42px;
  }

  .client-logo-wide {
    width: 124px;
  }

  .institutional-shell {
    width: min(100% - 36px, 520px);
    padding: 62px 0 72px;
  }

  .institutional-intro {
    gap: 16px;
  }

  .institutional-intro h2 {
    font-size: 42px;
  }

  .institutional-intro p,
  .pillar-item p {
    font-size: 16px;
    line-height: 1.76;
  }

  .institutional-pillars {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pillar-item {
    gap: 13px;
    padding-top: 20px;
  }

  .pillar-item h3 {
    font-size: 32px;
  }

  .featured-project-hero {
    min-height: 220px;
  }

  .featured-project-title {
    gap: 18px;
    width: min(100% - 28px, 520px);
  }

  .featured-project-title h2 {
    font-size: 36px;
    letter-spacing: .1em;
  }

  .featured-project-title p {
    max-width: 330px;
    letter-spacing: .24em;
  }

  .featured-project-body {
    gap: 34px;
    padding: 46px 0 62px;
  }

  .featured-project-copy {
    width: min(100% - 34px, 460px);
  }

  .featured-project-copy p {
    margin-bottom: 14px;
    letter-spacing: .28em;
  }

  .featured-project-copy span {
    letter-spacing: .1em;
  }

  .featured-project-image {
    width: min(100% - 34px, 520px);
  }

  .featured-project-image img {
    aspect-ratio: 4 / 3;
  }

  .clients-showcase {
    padding: 58px 0 70px;
  }

  .clients-showcase-heading {
    width: min(100% - 36px, 520px);
    margin-bottom: 30px;
  }

  .clients-showcase-heading h2 {
    font-size: 38px;
  }

  .client-marquee + .client-marquee {
    margin-top: 16px;
  }

  .client-marquee-track {
    animation-duration: 32s;
  }

  .client-marquee-item {
    width: 134px;
    height: 68px;
    padding: 14px 18px;
  }

  .client-marquee-item img {
    max-height: 42px;
  }

}

/* Pagina de obras */
.projects-page {
  background: var(--surface);
}

.gallery-open {
  overflow: hidden;
}

.projects-shell {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.projects-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(820px, 100vh);
  overflow: hidden;
  color: #fff;
  background: #202220;
}

.projects-hero > img,
.projects-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.projects-hero > img {
  object-fit: cover;
  object-position: center 58%;
  animation: projects-hero-reveal 1.2s ease both;
}

.projects-hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 17, 16, .72) 0%, rgba(15, 17, 16, .34) 50%, rgba(15, 17, 16, .12) 78%),
    linear-gradient(0deg, rgba(15, 17, 16, .62), transparent 55%);
}

.projects-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(780px, calc(100% - 64px));
  margin: 0 0 clamp(100px, 13vh, 150px) clamp(32px, 8vw, 150px);
}

.projects-hero-content p,
.project-card-copy small,
.project-card-copy em {
  margin: 0;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.projects-hero-content h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(44px, 5.7vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}

.projects-hero-content > span {
  max-width: 660px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.8;
  letter-spacing: .04em;
}

.projects-hero-scroll {
  position: absolute;
  right: clamp(32px, 6vw, 100px);
  bottom: 52px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.projects-hero-scroll svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.projects-portfolio {
  padding: clamp(88px, 10vw, 150px) 0 clamp(100px, 12vw, 170px);
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: end;
  gap: 64px;
}

.projects-heading h2,
.projects-contact h2 {
  margin: 12px 0 0;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}

.projects-heading > p {
  margin: 0 0 8px;
  color: #65635e;
  font-size: 15px;
  line-height: 1.8;
}

.projects-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 58px 0 38px;
}

.project-filter {
  padding: 12px 20px;
  color: #343432;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(26, 27, 25, .2);
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.project-filter:hover,
.project-filter:focus-visible,
.project-filter.is-active {
  color: #fff;
  background: #b91f2b;
  border-color: #b91f2b;
}

.projects-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 330px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  min-width: 0;
  transition: opacity .35s ease, transform .35s ease;
}

.project-card-wide {
  grid-column: span 2;
}

.project-card-tall {
  grid-row: span 2;
}

.project-card.is-hidden {
  display: none;
}

.project-card-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background: #242624;
  border: 0;
  cursor: pointer;
}

.project-card-button > img,
.project-card-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-card-button > img {
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .65, .3, 1), filter .35s ease;
}

.project-card-overlay {
  background: linear-gradient(0deg, rgba(12, 14, 13, .82), rgba(12, 14, 13, .06) 70%);
  transition: background .35s ease;
}

.project-card-copy {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.project-card-copy strong {
  padding-right: 0;
  font-size: clamp(24px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.project-card-copy em {
  position: static;
  justify-self: start;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}

.project-card-button:hover > img,
.project-card-button:focus-visible > img {
  filter: saturate(.88);
  transform: scale(1.045);
}

.project-card-button:hover .project-card-copy em,
.project-card-button:focus-visible .project-card-copy em {
  opacity: 1;
  transform: none;
}

.projects-contact {
  color: #fff;
  background: #202220;
}

.projects-contact-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  min-height: 470px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.projects-contact h2 {
  max-width: 760px;
}

.projects-contact-inner > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.projects-contact-inner > a span {
  font-size: 22px;
}

.project-gallery {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 24px;
  color: #1a1d1b;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.project-gallery::backdrop {
  background: rgba(9, 14, 12, .78);
  backdrop-filter: blur(7px);
}

.project-gallery[open] {
  display: grid;
  place-items: center;
}

.project-gallery-window {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #f3f2ee;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .38);
  scrollbar-color: rgba(26, 29, 27, .35) transparent;
  scrollbar-width: thin;
}

.project-gallery-close {
  position: sticky;
  z-index: 5;
  top: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 22px 22px -68px auto;
  padding: 0 0 3px;
  color: #171a18;
  font: 300 34px/1 Arial, sans-serif;
  background: rgba(243, 242, 238, .92);
  border: 1px solid rgba(23, 26, 24, .5);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.project-gallery-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .82fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  padding: 92px clamp(36px, 4.5vw, 58px) 56px;
}

.project-gallery-lead-image {
  margin: 0;
  overflow: hidden;
  background: #d8d8d3;
}

.project-gallery-image-button {
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  cursor: zoom-in;
}

.project-gallery-image-button::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  content: "Ampliar";
  background: rgba(9, 14, 12, .72);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}

.project-gallery-image-button:hover::after,
.project-gallery-image-button:focus-visible::after {
  opacity: 1;
  transform: none;
}

.project-gallery-image-button:focus-visible {
  box-shadow: inset 0 0 0 3px var(--accent);
}

.project-gallery-lead-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-gallery-intro {
  display: grid;
  gap: 22px;
  align-content: center;
}

.project-gallery-intro > p:first-child {
  margin: 0 0 2px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.project-gallery-intro h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: .98;
}

.project-gallery-intro > p:last-child {
  max-width: 38ch;
  margin: 0;
  color: #5c625f;
  font-size: 15px;
  line-height: 1.65;
}

.project-gallery-grid {
  display: grid;
  gap: 48px;
  padding: 0 clamp(36px, 4.5vw, 58px) 58px;
}

.project-gallery-section {
  display: grid;
  gap: 18px;
}

.project-gallery-section h3 {
  margin: 0;
  padding-top: 4px;
  color: #5c625f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.project-gallery-mosaic {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.project-gallery-item {
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  background: #d8d8d3;
}

.project-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-gallery-item.is-portrait {
  grid-column: span 4;
}

.project-gallery-item.is-portrait img {
  aspect-ratio: 3 / 4;
}

.project-gallery-item.is-wide {
  grid-column: span 12;
}

.project-gallery-item.is-wide img {
  aspect-ratio: 16 / 8.5;
}

.image-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(7, 10, 9, .96);
  border: 0;
  overflow: hidden;
}

.image-lightbox::backdrop {
  background: rgba(7, 10, 9, .96);
}

.image-lightbox[open] {
  display: grid;
  place-items: center;
}

.image-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.image-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0 0 3px;
  color: #fff;
  font: 300 36px/1 Arial, sans-serif;
  background: rgba(7, 10, 9, .68);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  cursor: pointer;
}

@keyframes projects-hero-reveal {
  from {
    opacity: .5;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .projects-shell {
    width: min(100% - 48px, 900px);
  }

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

  .projects-heading > p {
    max-width: 620px;
  }

  .projects-grid {
    grid-auto-rows: 300px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card-tall {
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .projects-shell {
    width: calc(100% - 32px);
  }

  .projects-hero {
    min-height: 760px;
  }

  .projects-hero > img {
    object-position: 58% center;
  }

  .projects-hero-content {
    gap: 18px;
    width: calc(100% - 36px);
    margin: 0 18px 112px;
  }

  .projects-hero-content h1 {
    font-size: 42px;
  }

  .projects-hero-content > span {
    font-size: 17px;
  }

  .projects-hero-scroll {
    right: 18px;
    bottom: 42px;
  }

  .projects-heading h2,
  .projects-contact h2 {
    font-size: 46px;
  }

  .projects-filters {
    flex-wrap: nowrap;
    margin: 42px -16px 28px;
    padding: 0 16px 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .projects-filters::-webkit-scrollbar {
    display: none;
  }

  .project-filter {
    flex: 0 0 auto;
  }

  .projects-grid {
    display: grid;
    grid-auto-rows: 330px;
    grid-template-columns: 1fr;
  }

  .project-card-wide {
    grid-column: auto;
  }

  .projects-contact-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 520px;
  }

  .project-gallery {
    padding: 0;
  }

  .project-gallery-window {
    width: 100%;
    max-height: 100vh;
  }

  .project-gallery-close {
    top: 14px;
    width: 42px;
    height: 42px;
    margin: 14px 14px -56px auto;
  }

  .project-gallery-lead {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 76px 20px 36px;
  }

  .project-gallery-intro {
    gap: 16px;
  }

  .project-gallery-intro h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .project-gallery-grid {
    gap: 36px;
    padding: 0 20px 20px;
  }

  .project-gallery-section {
    gap: 12px;
  }

  .project-gallery-mosaic {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-gallery-item,
  .project-gallery-item.is-portrait,
  .project-gallery-item.is-wide {
    grid-column: 1;
  }

  .project-gallery-item.is-wide img {
    aspect-ratio: 4 / 3;
  }

  .project-gallery-image-button::after {
    right: 8px;
    bottom: 8px;
    opacity: 1;
    transform: none;
  }

  .image-lightbox {
    padding: 58px 10px 10px;
  }

  .image-lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
}

/* Pagina de atuacao */
.work-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header .current-page {
  position: relative;
}

.site-header .current-page:not(.nav-dropdown-trigger)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: currentColor;
}

.site-header .nav-dropdown-trigger.current-page::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: currentColor;
}

.presentation-toggle {
  position: fixed;
  top: 128px;
  right: clamp(18px, 3vw, 42px);
  z-index: 20;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #202320;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(32, 35, 32, .14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.presentation-toggle:hover,
.presentation-toggle:focus-visible {
  color: #fff;
  background: #b91f2b;
  transform: translateY(-2px);
}

.presentation-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.presentation-icon-closed {
  display: none;
}

.presentation-swipe-hint {
  display: none;
}

.presentation-mode {
  overflow: hidden;
}

.presentation-mode .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.presentation-mode .presentation-toggle {
  top: 24px;
  color: #fff;
  background: rgba(20, 23, 21, .78);
  border-color: rgba(255, 255, 255, .25);
}

.presentation-mode .presentation-icon-open {
  display: none;
}

.presentation-mode .presentation-icon-closed {
  display: block;
}

.presentation-mode main {
  height: 100vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.presentation-mode main::-webkit-scrollbar {
  display: none;
}

.presentation-mode main > section:not(.work-methods),
.presentation-mode .work-method {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.presentation-mode main > section:not(.work-methods) {
  min-height: 100vh;
}

.presentation-mode .work-hero {
  min-height: 100vh;
}

.presentation-mode .work-intro,
.presentation-mode .work-transparency,
.presentation-mode .work-capacity {
  display: grid;
  align-items: center;
}

.presentation-mode .work-shell {
  width: min(1540px, calc(100% - 120px));
}

.presentation-mode .work-intro-grid {
  grid-template-columns: minmax(400px, .9fr) minmax(390px, .86fr) minmax(450px, 1.08fr);
  gap: clamp(44px, 4vw, 76px);
  align-items: center;
}

.presentation-mode .work-intro h2 {
  max-width: 520px;
  font-size: clamp(58px, 3.8vw, 72px);
}

.presentation-mode .work-intro-copy p {
  font-size: clamp(20px, 1.35vw, 24px);
  line-height: 1.62;
}

.presentation-mode .work-intro-visual {
  grid-column: auto;
  height: min(68vh, 680px);
}

.presentation-mode .work-methods {
  padding: 0;
}

.presentation-mode .work-methods > .work-shell > .work-section-heading {
  display: none;
}

.presentation-mode .work-method {
  grid-template-columns: 64px minmax(250px, .64fr) minmax(430px, 1.12fr) minmax(390px, .92fr);
  gap: clamp(30px, 3vw, 56px);
  min-height: 100vh;
  align-items: center;
  padding: clamp(64px, 7vh, 90px) 0;
}

.presentation-mode .work-method-title h3 {
  font-size: clamp(54px, 4vw, 76px);
}

.presentation-mode .work-method-title p {
  font-size: 13px;
}

.presentation-mode .work-method-copy > p {
  font-size: clamp(20px, 1.3vw, 24px);
  line-height: 1.58;
}

.presentation-mode .work-method-copy li {
  font-size: clamp(16px, 1vw, 19px);
}

.presentation-mode .work-method-facts strong {
  font-size: clamp(15px, .9vw, 17px);
}

.presentation-mode .work-method-facts span {
  font-size: 11px;
}

.presentation-mode .work-method-image {
  height: min(72vh, 720px);
}

.work-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(76vh, 760px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.work-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 18, 16, .35), rgba(14, 18, 16, .62));
}

.work-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-hero-content {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(900px, calc(100% - 48px));
  padding-top: 100px;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
}

.work-hero-content p,
.work-hero-content span {
  margin: 0;
}

.work-hero-content p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.work-hero-content h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 500;
  line-height: 1.12;
}

.work-hero-content span {
  max-width: 630px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
}

.work-intro {
  padding: clamp(78px, 9vw, 130px) 0;
  background: var(--surface);
}

.work-intro-grid,
.work-capacity-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.work-intro h2,
.work-section-heading h2,
.work-management-content h2,
.work-security-copy h2,
.work-capacity h2 {
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}

.work-intro h2 {
  max-width: 570px;
  font-size: clamp(42px, 5vw, 72px);
}

.work-intro-copy {
  display: grid;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(32, 35, 32, .18);
}

.work-intro-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(32, 35, 32, .14);
}

.work-intro-summary span {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: rgba(32, 35, 32, .58);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.work-intro-summary strong {
  color: #b91f2b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 600;
  line-height: 1;
}

.work-intro-visual {
  grid-column: 1 / -1;
  width: 100%;
  height: clamp(300px, 38vw, 500px);
  margin: 0;
  overflow: hidden;
}

.work-intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-intro-copy p,
.work-management-content > p,
.work-security-copy > p,
.work-capacity-grid > div:last-child > p {
  margin: 0;
  color: rgba(32, 35, 32, .74);
  font-size: clamp(17px, 1.18vw, 19px);
  line-height: 1.82;
}

.work-methods {
  padding: clamp(74px, 8vw, 116px) 0;
  color: #f7f7f4;
  background: #1d211f;
}

.work-section-heading {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.work-section-heading h2 {
  font-size: clamp(42px, 5.2vw, 74px);
}

.work-methods .section-kicker {
  color: #e14a50;
}

.work-method {
  display: grid;
  grid-template-columns: 60px minmax(190px, .62fr) minmax(300px, 1.1fr) minmax(260px, .82fr);
  gap: clamp(22px, 2.8vw, 44px);
  align-items: start;
  padding: clamp(36px, 4vw, 54px) 0;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.work-method-number {
  color: #e14a50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.work-method-title p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.work-method-title h3 {
  max-width: 420px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.work-method-copy > p {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .77);
  font-size: 17px;
  line-height: 1.72;
}

.work-method-copy ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-method-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.55;
}

.work-method-copy li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 7px;
  height: 1px;
  background: #e14a50;
}

.work-method-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.work-method-facts > div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.work-method-facts span {
  color: #e14a50;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-method-facts strong {
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.work-method-image {
  width: 100%;
  height: clamp(260px, 28vw, 390px);
  margin: 0;
  overflow: hidden;
  background: #303633;
}

.work-method-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.work-method:hover .work-method-image img {
  transform: scale(1.025);
}

.work-comparison {
  padding: clamp(78px, 8vw, 118px) 0;
  color: #202320;
  background: var(--surface-muted);
}

.work-comparison-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(46px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.work-comparison-heading h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 4.7vw, 68px);
  font-weight: 600;
  line-height: 1.02;
}

.work-comparison-heading > p {
  margin: 0;
  padding-top: 22px;
  color: rgba(32, 35, 32, .7);
  font-size: 17px;
  line-height: 1.72;
  border-top: 1px solid rgba(32, 35, 32, .18);
}

.work-comparison-table {
  border-top: 1px solid rgba(32, 35, 32, .24);
}

.work-comparison-row {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) repeat(3, minmax(190px, 1fr));
  gap: clamp(22px, 3vw, 44px);
  padding: 24px 0;
  border-bottom: 1px solid rgba(32, 35, 32, .16);
}

.work-comparison-row > span {
  color: #b91f2b;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.work-comparison-row > p {
  margin: 0;
  color: rgba(32, 35, 32, .7);
  font-size: 14px;
  line-height: 1.62;
}

.work-comparison-header {
  align-items: end;
  padding-top: 18px;
  padding-bottom: 18px;
}

.work-comparison-header strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 600;
  line-height: 1.05;
}

.presentation-mode .work-comparison {
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: clamp(48px, 6vh, 78px) 0;
}

.presentation-mode .work-comparison-heading {
  margin-bottom: clamp(30px, 4vh, 48px);
}

.presentation-mode .work-comparison-heading h2 {
  font-size: clamp(52px, 3.8vw, 68px);
}

.presentation-mode .work-comparison-heading > p {
  font-size: clamp(18px, 1.1vw, 21px);
}

.presentation-mode .work-comparison-row {
  padding: clamp(18px, 2.2vh, 26px) 0;
}

.presentation-mode .work-comparison-row > p {
  font-size: clamp(15px, .95vw, 18px);
}

.work-management {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  min-height: 720px;
  background: var(--surface-muted);
}

.work-management-image {
  min-height: 620px;
}

.work-management-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-management-content {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(64px, 8vw, 128px);
}

.work-management-content h2 {
  max-width: 650px;
  margin-top: -2px;
  font-size: clamp(42px, 4.5vw, 68px);
}

.work-management-content > p {
  max-width: 650px;
}

.work-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 10px;
  border-top: 1px solid rgba(32, 35, 32, .2);
}

.work-disciplines span {
  padding: 15px 20px 15px 0;
  margin-right: 20px;
  color: #343936;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.work-transparency {
  padding: clamp(78px, 9vw, 132px) 0;
  background: var(--surface);
}

.work-transparency-grid {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.2fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: start;
}

.work-transparency .work-section-heading {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}

.work-transparency-visual {
  width: 100%;
  height: 280px;
  margin: 34px 0 0;
  overflow: hidden;
  background: var(--surface-muted);
}

.work-transparency-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-principles {
  display: grid;
}

.work-principles article {
  display: grid;
  grid-template-columns: 54px minmax(170px, .75fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(32, 35, 32, .18);
}

.work-principles span {
  color: #b91f2b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.work-principles h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.08;
}

.work-principles p {
  margin: 0;
  color: rgba(32, 35, 32, .67);
  font-size: 15px;
  line-height: 1.72;
}

.work-security {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
  align-items: stretch;
  color: #fff;
  background: #242927;
}

.work-security-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(70px, 9vw, 140px) clamp(48px, 8vw, 130px);
}

.work-security-copy .section-kicker {
  color: #e14a50;
}

.work-security-copy h2 {
  max-width: 700px;
  margin-top: 0;
  font-size: clamp(42px, 5vw, 72px);
}

.work-security-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, .68);
}

.work-security-image {
  min-height: 650px;
  margin: 0;
}

.work-security-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-capacity {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--surface);
}

.work-capacity h2 {
  max-width: 620px;
  font-size: clamp(42px, 5vw, 72px);
}

.work-capacity-grid > div:last-child {
  display: grid;
  align-content: start;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(32, 35, 32, .18);
}

.work-capacity-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
}

.work-capacity-points span {
  padding: 14px 0;
  color: #343936;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(32, 35, 32, .14);
}

.work-capacity-visual {
  grid-column: 1 / -1;
  width: 100%;
  height: clamp(300px, 34vw, 470px);
  margin: 10px 0 0;
  overflow: hidden;
  background: var(--surface-muted);
}

.work-capacity-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.presentation-mode .work-capacity-visual {
  height: min(42vh, 430px);
}

.work-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 14px;
  min-height: 48px;
  padding: 0 20px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #b91f2b;
}

.work-link::after {
  content: "->";
  font-size: 17px;
  font-weight: 400;
}

@media (max-width: 1500px) {
  .presentation-mode .work-intro-grid {
    grid-template-columns: minmax(350px, .9fr) minmax(330px, .86fr) minmax(360px, 1fr);
    gap: 36px;
  }

  .presentation-mode .work-intro h2 {
    font-size: clamp(56px, 4.2vw, 70px);
  }

  .presentation-mode .work-method {
    grid-template-columns: 50px minmax(220px, .62fr) minmax(380px, 1.1fr) minmax(330px, .88fr);
    gap: 30px;
  }
}

@media (max-width: 1020px) {
  .work-intro-grid,
  .work-transparency-grid,
  .work-capacity-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .work-method {
    grid-template-columns: 60px minmax(210px, .75fr) minmax(0, 1.25fr);
  }

  .work-method-image {
    grid-column: 2 / -1;
    height: 420px;
  }

  .work-comparison-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .work-comparison-table {
    overflow-x: auto;
  }

  .work-comparison-row {
    width: 920px;
  }

  .work-management,
  .work-security {
    grid-template-columns: 1fr;
  }

  .work-management-image {
    min-height: 520px;
  }

  .work-security-image {
    min-height: 520px;
    max-height: 680px;
  }

  .work-transparency .work-section-heading {
    position: static;
  }

  .presentation-mode .work-intro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .presentation-mode .work-intro-visual {
    grid-column: 1 / -1;
    height: 38vh;
  }

  .presentation-mode .work-method {
    grid-template-columns: 50px minmax(200px, .7fr) minmax(0, 1.3fr);
  }

  .presentation-mode .work-method-image {
    grid-column: 2 / -1;
    height: 38vh;
  }
}

@media (max-width: 640px) {
  .presentation-toggle {
    top: 96px;
    right: 18px;
    width: 42px;
    height: 42px;
  }

  .presentation-mode main {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: hidden;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
    touch-action: none;
  }

  .presentation-mode main > section:not(.work-methods),
  .presentation-mode .work-method {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .presentation-mode .presentation-toggle {
    top: max(18px, env(safe-area-inset-top));
    right: 18px;
  }

  .presentation-mode .presentation-swipe-hint {
    position: fixed;
    bottom: max(18px, env(safe-area-inset-bottom));
    left: 50%;
    z-index: 19;
    display: grid;
    justify-items: center;
    gap: 3px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .7));
    pointer-events: none;
    transform: translateX(-50%);
    animation: presentation-swipe-hint 1.8s ease-in-out infinite;
  }

  .presentation-swipe-hint svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .presentation-mode.presentation-interacted .presentation-swipe-hint {
    display: none;
  }

  .presentation-mode main img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
  }

  .presentation-mode .work-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .presentation-mode .work-hero-content {
    padding-top: 0;
  }

  .presentation-mode .work-hero-content h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .presentation-mode .work-intro,
  .presentation-mode .work-transparency,
  .presentation-mode .work-capacity {
    display: block;
    padding: 68px 0 24px;
  }

  .presentation-mode .work-shell {
    width: min(100% - 36px, 520px);
  }

  .presentation-mode .work-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .presentation-mode .work-intro h2,
  .presentation-mode .work-section-heading h2,
  .presentation-mode .work-management-content h2,
  .presentation-mode .work-security-copy h2,
  .presentation-mode .work-capacity h2 {
    font-size: clamp(31px, 9.4vw, 40px);
  }

  .presentation-mode .work-intro-copy {
    gap: 8px;
  }

  .presentation-mode .work-intro-copy p,
  .presentation-mode .work-management-content > p,
  .presentation-mode .work-security-copy > p,
  .presentation-mode .work-capacity-grid > div:last-child > p {
    font-size: 13px;
    line-height: 1.5;
  }

  .presentation-mode .work-intro-summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 4px;
  }

  .presentation-mode .work-intro-summary span {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 8px 6px;
    font-size: 9px;
  }

  .presentation-mode .work-intro-summary strong {
    font-size: 22px;
  }

  .presentation-mode .work-intro-visual {
    grid-column: 1;
    height: min(27dvh, 220px);
  }

  .presentation-mode .work-methods {
    overflow: visible;
  }

  .presentation-mode .work-method {
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto minmax(150px, 1fr);
    gap: 10px 8px;
    padding: 68px 18px 22px;
  }

  .presentation-mode .work-method-number {
    font-size: 12px;
  }

  .presentation-mode .work-method-title {
    grid-column: 2;
  }

  .presentation-mode .work-method-title h3 {
    font-size: clamp(32px, 9.8vw, 42px);
  }

  .presentation-mode .work-method-copy {
    grid-column: 1 / -1;
  }

  .presentation-mode .work-method-copy > p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .presentation-mode .work-method-copy ul {
    gap: 5px;
  }

  .presentation-mode .work-method-copy li {
    padding-left: 15px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .presentation-mode .work-method-facts {
    display: none;
  }

  .presentation-mode .work-method-image {
    grid-column: 1 / -1;
    height: 100%;
    min-height: 150px;
  }

  .presentation-mode .work-comparison {
    display: block;
    padding: 68px 0 20px;
  }

  .presentation-mode .work-comparison-heading {
    gap: 8px;
    margin-bottom: 12px;
  }

  .presentation-mode .work-comparison-heading h2 {
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .presentation-mode .work-comparison-heading > p {
    display: none;
  }

  .presentation-mode .work-comparison-table {
    max-height: calc(100dvh - 190px);
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
  }

  .presentation-mode .work-comparison-row {
    grid-template-columns: 110px repeat(3, 190px);
    width: 680px;
    padding: 9px 0;
  }

  .presentation-mode .work-comparison-header strong {
    font-size: 17px;
  }

  .presentation-mode .work-comparison-row > span,
  .presentation-mode .work-comparison-row > p {
    font-size: 10px;
    line-height: 1.3;
  }

  .presentation-mode .work-management,
  .presentation-mode .work-security {
    grid-template-columns: 1fr;
    grid-template-rows: 38dvh 1fr;
  }

  .presentation-mode .work-management-image,
  .presentation-mode .work-security-image {
    min-height: 0;
    height: 38dvh;
  }

  .presentation-mode .work-management-content,
  .presentation-mode .work-security-copy {
    align-content: center;
    padding: 40px 18px 28px;
  }

  .presentation-mode .work-disciplines {
    gap: 6px;
    margin-top: 12px;
  }

  .presentation-mode .work-disciplines span {
    padding: 8px 10px;
    font-size: 9px;
  }

  .presentation-mode .work-transparency-grid,
  .presentation-mode .work-capacity-grid {
    gap: 14px;
  }

  .presentation-mode .work-transparency .work-section-heading {
    display: grid;
    gap: 8px;
  }

  .presentation-mode .work-transparency-visual {
    height: min(19dvh, 155px);
  }

  .presentation-mode .work-principles {
    gap: 0;
  }

  .presentation-mode .work-principles article {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 5px 8px;
    padding: 9px 0;
  }

  .presentation-mode .work-principles h3 {
    font-size: 18px;
  }

  .presentation-mode .work-principles p {
    grid-column: 2;
    font-size: 11px;
    line-height: 1.35;
  }

  .presentation-mode .work-capacity-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .presentation-mode .work-capacity-grid > div:last-child {
    gap: 16px;
  }

  .presentation-mode .work-capacity-points {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .presentation-mode .work-capacity-points span {
    padding: 10px 0;
    font-size: 10px;
  }

  .presentation-mode .work-link {
    min-height: 44px;
  }

  @keyframes presentation-swipe-hint {
    0%,
    100% {
      opacity: .55;
      transform: translate(-50%, 4px);
    }

    50% {
      opacity: 1;
      transform: translate(-50%, -4px);
    }
  }

  .work-shell {
    width: min(100% - 36px, 520px);
  }

  .work-hero {
    min-height: 650px;
  }

  .work-hero-content {
    width: min(100% - 36px, 520px);
    padding-top: 72px;
  }

  .work-hero-content h1 {
    font-size: 48px;
  }

  .work-intro {
    padding: 64px 0 72px;
  }

  .work-intro h2,
  .work-section-heading h2,
  .work-management-content h2,
  .work-security-copy h2,
  .work-capacity h2 {
    font-size: 40px;
  }

  .work-intro-copy p,
  .work-management-content > p,
  .work-security-copy > p,
  .work-capacity-grid > div:last-child > p {
    font-size: 16px;
    line-height: 1.72;
  }

  .work-intro-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-intro-summary span {
    grid-template-columns: 64px 1fr;
    align-items: baseline;
  }

  .work-intro-visual {
    height: 300px;
  }

  .work-methods {
    padding: 62px 0 72px;
  }

  .work-section-heading {
    margin-bottom: 38px;
  }

  .work-method {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 20px 12px;
    padding: 34px 0;
  }

  .work-method-title {
    grid-column: 2;
  }

  .work-method-copy {
    grid-column: 2;
  }

  .work-method-image {
    grid-column: 1 / -1;
    height: 300px;
  }

  .work-method-title h3 {
    font-size: 36px;
  }

  .work-method-copy > p {
    font-size: 16px;
  }

  .work-method-facts {
    grid-template-columns: 1fr;
  }

  .work-comparison {
    padding: 62px 0 72px;
  }

  .work-comparison-heading h2 {
    font-size: 40px;
  }

  .work-comparison-row {
    grid-template-columns: 135px repeat(3, 220px);
    width: 870px;
  }

  .work-management-image {
    min-height: 440px;
  }

  .work-management-content,
  .work-security-copy {
    padding: 58px 18px 66px;
  }

  .work-transparency {
    padding: 64px 0 72px;
  }

  .work-principles article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .work-principles p {
    grid-column: 2;
  }

  .work-transparency-visual {
    height: 240px;
  }

  .work-security-image {
    min-height: 480px;
  }

  .work-capacity {
    padding: 64px 0 76px;
  }

  .work-capacity-points {
    grid-template-columns: 1fr;
  }

  .work-capacity-visual {
    height: 300px;
  }
}

@media (max-width: 640px) and (max-height: 700px) {
  .presentation-mode .work-intro,
  .presentation-mode .work-transparency,
  .presentation-mode .work-capacity,
  .presentation-mode .work-comparison {
    padding-top: 54px;
    padding-bottom: 14px;
  }

  .presentation-mode .work-intro-grid {
    gap: 9px;
  }

  .presentation-mode .work-intro h2,
  .presentation-mode .work-section-heading h2,
  .presentation-mode .work-management-content h2,
  .presentation-mode .work-security-copy h2,
  .presentation-mode .work-capacity h2 {
    font-size: clamp(27px, 8.5vw, 34px);
  }

  .presentation-mode .work-intro-copy {
    gap: 5px;
  }

  .presentation-mode .work-intro-copy p,
  .presentation-mode .work-management-content > p,
  .presentation-mode .work-security-copy > p,
  .presentation-mode .work-capacity-grid > div:last-child > p {
    font-size: 11.5px;
    line-height: 1.42;
  }

  .presentation-mode .work-intro-summary span {
    padding: 5px 4px;
  }

  .presentation-mode .work-intro-summary strong {
    font-size: 18px;
  }

  .presentation-mode .work-intro-visual {
    height: min(18dvh, 115px);
  }

  .presentation-mode .work-method {
    grid-template-rows: auto auto minmax(105px, 1fr);
    gap: 6px 8px;
    padding: 54px 18px 14px;
  }

  .presentation-mode .work-method-title h3 {
    font-size: clamp(29px, 8.7vw, 35px);
  }

  .presentation-mode .work-method-copy > p {
    margin-bottom: 6px;
    font-size: 11.5px;
    line-height: 1.35;
  }

  .presentation-mode .work-method-copy ul {
    gap: 3px;
  }

  .presentation-mode .work-method-copy li {
    font-size: 10px;
    line-height: 1.25;
  }

  .presentation-mode .work-method-image {
    min-height: 105px;
  }

  .presentation-mode .work-comparison-heading {
    margin-bottom: 8px;
  }

  .presentation-mode .work-comparison-heading h2 {
    font-size: 28px;
  }

  .presentation-mode .work-comparison-row {
    padding: 6px 0;
  }

  .presentation-mode .work-management-content,
  .presentation-mode .work-security-copy {
    padding: 24px 18px 18px;
  }

  .presentation-mode .work-disciplines {
    margin-top: 8px;
  }
}

/* Pagina do blog */
.blog-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(72vh, 720px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 15, 13, .72) 0%, rgba(10, 15, 13, .28) 58%, rgba(10, 15, 13, .08) 100%),
    linear-gradient(0deg, rgba(10, 15, 13, .58), transparent 52%);
}

.blog-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-content {
  display: grid;
  justify-items: start;
  gap: 18px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(64px, 8vw, 110px);
  text-align: left;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .32);
}

.blog-hero-content p,
.blog-hero-content h1,
.blog-hero-content span {
  margin: 0;
}

.blog-hero-content p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.blog-hero-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(66px, 8vw, 112px);
  font-weight: 500;
  line-height: .86;
}

.blog-hero-content span {
  max-width: 590px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
}

.blog-search {
  padding: 38px 0 34px;
  color: #fff;
  background: #202320;
}

.blog-search-form {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(320px, 1fr);
  gap: 18px clamp(36px, 6vw, 90px);
  align-items: center;
}

.blog-search-form > label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 500;
}

.blog-search-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  min-height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.blog-search-field input {
  min-width: 0;
  padding: 0;
  color: #fff;
  font: inherit;
  font-size: 15px;
  background: transparent;
  border: 0;
  outline: 0;
}

.blog-search-field input::placeholder {
  color: rgba(255, 255, 255, .52);
}

.blog-search-field:focus-within {
  border-color: #fff;
}

.blog-search-field button {
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.blog-search-field svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.blog-search-status {
  grid-column: 2;
  min-height: 18px;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.5;
}

.faq-content {
  padding: clamp(58px, 8vw, 110px) 0;
  background: var(--surface);
}

.faq-shell {
  display: grid;
  gap: 28px;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-group {
  display: grid;
  gap: 14px;
  scroll-margin-top: 120px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid rgba(31, 42, 34, .08);
}

.faq-group h2 {
  margin: 0 0 10px;
  color: #1f2a22;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
  line-height: .95;
}

.faq-group details {
  border-top: 1px solid rgba(31, 42, 34, .12);
}

.faq-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  color: #1f2a22;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.faq-group summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--leaf-dark);
  font-size: 22px;
  font-weight: 500;
}

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

.faq-group p:not(.section-kicker) {
  max-width: 68ch;
  margin: -2px 0 18px;
  color: rgba(31, 42, 34, .72);
  font-size: 15px;
  line-height: 1.7;
}

.faq-group-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: #202320;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-group-link::after {
  content: "\2192";
  color: var(--leaf-dark);
  font-size: 20px;
  letter-spacing: 0;
}

.contact-detail-hero {
  position: relative;
  display: grid;
  min-height: clamp(420px, 58vh, 650px);
  overflow: hidden;
  color: #fff;
  background: #202320;
}

.contact-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 26, 23, .82), rgba(22, 26, 23, .48) 54%, rgba(22, 26, 23, .25));
}

.contact-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-detail-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 170px 0 clamp(58px, 7vw, 96px);
}

.contact-detail-hero-content p {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-detail-hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 500;
  line-height: .92;
}

.contact-detail-hero-content span {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
}

.contact-detail {
  padding: clamp(64px, 9vw, 128px) 0;
  background: var(--surface);
}

.contact-detail-shell {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-detail-aside {
  position: sticky;
  top: 128px;
}

.contact-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: rgba(32, 35, 32, .62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-back-link::before {
  content: "\2190";
  color: #202320;
  font-size: 18px;
  letter-spacing: 0;
}

.contact-detail-aside h2 {
  margin: 0;
  color: #202320;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1;
}

.contact-detail-aside p {
  margin: 24px 0 0;
  color: rgba(32, 35, 32, .72);
  font-size: 17px;
  line-height: 1.75;
}

.contact-detail-aside ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-detail-aside li {
  position: relative;
  padding-left: 24px;
  color: rgba(32, 35, 32, .76);
  font-size: 14px;
  line-height: 1.55;
}

.contact-detail-aside li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #202320;
}

.contact-action-card {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid rgba(31, 42, 34, .08);
}

.contact-privacy-note {
  grid-column: 2;
  margin: -28px 0 0;
  color: rgba(32, 35, 32, .48);
  font-size: 12px;
  line-height: 1.6;
}

.contact-action-card span {
  color: rgba(32, 35, 32, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-action-card h3 {
  max-width: 520px;
  margin: 0;
  color: #202320;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.02;
}

.contact-action-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(32, 35, 32, .7);
  font-size: 17px;
  line-height: 1.7;
}

.contact-send-link,
.contact-action-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 54px;
  padding: 0 26px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  background: #202320;
  border: 0;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}

.contact-send-link:hover,
.contact-action-card button:hover {
  background: #343834;
  transform: translateY(-1px);
}

.contact-send-link:focus-visible,
.contact-action-card button:focus-visible {
  background: #343834;
  outline: none;
}

.contact-work-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.contact-work-form[hidden] {
  display: none;
}

.contact-send-link[hidden] {
  display: none;
}

.contact-work-form label {
  display: grid;
  gap: 8px;
  color: rgba(32, 35, 32, .78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-work-form input,
.contact-work-form select,
.contact-work-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: #202320;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
  background: #f6f7f4;
  border: 1px solid rgba(32, 35, 32, .16);
  border-radius: 0;
  box-shadow: none;
  transition: background-color .18s ease, border-color .18s ease;
}

.contact-work-form select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-color: #f6f7f4;
  background-image: linear-gradient(45deg, transparent 50%, rgba(32, 35, 32, .66) 50%), linear-gradient(135deg, rgba(32, 35, 32, .66) 50%, transparent 50%);
  background-position: calc(100% - 22px) 22px, calc(100% - 16px) 22px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  cursor: pointer;
}

.contact-work-form select:invalid {
  color: rgba(32, 35, 32, .56);
}

.contact-work-form select option {
  color: #202320;
  background: #fff;
}

.contact-work-form textarea {
  resize: vertical;
}

.contact-work-form input:focus,
.contact-work-form select:focus,
.contact-work-form textarea:focus {
  background-color: #fff;
  border-color: rgba(32, 35, 32, .52);
  outline: none;
}

.contact-field-wide,
.contact-work-form button {
  grid-column: 1 / -1;
}

.contact-modal {
  width: min(92vw, 540px);
  padding: 0;
  color: #202320;
  background: transparent;
  border: 0;
}

.contact-modal::backdrop {
  background: rgba(15, 17, 16, .58);
  backdrop-filter: blur(2px);
}

.contact-modal-panel {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(30px, 5vw, 46px);
  background: #fff;
  border: 1px solid rgba(31, 42, 34, .08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.contact-modal-panel > span {
  color: rgba(32, 35, 32, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-modal-panel h2 {
  max-width: 420px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.04;
}

.contact-modal-panel p {
  margin: 0;
  color: rgba(32, 35, 32, .7);
  font-size: 16px;
  line-height: 1.65;
}

.contact-modal-links {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid rgba(32, 35, 32, .12);
  border-bottom: 1px solid rgba(32, 35, 32, .12);
}

.contact-modal-links a {
  width: fit-content;
  color: #202320;
  font-size: 16px;
  font-weight: 700;
}

.contact-modal-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 54px;
  padding: 0 26px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #202320;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #202320;
  font-size: 30px;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.blog-intro {
  padding: clamp(90px, 11vw, 160px) 0;
  background: var(--surface);
}

.blog-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.blog-intro h2 {
  max-width: 650px;
  margin: 14px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.02;
}

.blog-intro-copy {
  display: grid;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(32, 35, 32, .18);
}

.blog-intro-copy p {
  margin: 0;
  color: rgba(32, 35, 32, .72);
  font-size: clamp(17px, 1.18vw, 19px);
  line-height: 1.82;
}

.blog-intro-copy span {
  color: #b91f2b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-posts {
  padding: clamp(82px, 10vw, 138px) 0;
  background: var(--surface);
}

.blog-posts-heading {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.blog-posts-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 600;
  line-height: 1.02;
}

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

.blog-post-card {
  min-width: 0;
}

.blog-post-card[hidden] {
  display: none;
}

.blog-post-card > a {
  display: grid;
  min-height: 100%;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(32, 35, 32, .1);
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.blog-post-card > a:hover,
.blog-post-card > a:focus-visible {
  border-color: rgba(185, 31, 43, .36);
  box-shadow: 0 24px 52px rgba(20, 24, 21, .12);
  transform: translateY(-4px);
}

.blog-post-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-post-card span,
.blog-post-card h3,
.blog-post-card p,
.blog-post-card time {
  margin-right: 28px;
  margin-left: 28px;
}

.blog-post-card span {
  margin-top: 28px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.blog-post-card h3 {
  margin-top: 12px;
  margin-bottom: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 1.08;
}

.blog-post-card p {
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(32, 35, 32, .68);
  font-size: 15px;
  line-height: 1.7;
}

.blog-post-card time {
  margin-top: 28px;
  margin-bottom: 28px;
  color: rgba(32, 35, 32, .56);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.post-shell {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

.post-hero {
  padding: clamp(160px, 17vw, 230px) 0 clamp(72px, 9vw, 116px);
  color: #fff;
  background: #151a17;
}

.post-back {
  display: inline-flex;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.post-hero p {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.post-hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 600;
  line-height: .98;
}

.post-hero span {
  display: block;
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.72;
}

.post-cover {
  width: min(1180px, calc(100% - 48px));
  margin: -54px auto 0;
  background: #ddd8cf;
}

.post-cover img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
}

.post-content {
  padding: clamp(62px, 8vw, 104px) 0;
}

.post-content h2,
.post-content h3 {
  margin: 1.55em 0 .6em;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
}

.post-content h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.post-content h3 {
  font-size: clamp(26px, 3vw, 36px);
}

.post-content p,
.post-content li {
  color: rgba(32, 35, 32, .74);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.86;
}

.post-content p {
  margin: 0 0 1.3em;
}

.post-content ul {
  display: grid;
  gap: 10px;
  margin: 0 0 1.5em;
  padding-left: 1.2em;
}

.post-content a {
  color: #b91f2b;
  font-weight: 600;
}

.post-content figure {
  margin: clamp(40px, 6vw, 70px) 0;
}

.post-content figure img {
  display: block;
  width: 100%;
}

.post-cta {
  padding: clamp(70px, 9vw, 116px) 0;
  color: #fff;
  background: #202320;
}

.post-cta p {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.post-cta h2 {
  max-width: 620px;
  margin: 0 0 34px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 600;
  line-height: 1.02;
}

.post-cta a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .blog-search-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-search-status {
    grid-column: 1;
  }

  .contact-detail-shell {
    grid-template-columns: 1fr;
  }

  .contact-privacy-note {
    grid-column: 1;
    margin-top: -18px;
  }

  .contact-detail-aside {
    position: static;
  }

  .blog-intro-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-search {
    align-items: start;
    padding: 86px 18px 24px;
  }

  .site-search-panel {
    gap: 18px;
    padding: 28px 20px 24px;
  }

  .site-search-form {
    grid-template-columns: 1fr;
  }

  .blog-shell {
    width: min(100% - 36px, 520px);
  }

  .blog-hero {
    min-height: 650px;
  }

  .blog-hero-content {
    width: min(100% - 36px, 520px);
    padding: 0 0 62px;
  }

  .blog-hero-content h1 {
    font-size: 68px;
  }

  .blog-search {
    padding: 30px 0 26px;
  }

  .blog-search-field {
    grid-template-columns: minmax(0, 1fr) 46px;
  }

  .blog-intro {
    padding: 70px 0 84px;
  }

  .blog-intro h2 {
    font-size: 42px;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-card span,
  .blog-post-card h3,
  .blog-post-card p,
  .blog-post-card time {
    margin-right: 22px;
    margin-left: 22px;
  }

  .post-shell,
  .post-cover {
    width: min(100% - 36px, 560px);
  }

  .post-hero {
    padding-top: 138px;
  }

  .contact-detail-hero {
    min-height: 420px;
  }

  .contact-detail-hero-content {
    width: min(100% - 36px, 520px);
    padding-top: 130px;
  }

  .contact-detail-hero-content h1 {
    font-size: 46px;
  }

  .contact-detail-shell {
    width: min(100% - 36px, 520px);
  }

  .contact-work-form {
    grid-template-columns: 1fr;
  }

  .contact-action-card {
    padding: 26px 22px;
  }
}
/* Evita renderizar as seções pesadas da home antes de elas se aproximarem da tela. */
.institutional-section,
.sector-showcase,
.clients-showcase {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
