:root {
  --paper: #030407;
  --paper-deep: #080a10;
  --ink: #f7f7fb;
  --muted: #8e91a4;
  --line: rgba(247, 247, 251, .12);
  --signal: #5b5bf6;
  --signal-soft: #8b8bff;
  --signal-dark: #8b8bff;
  --violet: #a78bfa;
  --fresh: #34d399;
  --night: #020306;
  --night-2: #070911;
  --contact-bg: #05060b;
  --white: #fffdf8;
  --display: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --page: min(1380px, calc(100vw - 64px));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(118deg, rgba(91, 91, 246, .13), transparent 42%),
    linear-gradient(242deg, rgba(52, 211, 153, .06), transparent 46%),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 100%, 100% 100%, 100% 12px;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { color: var(--white); background: var(--signal); }

.cursor-glow {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(91,91,246,.16) 46% 54%, transparent 54% 100%),
    linear-gradient(0deg, transparent 0 46%, rgba(167,139,250,.11) 46% 54%, transparent 54% 100%);
  filter: blur(18px);
  transform: translate3d(-50%, -50%, 0) rotate(-10deg);
  transition: opacity .35s;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow { opacity: 1; }
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--night-2);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--signal), var(--violet), var(--fresh));
  box-shadow: 0 0 18px rgba(91,91,246,.35);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform .35s var(--ease), background .35s, border-color .35s;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 15, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: var(--page);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.045em;
  font-size: 1.08rem;
}

.brand-mark {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--signal-soft), var(--signal));
  box-shadow: 0 8px 24px rgba(91,91,246,.28);
  border-radius: 50% 50% 5% 50%;
  transform: rotate(-15deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.nav-contact {
  position: relative;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--night-2);
  text-decoration: none;
  transition: color .25s, background .25s, transform .25s;
}
.nav-contact:hover { color: var(--white); background: var(--signal); box-shadow: 0 12px 28px rgba(91,91,246,.28); transform: translateY(-2px); }

.menu-toggle { display: none; }
.mobile-panel { display: none; }

.hero {
  position: relative;
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding: 150px 0 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr);
  align-items: end;
  gap: clamp(42px, 7vw, 118px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 108px auto auto min(42vw, 620px);
  width: clamp(220px, 28vw, 440px);
  height: clamp(220px, 28vw, 440px);
  border: 1px solid rgba(91,91,246,.18);
  border-radius: 2px;
  background:
    linear-gradient(135deg, rgba(91,91,246,.16), rgba(167,139,250,.08)),
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(91,91,246,.11) 14px 15px);
  filter: saturate(130%);
  opacity: .68;
  animation: drift 13s ease-in-out infinite;
  pointer-events: none;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fresh);
  box-shadow: 0 0 0 5px rgba(52,211,153,.16);
  animation: breathe 2.2s ease-in-out infinite;
}

.hero-title {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5rem, 10.5vw, 10rem);
  font-weight: 400;
  line-height: .77;
  letter-spacing: -.065em;
}

.hero-title .line { display: block; overflow: hidden; padding: .08em 0; }
.hero-title .line > span { display: block; transform: translateY(110%); animation: title-in 1s var(--ease) forwards; }
.hero-title .line:nth-child(2) > span { animation-delay: .12s; }
.hero-title em {
  background: linear-gradient(100deg, var(--signal), var(--violet), var(--fresh));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
}

.hero-aside { padding-bottom: 10px; }
.hero-aside p {
  margin: 0 0 30px;
  max-width: 390px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.text-link .arrow { transition: transform .3s var(--ease); }
.text-link:hover { color: var(--signal-dark); }
.text-link:hover .arrow { transform: translateX(7px); }

.hero-foot {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-cue { display: flex; align-items: center; gap: 10px; }
.scroll-cue::before { content: ""; width: 40px; height: 1px; background: currentColor; animation: cue 1.8s infinite; }

.ticker { overflow: hidden; padding: 18px 0; color: var(--white); background: linear-gradient(90deg, var(--night), var(--signal-dark), var(--night)); transform: rotate(-1deg) scale(1.02); box-shadow: 0 18px 44px rgba(10,10,15,.18); }
.ticker-track { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker-track span { padding: 0 28px; white-space: nowrap; font-family: var(--display); font-size: 1.35rem; font-style: italic; }
.ticker-track span::after { content: "✦"; margin-left: 56px; color: var(--fresh); font-family: var(--sans); font-style: normal; }

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1.55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(55px, 7vw, 95px);
}
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7.8vw, 8rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.055em;
}
.section-heading h2 em { color: var(--signal); font-weight: 400; }
.section-heading p:not(.eyebrow) { max-width: 520px; margin: 24px 0 0; color: var(--muted); line-height: 1.7; }

.project-list { border-top: 1px solid var(--line); }
.project {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(220px, .65fr) minmax(280px, 1.35fr) 42px;
  align-items: center;
  gap: clamp(22px, 4vw, 65px);
  min-height: 188px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .45s var(--ease), background .35s;
}
.project::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background: var(--night-2);
  opacity: 0;
  transition: opacity .35s;
}
.project:hover::before { opacity: 1; }
.project-number { color: var(--muted); font-size: .76rem; letter-spacing: .1em; }
.project-image { overflow: hidden; aspect-ratio: 16 / 9; background: var(--paper-deep); }
.project-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1); transition: transform .7s var(--ease), filter .4s; }
.project:hover { padding-left: 18px; padding-right: 18px; }
.project:hover .project-image img { transform: scale(1.055); filter: saturate(1.12) contrast(1.03); }
.project-copy h3 { margin: 0 0 12px; font-family: var(--display); font-size: clamp(2rem, 3.7vw, 4.3rem); font-weight: 400; line-height: .95; letter-spacing: -.035em; }
.project-copy p { max-width: 590px; margin: 0 0 18px; color: var(--muted); line-height: 1.55; }
.project-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .69rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.project-arrow { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; font-size: 1.2rem; transition: color .3s, background .3s, transform .4s var(--ease); }
.project:hover .project-arrow { color: var(--white); background: var(--signal); border-color: var(--signal); box-shadow: 0 12px 28px rgba(91,91,246,.28); transform: rotate(-42deg); }

.night-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(91,91,246,.18), transparent 36%),
    linear-gradient(315deg, rgba(52,211,153,.08), transparent 30%),
    var(--night);
}
.night-section .section { padding-bottom: 130px; }
.night-section .eyebrow, .night-section .service-index { color: #aaa59d; }
.night-section .section-heading p:not(.eyebrow) { color: #aaa59d; }

.services { border-top: 1px solid rgba(255,255,255,.22); }
.service {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 90px minmax(200px, .75fr) minmax(300px, 1.25fr);
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: transform .35s var(--ease), background .35s, padding .35s var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(91,91,246,.16), rgba(167,139,250,.08), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.service:hover { padding-left: 18px; background: rgba(255,255,255,.035); }
.service:hover::before { opacity: 1; }
.service > * { position: relative; z-index: 1; }
.service h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.2vw, 3.9rem); font-weight: 400; letter-spacing: -.03em; }
.service p { max-width: 570px; margin: 8px 0 0; color: #aaa59d; line-height: 1.7; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { min-height: 330px; padding: 28px clamp(20px, 2.6vw, 40px) 32px 0; border-right: 1px solid var(--line); transition: background .35s, transform .35s var(--ease); }
.process-step:hover { background: rgba(91,91,246,.055); transform: translateY(-4px); }
.process-step:not(:first-child) { padding-left: clamp(20px, 2.6vw, 40px); }
.process-step:last-child { border-right: 0; }
.process-num { display: block; margin-bottom: 80px; color: var(--signal); font-size: .78rem; font-weight: 700; letter-spacing: .1em; }
.process-step h3 { margin: 0 0 16px; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.process-step p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .92rem; }

.about-slice { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(45px, 9vw, 140px); align-items: center; }
.portrait-wrap { position: relative; }
.portrait-wrap::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 45%; height: 45%; border-right: 2px solid var(--signal); border-bottom: 2px solid var(--violet); }
.portrait-wrap img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(82%) contrast(1.04) saturate(1.08); transition: filter .45s, transform .7s var(--ease); }
.portrait-wrap:hover img { filter: grayscale(18%) contrast(1.03) saturate(1.18); transform: scale(1.015); }
.about-copy h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(3.7rem, 7vw, 7rem); font-weight: 400; line-height: .86; letter-spacing: -.05em; }
.about-copy h2 em { color: var(--signal); font-weight: 400; }
.about-copy p { max-width: 650px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }

.faq { max-width: 980px; margin-left: auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: grid; grid-template-columns: 42px 1fr 28px; gap: 18px; align-items: center; padding: 27px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: clamp(1.55rem, 2.6vw, 2.4rem); }
.faq summary::-webkit-details-marker { display: none; }
.faq-number { color: var(--signal); font-family: var(--sans); font-size: .7rem; font-weight: 700; }
.faq-plus { font-family: var(--sans); font-size: 1.5rem; transition: transform .35s var(--ease); }
.faq details[open] .faq-plus { transform: rotate(45deg); }
.faq details { transition: background .3s, padding .3s var(--ease); }
.faq details[open] { padding-left: 18px; background: rgba(91,91,246,.055); }
.faq-answer { max-width: 700px; margin: -5px 0 30px 60px; color: var(--muted); line-height: 1.7; }

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 12vw, 170px) 0 70px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(91,91,246,.22), transparent 36%),
    linear-gradient(315deg, rgba(52,211,153,.12), transparent 38%),
    var(--contact-bg);
}
.contact-inner { width: var(--page); margin: 0 auto; }
.contact h2 { max-width: 1100px; margin: 0 0 55px; font-family: var(--display); font-size: clamp(4.5rem, 10vw, 10rem); font-weight: 400; line-height: .79; letter-spacing: -.06em; }
.contact h2 em { color: var(--fresh); font-weight: 400; text-shadow: 0 16px 50px rgba(52,211,153,.18); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 9vw, 130px); }
.contact-note { color: rgba(244,244,248,.72); line-height: 1.7; }
.contact-note strong { color: var(--white); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .69rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(244,244,248,.58);
  border-radius: 0;
  padding: 12px 0 13px;
  outline: 0;
  color: var(--white);
  background: transparent;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,244,248,.48); }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-width: 2px; border-bottom-color: var(--signal-soft); }
.field select option { color: var(--white); background: var(--night-2); }
.submit-button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  padding: 16px 23px;
  color: var(--white);
  background: var(--signal);
  cursor: pointer;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s, background .25s;
}
.submit-button:hover { background: var(--signal-soft); box-shadow: 0 12px 30px rgba(91,91,246,.30); transform: translateY(-2px); }

.site-footer { color: #a9a59d; background: var(--night); }
.footer-inner { width: var(--page); margin: 0 auto; padding: 34px 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; font-size: .75rem; }
.footer-inner .brand { color: var(--white); }
.socials { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.socials a { text-decoration: none; }
.socials a:hover { color: var(--white); }
.footer-end { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; justify-self: end; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-copy { justify-self: end; }

.reveal { opacity: 0; transform: translateY(38px) scale(.985); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* Página Sobre */
.about-hero { width: var(--page); margin: 0 auto; padding: 160px 0 100px; }
.about-hero h1 { max-width: 1180px; margin: 0; font-family: var(--display); font-size: clamp(4.8rem, 10vw, 10.5rem); font-weight: 400; line-height: .8; letter-spacing: -.06em; }
.about-hero h1 em { color: var(--signal); font-weight: 400; }
.about-intro { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(45px, 9vw, 130px); align-items: start; margin-top: 90px; }
.about-intro .lead { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.7vw, 4rem); line-height: 1.02; }
.about-intro .body-copy { columns: 2; column-gap: 42px; color: var(--muted); line-height: 1.8; }
.about-intro .body-copy p { margin-top: 0; break-inside: avoid; }
.photo-story { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: auto auto; gap: 18px; }
.photo-story figure { margin: 0; overflow: hidden; background: var(--paper-deep); }
.photo-story figure:first-child { grid-row: 1 / 3; }
.photo-story img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.photo-story figure:hover img { transform: scale(1.025); }
.photo-story figure:first-child img { min-height: 720px; }
.photo-story figure:not(:first-child) img { min-height: 350px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.principle { min-height: 300px; padding: 28px 34px 40px 0; border-right: 1px solid var(--line); }
.principle:not(:first-child) { padding-left: 34px; }
.principle:last-child { border-right: 0; }
.principle span { color: var(--signal); font-size: .74rem; font-weight: 700; }
.principle h2 { margin: 75px 0 15px; font-family: var(--display); font-size: 2.4rem; font-weight: 400; }
.principle p { margin: 0; color: var(--muted); line-height: 1.65; }
.stack-line { display: flex; flex-wrap: wrap; gap: 12px; }
.stack-line span { padding: 11px 15px; border: 1px solid var(--line); background: rgba(255,255,255,.045); font-size: .78rem; font-weight: 600; transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease); }
.stack-line span:hover { color: var(--white); border-color: transparent; background: var(--signal); transform: translateY(-3px); }

@keyframes title-in { to { transform: translateY(0); } }
@keyframes breathe { 50% { transform: scale(.75); opacity: .7; } }
@keyframes cue { 50% { transform: scaleX(.55); transform-origin: left; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(18px, 24px, 0) rotate(6deg); }
}

@media (max-width: 980px) {
  :root { --page: min(100% - 40px, 760px); }
  .nav { grid-template-columns: 1fr auto; min-height: 72px; }
  .nav-links, .nav-contact { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 18px; height: 1px; background: var(--ink); transition: transform .3s, opacity .3s; }
  .menu-toggle span { margin: 4px 0; }
  .menu-open .menu-toggle::before { transform: translateY(5px) rotate(45deg); }
  .menu-open .menu-toggle span { opacity: 0; }
  .menu-open .menu-toggle::after { transform: translateY(-5px) rotate(-45deg); }
  .mobile-panel { position: fixed; z-index: 90; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 80px 20px 40px; color: var(--white); background: var(--night); transform: translateY(-105%); transition: transform .55s var(--ease); }
  .menu-open .mobile-panel { transform: translateY(0); }
  .mobile-panel a { width: var(--page); margin: 0 auto; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.18); text-decoration: none; font-family: var(--display); font-size: clamp(2.4rem, 10vw, 4.4rem); }
  .mobile-panel a:last-child { margin-top: 30px; border: 0; color: var(--signal); font-family: var(--sans); font-size: .85rem; font-weight: 700; text-transform: uppercase; }
  .hero { grid-template-columns: 1fr; align-content: end; min-height: 830px; padding-top: 130px; gap: 40px; }
  .hero-title { font-size: clamp(4.8rem, 16vw, 8rem); }
  .hero-aside { max-width: 540px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .project { grid-template-columns: 42px 210px 1fr 38px; gap: 22px; }
  .project-copy p { display: none; }
  .service { grid-template-columns: 55px 1fr; }
  .service p { grid-column: 2; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-slice, .contact-grid { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 520px; }
  .about-intro { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 32px); }
  .hero { min-height: 760px; }
  .hero-title { font-size: clamp(4rem, 21vw, 6.8rem); line-height: .78; }
  .hero-foot { align-items: flex-start; gap: 30px; }
  .hero-foot > span:first-child { display: none; }
  .ticker { transform: rotate(-2deg) scale(1.04); }
  .section { padding: 90px 0; }
  .section-heading h2 { font-size: clamp(3.5rem, 18vw, 5.6rem); }
  .project { grid-template-columns: 30px 1fr 38px; min-height: 0; padding: 24px 0; }
  .project-image { grid-column: 2 / -1; grid-row: 1; }
  .project-number { grid-column: 1; grid-row: 1; align-self: start; }
  .project-copy { grid-column: 2 / -1; }
  .project-copy h3 { font-size: 2.4rem; }
  .project-copy p { display: block; font-size: .9rem; }
  .project-arrow { position: absolute; right: 0; bottom: 22px; }
  .project-meta { padding-right: 48px; }
  .service { grid-template-columns: 36px 1fr; gap: 18px; padding: 26px 0; }
  .service h3 { font-size: 2.35rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:not(:first-child) { min-height: auto; padding: 24px 0 35px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-num { margin-bottom: 40px; }
  .faq summary { grid-template-columns: 30px 1fr 20px; font-size: 1.55rem; }
  .faq-answer { margin-left: 48px; }
  .contact h2 { font-size: clamp(4.2rem, 20vw, 6.5rem); }
  .contact-form { grid-template-columns: 1fr; }
  .field, .field.full, .submit-button { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner .brand, .socials, .footer-copy, .footer-end { justify-self: center; align-items: center; }
  .about-hero { padding-top: 130px; }
  .about-hero h1 { font-size: clamp(4.6rem, 21vw, 7rem); }
  .about-intro { margin-top: 60px; }
  .about-intro .body-copy { columns: 1; }
  .photo-story { grid-template-columns: 1fr 1fr; }
  .photo-story figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .photo-story figure:first-child img { min-height: 520px; }
  .photo-story figure:not(:first-child) img { min-height: 220px; }
  .principles { grid-template-columns: 1fr; }
  .principle, .principle:not(:first-child) { min-height: auto; padding: 25px 0 32px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle h2 { margin-top: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-title .line > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
}





/* Hero exportado, limpo para produção */
.hero.hero-reveal {
  --hero-x: 50%;
  --hero-y: 50%;
  --hero-r: clamp(150px, 18vw, 270px);
  position: relative;
  display: block;
  width: 100%;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #050507;
  cursor: none;
}

.hero.hero-reveal::before { content: none; }

.hero-reveal__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  user-select: none;
  pointer-events: none;
}

.hero-reveal__bottom {
  z-index: 1;
  filter: saturate(.9) contrast(1.08) brightness(.62);
}

.hero-reveal__top {
  z-index: 2;
  filter: grayscale(1) contrast(1.08) brightness(.92);
  clip-path: circle(0 at var(--hero-x) var(--hero-y));
  transition: clip-path .18s linear, filter .4s ease;
}

.hero-reveal.is-ready .hero-reveal__top,
.hero-reveal.is-pointing .hero-reveal__top {
  clip-path: circle(var(--hero-r) at var(--hero-x) var(--hero-y));
}

.hero-reveal__grain,
.hero-reveal__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-reveal__grain {
  z-index: 3;
  opacity: .14;
  mix-blend-mode: screen;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 4px);
}

.hero-reveal__vignette {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(5,5,7,.74) 0%, rgba(5,5,7,.08) 38%, rgba(5,5,7,.82) 100%),
    linear-gradient(90deg, rgba(5,5,7,.72) 0%, rgba(5,5,7,0) 32%, rgba(5,5,7,.68) 100%);
  box-shadow: inset 0 0 180px rgba(0,0,0,.82);
}

.hero-reveal__cursor {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  width: var(--hero-r);
  height: var(--hero-r);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(91,91,246,.22), 0 0 38px rgba(91,91,246,.28);
  transform: translate3d(50vw, 50vh, 0) translate(-50%, -50%);
  opacity: .72;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity .25s ease, width .25s ease, height .25s ease;
}

.hero-reveal__cursor::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fresh);
  box-shadow: 0 0 22px var(--fresh);
  transform: translate(-50%, -50%);
}

.hero-reveal__content {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(96px, 12vw, 150px) var(--gutter) clamp(120px, 10vw, 160px);
  text-align: center;
  pointer-events: none;
}

.hero-reveal__content .hero-kicker {
  justify-content: center;
  margin-bottom: 26px;
  color: rgba(255,255,255,.82);
  text-shadow: 0 8px 32px rgba(0,0,0,.36);
  pointer-events: auto;
}

.hero-reveal__title {
  max-width: none;
  font-family: var(--sans);
  font-size: clamp(4.8rem, 14vw, 14rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.09em;
  color: transparent;
  -webkit-text-stroke: clamp(1px, .13vw, 2px) rgba(255,255,255,.92);
  text-shadow: 0 24px 80px rgba(0,0,0,.42);
  text-transform: uppercase;
}

.hero-reveal__title .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(34px) rotateX(48deg);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: transform, opacity;
}

.hero-reveal__title .ltr.in {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.hero-reveal__title .space { width: .22em; }

.hero-reveal__subtitle {
  margin: 22px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 12px 42px rgba(0,0,0,.45);
}

.hero-reveal__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(10,10,15,.34);
  backdrop-filter: blur(14px);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  pointer-events: auto;
  transition: border-color .3s ease, background .3s ease, transform .3s var(--ease);
}

.hero-reveal__cta:hover {
  border-color: rgba(52,211,153,.7);
  background: rgba(52,211,153,.14);
}

.hero-reveal__foot {
  position: absolute;
  z-index: 4;
  left: 50%;
  right: auto;
  bottom: 28px;
  width: var(--page);
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255,255,255,.68);
  border-top-color: rgba(255,255,255,.18);
}

@media (max-width: 980px) {
  .hero.hero-reveal { min-height: 100svh; padding: 0; }
  .hero-reveal__title { font-size: clamp(4rem, 17vw, 9rem); }
}

@media (max-width: 680px) {
  .hero.hero-reveal { min-height: 92svh; }
  .hero-reveal__content { align-items: flex-start; text-align: left; padding-inline: var(--gutter); }
  .hero-reveal__content .hero-kicker { justify-content: flex-start; }
  .hero-reveal__title { font-size: clamp(3.5rem, 18vw, 6.4rem); letter-spacing: -.075em; }
  .hero-reveal__subtitle { max-width: 330px; font-size: .82rem; line-height: 1.7; }
  .hero-reveal__foot { bottom: 20px; }
  .hero-reveal__foot .scroll-cue::before { width: 24px; }
}

@media (hover: none), (pointer: coarse) {
  .hero.hero-reveal { cursor: auto; }
  .hero-reveal__cursor { display: none; }
  .hero-reveal__top { clip-path: inset(0); opacity: .82; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-reveal__top { clip-path: inset(0); opacity: .78; }
  .hero-reveal__cursor { display: none; }
  .hero-reveal__title .ltr { opacity: 1; transform: none; }
}

/* Hero final exportado */
.hero.hero-final {
  --accent: var(--fresh);
  position: relative;
  display: block;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #050507;
  cursor: none;
  touch-action: none;
}

.hero.hero-final::before { content: none; }

.hero-final__bottom,
.hero-final__stage,
.hero-final__fx,
.hero-final__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-final__bottom {
  z-index: 1;
  object-fit: cover;
  filter: saturate(.9) contrast(1.06) brightness(.64);
  user-select: none;
  pointer-events: none;
}

.hero-final__stage {
  z-index: 2;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

.hero-final__fx {
  z-index: 4;
  display: block;
  pointer-events: none;
}

.hero-final__content {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 96px);
  text-align: center;
  pointer-events: none;
  mix-blend-mode: difference;
  perspective: 1000px;
}

.hero-final__inner { will-change: transform; }

.hero-final__title {
  margin: 0;
  max-width: none;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(48px, 13vw, 220px);
  line-height: .9;
  letter-spacing: -.04em;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-final__title.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  text-shadow: none;
}

.hero-final__title .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em);
  will-change: transform;
  transition: transform .1s linear;
}

.hero-final__title .ltr.in {
  opacity: 1;
  transform: translateY(0);
  transition: transform .8s cubic-bezier(.19,1,.22,1), opacity .8s ease;
}

.hero-final__title .space { width: .32em; }
.hero-final__title .word-wrap { display: inline-block; }

.hero-final__subtitle {
  min-height: 1.2em;
  margin: 14px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: .02em;
}

.hero-final__subtitle .word {
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
}

.hero-final__cursor {
  position: fixed;
  z-index: 6;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .25s, height .25s, background .25s, opacity .25s;
}

.hero-final__cursor.mag {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.08);
}

.hero-final__overlay {
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}

.hero-final__grain {
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 4px);
  background-size: 180px 180px;
  mix-blend-mode: overlay;
  animation: final-grain .5s steps(4) infinite;
}

.hero-final__grain.on { opacity: .28; }
.hero-final__vignette.on {
  opacity: 1;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(0,0,0,.78) 100%);
}

@keyframes final-grain {
  0% { background-position: 0 0; }
  25% { background-position: -40px 20px; }
  50% { background-position: 30px -30px; }
  75% { background-position: -20px -40px; }
  100% { background-position: 20px 30px; }
}

@media (max-width: 680px) {
  .hero.hero-final { cursor: auto; touch-action: pan-y; }
  .hero-final__cursor { display: none; }
  .hero-final__content { padding: 20px 16px 88px; }
  .hero-final__title {
    white-space: normal;
    font-size: clamp(40px, 16vw, 90px);
  }
  .hero-final__subtitle { font-size: 14px; }
}

@media (hover: none), (pointer: coarse) {
  .hero.hero-final { cursor: auto; touch-action: pan-y; }
  .hero-final__cursor { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-final__grain { animation: none; }
  .hero-final__title .ltr { opacity: 1; transform: none; }
}
