/* ============================================================
   MARKETING BARREIRAS — Premium Experience v3
   Preto & branco & dourado · Serifada · Luzes/neon azuis
   ============================================================ */

:root {
  --bg: #050505;
  --bg-2: #0a0a0b;
  --surface: #0e0e10;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f4f0;
  --muted: #99968f;
  --gold: #c9a45c;
  --gold-bright: #e8c87e;
  --gold-deep: #8f6f33;
  --gold-dim: rgba(201, 164, 92, 0.14);
  --neon: #3fb5ff;                       /* apenas luzes, glow e glitch */
  --neon-glow: rgba(63, 181, 255, 0.16);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-padding-top: 90px; }

html.no-lenis { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* grain fino (tile pequeno, alta frequência — sem esticar) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  animation: grainShift 0.9s steps(3) infinite;
}

@keyframes grainShift {
  0%   { background-position: 0 0; }
  33%  { background-position: 58px -32px; }
  66%  { background-position: -44px 64px; }
  100% { background-position: 0 0; }
}

::selection { background: var(--gold); color: #140e02; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: italic; }

/* títulos animados: mantém a palavra inteira junta (não quebra no meio) */
.word { display: inline-block; }

/* ============ SPOTLIGHT (efeito de luz que segue o mouse) ============ */
.spotlight { display: none; }

@media (hover: hover) and (pointer: fine) {
  .spotlight {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 60vmax; height: 60vmax;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(circle,
      rgba(63, 181, 255, 0.05) 0%,
      rgba(201, 164, 92, 0.025) 28%,
      transparent 60%);
    transform: translate(-50%, -50%);
    will-change: transform;
    mix-blend-mode: screen;
  }
}

/* ============ VINHETA CINEMATOGRÁFICA GLOBAL ============ */
.cine-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8000;
  box-shadow:
    inset 0 0 14vw rgba(0, 0, 0, 0.55),
    inset 0 0 4vw rgba(0, 0, 0, 0.35);
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}

.preloader.done { opacity: 0; visibility: hidden; }

.preloader__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: min(280px, 70vw);
}

.preloader__logo {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 26px rgba(63, 181, 255, 0.4));
  animation: logoBreath 2.2s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.05); opacity: 1; }
}

.preloader__bar {
  width: 100%;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  box-shadow: 0 0 12px var(--gold);
  transition: width 0.25s ease-out;
}

.preloader__count {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  box-shadow: 0 0 10px rgba(63, 181, 255, 0.55);
  z-index: 9500;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5vw;
  transition: transform 0.5s var(--ease), background 0.4s, padding 0.4s;
}

.header.is-scrolled {
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-block: 12px;
}

.header.is-hidden { transform: translateY(-110%); }

.header__logo img { height: 34px; width: auto; }

.header__nav { display: flex; gap: 36px; }

.header__link {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.header__link:hover {
  color: var(--text);
  text-shadow: 0 0 16px rgba(63, 181, 255, 0.75);
}

.header__link:hover::after { transform: scaleX(1); transform-origin: left; }

.header__link.is-active { color: var(--text); }
.header__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__burger span {
  width: 28px; height: 1.5px;
  background: var(--text);
  transition: transform 0.4s var(--ease);
}

.header__burger.is-open span:first-child { transform: translateY(4.2px) rotate(45deg); }
.header__burger.is-open span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, #14110a 0%, var(--bg) 60%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease);
}

.menu.is-open { clip-path: inset(0 0 0 0); }

.menu__nav { display: flex; flex-direction: column; gap: 4px; }

.menu__link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 9vw, 4.6rem);
  line-height: 1.2;
  overflow: hidden;
}

.menu__link i {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.menu__link span {
  display: block;
  padding-bottom: 0.12em;
  transform: translateY(115%);
  transition: transform 0.7s var(--ease), color 0.3s;
}

.menu__link:hover span { color: var(--gold-bright); font-style: italic; }

.menu.is-open .menu__link span { transform: translateY(0); }
.menu.is-open .menu__link:nth-child(1) span { transition-delay: 0.10s; }
.menu.is-open .menu__link:nth-child(2) span { transition-delay: 0.16s; }
.menu.is-open .menu__link:nth-child(3) span { transition-delay: 0.22s; }
.menu.is-open .menu__link:nth-child(4) span { transition-delay: 0.28s; }
.menu.is-open .menu__link:nth-child(5) span { transition-delay: 0.34s; }
.menu.is-open .menu__link:nth-child(6) span { transition-delay: 0.40s; }

.menu__link--accent span { color: var(--gold); }

.menu__footer {
  margin-top: 7vh;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease), border-color 0.35s, box-shadow 0.45s;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}

.btn:hover::before { transform: translateY(0); }

/* botão principal: dourado, com luz neon azul no hover */
.btn--neon {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #140e02;
  box-shadow: 0 0 22px rgba(201, 164, 92, 0.3), inset 0 0 12px rgba(255, 255, 255, 0.22);
}

.btn--neon::before { background: var(--text); }

.btn--neon:hover {
  box-shadow: 0 0 30px rgba(201, 164, 92, 0.4), 0 0 60px rgba(63, 181, 255, 0.35);
}

.btn--ghost {
  border: 1px solid rgba(201, 164, 92, 0.4);
  color: var(--text);
}

.btn--ghost::before { background: var(--gold); }

.btn--ghost:hover {
  color: #140e02;
  border-color: var(--gold);
  box-shadow: 0 0 36px rgba(63, 181, 255, 0.25);
}

.btn--small { padding: 11px 22px; font-size: 0.78rem; }
.btn--big { padding: 22px 46px; font-size: 1.02rem; }

.btn svg { transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14vh 5vw 9vh;
  position: relative;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 120% 90% at 50% 110%, transparent 40%, rgba(5, 5, 5, 0.92) 100%),
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 55%, rgba(5, 5, 5, 0.65) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 30%);
  pointer-events: none;
}

/* letterbox cinematográfico — entra após o preload */
.hero__bar {
  position: absolute;
  left: 0; right: 0;
  height: 7vh;
  max-height: 90px;
  background: var(--bg);
  z-index: 4;
  pointer-events: none;
  transform: scaleY(1);
  transform-origin: var(--bar-origin, top);
  transition: transform 1.1s var(--ease) 0.2s;
}

.hero__bar--top { top: 0; --bar-origin: top; }
.hero__bar--bottom { bottom: 0; --bar-origin: bottom; }

body.is-loaded .hero__bar { transform: scaleY(0); }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 3vh;
}

.dot-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 164, 92, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(201, 164, 92, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 11.5vw, 11rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 5vh;
}

/* padding generoso embaixo para descendentes da serifada não cortarem */
.hero__line { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.08em; }

.hero__line--mix { display: flex; gap: 0.22em; flex-wrap: wrap; align-items: baseline; }

.hero__word { display: inline-block; }

.hero__word--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero__word .ch {
  display: inline-block;
  transform: translateY(130%) rotate(4deg);
  transition: transform 1s var(--ease);
}

body.is-loaded .hero__word .ch { transform: translateY(0) rotate(0); }

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

.hero__sub {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 3.5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--gold);
  animation: scrollHint 2s var(--ease) infinite;
}

@keyframes scrollHint {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(260%); }
}

/* ============ GLITCH (texto dourado em repouso, fatias azuis no efeito) ============ */
.glitch {
  position: relative;
  color: var(--gold);
}

/* ems com glitch precisam de inline-block para as fatias alinharem */
em.glitch { display: inline-block; font-style: italic; }

.glitch::before, .glitch::after {
  content: attr(data-glitch);
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(50% 0 50% 0);
  opacity: 0;
}

.glitch.is-glitching {
  color: var(--text);
  text-shadow: 0 0 24px rgba(63, 181, 255, 0.5);
}

.glitch.is-glitching::before {
  opacity: 0.9;
  color: var(--neon);
  transform: translate(-3px, 2px);
  animation: glitchSlice 0.42s steps(3) both;
}

.glitch.is-glitching::after {
  opacity: 0.9;
  color: #9fe0ff;
  transform: translate(3px, -2px);
  animation: glitchSlice 0.42s steps(3) 0.06s both reverse;
}

@keyframes glitchSlice {
  0%   { clip-path: inset(10% 0 72% 0); }
  25%  { clip-path: inset(58% 0 12% 0); }
  50%  { clip-path: inset(28% 0 48% 0); }
  75%  { clip-path: inset(80% 0 4% 0); }
  100% { clip-path: inset(44% 0 40% 0); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-block: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg-2);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__track span {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  white-space: nowrap;
  color: var(--text);
}

.marquee__track i {
  color: var(--gold);
  font-style: normal;
  font-size: 0.65rem;
}

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

/* ============ SECTIONS ============ */
.section { padding: 15vh 5vw; position: relative; overflow: clip; }

/* orbes de luz decorativas */
.section::before {
  content: "";
  position: absolute;
  width: 42vw; height: 42vw;
  max-width: 600px; max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--neon-glow) 0%, transparent 65%);
  filter: blur(40px);
  top: -10%;
  right: -14%;
  pointer-events: none;
  opacity: 0.55;
  animation: orbDrift 16s ease-in-out infinite alternate;
}

.section:nth-of-type(even)::before {
  right: auto;
  left: -14%;
  top: auto;
  bottom: -10%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.1) 0%, transparent 65%);
}

@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-6%, 8%) scale(1.18); }
}

.section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 32px;
  align-items: end;
  margin-bottom: 8vh;
  position: relative;
  z-index: 1;
}

.section__index {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  padding-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7.5vw, 6.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.06em;
}

.section__title em { color: var(--gold); font-weight: 400; }

.section__title .ch {
  display: inline-block;
  transform: translateY(125%);
  transition: transform 0.85s var(--ease);
}

.section__title.in-view .ch { transform: translateY(0); }

.section__lead {
  grid-column: 2;
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.985);
  filter: blur(6px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
}

[data-reveal].in-view { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* ============ MANIFESTO ============ */
.manifesto { padding-block: 18vh; }

.manifesto__ornament {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 5vh;
  animation: spinSlow 14s linear infinite;
  width: fit-content;
  text-shadow: 0 0 18px rgba(63, 181, 255, 0.6);
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

.manifesto__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1.35;
  max-width: 1080px;
}

.manifesto__text .w { opacity: 0.13; transition: opacity 0.5s ease; }
.manifesto__text .w.lit { opacity: 1; }

.manifesto__stats {
  margin-top: 12vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.stat {
  background: var(--bg);
  padding: 40px 30px;
  transition: background 0.4s, box-shadow 0.5s;
}

.stat:hover {
  background: var(--bg-2);
  box-shadow: inset 0 -2px 0 var(--gold), 0 0 38px rgba(63, 181, 255, 0.08);
}

.stat__value { display: flex; align-items: baseline; }

.stat__num, .stat__plus {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.1;
  color: var(--text);
}

.stat__plus { color: var(--gold); }

.stat__label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ============ SERVICES ============ */
.services__list { border-top: 1px solid var(--line); position: relative; z-index: 1; }

.service { border-bottom: 1px solid var(--line); cursor: pointer; }

.service__top {
  display: grid;
  grid-template-columns: 48px 54px 1fr 36px;
  align-items: center;
  gap: 22px;
  padding: 46px 8px;
  transition: padding 0.5s var(--ease), background 0.45s;
}

.service:hover .service__top,
.service.is-open .service__top { padding-left: 26px; }

.service.is-open .service__top { background: linear-gradient(90deg, rgba(201,164,92,0.05), transparent 60%); }

.service__num {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.service__icon {
  width: 40px; height: 40px;
  color: var(--muted);
  transition: color 0.4s var(--ease), transform 0.5s var(--ease);
}

.service:hover .service__icon,
.service.is-open .service__icon { color: var(--gold); transform: scale(1.08); }

.service.is-open .service__icon { filter: drop-shadow(0 0 14px rgba(63, 181, 255, 0.45)); }

.service__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.18;
  transition: text-shadow 0.4s;
}

.service__name em { color: var(--muted); font-weight: 400; transition: color 0.3s, text-shadow 0.4s; }

.service:hover .service__name { text-shadow: 0 0 24px rgba(63, 181, 255, 0.45); }
.service:hover .service__name em,
.service.is-open .service__name em { color: var(--gold-bright); }

.service__plus {
  position: relative;
  width: 18px; height: 18px;
  justify-self: end;
}

.service__plus::before, .service__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transition: transform 0.45s var(--ease);
}

.service__plus::after { transform: rotate(90deg); }
.service.is-open .service__plus::after { transform: rotate(0); }

.service__body { max-height: 0; overflow: hidden; transition: max-height 0.85s var(--ease); }

.service__body-inner { padding: 4px 8px 46px 124px; }

.service__body p {
  color: var(--muted);
  max-width: 640px;
  padding-bottom: 22px;
}

.service__body ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 28px;
  padding-bottom: 28px;
}

.service__body li {
  position: relative;
  padding-left: 22px;
  font-size: 0.93rem;
}

.service__body li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(201, 164, 92, 0.35);
  transition: gap 0.35s var(--ease), color 0.3s, border-color 0.3s;
}

.service__link svg { width: 15px; height: 15px; }

.service__link:hover {
  gap: 14px;
  color: var(--text);
  border-color: var(--gold);
}

/* ============ STATEMENT (vídeo) ============ */
.statement {
  position: relative;
  padding: 24vh 5vw;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.statement__video, .cta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05) brightness(0.6);
  animation: kenBurns 26s ease-in-out infinite alternate;
  will-change: transform;
}

.cta__video { animation-duration: 32s; animation-direction: alternate-reverse; }

@keyframes kenBurns {
  from { transform: scale(1.06) translate(-1%, -0.5%); }
  to   { transform: scale(1.16) translate(1.5%, 1%); }
}

.statement__overlay, .cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, var(--bg) 0%, transparent 22%, transparent 78%, var(--bg) 100%),
    rgba(5, 5, 5, 0.3);
}

.statement__content { position: relative; z-index: 2; }

.statement__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 12vw, 12rem);
  line-height: 1.06;
  text-align: center;
}

.statement__row { display: block; will-change: transform; padding-bottom: 0.06em; }

.statement__row--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.statement__row--accent { color: var(--gold); }

/* ============ PORTFOLIO (scroll horizontal pinado no PC) ============ */
.portfolio { position: relative; }

.portfolio__pin {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 5vh, 60px);
  overflow: hidden;
  padding: 12vh 0 7vh;
}

.portfolio__head {
  display: flex;
  align-items: baseline;
  gap: 26px;
  padding: 0 5vw;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.portfolio__hint {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.portfolio__hint svg { width: 16px; height: 16px; color: var(--gold); }

.portfolio__track {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  padding: 0 5vw;
  width: max-content;
  will-change: transform;
}

.portfolio__progress {
  margin: 0 5vw;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.portfolio__progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  box-shadow: 0 0 8px rgba(63, 181, 255, 0.5);
}

.portfolio .card {
  width: clamp(250px, 23vw, 350px);
  flex-shrink: 0;
  perspective: 900px;
}

.card { perspective: 900px; }

.card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease), border-color 0.4s, box-shadow 0.5s;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(232, 200, 126, 0.16) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.8s var(--ease);
}

.card:hover .card__media {
  transform: rotateY(-6deg) rotateX(3deg) translateY(-8px);
  border-color: rgba(201, 164, 92, 0.55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 44px rgba(63, 181, 255, 0.14);
}

.card:hover .card__media::after { transform: translateX(110%); }

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.card:hover .card__media img { transform: scale(1.06); }

.card figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 14px;
}

.card__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
}

.card__tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-align: right;
}

.card--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(201, 164, 92, 0.4);
  border-radius: 6px;
  padding: 32px;
  background: radial-gradient(ellipse at 30% 20%, rgba(201, 164, 92, 0.1), transparent 60%);
  transition: border-color 0.4s, box-shadow 0.5s;
}

.card--cta:hover {
  border-color: var(--gold);
  box-shadow: 0 0 50px rgba(63, 181, 255, 0.16), 0 0 24px rgba(201, 164, 92, 0.2);
}

.card__cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.card__cta-text em { color: var(--gold); }

.card__cta-arrow {
  font-size: 2.2rem;
  color: var(--gold);
  align-self: flex-end;
  transition: transform 0.4s var(--ease), text-shadow 0.4s;
}

.card--cta:hover .card__cta-arrow {
  transform: translateX(10px);
  text-shadow: 0 0 18px rgba(63, 181, 255, 0.8);
}

/* portfólio da home: no celular vira grade (sem scroll lateral) */
@media (max-width: 860px) {
  .portfolio__pin {
    min-height: auto;
    overflow: visible;
    padding: 12vh 5vw 8vh;
    gap: 6vh;
  }
  .portfolio__head { padding: 0; }
  .portfolio__hint { display: none; }
  .portfolio__track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: auto;
    padding: 0;
    transform: none !important;
  }
  .portfolio .card { width: auto; }
  .portfolio__progress { display: none; }
}

@media (max-width: 520px) {
  .portfolio__track { grid-template-columns: 1fr; gap: 18px; }
}

/* ============ PROCESS ============ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.step {
  background: var(--bg);
  padding: 46px 32px 54px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s, box-shadow 0.5s;
  transform-style: preserve-3d;
}

.step::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.step:hover {
  background: var(--bg-2);
  box-shadow: 0 0 40px rgba(63, 181, 255, 0.07);
}

.step:hover::after { transform: scaleX(1); }

.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--gold);
  display: block;
  margin-bottom: 26px;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.step p { color: var(--muted); font-size: 0.94rem; }

/* ============ TEAM ============ */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  z-index: 1;
}

.member {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-2);
  transition: border-color 0.4s, box-shadow 0.5s;
  transform-style: preserve-3d;
}

.member:hover {
  border-color: rgba(201, 164, 92, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(63, 181, 255, 0.1);
}

.member__photo {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
}

.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(0.4) contrast(1.04);
  transition: transform 0.8s var(--ease), filter 0.5s;
}

.member:hover .member__photo img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.02);
}

.member__glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(to top, var(--bg-2) 4%, transparent);
  pointer-events: none;
}

.member__info { padding: 6px 34px 40px; }

.member__role {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.member__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.member__name em { color: var(--gold); font-weight: 400; }

.member p { color: var(--muted); max-width: 460px; }

/* ============ FAQ ============ */
.faq__list { max-width: 880px; border-top: 1px solid var(--line); position: relative; z-index: 1; }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 6px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.35;
  transition: color 0.3s, padding-left 0.4s var(--ease), text-shadow 0.4s;
}

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

.faq__item summary:hover {
  color: var(--gold-bright);
  padding-left: 16px;
  text-shadow: 0 0 20px rgba(63, 181, 255, 0.4);
}

.faq__icon { position: relative; width: 15px; height: 15px; flex-shrink: 0; }

.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transition: transform 0.4s var(--ease);
}

.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0); }

.faq__answer { overflow: hidden; }

.faq__answer p { color: var(--muted); padding: 0 6px 28px; max-width: 720px; }

/* ============ CTA ============ */
.cta {
  position: relative;
  padding: clamp(14vh, 18vh, 20vh) 5vw;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.cta__video { filter: saturate(1.05) brightness(0.45); }

.cta__inner { position: relative; z-index: 2; }

.cta__ornament {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1.2em;
  padding-left: 1.2em;
  margin-bottom: 4vh;
  text-shadow: 0 0 16px rgba(63, 181, 255, 0.55);
}

.cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 10.5vw, 9.5rem);
  line-height: 1.08;
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.08em;
}

.cta__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-shadow: 0 0 36px rgba(63, 181, 255, 0.45);
}

.cta__title .ch {
  display: inline-block;
  transform: translateY(125%);
  transition: transform 0.85s var(--ease);
}

.cta__title.in-view .ch { transform: translateY(0); }

.cta__sub {
  max-width: 520px;
  margin: 3.5vh auto 5vh;
  color: rgba(245, 244, 240, 0.82);
  font-size: 1.04rem;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 10vh 5vw 4vh;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 8vh;
}

.footer__logo { width: clamp(120px, 16vw, 190px); height: auto; }

.footer__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.3;
  color: var(--muted);
}

.footer__tagline em { color: var(--gold); }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 44px;
  padding-bottom: 8vh;
  border-bottom: 1px solid var(--line);
}

.footer__col { display: flex; flex-direction: column; gap: 12px; }

.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer__col a, .footer__col span {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.3s, text-shadow 0.3s;
  width: fit-content;
}

.footer__col a:hover {
  color: var(--text);
  text-shadow: 0 0 14px rgba(63, 181, 255, 0.6);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 4vh;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer__up { transition: color 0.3s; }
.footer__up:hover { color: var(--gold-bright); }

/* ============ WHATSAPP FLOAT ============ */
.whats-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 800;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #140e02;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 26px rgba(201, 164, 92, 0.4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.whats-float:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 0 30px rgba(201, 164, 92, 0.45), 0 0 55px rgba(63, 181, 255, 0.4);
}

/* ============================================================
   CAMADA CINEMATOGRÁFICA
   ============================================================ */

/* ---- Cortina de transição entre páginas ---- */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 11000;
  background: var(--bg);
  display: grid;
  place-items: center;
  transform: translateY(-100%);
  pointer-events: none;
  will-change: transform;
}

.curtain.is-cover { transform: translateY(0); transition: none; }

.curtain.is-closing {
  transform: translateY(0);
  transition: transform 0.7s var(--ease);
  pointer-events: all;
}

.curtain.is-opening {
  transform: translateY(100%);
  transition: transform 0.9s var(--ease);
}

.curtain__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }

.curtain__logo {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 0 26px rgba(63, 181, 255, 0.4));
  opacity: 0;
  animation: curtainLogo 1.1s var(--ease) forwards;
}

.curtain__line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: curtainLine 1.1s var(--ease) 0.15s forwards;
}

@keyframes curtainLogo { to { opacity: 1; } }
@keyframes curtainLine { to { width: 140px; } }

/* ---- Moldura de visor (corner marks) ---- */
.viewfinder {
  position: fixed;
  inset: 0;
  z-index: 7900;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.5;
}

.vf {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(201, 164, 92, 0.5);
}

.vf--tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.vf--tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.vf--bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.vf--br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }


/* ---- Numerais fantasma atrás das seções ---- */
.section__ghost {
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(12rem, 34vw, 36rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  will-change: transform;
}

/* ---- Sweep dourado sob o título da seção ---- */
.section__title { position: relative; }

.section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.04em;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 1.1s var(--ease) 0.35s;
}

.section__title.in-view::after { width: min(160px, 40%); }

/* ---- Hero: varredura de luz + poeira dourada ---- */
.hero__vignette::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 42%, rgba(63, 181, 255, 0.05) 50%, transparent 58%);
  transform: translateX(-60%);
  animation: lightSweep 11s ease-in-out infinite;
}

@keyframes lightSweep {
  0%, 100% { transform: translateX(-60%); opacity: 0; }
  50% { transform: translateX(60%); opacity: 1; }
}

.dust {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.dust span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  box-shadow: 0 0 6px rgba(201, 164, 92, 0.8);
  animation: dustFloat var(--d, 16s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes dustFloat {
  0% { opacity: 0; transform: translate(0, 20px) scale(0.6); }
  20% { opacity: var(--o, 0.5); }
  80% { opacity: var(--o, 0.5); }
  100% { opacity: 0; transform: translate(var(--dx, 14px), -90px) scale(1); }
}

/* ---- Reveal em cortina (clip-path wipe) ---- */
.member__photo { clip-path: inset(0 0 100% 0); transition: clip-path 1.15s var(--ease) 0.1s; }
.member.in-view .member__photo { clip-path: inset(0 0 0 0); }

/* ---- Letterbox dinâmico do statement ---- */
.statement__bar {
  position: absolute;
  left: 0; right: 0;
  height: 0;
  background: var(--bg);
  z-index: 3;
  pointer-events: none;
  transition: height 1s var(--ease);
}

.statement__bar--top { top: 0; }
.statement__bar--bottom { bottom: 0; }

.statement.in-view .statement__bar { height: clamp(28px, 7vh, 80px); }

/* ---- Stagger nas grades reveladas ---- */
.manifesto__stats .stat:nth-child(2) { transition-delay: 0.09s; }
.manifesto__stats .stat:nth-child(3) { transition-delay: 0.18s; }
.manifesto__stats .stat:nth-child(4) { transition-delay: 0.27s; }
.process__steps .step:nth-child(2) { transition-delay: 0.1s; }
.process__steps .step:nth-child(3) { transition-delay: 0.2s; }
.process__steps .step:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   FORMULÁRIO DE LEADS
   ============================================================ */
.cta__inner--form {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.cta__inner--form .cta__title { text-align: left; }
.cta__inner--form .cta__ornament { text-align: left; letter-spacing: 0.8em; padding-left: 0.8em; margin-bottom: 3vh; }
.cta__inner--form .cta__sub { margin: 3vh 0 4vh; text-align: left; }

.cta__perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 4vh; }

.cta__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.96rem;
}

.cta__perks svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.cta__direct {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: gap 0.35s var(--ease), color 0.3s;
}

.cta__direct svg { width: 15px; height: 15px; }
.cta__direct:hover { color: var(--gold-bright); gap: 14px; }

/* o formulário em si */
.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.field { display: flex; flex-direction: column; gap: 7px; position: relative; }

.field label {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.field label span { color: rgba(153, 150, 143, 0.6); font-weight: 400; text-transform: none; letter-spacing: 0; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.field textarea { resize: vertical; min-height: 52px; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(153, 150, 143, 0.5); }

.field select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px; background-color: rgba(255, 255, 255, 0.025); background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }

/* a lista nativa do dropdown: texto escuro em fundo claro (legível) */
.field select option { color: #161616; background: #f5f4f0; }
.field select:invalid, .field select option[value=""] { color: var(--muted); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(63, 181, 255, 0.15);
}

.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: #ff5a6e;
  box-shadow: 0 0 0 3px rgba(255, 90, 110, 0.12);
}

.btn--block { width: 100%; justify-content: center; margin-top: 4px; }
.btn--block svg { width: 19px; height: 19px; }

.form__status { font-size: 0.84rem; min-height: 1.1em; margin-top: 2px; }
.form__status.is-ok { color: var(--gold-bright); }
.form__status.is-error { color: #ff7a89; }

.form__note { font-size: 0.76rem; color: rgba(153, 150, 143, 0.7); text-align: center; }

.form.is-sent { border-color: rgba(201, 164, 92, 0.5); box-shadow: 0 0 50px rgba(63, 181, 255, 0.12), 0 30px 80px rgba(0, 0, 0, 0.5); }

/* ============================================================
   LANDING PAGES
   ============================================================ */
.lp-hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18vh 5vw 12vh;
  overflow: clip;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 75% 15%, rgba(63, 181, 255, 0.11), transparent 60%),
    radial-gradient(ellipse 60% 55% at 8% 88%, rgba(201, 164, 92, 0.09), transparent 62%);
}

.lp-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4vh;
}

.lp-breadcrumb a { color: var(--muted); transition: color 0.3s; }
.lp-breadcrumb a:hover { color: var(--gold-bright); }
.lp-breadcrumb span { color: var(--gold); }

.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 3vh;
}

.lp-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 8.5vw, 7.5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 16ch;
  padding-bottom: 0.1em;
}

.lp-hero__title em { font-style: italic; color: var(--gold); }
.lp-hero__title .ch { display: inline-block; transform: translateY(115%); transition: transform 0.85s var(--ease); }
body.is-loaded .lp-hero__title .ch { transform: translateY(0); }

.lp-hero__sub {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  margin: 3.5vh 0 5vh;
}

.lp-hero__sub strong { color: var(--text); font-weight: 600; }

.lp-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 5vh; }

.lp-trust { display: flex; gap: 28px; flex-wrap: wrap; }

.lp-trust span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--muted);
}

.lp-trust svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* problema */
.lp-problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.lp-problem__item { background: var(--bg); padding: 38px 30px; transition: background 0.4s; }
.lp-problem__item:hover { background: var(--bg-2); }

.lp-problem__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.lp-problem__item p { color: var(--muted); font-size: 0.94rem; }

/* entregáveis com ícone */
.deliver {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 26px);
  position: relative;
  z-index: 1;
}

.deliver__item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px 30px;
  background: var(--bg-2);
  transition: border-color 0.4s, box-shadow 0.5s, transform 0.5s var(--ease);
}

.deliver__item:hover {
  border-color: rgba(201, 164, 92, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 50px rgba(63, 181, 255, 0.08);
  transform: translateY(-5px);
}

.deliver__icon {
  width: 46px; height: 46px;
  color: var(--gold);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 14px rgba(63, 181, 255, 0.3));
}

.deliver__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.deliver__item p { color: var(--muted); font-size: 0.95rem; }

.deliver__item ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.deliver__item li { position: relative; padding-left: 24px; font-size: 0.9rem; color: var(--text); }
.deliver__item li svg { position: absolute; left: 0; top: 2px; width: 15px; height: 15px; color: var(--gold); }

/* faixa de destaque */
.lp-band {
  position: relative;
  padding: 12vh 5vw;
  border-block: 1px solid var(--line);
  text-align: center;
  overflow: clip;
}

.lp-band__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  line-height: 1.25;
  max-width: 20ch;
  margin: 0 auto;
}

.lp-band__text em { font-style: italic; color: var(--gold); }

/* página de contato */
.contato-hero { min-height: auto; padding-top: 16vh; padding-bottom: 12vh; }
.contato-hero .cta__inner--form { margin-top: 4vh; }
.contato-hero .cta__title { font-size: clamp(2.6rem, 7vw, 5rem); }

.contato-direct { margin-top: 4vh; }

.contato-direct a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 22px;
  transition: border-color 0.4s, box-shadow 0.5s, transform 0.4s var(--ease);
}

.contato-direct a:hover {
  border-color: rgba(201, 164, 92, 0.5);
  box-shadow: 0 0 40px rgba(63, 181, 255, 0.12);
  transform: translateY(-3px);
}

.contato-direct svg { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }

.contato-direct span { display: flex; flex-direction: column; font-size: 1.05rem; color: var(--text); }
.contato-direct b { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .header__nav, .header .btn--small { display: none; }
  .header__burger { display: flex; }
  .section__head { grid-template-columns: 1fr; align-items: start; }
  .section__lead { grid-column: 1; }
  .hero__scroll { display: none; }
  .hero { padding-bottom: 12vh; }
  .service__top { grid-template-columns: 30px 1fr 22px; gap: 12px; padding: 32px 4px; }
  .service__icon { display: none; }
  .service__body-inner { padding: 0 4px 34px; }
  .statement { padding-block: 16vh; }
  .member__info { padding: 6px 24px 34px; }
  .portfolio__hint { display: none; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .section::before { opacity: 0.35; }
  .cta__inner--form { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .cta__inner--form .cta__title { font-size: clamp(2.8rem, 13vw, 4rem); }

  /* seta indicando o formulário (só no celular) */
  .cta__inner--form .cta__copy::after {
    content: "Preencha abaixo  ↓";
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 26px auto 4px;
    padding: 12px 24px;
    border: 1px solid rgba(201, 164, 92, 0.45);
    border-radius: 100px;
    color: var(--gold-bright);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(201, 164, 92, 0.06);
    box-shadow: 0 0 24px rgba(63, 181, 255, 0.14);
    animation: formArrow 1.5s var(--ease) infinite;
  }
}

@keyframes formArrow {
  0%, 100% { transform: translateY(0); opacity: 0.82; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ============================================================
   PÁGINA DE PORTFÓLIO
   ============================================================ */
.page-portfolio { padding-top: 0; }

.pf-hero {
  position: relative;
  padding: 24vh 5vw 10vh;
  overflow: hidden;
}

.pf-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 70% 10%, rgba(63, 181, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(201, 164, 92, 0.08), transparent 60%);
}

.pf-hero__back {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 5vh;
  transition: color 0.3s;
}

.pf-hero__back:hover { color: var(--gold-bright); }

.pf-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 3vh;
}

.pf-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 13vw, 12rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 4vh;
}

.pf-hero__line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.1em; }
.pf-hero__line em { font-style: italic; color: var(--gold); }

.pf-hero__line .ch {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 0.9s var(--ease);
}

body.is-loaded .pf-hero__line .ch { transform: translateY(0); }

.pf-hero__sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 5vh;
}

.pf-hero__meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.pf-hero__meta span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.pf-hero__meta b {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  margin-right: 8px;
}

/* ---- Filtros (sticky) ---- */
.pf-filters {
  position: sticky;
  top: 0;
  z-index: 700;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 5vw;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-block: 1px solid var(--line);
}

.pf-chip {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.pf-chip:hover { color: var(--text); border-color: var(--gold-soft); }

.pf-chip i {
  font-style: normal;
  font-size: 0.66rem;
  color: var(--gold);
  margin-left: 5px;
  opacity: 0.85;
  transition: color 0.3s;
}

.pf-chip.is-active {
  color: #140e02;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  border-color: transparent;
  box-shadow: 0 0 24px rgba(63, 181, 255, 0.25);
}

.pf-chip.is-active i { color: #140e02; }

/* ---- Galeria por projeto ---- */
.pf-gallery { padding: 8vh 5vw 4vh; }

.pf-project {
  margin-bottom: 12vh;
  transition: opacity 0.4s ease;
}

.pf-project.is-hidden { display: none; }

.pf-project__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.pf-project__head.in-view { opacity: 1; transform: translateY(0); }

.pf-project__id { display: flex; align-items: baseline; gap: 20px; }

.pf-project__num {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--gold);
}

.pf-project__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.pf-project__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }

.pf-project__tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
}

.pf-project__count {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* masonry de 3 colunas — preserva o formato original das peças */
.pf-grid {
  columns: 3;
  column-gap: clamp(8px, 1.4vw, 18px);
}

.pf-item {
  position: relative;
  break-inside: avoid;
  margin: 0 0 clamp(8px, 1.4vw, 18px);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--bg-2);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease), border-color 0.4s, box-shadow 0.5s;
  will-change: transform, opacity;
}

.pf-item.in-view { opacity: 1; transform: translateY(0); }

/* cortina (clip-path) na imagem interna — não no figure observado */
.pf-item img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: inset(0 0 100% 0);
  transform: scale(1.12);
  transition: clip-path 0.9s var(--ease) 0.05s, transform 1.1s var(--ease) 0.05s, filter 0.5s;
}

.pf-item.in-view img { clip-path: inset(0 0 0% 0); transform: scale(1); }

.pf-item::after {
  content: "＋";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: var(--text);
  background: linear-gradient(to top, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.05) 45%, transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.pf-item:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 32px rgba(63, 181, 255, 0.14);
  z-index: 2;
}

.pf-item:hover img { transform: scale(1.08); }
.pf-item:hover::after { opacity: 1; }

/* ---- Botão carregar mais ---- */
.pf-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(20px, 4vw, 36px);
}

.pf-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  border-radius: 100px;
  border: 1px solid rgba(201, 164, 92, 0.4);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.35s var(--ease), border-color 0.35s, box-shadow 0.4s;
}

.pf-more::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  transform: translateY(101%);
  transition: transform 0.45s var(--ease);
}

.pf-more:hover {
  color: #140e02;
  border-color: transparent;
  box-shadow: 0 0 30px rgba(63, 181, 255, 0.22);
}

.pf-more:hover::before { transform: translateY(0); }

.pf-more i {
  font-style: normal;
  font-size: 0.74rem;
  color: var(--gold);
  transition: color 0.35s;
}

.pf-more:hover i { color: #140e02; }

/* ---- CTA do portfólio ---- */
.pf-cta {
  text-align: center;
  padding: 18vh 5vw 16vh;
  position: relative;
}

.pf-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(63, 181, 255, 0.08), transparent 65%);
  pointer-events: none;
}

.pf-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1.08;
  margin-bottom: 4vh;
  padding-bottom: 0.12em;
}

.pf-cta__title em { font-style: italic; color: var(--gold); }

.pf-cta__title .ch {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.85s var(--ease);
}

body.is-loaded .pf-cta__title .ch { transform: translateY(0); }

.pf-cta p {
  max-width: 480px;
  margin: 0 auto 5vh;
  color: var(--muted);
  font-size: 1.05rem;
  position: relative;
}

.pf-cta .btn { position: relative; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 3vw, 40px);
  padding: 4vh 2vw;
  background: rgba(3, 3, 4, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox__stage {
  max-width: min(90vw, 760px);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox__stage img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.4s;
}

.lightbox.is-open .lightbox__stage img,
.lightbox__stage img.is-in { transform: scale(1); opacity: 1; }

.lightbox__stage figcaption {
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.lightbox__stage figcaption strong { color: var(--text); font-weight: 600; }
.lightbox__stage figcaption span { color: var(--gold); margin-left: 8px; }

.lightbox__close {
  position: absolute;
  top: 3vh; right: 3vw;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }

.lightbox__nav {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.4s;
}

.lightbox__nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 30px rgba(63, 181, 255, 0.25);
}

@media (max-width: 860px) {
  /* mantém 3 colunas no celular */
  .pf-grid { column-gap: 6px; }
  .pf-item { margin-bottom: 6px; }
  .pf-item::after { content: ""; }
  .pf-project__head { align-items: flex-start; }
  .pf-project__meta { align-items: flex-start; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.4rem; }
  .lightbox__close { top: 2vh; right: 4vw; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .header__nav, .header .btn--small { display: none; }
  .header__burger { display: flex; }
  .section__head { grid-template-columns: 1fr; align-items: start; }
  .section__lead { grid-column: 1; }
  .hero__scroll { display: none; }
  .hero { padding-bottom: 12vh; }
  .service__top { grid-template-columns: 30px 1fr 22px; gap: 12px; padding: 32px 4px; }
  .service__icon { display: none; }
  .service__body-inner { padding: 0 4px 34px; }
  .statement { padding-block: 16vh; }
  .member__info { padding: 6px 24px 34px; }
  .portfolio__hint { display: none; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .section::before { opacity: 0.35; }
  .hero__bar { height: 5vh; }

  /* statement: reveal cinematográfico em cascata (substitui o parallax do desktop) */
  .statement__row {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
  }
  .statement.in-view .statement__row { opacity: 1; transform: translateY(0); }
  .statement.in-view .statement__row:nth-child(2) { transition-delay: 0.12s; }
  .statement.in-view .statement__row:nth-child(3) { transition-delay: 0.24s; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .hero__word .ch, .section__title .ch, .cta__title .ch,
  .pf-item, .pf-project__head, .pf-hero__line .ch, .pf-cta__title .ch,
  .statement__row, .member__photo {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
  .pf-item img, .member__photo img { transform: none !important; clip-path: none !important; }
  .manifesto__text .w { opacity: 1; }
  .statement__video, .cta__video { display: none; }
  .hero__canvas { display: none; }
  .spotlight { display: none; }
  .hero__bar { display: none; }
  .viewfinder, .curtain, .section__ghost, .dust { display: none; }
  .statement__bar { height: 0 !important; }
  .section__title::after { transition: none; }
}
