/* ============================================================
   BRUNA RIO — Estrategista Digital
   Landing única · base clara (branco quente/marfim) · pastel autoral
   ============================================================ */

:root {
  /* base — alinhada ao Vercel */
  --bg: #F7F6F3;
  --ivory: #EAE7E0;
  --cloud: #EFEDE8;
  --line: rgba(26, 26, 26, 0.08);

  /* acento de marca — roxo */
  --brand: #6B4F8C;
  --brand-hover: #553D72;
  --brand-soft: rgba(107, 79, 140, 0.16);

  /* pastéis de apoio (órbitas / hero) */
  --mist: #A9BFD3;
  --mist-soft: #DCE6EE;
  --lavender: #AFA9C4;
  --lavender-soft: #E4E1EC;
  --sand: #E3D7C3;
  --champagne: #D9C7A5;

  /* tinta */
  --ink: #1A1A1A;
  --ink-soft: #5C5C55;
  --muted: #7A7870;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: clamp(24px, 5vw, 64px);
  --nav-h: 72px;
  --page-pad-top: 100px;
  --page-pad-bottom: clamp(64px, 8vw, 112px);
  --radius: 12px;
  --radius-lg: 16px;

  --shadow-whisper: 0 1px 2px rgba(26, 26, 26, 0.03), 0 8px 32px rgba(26, 26, 26, 0.05);
  --shadow-soft: 0 2px 6px rgba(26, 26, 26, 0.04), 0 18px 48px rgba(26, 26, 26, 0.08);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scrollbar-gutter: stable; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p, ul, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; }

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

/* grain sutil */
.grain-overlay {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* seleção */
::selection { background: var(--brand-soft); color: var(--ink); }

/* ============ TIPOGRAFIA COMPARTILHADA ============ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em { font-style: italic; font-weight: 700; color: var(--brand); }

/* ============ BOTÕES / LINKS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  border: 0; cursor: pointer;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), background 0.3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--brand { background: var(--brand); color: #fff; box-shadow: var(--shadow-soft); }
.btn--brand:hover { background: var(--brand-hover); box-shadow: 0 6px 16px rgba(107,79,140,.24), 0 24px 56px rgba(107,79,140,.2); }

.btn--dark { background: var(--ink); color: var(--bg); padding: 11px 22px; font-size: 14px; }
.btn--full { width: 100%; }

.link-underline {
  display: inline-block;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 3px;
  background: linear-gradient(currentColor, currentColor) left bottom / 100% 1px no-repeat;
  transition: background-size 0.5s var(--ease-out), opacity 0.3s;
}
.link-underline:hover { background-size: 40% 1px; opacity: 0.75; }

/* ============ NAV ============ */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.site-nav.is-scrolled {
  background: rgba(252, 251, 248, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}
.site-nav__inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px;
}
.site-nav__brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.25; }
.site-nav__brand-name { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: 0.01em; }
.site-nav__brand-tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

.site-nav__links { display: flex; gap: 34px; }
.site-nav__links a {
  font-size: 14px; font-weight: 500; text-decoration: none; color: var(--ink-soft);
  transition: color 0.3s;
}
.site-nav__links a:hover { color: var(--ink); }
.site-nav__links a.is-active { color: var(--brand); font-weight: 600; }

.site-nav__actions { display: flex; align-items: center; gap: 14px; }
.btn--dark span { pointer-events: none; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span {
  width: 20px; height: 1.6px; background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(252, 251, 248, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: grid; place-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.nav-mobile.is-open { opacity: 1; pointer-events: auto; }
.nav-mobile ul { display: grid; gap: 10px; text-align: center; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 32px; text-decoration: none; color: var(--ink);
}

/* ============ HERO ============ */
.hero { position: relative; }
.hero__pin {
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 26px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.hero__title em { font-style: italic; font-weight: 700; color: var(--brand); }

.line-mask { display: block; overflow: hidden; padding-block: 0.06em; }
.line-inner { display: inline-block; will-change: transform; }

.hero__lead {
  max-width: 470px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  margin-top: 36px;
}

.hero__scroll-hint {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 56px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-hint svg { width: 14px; height: 14px; animation: hint-bob 2.6s ease-in-out infinite; }
@keyframes hint-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============ HERO — FILME full-bleed (scroll + mouse) ============ */
.hero__film {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__film canvas {
  width: 100%; height: 100%; display: block;
  position: absolute; inset: 0;
  z-index: 1;
}
.hero__film-poster {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero--film-ready .hero__film-poster {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* véu só o suficiente para ler o copy — cena continua full-bleed */
.hero__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(100deg,
      rgba(252, 251, 248, 0.92) 0%,
      rgba(252, 251, 248, 0.78) 28%,
      rgba(252, 251, 248, 0.35) 48%,
      rgba(252, 251, 248, 0.08) 62%,
      transparent 78%);
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

/* labels na mesma caixa central da nav/texto — não colam na borda da tela */
.hero__ideias {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
.hero__ideias .ideia {
  position: absolute;
  will-change: transform;
}
.ideia--word {
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(42, 39, 36, 0.07);
  border-radius: 999px;
  padding: 10px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-whisper);
  white-space: nowrap;
}
.ideia--icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 39, 36, 0.06);
  box-shadow: var(--shadow-whisper);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ideia--icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: var(--ink-soft); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

.hero__film-motto {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(24px, 2.6vw, 40px);
  color: var(--ink-soft);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .hero__content { max-width: 100%; }
  .hero__scrim {
    background: linear-gradient(180deg,
      rgba(252, 251, 248, 0.9) 0%,
      rgba(252, 251, 248, 0.72) 45%,
      rgba(252, 251, 248, 0.28) 70%,
      transparent 100%);
  }
}

/* ============ ÓRBITA (retrato na seção Sobre) ============ */
.orbit-stage {
  position: relative;
  height: min(78vh, 700px);
  min-height: 480px;
  /* respiro interno pra labels não colarem na borda do container */
  margin-inline: clamp(0px, 1vw, 12px);
  overflow: visible;
}

.orbit-stage__halo {
  position: absolute; left: 50%; bottom: 4%;
  width: min(42%, 430px); aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #ffffff 0%, var(--ivory) 46%, transparent 72%);
  box-shadow: inset 0 0 0 1px rgba(42,39,36,0.03);
}

.orbit-stage__portrait {
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: min(52%, 350px);
  z-index: 3;
  filter: drop-shadow(0 30px 60px rgba(42, 39, 36, 0.16));
}
.orbit-stage__portrait img {
  width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
}

.orbit-stage__lines {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1;
}
.orbit-line { stroke: var(--mist); stroke-width: 1; opacity: 0.55; }
.orbit-node { fill: var(--lavender); opacity: 0.7; }

/* elementos orbitais — posição FINAL (estado organizado) */
.orbit {
  position: absolute; z-index: 2;
  will-change: transform;
}

.orbit--word {
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(42, 39, 36, 0.07);
  border-radius: 999px;
  padding: 8px 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-whisper);
  white-space: nowrap;
}

/* arco organizado ao redor da Bruna (sem negativos — evita “grudar” na tela) */
.orbit-1 { top: 7%;  left: 6%; }
.orbit-2 { top: 2%;  left: 42%; }
.orbit-3 { top: 8%;  right: 6%; }
.orbit-4 { top: 30%; left: 2%; }
.orbit-5 { top: 31%; right: 3%; }
.orbit-6 { top: 55%; left: 4%; }
.orbit-7 { top: 56%; right: 5%; }
.orbit-8 { top: 82%; right: 26%; }

.orbit--shape { border-radius: 18px; }
.shape-a {
  width: 74px; height: 96px; top: 16%; left: 22%;
  background: linear-gradient(150deg, rgba(169, 191, 211, 0.32), rgba(169, 191, 211, 0.08));
  border: 1px solid rgba(169, 191, 211, 0.35);
  backdrop-filter: blur(4px);
}
.shape-b {
  width: 58px; height: 58px; top: 14%; right: 20%;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(175, 169, 196, 0.30), rgba(175, 169, 196, 0.06));
  border: 1px solid rgba(175, 169, 196, 0.35);
}
.shape-c {
  width: 88px; height: 64px; bottom: 24%; left: 6%;
  background: linear-gradient(150deg, rgba(227, 215, 195, 0.45), rgba(227, 215, 195, 0.1));
  border: 1px solid rgba(217, 199, 165, 0.4);
  backdrop-filter: blur(4px);
}

/* mini-interfaces */
.orbit--chip {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(42, 39, 36, 0.06);
  border-radius: 14px;
  box-shadow: var(--shadow-whisper);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.chip-bars {
  display: flex; align-items: flex-end; gap: 5px;
  width: 84px; height: 62px;
  padding: 12px 14px;
  top: 44%; right: 14%;
}
.chip-bars i {
  flex: 1; height: var(--h);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--mist), var(--mist-soft));
}
.chip-bars i:nth-child(2) { background: linear-gradient(to top, var(--lavender), var(--lavender-soft)); }
.chip-bars i:nth-child(4) { background: linear-gradient(to top, var(--champagne), var(--sand)); }

.chip-dots {
  width: 96px; padding: 12px 14px;
  display: grid; gap: 7px;
  bottom: 10%; left: 14%;
}
.chip-dot { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(140deg, var(--mist-soft), var(--mist)); }
.chip-line { height: 5px; border-radius: 3px; background: var(--cloud); }
.chip-line--short { width: 60%; }

.orbit--badge {
  top: 68%; right: 2%;
  z-index: 4;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(42, 39, 36, 0.06);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}
.orbit-badge__title { font-family: var(--serif); font-size: 21px; line-height: 1.1; }
.orbit-badge__sub { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.orbit-stage__motto {
  position: absolute; left: 50%; bottom: -4%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 22px);
  color: var(--muted);
  white-space: nowrap;
  opacity: 0;
}

/* ============ MARQUEE ============ */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 22px;
  overflow: hidden;
  background: var(--ivory);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee-slide 42s linear infinite;
}
.marquee__item { display: flex; align-items: center; }
.marquee__text {
  font-family: var(--serif);
  font-size: 21px; font-style: italic;
  color: var(--ink-soft);
  padding-inline: 26px;
}
.marquee__sep { font-size: 12px; color: var(--brand); }
@keyframes marquee-slide { to { transform: translateX(-50%); } }

/* ============ SEÇÕES — base ============ */
section { position: relative; }
.sobre, .servicos, .depoimentos, .faq {
  padding-block: clamp(48px, 6vw, 88px);
}

/* reveals (estado inicial vem por JS; sem JS fica tudo visível) */

/* ============ SOBRE ============ */
.sobre__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.sobre__text { margin-top: 22px; color: var(--ink-soft); max-width: 560px; }
.drop-cap::first-letter {
  font-family: var(--serif);
  font-size: 3.4em; line-height: 0.8;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--brand);
}

.sobre__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.sobre__stats h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; }
.sobre__stats p { font-size: 13px; color: var(--muted); }

/* ============ SERVIÇOS ============ */
.servicos { background: var(--ivory); }
.servicos__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.servicos__intro-lead { color: var(--ink-soft); max-width: 420px; justify-self: end; }

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.servico-card {
  background: var(--bg);
  border: 1px solid rgba(42, 39, 36, 0.05);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-whisper);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), border-color 0.35s;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(169, 191, 211, 0.35);
}
.servico-card svg {
  width: 26px; height: 26px;
  fill: none; stroke: var(--brand); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 20px;
  transition: stroke 0.35s, transform 0.45s var(--ease-out);
}
.servico-card:hover svg {
  stroke: var(--brand-hover);
  transform: scale(1.08);
}
.servico-card h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin-bottom: 10px; }
.servico-card p { font-size: 14.5px; color: var(--ink-soft); }

.servico-card--8 { grid-column: span 8; background: linear-gradient(140deg, var(--bg) 60%, var(--mist-soft)); }
.servico-card--4 { grid-column: span 4; }
.servico-card--equipe { grid-column: span 8; background: linear-gradient(140deg, var(--bg) 55%, var(--lavender-soft)); }
.servico-photo { grid-column: span 4; min-height: 260px; overflow: hidden; border-radius: var(--radius); }
.servico-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.servico-photo:hover img { transform: scale(1.06); }

/* ============ METODOLOGIA — steps (layout Vercel) ============ */
.metodologia { padding-top: clamp(48px, 6vw, 88px); }
.metodologia__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: none;
}
@media (min-width: 1024px) {
  .metodologia__intro {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}
.metodologia__intro-lead { margin-top: 22px; color: var(--ink-soft); max-width: 420px; }
.metodologia__photo {
  display: none;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 1024px) {
  .metodologia__photo { display: block; }
}
.metodologia__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-out);
}
.metodologia__photo:hover img { transform: scale(1.02); }

.metodologia__steps {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) {
  .metodologia__steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .metodologia__steps { grid-template-columns: repeat(4, 1fr); }
}

.metodo-step {
  padding: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  transition: background 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
@media (min-width: 768px) {
  .metodo-step { border-bottom: none; border-right: 1px solid var(--line); }
  .metodo-step:nth-child(2n) { border-right: none; }
}
@media (min-width: 1024px) {
  .metodo-step { border-right: 1px solid var(--line); }
  .metodo-step:nth-child(2n) { border-right: 1px solid var(--line); }
  .metodo-step:last-child { border-right: none; }
}
.metodo-step:hover { background: var(--ivory); }
.metodo-step__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--cloud);
  margin-bottom: 18px;
  transition: color 0.45s;
}
.metodo-step:hover .metodo-step__num { color: var(--brand); }
.metodo-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 12px;
}
.metodo-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.metodologia__note {
  margin-top: clamp(36px, 5vw, 56px);
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.depoimentos__lead {
  margin-top: 18px;
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.7;
}

/* ============ DEPOIMENTOS ============ */
.depoimentos__intro { margin-bottom: clamp(32px, 4vw, 52px); }
.depoimentos__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.depoimento-card {
  position: relative;
  background: var(--bg);
  border: 1px solid rgba(42, 39, 36, 0.05);
  border-radius: var(--radius);
  padding: 40px 34px 34px;
  box-shadow: var(--shadow-whisper);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(175, 169, 196, 0.28);
}
.depoimento-card__mark {
  position: absolute; top: 18px; left: 28px;
  font-family: var(--serif);
  font-size: 64px; line-height: 1;
  color: var(--brand);
  opacity: 0.45;
}
.depoimento-card blockquote {
  position: relative;
  font-family: var(--serif);
  font-size: 19px; line-height: 1.5;
  color: var(--ink);
}
.depoimento-card figcaption { margin-top: 24px; display: grid; }
.depoimento-card strong { font-size: 14.5px; font-weight: 700; }
.depoimento-card figcaption span { font-size: 13px; color: var(--muted); }
.depoimentos { background: var(--bg); }

/* ============ FAQ ============ */
.faq { background: var(--ivory); }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.faq__lead { margin-top: 22px; color: var(--ink-soft); max-width: 380px; }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  list-style: none;
  cursor: pointer;
  padding-block: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 25px);
  color: var(--ink);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--ink-soft); }
.faq-item summary i {
  position: relative;
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border: 1px solid rgba(42, 39, 36, 0.14);
  border-radius: 50%;
}
.faq-item summary i::before, .faq-item summary i::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 1.4px; background: var(--ink-soft);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item p {
  padding: 0 44px 26px 0;
  color: var(--ink-soft);
  max-width: 560px;
}
.faq-item a { color: var(--ink); font-weight: 600; }

/* ============ CONTATO ============ */
.contato {
  position: relative;
  padding-block: clamp(48px, 6vw, 88px);
  overflow: hidden;
}
.contato__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contato__lead { margin-top: 22px; color: var(--ink-soft); max-width: 460px; }
.contato__wa { margin-top: 26px; display: inline-block; }
.contato__photo {
  margin-top: 44px;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.contato__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.contato__photo:hover img { transform: scale(1.04); }

.lead-form {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(42, 39, 36, 0.05);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow-soft);
  display: grid; gap: 20px;
}
.lead-form__field { display: grid; gap: 8px; }
.lead-form__field label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.lead-form__field input,
.lead-form__field textarea {
  font: inherit; color: var(--ink);
  background: var(--bg);
  border: 1px solid rgba(42, 39, 36, 0.1);
  border-radius: 14px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.lead-form__field input:focus,
.lead-form__field textarea:focus {
  border-color: var(--mist);
  box-shadow: 0 0 0 4px rgba(169, 191, 211, 0.18);
}
.lead-form__field ::placeholder { color: #B4AEA4; }

.lead-form__msg {
  display: none;
  font-size: 14px; font-weight: 600;
  color: var(--ink-soft);
}
.lead-form__msg.is-visible { display: block; }
.lead-form__msg.is-error { color: #A3574B; }

/* ============ FOOTER ============ */
.layout-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-block: 56px 34px;
}
.footer-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.footer-brand-name { font-family: var(--serif); font-size: 24px; }
.footer-brand-tag { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.footer-tagline { max-width: 440px; font-size: 14.5px; color: var(--ink-soft); justify-self: center; }
.footer-socials { display: flex; align-items: center; gap: 18px; }
.footer-socials a {
  display: inline-flex; align-items: center;
  color: var(--ink-soft); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: color 0.3s, transform 0.3s;
}
.footer-socials a:hover { color: var(--ink); transform: translateY(-1px); }
.footer-socials svg { width: 19px; height: 19px; }
.footer-copyright { padding-top: 22px; font-size: 13px; color: var(--muted); }

/* WhatsApp flutuante */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--ink); color: var(--bg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float svg { width: 26px; height: 26px; }

/* ============ RESPONSIVO ============ */
@media (max-width: 1080px) {
  .site-nav__links { display: none; }
  .nav-toggle { display: flex; }
  .site-nav__actions .btn--dark { display: none; }

  .hero__grid { grid-template-columns: 1fr; gap: 12px; }
  .hero__pin { padding-top: 108px; padding-bottom: 40px; }
  .orbit-stage { height: auto; min-height: 440px; margin-top: 8px; }
  .orbit-stage__portrait { width: min(62vw, 300px); }
  .orbit-stage__motto { bottom: -2%; font-size: 15px; }
  .orbit--word { font-size: 10.5px; padding: 6px 12px; }
  .orbit-4, .orbit-6 { left: 0; }
  .orbit-5, .orbit-7 { right: 0; }
  .shape-c, .chip-dots { display: none; }

  .sobre__grid, .faq__grid, .contato__grid { grid-template-columns: 1fr; }
  .servicos__intro { grid-template-columns: 1fr; }
  .servicos__intro-lead { justify-self: start; }
  .servico-card--8, .servico-card--4, .servico-card--equipe, .servico-photo { grid-column: span 12; }
  .servico-photo { min-height: 340px; }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-tagline { justify-self: start; }
  .contato__photo { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .hero__actions { gap: 18px; }
  .hero__scroll-hint { margin-top: 36px; }
  .orbit-2, .shape-b, .orbit-8 { display: none; }
  .marquee__text { font-size: 18px; padding-inline: 18px; }
  .faq-item p { padding-right: 0; }
  .wa-float { right: 18px; bottom: 18px; width: 50px; height: 50px; }
}

/* ============ MOVIMENTO REDUZIDO ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .orbit-stage__motto { opacity: 1; }
  .marquee__track { animation: none; }
}


/* ============ MULTI-PÁGINA ============ */
/* mesmo topo em TODAS as páginas internas (= Serviços) */
.page-inner .sobre,
.page-inner .servicos,
.page-inner .metodologia,
.page-inner .depoimentos,
.page-inner .galeria,
.page-inner .faq,
.page-inner .contato,
.page-inner .agencia-rio {
  padding-top: var(--page-pad-top) !important;
  padding-bottom: var(--page-pad-bottom);
}

.page-inner.page-metodologia .metodologia {
  padding-bottom: 0;
}

/* Sobre: texto no topo do grid (não centralizado no retrato alto) */
.page-inner .sobre__grid {
  align-items: start;
}
.page-inner .orbit-stage {
  height: min(68vh, 620px);
  min-height: 420px;
  margin-top: 0;
}

.page-inner .servicos__intro {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.page-inner .metodologia__intro,
.page-inner .depoimentos__intro,
.page-inner .faq__intro,
.page-inner .contato__copy {
  margin-top: 0;
}

body.page-home .site-nav:not(.is-scrolled) {
  background: transparent;
}

.home-cta {
  padding-block: clamp(56px, 8vw, 96px);
  background: var(--ivory);
}
.home-cta__inner { max-width: 720px; }
.home-cta__lead {
  margin-top: 22px;
  color: var(--ink-soft);
  max-width: 520px;
}
.home-cta__actions {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  margin-top: 36px;
}

/* ============ FUNDOS DECORATIVOS + PARALLAX ============ */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.7;
  will-change: transform;
}
.bg-orb--mist {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: 18%;
  right: -8%;
  background: radial-gradient(circle, var(--mist-soft) 0%, transparent 70%);
}
.bg-orb--sand {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  bottom: 12%;
  left: -6%;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
}
.bg-orb--lavender {
  width: min(38vw, 380px);
  height: min(38vw, 380px);
  top: 42%;
  left: 8%;
  background: radial-gradient(circle, var(--lavender-soft) 0%, transparent 70%);
}
.page-home .bg-orbs { display: none; }
main { position: relative; z-index: 1; }
.layout-footer { position: relative; z-index: 1; }

.faq-item summary {
  transition: color 0.3s;
}
.faq-item:hover summary { color: var(--ink-soft); }
.lead-form {
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.lead-form:hover {
  box-shadow: 0 8px 28px rgba(42, 39, 36, 0.1), 0 24px 56px rgba(42, 39, 36, 0.08);
}
