/* ═══════════════════════════════════════════════════════════
   JORDS — main.css
   Single CSS file for all 3 pages (index, sobre, consultoria)
   ═══════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════
   TOKENS
   ═══════════════════════════════════════════════════════════ */
:root {
  --violet: #5e1850;
  --violet-light: #7a2268;
  --violet-deep: #1a0f18;
  --copper: #b07d6a;
  --copper-light: #c4967e;
  --cream: #fdf9f6;
  --cream-warm: #f5f0eb;
  --text: #2a2226;
  --text-soft: #3d2f36;
  --muted: #7a6b6b;
  --dim: #a89898;
  --border: rgba(61,47,54,0.08);
  --border-accent: rgba(94,24,80,0.12);
  --surface: #ffffff;
  --deep: #0d080b;

  --font-heading: 'Libre Bodoni', serif;
  --font-body: 'Nunito Sans', sans-serif;

  --gap-act: clamp(120px, 16vh, 200px);
  --gap-block: clamp(80px, 10vh, 120px);
  --gap-tight: clamp(48px, 6vh, 72px);

  --px: clamp(24px, 5vw, 48px);
  --max-w: 960px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --tr: 0.3s;
  --tr-slow: 0.6s;

  /* moving light gradient */
  --light-x: 70%;
  --light-y: 20%;
}


/* ═══════════════════════════════════════════════════════════
   RESET + BASE
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
::selection { background: rgba(94,24,80,0.15); color: var(--text); }


/* ═══════════════════════════════════════════════════════════
   ANIMATIONS — scroll reveal, word reveal, light gradient
   ═══════════════════════════════════════════════════════════ */

/* Moving light gradient — sweeps across the page on scroll */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 60% 40% at var(--light-x) var(--light-y), rgba(176,125,106,0.04), transparent);
}

/* Scroll reveal — block fade + lift */
.sr {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s cubic-bezier(0.3, 0.1, 0.3, 1), transform 1.2s cubic-bezier(0.3, 0.1, 0.3, 1);
}
.sr.visible { opacity: 1; transform: translateY(0); }

/* Image-only reveal — fade, no translate (cinematic) */
.sr-img {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.3, 0.1, 0.3, 1);
}
.sr-img.visible { opacity: 1; }

/* Section title — reveal line by line (.title-line) */
.sr-title .title-line {
  display: block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s cubic-bezier(0.3, 0.1, 0.3, 1), transform 0.8s cubic-bezier(0.3, 0.1, 0.3, 1);
}
.sr-title.visible .title-line {
  opacity: 1;
  transform: translateY(0);
}

/* Word-by-word reveal — used by .breathe-text, .quote-block-text, .reveal-words, .reveal-words-title */
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-word.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse — used by .scroll-line */
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }


/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 rgba(61,47,54,0);
  transition: background var(--tr) var(--ease), padding var(--tr) var(--ease), box-shadow var(--tr) var(--ease);
}
.nav-scrolled {
  background: rgba(245,240,235,0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(61,47,54,0.08);
  padding: 14px var(--px);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 86px;
  transition: height var(--tr) var(--ease);
  filter: brightness(0) saturate(100%) invert(12%) sepia(60%) saturate(2800%) hue-rotate(296deg) brightness(90%) contrast(105%);
}
.nav-scrolled .nav-logo img { height: 67px; }

.nav-pill {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(42,34,38,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 6px;
}
.nav-pill a {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: all var(--tr);
}
.nav-pill a:hover { color: var(--text); background: var(--cream-warm); }

.nav-pill .nav-cta {
  background: var(--violet);
  color: #fff;
  font-weight: 500;
  padding: 6px 20px;
  margin-left: 2px;
}
.nav-pill .nav-cta:hover { background: var(--violet-light); }

.nav-pill .nav-pill-active {
  background: transparent;
  color: var(--violet);
  font-weight: 500;
}
.nav-pill .nav-pill-active:hover { background: transparent; color: var(--violet-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--tr);
}
.nav-toggle:hover { border-color: var(--border-accent); }
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--tr) var(--ease);
}

@media (max-width: 768px) {
  .nav-pill { display: none; }
  .nav-toggle { display: flex; }
}


/* ═══════════════════════════════════════════════════════════
   NAV OVERLAY (fullscreen editorial — mobile only)
   ═══════════════════════════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream-warm);
  display: none;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
@media (max-width: 768px) {
  .nav-overlay { display: flex; }
}
body.nav-overlay-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.nav-overlay-open { overflow: hidden; }

.nav-overlay-header {
  padding: 14px var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-overlay-logo img {
  height: 64px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(60%) saturate(2800%) hue-rotate(296deg) brightness(90%) contrast(105%);
}
.nav-overlay-close {
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.nav-overlay-close::before,
.nav-overlay-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--text);
  transition: background var(--tr) var(--ease);
}
.nav-overlay-close::before { transform: translateY(-50%) rotate(45deg); }
.nav-overlay-close::after { transform: translateY(-50%) rotate(-45deg); }
.nav-overlay-close:hover::before,
.nav-overlay-close:hover::after { background: var(--violet); }

.nav-overlay-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 0 var(--px);
  margin: 0;
}
.nav-overlay-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(36px, 9vw, 56px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color var(--tr) var(--ease);
}
body.nav-overlay-open .nav-overlay-link {
  opacity: 1;
  transform: translateY(0);
}
body.nav-overlay-open .nav-overlay-list li:nth-child(1) .nav-overlay-link { transition-delay: 0.10s; }
body.nav-overlay-open .nav-overlay-list li:nth-child(2) .nav-overlay-link { transition-delay: 0.16s; }
body.nav-overlay-open .nav-overlay-list li:nth-child(3) .nav-overlay-link { transition-delay: 0.22s; }
body.nav-overlay-open .nav-overlay-list li:nth-child(4) .nav-overlay-link { transition-delay: 0.28s; }
body.nav-overlay-open .nav-overlay-list li:nth-child(5) .nav-overlay-link { transition-delay: 0.34s; }

.nav-overlay-link:hover,
.nav-overlay-link.is-active { color: var(--violet); }
.nav-overlay-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--copper);
  transition: width 0.4s var(--ease);
}
.nav-overlay-link:hover::after,
.nav-overlay-link.is-active::after { width: 56px; }

.nav-overlay-footer {
  height: 50px;
  padding: 0 var(--px);
  background: var(--violet);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-overlay-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(13px, 3.6vw, 15px);
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1.4;
}
.nav-overlay-icons {
  display: flex;
  gap: 24px;
}
.nav-overlay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: color var(--tr) var(--ease);
}
.nav-overlay-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-overlay-icon:hover {
  color: var(--copper-light);
}

/* Hambúrguer → X */
.nav-toggle span {
  transform-origin: center;
}
body.nav-overlay-open .nav-toggle { display: none; }

@media (prefers-reduced-motion: reduce) {
  .nav-overlay,
  .nav-overlay-link {
    transition: none !important;
  }
  body.nav-overlay-open .nav-overlay-list li .nav-overlay-link { transition-delay: 0s !important; }
}


/* ═══════════════════════════════════════════════════════════
   WHATSAPP — fixed button
   ═══════════════════════════════════════════════════════════ */
.whatsapp-fixed {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(94,24,80,0.35);
  transition: all var(--tr) var(--ease);
}
.whatsapp-fixed:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(94,24,80,0.45);
}
.whatsapp-fixed svg { width: 24px; height: 24px; fill: #fff; }


/* ═══════════════════════════════════════════════════════════
   FOOTER (shared)
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--cream-warm);
  padding: 56px var(--px) 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }

.footer-col-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--tr);
}
.footer-col-links a:hover { color: var(--text); }

.footer-col-address {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo img {
  height: 58px;
  opacity: 0.4;
  filter: brightness(0) saturate(100%) invert(12%) sepia(60%) saturate(2800%) hue-rotate(296deg) brightness(90%) contrast(105%);
}

.footer-legal {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal a { color: var(--muted); transition: color var(--tr); }
.footer-legal a:hover { color: var(--text-soft); }

.footer-credit {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
  opacity: 0.6;
}


/* ═══════════════════════════════════════════════════════════
   CLOSING (Vamos conversar — fullbleed contact, shared)
   ═══════════════════════════════════════════════════════════ */
.closing {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
}
.closing-bg img {
  width: 100%;
  height: calc(100% + 120px);
  margin-top: -60px;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,8,11,0.8) 0%, rgba(13,8,11,0.4) 50%, transparent 80%);
  z-index: 1;
}

.closing-content {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vh, 80px) var(--px);
  max-width: 480px;
}

.closing-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.closing-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}

.closing-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.closing-link {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 4px;
  display: inline-block;
  width: fit-content;
  transition: color var(--tr), border-color var(--tr);
}
.closing-link:hover { color: #fff; border-color: rgba(255,255,255,0.4); }


/* ═══════════════════════════════════════════════════════════
   INLINE LOGO (used inside testimonials title etc.)
   ═══════════════════════════════════════════════════════════ */
.inline-logo {
  display: inline;
  height: 2.4em;
  vertical-align: middle;
  margin-left: 0.15em;
  filter: brightness(0) saturate(100%) invert(12%) sepia(60%) saturate(2800%) hue-rotate(296deg) brightness(90%) contrast(105%);
}


/* ═══════════════════════════════════════════════════════════
   MEDIA CARDS — imprensa carrossel (shared)
   ═══════════════════════════════════════════════════════════ */
.media-block {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  background: var(--cream-warm);
  min-height: 50vh;
}
@media (max-width: 768px) { .media-block { grid-template-columns: 1fr; } }

.media-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}

.media-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.1;
}

.media-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: clamp(40px, 4vw, 60px) clamp(24px, 3vw, 40px) clamp(40px, 4vw, 60px) 0;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.media-cards::-webkit-scrollbar { display: none; }

.media-card {
  flex: 0 0 clamp(200px, 22vw, 260px);
  scroll-snap-align: start;
}

.media-card-photo {
  width: 100%;
  aspect-ratio: 16/10;
  background: rgba(42,34,38,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.media-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card-photo-placeholder {
  font-size: 10px;
  color: var(--dim);
  text-align: center;
  padding: 8px;
  line-height: 1.4;
  font-family: var(--font-heading);
  font-style: italic;
}

.media-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.media-card-source {
  font-size: 11px;
  color: var(--dim);
  margin-bottom: 8px;
}
.media-card-link {
  font-size: 12px;
  color: var(--violet-light);
  transition: color var(--tr);
}
.media-card-link:hover { color: var(--violet); }


/* ═══════════════════════════════════════════════════════════
   PAGE — HOME
   ═══════════════════════════════════════════════════════════ */


/* ─── 01 · HERO SLIDESHOW ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--cream);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 3;
}
.slide.leaving {
  opacity: 0;
  z-index: 2;
}

/* Image slides */
.slide--image { overflow: hidden; }
.slide--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* Per-slide ken burns */
.slide[data-slide="0"] img { object-position: center center; }
.slide[data-slide="0"].active img,
.slide[data-slide="0"].leaving img {
  animation: kb-zoom-in 8s ease-in-out forwards;
}

.slide[data-slide="1"] img { object-position: 60% center; }
.slide[data-slide="1"].active img,
.slide[data-slide="1"].leaving img {
  animation: kb-pan-right-left 8s ease-in-out forwards;
}

.slide[data-slide="3"] img { object-position: center center; }
.slide[data-slide="3"].active img,
.slide[data-slide="3"].leaving img {
  animation: kb-zoom-out 8s ease-in-out forwards;
}

.slide[data-slide="4"] img { object-position: 30% center; }
.slide[data-slide="4"].active img,
.slide[data-slide="4"].leaving img {
  animation: kb-pan-left-right 8s ease-in-out forwards;
}

.slide[data-slide="5"] img { object-position: 25% 20%; transform: scale(1.15); }
.slide[data-slide="5"].active img,
.slide[data-slide="5"].leaving img {
  animation: kb-pan-jordana 8s ease-in-out forwards;
}

@keyframes kb-zoom-in {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@keyframes kb-pan-right-left {
  from { object-position: 65% center; transform: scale(1.04); }
  to   { object-position: 35% center; transform: scale(1.04); }
}
@keyframes kb-zoom-out {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@keyframes kb-pan-left-right {
  from { object-position: 30% center; transform: scale(1.04); }
  to   { object-position: 60% center; transform: scale(1.04); }
}
@keyframes kb-zoom-in-soft {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}
@keyframes kb-pan-jordana {
  from { object-position: 25% 20%; transform: scale(1.15); }
  to   { object-position: 55% 20%; transform: scale(1.15); }
}

/* Text slide */
.slide--text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-warm);
}
.slide--text .text-phrase {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--text-soft);
  text-align: center;
  line-height: 1.4;
  padding: 0 2rem;
  overflow: hidden;
  will-change: transform;
}
.slide--text.active .text-phrase {
  animation: hero-text-zoom 8s ease-in-out forwards;
}
@keyframes hero-text-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}
.slide--text .text-phrase .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide--text.active .text-phrase .word.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide--text .text-phrase .word.fade-out {
  opacity: 0;
  transform: translateY(-12px);
}

/* Hero gradient overlay */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(180deg, transparent 30%, rgba(245,240,235,0.75) 70%, var(--cream-warm) 100%);
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 0 var(--px) clamp(48px, 8vh, 80px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.title-gradient {
  background: linear-gradient(135deg, var(--violet) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--muted);
  margin-top: 14px;
  max-width: 500px;
  line-height: 1.6;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.5s ease;
}
.scroll-hint.fading {
  opacity: 0;
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
}
.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--violet), transparent);
  animation: pulse 2.5s ease infinite;
}

@media (max-width: 768px) {
  .scroll-hint { display: none; }
}


/* ─── BREATHE BLOCK ─── */
.breathe-block {
  padding: clamp(120px, 20vh, 200px) var(--px);
  text-align: center;
  background: var(--cream-warm);
}
.breathe-text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}


/* ─── 02 · MOSAICO ─── */
.mosaic-wrapper {
  background: var(--cream-warm);
  padding: clamp(60px, 8vh, 100px) clamp(24px, 5vw, 60px);
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 700px) {
  .mosaic {
    grid-template-columns: 0.8fr 1.4fr 0.8fr;
    grid-template-rows: 1.6fr 0.4fr;
    min-height: 65vh;
    gap: 8px;
  }
  .mosaic-right-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-row: span 2;
  }
  .mosaic-right-col .mosaic-item--top-right { flex: 0.4; }
  .mosaic-right-col .mosaic-item--bottom-right { flex: 1.6; }
}

.mosaic-item {
  background: var(--cream-warm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-height: 180px;
  overflow: hidden;
  /* Stagger entrance: starts hidden, revealed via .mosaic-visible */
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.3, 0.1, 0.3, 1), transform 0.8s cubic-bezier(0.3, 0.1, 0.3, 1);
}
.mosaic-item.mosaic-visible {
  opacity: 1;
  transform: scale(1);
}

.mosaic-item img {
  position: absolute;
  inset: -40px 0;
  width: 100%;
  height: calc(100% + 80px);
  object-fit: cover;
  will-change: transform;
}
.mosaic-item:hover img { transform: scale(1.03); }

.mosaic-item--hero { grid-row: span 2; }

@media (max-width: 699px) {
  .mosaic-right-col { display: contents; }
  .mosaic-item--hero {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(245,240,235,0.55) 70%, rgba(245,240,235,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.mosaic-content {
  text-align: center;
  padding: 16px 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.mosaic-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mosaic-subtitle {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}


/* ─── 03 · AUTORIDADE ─── */
.authority {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--cream);
}
@media (max-width: 768px) { .authority { grid-template-columns: 1fr; } }
/* iguala à altura renderizada da Origem (sobre.html), que o texto longo leva a ~746px */
@media (min-width: 769px) { .authority { min-height: 746px; } }

.authority-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.authority-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.authority-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px);
}

.authority-date {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}

.authority-narrative {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 24px;
}

.authority-stats {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.8;
}


/* ─── 04 · JORDANA FULLBLEED ─── */
.jordana-fullbleed {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.j-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.j-slide.j-active { opacity: 1; z-index: 2; }
.j-slide.j-leaving { opacity: 0; z-index: 2; }

.j-slide--image { overflow: hidden; }
.j-slide--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.j-slide[data-jslide="0"] img { object-position: 60% center; }
.j-slide[data-jslide="0"].j-active img,
.j-slide[data-jslide="0"].j-leaving img {
  animation: jkb-zoom-in-a 8s ease-in-out forwards;
}
.j-slide[data-jslide="2"] img { object-position: 55% 40%; }
.j-slide[data-jslide="2"].j-active img,
.j-slide[data-jslide="2"].j-leaving img {
  animation: jkb-zoom-out 8s ease-in-out forwards;
}
.j-slide[data-jslide="3"] img { object-position: center center; }
.j-slide[data-jslide="3"].j-active img,
.j-slide[data-jslide="3"].j-leaving img {
  animation: jkb-zoom-in-b 8s ease-in-out forwards;
}

@keyframes jkb-zoom-in-a {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@keyframes jkb-zoom-out {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}
@keyframes jkb-zoom-in-b {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}

.j-slide--text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-warm);
}
.j-slide--text .j-text-phrase {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--text-soft);
  text-align: center;
  line-height: 1.4;
  padding: 0 2rem;
  will-change: transform;
}
.j-slide--text.j-active .j-text-phrase {
  animation: jkb-text-zoom 8s ease-in-out forwards;
}
.j-slide--text .j-text-phrase .j-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.j-slide--text.j-active .j-text-phrase .j-word.j-visible {
  opacity: 1;
  transform: translateY(0);
}
.j-slide--text .j-text-phrase .j-word.j-fade-out {
  opacity: 0;
  transform: translateY(-12px);
}

@keyframes jkb-text-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

.jordana-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,8,11,0.85) 100%);
  z-index: 3;
}

.jordana-content {
  position: relative;
  z-index: 5;
  padding: 0 var(--px) clamp(48px, 8vh, 72px);
  max-width: 560px;
}

.jordana-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.jordana-bio {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.jordana-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color var(--tr);
}
.jordana-link:hover { color: #fff; }


/* ─── 05 · CITAÇÃO ─── */
.quote-block {
  background: var(--cream-warm);
  padding: clamp(48px, 8vh, 80px) var(--px);
  text-align: center;
}

.quote-block-mark {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.6;
  color: var(--violet);
  opacity: 0.25;
  margin-bottom: 20px;
}

.quote-block-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
}

.quote-block-author {
  font-size: 13px;
  color: var(--dim);
  margin-top: 24px;
  letter-spacing: 0.04em;
}


/* ─── 06 · TIMELINE (refined progressive fill) ─── */
.timeline-section {
  background: var(--cream);
  padding: clamp(80px, 12vh, 140px) var(--px);
}

.timeline-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
@media (max-width: 767px) { .timeline-line { left: 24px; transform: none; } }

/* Progress overlay — thin, behind dots */
.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 0%;
  background: var(--violet);
  transform: translateX(-50%);
  z-index: 2;
  transition: height 0.05s linear;
}
@media (max-width: 767px) {
  .timeline-progress { left: 24px; transform: none; }
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  z-index: 3; /* above .timeline-progress (z2) */
}
@media (min-width: 768px) {
  .timeline-step {
    grid-template-columns: 1fr 48px 1fr;
    gap: 32px;
    align-items: center;
  }
}
.timeline-step:last-child { margin-bottom: 0; }

/*
  Depth stack (back → front):
  z1: gray line (.timeline-line)
  z2: violet line (.timeline-progress)
  z3: opaque cream disc + gray ring (.timeline-dot::after) — masks lines
  z4: violet progressive arc (.timeline-dot::before) — over the gray ring
  z5: center dot (.timeline-dot-inner)
*/
.timeline-dot {
  position: relative;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  z-index: 1;
}

.timeline-dot::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 50%;
  opacity: var(--fill-opacity, 0);
  background: conic-gradient(
    from 0deg at 50% 50%,
    var(--violet) var(--fill-angle, 0deg),
    transparent var(--fill-angle, 0deg),
    transparent calc(360deg - var(--fill-angle, 0deg)),
    var(--violet) calc(360deg - var(--fill-angle, 0deg))
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
  z-index: 2;
}

.timeline-dot-inner {
  width: 8px;
  height: 8px;
  position: relative;
  z-index: 3;
  background: var(--violet);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 767px) {
  .timeline-dot { position: absolute; left: 0; top: 0; }
  .timeline-step { padding-left: 72px; }
}
@media (min-width: 768px) { .timeline-dot-wrap { display: flex; justify-content: center; } }

.timeline-content { display: flex; flex-direction: column; gap: 8px; }
.timeline-content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text);
}
.timeline-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 340px;
}

.timeline-photo {
  width: 140px;
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.timeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  /* Odd rows: photo left (near axis), text right */
  .timeline-step .timeline-media { order: 0; display: flex; justify-content: flex-end; }
  .timeline-step .timeline-dot-wrap { order: 1; }
  .timeline-step .timeline-content { order: 2; }
  /* Even rows: text left, photo right (near axis) */
  .timeline-step:nth-child(even) .timeline-content { order: 0; text-align: right; align-items: flex-end; }
  .timeline-step:nth-child(even) .timeline-dot-wrap { order: 1; }
  .timeline-step:nth-child(even) .timeline-media { order: 2; display: flex; justify-content: flex-start; }
}
@media (max-width: 767px) {
  .timeline-dot-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
  }
  .timeline-media { order: -1; }
  .timeline-photo { width: 100%; height: 160px; border-radius: var(--radius); }
}


/* ─── 07 · CONSULTORIA (split intro) ─── */
.section {
  padding: clamp(80px, 12vh, 140px) var(--px);
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dim);
  font-weight: 500;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
}

.two-col {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }

.col-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet-light);
  margin-bottom: 16px;
}
.col-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.col-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 380px;
}
.col-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--violet-light);
  transition: color var(--tr);
}
.col-link:hover { color: var(--violet); }

.sep {
  width: 100%;
  max-width: var(--max-w);
  height: 1px;
  background: var(--border);
  margin: 0 auto;
}


/* ─── 08 · SERVIÇOS ─── */
.services-block {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  background: var(--cream);
  color: var(--text);
  min-height: 70vh;
}
@media (max-width: 768px) { .services-block { grid-template-columns: 1fr; } }

.services-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}

.services-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.services-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 3vw, 40px) clamp(40px, 5vw, 60px) 0;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (max-width: 768px) {
  .services-cards { padding-left: 0; margin-left: 24px; }
  .media-cards { padding-left: 0; margin-left: 24px; }
}
.services-cards::-webkit-scrollbar { display: none; }

.service-card {
  flex: 0 0 clamp(260px, 30vw, 340px);
  scroll-snap-align: start;
}

.service-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow) var(--ease);
}
.service-card:hover .service-card-photo img { transform: scale(1.03); }

.service-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--violet-light);
  transition: color var(--tr);
}
.service-card-link::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--border);
}
.service-card-link:hover { color: var(--violet); }


/* ─── 10 · DEPOIMENTOS ─── */
.testimonials {
  background: var(--cream);
  padding: clamp(80px, 12vh, 140px) var(--px);
}

.testimonials-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--text);
}

.testimonials-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 700px) { .testimonials-grid { grid-template-columns: 1fr; gap: 40px; } }

.testimonial { text-align: center; }
.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-author {
  font-size: 12px;
  color: var(--violet-light);
  letter-spacing: 0.04em;
}
.testimonial-context {
  font-size: 11px;
  color: var(--dim);
  margin-top: 4px;
}


/* ─── 11 · INSTAGRAM ─── */
.instagram-section {
  padding: clamp(80px, 12vh, 140px) var(--px);
  background: var(--cream-warm);
}

.instagram-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
  gap: 12px;
}

.instagram-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--text);
}

.instagram-handle {
  font-size: 13px;
  color: var(--violet-light);
  transition: color var(--tr);
}
.instagram-handle:hover { color: var(--violet); }

.instagram-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 600px) { .instagram-grid { grid-template-columns: repeat(2, 1fr); } }

.instagram-post {
  aspect-ratio: 1;
  background: var(--cream-warm);
  border-radius: var(--radius);
  overflow: hidden;
}
.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow) var(--ease);
}
.instagram-post:hover img { transform: scale(1.05); }

.instagram-note {
  max-width: var(--max-w);
  margin: 12px auto 0;
  font-size: 11px;
  color: var(--dim);
  text-align: center;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   PAGE — SOBRE
   ═══════════════════════════════════════════════════════════ */


/* ─── 01 · SOBRE HERO ─── */
.sobre-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.sobre-hero-bg {
  position: absolute;
  inset: 0;
}
.sobre-hero-bg img {
  width: 100%;
  height: calc(100% + 120px);
  margin-top: -60px;
  object-fit: cover;
  object-position: center 15%;
  will-change: transform;
}
.sobre-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,8,11,0.85) 100%);
  z-index: 1;
}
.sobre-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px) clamp(48px, 8vh, 80px);
  max-width: 700px;
}
.sobre-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 16px;
}
.sobre-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.sobre-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}


/* ─── Eyebrow + section title patterns ─── */
.sobre-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.sobre-section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
}
.sobre-section-title.center { text-align: center; }


/* ─── 02 · ORIGEM (split) ─── */
.sobre-origem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--cream);
}
@media (max-width: 768px) { .sobre-origem { grid-template-columns: 1fr; } }
.sobre-origem-photo { position: relative; overflow: hidden; min-height: 400px; }
.sobre-origem-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.sobre-origem-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 100px);
}
.sobre-origem-text p {
  margin-bottom: 20px;
  max-width: 460px;
  color: var(--muted);
  line-height: 1.8;
}


/* ─── 03 · EXPERTISE ─── */
.sobre-expertise {
  background: var(--cream-warm);
  padding: clamp(80px, 12vh, 140px) var(--px);
  text-align: center;
}
.sobre-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  max-width: 900px;
  margin: clamp(40px, 5vw, 64px) auto 0;
}
@media (max-width: 768px) { .sobre-expertise-grid { grid-template-columns: repeat(2, 1fr); } }
.sobre-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  white-space: nowrap;
}
.sobre-stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.sobre-expertise-text {
  max-width: 680px;
  margin: clamp(48px, 6vw, 80px) auto 0;
  color: var(--muted);
  line-height: 1.8;
}
.sobre-expertise-emphasis {
  display: block;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-soft);
}


/* ─── 04 · CONSULTORIA (escuro) ─── */
.sobre-consultoria {
  background: var(--violet-deep);
  color: #fff;
  padding: clamp(100px, 14vh, 180px) var(--px);
  position: relative;
  z-index: 1;
}
.sobre-consultoria-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.sobre-consultoria-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 24px;
}
.sobre-consultoria-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}
.sobre-consultoria-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  line-height: 1.7;
}
.sobre-consultoria-quote {
  margin: 0 auto clamp(48px, 6vw, 80px);
  max-width: 700px;
}
.sobre-consultoria-quote-mark {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--copper);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 16px;
}
.sobre-consultoria-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.sobre-consultoria-quote-source {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.sobre-consultoria-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(48px, 6vw, 64px);
}
@media (max-width: 768px) { .sobre-consultoria-cards { grid-template-columns: 1fr; } }
.sobre-consultoria-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  text-align: left;
  transition: border-color var(--tr) var(--ease), background var(--tr) var(--ease);
}
.sobre-consultoria-card:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}
.sobre-consultoria-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.sobre-consultoria-card-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}
.sobre-consultoria-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.sobre-consultoria-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--copper);
  color: #fff;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--tr) var(--ease), transform var(--tr) var(--ease);
}
.sobre-consultoria-cta:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
}


/* ─── 05 · CITAÇÃO fullbleed ─── */
.sobre-citacao {
  background: var(--cream-warm);
  padding: clamp(80px, 12vh, 140px) var(--px);
  text-align: center;
}
.sobre-citacao-mark {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--violet);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 20px;
}
.sobre-citacao-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 24px;
}
.sobre-citacao-author {
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.04em;
}


/* ═══════════════════════════════════════════════════════════
   PAGE — CONSULTORIA
   ═══════════════════════════════════════════════════════════ */


/* ─── 01 · CONS HERO ─── */
.cons-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.cons-hero-bg {
  position: absolute;
  inset: 0;
}
.cons-hero-bg img {
  width: 100%;
  height: calc(100% + 120px);
  margin-top: -60px;
  object-fit: cover;
  object-position: center 20%;
  will-change: transform;
}
@media (max-width: 768px) {
  .cons-hero-bg img { object-position: 75% 25%; }
}
.cons-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,8,11,0.85) 100%);
  z-index: 1;
}
.cons-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px) clamp(48px, 8vh, 80px);
  max-width: 700px;
}
.cons-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 16px;
}
.cons-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.cons-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}


/* ─── Eyebrow + section title patterns ─── */
.cons-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cons-eyebrow.with-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}
.cons-section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
}
.cons-section-title.center { text-align: center; }


/* ─── 03 · ESPECIALISTA (polaroid + watermark edge-to-edge) ─── */
.esp {
  position: relative;
  background: var(--cream-warm);
  padding: clamp(120px, 18vh, 200px) 0;
  overflow: hidden;
}
.esp-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.esp-watermark-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 22vw;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--violet);
  opacity: 0.08;
  white-space: nowrap;
  user-select: none;
}
.esp-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.esp-polaroid {
  flex-shrink: 0;
  background: #fff;
  padding: 16px 16px 56px;
  box-shadow:
    0 4px 16px rgba(42,34,38,0.08),
    0 16px 48px rgba(42,34,38,0.10);
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease);
}
.esp-polaroid:hover {
  transform: rotate(0deg);
}
.esp-polaroid img {
  width: 320px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.esp-text {
  max-width: 480px;
}
.esp-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.esp-eyebrow.with-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  flex-shrink: 0;
}
.esp-title {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.esp-trace {
  width: 40px;
  height: 1px;
  background: var(--copper);
  margin-bottom: 14px;
}
.esp-subtitle {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
}
.esp-body p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}
.esp-body p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .esp-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }
  .esp-text { max-width: 100%; text-align: left; }
  .esp-polaroid img { width: 260px; }
  .esp-watermark-text { font-size: 20vw; }
}


/* ─── ABORDAGEM — 4 princípios com mask reveal ─── */
.cons-abordagem {
  background: var(--cream);
  padding: clamp(80px, 12vh, 140px) var(--px);
}
.cons-abordagem-header {
  max-width: 600px;
  margin: 0 auto clamp(48px, 8vw, 80px);
  text-align: center;
}
.cons-abordagem-intro {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
}
.cons-abordagem-list {
  max-width: 1000px;
  margin: 0 auto;
}
.cons-principio {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(28px, 4vw, 48px) 0;
  position: relative;
  border-top: 1px solid var(--border);
}
.cons-principio:last-child {
  border-bottom: 1px solid var(--border);
}
.cons-principio-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--copper);
  flex-shrink: 0;
  width: 32px;
}
.cons-principio-word {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  margin: 0;
  flex: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.3, 0.1, 0.3, 1);
}
.cons-principio.revealed .cons-principio-word {
  clip-path: inset(0 0 0 0);
}
.cons-principio-line {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  width: 0;
  background: var(--violet);
  transition: width 0.9s cubic-bezier(0.3, 0.1, 0.3, 1) 0.3s;
}
.cons-principio.revealed .cons-principio-line {
  width: 100%;
}


/* ─── ATUAÇÃO — STICKY-HALF SCROLL (Pessoa Física + Empresas) ─── */
.atu-section {
  padding: clamp(80px, 12vh, 140px) 0 clamp(40px, 6vh, 80px);
}
.atu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--px);
  gap: clamp(40px, 6vw, 80px);
}
.atu-sticky-col {
  position: sticky;
  top: 14vh;
  height: 72vh;
  overflow: hidden;
  border-radius: 2px;
}
.atu-sticky-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.atu-sticky-photo.active { opacity: 1; }
.atu-sticky-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atu-scroll-col {
  display: flex;
  flex-direction: column;
  gap: 12vh;
}
.atu-frente {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 3vh 0;
}
.atu-frente-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.atu-frente-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.atu-frente-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: var(--text-soft);
  line-height: 1.4;
  margin-bottom: 24px;
}
.atu-frente-body {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.atu-frente-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-bottom: 36px;
  max-width: 480px;
}
.atu-frente-meta dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.atu-frente-meta dd {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  color: var(--text);
}
.atu-frente-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 18px;
  color: var(--violet);
  border-bottom: 1px solid var(--violet);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap var(--tr) var(--ease);
}
.atu-frente-cta:hover { gap: 18px; }

@media (max-width: 880px) {
  .atu-split { grid-template-columns: 1fr; }
  .atu-sticky-col {
    position: relative;
    top: 0;
    height: 60vh;
    margin-bottom: 24px;
  }
  .atu-frente {
    min-height: auto;
    padding: 24px 0;
  }
}


/* ─── 03 · CARDS (duas linhas) ─── */
.cons-cards-section {
  background: var(--cream-warm);
  padding: clamp(80px, 12vh, 140px) var(--px);
}
.cons-cards-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 64px);
}
.cons-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) { .cons-cards { grid-template-columns: 1fr; } }

.cons-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), border-color var(--tr) var(--ease);
}
.cons-card.cons-card-visible {
  opacity: 1;
  transform: translateY(0);
}
.cons-card.cons-card-visible:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.cons-card-photo {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(42,34,38,0.06);
}
.cons-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.cons-card:hover .cons-card-photo img {
  transform: scale(1.03);
}

.cons-card-body {
  padding: clamp(24px, 3vw, 40px);
}
.cons-card-eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.cons-card-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.cons-card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.cons-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--copper);
  transition: color var(--tr), gap var(--tr);
}
.cons-card-link::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--copper);
  opacity: 0.5;
  transition: opacity var(--tr), width var(--tr);
}
.cons-card-link:hover {
  color: var(--violet);
  gap: 12px;
}
.cons-card-link:hover::before {
  opacity: 1;
  background: var(--violet);
}


/* ─── ENTREGA — Header centralizado + corpo com traços de cobre ─── */
.ent {
  padding: clamp(120px, 18vh, 200px) 0;
  background: var(--cream-warm);
}
.ent-header {
  max-width: 1100px;
  margin: 0 auto clamp(72px, 11vh, 120px);
  padding: 0 var(--px);
  text-align: center;
}
.ent-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
.ent-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  flex-direction: column;
}
.ent-lines {
  border-left: 1px solid var(--border);
  padding-left: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(40px, 6vh, 64px);
}
.ent-line {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.15;
  color: var(--text);
  padding: 18px 0;
  position: relative;
}
.ent-line::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(28px, 4vw, 48px) - 1px);
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--copper);
}
.ent-line:nth-child(2) { color: var(--violet); }
.ent-line:nth-child(3) { color: var(--copper); }

.ent-paragraph {
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  padding-left: clamp(28px, 4vw, 48px);
}

@media (max-width: 768px) {
  .ent-line { font-size: clamp(24px, 7vw, 38px); }
}


/* ─── 05 · CITAÇÃO fullbleed ─── */
.cons-citacao {
  background: var(--cream-warm);
  padding: clamp(80px, 12vh, 140px) var(--px);
  text-align: center;
}
.cons-citacao-mark {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--violet);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 20px;
}
.cons-citacao-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 24px;
}
.cons-citacao-author {
  font-size: 13px;
  color: var(--dim);
  letter-spacing: 0.04em;
}


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

/* Hero */
.serv-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.serv-hero-bg { position: absolute; inset: 0; }
.serv-hero-bg img {
  width: 100%;
  height: calc(100% + 120px);
  margin-top: -60px;
  object-fit: cover;
  object-position: center 25%;
  will-change: transform;
}
.serv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13,8,11,0.85) 100%);
  z-index: 1;
}
.serv-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px) clamp(48px, 8vh, 80px);
  max-width: 700px;
}
.serv-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 16px;
}
.serv-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.serv-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Sticky scroll narrativo — sticky image + 3 blocos com crossfade */
.serv-sticky-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
}

.serv-sticky-left {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--cream-warm);
}

.serv-sticky-img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.serv-sticky-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.serv-sticky-img.active { opacity: 1; }

.serv-sticky-right {
  display: flex;
  flex-direction: column;
}

.serv-sticky-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vh, 100px) clamp(40px, 6vw, 80px);
  position: relative;
}
.serv-sticky-block + .serv-sticky-block {
  border-top: 1px solid var(--border);
}

.serv-sticky-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 24px;
}

.serv-sticky-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}

.serv-sticky-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 44ch;
}

.serv-sticky-target {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 40px;
}

.serv-sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  align-self: flex-start;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 4px;
  transition: gap var(--tr) var(--ease), color var(--tr), border-color var(--tr);
}
.serv-sticky-cta:hover {
  gap: 16px;
  color: var(--violet);
  border-color: var(--violet);
}

/* Mobile fallback — sticky disabled, layout vertical com imagens inline */
.serv-sticky-block-img { display: none; }

@media (max-width: 900px) {
  .serv-sticky-wrap { grid-template-columns: 1fr; }
  .serv-sticky-left { display: none; }
  .serv-sticky-block { min-height: auto; padding: clamp(40px, 8vh, 80px) clamp(24px, 5vw, 48px); }
  .serv-sticky-block-img {
    display: block;
    width: 100%;
    height: 50vh;
    overflow: hidden;
    margin-bottom: 32px;
  }
  .serv-sticky-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Marquee horizontal — palavras técnicas em loop (Nunito Sans, espaçado, dot violeta) */
.serv-marquee {
  background: var(--cream);
  padding: clamp(40px, 6vh, 64px) 0;
  overflow: hidden;
}
.serv-marquee-track {
  display: flex;
  width: max-content;
  animation: serv-marquee-scroll 80s linear infinite;
}
.serv-marquee:hover .serv-marquee-track {
  animation-play-state: paused;
}
.serv-marquee-content {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  flex-shrink: 0;
  padding-right: clamp(40px, 5vw, 72px);
}
.serv-marquee-word {
  font-family: var(--font-body);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.serv-marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  flex-shrink: 0;
}
@keyframes serv-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .serv-marquee-track { animation: none; }
}
