:root {
    --ink: #090a0c;
    --surface: #171a1f;
    --paper: #f4f1e8;
    --white: #fff;
    --violet: #786cff;
    --violet-deep: #4930a7;
    --acid: #c8ff3d;
    --line-dark: rgba(244, 241, 232, .22);
    --line-light: rgba(9, 10, 12, .22);
    --font-sans: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
    --font-serif: "Times New Roman", Times, serif;
    --page-pad: clamp(1rem, 2.35vw, 2.75rem);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--violet) var(--ink); }
body {
    margin: 0;
    min-width: 20rem;
    overflow-x: clip;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.45;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-is-open { overflow: hidden; }
.home-page main#conteudo { display: flex; flex-direction: column; }
.home-page main#conteudo > section { order: var(--section-order, 0); }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { border: 0; cursor: pointer; }
button:disabled { cursor: wait; }
::selection { background: var(--acid); color: var(--ink); }
:focus-visible { outline: 3px solid var(--acid); outline-offset: 4px; }

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link {
    position: fixed;
    z-index: 2000;
    top: .75rem;
    left: .75rem;
    padding: .7rem 1rem;
    transform: translateY(-160%);
    background: var(--acid);
    color: var(--ink);
    font-weight: 700;
    transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.site-header {
    --header-fg: #fff;
    --header-inverse: var(--ink);
    position: fixed;
    z-index: 900;
    inset: var(--page-pad) var(--page-pad) auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}
.site-header.is-on-light {
    --header-fg: var(--ink);
    --header-inverse: #fff;
}
.site-logo,
.header-actions { pointer-events: auto; }
.site-logo {
    color: var(--header-fg);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -.03em;
    mix-blend-mode: normal;
    transition: color .2s ease;
}
.site-logo span { font-weight: 400; }
.header-actions { display: flex; gap: .55rem; mix-blend-mode: normal; }
.header-pill {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--header-fg);
    border-radius: 0;
    padding: .65rem 1.25rem;
    background: transparent;
    color: var(--header-fg);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: none;
    box-shadow: none;
    transition: transform .24s var(--ease), background-color .2s ease, color .2s ease, border-color .2s ease;
}
.header-pill:hover { transform: translateY(-.1rem); }
.header-pill:active { transform: translateY(0); box-shadow: none; }
.header-pill--menu {
    border-color: var(--header-fg);
    background: var(--header-fg);
    color: var(--header-inverse);
    box-shadow: none;
}
.header-pill--menu:hover {
    border-color: var(--header-fg);
    background: transparent;
    color: var(--header-fg);
}
.header-pill--contact { background: transparent; }
.header-pill--contact:hover { border-color: var(--header-fg); background: var(--header-fg); color: var(--header-inverse); }

.menu-backdrop {
    position: fixed;
    z-index: 980;
    inset: 0;
    background: rgba(9, 10, 12, .54);
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: opacity .22s ease;
}
.menu-backdrop.is-visible { opacity: 1; }
.menu-drawer {
    position: fixed;
    z-index: 1000;
    top: .75rem;
    right: .75rem;
    bottom: .75rem;
    width: min(35rem, calc(100vw - 1.5rem));
    display: flex;
    flex-direction: column;
    padding: 1.35rem 1.5rem 1.5rem;
    overflow: auto;
    border: 1px solid rgba(244, 241, 232, .15);
    border-radius: .55rem;
    background: var(--ink);
    color: var(--paper);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, .34);
    visibility: hidden;
    transform: translateX(calc(100% + 2rem));
    transition: visibility .32s, transform .32s var(--ease);
}
.menu-drawer.is-open { visibility: visible; transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; }
.drawer-head > span { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.drawer-close {
    min-height: 2.75rem;
    border: 1px solid rgba(244, 241, 232, .7);
    border-radius: .125rem;
    padding: .55rem 1rem;
    background: rgba(255, 255, 255, .04);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: none;
    transition: transform .24s var(--ease), background-color .2s ease, color .2s ease;
}
.drawer-close:hover { transform: translateY(-.08rem); background: var(--paper); color: var(--ink); }
.drawer-navigation { border-top: 1px solid var(--line-dark); }
.drawer-link {
    display: flex;
    width: 100%;
    min-height: 3.25rem;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line-dark);
    background: transparent;
    color: var(--paper);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    letter-spacing: -.045em;
    text-align: left;
    transition: padding-left .2s ease, color .2s ease;
}
.drawer-link:hover { padding-left: .5rem; color: var(--acid); }
.drawer-link--button span:last-child { font-size: 1.5rem; font-weight: 300; }
.drawer-service-list { padding: .8rem 0 1.2rem; border-bottom: 1px solid var(--line-dark); }
.drawer-service-list[hidden] { display: none; }
.drawer-service-list a {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: .75rem;
    align-items: center;
    min-height: 3.4rem;
    padding: .3rem 0;
}
.drawer-service-list img { width: 3rem; height: 2.35rem; object-fit: cover; background: var(--surface); }
.drawer-service-list a > span:only-child { grid-column: 1 / -1; }
.drawer-service-list b { display: block; font-size: .85rem; }
.drawer-service-list small { display: block; color: #7e838c; font-size: .72rem; line-height: 1.25; }
.drawer-foot {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: end;
    margin-top: auto;
    padding-top: 2rem;
    color: #858a94;
    font-size: .78rem;
}
.drawer-foot > a { color: var(--paper); }
.drawer-foot div { display: grid; gap: .35rem; text-align: right; }
.drawer-foot a:hover { color: var(--acid); }

.hero {
    position: relative;
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: center;
    padding: clamp(6rem, 11vh, 8.5rem) var(--page-pad) clamp(3rem, 7vh, 5rem);
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
}
.hero-shader {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: var(--ink);
    pointer-events: none;
}
.hero-shader.is-unavailable { display: none; }
.hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(3, 3, 8, .42);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: auto -10% -30% 40%;
    width: 45rem;
    height: 45rem;
    border-radius: 50%;
    background: rgba(120, 108, 255, .11);
    filter: blur(9rem);
}
.hero-title-wrap { position: relative; z-index: 2; width: 100%; margin-inline: 0; }
.hero-title {
    width: 100%;
    margin: 0;
    color: var(--paper);
    font-size: clamp(3.15rem, 5vw, 6rem);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .89;
}
.hero--center .hero-title { margin-inline: auto; text-align: center; }
.hero--right .hero-title { margin-left: auto; text-align: right; }
.hero--center .hero-copy {
    position: static;
    width: min(100%, 31rem);
    margin: 1.5rem auto 0;
    text-align: center;
}
.hero--center .hero-actions { justify-content: center; }
.hero--right .hero-copy {
    position: static;
    width: min(100%, 31rem);
    margin: 1.5rem 0 0 auto;
    text-align: right;
}
.hero--right .hero-actions { justify-content: flex-end; }
.js .hero-title .hero-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}
.hero-title .hero-line { display: block; width: max-content; max-width: 100%; white-space: nowrap; }
.js .hero-title .hero-word > span {
    display: inline-block;
    transform: translateY(112%);
    animation: word-in .72s var(--ease) forwards;
    animation-delay: calc(var(--word-index) * 42ms + 110ms);
}
.hero-title .hero-word--serif > span {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -.04em;
}
@keyframes word-in { to { transform: none; } }
.hero-lower {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    align-items: center;
    margin: clamp(1.75rem, 3.5vh, 2.5rem) 0 0;
}
.hero-copy {
    position: absolute;
    right: auto;
    bottom: .35rem;
    left: clamp(17.5rem, 17vw, 21rem);
    width: min(27rem, 29vw);
    margin: 0;
    color: #b9bac0;
    font-size: clamp(.88rem, 1vw, 1.08rem);
    letter-spacing: -.018em;
    line-height: 1.42;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: flex-start; }
.text-link {
    position: relative;
    display: inline-flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: .125rem;
    padding: .78rem 1.3rem;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .005em;
    background-size: 200% 100%;
    background-position: 100% 0;
    box-shadow: none;
    transition: transform .24s var(--ease), background-position .42s var(--ease), border-color .2s ease, color .2s ease;
}
.text-link:hover { transform: translateY(-.08rem); background-position: 0 0; color: var(--ink); }
.text-link:active { transform: translateY(0); box-shadow: none; }
.text-link--light {
    border-color: var(--acid);
    background-image: linear-gradient(90deg, var(--paper) 0 50%, var(--acid) 50% 100%);
    color: var(--ink);
}
.text-link--light:hover { border-color: var(--paper); }
.text-link--light:active { box-shadow: none; }
.text-link--accent { border-color: var(--violet); background-image: linear-gradient(90deg, var(--acid) 0 50%, var(--violet) 50% 100%); color: #fff; }
.hero-project {
    position: absolute;
    z-index: 1;
    right: var(--page-pad);
    bottom: clamp(6.8rem, 12vh, 9rem);
    width: clamp(15rem, 34vw, 35rem);
    height: clamp(10rem, 30vh, 21rem);
    overflow: hidden;
    background: var(--surface);
}
.hero-project::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .76));
}
.hero-project img,
.hero-project video { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .3s ease; }
.hero-project:hover img,
.hero-project:hover video { transform: scale(1.025); filter: saturate(1.12); }
.hero-project > span {
    position: absolute;
    z-index: 1;
    inset: auto 1rem .9rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hero-project i { color: var(--acid); font-style: normal; }
.project-section { position: relative; background: var(--paper); color: var(--ink); }
.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(16rem, .75fr);
    gap: clamp(2rem, 7vw, 8rem);
    align-items: end;
    padding: clamp(4.5rem, 7vw, 7rem) var(--page-pad) clamp(3rem, 5vw, 4.5rem);
}
.section-intro h2,
.services-heading h2,
.process-section h2 {
    margin: 0;
    font-size: clamp(2.8rem, 4.8vw, 5.6rem);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .93;
    text-wrap: balance;
}
.project-intro h2 { max-width: 14.5ch; font-family: var(--font-serif); font-size: clamp(2.7rem, 4.15vw, 4.8rem); font-weight: 400; letter-spacing: -.04em; }
.section-intro > p:last-child { max-width: 27rem; margin: 0 0 .35rem; color: #4e5054; font-size: .96rem; }
.project-table { border-top: 1px solid var(--line-light); }
.project-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(18rem, 1.65fr) minmax(12rem, 1fr) minmax(9rem, .65fr) 8rem 2.5rem;
    gap: clamp(1rem, 2.5vw, 2.5rem);
    align-items: center;
    min-height: clamp(8rem, 11vw, 11.5rem);
    padding: 1.4rem var(--page-pad);
    border-bottom: 1px solid var(--line-light);
    transition: background .22s ease, color .22s ease;
}
.project-row:hover,
.project-row:focus-visible { background: var(--row-accent, var(--violet)); color: var(--ink); }
.project-name { display: grid; grid-template-columns: 2rem 1fr; gap: .5rem 1rem; align-items: start; }
.project-index { padding-top: .45rem; font-size: .68rem; font-weight: 800; }
.project-name h3 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2.35rem, 3.75vw, 4.75rem);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .88;
}
.project-name small {
    grid-column: 2;
    width: max-content;
    padding: .2rem .45rem;
    border: 1px solid currentColor;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.project-description { margin: 0; max-width: 26rem; font-size: .88rem; line-height: 1.4; }
.project-disciplines { margin: 0; padding: 0; list-style: none; font-size: .68rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.project-disciplines li + li { margin-top: .18rem; }
.project-year { margin: 0; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.project-arrow {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: .125rem;
    background: var(--ink);
    color: var(--paper);
    font-size: 1rem;
    transition: transform .25s ease, background-color .2s ease, color .2s ease;
}
.project-row:hover .project-arrow { transform: translate(.16rem, -.16rem); background: var(--paper); color: var(--ink); }
.project-mobile-media { display: none; }
.project-hover-preview {
    position: fixed;
    z-index: 700;
    top: 0;
    left: 0;
    width: clamp(13rem, 19vw, 20rem);
    aspect-ratio: 1.45;
    overflow: hidden;
    background: var(--surface);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.92);
    transition: opacity .14s ease, transform .22s var(--ease);
    will-change: transform, left, top;
}
.project-hover-preview.is-visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.project-hover-preview img { width: 100%; height: 100%; object-fit: cover; }

.logo-strip { overflow: hidden; padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--ink); }
.logo-track {
    display: flex;
    width: max-content;
    gap: clamp(4rem, 9vw, 9rem);
    align-items: center;
    padding-inline: var(--page-pad);
    animation: logo-drift 28s linear infinite alternate;
}
.logo-strip:hover .logo-track,
.logo-strip:focus-within .logo-track { animation-play-state: paused; }
.logo-track a { display: grid; min-width: 8rem; place-items: center; }
.logo-track img { max-width: 10rem; max-height: 2.6rem; filter: grayscale(1) brightness(0) invert(1); opacity: .84; }
@keyframes logo-drift { to { transform: translateX(min(-18vw, -14rem)); } }

.services-section {
    padding: clamp(4.5rem, 7vw, 7rem) var(--page-pad) clamp(5rem, 8vw, 8rem);
    background: var(--paper);
    color: var(--ink);
}
.services-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(16rem, .75fr);
    gap: clamp(2rem, 7vw, 8rem);
    align-items: end;
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
}
.services-heading h2 { max-width: 12.5ch; font-size: clamp(2.8rem, 4.65vw, 5.4rem); }
.services-heading > p { max-width: 32rem; margin: 0 0 .35rem; color: #55575c; font-size: clamp(.95rem, 1.2vw, 1.1rem); }
.service-explorer {
    display: grid;
    grid-template-columns: minmax(20rem, .9fr) minmax(28rem, 1.1fr);
    gap: clamp(2rem, 5vw, 6rem);
    border-top: 1px solid var(--line-light);
    padding-top: clamp(1.5rem, 3vw, 3rem);
}
.service-visual { display: grid; grid-template-rows: minmax(20rem, 28vw) auto; align-self: start; }
.service-visual figure { margin: 0; overflow: hidden; background: #dedbd3; }
.service-visual figure img { width: 100%; height: 100%; object-fit: cover; transition: opacity .18s ease, transform .5s var(--ease); }
.service-visual figure img.is-changing { opacity: .25; transform: scale(1.015); }
.service-panels { min-height: 11.5rem; padding-top: 1.4rem; }
.service-panel[hidden] { display: none; }
.service-panel > p { max-width: 38rem; margin: 0; font-size: clamp(.95rem, 1.15vw, 1.08rem); }
.service-panel ul { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.2rem 0 1.5rem; padding: 0; list-style: none; }
.service-panel li { border: 1px solid rgba(9, 10, 12, .2); padding: .4rem .58rem; font-size: .64rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.service-panel a {
    display: inline-flex;
    min-height: 2.9rem;
    align-items: center;
    border: 1px solid var(--ink);
    border-radius: .125rem;
    padding: .65rem 1rem;
    background: linear-gradient(90deg, var(--acid) 0 50%, var(--ink) 50% 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: var(--paper);
    font-size: .8rem;
    font-weight: 800;
    box-shadow: none;
    transition: transform .24s var(--ease), background-position .42s var(--ease), color .2s ease, border-color .2s ease;
}
.service-panel a:hover { transform: translateY(-.08rem); border-color: var(--acid); background-position: 0 0; color: var(--ink); }
.service-tabs { border-top: 1px solid var(--line-light); }
.service-tab {
    display: grid;
    width: 100%;
    min-height: 5.75rem;
    grid-template-columns: 2.2rem 1fr;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid var(--line-light);
    padding: .9rem 1rem;
    background: transparent;
    text-align: left;
    transition: background-color .22s ease, color .22s ease;
}
.service-tab > span:first-child { align-self: start; padding-top: .15rem; color: #77797d; font-size: .62rem; font-weight: 800; }
.service-tab strong { display: block; font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 600; letter-spacing: -.045em; line-height: 1; }
.service-tab small { display: block; margin-top: .35rem; color: #66686c; font-size: .78rem; }
.service-tab:hover { background: #e8e4da; }
.service-tab.is-active { background: var(--ink); color: var(--paper); }
.service-tab.is-active > span:first-child,
.service-tab.is-active small { color: #b7bac1; }

.process-section { padding: clamp(4.5rem, 7vw, 7rem) var(--page-pad) clamp(4rem, 6vw, 6rem); background: var(--ink); }
.process-section > header {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, .8fr);
    gap: clamp(2rem, 7vw, 8rem);
    align-items: end;
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
}
.process-section h2 { max-width: 16ch; font-family: var(--font-serif); font-size: clamp(2.7rem, 3.7vw, 4.3rem); font-weight: 400; letter-spacing: -.04em; }
.process-section > header > p { max-width: 24rem; margin: 0 0 .35rem; color: #a6a9b0; }
.process-line { display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; padding: 0; border-block: 1px solid var(--line-dark); list-style: none; }
.process-line li { display: flex; min-width: 0; min-height: 7.5rem; flex-direction: column; justify-content: space-between; padding: 1rem; border-right: 1px solid var(--line-dark); }
.process-line li:first-child { border-left: 1px solid var(--line-dark); }
.process-line span { color: #777b84; font-size: .63rem; font-weight: 800; }
.process-line b { font-size: clamp(.95rem, 1.2vw, 1.2rem); letter-spacing: -.03em; overflow-wrap: anywhere; }

.contact-section {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(4rem, 9vw, 9rem);
    padding: clamp(6rem, 11vw, 11rem) var(--page-pad);
    background: #fff;
    color: var(--ink);
}
.contact-copy h2 {
    max-width: 10ch;
    margin: 0 0 2rem;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 3.8vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .93;
    text-wrap: balance;
}
.contact-copy > p { max-width: 26rem; color: #4f5257; }
.contact-copy > a { display: block; width: max-content; margin-top: 3rem; border-bottom: 1px solid; font-weight: 700; }
.contact-copy > small { display: block; margin-top: 1rem; color: #757980; }
.contact-form { align-self: center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.line-field { position: relative; padding-top: 1rem; }
.line-field label { display: block; color: #70757e; font-size: .65rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.line-field input,
.line-field select,
.line-field textarea {
    width: 100%;
    min-height: 3rem;
    border: 0;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1.05rem;
}
.line-field select { appearance: auto; }
.line-field textarea { min-height: 7rem; resize: vertical; padding-top: .8rem; }
.line-field input:focus,
.line-field select:focus,
.line-field textarea:focus { border-bottom-width: 2px; border-color: var(--violet); }
.line-field > span,
.field-error { display: block; min-height: 1.2rem; padding-top: .2rem; color: #a51b23; font-size: .7rem; }
.line-field [aria-invalid="true"] { border-color: #a51b23; }
.consent { display: grid; grid-template-columns: 1.15rem 1fr; gap: .65rem; align-items: start; margin-top: 1rem; color: #565960; font-size: .75rem; }
.consent input { width: 1rem; height: 1rem; margin: .05rem 0 0; accent-color: var(--violet); }
.form-submit {
    display: inline-flex;
    width: min(100%, 17rem);
    min-height: 3.4rem;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    border: 1px solid var(--violet-deep);
    border-radius: .125rem;
    padding: .8rem 1.2rem;
    background: linear-gradient(90deg, var(--acid) 0 50%, var(--violet-deep) 50% 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: #fff;
    font-size: .92rem;
    font-weight: 800;
    box-shadow: none;
    text-align: center;
    transition: transform .24s var(--ease), background-position .42s var(--ease), border-color .2s ease, color .2s ease;
}
.form-submit:hover { transform: translateY(-.08rem); border-color: var(--acid); background-position: 0 0; color: var(--ink); }
.form-submit:active { transform: translateY(0); box-shadow: none; }
.form-submit:disabled { opacity: .55; }
.form-status { display: none; margin-top: 1.1rem; padding: .85rem 1rem; font-size: .8rem; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: #e5f5bf; color: #233104; }
.form-status.is-error { background: #f8dbdc; color: #711016; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer {
    padding: clamp(3.5rem, 6vw, 6.5rem) var(--page-pad) 0;
    overflow: hidden;
    background: var(--ink);
}
.footer-wordmark {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(13rem, 22vw, 26rem);
    margin: 0;
    overflow: hidden;
    color: var(--paper);
    cursor: pointer;
}
.footer-wordmark__canvas {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.footer-wordmark__fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: .035em;
    font-size: clamp(7rem, 17.4vw, 20rem);
    letter-spacing: -.095em;
    line-height: .76;
    white-space: nowrap;
    transition: opacity .3s ease;
}
.footer-wordmark__fallback strong { font-weight: 700; }
.footer-wordmark__fallback > span { font-family: var(--font-serif); font-weight: 400; letter-spacing: -.07em; }
.footer-wordmark.is-particles-ready .footer-wordmark__fallback { opacity: 0; }
.footer-utility {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 2rem;
    align-items: center;
    min-height: 5rem;
    color: #8c9098;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-top: 1px solid var(--line-dark);
}
.footer-utility nav { display: flex; gap: 1rem; justify-content: center; }
.footer-utility a:hover { color: var(--acid); }

.reveal-up,
.reveal-clip { transition: opacity .65s var(--ease), transform .65s var(--ease), clip-path .75s var(--ease); }
.js.reveal-ready .reveal-up:not(.is-visible) { opacity: 0; transform: translateY(2rem); }
.js.reveal-ready .reveal-clip:not(.is-visible) { clip-path: inset(0 0 100% 0); }
.reveal-up.is-visible,
.reveal-clip.is-visible { opacity: 1; transform: none; clip-path: inset(0); }

.home-page.section-motion-ready main#conteudo > section:not(.hero) h2,
.home-page.section-motion-ready main#conteudo > section:not(.hero) .project-table,
.home-page.section-motion-ready main#conteudo > section:not(.hero) .logo-track,
.home-page.section-motion-ready main#conteudo > section:not(.hero) .service-explorer,
.home-page.section-motion-ready main#conteudo > section:not(.hero) .process-line,
.home-page.section-motion-ready main#conteudo > section:not(.hero) .contact-form {
    opacity: 0;
    transform: translateY(2.4rem);
    transition: opacity .72s var(--ease), transform .82s var(--ease);
}
.home-page.section-motion-ready main#conteudo > section:not(.hero) .project-table,
.home-page.section-motion-ready main#conteudo > section:not(.hero) .logo-track,
.home-page.section-motion-ready main#conteudo > section:not(.hero) .service-explorer,
.home-page.section-motion-ready main#conteudo > section:not(.hero) .process-line,
.home-page.section-motion-ready main#conteudo > section:not(.hero) .contact-form { transition-delay: .09s; }
.home-page.section-motion-ready main#conteudo > section.section-in-view h2,
.home-page.section-motion-ready main#conteudo > section.section-in-view .project-table,
.home-page.section-motion-ready main#conteudo > section.section-in-view .logo-track,
.home-page.section-motion-ready main#conteudo > section.section-in-view .service-explorer,
.home-page.section-motion-ready main#conteudo > section.section-in-view .process-line,
.home-page.section-motion-ready main#conteudo > section.section-in-view .contact-form { opacity: 1; transform: none; }

/* Página de case */
.case-page { background: var(--case-bg); color: var(--case-fg); }
.case-page .site-header { align-items: center; }
.case-page .header-pill--contact { backdrop-filter: none; }
.preview-banner { position: relative; z-index: 950; padding: .7rem 1rem; background: var(--acid); color: var(--ink); font-size: .75rem; font-weight: 800; text-align: center; }
.preview-banner + .site-header { top: 2.6rem; }
.case-hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr .55fr;
    gap: clamp(2rem, 5vw, 5rem);
    min-height: 64svh;
    align-items: start;
    padding: clamp(8rem, 15vw, 12rem) var(--page-pad) clamp(3rem, 7vw, 6rem);
}
.case-title-block { min-width: 0; }
.case-title-block h1 {
    inline-size: min(100%, 11.5ch);
    max-width: none;
    margin: 0;
    padding: 0 .06em .06em 0;
    font-family: var(--font-serif);
    font-size: clamp(3.25rem, 5.2vw, 6rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .94;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: manual;
    text-wrap: balance;
}
.case-return {
    display: inline-flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1.5rem, 2.6vw, 2.75rem);
    border: 1px solid var(--case-fg);
    border-radius: 0;
    padding: .7rem 1.1rem;
    background: var(--case-fg);
    color: var(--case-bg);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
    opacity: 1;
    transition: transform .24s var(--ease), background-color .2s ease, color .2s ease;
}
.case-return:hover { transform: translateY(-.12rem); background: transparent; color: var(--case-fg); }
.case-return:active { transform: translateY(0); }
.case-return:focus-visible { outline: 2px solid currentColor; outline-offset: .3rem; }
.case-summary { max-width: 34rem; font-size: clamp(1.15rem, 2vw, 1.75rem); letter-spacing: -.035em; }
.case-meta { margin: 0; font-size: .75rem; }
.case-meta div + div { margin-top: 1.4rem; }
.case-meta dt { margin-bottom: .25rem; font-weight: 800; text-transform: uppercase; }
.case-meta dd { margin: 0; }
.case-meta a { border-bottom: 1px solid; }
.case-gallery {
    display: grid;
    grid-template-columns: 1.55fr .85fr .85fr;
    gap: clamp(.75rem, 1.4vw, 1.5rem);
    padding: 0 var(--page-pad) clamp(5rem, 9vw, 9rem);
}
.case-media { margin: 0; overflow: hidden; background: rgba(255, 255, 255, .17); }
.case-media img,
.case-media video { width: 100%; height: 100%; object-fit: cover; }
.case-media--wide { grid-column: span 2; aspect-ratio: 1.55; }
.case-media--portrait { aspect-ratio: .72; }
.case-media--square { aspect-ratio: 1; align-self: end; }
.case-media:nth-child(3n + 4) { grid-column: 2 / span 2; aspect-ratio: 1.45; }
.case-media figcaption { padding-top: .5rem; font-size: .7rem; }
.case-story {
    padding: clamp(4.5rem, 8vw, 8rem) var(--page-pad);
    background: var(--ink);
    color: var(--paper);
}
.case-story__inner {
    display: grid;
    grid-template-columns: minmax(17rem, .72fr) minmax(0, 1.28fr);
    gap: clamp(4rem, 10vw, 11rem);
    width: min(100%, 82rem);
    margin-inline: auto;
    align-items: start;
}
.case-story__intro {
    position: sticky;
    top: 8rem;
}
.case-story__eyebrow,
.case-story__intro h2,
.case-story__item h3,
.case-story__disciplines h3 {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .065em;
    text-transform: uppercase;
}
.case-story__eyebrow { display: block; margin-bottom: 1.75rem; color: #8d9097; }
.case-story__intro h2 {
    margin: 0 0 1.35rem;
    font-family: var(--font-serif);
    font-size: clamp(2.45rem, 4vw, 4.25rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .96;
    text-transform: none;
}
.case-story__intro > p {
    max-width: 31rem;
    margin: 0;
    color: #c9c8c3;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    letter-spacing: -.012em;
    line-height: 1.65;
}
.case-story__grid {
    border-top: 1px solid var(--line-dark);
}
.case-story__item {
    display: grid;
    grid-template-columns: 2.5rem minmax(6.5rem, .34fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 2.4rem);
    align-items: start;
    padding: clamp(1.65rem, 2.6vw, 2.4rem) 0;
    border-bottom: 1px solid var(--line-dark);
}
.case-story__number {
    padding-top: .18rem;
    color: #666970;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .06em;
}
.case-story__item h3 { margin: .12rem 0 0; color: #f0eee8; }
.case-story__item p {
    max-width: 42rem;
    margin: 0;
    color: #bbbcbf;
    font-size: clamp(.95rem, 1.05vw, 1.08rem);
    letter-spacing: -.012em;
    line-height: 1.62;
}
.case-story__disciplines {
    grid-column: 2;
    display: grid;
    grid-template-columns: minmax(9rem, .34fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 2.4rem);
    padding-top: clamp(1.75rem, 2.8vw, 2.5rem);
}
.case-story__disciplines h3 { margin: .58rem 0 0 3.5rem; color: #8d9097; }
.case-story__disciplines ul { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.case-story__disciplines li {
    padding: .58rem .75rem;
    border: 1px solid var(--line-dark);
    color: #c9c8c3;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
}
.case-pagination {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line-light);
    background: var(--paper);
    color: var(--ink);
}
.case-pagination__link {
    display: flex;
    min-width: 0;
    min-height: clamp(10rem, 15vw, 14rem);
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.5rem, 3vw, 3rem) var(--page-pad);
    transition: background-color .28s ease, color .28s ease;
}
.case-pagination__link + .case-pagination__link { border-left: 1px solid var(--line-light); }
.case-pagination__link:only-child { grid-column: 1 / -1; }
.case-pagination__link--next { text-align: right; }
.case-pagination__label { font-size: .68rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.case-pagination__link b {
    max-width: 14ch;
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 3.2vw, 3.75rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: balance;
}
.case-pagination__link--next b { align-self: flex-end; }
.case-pagination__link:hover { background: var(--ink); color: var(--paper); }
.case-footer {
    padding: clamp(3rem, 6vw, 6rem) var(--page-pad) var(--page-pad);
    border-top: 1px solid var(--line-dark);
    background: var(--ink);
    color: var(--paper);
}
.case-footer__lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(19rem, .48fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: end;
    padding-bottom: clamp(4rem, 7vw, 6.5rem);
}
.case-footer__copy p { margin: 0 0 1rem; color: var(--acid); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.case-footer__copy h2 { max-width: 10ch; margin: 0; font-family: var(--font-serif); font-size: clamp(2.65rem, 4.5vw, 5.15rem); font-weight: 400; letter-spacing: -.045em; line-height: .94; text-wrap: balance; }
.case-footer__actions { display: grid; gap: .65rem; }
.case-footer__button {
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--paper);
    border-radius: 0;
    padding: .85rem 1rem;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
    transition: transform .24s var(--ease), background-color .22s ease, color .22s ease, border-color .22s ease;
}
.case-footer__button--primary { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.case-footer__button--close { background: var(--paper); color: var(--ink); }
.case-footer__button:hover { transform: translateY(-.12rem); border-color: var(--paper); background: transparent; color: var(--paper); }
.case-footer__button:active { transform: translateY(0); }
.case-footer__utility { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--line-dark); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; }
.case-footer__utility a:hover { color: var(--acid); }
.not-found main { display: grid; min-height: 100svh; place-content: center; padding: 2rem; text-align: center; }
.not-found p { margin: 0; color: var(--acid); font-weight: 800; }
.not-found h1 { margin: .5rem 0 2rem; font-size: clamp(3rem, 8vw, 8rem); letter-spacing: -.07em; }
.not-found a { border-bottom: 1px solid; }

@media (max-width: 74rem) {
    .hero-title { width: 100%; font-size: clamp(3.15rem, 5.1vw, 5rem); }
    .hero-copy { right: auto; left: clamp(16.5rem, 28vw, 20.5rem); width: min(25rem, 36vw); }
    .project-row { grid-template-columns: minmax(16rem, 1.5fr) minmax(11rem, 1fr) 8rem 2.5rem; }
    .project-disciplines { display: none; }
    .process-line { grid-template-columns: repeat(3, 1fr); }
    .process-line li:nth-child(-n+3) { border-bottom: 1px solid var(--line-dark); }
    .process-line li:nth-child(3n + 1) { border-left: 1px solid var(--line-dark); }
    .case-hero { grid-template-columns: 1.1fr 1fr; }
    .case-meta { grid-column: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
    .case-meta div + div { margin-top: 0; }
}

@media (max-width: 64rem) {
    .hero-copy { position: static; width: min(100%, 31rem); margin-top: 1.5rem; }
    .hero-lower { margin-top: 2rem; }
}

@media (max-width: 54rem) {
    .section-intro { grid-template-columns: 1fr; }
    .section-intro > p:last-child { align-self: auto; }
    .services-heading,
    .process-section > header { grid-template-columns: 1fr; }
    .hero { min-height: 100svh; }
    .hero-title { width: 100%; font-size: clamp(2.9rem, 6.6vw, 4rem); }
    .hero-copy { position: static; width: min(100%, 31rem); margin-top: 1.5rem; }
    .hero-lower { margin: 2rem 0 0; }
    .hero-actions { justify-content: flex-start; }
    .hero-project { position: relative; right: auto; bottom: auto; width: min(68vw, 31rem); height: clamp(11rem, 30vw, 17rem); margin: 2.8rem 0 1rem auto; }
    .services-heading > p,
    .process-section > header > p { margin-top: 1.2rem; }
    .service-explorer { grid-template-columns: 1fr; }
    .service-selector { order: 1; }
    .service-visual { order: 2; grid-template-rows: minmax(22rem, 60vw) auto; }
    .contact-section { grid-template-columns: 1fr; }
    .footer-utility { grid-template-columns: 1fr 1fr; padding: 1.5rem 0; }
    .footer-utility nav { justify-content: end; }
    .footer-utility > span:nth-of-type(2) { grid-column: 1; }
    .footer-utility > a { text-align: right; }
    .case-hero { grid-template-columns: 1fr; }
    .case-title-block h1 { inline-size: min(100%, 13ch); font-size: clamp(3rem, 7.6vw, 4.5rem); }
    .case-meta { grid-column: auto; }
    .case-footer__lead { grid-template-columns: 1fr; gap: 2.5rem; }
    .case-gallery { grid-template-columns: 1.4fr 1fr; }
    .case-media--wide { grid-column: span 2; }
    .case-media:nth-child(3n + 4) { grid-column: span 2; }
    .case-story__inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .case-story__intro { position: static; }
    .case-story__intro > p { max-width: 38rem; }
    .case-story__disciplines { grid-column: auto; }
}

@media (max-width: 43rem) {
    :root { --page-pad: 1rem; }
    .site-header { top: 1rem; }
    .site-logo { font-size: .92rem; }
    .header-actions { gap: .35rem; }
    .header-pill { min-height: 2.85rem; padding-inline: .9rem; font-size: .68rem; }
    .header-actions .header-pill--contact { display: none; }
    .menu-drawer { inset: 0; width: 100%; border: 0; border-radius: 0; padding: 1rem; }
    .drawer-link { min-height: 3.55rem; font-size: 1.5rem; }
    .drawer-foot { grid-template-columns: 1fr; }
    .drawer-foot div { display: flex; text-align: left; }
    .hero { min-height: 100svh; padding-block: 6.5rem 3rem; }
    .hero-title { width: 100%; font-size: clamp(2.45rem, 9.7vw, 3.2rem); line-height: .92; text-wrap: balance; }
    .hero-title .hero-line { display: inline; width: auto; white-space: normal; }
    .hero-title .hero-line::after { content: " "; }
    .hero-lower { margin: 1.6rem 0 0; }
    .hero-copy { max-width: 23rem; }
    .hero-actions { justify-content: flex-start; }
    .hero-project { position: relative; right: auto; bottom: auto; width: 68vw; height: 10rem; margin: 2.4rem 0 4rem auto; }
    .section-intro { padding-block: 5rem 3rem; }
    .section-intro h2,
    .services-heading h2,
    .process-section h2 { font-size: clamp(2.65rem, 12vw, 3.8rem); }
    .project-hover-preview { display: none; }
    .project-row {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        padding: 1rem;
        align-items: start;
    }
    .project-mobile-media { display: block; grid-column: 1 / -1; margin: 0 0 .65rem; aspect-ratio: 1.55; overflow: hidden; }
    .project-mobile-media img { width: 100%; height: 100%; object-fit: cover; }
    .project-name { grid-column: 1; grid-template-columns: 1fr; }
    .project-index { display: none; }
    .project-name h3 { font-size: clamp(2.25rem, 10.5vw, 3.35rem); }
    .project-name small { grid-column: 1; }
    .project-description { grid-column: 1 / -1; font-size: .84rem; }
    .project-year { grid-column: 1; }
    .project-arrow { grid-column: 2; grid-row: 2; }
    .services-section { padding-top: 5rem; }
    .services-heading h2 { font-size: clamp(2.65rem, 11.7vw, 3.75rem); }
    .service-tab { min-height: 5.2rem; grid-template-columns: 1.7rem 1fr; padding-inline: .65rem; }
    .service-tab strong { font-size: clamp(1.2rem, 6.2vw, 1.75rem); }
    .service-visual { grid-template-rows: minmax(16rem, 70vw) auto; }
    .service-panels { min-height: 13rem; }
    .process-section h2 { font-size: clamp(2.55rem, 11.2vw, 3.55rem); }
    .process-line { grid-template-columns: repeat(2, 1fr); }
    .process-line li { min-height: 6rem; border-bottom: 1px solid var(--line-dark); }
    .process-line li:nth-child(odd) { border-left: 1px solid var(--line-dark); }
    .process-line li:nth-last-child(-n + 2) { border-bottom: 0; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .contact-section { padding-block: 5rem; }
    .contact-copy h2 { font-size: clamp(2.5rem, 10.5vw, 3.5rem); }
    .site-footer { padding-top: 4rem; }
    .footer-wordmark { height: clamp(8.5rem, 34vw, 12.5rem); }
    .footer-wordmark__fallback { font-size: 20vw; }
    .footer-utility { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
    .footer-utility nav { order: 3; width: 100%; flex-wrap: wrap; justify-content: flex-start; }
    .case-hero { min-height: 0; padding-top: 7rem; }
    .case-title-block h1 { inline-size: 100%; font-size: clamp(2.65rem, 11.5vw, 3.75rem); letter-spacing: -.035em; line-height: .96; }
    .case-meta { grid-template-columns: 1fr 1fr; }
    .case-gallery { grid-template-columns: 1fr; }
    .case-media--wide,
    .case-media:nth-child(3n + 4) { grid-column: 1; }
    .case-media--wide { aspect-ratio: 1.25; }
    .case-media--portrait { aspect-ratio: .8; }
    .case-story { padding-block: 3.75rem; }
    .case-story__inner { gap: 2.75rem; }
    .case-story__eyebrow { margin-bottom: 1.2rem; }
    .case-story__intro h2 { margin-bottom: 1rem; font-size: clamp(2.35rem, 11vw, 3.35rem); }
    .case-story__intro > p { max-width: 31rem; font-size: .98rem; }
    .case-story__item { grid-template-columns: 1.8rem minmax(0, 1fr); gap: .65rem 1rem; padding-block: 1.55rem; }
    .case-story__item h3 { grid-column: 2; margin-top: 0; }
    .case-story__item p { grid-column: 2; }
    .case-story__item p { font-size: .98rem; line-height: 1.55; }
    .case-story__disciplines { grid-template-columns: 1fr; gap: 1rem; padding-top: 1.75rem; }
    .case-story__disciplines h3 { margin: 0; }
    .case-pagination { grid-template-columns: 1fr; }
    .case-pagination__link { min-height: 10rem; }
    .case-pagination__link + .case-pagination__link { border-top: 1px solid var(--line-light); border-left: 0; }
    .case-pagination__link b { max-width: 11ch; font-size: clamp(1.85rem, 9vw, 3rem); }
    .case-footer__copy h2 { max-width: 11ch; font-size: clamp(2.5rem, 12vw, 3.8rem); }
    .case-footer__utility { align-items: flex-start; }
}

@media (hover: none), (pointer: coarse) {
    .project-hover-preview { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .js .hero-title .hero-word > span { transform: none; }
    .js.reveal-ready .reveal-up:not(.is-visible),
    .js.reveal-ready .reveal-clip:not(.is-visible) { opacity: 1; transform: none; clip-path: none; }
    .logo-track { animation: none; }
}
