@font-face {
  font-family: Archivo;
  src: url("/assets/archivo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --bg: #0c0a10;
  --surface: #151119;
  --paper: #f4efe6;
  --gold: #fbc160;
  --muted: #b6aeb9;
  --line: #ffffff26;
  --gutter: clamp(22px, 4.5vw, 80px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: Archivo, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
.site-intro {
  display: none;
}
.js .site-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg);
  pointer-events: none;
  animation: intro-dismiss 1200ms var(--ease) forwards;
}
.site-intro-mark {
  position: relative;
  width: 64px;
  overflow: hidden;
  animation: intro-mark 1000ms var(--ease) both;
}
.site-intro-mark::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 30%,
    #fffbd9 48%,
    #fff 50%,
    #fffbd9 52%,
    transparent 70%
  );
  background-position: 140% 50%;
  background-size: 260% 100%;
  -webkit-mask: url("/logo-five-icon.svg") center / contain no-repeat;
  mask: url("/logo-five-icon.svg") center / contain no-repeat;
  animation: intro-shine 760ms 150ms var(--ease) both;
}
.site-intro-mark img {
  width: 64px;
  height: 47px;
}
@keyframes intro-mark {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }
  35%,
  72% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}
@keyframes intro-shine {
  from {
    background-position: 140% 50%;
  }
  to {
    background-position: -40% 50%;
  }
}
@keyframes intro-dismiss {
  0%,
  68% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.055em;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
a,
button,
summary {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  color: var(--gold);
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--gold);
  color: var(--bg);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
section {
  scroll-margin-top: 96px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  background: var(--gold);
  color: var(--bg);
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.section-shell {
  padding-inline: var(--gutter);
  max-width: 1760px;
  margin-inline: auto;
}
.eyebrow,
.small-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.65;
}
.eyebrow {
  color: var(--muted);
}
.eyebrow .status-dot {
  margin-right: 9px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px #fbc16050;
  vertical-align: middle;
}
.scroll-progress {
  height: 2px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 10px #fbc16055;
}
.site-header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: #0c0a10;
}
.brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.brand img {
  width: 148px;
  height: auto;
}
.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.site-header nav a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-block: 15px;
  transition: color 0.2s;
}
.site-header nav a:hover {
  color: var(--gold);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  min-height: 44px;
  border: 1px solid #ffffff42;
  padding: 11px 20px;
  border-radius: 7px;
  transition:
    background 0.2s,
    color 0.2s;
}
.header-cta:hover {
  background: var(--paper);
  color: var(--bg);
}
.menu-toggle {
  background: transparent;
  min-height: 44px;
  border-radius: 7px;
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(880px, calc(100svh - 94px));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px var(--gutter) 28px;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-background--new {
  background:
    radial-gradient(circle at 74% 35%, #fbc16029, transparent 38%),
    radial-gradient(circle at 20% 80%, #4823532e, transparent 48%),
    linear-gradient(145deg, #100b13, var(--bg) 50%, #160e0c);
}
.hero-unicorn-project--new {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  filter: grayscale(0.72) sepia(0.24) saturate(0.62) hue-rotate(326deg)
    contrast(1.1) brightness(0.72);
}
.hero-unicorn-project--new > canvas,
.hero-unicorn-project--new > iframe {
  width: 100% !important;
  height: 100% !important;
}
.hero-background-color,
.hero-background-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-background-color--new {
  background:
    radial-gradient(circle at 72% 34%, #fbc16057, transparent 38%),
    radial-gradient(circle at 20% 80%, #48235347, transparent 46%),
    linear-gradient(135deg, #130c174d, #562a3938, #76431b2e, #0c0a107a);
  mix-blend-mode: color;
}
.hero-background-shade {
  background:
    linear-gradient(to bottom, #0c0a102e, #0c0a107a),
    radial-gradient(circle at center, transparent 18%, #0c0a1075 100%);
}
.hero > :not(.hero-background) {
  position: relative;
  z-index: 1;
}
.hero-frame {
  position: absolute;
  inset: 100px 8% 104px;
  border: 1px solid #f4efe60a;
  z-index: -1;
  pointer-events: none;
}
.hero-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.hero-copy {
  text-align: center;
  margin: auto;
  padding: 60px 0 54px;
  max-width: 1120px;
  position: relative;
}
.hero-title {
  font-size: clamp(4rem, 8.8vw, 9.4rem);
  line-height: 0.99;
  letter-spacing: -0.075em;
  margin: 25px 0 30px;
  font-weight: 500;
}
.hero-title em {
  letter-spacing: -0.065em;
}
.hero-description {
  font-size: clamp(14px, 1.15vw, 17px);
  color: #c2b9c3;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 31px;
}
.button {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 25px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    color 0.25s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-gold {
  background: var(--gold);
  color: #191017;
}
.button-gold:hover {
  background: #ffd392;
}

/* CTA principal inspirado no botão de construção: moldura, grade e pontos. */
.motion-cta {
  --motion-gap: 8px;
  --motion-dot: 7px;
  --motion-line: #fbc160b8;
  --motion-grid: #fbc16042;
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 7px;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    letter-spacing 0.25s;
}
.motion-cta::before,
.motion-cta::after {
  content: "";
  position: absolute;
  inset: calc(var(--motion-gap) * -1);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
}
.motion-cta::before {
  display: none;
}
.motion-cta::after {
  z-index: -1;
  border: 1px dashed var(--motion-line);
  transform: scale(0.82);
  transition:
    opacity 0.25s ease 0.12s,
    transform 0.38s var(--ease) 0.12s;
}
.motion-cta:hover {
  transform: translateY(-3px) scale(1.035);
  letter-spacing: 0.045em;
}
.motion-cta:hover::before,
.motion-cta:focus-visible::before,
.motion-cta:hover::after,
.motion-cta:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}
.motion-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
.motion-label svg {
  transition: transform 0.25s var(--ease);
}
.motion-cta:hover .motion-label svg {
  transform: translate(2px, -2px);
}
.motion-dot {
  position: absolute;
  z-index: 2;
  width: var(--motion-dot);
  aspect-ratio: 1;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 14px #fbc1608a;
  opacity: 0;
  pointer-events: none;
  transition:
    inset 0.36s var(--ease),
    opacity 0.2s ease;
}
.motion-dot-tl {
  top: 50%;
  left: 20%;
}
.motion-dot-tr {
  top: 50%;
  right: 20%;
  transition-delay: 0.07s;
}
.motion-dot-br {
  right: 20%;
  bottom: 50%;
  transition-delay: 0.14s;
}
.motion-dot-bl {
  bottom: 50%;
  left: 20%;
  transition-delay: 0.21s;
}
.motion-cta:hover .motion-dot,
.motion-cta:focus-visible .motion-dot {
  opacity: 1;
}
.motion-cta:hover .motion-dot-tl,
.motion-cta:focus-visible .motion-dot-tl {
  top: calc((var(--motion-gap) + var(--motion-dot) / 2) * -1);
  left: calc((var(--motion-gap) + var(--motion-dot) / 2) * -1);
}
.motion-cta:hover .motion-dot-tr,
.motion-cta:focus-visible .motion-dot-tr {
  top: calc((var(--motion-gap) + var(--motion-dot) / 2) * -1);
  right: calc((var(--motion-gap) + var(--motion-dot) / 2) * -1);
}
.motion-cta:hover .motion-dot-br,
.motion-cta:focus-visible .motion-dot-br {
  right: calc((var(--motion-gap) + var(--motion-dot) / 2) * -1);
  bottom: calc((var(--motion-gap) + var(--motion-dot) / 2) * -1);
}
.motion-cta:hover .motion-dot-bl,
.motion-cta:focus-visible .motion-dot-bl {
  bottom: calc((var(--motion-gap) + var(--motion-dot) / 2) * -1);
  left: calc((var(--motion-gap) + var(--motion-dot) / 2) * -1);
}
@media (prefers-reduced-motion: reduce) {
  .js .site-intro {
    animation-duration: 160ms;
  }
  .site-intro-mark {
    animation: none;
  }
  .site-intro-mark::after {
    display: none;
  }
  .motion-cta,
  .motion-cta::before,
  .motion-cta::after,
  .motion-dot,
  .motion-label svg {
    transition: none;
  }
}
.button-outline {
  border-color: #ffffff38;
  background: #ffffff03;
}
.button-outline:hover {
  background: #ffffff0e;
  border-color: #ffffff70;
}
.hero-bottom {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 20px;
  font-size: 10px;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
}
.hero-signature {
  text-align: right;
}
.hero-signature strong {
  font-weight: 400;
  color: var(--paper);
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
}
.scroll-cue span {
  font-size: 23px;
  color: var(--gold);
}
.featured {
  padding-top: 48px;
  padding-bottom: 55px;
}
.section-index {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
}
.section-index > span {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-index h2 {
  font-size: clamp(22px, 2.1vw, 34px);
  text-align: center;
  letter-spacing: -0.03em;
}
.index-note {
  text-align: right;
}
.featured-stack {
  position: relative;
}
.featured-card {
  position: sticky;
  top: 28px;
  margin-bottom: 40px;
  padding: clamp(20px, 3vw, 44px);
  background: linear-gradient(140deg, #221a24, #131014 72%);
  border: 1px solid #ffffff1c;
  border-radius: 4px;
  box-shadow: 0 -20px 45px #0c0a1033;
  overflow: hidden;
}
.featured-card:nth-child(2) {
  background: linear-gradient(135deg, #20251d, #10150f 80%);
}
.featured-card:nth-child(3) {
  background: linear-gradient(135deg, #242118, #12110e 80%);
}
.featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.featured-number {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
}
.featured-type {
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #c5bbc9;
  text-align: right;
}
.featured-image-link {
  display: block;
  position: relative;
  background: #09080b;
  border: 1px solid #ffffff18;
  overflow: hidden;
}
.featured-image-link img {
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease);
}
.featured-image-link:hover img {
  transform: scale(1.018);
}
.featured-image-link:focus-visible {
  outline-offset: -4px;
}
.featured-expand {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 99px;
  background: #0c0a10e8;
  color: var(--paper);
  padding: 10px 16px;
  font-size: 11px;
  border: 1px solid #ffffff30;
  backdrop-filter: blur(10px);
}
.featured-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
}
.featured-caption h3 {
  font-size: clamp(27px, 3.1vw, 48px);
  letter-spacing: -0.045em;
}
.featured-caption p {
  color: var(--muted);
  font-size: 12px;
  max-width: 320px;
  text-align: right;
}
.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #ffffff45;
  min-height: 48px;
  font-size: 13px;
  transition: color 0.2s;
}
.underlined-link:hover {
  color: var(--gold);
}
.underlined-link span {
  color: var(--gold);
  font-size: 10px;
}
.featured-more {
  display: flex;
  width: max-content;
  margin: 12px auto 0;
}
.manifesto {
  position: relative;
  padding-block: 115px 110px;
}
.manifesto h2 {
  position: relative;
  font-size: clamp(48px, 7.2vw, 112px);
  line-height: 1.05;
  max-width: 1070px;
  margin-top: 30px;
}
.gold-star {
  position: absolute;
  right: -7%;
  top: 11%;
  color: var(--gold);
  font-size: 105px;
  font-weight: 300;
}
.manifesto-bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 35px;
  margin-top: 52px;
}
.manifesto-bottom p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  max-width: 500px;
}
.small-label {
  color: var(--muted);
}
.round-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border: 1px solid #ffffff45;
  border-radius: 50%;
  flex-shrink: 0;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s;
}
.round-link svg {
  width: 25px;
  height: 25px;
}
.round-link:hover {
  background: var(--gold);
  color: var(--bg);
  transform: rotate(6deg);
}
.marquee {
  overflow: hidden;
  position: relative;
  border-block: 1px solid var(--line);
  padding: 30px 0 45px;
  background: #131014;
}
.marquee-track {
  display: flex;
  width: max-content;
  transform: none;
}
.marquee-track > span {
  white-space: nowrap;
  font-size: clamp(35px, 4.8vw, 76px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.2;
}
.marquee-track i {
  color: var(--gold);
  font-style: normal;
  margin: 0 40px;
  font-size: 0.7em;
}
.marquee.motion-ready .marquee-track {
  animation: marquee 45s linear infinite;
}
.marquee.is-paused .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.portfolio {
  padding-block: 112px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 1.04;
  margin-top: 24px;
}
.section-heading > p {
  max-width: 300px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 6px;
}
.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-block: 25px 32px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter {
  min-height: 42px;
  padding: 9px 17px;
  border-radius: 7px;
  font-size: 11px;
  background: transparent;
  border: 1px solid #ffffff30;
  display: flex;
  gap: 15px;
  align-items: center;
  transition: background 0.2s;
}
.filter span {
  font-size: 9px;
  opacity: 0.8;
}
.filter[aria-pressed="true"] {
  background: var(--paper);
  color: var(--bg);
  border-color: var(--paper);
}
.filter:hover {
  border-color: var(--gold);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px 24px;
}
.project {
  min-width: 0;
}
.project-link {
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid #ffffff1c;
  background: #151119;
  border-radius: 3px;
}
.project-preview {
  width: 100%;
  aspect-ratio: 1920/1003;
  object-fit: contain;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.project-link:hover .project-preview {
  transform: scale(1.025);
}
.project-open {
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0c0a10e8;
  border: 1px solid #ffffff45;
  transition:
    background 0.2s,
    color 0.2s;
}
.project-link:hover .project-open {
  background: var(--gold);
  color: var(--bg);
}
.project-open svg {
  width: 17px;
  height: 17px;
}
.project-caption {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  padding-top: 14px;
}
.project-caption h3 {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 450;
}
.project-caption > span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  line-height: 2;
}
.creation {
  padding-block: 100px 60px;
  border-top: 1px solid var(--line);
}
.creation-list {
  margin-top: 60px;
}
.creation-row {
  display: grid;
  grid-template-columns: 0.3fr 1.5fr auto;
  align-items: start;
  gap: 40px;
  padding-block: 42px;
  border-top: 1px solid var(--line);
}
.creation-number {
  font-family: Georgia, serif;
  font-size: 35px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.3;
}
.creation-row h3 {
  font-size: clamp(27px, 3.2vw, 48px);
  margin-bottom: 22px;
  letter-spacing: -0.05em;
}
.creation-row p {
  font-size: 14px;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.8;
}
.tags {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 25px 0 0;
}
.tags li {
  font-size: 10px;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #d2c9d5;
}
.essentials {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 32px;
}
.essentials > span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.essentials p {
  font-size: 11px;
}
.essentials p::before {
  content: "+";
  color: var(--gold);
  margin-right: 10px;
}
.process {
  padding-block: 100px;
  background: linear-gradient(120deg, #1b1420, #100e12);
  border-block: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 65px;
  gap: 36px;
}
.process-grid article {
  border-top: 1px solid #fbc16066;
  padding-top: 25px;
}
.process-grid article > span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--gold);
}
.process-grid h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  margin: 28px 0 18px;
  letter-spacing: -0.04em;
}
.process-grid p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-block: 110px;
}
.faq h2 {
  font-size: clamp(34px, 3.1vw, 50px);
  line-height: 1.1;
  margin-top: 24px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 21px;
  color: var(--gold);
  transition: transform 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  padding-bottom: 24px;
  max-width: 560px;
}
.contact {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: 105px 85px;
  padding-inline: max(
    var(--gutter),
    calc((100vw - 1760px) / 2 + var(--gutter))
  );
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.contact-aura {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 75% 50%, #9a5a2440, transparent 55%),
    radial-gradient(ellipse at 15% 100%, #63377822, transparent 45%);
}
.contact h2 {
  position: relative;
  font-size: clamp(62px, 9.5vw, 150px);
  line-height: 1;
  max-width: 1150px;
  margin-top: 33px;
}
.contact-arrow {
  position: absolute;
  right: 4%;
  top: 2%;
  font-family: Archivo, Arial, sans-serif;
  font-size: 1.15em;
  font-weight: 200;
  color: var(--gold);
}
.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 55px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}
.contact-bottom p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: clamp(54px, 6vw, 96px);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(360px, 2.8fr) minmax(
      170px,
      0.9fr
    );
  align-items: start;
  gap: clamp(36px, 5vw, 92px);
  padding-bottom: clamp(60px, 7vw, 104px);
}
.footer-top .brand {
  margin-top: 8px;
}
.footer-statement {
  max-width: 920px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(42px, 5.1vw, 82px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}
.footer-statement span {
  color: var(--gold);
}
.footer-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  transition:
    color 180ms ease,
    padding-left 180ms var(--ease);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-links svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms var(--ease);
}
.footer-links a:hover svg {
  transform: translate(3px, -3px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  padding: 24px 0;
}
.footer-bottom a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.project-dialog {
  padding: 0;
  background: #100d14;
  color: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: min(1400px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100dvh - 48px);
  box-shadow: 0 30px 100px #0009;
}
.project-dialog::backdrop {
  background: #000c;
  backdrop-filter: blur(8px);
}
.dialog-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.dialog-bar h2 {
  font-size: 20px;
  letter-spacing: -0.025em;
}
.dialog-bar p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.dialog-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.dialog-controls button {
  min-height: 44px;
  background: #ffffff09;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 16px;
  font-size: 12px;
}
.close-dialog span {
  font-size: 19px;
  margin-left: 9px;
}
.dialog-scroll {
  max-height: calc(100dvh - 155px);
  overflow: auto;
  padding: 24px;
}
.image-status {
  font-size: 13px;
  color: var(--muted);
}
.image-status:not(:empty) {
  padding: 10px 0;
}
.image-status a {
  text-decoration: underline;
  color: var(--gold);
}
.full-image img {
  width: 100%;
  height: auto;
  max-width: none;
}
.full-image.is-zoomed {
  width: 1920px;
  max-width: none;
}
.project-dialog[open] {
  animation: dialog-in 0.25s var(--ease);
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1700px) {
  .hero {
    min-height: 850px;
  }
  .gold-star {
    right: 0;
  }
  .featured-card {
    max-width: 1440px;
    margin-inline: auto;
  }
  .featured-image-link img {
    max-height: 580px;
    object-fit: contain;
    background: #09080b;
  }
}
@media (max-width: 1100px) {
  .site-header {
    gap: 20px;
  }
  .site-header nav {
    gap: 17px;
  }
  .site-header nav a {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .header-cta {
    gap: 12px;
    padding-inline: 14px;
    font-size: 11px;
  }
  .brand img {
    width: 125px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-title {
    font-size: clamp(64px, 9.5vw, 100px);
  }
  .gold-star {
    right: 0;
    font-size: 80px;
  }
  .manifesto-bottom {
    grid-template-columns: 0.6fr 1.4fr auto;
  }
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    gap: 24px;
  }
  .faq {
    gap: 45px;
  }
  .essentials {
    flex-wrap: wrap;
  }
  .essentials > span {
    flex-basis: 100%;
  }
  .footer-top {
    grid-template-columns: minmax(130px, 0.7fr) minmax(0, 2fr);
  }
  .footer-statement {
    grid-row: span 2;
  }
  .footer-links {
    grid-column: 1;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .site-header {
    height: 78px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand img {
    width: 126px;
  }
  .header-cta {
    margin-left: auto;
    font-size: 10px;
    min-height: 39px;
    padding: 8px 13px;
    gap: 8px;
  }
  .header-cta svg {
    width: 15px;
    height: 15px;
  }
  .menu-toggle {
    font-size: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0;
  }
  .menu-toggle span {
    font-size: 18px;
    color: var(--gold);
  }
  .site-header nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 6px 24px;
    background: var(--bg);
    padding: 10px 0 20px;
  }
  .site-header:not(.menu-ready) {
    height: auto;
    min-height: 78px;
    padding-top: 15px;
  }
  .site-header.menu-ready nav {
    display: none;
    position: absolute;
    top: 77px;
    left: 0;
    width: 100%;
    padding: 20px var(--gutter);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px #0008;
  }
  .site-header.menu-ready nav.is-open {
    display: flex;
  }
  .site-header nav a {
    font-size: 12px;
    min-height: 44px;
    flex-basis: 40%;
  }
  .hero {
    min-height: calc(100svh - 78px);
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .hero-topline {
    font-size: 8px;
    letter-spacing: 0.11em;
  }
  .hero-topline > span:last-child {
    max-width: 130px;
    text-align: right;
  }
  .hero-copy {
    padding: 65px 0 50px;
  }
  .hero-unicorn-project--new {
    opacity: 0.44;
    filter: grayscale(0.8) sepia(0.22) saturate(0.54) hue-rotate(326deg)
      contrast(1.08) brightness(0.62);
  }
  .hero-background-color--new {
    background:
      radial-gradient(circle at 68% 35%, #fbc1603d, transparent 42%),
      radial-gradient(circle at 16% 80%, #48235338, transparent 48%),
      linear-gradient(145deg, #130c1747, #562a392e, #76431b24, #0c0a1094);
  }
  .hero-background-shade {
    background:
      linear-gradient(to bottom, #0c0a1038, #0c0a108f),
      radial-gradient(circle at center, transparent 14%, #0c0a1085 100%);
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .hero-title {
    font-size: clamp(50px, 10.8vw, 80px);
    margin: 27px 0 26px;
    line-height: 1.04;
  }
  .hero-description {
    max-width: 410px;
    margin-inline: auto;
    font-size: 14px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
  }
  .button {
    min-height: 50px;
    padding: 13px 20px;
    font-size: 11px;
    gap: 18px;
  }
  .hero-bottom {
    font-size: 8px;
    letter-spacing: 0.06em;
    gap: 8px;
  }
  .hero-bottom > span:first-child {
    max-width: 110px;
  }
  .hero-signature {
    max-width: 115px;
  }
  .scroll-cue {
    gap: 8px;
    font-size: 8px;
  }
  .hero-frame {
    inset: 85px 18px 90px;
  }
  .featured {
    padding-top: 32px;
    padding-bottom: 35px;
  }
  .section-index {
    grid-template-columns: 1fr auto;
    gap: 15px;
    padding: 23px 0 26px;
  }
  .section-index h2 {
    grid-column: 1/-1;
    grid-row: 2;
    text-align: left;
    font-size: 29px;
  }
  .section-index > span {
    font-size: 8px;
  }
  .featured-card {
    position: relative;
    top: auto;
    padding: 16px;
    margin-bottom: 24px;
  }
  .featured-meta {
    margin-bottom: 16px;
  }
  .featured-number {
    font-size: 32px;
  }
  .featured-type {
    font-size: 8px;
    max-width: 180px;
  }
  .featured-expand {
    bottom: 8px;
    right: 8px;
    font-size: 9px;
    padding: 7px 10px;
    gap: 9px;
  }
  .featured-expand svg {
    width: 13px;
    height: 13px;
  }
  .featured-caption {
    margin-top: 20px;
    align-items: start;
    gap: 16px;
  }
  .featured-caption h3 {
    font-size: 26px;
  }
  .featured-caption p {
    font-size: 10px;
    max-width: 145px;
  }
  .underlined-link {
    font-size: 12px;
  }
  .manifesto {
    padding-block: 75px;
  }
  .manifesto h2 {
    font-size: clamp(39px, 7.6vw, 62px);
    padding-right: 15px;
    margin-top: 25px;
  }
  .gold-star {
    font-size: 46px;
    right: 0;
    top: auto;
    bottom: 0;
  }
  .manifesto-bottom {
    grid-template-columns: 1fr auto;
    gap: 24px;
    margin-top: 33px;
    padding-top: 24px;
  }
  .manifesto-bottom .small-label {
    grid-column: 1/-1;
    font-size: 9px;
  }
  .manifesto-bottom .small-label br {
    display: none;
  }
  .manifesto-bottom p {
    font-size: 13px;
    line-height: 1.8;
  }
  .round-link {
    width: 52px;
    height: 52px;
  }
  .round-link svg {
    width: 21px;
    height: 21px;
  }
  .marquee {
    padding-top: 22px;
    padding-bottom: 39px;
  }
  .marquee-track i {
    margin: 0 22px;
  }
  .portfolio,
  .creation,
  .process {
    padding-block: 70px;
  }
  .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 24px;
    margin-bottom: 34px;
  }
  .section-heading h2 {
    font-size: clamp(38px, 7vw, 59px);
    margin-top: 20px;
  }
  .section-heading > p {
    max-width: 380px;
    font-size: 13px;
  }
  .gallery-toolbar {
    flex-wrap: wrap;
    padding-block: 22px;
    gap: 15px;
  }
  .filters {
    gap: 6px;
  }
  .filter {
    padding: 8px 12px;
    gap: 10px;
    font-size: 10px;
  }
  .project-grid {
    gap: 28px 16px;
  }
  .project-caption {
    display: block;
    padding-top: 12px;
  }
  .project-caption h3 {
    font-size: 12px;
  }
  .project-caption > span {
    font-size: 8px;
  }
  .project-open {
    width: 29px;
    height: 29px;
    right: 6px;
    bottom: 6px;
  }
  .creation-list {
    margin-top: 35px;
  }
  .creation-row {
    grid-template-columns: 28px 1fr auto;
    gap: 16px;
    padding-block: 30px;
  }
  .creation-number {
    font-size: 25px;
  }
  .creation-row h3 {
    font-size: 29px;
    margin-bottom: 18px;
  }
  .creation-row p {
    font-size: 13px;
  }
  .creation-row .round-link {
    width: 42px;
    height: 42px;
  }
  .tags {
    gap: 6px;
    margin-top: 20px;
  }
  .tags li {
    font-size: 9px;
  }
  .essentials {
    gap: 18px;
    padding-top: 27px;
  }
  .essentials p {
    font-size: 10px;
    width: calc(50% - 10px);
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 26px;
    margin-top: 36px;
  }
  .process-grid h3 {
    font-size: 24px;
    margin-top: 23px;
  }
  .process-grid p {
    font-size: 12px;
  }
  .process-grid article > span {
    font-size: 9px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 70px;
  }
  .faq h2 {
    font-size: 39px;
  }
  .faq summary {
    font-size: 13px;
  }
  .contact {
    padding-block: 75px 60px;
  }
  .contact h2 {
    font-size: clamp(54px, 11vw, 90px);
    padding-right: 20px;
  }
  .contact .eyebrow {
    font-size: 9px;
    max-width: 260px;
  }
  .contact-arrow {
    right: 0;
    top: 10%;
    font-size: 0.9em;
  }
  .contact-bottom {
    flex-direction: column;
    align-items: start;
    gap: 25px;
    margin-top: 35px;
    padding-top: 26px;
  }
  .contact-bottom p {
    font-size: 13px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 50px;
  }
  .footer-top .brand {
    margin-top: 0;
  }
  .footer-statement {
    grid-row: auto;
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.96;
  }
  .footer-links {
    width: 100%;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 10px;
    padding: 20px 0;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom a {
    margin-left: auto;
  }
  .project-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 5px;
  }
  .dialog-bar {
    padding: 14px;
    align-items: start;
    gap: 12px;
  }
  .dialog-bar h2 {
    font-size: 16px;
  }
  .dialog-bar p {
    font-size: 10px;
    max-width: 180px;
  }
  .dialog-controls {
    gap: 6px;
  }
  .dialog-controls button {
    font-size: 10px;
    padding: 8px 11px;
    min-height: 40px;
  }
  .close-dialog span {
    display: none;
  }
  .dialog-scroll {
    padding: 12px;
    max-height: calc(100dvh - 126px);
  }
  .full-image.is-zoomed {
    width: 1100px;
  }
}
@media (max-width: 480px) {
  .header-cta {
    display: none;
  }
  .menu-toggle {
    margin-left: auto;
  }
  .hero-title {
    font-size: clamp(46px, 12vw, 60px);
  }
  .hero-copy {
    padding-top: 58px;
    padding-bottom: 40px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .button {
    width: 245px;
  }
  .hero-bottom > span:first-child {
    display: none;
  }
  .hero-signature {
    max-width: 160px;
  }
  .hero-bottom {
    align-items: center;
  }
  .hero-frame {
    inset: 75px 14px 78px;
  }
  .featured-caption {
    flex-direction: column;
    gap: 8px;
  }
  .featured-caption p {
    text-align: left;
    max-width: none;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-caption {
    display: flex;
  }
  .project-caption h3 {
    font-size: 14px;
  }
  .project-caption > span {
    font-size: 9px;
  }
  .project-open {
    width: 36px;
    height: 36px;
  }
  .creation-row {
    grid-template-columns: 24px 1fr;
    gap: 14px;
  }
  .creation-row .round-link {
    grid-column: 2;
    justify-self: start;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid h3 br {
    display: none;
  }
  .process-grid h3 {
    margin-block: 15px 12px;
  }
  .faq h2 {
    font-size: 34px;
  }
  .hero-topline > span:first-child {
    max-width: 115px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .gold-star {
    font-size: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .featured-card {
    position: relative;
    top: auto;
  }
  .hero-unicorn-project {
    display: none;
  }
}
@media print {
  .site-header,
  .hero-unicorn-project,
  .hero-frame,
  .marquee,
  .project-dialog,
  .scroll-progress {
    display: none;
  }
  .featured-card {
    position: static;
  }
  .hero {
    min-height: 0;
  }
  .hero-copy {
    padding: 30px 0;
  }
  .section-shell {
    padding: 24px;
  }
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body {
    background: white;
    color: black;
  }
  em {
    color: inherit;
  }
}

/* Destaques imersivos: cada projeto ocupa a tela inteira. */
#destaques.featured {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
  scroll-margin-top: 0;
}
#destaques > .section-index {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
#destaques .featured-card {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100svh;
  min-height: 480px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
  background: #09080b;
}
#destaques .featured-card:nth-child(1) {
  z-index: 1;
}
#destaques .featured-card:nth-child(2) {
  z-index: 2;
}
#destaques .featured-card:nth-child(3) {
  z-index: 3;
}
#destaques .featured-image-link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}
#destaques .featured-image-link picture {
  display: block;
  width: 100%;
  height: 100%;
}
#destaques .featured-image-link img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}
#destaques .featured-image-link::after {
  display: none;
}
#destaques .featured-meta {
  position: absolute;
  z-index: 2;
  inset: clamp(24px, 4vw, 58px) var(--gutter) auto;
  margin: 0;
  pointer-events: none;
}
#destaques .featured-number {
  font-size: clamp(32px, 3.5vw, 58px);
  text-shadow: 0 2px 18px #000;
}
#destaques .featured-type {
  color: #fff3df;
  font-size: 11px;
  text-shadow: 0 2px 12px #000;
}
#destaques .featured-caption {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  right: calc(var(--gutter) + 170px);
  bottom: clamp(28px, 5vh, 64px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  pointer-events: none;
}
#destaques .featured-caption h3 {
  font-size: clamp(32px, 4.5vw, 72px);
  line-height: 1.03;
  color: #fff9f0;
  text-shadow: 0 2px 24px #000;
}
#destaques .featured-caption p {
  max-width: 460px;
  text-align: left;
  color: #e3dae5;
  font-size: 14px;
  line-height: 1.6;
  text-shadow: 0 2px 12px #000;
}
#destaques .featured-expand {
  z-index: 3;
  right: var(--gutter);
  bottom: clamp(28px, 5vh, 64px);
  padding: 13px 19px;
  font-size: 12px;
}
#destaques .featured-more {
  margin: 0 auto;
  padding-block: 25px;
  min-height: 90px;
  border: 0;
}
@media (max-width: 760px) {
  #destaques .featured-card {
    min-height: 560px;
  }
  #destaques .featured-image-link img {
    object-fit: cover;
    object-position: center;
  }
  #destaques .featured-meta {
    top: 30px;
  }
  #destaques .featured-type {
    font-size: 9px;
    max-width: 175px;
  }
  #destaques .featured-caption {
    right: var(--gutter);
    bottom: 108px;
    gap: 12px;
  }
  #destaques .featured-caption h3 {
    font-size: clamp(30px, 7vw, 46px);
  }
  #destaques .featured-caption p {
    font-size: 12px;
    max-width: 300px;
  }
  #destaques .featured-expand {
    right: auto;
    left: var(--gutter);
    bottom: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #destaques .featured-card {
    position: relative;
  }
}
@media print {
  #destaques .featured-card {
    position: relative;
    height: 700px;
  }
}
