:root {
  --black: #06080a;
  --panel: #0c0f12;
  --white: #f5f5f2;
  --muted: #92989f;
  --line: rgba(255, 255, 255, .15);
  --cyan: #00c8f8;
  --pink: #f00082;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

.admin-bar .site-header {
  top: 32px;
}

.project-visual.has-image,
.project-featured-cover {
  background-size: cover;
  background-position: center;
}

.project-visual.has-image::before {
  background: rgba(6, 8, 10, .12);
  inset: 0;
  width: auto;
  height: auto;
  transform: none;
}

.project-content {
  display: block;
}

.project-content .entry-content {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
}

.project-page+footer {
  background: var(--black);
}

body>footer {
  background: var(--black);
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1),
    transform .75s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

[data-parallax] {
  translate: 0 var(--parallax-y, 0px);
  will-change: translate;
}

.tech-title .tech-line {
  display: block;
  position: relative;
  width: max-content;
  max-width: 72%;
  clip-path: inset(0 100% 0 0);
  padding: 0.17em 0;
}

.tech-title.is-visible .tech-line {
  animation: tech-type-in .62s steps(14, end) forwards;
}

.tech-title.is-visible .tech-line:nth-child(2) {
  animation-delay: .46s;
}

.tech-title.is-visible .tech-line:nth-child(3) {
  animation-delay: .92s;
}

.tech-title.is-visible .tech-line:nth-child(4) {
  animation-delay: 1.38s;
}

.tech-title .tech-line::after {
  content: "";
  position: absolute;
  top: .06em;
  right: -.08em;
  width: .035em;
  height: .8em;
  min-width: 2px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 200, 248, .8);
  opacity: 0;
}

.tech-title.is-visible .tech-line::after {
  animation: tech-cursor .62s steps(2, end) forwards;
}

.tech-title.is-visible .tech-line:nth-child(2)::after {
  animation-delay: .46s;
}

.tech-title.is-visible .tech-line:nth-child(3)::after {
  animation-delay: .92s;
}

.tech-title.is-visible .tech-line:nth-child(4)::after {
  background: var(--pink);
  box-shadow: 0 0 14px rgba(240, 0, 130, .8);
  animation: tech-cursor-final 1.45s steps(2, end) 1.38s forwards;
}

.tech-title:not(.tech-title-hero).is-visible .tech-line {
  animation-duration: .48s;
  animation-timing-function: steps(12, end);
}

.tech-title:not(.tech-title-hero).is-visible .tech-line:nth-child(2) {
  animation-delay: .3s;
}

.tech-title:not(.tech-title-hero).is-visible .tech-line::after {
  animation-duration: .48s;
}

.tech-title:not(.tech-title-hero).is-visible .tech-line:nth-child(2)::after {
  background: var(--pink);
  box-shadow: 0 0 14px rgba(240, 0, 130, .75);
  animation: tech-cursor-final 1.1s steps(2, end) .3s forwards;
}

@keyframes tech-type-in {
  to {
    clip-path: inset(0 -3% 0 0);
  }
}

@keyframes tech-cursor {

  0%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes tech-cursor-final {

  0%,
  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.site-header {
  height: 112px;
  padding: 0 clamp(24px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background-color: var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 188px;
  height: 70px;
}

.brand>a,
.brand .custom-logo-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.brand img,
.brand .custom-logo-link img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  font-size: 27px;
  line-height: 1;
  letter-spacing: .31em;
  font-weight: 300;
}

.brand small {
  font-size: 7px;
  letter-spacing: .52em;
  color: #c6c9cb;
}

.desktop-nav {
  display: flex;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.desktop-nav a {
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transition: right .25s ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 0;
  height: min(100vh, 900px);
  max-height: 100vh;
  padding: 5% clamp(24px, 9.5vw, 155px) 78px;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) .9fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 48%, rgba(0, 200, 248, .08), transparent 25%),
    radial-gradient(circle at 92% 55%, rgba(240, 0, 130, .08), transparent 27%),
    var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 18%, #000 75%);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.kicker {
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: 11px;
  color: #b8bdc1;
  font-weight: 600;
}

.eyebrow span {
  color: var(--cyan);
  margin-right: 20px;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: .91;
  letter-spacing: -.045em;
	
}

.hero h1 {
  font-size: clamp(32px, 3.7vw, 72px);
  width: 138%;
  max-width: 1050px;
  transform: scaleX(.72);
  transform-origin: left center;
  margin-right: -38%;
}

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero h1 strong {
  color: var(--pink);
  font-weight: inherit;
}

.service-line {
  margin: 27px 0 34px;
  font-size: 18px;
  color: #d6d7d8;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-line i {
  display: inline-block;
  width: 2px;
  height: 22px;
  background: var(--cyan);
}

.service-line i:last-of-type {
  background: var(--pink);
}

.primary-cta {
  width: min(80%, 440px);
  height: 72px;
  padding: 0 22px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(var(--black), var(--black)) padding-box, linear-gradient(90deg, var(--cyan), var(--pink)) border-box;
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-cta b {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px !important;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
}

.primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 200, 248, .12);
}

.hero-art {
  position: relative;
  width: 100%;
  height: 650px;
  z-index: 2;
}

.art-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.orbit-one {
  width: 390px;
  height: 390px;
  left: 13%;
  top: 17%;
}

.orbit-two {
  width: 230px;
  height: 230px;
  right: 4%;
  bottom: 4%;
  border-color: rgba(240, 0, 130, .7);
  border-left-color: transparent;
}

.art-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transform-origin: left center;
}

.line-one {
  width: 620px;
  left: 3%;
  bottom: 15%;
  transform: rotate(-45deg);
}

.line-two {
  width: 450px;
  left: 38%;
  top: 43%;
  transform: rotate(90deg);
  opacity: .35;
}

.art-word {
  position: absolute;
  left: 30%;
  top: 30%;
  font-family: Georgia, serif;
  font-size: 160px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .35);
  letter-spacing: -.15em;
}

.art-code {
  position: absolute;
  right: 9%;
  top: 22%;
  font: 26px var(--font-geist-mono);
  color: var(--cyan);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(8, 11, 14, .55);
  backdrop-filter: blur(10px);
}

.dot-grid {
  position: absolute;
  width: 150px;
  height: 130px;
  right: 0;
  top: 45%;
  opacity: .35;
  background-image: radial-gradient(#fff 1.4px, transparent 1.4px);
  background-size: 18px 18px;
}

.scroll-note {
  position: absolute;
  right: 38px;
  bottom: 55px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: 9px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
}

.scroll-note i {
  height: 55px;
  width: 1px;
  background: linear-gradient(var(--cyan), var(--pink));
}

.section {
  padding: 130px clamp(24px, 6vw, 96px);
}

.section h2 {
  font-size: clamp(40px, 4vw, 72px);
  width: auto;
  max-width: 100%;
  transform: none;
  transform-origin: left center;
  margin-right: 0;
	color: var(--black);
}

.section h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .55);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 72px;
}

.section-heading .kicker {
  align-self: start;
  margin-top: 12px;
  color: var(--cyan);
}

.section-heading .intro {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  max-width: 360px;
}

.services-section {
  background: #090b0e;
  border-top: 1px solid var(--line);
}

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

.service-card {
  min-height: 450px;
  padding: 34px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .025), transparent);
  transition: border-color .25s, transform .25s;
}

.service-card:hover {
  border-color: rgba(0, 200, 248, .55);
  transform: translateY(-6px);
}

.service-card:nth-child(2):hover {
  border-color: rgba(240, 0, 130, .55);
}

.card-index {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--cyan);
  font-size: 13px;
}

.service-card:nth-child(2) .card-index {
  color: var(--pink);
}

.card-index i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.service-card h3 {
  font-size: 30px;
  margin: 65px 0 22px;
}

.service-card>p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 360px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.service-card li {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 8px 11px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #bfc3c6;
}

.service-card>a {
  position: absolute;
  right: 32px;
  bottom: 28px;
  font-size: 27px;
  color: var(--cyan);
}

.pricing-section {
  background: #07090c;
  border-top: 1px solid var(--line);
}

.pricing-section .kicker {
  color: var(--pink);
}

.pricing-heading {
  margin-bottom: 62px;
}

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

.price-card {
  min-height: 520px;
  padding: 34px;
  border: 1px solid var(--line);
  position: relative;
  background: linear-gradient(150deg, rgba(0, 200, 248, .045), transparent 48%);
  transition: transform .25s ease, border-color .25s ease;
}

.price-card:nth-child(2) {
  background: linear-gradient(150deg, rgba(240, 0, 130, .05), transparent 48%);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 248, .55);
}

.price-card:nth-child(2):hover {
  border-color: rgba(240, 0, 130, .55);
}

.price-index {
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: .2em;
}

.price-card:nth-child(2) .price-index {
  color: var(--pink);
}

.price-card h3 {
  margin: 58px 0 18px;
  font-size: 30px;
}

.price-card>p {
  min-height: 76px;
  color: var(--muted);
  line-height: 1.7;
}

.price-values {
  padding: 30px 0;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-values small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.price-values strong {
  display: block;
  margin: 10px 0 14px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.05em;
}

.price-values sup {
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: 0;
  vertical-align: top;
  top: .55em;
  position: relative;
}

.price-card:nth-child(2) .price-values sup {
  color: var(--pink);
}

.price-values span {
  color: #c5c9cc;
  font-size: 12px;
}

.price-values span b {
  color: var(--white);
}

.price-card>a {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  color: #dce0e2;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.price-card>a b {
  color: var(--cyan);
  font-size: 18px;
}

.pricing-note {
  margin: 26px 0 0;
  color: #71777d;
  font-size: 11px;
}

.portfolio-section {
  background: var(--white);
  color: var(--black);
}

.portfolio-section .kicker {
  color: #555d63;
}

.portfolio-section h2 span {
  -webkit-text-stroke-color: rgba(6, 8, 10, .45);
}

.portfolio-top {
  display: grid;
  grid-template-columns: 1.5fr .75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.portfolio-top>p {
  color: #5d6266;
  line-height: 1.8;
  max-width: 440px;
  margin: 0 0 8px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px 24px;
}

.project-card:nth-child(even) {
  transform: translateY(80px);
}

.project-card:nth-child(even)[data-reveal] {
  transform: translateY(108px);
}

.project-card:nth-child(even)[data-reveal].is-visible {
  transform: translateY(80px);
}

.project-visual {
  height: 380px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.project-visual[data-parallax] {
  scale: 1.035;
}

.project-visual::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, .25);
  transform: rotate(12deg);
}

.project-symbol {
  position: relative;
  z-index: 2;
  font-family: Impact, sans-serif;
  font-size: 100px;
  color: #fff;
}

.project-no {
  position: absolute;
  left: 22px;
  top: 20px;
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  letter-spacing: .2em;
}

.project-pharma .project-visual {
  background: linear-gradient(135deg, #183489, #ee1a36);
}

.project-a1 .project-visual {
  background: radial-gradient(circle at 70% 30%, #25c6f6, transparent 30%), #11141c;
}

.project-lleal .project-visual {
  background: linear-gradient(145deg, #06132c, #0b55aa);
}

.project-lab .project-visual {
  background: radial-gradient(circle at 35% 50%, #e80080, transparent 35%), #090b0f;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid #bfc0bd;
  padding-top: 18px;
  margin-top: 14px;
}

.project-meta h3 {
  margin: 0;
  font-size: 22px;
}

.project-meta p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  color: #6e7376;
}

.project-card {
  display: block;
}

/* Página individual de projeto */
.project-page {
  background: var(--black);
}

.project-header {
  position: absolute;
}

.project-back {
  display: none;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.project-hero {
  padding: 185px clamp(24px, 6vw, 96px) 110px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .55fr);
  gap: 55px;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.project-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.project-hero-copy,
.project-facts,
.project-cover {
  position: relative;
  z-index: 1;
}

.project-hero h1 {
  margin: 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(61px, 3vw, 71px);
  font-weight: 900;
  line-height: .87;
  letter-spacing: -.055em;
  text-transform: uppercase;
  width: min(100%, 1000px);
  max-width: 100%;
  transform: none;
  transform-origin: left center;
  margin-right: 0;
  word-break: normal;
  overflow-wrap: anywhere;
}

.project-hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.project-hero h1 strong {
  color: var(--pink);
  font-weight: inherit;
}

.project-facts {
  border-top: 1px solid var(--line);
}

.project-facts div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 7px;
}

.project-facts span,
.project-facts strong {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.project-facts span {
  color: var(--muted);
}

.project-facts strong {
  font-size: 12px;
  line-height: 1.45;
}

.project-cover {
  grid-column: 1 / -1;
  min-height: 520px;
  background: linear-gradient(125deg, #152775 0%, #21349a 48%, #e31e3a 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background-size: cover;
}

.project-cover::before,
.project-cover::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  width: 420px;
  height: 420px;
}

.project-cover::after {
  width: 720px;
  height: 720px;
}

.project-cover>strong {
  font: 900 clamp(110px, 18vw, 270px)/1 Arial;
  letter-spacing: -.12em;
  color: #fff;
  position: relative;
  z-index: 2;
  transform: translateX(-.05em);
}

.project-cover>p {
  position: absolute;
  left: 7%;
  bottom: 10%;
  margin: 0;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.05em;
}

.project-cover>small {
  position: absolute;
  right: 5%;
  top: 8%;
  writing-mode: vertical-rl;
  letter-spacing: .25em;
  font-size: 9px;
}

.cover-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 80px 80px;
}

.project-context,
.project-process,
.project-results {
  padding: 130px clamp(24px, 9vw, 150px);
}

.project-context {
  display: grid;
  grid-template-columns: .5fr 1.5fr 1fr;
  gap: 60px;
  background: var(--white);
  color: var(--black);
}

.project-context .kicker {
  color: #5a6268;
}

.project-context h2,
.project-process h2,
.project-results h2 {
  margin: 0;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(46px, 4.65vw, 74px);
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 900;
  width: 112%;
  transform: scaleX(.88);
  transform-origin: left;
  margin-right: -12%;
}

.project-context h2 span,
.project-process h2 span,
.project-results h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(6, 8, 10, .45);
}

.context-copy {
  align-self: end;
  color: #4f565b;
  font-size: 17px;
  line-height: 1.75;
}

.project-process {
  background: #0a0c0f;
}

.project-process h2 span,
.project-results h2 span {
  -webkit-text-stroke-color: rgba(255, 255, 255, .5);
}

.project-section-top {
  display: grid;
  grid-template-columns: 1.5fr .65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.project-section-top>p {
  color: var(--muted);
  line-height: 1.8;
}

.case-stages {
  border-top: 1px solid var(--line);
}

.case-stages article {
  display: grid;
  grid-template-columns: 70px 1fr 1.25fr;
  gap: 35px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid var(--line);
}

.case-stages article>span {
  color: var(--cyan);
  font-size: 12px;
}

.case-stages h3 {
  margin: 0 0 9px;
  font-size: 25px;
}

.case-stages small {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 8px;
}

.case-stages p {
  color: var(--muted);
  line-height: 1.7;
}

.project-showcase {
  padding: 110px clamp(24px, 6vw, 96px);
  background: #ecece8;
  color: var(--black);
  display: grid;
  grid-template-columns: 1.6fr .6fr;
  gap: 22px;
}

.project-galleries {
  background: #ecece8;
  color: var(--black);
}

.project-gallery-group {
  padding: 110px clamp(24px, 6vw, 96px);
  border-top: 1px solid rgba(6, 8, 10, .12);
}

.project-gallery-heading {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}

.project-gallery-heading .kicker {
  color: #5a6268;
}

.project-gallery-heading h2 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: clamp(48px, 6.2vw, 94px);
  line-height: .9;
  letter-spacing: -.05em;
  text-transform: uppercase;
  font-weight: 900;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.project-gallery-grid figure {
  grid-column: span 6;
  height: 560px;
  min-height: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #d9dad6;
}

/* Mantém a composição assimétrica apenas na largura */
.project-gallery-grid figure:first-child {
  grid-column: span 8;
}

.project-gallery-grid figure:nth-child(2) {
  grid-column: span 4;
}

.project-gallery-grid figure:only-child {
  grid-column: 1 / -1;
}

.project-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.project-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.7s cubic-bezier(.2, .7, .2, 1);
}

.project-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  cursor: zoom-in;
}

.project-gallery-grid figure:hover img {
  transform: scale(1.015);
}

.project-gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 35px 22px 18px;
  color: #fff;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(6, 8, 10, .76), transparent);
  pointer-events: none;
}

.lightbox-open {
  overflow: hidden;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: rgba(6, 8, 10, .96);
  overflow: hidden;
}

.project-lightbox::backdrop {
  background: rgba(6, 8, 10, .96);
}

.project-lightbox[open] {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  grid-template-rows: 72px minmax(0, 1fr);
  align-items: center;
  z-index: 10000;
}

.project-lightbox-toolbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-lightbox-toolbar button,
.project-lightbox-nav {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.project-lightbox-toolbar button {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.project-lightbox-toolbar button b {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.project-lightbox figure {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 22px 0;
}

.project-lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100dvh - 142px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.project-lightbox figcaption {
  flex: 0 0 auto;
  max-width: 760px;
  padding-top: 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.project-lightbox-nav {
  grid-row: 2;
  align-self: stretch;
  font-size: 28px;
  transition: color .2s ease, background .2s ease;
}

.project-lightbox-nav:hover {
  color: var(--cyan);
  background: rgba(255, 255, 255, .04);
}

.project-lightbox-prev {
  grid-column: 1;
}

.project-lightbox-next {
  grid-column: 3;
}

.showcase-main {
  background: #111522;
  padding: 32px;
  min-height: 610px;
  color: #fff;
}

.showcase-main>span {
  font-size: 9px;
  letter-spacing: .2em;
  color: #aeb4bd;
}

.browser-frame {
  margin: 55px auto 0;
  width: 90%;
  max-width: 850px;
  height: 455px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  background: #07090c;
  padding-top: 35px;
  position: relative;
  overflow: hidden;
}

.browser-frame>i {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #555b63;
  border-radius: 50%;
  left: 17px;
  top: -22px;
  margin-right: 5px;
}

.browser-content {
  height: 100%;
  padding: 70px 9%;
  background: radial-gradient(circle at 82% 40%, rgba(227, 30, 58, .38), transparent 22%), radial-gradient(circle at 72% 50%, rgba(33, 52, 154, .7), transparent 38%);
}

.browser-content small {
  color: #a9b7ff;
  letter-spacing: .18em;
  font-size: 8px;
}

.browser-content strong {
  display: block;
  font: 900 clamp(42px, 5vw, 74px)/.86 Arial;
  letter-spacing: -.05em;
  margin: 24px 0 35px;
}

.browser-content b {
  display: inline-block;
  padding: 15px 19px;
  background: #e31e3a;
  font-size: 9px;
  letter-spacing: .1em;
}

.showcase-pair {
  display: grid;
  gap: 22px;
}

.brand-tile {
  padding: 35px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 294px;
}

.brand-tile.blue {
  background: #21349a;
}

.brand-tile.red {
  background: #e31e3a;
}

.brand-tile small {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 8px;
  opacity: .7;
}

.brand-tile strong {
  font-size: 28px;
}

.project-results {
  background: var(--black);
}

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

.result-grid article {
  padding: 35px 45px 35px 0;
  min-height: 260px;
  border-right: 1px solid var(--line);
}

.result-grid article+article {
  padding-left: 45px;
}

.result-grid article:last-child {
  border-right: 0;
}

.result-grid strong {
  color: var(--cyan);
  font-size: 11px;
}

.result-grid article:nth-child(2) strong {
  color: var(--pink);
}

.result-grid h3 {
  font-size: 25px;
  margin: 50px 0 15px;
}

.result-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.next-project {
  padding: 110px clamp(24px, 6vw, 96px);
  background: linear-gradient(110deg, #00a9dd, #263091 55%, #c00075);
}

.project-cta h2 {
  max-width: 1100px;
  width: 100%;
  margin-right: 0;
  transform: none;
  font-size: clamp(54px, 7.3vw, 112px);
}

.project-cta h2 .tech-line:last-child {
  font-size: .72em;
  line-height: 1.05;
  margin-top: .12em;
}

.next-project>a {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, .45);
  padding-top: 32px;
}

.next-project a span {
  font: 900 clamp(20px, 2vw, 70px)/.8 Arial;
  text-transform: uppercase;
  letter-spacing: -.06em;
  text-align: right;
}

.next-project a strong {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 10px;
}

.next-project a b {
  font-size: 38px;
  text-align: right;
}

.about-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
  overflow: hidden;
}

.about-mark {
  font-family: Georgia, serif;
  font-size: clamp(300px, 40vw, 620px);
  line-height: .7;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 200, 248, .35);
  text-shadow: 80px 50px 100px rgba(240, 0, 130, .14);
  transform: translateX(-12%);
}

.about-copy>p:not(.kicker) {
  color: var(--muted);
  max-width: 670px;
  font-size: 17px;
  line-height: 1.8;
}

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

.stats div {
  padding: 25px 25px 0 0;
}

.stats strong {
  font-family: Impact, sans-serif;
  font-weight: 400;
  font-size: 40px;
  color: var(--cyan);
  display: block;
}

.stats div:nth-child(2) strong {
  color: var(--pink);
}

.stats span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.5;
  display: block;
  margin-top: 8px;
}

.process-section {
  background: #0b0e11;
}

.process-section>.kicker {
  color: var(--pink);
}

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

.process-list article {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr 40px;
  gap: 30px;
  align-items: center;
  min-height: 130px;
  border-bottom: 1px solid var(--line);
  transition-property: opacity, transform, background-color;
}

.process-list article:hover {
  background: rgba(255, 255, 255, .018);
}

.process-list article>span {
  color: var(--cyan);
  font-size: 12px;
}

.process-list h3 {
  font-size: 26px;
  margin: 0;
}

.process-list p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
}

.process-list b {
  font-size: 24px;
  color: var(--pink);
}

.contact-section {
  min-height: 720px;
  padding: 130px clamp(24px, 9vw, 150px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #00a9dd, #192b91 48%, #c00075 100%);
}

.contact-section .kicker {
  color: #fff;
}

.contact-section h2 {
  font-size: clamp(30px, 5vw, 90px);
  position: relative;
  z-index: 2;
  width: 125%;
  transform: scaleX(.8);
  transform-origin: left center;
  margin-right: -25%;
}

.contact-section h2 em {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .9);
  font-style: normal;
}

.primary-cta.light {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  background: var(--white);
  color: var(--black);
  border: 0;
}

.contact-orbit {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  right: -80px;
  top: 60px;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.contact-orbit::after {
  inset: 30%;
}

footer {
  padding: 70px clamp(24px, 6vw, 96px) 35px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line);
}

footer>p {
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  font-size: 12px;
}

footer>small {
  grid-column: 1 / -1;
  padding-top: 35px;
  border-top: 1px solid var(--line);
  color: #676d72;
  font-size: 10px;
  letter-spacing: .08em;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 155px;
    height: auto;
    max-height: none;
    min-height: 850px;
  }

  .hero-art {
    position: absolute;
    right: -220px;
    opacity: .45;
    width: 680px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading .intro {
    max-width: 620px;
  }

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

  .price-card {
    min-height: 440px;
  }

  .about-section {
    grid-template-columns: .7fr 1.3fr;
    gap: 20px;
  }

  .section h2,
  .project-context h2,
  .project-process h2,
  .project-results h2 {
    width: 100%;
    margin-right: 0;
    transform: none;
  }
}

@media (max-width: 760px) {
  [data-parallax] {
    translate: none;
  }

  .site-header {
    height: 88px;
  }

  .brand span {
    font-size: 21px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    list-style: none;
    width: 38px;
    height: 38px;
    display: grid;
    align-content: center;
    gap: 7px;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    height: 1px;
    background: #fff;
  }

  .mobile-menu nav {
    position: absolute;
    right: 20px;
    top: 72px;
    width: 210px;
    display: flex;
    flex-direction: column;
    background: #0e1114;
    border: 1px solid var(--line);
    padding: 18px;
  }

  .mobile-menu nav a {
    padding: 12px;
  }

  .hero {
    padding: 135px 24px 65px;
    min-height: 100dvh;    
  }

  .hero h1 {
    font-size: clamp(20px, 8vw, 60px);
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .service-line {
    font-size: 12px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .hero-art {
    width: 430px;
    height: 430px;
    right: -250px;
    bottom: -20px;
    top: auto;
    opacity: .38;
  }

  .orbit-one {
    width: 280px;
    height: 280px;
  }

  .art-word {
    font-size: 110px;
  }

  .art-code {
    display: none;
  }

  .scroll-note {
    display: none;
  }

  .section {
    padding: 90px 24px;
  }

  .section h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 400px;
  }

  .portfolio-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-card:nth-child(even) {
    transform: none;
  }

  .project-card:nth-child(even)[data-reveal] {
    transform: translateY(28px);
  }

  .project-card:nth-child(even)[data-reveal].is-visible {
    transform: none;
  }

  .project-visual {
    height: 300px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-mark {
    display: none;
  }

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

  .process-list article {
    grid-template-columns: 40px 1fr 24px;
    gap: 12px;
    padding: 25px 0;
  }

  .process-list p {
    grid-column: 2 / 4;
    margin: 0;
  }

  .contact-section {
    min-height: 620px;
    padding: 100px 24px;
  }

  .contact-section h2 {
    font-size: clamp(62px, 19vw, 94px);
  }

  .project-header .desktop-nav {
    display: none;
  }

  .project-back {
    display: block;
    font-size: 8px;
  }

  .project-hero {
    padding: 135px 24px 70px;
    min-height: auto;
    display: block;
  }

  .project-hero h1 {
    font-size: clamp(30px, 3vw, 50px);
    margin-bottom: 55px;
  }

  .project-facts {
    margin-bottom: 45px;
  }

  .project-cover {
    min-height: 420px;
  }

  .project-cover::before {
    width: 240px;
    height: 240px;
  }

  .project-cover::after {
    width: 420px;
    height: 420px;
  }

  .project-context,
  .project-process,
  .project-results {
    padding: 90px 24px;
  }

  .project-context {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-context h2,
  .project-process h2,
  .project-results h2 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .project-section-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-stages article {
    grid-template-columns: 38px 1fr;
    gap: 15px;
    padding: 28px 0;
  }

  .case-stages article>p {
    grid-column: 2;
    margin: 0;
  }

  .project-showcase {
    padding: 70px 24px;
    grid-template-columns: 1fr;
  }

  .project-gallery-group {
    padding: 80px 24px;
  }

  .project-gallery-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }

  .project-gallery-heading h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

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

  .project-gallery-grid figure,
  .project-gallery-grid figure:first-child,
  .project-gallery-grid figure:nth-child(2),
  .project-gallery-grid figure:only-child {
    grid-column: 1;
    height: 330px;
    min-height: 0;
  }

  .project-lightbox[open] {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    grid-template-rows: 62px minmax(0, 1fr);
  }

  .project-lightbox-toolbar {
    height: 62px;
    padding: 0 18px;
  }

  .project-lightbox-toolbar button {
    font-size: 0;
    gap: 0;
  }

  .project-lightbox-toolbar button b {
    font-size: 28px;
  }

  .project-lightbox figure {
    padding: 14px 0;
  }

  .project-lightbox img {
    max-height: calc(100dvh - 122px);
  }

  .project-lightbox-nav {
    font-size: 22px;
  }

  .showcase-main {
    min-height: 430px;
    padding: 20px;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 400px;
  }

  .portfolio-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-card:nth-child(even) {
    transform: none;
  }

  .project-card:nth-child(even)[data-reveal] {
    transform: translateY(28px);
  }

  .project-card:nth-child(even)[data-reveal].is-visible {
    transform: none;
  }

  .project-visual {
    height: 300px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-mark {
    display: none;
  }

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

  .process-list article {
    grid-template-columns: 40px 1fr 24px;
    gap: 12px;
    padding: 25px 0;
  }

  .process-list p {
    grid-column: 2 / 4;
    margin: 0;
  }

  .contact-section {
    min-height: 620px;
    padding: 100px 24px;
  }

  .contact-section h2 {
    font-size: clamp(62px, 19vw, 94px);
  }

  .project-header .desktop-nav {
    display: none;
  }

  .project-back {
    display: block;
    font-size: 8px;
  }

  .project-hero {
    padding: 135px 24px 70px;
    min-height: auto;
    display: block;
  }

  .project-hero h1 {
    margin-bottom: 55px;
  }

  .project-facts {
    margin-bottom: 45px;
  }

  .project-cover {
    min-height: 420px;
  }

  .project-cover::before {
    width: 240px;
    height: 240px;
  }

  .project-cover::after {
    width: 420px;
    height: 420px;
  }

  .project-context,
  .project-process,
  .project-results {
    padding: 90px 24px;
  }

  .project-context {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-context h2,
  .project-process h2,
  .project-results h2 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .project-section-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-stages article {
    grid-template-columns: 38px 1fr;
    gap: 15px;
    padding: 28px 0;
  }

  .case-stages article>p {
    grid-column: 2;
    margin: 0;
  }

  .project-showcase {
    padding: 70px 24px;
    grid-template-columns: 1fr;
  }

  .project-gallery-group {
    padding: 80px 24px;
  }

  .project-gallery-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }

  .project-gallery-heading h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

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

  .project-gallery-grid figure,
  .project-gallery-grid figure:first-child,
  .project-gallery-grid figure:nth-child(2),
  .project-gallery-grid figure:only-child {
    grid-column: 1;
    min-height: 330px;
  }

  .showcase-main {
    min-height: 430px;
    padding: 20px;
  }

  .browser-frame {
    width: 100%;
    height: 325px;
    margin-top: 35px;
  }

  .browser-content {
    padding: 45px 8%;
  }

  .browser-content strong {
    font-size: 40px;
  }

  .showcase-pair {
    grid-template-columns: 1fr 1fr;
  }

  .browser-frame {
    width: 100%;
    height: 325px;
    margin-top: 35px;
  }

  .browser-content {
    padding: 45px 8%;
  }

  .browser-content strong {
    font-size: 40px;
  }

  .showcase-pair {
    grid-template-columns: 1fr 1fr;
  }

  .brand-tile {
    min-height: 190px;
    padding: 22px;
  }

  .brand-tile strong {
    font-size: 18px;
  }

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

  .result-grid article,
  .result-grid article+article {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 220px;
  }

  .result-grid h3 {
    margin-top: 35px;
  }

  .next-project {
    padding: 80px 24px;
  }

  .project-cta h2 {
    font-size: clamp(20px, 15vw, 46px);
  }

  .project-cta h2 .tech-line:last-child {
    font-size: .68em;
  }

  .next-project>a {
    grid-template-columns: 1fr 35px;
    gap: 15px;
  }

  .next-project a span {
    font-size: 23px;
  }

  .next-project a strong {
    grid-row: 2;
  }

  .next-project a b {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  footer {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  .tech-title .tech-line {
    clip-path: none;
  }

  .tech-title.is-visible .tech-line,
  .tech-title.is-visible .tech-line::after {
    animation: none;
  }

  .tech-title .tech-line::after {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-note i {
    animation: scroll-pulse 2.2s ease-in-out infinite;
    transform-origin: top;
  }

  @keyframes scroll-pulse {

    0%,
    100% {
      transform: scaleY(.35);
      opacity: .4;
    }

    50% {
      transform: scaleY(1);
      opacity: 1;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-parallax] {
    translate: none;
  }
}

/* Whatpp fixo */
.creative-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;

  display: flex;
  align-items: center;
  gap: 12px;

  min-height: 56px;
  padding: 0 20px 0 16px;

  border: 1px solid transparent;
  border-radius: 999px;

  background:
    linear-gradient(#0b0e11, #0b0e11) padding-box,
    linear-gradient(120deg,
      var(--cyan, #00c8f8),
      var(--pink, #f00082)) border-box;

  color: #fff;

  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(0, 200, 248, 0.08);

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(16px) scale(0.96);

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.creative-whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -1px;

  border-radius: inherit;
  background: linear-gradient(120deg,
      var(--cyan, #00c8f8),
      var(--pink, #f00082));

  opacity: 0;
  z-index: -1;

  transition: opacity 0.3s ease;
}

.creative-whatsapp-float::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 9px;

  width: 5px;
  height: 5px;

  border-radius: 50%;
  background: var(--pink, #f00082);

  box-shadow: 0 0 10px var(--pink, #f00082);
}

.creative-whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0) scale(1);
}

.creative-whatsapp-float:hover {
  color: #fff;

  transform: translateY(-3px);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(0, 200, 248, 0.18),
    0 0 30px rgba(240, 0, 130, 0.12);
}

.creative-whatsapp-float:hover::before {
  opacity: 1;
}

.creative-whatsapp-float svg {
  position: relative;
  z-index: 1;

  width: 25px;
  height: 25px;
  flex: 0 0 auto;

  fill: var(--cyan, #00c8f8);

  transition:
    fill 0.3s ease,
    transform 0.3s ease;
}

.creative-whatsapp-float span {
  position: relative;
  z-index: 1;
}

.creative-whatsapp-float:hover svg {
  fill: #fff;
  transform: rotate(-4deg) scale(1.06);
}

.creative-whatsapp-float:focus-visible {
  outline: 2px solid var(--cyan, #00c8f8);
  outline-offset: 4px;
}

/* Celular */
@media (max-width: 600px) {
  .creative-whatsapp-float {
    right: 16px;
    bottom: 16px;

    width: 54px;
    min-height: 54px;
    padding: 0;

    justify-content: center;
  }

  .creative-whatsapp-float span {
    position: absolute;

    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
  }

  .creative-whatsapp-float::after {
    top: 5px;
    right: 5px;
  }
}

/* Redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .creative-whatsapp-float {
    transition:
      opacity 0.15s ease,
      visibility 0.15s ease;
    transform: none;
  }

  .creative-whatsapp-float:hover {
    transform: none;
  }

  .creative-whatsapp-float:hover svg {
    transform: none;
  }
}

/* Header fixo */
.site-header {
  transition:
    height 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;

  height: 82px;
  z-index: 999;

  background: rgba(6, 8, 10, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.1);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(0, 200, 248, 0.05);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  animation: creative-header-in 0.4s ease both;
}

.site-header.is-fixed .brand {
  height: 58px;
}

.site-header.is-fixed .brand img,
.site-header.is-fixed .brand .custom-logo-link img {
  height: 50px;
}

@keyframes creative-header-in {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Barra administrativa do WordPress */
.admin-bar .site-header.is-fixed {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header.is-fixed {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .site-header.is-fixed {
    height: 72px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header.is-fixed .brand {
    height: 50px;
  }

  .site-header.is-fixed .brand img,
  .site-header.is-fixed .brand .custom-logo-link img {
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.is-fixed {
    animation: none;
  }
}

.portfolio-footer {
  display: flex;
  justify-content: center;
  margin-top: 145px;
}

.all-projects-button {
  color: var(--white);
}

.all-projects-action {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.next-project .all-projects-button {
  color: var(--white);
}

@media (max-width: 760px) {
  .portfolio-footer {
    margin-top: 70px;
  }

  .all-projects-action {
    margin-top: 50px;
  }
}




@media (max-width: 760px) {

  /*
     * Corrige artefatos do contorno no Chrome mobile
     * e permite que títulos maiores quebrem linha.
     */
  .section .tech-title .tech-line,
  .project-context .tech-title .tech-line,
  .project-process .tech-title .tech-line,
  .project-results .tech-title .tech-line,
  .project-gallery-heading .tech-title .tech-line {
    width: 100%;
    max-width: 100%;

    white-space: normal;
    overflow-wrap: normal;

    clip-path: none;
    animation: none !important;

    will-change: auto;
    transform: none;
  }

  /*
     * Remove somente o cursor da digitação nesses títulos.
     * O título ainda terá a entrada suave do data-reveal.
     */
  .section .tech-title .tech-line::after,
  .project-context .tech-title .tech-line::after,
  .project-process .tech-title .tech-line::after,
  .project-results .tech-title .tech-line::after,
  .project-gallery-heading .tech-title .tech-line::after {
    display: none;
    animation: none !important;
  }

  /*
     * Contorno ligeiramente mais fino no celular.
     */
  .section h2 span,
  .project-context h2 span,
  .project-process h2 span,
  .project-results h2 span,
  .project-gallery-heading h2 span {
    -webkit-text-stroke-width: 0.75px;
  }

  /*
     * Escala mais adequada para frases longas.
     */
  .section h2 {
    width: 100%;
    margin-right: 0;

    font-size: clamp(32px, 9.5vw, 44px);
    line-height: 0.96;
    letter-spacing: -0.035em;

    transform: none;
  }
}

footer {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-nav-list a {
  position: relative;
  display: inline-block;

  padding: 3px 0;

  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-nav-list a::before {
  content: "";

  position: absolute;
  left: 0;
  bottom: -2px;

  width: 100%;
  height: 1px;

  background: linear-gradient(90deg,
      var(--cyan),
      var(--pink));

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.25s ease;
}

.footer-nav-list a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-nav-list a:hover::before {
  transform: scaleX(1);
}

@media (max-width: 1050px) {
  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  footer {
    grid-template-columns: 1fr;
  }

  .footer-nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 25px;

    margin-top: 15px;
  }

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

@media (max-width: 760px) {
  html {
    scroll-padding-top: 135px;
  }

  /*
     * Cabeçalho mobile em duas linhas:
     * logo na primeira e navegação na segunda.
     */
  .site-header,
  .site-header.is-fixed {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 64px 48px;
    align-items: center;

    width: 100%;
    height: 112px;
    min-height: 112px;

    padding: 0 20px;

    background: rgba(6, 8, 10, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  /*
     * Logo
     */
  .site-header .brand,
  .site-header.is-fixed .brand {
    grid-column: 1 / -1;
    grid-row: 1;

    width: 150px;
    height: 58px;

    justify-self: center;
  }

  .site-header .brand img,
  .site-header .brand .custom-logo-link img,
  .site-header.is-fixed .brand img,
  .site-header.is-fixed .brand .custom-logo-link img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    object-position: center;
  }

  /*
     * Esconde completamente o menu hambúrguer.
     */
  .mobile-menu {
    display: none !important;
  }

  /*
     * Exibe a navegação principal em uma faixa horizontal.
     */
  .desktop-nav,
  .project-header .desktop-nav {
    grid-column: 1 / -1;
    grid-row: 2;

    display: flex !important;
    align-items: center;

    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 10px;

    gap: 28px;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;
    scrollbar-width: none;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .desktop-nav a {
    flex: 0 0 auto;

    padding: 14px 0 8px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition: color 0.25s ease;
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible {
    color: var(--white);
  }

  .desktop-nav a::after {
    bottom: 3px;
  }

  /*
     * Link de retorno nos projetos individuais.
     */
  .project-back {
    grid-column: 2;
    grid-row: 1;

    display: block;

    font-size: 8px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  /*
     * Compensa o novo tamanho do cabeçalho nos heros.
     */
  .hero {
    padding-top: 155px;
  }

  .project-hero {
    padding-top: 155px;
  }
}

/* Ajuste da barra administrativa do WordPress */
@media screen and (max-width: 782px) {
  .admin-bar .site-header.is-fixed {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .project-back {
    position: absolute;
    right: 20px;
    top: 27px;

    z-index: 2;
  }
}

/* ------------------------ FOrmulari de contato ---------------------------- */
.contact-form-section {
  background: #080a0d;
  border-top: 1px solid var(--line);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.contact-form-copy h2 {
  width: 115%;
  margin: 0;
  margin-right: -15%;

  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.contact-form-copy h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}

.contact-form-copy>p:not(.kicker) {
  max-width: 550px;
  margin-top: 36px;

  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.contact-form-wrapper {
  padding: clamp(28px, 4vw, 52px);

  border: 1px solid var(--line);
  border-radius: 2px;

  background:
    linear-gradient(145deg,
      rgba(0, 200, 248, 0.035),
      rgba(240, 0, 130, 0.025)),
    #0a0d10;
}

.creative-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
}

.creative-form-field {
  display: grid;
  gap: 10px;
}

.creative-form-field.is-full,
.creative-form-consent.is-full {
  grid-column: 1 / -1;
}

.creative-form-field label {
  color: #aeb4b8;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.creative-form-field label span {
  color: var(--pink);
}

.creative-form-field input,
.creative-form-field select,
.creative-form-field textarea {
  width: 100%;
  padding: 14px 0;

  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: none;

  color: var(--white);
  background: transparent;

  font: inherit;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.creative-form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.creative-form-field select option {
  color: var(--white);
  background: #0a0d10;
}

.creative-form-field input:focus,
.creative-form-field select:focus,
.creative-form-field textarea:focus {
  border-bottom-color: var(--cyan);

  box-shadow:
    0 1px 0 var(--cyan),
    0 8px 20px rgba(0, 200, 248, 0.04);
}

.creative-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.creative-form-consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;

  accent-color: var(--cyan);
}

.creative-form-submit {
  margin-top: 34px;

  color: var(--white);
  cursor: pointer;
}

.contact-form-feedback {
  margin-bottom: 28px;
  padding: 16px 18px;

  border: 1px solid;
  font-size: 12px;
  line-height: 1.6;
}

.contact-form-feedback.is-success {
  color: var(--cyan);
  border-color: rgba(0, 200, 248, 0.4);
  background: rgba(0, 200, 248, 0.06);
}

.contact-form-feedback.is-error {
  color: #ff6cae;
  border-color: rgba(240, 0, 130, 0.4);
  background: rgba(240, 0, 130, 0.06);
}

.creative-contact-trap {
  position: absolute;
  left: -9999px;

  width: 1px;
  height: 1px;

  overflow: hidden;
}

.contact-page-hero {
  min-height: 75vh;
}

.contact-page-hero .project-hero-copy {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-form-copy h2 {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .creative-form-grid {
    grid-template-columns: 1fr;
  }

  .creative-form-field.is-full,
  .creative-form-consent.is-full {
    grid-column: 1;
  }

  .contact-form-wrapper {
    padding: 26px 20px;
  }

  .contact-form-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .contact-page-hero {
    min-height: 620px;
  }
}