/* ═══════════════════════════════════════════════════════════════
   AUMA — style.css
   Filosofia: Editorial. Minimalista. Em movimento.
   Paleta: #27191c · #2d3839 · #114d4d · #6e9987 · #e0e4ce
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { display: block; max-width: 100%; }
button { border: none; background: none; cursor: none; }

/* ─── Variables ─── */
:root {
  --dark:    #27191c;
  --dark2:   #2d3839;
  --teal:    #114d4d;
  --sage:    #6e9987;
  --cream:   #e0e4ce;
  --border:  rgba(224, 228, 206, 0.15);
  --f-d:     'League Spartan', sans-serif;
  --f-b:     'Quicksand', sans-serif;
  --ease:    cubic-bezier(0.76, 0, 0.24, 1);
  --ease-o:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ─── Base ─── */
html { overflow-x: hidden; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--f-b);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ─── Touch devices: disable custom cursor ─── */
@media (pointer: coarse) {
  body, button, a { cursor: auto; }
  .cursor-dot, .cursor-ball { display: none !important; }
}

body.no-scroll { overflow: hidden; }

/* ─── Sections ─── */
.section { position: relative; }
.theme-dark  { background: var(--dark2); }
.theme-teal  { background: var(--teal); }
.no-select   { user-select: none; pointer-events: none; }

/* ─── Container ─── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.container.medium {
  max-width: 940px;
}
.container.no-padding { padding: 0 48px; max-width: 1280px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════════════════════ */
.loading-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.loading-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loading-top-curve,
.loading-bottom-curve {
  position: absolute;
  left: -5%;
  width: 110%;
}
.loading-top-curve { top: -60px; }
.loading-bottom-curve { bottom: -60px; }

.loading-top-curve .rounded-div,
.loading-bottom-curve .rounded-div {
  width: 100%;
  height: 120px;
  border-radius: 50%;
  background: var(--dark);
}

.loading-word-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  overflow: hidden;
  height: 80px;
}

.loading-word {
  font-family: var(--f-d);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.loading-dot {
  font-family: var(--f-d);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--sage);
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════════════ */
.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--cream);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.2s, opacity 0.3s;
  opacity: 0;
}

.cursor-ball {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(224, 228, 206, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-o), height 0.3s var(--ease-o),
              border-color 0.3s, background 0.3s, opacity 0.3s;
  opacity: 0;
}

.cursor-ready .cursor-dot,
.cursor-ready .cursor-ball { opacity: 1; }

.cursor-ball.hovered {
  width: 52px;
  height: 52px;
  border-color: var(--sage);
  background: rgba(110, 153, 135, 0.07);
}
.cursor-dot.hovered {
  width: 8px;
  height: 8px;
  background: var(--sage);
}
.cursor-ball.on-dark { border-color: rgba(224, 228, 206, 0.5); }
.cursor-ball.clicking {
  width: 24px;
  height: 24px;
  background: rgba(224, 228, 206, 0.15);
}

/* ═══════════════════════════════════════════════════════════════
   FLOAT WORK IMAGE (cursor follow)
   ═══════════════════════════════════════════════════════════════ */
.mouse-pos-list-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 220px;
  z-index: 400;
  pointer-events: none;
  transform: translate(-50%, -60%);
  will-change: transform;
}

.mouse-pos-list-image-bounce {
  width: 100%;
  height: 100%;
  position: relative;
}

.float-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.float-img-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.92) rotate(-3deg);
  transition: opacity 0.4s var(--ease-o), transform 0.4s var(--ease-o);
  pointer-events: none;
}

.float-img-item.active {
  opacity: 1;
  transform: scale(1) rotate(-2deg);
}

.float-img-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-img-bg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px 24px;
}

.float-img-label {
  font-family: var(--f-d);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(224, 228, 206, 0.18);
  letter-spacing: -0.04em;
  line-height: 1;
  position: absolute;
  bottom: 16px;
  left: 20px;
}

.float-img-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(224, 228, 206, 0.2);
  top: 24px;
  right: 24px;
}
.float-img-ring::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(224, 228, 206, 0.35);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.mouse-pos-list-image.visible { }
.mouse-pos-list-image.hidden .float-img-item { opacity: 0; }

/* "Ver" span that follows cursor */
.mouse-pos-list-span {
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.mouse-pos-list-span.visible { opacity: 1; }
.mouse-pos-list-span p {
  font-family: var(--f-d);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════════════════════════════ */
.btn-hamburger {
  position: fixed;
  top: 24px;
  right: 40px;
  z-index: 5000;
  cursor: none;
  display: none;
}

.btn-hamburger .btn-click {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--dark);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.btn-hamburger .btn-fill {
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: 0;
}

.btn-hamburger .btn-click:hover .btn-fill { transform: translateY(0); }
.btn-hamburger .btn-click:hover .btn-text { color: var(--dark); }

.btn-hamburger .btn-text {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.btn-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.btn-bars span {
  display: block;
  height: 1px;
  background: currentColor;
  width: 100%;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.nav-open .btn-bars span:first-child {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-open .btn-bars span:last-child {
  transform: rotate(-45deg) translate(4px, -4px);
}

.btn-hamburger .btn-text-inner {
  font-family: var(--f-b);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   FIXED NAV (OVERLAY MENU)
   ═══════════════════════════════════════════════════════════════ */
.fixed-nav {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  height: 100vh;
  z-index: 4500;
  background: var(--teal);
  transform: translateX(105%);
  transition: transform 0.75s var(--ease-io);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fixed-nav.open { transform: translateX(0); }

.fixed-nav-rounded-div {
  position: absolute;
  top: 0; left: -40px;
  width: 80px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.rounded-div-wrap {
  position: relative;
  height: 100%;
}

.fixed-nav-rounded-div .rounded-div {
  position: absolute;
  top: -10%;
  left: 0;
  width: 80px;
  height: 120%;
  background: var(--teal);
  border-radius: 0 50% 50% 0;
}

.fixed-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 100px 48px 48px;
  position: relative;
  z-index: 2;
}

.fixed-nav h5 {
  font-family: var(--f-b);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 16px;
}

.fixed-nav .stripe {
  margin-bottom: 20px;
}

.fixed-nav .links-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fixed-nav .btn-link .btn-text-inner {
  font-family: var(--f-d);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-o), transform 0.5s var(--ease-o), color 0.2s;
}

.fixed-nav.open .btn-link:nth-child(1) .btn-text-inner { opacity: 1; transform: none; transition-delay: 0.1s; }
.fixed-nav.open .btn-link:nth-child(2) .btn-text-inner { opacity: 1; transform: none; transition-delay: 0.15s; }
.fixed-nav.open .btn-link:nth-child(3) .btn-text-inner { opacity: 1; transform: none; transition-delay: 0.2s; }
.fixed-nav.open .btn-link:nth-child(4) .btn-text-inner { opacity: 1; transform: none; transition-delay: 0.25s; }

.fixed-nav .btn-link:hover .btn-text-inner { color: rgba(224, 228, 206, 0.45); }

.social-row .socials ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-row .btn-link .btn-text-inner {
  font-family: var(--f-b);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.65;
  transition: opacity 0.2s;
}

.social-row .btn-link:hover .btn-text-inner { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   NAV BAR (top, visible on page)
   ═══════════════════════════════════════════════════════════════ */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 26px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 160px;
  transition: transform 0.5s var(--ease);
}

.nav-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(39, 25, 28, 0.9) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.nav-bar.hidden { transform: translateY(-100%); }

.credits-top { display: flex; }

.btn-left-top .btn-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.credit span,
.code-by {
  font-family: var(--f-b);
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.55;
}

.dennis-span {
  font-family: var(--f-d);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  opacity: 1;
}

.nav-bar .links-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-bar .btn-link .btn-text-inner {
  font-family: var(--f-b);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.nav-bar .btn-link:hover .btn-text-inner { opacity: 1; }

.btn-menu .btn-text-inner { opacity: 0.6; }

/* ═══════════════════════════════════════════════════════════════
   HOME HEADER / HERO
   ═══════════════════════════════════════════════════════════════ */
.home-header {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

/* Parallax background image layer */
.header-bg-parallax {
  position: absolute;
  inset: -20% 0 0 0;
  background-image: url('../snow-mountains-5120x2880-25876.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
  will-change: transform;
}

/* Shooting stars canvas */
#shootingStarsCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Gradient overlay: image fades into dark brown at the bottom */
.home-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(39, 25, 28, 0.1) 0%,
    rgba(39, 25, 28, 0.0) 20%,
    rgba(39, 25, 28, 0.0) 45%,
    rgba(39, 25, 28, 0.6) 72%,
    rgba(39, 25, 28, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Header visual: hanger + globe */
.header-visual {
  position: absolute;
  top: 14%;
  left: 48px;
  right: auto;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}

.header-hanger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.header-hanger p {
  font-family: var(--f-b);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dark);
  opacity: 0.85;
  position: absolute;
  top: 50%;
  left: 24px;
  right: 100px;
  transform: translateY(-50%);
  z-index: 1;
  line-height: 1.3;
}

.header-hanger svg {
  opacity: 0.9;
}

.header-visual { transform-origin: top left; }

/* Globe CSS */
.digital-ball {
  position: absolute;
  left: 181px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.globe {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(110, 153, 135, 0.4);
  background: var(--teal);
}

.globe-wrap {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(224, 228, 206, 0.2);
  animation: globe-spin 6s linear infinite;
}
.circle:nth-child(2) { transform: rotateY(60deg); animation-delay: -2s; }
.circle:nth-child(3) { transform: rotateY(120deg); animation-delay: -4s; }

.circle-hor {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(224, 228, 206, 0.2);
}

.circle-hor-middle {
  position: absolute;
  top: 33%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(224, 228, 206, 0.12);
}

@keyframes globe-spin {
  0% { transform: rotateY(0); }
  100% { transform: rotateY(360deg); }
}

/* Above name text */
.home-header .container { padding-bottom: 0; position: relative; z-index: 2; }
.home-header .row { align-items: flex-end; }

.header-above-h4 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.arrow.big svg { width: 12px; height: 12px; opacity: 0.5; }

.home-header h4 {
  font-family: var(--f-b);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.55;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

.home-header h4 span {
  font-style: italic;
}

/* ─── BIG NAME ─── */
.big-name {
  position: relative;
  z-index: 3;
  overflow: hidden;
  line-height: 0;
}

.name-h1 {
  display: block;
  will-change: transform;
}

.name-wrap {
  display: inline-block;
}

.name-wrap h1 {
  font-family: var(--f-d);
  font-weight: 900;
  font-size: clamp(16vw, 21vw, 21vw);
  line-height: 0.86;
  color: var(--cream);
  white-space: nowrap;
  letter-spacing: -0.03em;
  display: inline-block;
}

.name-wrap h1 .spacer {
  font-size: 0.5em;
  opacity: 0.25;
  margin: 0 0.08em;
  vertical-align: 0.1em;
}

.white-block {
  height: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HOME INTRO
   ═══════════════════════════════════════════════════════════════ */
.home-intro {
  background: var(--dark2);
  padding: 120px 0 140px;
  position: relative;
}

.intro-dot {
  position: absolute;
  right: -8%;
  top: 50%;
  translate: 0 -50%;
  width: clamp(280px, 52vw, 700px);
  height: clamp(280px, 52vw, 700px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 40%, var(--sage) 0%, var(--teal) 60%, transparent 78%);
  opacity: 0.38;
  pointer-events: none;
  will-change: transform;
  transform-origin: center center;
  z-index: 0;
}

.home-intro .container { position: relative; z-index: 1; }

.home-intro .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.home-intro .flex-col { }

.span-lines {
  font-family: var(--f-d);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.text-wrap {
  margin-bottom: 48px;
}
.text-wrap p {
  font-family: var(--f-b);
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.6;
  max-width: 380px;
}

/* ─── Round Button ─── */
.btn-round {
  display: inline-block;
  cursor: none;
}

.btn-round a,
.btn-round .btn-click {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-family: var(--f-b);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.btn-round .btn-fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--sage);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.45s var(--ease-o);
}

.btn-round a:hover .btn-fill,
.btn-round .btn-click:hover .btn-fill { transform: scale(1.1); }

.btn-round a:hover .btn-text,
.btn-round .btn-click:hover .btn-text { color: var(--dark); }

.btn-round .btn-text {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.btn-round .btn-text-inner {
  font-family: var(--f-b);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ─── Footer round button (bigger) ─── */
.btn-fixed .btn-round a,
.btn-fixed .btn-round .btn-click {
  width: 130px;
  height: 130px;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   STRIPES
   ═══════════════════════════════════════════════════════════════ */
.stripe {
  width: 100%;
  height: 0.5px;
  background: var(--border);
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   WORK GRID (list + cursor image)
   ═══════════════════════════════════════════════════════════════ */
.work-grid {
  background: var(--dark);
  padding: 100px 0 120px;
}

.grid-sub-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.grid-sub-title h5,
.section-label-row h5 {
  font-family: var(--f-b);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.38;
  padding: 24px 0;
}

.work-items { width: 100%; }

.work-items li {
  cursor: none;
  transition: padding-left 0.45s var(--ease);
}

.work-items li:hover { padding-left: 16px; }

.work-items .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 32px;
  transition: padding-left 0.45s var(--ease);
}

.work-items .flex-col:first-child { flex: 1; }

.work-items h4 {
  font-family: var(--f-d);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

.work-items h4 span {
  display: inline-block;
  transition: transform 0.45s var(--ease);
}

.work-items li:hover h4 span { transform: translateX(8px); }

.work-items p {
  font-family: var(--f-b);
  font-size: 0.85rem;
  opacity: 0.45;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   WORK TILES
   ═══════════════════════════════════════════════════════════════ */
.work-tiles {
  background: var(--dark2);
  padding: 80px 0 100px;
}

.work-tiles ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.single-tile-wrap { cursor: none; }

.single-tile-wrap .row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tile-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease-o);
}

.single-tile-wrap:hover .tile-image { transform: scale(1.02); }

.tile-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-o), filter 0.5s ease;
  filter: saturate(0.7) brightness(0.85);
}

.single-tile-wrap:hover .tile-image img {
  transform: scale(1.06);
  filter: saturate(0.9) brightness(1);
}

.tile-label {
  position: relative;
  z-index: 1;
  font-family: var(--f-d);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(224, 228, 206, 0.25);
  letter-spacing: -0.06em;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.work-tiles h4 {
  font-family: var(--f-d);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
  line-height: 1;
}

.work-tiles h4 span {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.work-tiles .single-tile-wrap:hover h4 span { transform: translateX(6px); }

.work-tiles .stripe { margin: 14px 0 10px; }

.work-tiles p {
  font-family: var(--f-b);
  font-size: 0.82rem;
  opacity: 0.45;
}

/* ═══════════════════════════════════════════════════════════════
   CENTER GRID BTN
   ═══════════════════════════════════════════════════════════════ */
.center-grid-btn {
  background: var(--dark);
  padding: 60px 0 80px;
}

.center-grid-btn-home {
  padding: 140px 0 160px;
  overflow: hidden;
  position: relative;
}

/* ─── Animated orbs background ─── */
.vamos-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.vamos-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orb-pulse 8s ease-in-out infinite;
}

.vamos-orb-1 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  top: -20%;
  left: -15%;
  opacity: 0.35;
  animation-duration: 9s;
  animation-delay: 0s;
}

.vamos-orb-2 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--sage), transparent 70%);
  bottom: -10%;
  right: -10%;
  opacity: 0.22;
  animation-duration: 11s;
  animation-delay: -3s;
}

.vamos-orb-3 {
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  top: 30%;
  left: 55%;
  opacity: 0.15;
  animation-duration: 13s;
  animation-delay: -6s;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.12) translate(3%, -4%); }
  66%       { transform: scale(0.92) translate(-4%, 3%); }
}

.grid-after-btn {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ─── Hero CTA overrides ─── */
.btn-hero-cta .btn-text {
  font-size: clamp(3rem, 10vw, 9rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  padding: 0 !important;
  border-bottom: none !important;
  line-height: 1 !important;
}

.btn-hero-cta .btn-text-inner {
  display: flex;
  align-items: center;
  gap: 0.3em;
}

.btn-hero-cta .count-nr {
  font-family: var(--f-d) !important;
  font-size: 0.7em !important;
  font-weight: 900 !important;
  opacity: 0.55;
  transition: opacity 0.3s, transform 0.3s;
}

.btn-hero-cta .btn-click:hover .count-nr {
  opacity: 1;
  transform: translateX(8px);
}

.btn-hero-cta .btn-fill {
  border-radius: 4px;
}

/* Normal button */
.btn-normal {
  display: inline-block;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn-normal .btn-click {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.btn-normal .btn-fill {
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
  z-index: 0;
  pointer-events: none;
}

.btn-normal .btn-click:hover .btn-fill { transform: translateY(0); }
.btn-normal .btn-click:hover .btn-text { color: var(--dark); }

.btn-normal .btn-text {
  font-family: var(--f-d);
  font-size: clamp(0.9rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
  transition: color 0.3s, border-color 0.3s;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-normal .btn-click:hover .btn-text { border-color: transparent; }

.count-nr {
  font-family: var(--f-b);
  font-size: 0.78rem;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.home-services {
  padding: 100px 0 120px;
}

.services-list { width: 100%; }

.services-list li {
  cursor: none;
  transition: padding-left 0.4s var(--ease);
}

.services-list li:hover { padding-left: 14px; }

.service-row {
  display: flex;
  align-items: baseline;
  gap: 40px;
  padding: 28px 0;
}

.service-num {
  font-family: var(--f-d);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.3;
  min-width: 28px;
}

.service-name {
  font-family: var(--f-d);
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  font-weight: 700;
  flex: 1;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: transform 0.4s var(--ease);
}

.services-list li:hover .service-name { transform: translateX(6px); }

.service-desc {
  font-family: var(--f-b);
  font-size: 0.85rem;
  opacity: 0.5;
  max-width: 300px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   HORIZONTAL STRIP (parallax)
   ═══════════════════════════════════════════════════════════════ */
.horizontal-items {
  background: var(--dark);
  padding: 80px 0;
  overflow: hidden;
}

.horizontal-items .container { overflow: hidden; }

.horizontal-items .row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  will-change: transform;
}

.horizontal-items .flex-col { flex-shrink: 0; }

.horizontal-single-item {
  width: 220px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-o);
}

.horizontal-single-item:hover { transform: scale(0.97); }

.horizontal-single-item span {
  font-family: var(--f-d);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER TRANSITION (rounded div)
   ═══════════════════════════════════════════════════════════════ */
.footer-rounded-div {
  position: relative;
  height: 56px;
  overflow: hidden;
  background: var(--dark);
  z-index: 2;
}

.footer-rounded-div .rounded-div-wrap {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 120px;
}

.footer-rounded-div .rounded-div {
  width: 100%;
  height: 100%;
  background: var(--dark2);
  border-radius: 50% 50% 0 0;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer-wrap { position: relative; }

.footer-section {
  padding-top: 100px;
}

.footer {
  background: var(--dark2);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}

.footer .row { margin-bottom: 0; }

.footer .arrow {
  margin-bottom: 14px;
  opacity: 0.4;
}

.footer h2 {
  font-family: var(--f-d);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.footer h2 span {
  display: block;
}

.profile-mark {
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--sage);
  vertical-align: middle;
  margin-right: 12px;
  position: relative;
  overflow: hidden;
}

.profile-mark::after {
  content: 'A';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-d);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cream);
}

.footer .stripe { margin: 32px 0; }

.btn-fixed {
  display: flex;
  align-items: flex-start;
}

/* Footer contacts */
.footer .btn-normal {
  display: block;
  margin-bottom: 4px;
}

.footer .btn-normal .btn-text {
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  padding: 8px 0;
  letter-spacing: -0.01em;
}

/* Footer bottom */
.bottom-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 32px 0 40px;
  border-top: 0.5px solid var(--border);
  margin-top: 60px;
}

.bottom-footer .flex-col {
  display: flex;
  gap: 48px;
}

.bottom-footer .flex-col:last-child {
  justify-content: flex-end;
}

.credits h5,
.time h5,
.socials h5 {
  font-family: var(--f-b);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 6px;
}

.credits p,
.time p {
  font-family: var(--f-b);
  font-size: 0.82rem;
  opacity: 0.65;
}

.socials ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.socials .btn-link .btn-text-inner {
  font-family: var(--f-b);
  font-size: 0.82rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.socials .btn-link:hover .btn-text-inner { opacity: 1; }

.socials .stripe { height: 0.5px; }

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(39, 25, 28, 0.15) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATE / REVEAL
   ═══════════════════════════════════════════════════════════════ */
.animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-o), transform 0.8s var(--ease-o);
}

.animate.in-view {
  opacity: 1;
  transform: none;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.9s var(--ease-o);
}

.fade-in.in-view { opacity: 1; }

.once-in { opacity: 0; transform: translateY(24px); }
.once-in.revealed { opacity: 1; transform: none; transition: opacity 1s var(--ease-o), transform 1s var(--ease-o); }
.once-in-secondary { transition-delay: 0.12s; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .container, .container.medium, .container.no-padding { padding: 0 28px; }
  .nav-bar { display: none; }
  .btn-hamburger { display: block; top: 18px; right: 24px; }
  .home-intro .row { grid-template-columns: 1fr; gap: 40px; }
  .work-tiles ul { grid-template-columns: 1fr; gap: 16px; }
  .work-items h4 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .service-desc { display: none; }
  .footer h2 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .bottom-footer { flex-direction: column; gap: 32px; align-items: flex-start; }
  .bottom-footer .flex-col { gap: 28px; }
  .fixed-nav { width: 100%; }
  .horizontal-single-item { width: 160px; height: 120px; }
  .header-visual { top: 12%; left: 24px; right: auto; transform: scale(0.7); transform-origin: top left; }
  #floatImage, #floatSpan { display: none !important; }
}

@media (max-width: 600px) {
  .name-wrap h1 { font-size: clamp(22vw, 26vw, 26vw); }
  .service-row { flex-wrap: wrap; gap: 12px; }
  .service-desc { display: none; }
  .work-items .row { flex-wrap: wrap; }
  .horizontal-items .row { gap: 8px; }
  .horizontal-single-item { width: 130px; height: 100px; }
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE — SERVIÇOS
   ═══════════════════════════════════════════════════════════════ */

/* Header inner page */
.inner-page-header {
  min-height: 70vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.inner-header-content {
  padding: 0;
  position: relative;
  z-index: 2;
}

/* ─── Marquee background ─── */
.marquee-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 60px 0;
}

.marquee-row {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--f-d);
  font-size: clamp(1.4rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(224, 228, 206, 0.1);
  padding-right: 1em;
}

@keyframes marquee-to-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-to-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marquee-go-left  { animation: marquee-to-left  22s linear infinite; }
.marquee-go-right { animation: marquee-to-right 22s linear infinite; }

/* ensure big-name sits above marquee */
.inner-page-header .big-name { position: relative; z-index: 2; }
.inner-page-header .inner-header-content { z-index: 2; }

.inner-header-label {
  font-family: var(--f-b);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  margin-bottom: 12px;
  padding-bottom: 80px;
}

/* Works page: label mais destacado */
.works-page-header .inner-header-label {
  opacity: 1;
  color: var(--sage);
}

.works-page-header .inner-header-label span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.works-page-header .inner-header-label span::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--sage);
  flex-shrink: 0;
}

/* Intro section */
.inner-intro {
  padding: 100px 0;
  background: var(--dark2);
}

.inner-intro.theme-teal { background: var(--teal); }

.inner-intro h4 {
  font-family: var(--f-b);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--cream);
  letter-spacing: -0.02em;
  max-width: 560px;
}

.inner-intro h4 span { font-style: italic; }

.inner-intro .text-wrap p {
  font-family: var(--f-b);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.85;
  max-width: 420px;
}

/* ─── Services What (redesign) ─── */
.services-what {
  background: var(--dark2);
  padding: 120px 0 140px;
}

.services-what-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}

.services-what-left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.swhat-arrow {
  width: 90px;
  height: 90px;
}

.swhat-arrow svg {
  width: 100%;
  height: 100%;
}

.swhat-heading {
  font-family: var(--f-d);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.swhat-heading span { color: #4ecdc4; }

.swhat-sub {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  color: var(--cream);
  opacity: 0.5;
  line-height: 1.65;
  max-width: 300px;
}

.swhat-brand {
  font-family: var(--f-d);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-top: auto;
}

.swhat-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.swhat-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }

.swhat-name {
  font-family: var(--f-d);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.swhat-line {
  height: 2px;
  width: 100%;
  background: #4ecdc4;
  opacity: 0.7;
}

.swhat-desc {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  color: var(--cream);
  opacity: 0.5;
  line-height: 1.7;
  max-width: 480px;
}

/* Services detail list (legacy, keep empty for compat) */
.services-detail-page {
  padding: 80px 0 100px;
}

.services-detail-list { width: 100%; }

.service-detail-item {
  cursor: none;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 44px 0;
  transition: padding-left 0.4s var(--ease);
}

.service-detail-item:hover .service-detail-inner { padding-left: 14px; }

.service-detail-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail-name {
  font-family: var(--f-d);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.1;
  transition: transform 0.4s var(--ease);
}

.service-detail-item:hover .service-detail-name { transform: translateX(6px); }

.service-detail-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
}

.service-detail-desc {
  font-family: var(--f-b);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.65;
  max-width: 540px;
}

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-includes li {
  font-family: var(--f-b);
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.45;
  padding-left: 16px;
  position: relative;
  letter-spacing: 0.02em;
}

.service-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.5;
}

/* ─── Process (Sticky Timeline) ─── */
.services-process {
  background: var(--dark);
}

.process-sticky-outer {
  /* height managed by GSAP pin spacer */
}

.process-sticky-inner {
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.process-sticky-inner .container {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.process-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.process-heading {
  font-family: var(--f-d);
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.04em;
  line-height: 1.0;
}

.process-heading span { color: #4ecdc4; }

.process-subtitle {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  color: var(--cream);
  opacity: 0.45;
  max-width: 300px;
  line-height: 1.65;
  padding-bottom: 8px;
  text-align: right;
}

/* Timeline bar */
.tl-bar-area { position: relative; overflow-x: clip; overflow-y: visible; }
.tl-scrollable { will-change: transform; }

.tl-step-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tl-step-labels {
  margin-bottom: 18px;
}

.tl-step-labels span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  text-align: center;
  line-height: 1.5;
  transition: color 0.4s, transform 0.4s;
  flex: 1;
  transform: translateY(0);
}

.tl-step-labels span.active {
  color: #4ecdc4;
  transform: translateY(-3px);
}

.tl-track {
  position: relative;
  height: 5px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
}

.tl-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(78,205,196,0.25) 0%, #4ecdc4 100%);
  border-radius: 4px;
  will-change: width;
}

.tl-nodes {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.tl-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: border-color 0.35s, background 0.35s, transform 0.35s;
}

.tl-node.active {
  border-color: #4ecdc4;
  background: #4ecdc4;
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(78,205,196,0.5);
}

/* Cards carousel */
.process-cards-vp {
  overflow: visible;
  width: 100%;
}

.process-cards-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.process-card {
  flex: 0 0 clamp(260px, 34vw, 420px);
  padding: 36px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0.15;
  will-change: opacity, transform;
  transform-origin: center top;
  position: relative;
}

.process-card.active {
  border-color: rgba(78,205,196,0.3);
  background: rgba(78,205,196,0.05);
}

.process-card-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4ecdc4;
}

.process-card-title {
  font-family: var(--f-d);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.process-card-desc {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--cream);
  opacity: 0.5;
  line-height: 1.7;
}

/* ─── Por que a AUMA ─── */
.services-why {
  padding: 100px 0 120px;
}

.why-section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.why-label {
  font-family: var(--f-b);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  opacity: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.why-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--sage);
}

.why-heading {
  font-family: var(--f-d);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.why-subtitle {
  font-family: var(--f-b);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.65;
}

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

.why-item {
  padding: 48px 36px;
  border: 1px solid rgba(224, 228, 206, 0.12);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: linear-gradient(145deg, rgba(224,228,206,0.07) 0%, rgba(224,228,206,0.02) 100%);
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(224, 228, 206, 0.1);
  border: 1px solid rgba(224, 228, 206, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-title {
  font-family: var(--f-d);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.why-desc {
  font-family: var(--f-b);
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.65;
}

/* ─── FAQ ─── */
.services-faq {
  padding: 100px 0 120px;
  background: var(--dark2);
}

.faq-section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.faq-list {
  margin-top: 0;
}

.faq-item {
  list-style: none;
}

.faq-inner {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.faq-question {
  font-family: var(--f-d);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.faq-answer {
  font-family: var(--f-b);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.75;
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE — CONTATO
   ═══════════════════════════════════════════════════════════════ */

/* ─── Localização ─── */
.contact-location {
  background: var(--dark2);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.contact-map-section {
  background: var(--dark2);
  padding: 100px 0 140px;
  border-bottom: 1px solid var(--border);
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.contact-label {
  font-family: var(--f-b);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  margin-bottom: 16px;
}

.contact-address p {
  font-family: var(--f-d);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}

/* ─── Layout localização + mapa circular ─── */
.contact-loc-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* ─── Mapa circular ─── */
.contact-map-circle-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
  will-change: transform;
  margin: 0 auto;
}

.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(110, 153, 135, 0.18);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-ring-outer {
  width: 440px;
  height: 440px;
  animation: ring-pulse 4s ease-in-out infinite;
}

.map-ring-mid {
  width: 410px;
  height: 410px;
  border-color: rgba(110, 153, 135, 0.1);
  animation: ring-pulse 4s ease-in-out infinite 0.6s;
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.02); }
}

.contact-map-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
  mask-image: radial-gradient(circle, white 100%, black 100%);
  position: relative;
  border: 1px solid rgba(110, 153, 135, 0.3);
  box-shadow: 0 0 80px rgba(17, 77, 77, 0.35), inset 0 0 40px rgba(0,0,0,0.4);
}

.contact-map-circle iframe {
  width: 160%;
  height: 160%;
  position: absolute;
  top: -30%;
  left: -30%;
  border: none;
  filter: grayscale(1) brightness(0.65) contrast(1.15);
  pointer-events: none;
}

.map-loc-pin {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
}

.map-pin-city {
  font-family: var(--f-d);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.map-pin-country {
  font-family: var(--f-b);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.35;
}

/* ─── Formulário ─── */
.contact-form-section {
  background: var(--dark);
  padding: 100px 0 120px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-form-title {
  font-family: var(--f-d);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-form-sub {
  font-family: var(--f-b);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.5;
}

.contact-form-left .contact-label { margin-bottom: 20px; }

form#contactForm { display: flex; flex-direction: column; gap: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.form-group {
  position: relative;
  padding: 24px 0 0;
  margin-bottom: 8px;
}

.form-group label {
  display: block;
  font-family: var(--f-b);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  margin-bottom: 8px;
  transition: opacity 0.3s;
}

.form-group:focus-within label { opacity: 0.9; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--f-b);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  padding: 8px 0 12px;
  cursor: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpolyline points='1 1 6 6 11 1' stroke='%23e0e4ce' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-group select option {
  background: var(--dark);
  color: var(--cream);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--cream);
  opacity: 0.2;
}

.form-group textarea { resize: none; min-height: 100px; }

.form-line {
  height: 1px;
  background: var(--border);
  transition: background 0.3s;
}

.form-group:focus-within .form-line { background: var(--sage); }

.form-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.6;
}

.form-submit { margin-top: 32px; }

.btn-form-submit {
  display: inline-flex;
  overflow: hidden;
  cursor: none;
}

.btn-form-submit .btn-text {
  font-family: var(--f-d);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--cream);
  position: relative;
  z-index: 1;
  transition: color 0.3s, border-color 0.3s;
}

.btn-form-submit:hover .btn-text { color: var(--dark); border-color: transparent; }

.form-feedback {
  margin-top: 16px;
  font-family: var(--f-b);
  font-size: 0.82rem;
  line-height: 1.5;
  min-height: 20px;
}

.form-success { color: var(--sage); }
.form-error   { color: #c97070; }

/* ─── Redes sociais ─── */
.contact-social { padding: 80px 0 100px; }

.social-links-list { margin-top: 40px; }

.social-link-item { list-style: none; }

.social-link-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.3s;
  cursor: none;
}

.social-link-row:hover { color: var(--cream); }
.social-link-item:hover .social-name { opacity: 1; }

.social-num {
  font-family: var(--f-d);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.3;
  letter-spacing: 0.08em;
}

.social-name {
  font-family: var(--f-d);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.social-handle {
  font-family: var(--f-b);
  font-size: 0.85rem;
  opacity: 0.45;
  letter-spacing: 0.02em;
}

.social-arrow {
  font-size: 1.2rem;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-o);
}

.social-link-item:hover .social-arrow {
  opacity: 0.8;
  transform: translate(0, 0);
}

/* ─── WhatsApp CTA ─── */
.contact-whatsapp-cta {
  background: var(--cream);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

/* Big decorative background text */
.contact-whatsapp-cta::before {
  content: 'WA';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-d);
  font-size: clamp(14rem, 30vw, 26rem);
  font-weight: 900;
  color: rgba(17, 77, 77, 0.06);
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Glow blob */
.contact-whatsapp-cta::after {
  content: '';
  position: absolute;
  left: -10%;
  top: -20%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,77,77,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.whatsapp-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.whatsapp-cta-inner h3 {
  font-family: var(--f-d);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--dark);
  margin-top: 16px;
}

.contact-whatsapp-cta .contact-label {
  color: var(--teal);
  opacity: 0.75;
}

.contact-whatsapp-cta .btn-round a,
.contact-whatsapp-cta .btn-round .btn-click {
  color: var(--dark);
  border-color: rgba(17, 77, 77, 0.35);
}

.contact-whatsapp-cta .btn-round a:hover .btn-text,
.contact-whatsapp-cta .btn-round .btn-click:hover .btn-text {
  color: var(--cream);
}

/* Responsive */
@media (max-width: 900px) {
  .service-detail-inner { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .inner-page-header { min-height: 60vh; }
  .process-hero { flex-direction: column; align-items: flex-start; gap: 16px; }
  .process-subtitle { text-align: left; }
  .services-what-grid { grid-template-columns: 1fr; gap: 60px; }
  .services-what-left { position: static; }
  .inner-intro { padding: 60px 0; }
}

@media (max-width: 600px) {
  .process-sticky-inner { height: 100svh; gap: 28px; }
  .process-hero { flex-direction: column; align-items: flex-start; gap: 8px; }
  .process-heading { font-size: clamp(2rem, 8vw, 3rem); }
  .process-subtitle { text-align: left; font-size: 0.85rem; opacity: 0.4; max-width: 100%; padding-bottom: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .tl-scrollable { width: calc(7 * 110px); } /* wider than screen so it can scroll */
  .tl-step-labels span { font-size: 0.55rem; letter-spacing: 0.1em; }
  .tl-track { height: 4px; }
  .process-card { flex: 0 0 min(78vw, 320px); padding: 28px 24px; }
  .process-card-title { font-size: 1.2rem; }
}

/* ─── Contato responsive ─── */
@media (max-width: 900px) {
  .contact-loc-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-map-circle-wrap { margin: 80px auto 0; }
  .contact-info-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .social-link-row { grid-template-columns: 40px 1fr auto; gap: 16px; }
  .social-handle { display: none; }
  .whatsapp-cta-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .contact-info-row { grid-template-columns: 1fr; gap: 28px; }
  .contact-map-circle-wrap,
  .contact-map-circle { width: 280px; height: 280px; }
  .map-ring-outer { width: 330px; height: 330px; }
  .map-ring-mid   { width: 305px; height: 305px; }
}


/* ═══════════════════════════════════════════════════════════════
   TRABALHOS PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ─── MacBook Showcase Section ─── */
.macbook-showcase-section {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.macbook-showcase-section::before {
  content: '';
  position: absolute;
  right: -15%;
  top: 5%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,77,77,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.macbook-showcase-header {
  text-align: center;
  margin-bottom: 64px;
}

.macbook-label {
  font-family: var(--f-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--sage);
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.macbook-title {
  font-family: var(--f-d);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 20px;
}

.macbook-desc {
  font-size: 1rem;
  color: rgba(224,228,206,0.5);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── MacBook Device ─── */
.macbook-device {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.1);
  border-radius: 16px 16px 10px 10px;
}

.macbook-lid {
  background: #424244;
  border-radius: 14px 14px 0 0;
  padding: 22px 22px 0;
  position: relative;
  border: 1px solid rgba(255,255,255,0.14);
  border-bottom: none;
}

.macbook-camera {
  width: 8px;
  height: 8px;
  background: #333335;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  margin: -11px auto 14px;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.5);
}

.macbook-screen {
  width: 100%;
  aspect-ratio: 16/10;
  background: #050505;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  position: relative;
}

.macbook-screen-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160%;
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}

.macbook-base {
  background: linear-gradient(180deg, #565658 0%, #3e3e40 40%, #2a2a2c 100%);
  border-radius: 0 0 10px 10px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.18);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5px;
}

.macbook-trackpad {
  width: 26%;
  height: 5px;
  background: rgba(0,0,0,0.22);
  border-radius: 0 0 4px 4px;
}

/* ─── MacBook Meta ─── */
.macbook-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
}

.macbook-meta-label {
  display: block;
  font-family: var(--f-b);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(224,228,206,0.35);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.macbook-meta-value {
  display: block;
  font-family: var(--f-b);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}

/* ─── Works Cases Grid ─── */
.works-cases-section {
  padding: 120px 0 160px;
}

.works-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: var(--border);
}

.work-case-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--teal);
}

.work-case-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.work-case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease-o), filter 0.5s;
  filter: saturate(0.65) brightness(0.82);
}

.work-case-card:hover .work-case-img-wrap img {
  transform: scale(1.07);
  filter: saturate(0.9) brightness(1);
}

.work-case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(17,77,77,0.72) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}

.work-case-card:hover .work-case-overlay { opacity: 1; }

.work-case-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.work-case-tags span {
  font-family: var(--f-b);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--cream);
  background: rgba(17,77,77,0.75);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(110,153,135,0.45);
}

.work-case-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  border-top: 0.5px solid rgba(224,228,206,0.1);
}

.work-case-num {
  font-family: var(--f-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(224,228,206,0.3);
  min-width: 24px;
}

.work-case-text { flex: 1; }

.work-case-text h3 {
  font-family: var(--f-d);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.1;
}

.work-case-text p {
  font-size: 0.76rem;
  color: rgba(224,228,206,0.4);
  margin-top: 3px;
}

.work-case-arrow {
  color: var(--cream);
  opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.work-case-card:hover .work-case-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

/* ─── Works CTA Line ─── */
.works-cta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 100px;
  padding-top: 56px;
  border-top: 0.5px solid var(--border);
}

.works-cta-text {
  font-family: var(--f-d);
  font-size: clamp(1.5rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.1;
}

/* ─── Works page header mosaic ─── */
.works-page-header {
  position: relative;
}

.works-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.works-header-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
  gap: 2px;
}

.works-header-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.4) contrast(1.1);
  transition: none;
}

.works-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(39,25,28,0.55) 0%,
    rgba(39,25,28,0.25) 35%,
    rgba(39,25,28,0.45) 65%,
    rgba(39,25,28,0.92) 100%
  );
}

/* garante que o conteúdo do header fique acima do mosaico */
.works-page-header .inner-header-content,
.works-page-header .marquee-bg,
.works-page-header .big-name,
.works-page-header .white-block {
  position: relative;
  z-index: 2;
}

/* ─── Trabalhos responsive ─── */
@media (max-width: 900px) {
  .macbook-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 680px) {
  .works-cases-grid { grid-template-columns: 1fr; }
  .works-cta-line { flex-direction: column; align-items: flex-start; gap: 24px; }
  .macbook-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .macbook-showcase-header { margin-bottom: 40px; }
}
