/* ============================================================
   8 MILÍMETROS — Landing Page v2 (Editorial Cream)
   Inspirado no template Exvia (Webflow)
   ============================================================ */

/* --- 1. TOKENS ------------------------------------------------ */
:root {
  /* Brand colors */
  --brand-green: #85C226;
  --brand-green-dark: #6FA31F;

  /* Editorial cream palette */
  --bg: #EFEAE0;
  --bg-secondary: #F4F0E7;
  --bg-tertiary: #FFFFFF;
  --bg-dark: #0E0D0B;
  --bg-dark-2: #1A1916;

  /* Text */
  --text-primary: #0E0D0B;
  --text-secondary: #5A564E;
  --text-tertiary: #6A6557; /* escurecido p/ contraste AA (era #8C8678) */
  --text-on-dark: #EFEAE0;
  --text-on-dark-secondary: rgba(239, 234, 224, 0.7);

  /* Borders */
  --border: rgba(14, 13, 11, 0.12);
  --border-strong: rgba(14, 13, 11, 0.25);
  --border-on-dark: rgba(239, 234, 224, 0.15);

  /* Semantic */
  --success: var(--brand-green);
  --error: #B83D2E;
  --focus: rgba(133, 194, 38, 0.6);

  /* Typography */
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Geist Mono', ui-monospace, Menlo, monospace;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --section-padding: 6rem;

  /* Layout */
  --container: 1440px;
  --container-large: 1280px;
  --gutter: 1.25rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-cinematic: cubic-bezier(0.65, 0, 0.35, 1);
  --d-fast: 200ms;
  --d-base: 350ms;
  --d-slow: 600ms;

  /* Header */
  --nav-h: 132px;
}
@media (max-width: 767px) {
  :root {
    --nav-h: 104px;
    --section-padding: 4rem; /* 96px → 64px em mobile pra densidade visual */
  }
}

@media (min-width: 768px) {
  :root { --gutter: 2.5rem; }
}
@media (min-width: 1024px) {
  :root { --gutter: 4rem; --section-padding: 8rem; }
}

/* --- 2. RESET ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  /* IMPORTANTE: NÃO usar position: relative aqui, quebra sticky descendente */
}

.page-wrapper {
  /* IMPORTANTE: sem overflow nem position pra não bloquear sticky */
  width: 100%;
}

img, picture, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--d-fast) var(--ease), opacity var(--d-fast) var(--ease); }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--brand-green); color: var(--bg-dark); }

/* Focus */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-3) var(--space-5);
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* --- 3. TIPOGRAFIA -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

em { font-style: italic; font-family: 'Times New Roman', serif; font-weight: 400; }

.text-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}
@media (min-width: 768px) { .text-mono { font-size: 12px; } }

.text-xs { font-size: 13px; line-height: 1.5; color: var(--text-secondary); }
.text-sm { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }
.text-base { font-size: 16px; line-height: 1.6; }
.text-lg { font-size: 18px; line-height: 1.5; color: var(--text-secondary); }
.text-xl { font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.3; font-weight: 300; }
.text-2xl { font-size: clamp(1.5rem, 2.6vw, 2.25rem); line-height: 1.3; font-weight: 300; letter-spacing: -0.02em; }
.text-3xl { font-size: clamp(2rem, 4vw, 3.75rem); line-height: 1.05; font-weight: 400; letter-spacing: -0.04em; }
.text-5xl { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; font-weight: 400; letter-spacing: -0.04em; }

.text-color-tertiary { color: var(--text-tertiary); }
.text-color-on-primary { color: var(--text-on-dark); }
.align-center { text-align: center; }

strong { font-weight: 600; }

/* --- 4. LAYOUT ------------------------------------------------ */
.padding-global {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-full {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.container-large {
  width: 100%;
  max-width: var(--container-large);
  margin: 0 auto;
}
.padding-section-medium {
  padding-top: var(--section-padding);
}
.section { position: relative; }

/* --- 5. BUTTON ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid var(--text-primary);
  background: var(--text-primary);
  color: var(--text-on-dark);
  overflow: hidden;
  transition: background var(--d-base) var(--ease), color var(--d-base) var(--ease), border-color var(--d-base) var(--ease);
  min-height: 44px;
  text-decoration: none;
}
.btn--md { padding: 12px 24px; font-size: 12px; min-height: 40px; }
.btn--lg { padding: 18px 36px; font-size: 13px; min-height: 56px; }
.btn--full { width: 100%; }

/* Wrapper interno define a "janela" do rolling text — altura = altura do texto */
.btn__inner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  height: 1em;
  vertical-align: middle;
  white-space: nowrap;
}
.btn__txt {
  display: block;
  line-height: 1;
  transition: transform 500ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.btn__txt.is-2 {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: center;
}
.btn:hover .btn__txt.is-1,
.btn:focus-visible .btn__txt.is-1 { transform: translateY(-100%); }
.btn:hover .btn__txt.is-2,
.btn:focus-visible .btn__txt.is-2 { transform: translateY(-100%); }

.btn--primary { background: var(--text-primary); color: var(--text-on-dark); }
.btn--primary:hover { background: var(--brand-green); color: var(--bg-dark); border-color: var(--brand-green); }

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn--secondary:hover {
  background: var(--text-primary);
  color: var(--text-on-dark);
}

.btn--negative {
  background: var(--bg);
  color: var(--text-primary);
  border-color: var(--bg);
  position: relative;
  isolation: isolate;
  transition:
    color 350ms cubic-bezier(0.65, 0, 0.35, 1),
    border-color 350ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 400ms cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 400ms cubic-bezier(0.65, 0, 0.35, 1);
}
/* Camada que sobe de baixo no hover */
.btn--negative::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-green);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 500ms cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn--negative:hover {
  color: var(--bg-dark);
  border-color: var(--brand-green);
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px -8px rgba(133, 194, 38, 0.45),
    0 0 0 1px rgba(133, 194, 38, 0.2);
}
.btn--negative:hover::before {
  transform: translateY(0);
}
.btn--negative:active {
  transform: translateY(-1px);
  transition-duration: 100ms;
}

.btn--ghost-light {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(239, 234, 224, 0.3);
}
.btn--ghost-light:hover { border-color: var(--text-on-dark); }

/* --- 6. NAVBAR ------------------------------------------------ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition:
    background var(--d-base) var(--ease),
    border-color var(--d-base) var(--ease),
    height 450ms cubic-bezier(0.65, 0, 0.35, 1);
  border-bottom: 1px solid transparent;
  mix-blend-mode: difference;
}

/* COMPACT MODE — quando saindo do hero, navbar e logo encolhem */
.navbar.is-compact {
  height: 76px;
}
@media (max-width: 767px) {
  .navbar.is-compact { height: 60px; }
}
.navbar.is-scrolled,
.navbar.is-mobile-open {
  mix-blend-mode: normal;
  background: rgba(239, 234, 224, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
/* Quando o menu mobile está aberto, navbar fica 100% sólida (sem blur) */
.navbar.is-mobile-open {
  background: var(--bg);
}
.navbar.is-mobile-open .navbar__logo-img.is-light { opacity: 0; }
.navbar.is-mobile-open .navbar__logo-img.is-dark  { opacity: 1; }
.navbar.is-mobile-open .navbar__toggle span       { background: var(--text-primary); }
.navbar.is-mobile-open .nav-link                  { color: var(--text-primary); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--space-6);
}
.navbar__logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100px;
  transition: height 450ms cubic-bezier(0.65, 0, 0.35, 1);
}
.navbar__logo-img {
  height: 100px;
  width: auto;
  display: block;
  transition:
    opacity var(--d-base) var(--ease),
    height 450ms cubic-bezier(0.65, 0, 0.35, 1);
}
.navbar__logo-img.is-dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.navbar.is-scrolled .navbar__logo-img.is-light { opacity: 0; }
.navbar.is-scrolled .navbar__logo-img.is-dark { opacity: 1; }

/* COMPACT — logo encolhe junto com o navbar */
.navbar.is-compact .navbar__logo,
.navbar.is-compact .navbar__logo-img { height: 48px; }

@media (max-width: 767px) {
  .navbar__logo,
  .navbar__logo-img { height: 72px; }
  .navbar.is-compact .navbar__logo,
  .navbar.is-compact .navbar__logo-img { height: 36px; }
}

.navbar__menu {
  display: none;
  flex: 1;
  gap: var(--space-7);
  justify-content: center;
}
@media (min-width: 1024px) {
  .navbar__menu { display: flex; }
}
/* MICROINTERAÇÕES CINEMATOGRÁFICAS NO MENU
   - REC dot (●) verde aparece antes do texto no hover (frame marker)
   - Letter-spacing expande (efeito zoom/abertura de lente)
   - Timeline scrub embaixo (gradient verde→branco→transparente, scrub L→R)
   - Page-current ganha o REC dot + timeline ativo permanente */
.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-on-dark);
  position: relative;
  padding: 6px 0 10px;
  transition:
    letter-spacing 380ms cubic-bezier(0.65, 0, 0.35, 1),
    color var(--d-fast) var(--ease);
}
.navbar.is-scrolled .nav-link,
.navbar--solid .nav-link { color: var(--text-primary); }

/* REC indicator — bolinha verde tipo "gravando" */
.nav-link::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 6px;
  color: var(--brand-green);
  transform: translate(-12px, -50%) scale(0);
  opacity: 0;
  transition:
    transform 420ms cubic-bezier(0.65, 0, 0.35, 1),
    opacity 220ms var(--ease);
  text-shadow: 0 0 8px var(--brand-green);
}
.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-link.is-active::before,
.nav-link[aria-current="page"]::before {
  transform: translate(-14px, -50%) scale(1);
  opacity: 1;
  animation: rec-pulse 1.6s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}

/* Hover: letter-spacing abre como zoom de câmera */
.nav-link:hover,
.nav-link:focus-visible {
  letter-spacing: 0.18em;
}

/* Timeline scrub — filete embaixo com gradient (progresso de edição) */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--brand-green) 0%,
    currentColor 35%,
    currentColor 70%,
    transparent 100%
  );
  transition: width 520ms cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

/* Página ativa com indicação permanente */
.nav-link.is-active,
.nav-link[aria-current="page"] {
  color: var(--brand-green);
}
.navbar.is-scrolled .nav-link.is-active,
.navbar.is-scrolled .nav-link[aria-current="page"],
.navbar--solid .nav-link.is-active,
.navbar--solid .nav-link[aria-current="page"] {
  color: var(--text-primary);
}

.navbar__cta { display: none; }
@media (min-width: 1024px) { .navbar__cta { display: inline-flex; } }

.navbar__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  padding: 0;
}
@media (min-width: 1024px) { .navbar__toggle { display: none; } }
.navbar__toggle span {
  display: block;
  height: 1.5px;
  background: var(--text-on-dark);
  transition: transform var(--d-base) var(--ease), opacity var(--d-fast);
}
.navbar.is-scrolled .navbar__toggle span { background: var(--text-primary); }
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  max-width: 100vw;
  bottom: 0;
  background: var(--bg);
  background-color: #EFEAE0;
  isolation: isolate;
  padding: var(--space-7) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transform: translateX(100%);
  transition: transform var(--d-slow) var(--ease-cinematic), visibility 0s linear var(--d-slow);
  visibility: hidden;
  z-index: 99;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--d-slow) var(--ease-cinematic), visibility 0s;
}
.mobile-nav a {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: var(--space-3) 0;
}
.mobile-nav a.btn { font-size: 13px; margin-top: var(--space-5); width: fit-content; }
@media (min-width: 1024px) { .mobile-nav { display: none; } }

/* --- 7. HERO -------------------------------------------------- */
.hero {
  position: sticky;
  top: 0;
  z-index: 0;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  background: var(--bg-dark);
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 178vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  max-width: none;   /* anula o max-width:100% global (senão o vídeo letterboxa no mobile) */
  max-height: none;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(14,13,11,0.4) 0%, rgba(14,13,11,0.85) 80%),
    linear-gradient(to bottom, rgba(14,13,11,0.5) 0%, rgba(14,13,11,0.75) 100%);
}
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: var(--space-8);
}

.hero__chips {
  display: none;
  position: absolute;
  /* Top abaixo do navbar com respiro generoso; left/right alinhados
     com o navbar centralizado (max-width: var(--container)) */
  --chip-side: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  inset: calc(var(--nav-h) + var(--space-8)) var(--chip-side) var(--space-8);
  pointer-events: none;
  z-index: 3;
}
@media (min-width: 768px) {
  .hero__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
  }
}
/* Chips estilo "credits" — alta visibilidade sobre o vídeo:
   cream cheio + bullet verde + drop-shadow garante legibilidade
   em qualquer frame do background (claro ou escuro). */
.hero__chips li {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* Sombra dupla: blur amplo escuro pra contraste + sombra fechada pra punch */
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 0 16px rgba(0, 0, 0, 0.45);
}
/* Bullet verde antes de cada chip — identidade da marca + legibilidade */
.hero__chips li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(133, 194, 38, 0.18);
  flex-shrink: 0;
}
/* Chips do canto direito têm o bullet DEPOIS do texto (espelhado) */
.hero__chips .is-tr,
.hero__chips .is-br {
  flex-direction: row-reverse;
}
.hero__chips .is-tl { grid-column: 1; grid-row: 1; align-self: start; justify-self: start; }
.hero__chips .is-tr { grid-column: 2; grid-row: 1; align-self: start; justify-self: end; }
.hero__chips .is-bl { grid-column: 1; grid-row: 2; align-self: end; justify-self: start; }
.hero__chips .is-br { grid-column: 2; grid-row: 2; align-self: end; justify-self: end; }

.hero__title-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero__year {
  display: block;
  color: var(--text-on-dark-secondary);
  margin-bottom: var(--space-4);
}
.hero__title {
  font-size: clamp(2.25rem, 9vw, 9rem);
  line-height: 0.95;
  font-weight: 300;
  color: var(--text-on-dark);
  letter-spacing: -0.05em;
  white-space: nowrap;
  margin: 0;
}

/* Stack: texto define tamanho do bloco; logo flutua centralizada em cima */
.hero__title-stack {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero__title--text {
  position: relative;
  z-index: 1;
  will-change: opacity, transform;
  opacity: calc(1 - var(--hero-progress, 0) * 2.5);
  transform: scale(calc(1 - var(--hero-progress, 0) * 0.05));
  color: var(--text-on-dark);
}

/* Logo absolute — fora do flow, NÃO afeta a altura do stack */
.hero__title-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  will-change: opacity, transform;
  opacity: calc(var(--hero-progress, 0) * 2.5);
  transform: translate(-50%, -50%) scale(calc(0.85 + var(--hero-progress, 0) * 0.15));
}
.hero__title-logo img {
  height: clamp(4rem, 11vw, 11rem);
  width: auto;
  max-width: 90vw;
  display: block;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .hero__title--text { transform: none !important; }
  .hero__title-logo { transform: translate(-50%, -50%) !important; }
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-on-dark-secondary);
  margin-top: var(--space-4);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.5;
}
.hero__sub em {
  color: var(--text-on-dark);
  font-style: italic;
  font-family: 'Times New Roman', serif;
  font-weight: 400;
}

.hero__cta {
  margin-top: var(--space-5);
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(239,234,224,0.6));
  animation: scroll-cue 2.4s var(--ease-cinematic) infinite;
}
@keyframes scroll-cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero mobile — densidade visual reorganizada (1 linha de chips + gaps reduzidos) */
@media (max-width: 767px) {
  .hero {
    min-height: 92svh;
    min-height: 92vh;
  }
  .hero__container {
    padding-top: calc(var(--nav-h) + var(--space-2));
    padding-bottom: var(--space-7);
    justify-content: space-between;
  }
  /* CHIPS em 2×2 nos cantos (2 em cima, 2 embaixo) — mesmo estilo do desktop */
  .hero__chips {
    display: block;
    position: absolute;
    /* "quadro" em volta do título central (mais perto do que coladin nas bordas) */
    inset: 34% var(--gutter) 28%;
  }
  .hero__chips li {
    position: absolute;
    font-size: 10px;
    letter-spacing: 0.12em;
    line-height: 1.2;
    gap: 6px;
    max-width: 47%;
    white-space: nowrap;
  }
  .hero__chips li::before { width: 5px; height: 5px; }
  .hero__chips .is-tl { top: 0; left: 0; }
  .hero__chips .is-tr { top: 0; right: 0; }
  .hero__chips .is-bl { bottom: 0; left: 0; }
  .hero__chips .is-br { bottom: 0; right: 0; }

  .hero__title-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-5) 0;
    gap: 0;
  }
  .hero__year {
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: var(--space-4);
  }
  .hero__title {
    white-space: normal;
    font-size: clamp(2.25rem, 12vw, 3.75rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
  }
  .hero__sub {
    font-size: 14px;
    line-height: 1.55;
    margin-top: var(--space-4);
    max-width: 340px;
    padding-inline: var(--space-3);
  }
  .hero__cta {
    margin-top: var(--space-5);
    width: 100%;
    padding-inline: var(--space-5);
  }
  .hero__cta .btn {
    width: 100%;
    max-width: none; /* usa toda a largura disponível, sem encolher */
  }
  /* SCROLL CUE — texto + linha mais visível */
  .hero__scroll {
    bottom: var(--space-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .hero__scroll::before {
    content: "SCROLL";
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(239, 234, 224, 0.7);
  }
  .hero__scroll span {
    height: 32px;
    width: 1.5px;
    background: linear-gradient(to bottom, rgba(133, 194, 38, 0.9), rgba(239, 234, 224, 0.2));
  }
}

/* Sub-mobile (≤380px) — apertar ainda mais */
@media (max-width: 380px) {
  .hero__title { font-size: clamp(2rem, 14vw, 3.25rem); }
  .hero__chips li { font-size: 9px; letter-spacing: 0.1em; gap: 5px; }
  .hero__chips li::before { width: 4px; height: 4px; box-shadow: 0 0 0 2px rgba(133, 194, 38, 0.18); }
  .hero__sub { font-size: 13px; }
}

/* --- 7B. STICKY OVERLAP hero → sobre --------------------------- */
/* Hero é sticky (regra principal acima). Sobre/sections seguintes vêm
   por cima com z-index 2 e bg sólido — efeito "cortina rising". */

/* Sutil zoom-in no fundo enquanto está sendo coberto */
.hero__bg {
  transform: scale(calc(1 + var(--hero-progress, 0) * 0.04));
  transform-origin: center center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg { transform: none !important; }
}

/* --- 8. ABOUT (3 movimentos editoriais + animações) ----------- */
.section--about {
  background: var(--bg);
  position: relative;
  z-index: 2;
  /* Sobe POR CIMA do hero sticky */
  box-shadow: 0 -24px 60px -16px rgba(14, 13, 11, 0.55);
}

/* --- ANIMAÇÕES SOBRE — sistema de reveal staggered --- */

/* Header — chapter, title, lead, signature aparecem em cascata */
.about__chapter,
.about__title,
.about__lead,
.about__signature {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.about__header.is-revealed .about__chapter   { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.about__header.is-revealed .about__title     { opacity: 1; transform: translateY(0); transition-delay: 140ms; }
.about__header.is-revealed .about__lead      { opacity: 1; transform: translateY(0); transition-delay: 320ms; }
.about__header.is-revealed .about__signature { opacity: 1; transform: translateY(0); transition-delay: 460ms; }

/* Stats — filete verde anima da esquerda + bola aparece + número conta */
.stat-card {
  position: relative;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: width 900ms cubic-bezier(0.65, 0, 0.35, 1);
}
.stat-card {
  /* removendo o border-top original para usar o ::before animado */
  border-top: 2px solid transparent !important;
}
.stat-card::after {
  /* a bolinha verde — aparece com delay após o filete */
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 400ms var(--ease), transform 500ms cubic-bezier(0.65, 0, 0.35, 1);
}

.stat-card__num,
.stat-card__title,
.stat-card__desc {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 600ms cubic-bezier(0.65, 0, 0.35, 1);
}

.about__stats-section.is-revealed .stat-card::before { width: 100%; }
.about__stats-section.is-revealed .stat-card::after  { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: 700ms; }

.about__stats-section.is-revealed .stat-card:nth-child(1)::before { transition-delay: 100ms; }
.about__stats-section.is-revealed .stat-card:nth-child(2)::before { transition-delay: 250ms; }
.about__stats-section.is-revealed .stat-card:nth-child(3)::before { transition-delay: 400ms; }

.about__stats-section.is-revealed .stat-card:nth-child(1)::after { transition-delay: 700ms; }
.about__stats-section.is-revealed .stat-card:nth-child(2)::after { transition-delay: 850ms; }
.about__stats-section.is-revealed .stat-card:nth-child(3)::after { transition-delay: 1000ms; }

.about__stats-section.is-revealed .stat-card:nth-child(1) .stat-card__num    { opacity: 1; transform: translateY(0); transition-delay: 500ms; }
.about__stats-section.is-revealed .stat-card:nth-child(1) .stat-card__title  { opacity: 1; transform: translateY(0); transition-delay: 650ms; }
.about__stats-section.is-revealed .stat-card:nth-child(1) .stat-card__desc   { opacity: 1; transform: translateY(0); transition-delay: 780ms; }

.about__stats-section.is-revealed .stat-card:nth-child(2) .stat-card__num    { opacity: 1; transform: translateY(0); transition-delay: 650ms; }
.about__stats-section.is-revealed .stat-card:nth-child(2) .stat-card__title  { opacity: 1; transform: translateY(0); transition-delay: 800ms; }
.about__stats-section.is-revealed .stat-card:nth-child(2) .stat-card__desc   { opacity: 1; transform: translateY(0); transition-delay: 930ms; }

.about__stats-section.is-revealed .stat-card:nth-child(3) .stat-card__num    { opacity: 1; transform: translateY(0); transition-delay: 800ms; }
.about__stats-section.is-revealed .stat-card:nth-child(3) .stat-card__title  { opacity: 1; transform: translateY(0); transition-delay: 950ms; }
.about__stats-section.is-revealed .stat-card:nth-child(3) .stat-card__desc   { opacity: 1; transform: translateY(0); transition-delay: 1080ms; }

/* Section label do "Em números" e "Bastidores" */
.about__section-label {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 600ms var(--ease), transform 600ms cubic-bezier(0.65, 0, 0.35, 1);
}
.about__stats-section.is-revealed .about__section-label,
.about__gallery-section.is-revealed .about__section-label {
  opacity: 1;
  transform: translateX(0);
}

/* Gallery head + caption */
.about__gallery-caption {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms cubic-bezier(0.65, 0, 0.35, 1);
  transition-delay: 200ms;
}
.about__gallery-section.is-revealed .about__gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery — image mask reveal cinematográfico (cortina vertical) */
.about__shot {
  overflow: hidden;
  background: var(--bg-secondary);
}
.about__shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  z-index: 5;
  transform-origin: top;
  transform: scaleY(1);
  transition: transform 1000ms cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
.about__gallery-section.is-revealed .about__shot::before {
  transform: scaleY(0);
}
.about__gallery-section.is-revealed .about__shot:nth-child(1)::before { transition-delay: 200ms; }
.about__gallery-section.is-revealed .about__shot:nth-child(2)::before { transition-delay: 380ms; }
.about__gallery-section.is-revealed .about__shot:nth-child(3)::before { transition-delay: 560ms; }
.about__gallery-section.is-revealed .about__shot:nth-child(4)::before { transition-delay: 740ms; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .about__chapter, .about__title, .about__lead, .about__signature,
  .stat-card__num, .stat-card__title, .stat-card__desc,
  .about__section-label, .about__gallery-caption {
    opacity: 1 !important;
    transform: none !important;
  }
  .stat-card::before { width: 100% !important; transition: none !important; }
  .stat-card::after { opacity: 1 !important; transform: translate(-50%, -50%) scale(1) !important; }
  .about__shot::before { transform: scaleY(0) !important; transition: none !important; }
}

/* MOVIMENTO 1: Header dramático em 2 colunas */
.about__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .about__header {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-9);
    align-items: end;
  }
}
.about__header-left { display: flex; flex-direction: column; gap: var(--space-5); }
.about__header-right { display: flex; flex-direction: column; gap: var(--space-6); padding-bottom: var(--space-3); }

.about__chapter {
  color: var(--text-tertiary);
  position: relative;
  padding-left: var(--space-5);
}
.about__chapter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--brand-green);
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.about__title em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.about__lead {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  max-width: 520px;
}
.about__lead strong {
  color: var(--text-primary);
  font-weight: 600;
}
.about__lead em {
  color: var(--brand-green);
  font-style: italic;
  font-family: 'Times New Roman', serif;
  font-weight: 400;
}

.about__signature {
  color: var(--text-primary);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
}
.about__signature span {
  color: var(--text-tertiary);
  display: block;
  margin-top: 2px;
}

/* MOVIMENTO 2: Stats como "credits" */
.about__stats-section {
  margin-bottom: var(--space-10);
}

.about__section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
  color: var(--text-tertiary);
}
.about__section-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--brand-green);
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 768px) {
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-top: 2px solid var(--brand-green);
  padding-top: var(--space-5);
  position: relative;
}
.stat-card::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  display: block;
}
.stat-card__num sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--brand-green);
  margin-left: 4px;
  font-weight: 400;
}
.stat-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-top: var(--space-2);
}
.stat-card__desc {
  color: var(--text-tertiary);
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
}

/* SUB-BLOCO: RECONHECIMENTO — credits roll editorial */
.about__awards {
  margin-top: var(--space-9);
  padding-top: var(--space-7);
  border-top: 1px solid var(--border);
}

.about__awards-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.about__section-label--sub {
  margin-bottom: 0; /* desfaz o margin-bottom default do .about__section-label */
}

.about__awards-caption {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 620px;
}
.about__awards-caption em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.about__awards-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.award {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border);
  position: relative;
  transition: background 320ms var(--ease), padding-left 320ms var(--ease);
}
.award:last-child { border-bottom: 1px solid var(--border); }

@media (min-width: 768px) {
  .award {
    grid-template-columns: 84px 1fr auto;
    gap: var(--space-6);
    padding: var(--space-5) var(--space-2);
  }
}

.award::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: var(--brand-green);
  transition: width 520ms cubic-bezier(0.65, 0, 0.35, 1);
}
.award:hover::before,
.award:focus-within::before { width: 100%; }

.award:hover { background: rgba(133, 194, 38, 0.04); }

.award__year {
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.award__name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

.award__cat {
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: 0.12em;
  grid-column: 2 / -1;
}
@media (min-width: 768px) {
  .award__cat {
    grid-column: auto;
    text-align: right;
    align-self: center;
  }
}

.about__awards-foot {
  margin-top: var(--space-6);
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* Reveal acoplado ao stats-section (que já recebe is-revealed pelo IO) */
.about__awards,
.about__awards .award {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 720ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.about__stats-section.is-revealed .about__awards { opacity: 1; transform: none; transition-delay: 800ms; }
.about__stats-section.is-revealed .award { opacity: 1; transform: none; }
.about__stats-section.is-revealed .award:nth-child(1) { transition-delay: 950ms; }
.about__stats-section.is-revealed .award:nth-child(2) { transition-delay: 1050ms; }
.about__stats-section.is-revealed .award:nth-child(3) { transition-delay: 1150ms; }
.about__stats-section.is-revealed .award:nth-child(4) { transition-delay: 1250ms; }
.about__stats-section.is-revealed .award:nth-child(5) { transition-delay: 1350ms; }
.about__stats-section.is-revealed .award:nth-child(6) { transition-delay: 1450ms; }

@media (prefers-reduced-motion: reduce) {
  .about__awards, .about__awards .award {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* MOVIMENTO 3: Galeria de bastidores */
.about__gallery-section {}

.about__gallery-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .about__gallery-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-8);
  }
}
.about__gallery-caption {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.4;
  color: var(--text-secondary);
  max-width: 540px;
  font-weight: 300;
}
.about__gallery-caption em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
}

.about__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .about__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
  }
}
@media (min-width: 1024px) {
  .about__gallery {
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: var(--space-5);
  }
  /* Featured: ocupa coluna 1, dois rows (vertical) */
  .about__shot.is-feature {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  /* Wide: ocupa colunas 2-3, segundo row */
  .about__shot.is-wide {
    grid-column: 2 / 4;
    grid-row: 2;
  }
}

.about__shot {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.about__shot figure {
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.about__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.65, 0, 0.35, 1);
  display: block;
}
.about__shot:hover img {
  transform: scale(1.06);
}

/* PLAY button — overlay cinematográfico */
.shot__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(239, 234, 224, 0.95);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition:
    opacity 320ms var(--ease),
    transform 380ms cubic-bezier(0.65, 0, 0.35, 1),
    background 280ms var(--ease);
  pointer-events: none;
  box-shadow: 0 8px 32px -4px rgba(0, 0, 0, 0.4);
}
.shot__play svg {
  margin-left: 3px; /* otimiza centro óptico do triângulo */
}
.about__shot:hover .shot__play,
.about__shot:focus-visible .shot__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.about__shot:hover .shot__play {
  background: var(--brand-green);
  color: var(--bg-dark);
}

/* Foco acessível no card todo (pq usamos role=button + tabindex) */
.about__shot:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 4px;
}

/* CAPTIONS — sempre visíveis (ficha técnica permanente) */
.about__shot figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-7) var(--space-4) var(--space-4);
  background: linear-gradient(
    to top,
    rgba(14, 13, 11, 0.9) 0%,
    rgba(14, 13, 11, 0.5) 50%,
    transparent 100%
  );
  color: var(--text-on-dark);
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 11px;
  letter-spacing: 0.12em;
  pointer-events: none;
  z-index: 2;
}
.shot__slug {
  color: var(--brand-green);
  font-weight: 500;
}
.shot__meta {
  color: rgba(239, 234, 224, 0.7);
  transform: translateX(8px);
  opacity: 0;
  transition: opacity 380ms var(--ease), transform 420ms cubic-bezier(0.65, 0, 0.35, 1);
}
.about__shot:hover .shot__meta,
.about__shot:focus-within .shot__meta {
  opacity: 1;
  transform: translateX(0);
}

/* Todas as outras seções também precisam ficar acima do hero sticky */
.section--services,
.section--portfolio,
.section--testimonials,
.section--form,
.section-cta,
.footer {
  position: relative;
  z-index: 2;
}
.section__head { margin-bottom: var(--space-7); }

/* --- 9. SERVIÇOS — Mosaic editorial cinematográfico ---------- */
.section--services { background: var(--bg-secondary); }

/* Header em 2 colunas */
.services__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: end;
  margin-bottom: var(--space-9);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .services__head {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-9);
  }
}
.services__head-left { display: flex; flex-direction: column; gap: var(--space-5); }
.services__head-right { display: flex; flex-direction: column; gap: var(--space-5); padding-bottom: var(--space-3); }

/* CAP. 02 BADGE — selo editorial alinhado ao Cap. 01 do Sobre */
.services__chapter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  width: fit-content;
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4) var(--space-2) 0;
  position: relative;
}
.services__chapter::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brand-green);
  flex-shrink: 0;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.services__chapter::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 480ms cubic-bezier(0.65, 0, 0.35, 1) 240ms;
}
/* Reveal acoplado à seção (intersection observer adiciona is-revealed) */
.services__head.is-revealed .services__chapter::before { transform: scaleX(1); }
.services__head.is-revealed .services__chapter::after  { transform: translate(-50%, -50%) scale(1); }

@media (prefers-reduced-motion: reduce) {
  .services__chapter::before { transform: scaleX(1); transition: none; }
  .services__chapter::after  { transform: translate(-50%, -50%) scale(1); transition: none; }
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.services__title em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.services__lead {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  max-width: 480px;
}

.services__cta { width: fit-content; }

/* Grid mosaic — 6 cards */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 520px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

/* SERVICE CARD — poster cinematográfico */
.service-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-dark);
  /* Borda animada que sinaliza o card como zona clicável inteira */
  box-shadow: inset 0 0 0 1px rgba(239, 234, 224, 0.06);
  transition: box-shadow 380ms var(--ease);
}
.service-card:hover,
.service-card:focus-within {
  box-shadow:
    inset 0 0 0 1px rgba(133, 194, 38, 0.4),
    0 24px 60px -20px rgba(0, 0, 0, 0.5);
}
@media (min-width: 1024px) {
  .service-card { aspect-ratio: 3/4; }
}

.service-card__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

/* Background image com zoom no hover */
.service-card__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.service-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.65, 0, 0.35, 1);
  filter: grayscale(20%) brightness(0.85);
}
.service-card:hover .service-card__bg img,
.service-card:focus-within .service-card__bg img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(0.95);
}

/* Overlay sutil pra ajudar a legibilidade do número (topo) */
.service-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 13, 11, 0.35) 0%,
    rgba(14, 13, 11, 0.15) 50%,
    rgba(14, 13, 11, 0.25) 100%
  );
  z-index: 1;
  transition: background 380ms var(--ease);
}
.service-card:hover .service-card__bg::after {
  background: linear-gradient(
    to top,
    rgba(14, 13, 11, 0.4) 0%,
    rgba(14, 13, 11, 0.1) 50%,
    rgba(133, 194, 38, 0.15) 100%
  );
}

/* Content sobreposto no card */
.service-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-5);
  height: 100%;
  color: var(--text-on-dark);
}

/* PAINEL GLASS — efeito vidro na parte inferior do card */
.service-card__panel {
  margin-top: auto;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: rgba(14, 13, 11, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(239, 234, 224, 0.15);
  box-shadow:
    0 8px 32px -8px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(239, 234, 224, 0.08);
  display: flex;
  flex-direction: column;
  /* Padroniza altura entre os 6 cards: ocupa ~58% da altura do card.
     Como todos os cards têm aspect-ratio idêntico, isto resulta em painéis
     uniformes independentemente do tamanho do texto. */
  min-height: 58%;
  transition:
    background 380ms var(--ease),
    border-color 380ms var(--ease),
    transform 420ms cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 420ms var(--ease);
}
@media (max-width: 767px) {
  .service-card__panel { min-height: 52%; }
}
.service-card:hover .service-card__panel,
.service-card:focus-within .service-card__panel {
  background: rgba(14, 13, 11, 0.7);
  border-color: rgba(133, 194, 38, 0.3);
  transform: translateY(-4px);
  box-shadow:
    0 16px 40px -8px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(133, 194, 38, 0.15);
}

/* Fallback pra browsers sem backdrop-filter (raro) */
@supports not (backdrop-filter: blur(20px)) {
  .service-card__panel {
    background: rgba(14, 13, 11, 0.85);
  }
}

.service-card__num {
  align-self: flex-start;
  color: var(--brand-green);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgba(133, 194, 38, 0.4);
  border-radius: var(--radius-pill);
  background: rgba(14, 13, 11, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.service-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-on-dark);
  margin-top: auto;
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(239, 234, 224, 0.78);
  margin-bottom: var(--space-4);
  /* Cresce ocupando o espaço sobrando dentro do painel —
     garante que tags + CTA sempre ancoram na base, alinhando
     entre cards com descrições de tamanhos diferentes. */
  flex: 1 1 auto;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  margin-top: auto;
}
.service-card__tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239, 234, 224, 0.65);
  padding: 4px 10px;
  border: 1px solid rgba(239, 234, 224, 0.2);
  border-radius: var(--radius-pill);
}

.service-card__cta {
  color: var(--brand-green);
  font-size: 12px;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  position: relative;
  width: fit-content;
  transition: transform 320ms cubic-bezier(0.65, 0, 0.35, 1);
}
.service-card:hover .service-card__cta,
.service-card:focus-within .service-card__cta {
  transform: translateX(6px);
}

/* Foco acessível no card todo */
.service-card__link:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

/* --- 10. PORTFOLIO ------------------------------------------- */
.section--portfolio { background: var(--bg); padding-bottom: var(--section-padding); }

.portfolio__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-9);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .portfolio__intro { grid-template-columns: auto 1fr auto; gap: var(--space-7); }
}
.portfolio__intro p { max-width: 540px; color: var(--text-secondary); }

.portfolio__filters {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-2);
}
.filter {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--d-fast) var(--ease);
}
.filter:hover { background: var(--text-primary); color: var(--text-on-dark); border-color: var(--text-primary); }
.filter.is-active { background: var(--text-primary); color: var(--text-on-dark); border-color: var(--text-primary); }

.portfolio__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
}
@media (min-width: 1024px) {
  .portfolio__layout { grid-template-columns: 280px 1fr; gap: var(--space-9); }
}

.portfolio__sticky {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-7));
  align-self: start;
}
.portfolio__sticky h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}
.portfolio__counter { display: block; margin-top: var(--space-5); }

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) { .portfolio__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .portfolio__grid { gap: var(--space-7); } }

.portfolio-card {
  cursor: pointer;
  overflow: hidden;
}
.portfolio-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
  position: relative;
}
.portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease-cinematic);
}
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.04); }
.portfolio-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(239, 234, 224, 0.95);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--d-base) var(--ease);
  pointer-events: none;
}
.portfolio-card:hover .portfolio-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.portfolio-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}
.portfolio-card__name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}
.portfolio-card__year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}
.portfolio__empty {
  text-align: center;
  padding: var(--space-9);
  color: var(--text-tertiary);
}

/* --- 11. TESTIMONIALS — editorial cinematográfico ------------ */
.section--testimonials { background: var(--bg); }

/* HEADER em 2 colunas — alinhado com Sobre/Soluções */
.testimonials__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: end;
  margin-bottom: var(--space-9);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .testimonials__head { grid-template-columns: 1.4fr 1fr; gap: var(--space-9); }
}
.testimonials__head-left  { display: flex; flex-direction: column; gap: var(--space-5); }
.testimonials__head-right { display: flex; flex-direction: column; gap: var(--space-5); padding-bottom: var(--space-3); }

/* Cap. 03 badge — mesmo selo editorial do Cap. 02 */
.testimonials__chapter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  width: fit-content;
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4) var(--space-2) 0;
  position: relative;
}
.testimonials__chapter::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brand-green);
  flex-shrink: 0;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.testimonials__chapter::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 480ms cubic-bezier(0.65, 0, 0.35, 1) 240ms;
}
.testimonials__head.is-revealed .testimonials__chapter::before { transform: scaleX(1); }
.testimonials__head.is-revealed .testimonials__chapter::after  { transform: translate(-50%, -50%) scale(1); }

.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}
.testimonials__title em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.testimonials__lead {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  max-width: 480px;
}
.testimonials__lead em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  color: var(--text-primary);
}

.testimonials__metrics {
  list-style: none;
  margin: 0;
  padding: var(--space-4) 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  border-top: 1px solid var(--border);
}
.testimonials__metrics strong {
  color: var(--brand-green);
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1.5em;
  letter-spacing: -0.02em;
  margin-right: 4px;
  vertical-align: -2px;
}

/* HERO: vídeo de prova social — peça-âncora full width */
.testimonials__hero {
  margin: 0 0 var(--space-9) 0;
}
.testimonial-video {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-dark);
  width: 100%;
}
@media (max-width: 767px) {
  .testimonial-video { aspect-ratio: 4/5; }
}
.testimonial-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease-cinematic);
}
.testimonial-video:hover img { transform: scale(1.04); }
.testimonial-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14,13,11,0.7), transparent 55%),
    linear-gradient(to bottom, rgba(14,13,11,0.3), transparent 35%);
  z-index: 1;
  transition: background var(--d-base) var(--ease);
}
.testimonial-video:hover::before {
  background:
    linear-gradient(to top, rgba(14,13,11,0.55), transparent 55%),
    linear-gradient(to bottom, rgba(14,13,11,0.2), transparent 35%);
}

.testimonial-video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.5);
  transition:
    transform var(--d-base) var(--ease),
    background var(--d-base) var(--ease),
    color var(--d-base) var(--ease);
}
.testimonial-video:hover .testimonial-video__play,
.testimonial-video:focus-within .testimonial-video__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--brand-green);
  color: var(--text-on-dark);
}
.testimonial-video__play svg { margin-left: 4px; /* compensa o triângulo do ícone */ }

.testimonial-video__caption {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  z-index: 2;
  color: var(--text-on-dark);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.testimonial-video__caption-meta {
  opacity: 0.7;
}

/* GRID EDITORIAL — 1 feature + 6 secundários, layout bento */
.testimonials__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
}
@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
  .quote-card.is-feature {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.quote-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transition:
    background var(--d-base) var(--ease),
    border-color var(--d-base) var(--ease),
    transform var(--d-base) var(--ease-cinematic),
    box-shadow var(--d-base) var(--ease);
}
.quote-card:hover,
.quote-card:focus-within {
  background: var(--bg);
  border-color: var(--brand-green);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(14,13,11,0.18);
}
.quote-card.is-feature {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-7);
}
.quote-card.is-feature:hover {
  background: var(--bg-dark);
  border-color: var(--brand-green);
}

.quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote__mark {
  font-family: 'Times New Roman', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.5;
  color: var(--brand-green);
  margin-bottom: var(--space-4);
  display: block;
  font-weight: 400;
  user-select: none;
}
.quote-card.is-feature .quote__mark {
  font-size: clamp(4rem, 8vw, 7rem);
  margin-bottom: var(--space-5);
}

.quote__body {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  flex: 1 1 auto;
  letter-spacing: -0.01em;
}
.quote-card.is-feature .quote__body {
  color: var(--text-on-dark);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.4;
}
.quote__body em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}

.quote__footer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.quote-card.is-feature .quote__footer {
  border-top-color: rgba(239, 234, 224, 0.18);
}

.quote__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.quote-card.is-feature .quote__avatar {
  background: var(--text-on-dark);
  color: var(--bg-dark);
}

.quote__byline {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.quote__name {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.2;
}
.quote-card.is-feature .quote__name { color: var(--text-on-dark); }

.quote__role {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  line-height: 1.3;
}
.quote-card.is-feature .quote__role { color: rgba(239, 234, 224, 0.65); }

/* Footer micro CTA */
.testimonials__foot {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  text-align: center;
}
.testimonials__foot a {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--brand-green);
  padding-bottom: 2px;
  transition: color var(--d-fast) var(--ease);
}
.testimonials__foot a:hover { color: var(--brand-green); }

/* Reveal acoplado ao header da seção */
.testimonials__title,
.testimonials__lead,
.testimonials__metrics {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 720ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.testimonials__head.is-revealed .testimonials__title   { opacity: 1; transform: none; transition-delay: 140ms; }
.testimonials__head.is-revealed .testimonials__lead    { opacity: 1; transform: none; transition-delay: 320ms; }
.testimonials__head.is-revealed .testimonials__metrics { opacity: 1; transform: none; transition-delay: 460ms; }

.testimonials__grid .quote-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 720ms cubic-bezier(0.65, 0, 0.35, 1),
    background var(--d-base) var(--ease),
    border-color var(--d-base) var(--ease),
    box-shadow var(--d-base) var(--ease);
}
.testimonials__grid.is-revealed .quote-card { opacity: 1; transform: none; }
.testimonials__grid.is-revealed .quote-card:nth-child(1) { transition-delay: 100ms; }
.testimonials__grid.is-revealed .quote-card:nth-child(2) { transition-delay: 180ms; }
.testimonials__grid.is-revealed .quote-card:nth-child(3) { transition-delay: 260ms; }
.testimonials__grid.is-revealed .quote-card:nth-child(4) { transition-delay: 340ms; }
.testimonials__grid.is-revealed .quote-card:nth-child(5) { transition-delay: 420ms; }
.testimonials__grid.is-revealed .quote-card:nth-child(6) { transition-delay: 500ms; }
.testimonials__grid.is-revealed .quote-card:nth-child(7) { transition-delay: 580ms; }

@media (prefers-reduced-motion: reduce) {
  .testimonials__chapter::before { transform: scaleX(1); transition: none; }
  .testimonials__chapter::after  { transform: translate(-50%, -50%) scale(1); transition: none; }
  .testimonials__title,
  .testimonials__lead,
  .testimonials__metrics,
  .testimonials__grid .quote-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- 12. CTA — fundo limpo + reveal cinematográfico --------- */
.section-cta {
  position: relative;
  min-height: 90vh;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
  padding-block: var(--space-10);
  isolation: isolate;
}
.cta__bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Camada 1: imagem de fundo (bastidor) tratada como cena cinematográfica */
.cta__bg-image {
  position: absolute;
  inset: -10% -5%;
  width: 110%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.42) contrast(1.15) saturate(1.2);
  /* Drift suave: respira lentamente para dar vida ao still */
  animation: cta-bg-drift 28s ease-in-out infinite alternate;
  will-change: transform, filter;
}
@keyframes cta-bg-drift {
  0%   { transform: scale(1.04) translate(0, 0);  filter: grayscale(30%) brightness(0.42) contrast(1.15) saturate(1.2); }
  50%  { transform: scale(1.08) translate(-1.5%, -1%); filter: grayscale(20%) brightness(0.48) contrast(1.18) saturate(1.25); }
  100% { transform: scale(1.05) translate(1%, 1%); filter: grayscale(30%) brightness(0.4) contrast(1.15) saturate(1.2); }
}

/* Camada 2: vinheta + gradient atmosférico */
.cta__overlay {
  position: absolute; inset: 0;
  background:
    /* tint verde sutil no centro */
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(133, 194, 38, 0.10), transparent 60%),
    /* vinheta escura nas bordas */
    radial-gradient(ellipse 120% 100% at 50% 50%, transparent 30%, rgba(0,0,0,0.55) 80%, rgba(0,0,0,0.85) 100%),
    /* base preto profundo pra dar contraste no texto */
    linear-gradient(to bottom, rgba(14, 13, 11, 0.5) 0%, rgba(14, 13, 11, 0.78) 100%);
  z-index: 2;
}

/* Camada 3: SPOTLIGHT — foco de cena que respira, simula a luz de set */
.cta__spotlight {
  position: absolute;
  width: 80vmax;
  height: 80vmax;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at center,
    rgba(239, 234, 224, 0.10) 0%,
    rgba(133, 194, 38, 0.04) 30%,
    transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
  animation: cta-spotlight 9s ease-in-out infinite alternate;
}
@keyframes cta-spotlight {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.85; }
  50%  { transform: translate(-48%, -52%) scale(1.08); opacity: 1; }
  100% { transform: translate(-52%, -49%) scale(0.95); opacity: 0.75; }
}

/* Camada 4: grão de filme analógico animado */
.cta__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 4;
  animation: cta-grain 1.4s steps(6) infinite;
}
@keyframes cta-grain {
  0%   { transform: translate(0, 0); }
  16%  { transform: translate(-3%, 2%); }
  33%  { transform: translate(2%, -3%); }
  50%  { transform: translate(-2%, -2%); }
  66%  { transform: translate(3%, 1%); }
  83%  { transform: translate(-1%, 3%); }
  100% { transform: translate(0, 0); }
}

/* Camada 5: filmstrip top/bottom — perfurações de película 35mm */
.cta__filmstrip {
  position: absolute;
  left: 0; right: 0;
  height: 18px;
  z-index: 5;
  pointer-events: none;
  background-image:
    /* perfurações: pequenos retângulos arredondados repetidos */
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 18px,
      rgba(239, 234, 224, 0.18) 18px,
      rgba(239, 234, 224, 0.18) 30px,
      transparent 30px,
      transparent 48px
    );
  background-size: 48px 8px;
  background-repeat: repeat-x;
  background-position: center;
  animation: cta-filmstrip 14s linear infinite;
}
.cta__filmstrip::before,
.cta__filmstrip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(239, 234, 224, 0.12);
}
.cta__filmstrip::before { top: 0; }
.cta__filmstrip::after  { bottom: 0; }
.cta__filmstrip--top    { top: 0; }
.cta__filmstrip--bottom { bottom: 0; animation-direction: reverse; }
@keyframes cta-filmstrip {
  from { background-position-x: 0; }
  to   { background-position-x: 480px; }
}

/* HUD cinematográfico — REC + timecode + metadata */
.cta__hud {
  position: absolute;
  top: var(--space-7);
  right: var(--gutter);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(239, 234, 224, 0.55);
  text-transform: uppercase;
  pointer-events: none;
}
@media (max-width: 767px) {
  .cta__hud {
    top: calc(var(--space-7) + 24px);
    right: var(--gutter);
    gap: var(--space-3);
  }
  .cta__hud-meta { display: none; }
}
.cta__hud-rec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff3b30;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.cta__hud-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.6);
  animation: cta-rec-blink 1.4s ease-in-out infinite;
}
@keyframes cta-rec-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.6); }
  50%      { opacity: 0.35; box-shadow: 0 0 0 6px rgba(255, 59, 48, 0); }
}
.cta__hud-timecode {
  font-variant-numeric: tabular-nums;
  color: rgba(239, 234, 224, 0.85);
  letter-spacing: 0.12em;
}

/* Garante que o conteúdo do CTA fica acima de todas as camadas */
.section-cta .padding-global { position: relative; z-index: 7; }

@media (prefers-reduced-motion: reduce) {
  .cta__bg-image { animation: none; }
  .cta__spotlight { animation: none; }
  .cta__grain { animation: none; }
  .cta__filmstrip { animation: none; }
  .cta__hud-dot { animation: none; box-shadow: none; }
}

.cta__chips {
  display: none;
  position: absolute;
  inset: var(--space-8) var(--gutter);
  pointer-events: none;
  color: rgba(239, 234, 224, 0.35);
  z-index: 1;
}
@media (min-width: 768px) {
  .cta__chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.cta__chips li { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.cta__chips .is-tl { grid-column: 1; grid-row: 1; align-self: start; justify-self: start; }
.cta__chips .is-tr { grid-column: 2; grid-row: 1; align-self: start; justify-self: end; }
.cta__chips .is-bl { grid-column: 1; grid-row: 2; align-self: end; justify-self: start; }
.cta__chips .is-br { grid-column: 2; grid-row: 2; align-self: end; justify-self: end; }

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(239, 234, 224, 0.55);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cta__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(133, 194, 38, 0.18);
  animation: cta-pulse 2.4s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(133, 194, 38, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(133, 194, 38, 0.04); }
}

.cta__title {
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}
.cta__title em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-green);
}

.cta__lead {
  color: rgba(239, 234, 224, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.cta__sla {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(133, 194, 38, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(133, 194, 38, 0.06);
  color: rgba(239, 234, 224, 0.85);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta__sla svg { color: var(--brand-green); flex-shrink: 0; }
.cta__sla strong { color: var(--brand-green); font-weight: 500; margin: 0 2px; }

.cta__buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

/* Reveal CTA */
.cta__eyebrow,
.cta__title,
.cta__lead,
.cta__buttons {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 800ms cubic-bezier(0.65, 0, 0.35, 1);
}
.section-cta.is-revealed .cta__eyebrow { opacity: 1; transform: none; transition-delay: 0ms; }
.section-cta.is-revealed .cta__title   { opacity: 1; transform: none; transition-delay: 160ms; }
.section-cta.is-revealed .cta__lead    { opacity: 1; transform: none; transition-delay: 360ms; }
.section-cta.is-revealed .cta__buttons { opacity: 1; transform: none; transition-delay: 520ms; }

@media (prefers-reduced-motion: reduce) {
  .cta__eyebrow-dot { animation: none; }
  .cta__eyebrow, .cta__title, .cta__lead, .cta__buttons {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* --- 13. FORMULÁRIO — floating labels, custom select, trust ---- */
.section--form { background: var(--bg); }

.form__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-9);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .form__layout { grid-template-columns: 1fr 1.3fr; gap: var(--space-10); align-items: start; }
}

/* HEAD do formulário (lado esquerdo) */
.form__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.form__chapter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  width: fit-content;
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-left: 36px;
}
.form__chapter::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--brand-green);
  transform: translateY(-50%);
}
.form__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin: 0;
}
.form__title em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}
.form__lead {
  max-width: 420px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.form__trust {
  list-style: none;
  margin: 0;
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.form__trust li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 13px;
  color: var(--text-secondary);
}
.form__trust strong { color: var(--text-primary); font-weight: 500; }
.form__trust-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(133, 194, 38, 0.12);
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form__channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.form__channel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-3) 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--d-base) var(--ease);
}
.form__channel:hover {
  padding-left: var(--space-3);
}
.form__channel-label {
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.form__channel-value {
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 400;
  transition: color var(--d-fast) var(--ease);
}
.form__channel:hover .form__channel-value { color: var(--brand-green); }
.form__channel--static { cursor: default; }
.form__channel--static:hover { padding-left: 0; }
.form__channel--static .form__channel-value { color: var(--text-secondary); font-size: 12px; }

/* FORMULÁRIO em si (lado direito) */
.form { display: flex; flex-direction: column; gap: var(--space-5); }
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }

/* Floating-label fields */
.form__field {
  position: relative;
  padding-top: var(--space-4);
}
.form__field input,
.form__field select,
.form__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  color: var(--text-primary);
  padding: 12px 0 10px 0;
  font-family: var(--font-display);
  font-size: 16px;
  width: 100%;
  transition: border-color var(--d-fast) var(--ease);
  outline: none;
  border-radius: 0;
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: transparent; }

.form__field label {
  position: absolute;
  top: var(--space-4);
  left: 0;
  padding: 12px 0 10px 0;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-tertiary);
  pointer-events: none;
  transform-origin: left top;
  transition:
    transform var(--d-base) cubic-bezier(0.65, 0, 0.35, 1),
    color var(--d-fast) var(--ease);
}
/* Float quando focado, preenchido ou (em select) com valor */
.form__field input:focus + label,
.form__field input:not(:placeholder-shown) + label,
.form__field textarea:focus + label,
.form__field textarea:not(:placeholder-shown) + label,
.form__field--select select:focus + label,
.form__field--select.has-value > select + label {
  transform: translateY(-22px) scale(0.7);
  color: var(--brand-green);
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Garantia: select sem valor escolhido deve render como vazio
   (a option-placeholder usa hidden+empty value, mas alguns browsers
   ainda exibem texto fantasma — pintamos a cor pra transparente
   enquanto o label faz o papel de placeholder) */
.form__field--select select:invalid {
  color: transparent;
  text-shadow: 0 0 0 var(--text-tertiary); /* preserva o cursor */
}
.form__field--select.has-value > select { color: var(--text-primary); text-shadow: none; }

/* Linha animada que cresce do centro no foco */
.form__field-line {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: width 360ms cubic-bezier(0.65, 0, 0.35, 1), left 360ms cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}
.form__field:focus-within .form__field-line {
  width: 100%;
  left: 0;
}

.form__field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

/* Custom select */
.form__field--select select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 32px;
  color: var(--text-primary);
}
.form__field--select option { color: var(--text-primary); background: var(--bg); }
.form__select-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(0);
  pointer-events: none;
  color: var(--text-tertiary);
  transition: transform var(--d-base) var(--ease), color var(--d-fast) var(--ease);
}
.form__field--select:focus-within .form__select-icon {
  color: var(--brand-green);
  transform: translateY(2px);
}

/* Counter no textarea */
.form__field--textarea { padding-bottom: var(--space-4); }
.form__counter {
  position: absolute;
  bottom: -18px;
  right: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-tertiary);
  transition: color var(--d-fast) var(--ease);
}
.form__counter.is-near-limit { color: var(--brand-green); }
.form__counter.is-at-limit   { color: var(--error); }

/* Estados de validação */
.form__field.is-error input,
.form__field.is-error select,
.form__field.is-error textarea { border-bottom-color: var(--error); }
.form__field.is-error label { color: var(--error); }

.form__field.is-valid input,
.form__field.is-valid select,
.form__field.is-valid textarea { border-bottom-color: var(--brand-green); }

.form__privacy {
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: var(--space-4);
  line-height: 1.5;
}
.form__privacy a {
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-strong);
  transition: color var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease);
}
.form__privacy a:hover { color: var(--brand-green); border-bottom-color: var(--brand-green); }

/* Submit button: rolling text + spinner */
.form__submit {
  margin-top: var(--space-3);
  position: relative;
  overflow: hidden;
}
.form__submit-spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-fast) var(--ease);
}
.form__submit.is-loading .btn__inner { opacity: 0; }
.form__submit.is-loading .form__submit-spinner {
  opacity: 1;
  animation: form-spin 0.8s linear infinite;
}
@keyframes form-spin { to { transform: rotate(360deg); } }

.form__feedback {
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  display: none;
  margin-top: var(--space-3);
  font-size: 14px;
  line-height: 1.5;
}
.form__feedback.is-success {
  display: block;
  background: rgba(133, 194, 38, 0.08);
  border-left: 3px solid var(--brand-green);
  color: var(--text-primary);
}
.form__feedback.is-error {
  display: block;
  background: rgba(184, 61, 46, 0.08);
  border-left: 3px solid var(--error);
  color: var(--text-primary);
}

/* Reveal do form */
.form__head > *,
.form .form__row,
.form > .form__field,
.form__privacy,
.form__submit {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 720ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.form__layout.is-revealed .form__head > *      { opacity: 1; transform: none; }
.form__layout.is-revealed .form__head > *:nth-child(1) { transition-delay: 0ms; }
.form__layout.is-revealed .form__head > *:nth-child(2) { transition-delay: 100ms; }
.form__layout.is-revealed .form__head > *:nth-child(3) { transition-delay: 200ms; }
.form__layout.is-revealed .form__head > *:nth-child(4) { transition-delay: 300ms; }
.form__layout.is-revealed .form__head > *:nth-child(5) { transition-delay: 400ms; }
.form__layout.is-revealed .form .form__row,
.form__layout.is-revealed .form > .form__field,
.form__layout.is-revealed .form__privacy,
.form__layout.is-revealed .form__submit { opacity: 1; transform: none; }
.form__layout.is-revealed .form > *:nth-child(1) { transition-delay: 200ms; }
.form__layout.is-revealed .form > *:nth-child(2) { transition-delay: 300ms; }
.form__layout.is-revealed .form > *:nth-child(3) { transition-delay: 400ms; }
.form__layout.is-revealed .form > *:nth-child(4) { transition-delay: 500ms; }
.form__layout.is-revealed .form > *:nth-child(5) { transition-delay: 600ms; }
.form__layout.is-revealed .form > *:nth-child(6) { transition-delay: 700ms; }
.form__layout.is-revealed .form > *:nth-child(7) { transition-delay: 800ms; }

@media (prefers-reduced-motion: reduce) {
  .form__head > *, .form .form__row, .form > .form__field, .form__privacy, .form__submit {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .form__submit.is-loading .form__submit-spinner { animation: none; }
}

/* --- 14. FOOTER — editorial com mini-CTA + signature responsiva */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: var(--section-padding);
  padding-bottom: 0;
  overflow: hidden; /* contém a signature gigante */
}

/* Mini-CTA antes do bloco de links */
.footer__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: end;
  padding-bottom: var(--space-9);
  margin-bottom: var(--space-9);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .footer__cta { grid-template-columns: 1fr auto; gap: var(--space-7); }
}
.footer__cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 var(--space-4) 0;
}
.footer__cta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(133, 194, 38, 0.18);
  animation: cta-pulse 2.4s ease-in-out infinite;
}
.footer__cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0;
}
.footer__cta-headline em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}
.footer__cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--text-primary);
  color: var(--text-on-dark);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background var(--d-base) var(--ease),
    transform var(--d-base) var(--ease-cinematic);
  width: fit-content;
}
.footer__cta-link:hover,
.footer__cta-link:focus-visible {
  background: var(--brand-green);
  color: var(--bg-dark);
  transform: translateY(-2px);
}
.footer__cta-link-arrow {
  transition: transform var(--d-base) var(--ease);
}
.footer__cta-link:hover .footer__cta-link-arrow { transform: translateX(4px); }

/* LAYOUT principal */
.footer__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-9);
}
@media (min-width: 768px) {
  .footer__layout { grid-template-columns: 1.5fr 2fr 1.2fr; gap: var(--space-9); align-items: start; }
}

/* Brand mark + descrição */
.footer__intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer__brand {
  display: inline-flex;
  align-items: baseline;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--text-primary);
  width: fit-content;
}
.footer__brand-mark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brand-green);
  transition: transform var(--d-base) var(--ease-cinematic);
}
.footer__brand-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  transition: color var(--d-fast) var(--ease);
}
.footer__brand:hover .footer__brand-mark { transform: rotate(-8deg); }
.footer__brand:hover .footer__brand-name { color: var(--text-primary); }

.footer__intro-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
  margin: 0;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
}
.footer__col { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col h4 {
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3) 0;
  font-weight: 500;
}
.footer__col a {
  color: var(--text-primary);
  font-size: 14px;
  text-decoration: none;
  position: relative;
  width: fit-content;
  padding: 4px 0;
  transition: color var(--d-fast) var(--ease), padding-left var(--d-base) var(--ease);
}
.footer__col a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-8px);
  color: var(--brand-green);
  transition: opacity var(--d-fast) var(--ease), transform var(--d-base) var(--ease);
}
.footer__col a:hover {
  color: var(--brand-green);
  padding-left: 22px;
}
.footer__col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Endereço */
.footer__address h4 {
  color: var(--text-primary);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 var(--space-3) 0;
  font-weight: 500;
}
.footer__addr {
  font-style: normal;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 var(--space-5) 0;
}
.footer__hours {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin: 0 0 var(--space-5) 0;
  line-height: 1.7;
}
.footer__hours strong { color: var(--text-primary); font-weight: 500; }

.footer__social {
  list-style: none;
  margin: 0;
  padding: var(--space-5) 0 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-primary);
  text-decoration: none;
  padding: 4px 0;
  width: fit-content;
  transition: color var(--d-fast) var(--ease), gap var(--d-base) var(--ease);
}
.footer__social a span { color: var(--text-tertiary); transition: transform var(--d-base) var(--ease), color var(--d-fast) var(--ease); }
.footer__social a:hover { color: var(--brand-green); gap: var(--space-3); }
.footer__social a:hover span { color: var(--brand-green); transform: translateX(4px); }

/* SIGNATURE gigante — responsiva, sem overflow corte */
.footer__signature {
  margin-top: var(--space-8);
  margin-bottom: var(--space-5);
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.footer__signature-text {
  font-family: var(--font-display);
  /* Calculado pra caber "8 milímetros" (~12 chars) com folga em qualquer viewport */
  font-size: clamp(3rem, 16vw, 14rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: var(--text-primary);
  white-space: nowrap;
  display: inline-block;
  background: linear-gradient(180deg, var(--text-primary) 0%, rgba(14, 13, 11, 0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.footer.is-revealed .footer__signature-text {
  animation: signature-rise 1200ms cubic-bezier(0.65, 0, 0.35, 1) both;
}
@keyframes signature-rise {
  from { transform: translateY(40%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border);
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer__bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px dashed var(--border-strong);
  padding-bottom: 1px;
  transition: color var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease);
}
.footer__bottom a:hover { color: var(--brand-green); border-bottom-color: var(--brand-green); border-bottom-style: solid; }

/* Reveal do mini-CTA do footer */
.footer__cta-eyebrow,
.footer__cta-headline,
.footer__cta-link {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 720ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
}
.footer.is-revealed .footer__cta-eyebrow  { opacity: 1; transform: none; transition-delay: 0ms; }
.footer.is-revealed .footer__cta-headline { opacity: 1; transform: none; transition-delay: 140ms; }
.footer.is-revealed .footer__cta-link     { opacity: 1; transform: none; transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .footer__cta-dot { animation: none; }
  .footer__signature-text { animation: none !important; }
  .footer__cta-eyebrow, .footer__cta-headline, .footer__cta-link {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* --- 15. WHATSAPP FAB ---------------------------------------- */
/* WhatsApp FAB — glass editorial pill com tooltip slide-in */
.whatsapp-fab {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  height: 56px;
  padding: 6px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-on-dark);
  /* Glass: blur + saturação + base preta translúcida */
  background: rgba(14, 13, 11, 0.42);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(239, 234, 224, 0.18);
  box-shadow:
    0 14px 40px -10px rgba(0, 0, 0, 0.4),
    0 4px 14px -4px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(239, 234, 224, 0.08);
  transition:
    background 320ms cubic-bezier(0.65, 0, 0.35, 1),
    border-color 320ms cubic-bezier(0.65, 0, 0.35, 1),
    transform 320ms cubic-bezier(0.65, 0, 0.35, 1),
    box-shadow 320ms cubic-bezier(0.65, 0, 0.35, 1);
}
@media (max-width: 767px) {
  .whatsapp-fab { bottom: var(--space-4); right: var(--space-4); height: 52px; }
}

/* ============================================================
   MOBILE STRUCTURE — fixes de a11y + hierarquia (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {

  /* Touch targets ≥ 44px nos links do footer (WCAG 2.5.5) */
  .footer__col a,
  .footer__bottom a,
  .footer__social a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding-block: 6px;
  }

  /* Signature gigante "8 milímetros" — ainda mais segura em mobile */
  .footer__signature-text {
    font-size: clamp(2.5rem, 18vw, 6rem);
    letter-spacing: -0.05em;
  }

  /* CTA do footer empilhado em mobile com mais respiro */
  .footer__cta {
    padding-bottom: var(--space-7);
    margin-bottom: var(--space-7);
    gap: var(--space-4);
  }
  .footer__cta-link {
    width: 100%;
    justify-content: center;
    padding-block: var(--space-4);
  }

  /* Footer layout mobile — links em coluna única, mais legível */
  .footer__layout {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .footer__links {
    gap: var(--space-5);
  }

  /* Form mobile — channels com touch targets maiores */
  .form__channel {
    padding-block: var(--space-3);
    min-height: 56px;
  }

  /* Header dramático do Sobre — gap reduzido entre col esquerda/direita */
  .about__header { gap: var(--space-5); }
  .about__title { font-size: clamp(1.75rem, 9vw, 2.5rem); }
  .about__lead { font-size: 0.95rem; line-height: 1.6; }

  /* Stats em coluna única no mobile, mantendo o filete verde */
  .about__stats { gap: var(--space-6); }
  .stat-card__num { font-size: clamp(2.5rem, 12vw, 4rem); }

  /* Awards (credits roll) — ano + nome + categoria empilham bonito */
  .award {
    grid-template-columns: 56px 1fr;
    gap: var(--space-3);
    padding-block: var(--space-4);
  }
  .award__name { font-size: 1.05rem; }

  /* Soluções: header em coluna única */
  .services__head { gap: var(--space-5); }
  .services__title { font-size: clamp(1.75rem, 8.5vw, 2.5rem); }
  .services__cta { width: 100%; }
  .services__cta .btn__inner { justify-content: center; }

  /* Depoimentos: header empilhado, lead com max-width liberado */
  .testimonials__head { gap: var(--space-5); }
  .testimonials__title { font-size: clamp(1.75rem, 9vw, 2.5rem); }
  .testimonials__lead { max-width: none; }
  .testimonials__metrics { gap: var(--space-3) var(--space-4); font-size: 11px; }
  .quote-card.is-feature { padding: var(--space-5); }
  .quote-card.is-feature .quote__body { font-size: 1.1rem; }

  /* Form: lead e título com tamanho compatível */
  .form__title { font-size: clamp(1.75rem, 8.5vw, 2.5rem); }
  .form__lead { font-size: 0.95rem; max-width: none; }

  /* CTA section (final) — botões empilhados, mais respiro */
  .cta__title { font-size: clamp(2rem, 9vw, 3rem); }
  .cta__buttons { width: 100%; flex-direction: column; padding-inline: var(--space-5); }
  .cta__buttons .btn { width: 100%; }

  /* Modal vídeo: padding menor pra aproveitar tela */
  .modal { padding: var(--space-3); }
  .modal__close { top: var(--space-3); right: var(--space-3); }
}

/* Fallback elegante quando não há backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
  .whatsapp-fab { background: rgba(14, 13, 11, 0.85); }
}

/* ÍCONE — círculo verde WhatsApp com gradient sutil */
.whatsapp-fab__icon {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #1FAE57 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 12px -2px rgba(37, 211, 102, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 380ms cubic-bezier(0.65, 0, 0.35, 1);
}
.whatsapp-fab__icon svg {
  position: relative;
  z-index: 1;
  display: block;
}

/* PULSE — anel verde que expande pra fora do ícone (border-only, não cobre o SVG) */
.whatsapp-fab__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  pointer-events: none;
  animation: wa-pulse-ring 2.4s ease-out infinite;
}
@keyframes wa-pulse-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  80%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* TOOLTIP — texto que desliza pra fora no hover */
.whatsapp-fab__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  transition:
    max-width 480ms cubic-bezier(0.65, 0, 0.35, 1),
    opacity 220ms ease 80ms,
    padding 480ms cubic-bezier(0.65, 0, 0.35, 1);
}

/* HOVER / FOCO: tooltip slide-in + halo verde + lift */
.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background: rgba(14, 13, 11, 0.65);
  border-color: rgba(133, 194, 38, 0.45);
  transform: translateY(-3px);
  box-shadow:
    0 22px 50px -10px rgba(0, 0, 0, 0.5),
    0 6px 18px -4px rgba(133, 194, 38, 0.25),
    inset 0 1px 0 rgba(133, 194, 38, 0.18);
  outline: none;
}
.whatsapp-fab:hover .whatsapp-fab__label,
.whatsapp-fab:focus-visible .whatsapp-fab__label {
  max-width: 220px;
  opacity: 1;
  padding-left: var(--space-5);
  padding-right: var(--space-3);
}
.whatsapp-fab:hover .whatsapp-fab__icon,
.whatsapp-fab:focus-visible .whatsapp-fab__icon {
  transform: rotate(-6deg) scale(1.04);
}
.whatsapp-fab:active { transform: translateY(-1px) scale(0.98); }

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab__icon::after { animation: none; opacity: 0; }
  .whatsapp-fab,
  .whatsapp-fab__icon,
  .whatsapp-fab__label { transition: none !important; }
}

/* --- 16. MODAL ----------------------------------------------- */
.modal {
  position: fixed; inset: 0;
  background: rgba(14,13,11,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.modal.is-open { display: flex; }
.modal__close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover { background: var(--brand-green); }
.modal__content { width: 100%; max-width: 1400px; }
.modal__player { position: relative; aspect-ratio: 16/9; width: 100%; }
.modal__player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- 17. REVEAL ON SCROLL ----------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--d-slow) var(--ease-cinematic), transform var(--d-slow) var(--ease-cinematic);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   PÁGINA /portfolio.html — Catálogo completo
   ============================================================ */

.page--portfolio { background: var(--bg); }

/* Navbar solid sempre visível na página de portfólio */
.navbar--solid {
  mix-blend-mode: normal !important;
  background: rgba(239, 234, 224, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar--solid .navbar__logo-img.is-light { display: none; }
.navbar--solid .navbar__logo-img.is-dark { position: static; opacity: 1; }
.navbar--solid .nav-link { color: var(--text-primary); }
.navbar--solid .nav-link.is-active {
  color: var(--text-primary);
}
.navbar--solid .nav-link.is-active::after {
  width: 100%;
}
.navbar--solid .navbar__toggle span { background: var(--text-primary); }

/* Hero da página */
.portfolio-page {
  padding-top: var(--nav-h);
}
.portfolio-page__hero {
  background: var(--bg);
}
.breadcrumb {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: var(--space-7);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--brand-green); }
.breadcrumb [aria-current] { color: var(--text-primary); }

.portfolio-page__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: end;
  padding-bottom: var(--space-9);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .portfolio-page__head { grid-template-columns: 1.4fr 1fr; gap: var(--space-10); }
}
.portfolio-page__head-left { display: flex; flex-direction: column; gap: var(--space-5); }
.portfolio-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text-primary);
}
.portfolio-page__head-right { display: flex; flex-direction: column; gap: var(--space-7); }
.portfolio-page__head-right > p { color: var(--text-secondary); max-width: 420px; }

.portfolio-page__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}
.portfolio-page__stats li {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.portfolio-page__stats .text-5xl {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}
.portfolio-page__stats sup {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--brand-green);
  margin-left: 2px;
}
.portfolio-page__stats .text-mono {
  color: var(--text-tertiary);
  font-size: 11px;
}

/* Catálogo: filtros + grid */
.portfolio-page__catalog {
  background: var(--bg);
  padding-top: var(--space-9);
}

.portfolio-page__filters-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .portfolio-page__filters-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-7);
  }
}

.portfolio-page__filters {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-3);
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
}
.portfolio-page__filters::-webkit-scrollbar { height: 4px; }
.portfolio-page__filters::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; }

@media (min-width: 1024px) {
  .portfolio-page__filters {
    flex-wrap: wrap;
    overflow: visible;
  }
}

/* Reaproveita .filter base + adiciona contagem */
.portfolio-page__filters .filter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 18px;
  flex-shrink: 0;
}
.portfolio-page__filters .filter__num {
  font-size: 11px;
  color: var(--text-tertiary);
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
  background: rgba(0,0,0,0.05);
  padding: 2px 6px;
  border-radius: 999px;
  margin-left: 2px;
}
.portfolio-page__filters .filter:hover .filter__num,
.portfolio-page__filters .filter.is-active .filter__num {
  background: rgba(255,255,255,0.15);
  color: var(--brand-green);
  opacity: 1;
}

/* Sort dropdown */
.portfolio-page__sort {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  padding-top: 4px;
}
.portfolio-page__sort label { color: var(--text-tertiary); }
.portfolio-page__sort-select {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  padding: 8px 32px 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%230E0D0B' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color var(--d-fast) var(--ease);
}
.portfolio-page__sort-select:hover { border-color: var(--text-primary); }

/* Counter de resultados */
.portfolio-page__count {
  margin-bottom: var(--space-6);
  color: var(--text-tertiary);
}

/* GRID BENTO da página */
.portfolio-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-9);
}
@media (min-width: 640px) {
  .portfolio-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}
@media (min-width: 1024px) {
  .portfolio-page__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}

/* Tamanhos bento — somente desktop */
@media (min-width: 1024px) {
  .portfolio-page__grid .portfolio-card--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .portfolio-page__grid .portfolio-card--feature .portfolio-card__img { aspect-ratio: 16/10; }
  .portfolio-page__grid .portfolio-card--wide { grid-column: span 2; }
  .portfolio-page__grid .portfolio-card--wide .portfolio-card__img { aspect-ratio: 16/9; }
}

@media (max-width: 1023px) and (min-width: 640px) {
  .portfolio-page__grid .portfolio-card--feature {
    grid-column: span 2;
  }
  .portfolio-page__grid .portfolio-card--feature .portfolio-card__img { aspect-ratio: 16/9; }
}

/* CARDS reaproveitam .portfolio-card base, mas página dedicada tem variações */
.portfolio-page__grid .portfolio-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  cursor: pointer;
  position: relative;
}
.portfolio-page__grid .portfolio-card__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-secondary);
  position: relative;
}
.portfolio-page__grid .portfolio-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--ease-cinematic);
}
.portfolio-page__grid .portfolio-card:hover .portfolio-card__img img { transform: scale(1.05); }
.portfolio-page__grid .portfolio-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,0.4), transparent 50%);
  opacity: 0;
  transition: opacity var(--d-base) var(--ease);
  z-index: 1;
}
.portfolio-page__grid .portfolio-card:hover .portfolio-card__img::before { opacity: 1; }

.portfolio-page__grid .portfolio-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--d-base) var(--ease);
  pointer-events: none;
  z-index: 2;
}
.portfolio-page__grid .portfolio-card:hover .portfolio-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-page__grid .portfolio-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--brand-green);
  color: var(--bg-dark);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0.1em;
  z-index: 3;
  font-weight: 700;
}

.portfolio-page__grid .portfolio-card__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}
.portfolio-page__grid .portfolio-card__index {
  color: var(--text-tertiary);
  font-size: 12px;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.portfolio-page__grid .portfolio-card__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.portfolio-page__grid .portfolio-card__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
}
.portfolio-page__grid .portfolio-card--feature .portfolio-card__title,
.portfolio-page__grid .portfolio-card--wide .portfolio-card__title {
  font-size: 18px;
}
@media (min-width: 1024px) {
  .portfolio-page__grid .portfolio-card--feature .portfolio-card__title { font-size: 22px; }
}
.portfolio-page__grid .portfolio-card__sub {
  color: var(--text-tertiary);
  font-size: 12px;
  line-height: 1.5;
}

.portfolio-page__empty {
  text-align: center;
  padding: var(--space-9) var(--space-5);
  color: var(--text-tertiary);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
}
.portfolio-page__empty a { color: var(--brand-green); text-decoration: underline; }

/* Indicador "ativo" no nav-link da página atual */
.nav-link.is-active::after {
  width: 100%;
  background: var(--brand-green);
}

/* --- 18. REDUCE MOTION -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bg iframe { display: none; }
  .hero__overlay { background: var(--bg-dark); }
}

/* ============================================================
   19. AJUSTES — FEEDBACK CLIENTE (jun/2026)
   ============================================================ */

/* [Item 2] "8" verde no H1 do hero */
.hero__title-8 { color: var(--brand-green); }
/* fundo escuro do hero (fallback enquanto o vídeo do Vimeo é carregado sob demanda) */
.hero__bg { background: var(--bg-dark); }

/* [Item 7] Isotipo no rodapé (substitui a marca textual "8mm") */
.footer__brand { align-items: center; }
.footer__brand-mark {
  width: auto;
  height: 30px;
  display: block;
}

/* [Item 1] Hero chips — fixados aos 4 cantos da área (já recuada por
   --chip-side). Elimina a colisão central que juntava os textos
   ("PublicidadeDocumentário") em larguras intermediárias. */
@media (min-width: 768px) {
  .hero__chips { display: block; }
  .hero__chips li {
    position: absolute;
    max-width: 48%;
    white-space: nowrap;
  }
  .hero__chips .is-tl { top: 0;    left: 0;  }
  .hero__chips .is-tr { top: 0;    right: 0; }
  .hero__chips .is-bl { bottom: 0; left: 0;  }
  .hero__chips .is-br { bottom: 0; right: 0; }
}

/* [Item 6] Carrossel de LAURELS — selos de festivais.
   Monocromático ("sem cor") e discreto ("meio em transparência"),
   realça no hover. O carrossel pausa quando o mouse entra. */
.laurels {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-8);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.laurels__track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: max-content;
  animation: marquee-laurels 46s linear infinite;
}
.laurels:hover .laurels__track { animation-play-state: paused; }
.laurel {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-primary);
  opacity: 0.42;
  filter: grayscale(1);
  transition: opacity var(--d-base) var(--ease);
}
.laurel:hover { opacity: 0.92; }
.laurel__branch {
  width: clamp(24px, 3vw, 36px);
  height: auto;
  flex-shrink: 0;
}
.laurel__branch--r { transform: scaleX(-1); }
.laurel__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  line-height: 1.1;
}
.laurel__fest {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.laurel__award {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.laurel__year {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.7;
}
@keyframes marquee-laurels { to { transform: translateX(-50%); } }

/* [Item 10] Carrossel de CLIENTES — apagado, realça no hover */
.section--clients {
  padding-top: var(--space-9);
  padding-bottom: var(--space-9);
  background: var(--bg);
}
.clients__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.clients__label {
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.clients__caption {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 620px;
}
.clients__caption em {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
}
.clients-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.clients-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  width: max-content;
  animation: marquee-clients 55s linear infinite;
}
.clients-marquee:hover .clients-marquee__track { animation-play-state: paused; }
.clients-marquee__item {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0.3;
  filter: grayscale(1);
  transition: opacity var(--d-base) var(--ease), color var(--d-fast) var(--ease);
}
.clients-marquee__item:hover { opacity: 1; }
@keyframes marquee-clients { to { transform: translateX(-50%); } }

/* Layout estático dos carrosséis quando o usuário pede menos movimento */
@media (prefers-reduced-motion: reduce) {
  .laurels, .clients-marquee {
    -webkit-mask-image: none;
            mask-image: none;
  }
  .laurels__track, .clients-marquee__track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: var(--space-5);
  }
}

/* ============================================================
   20. BLOG — página de post (template restilizável p/ WordPress)
   ============================================================ */
.blog-post { background: var(--bg); padding-top: var(--nav-h); }

.post__header { max-width: 820px; margin: 0 auto; }
.post__eyebrow { color: var(--text-tertiary); display: inline-block; margin-bottom: var(--space-5); }
.post__eyebrow strong { color: var(--brand-green-dark); font-weight: 600; }
.post__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--text-primary);
  margin: 0;
}
.post__meta { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-6); }
.post__avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; background: var(--bg-tertiary); }
.post__meta-text { display: flex; flex-direction: column; line-height: 1.3; }
.post__meta-name { font-weight: 500; color: var(--text-primary); }
.post__meta-sub { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--text-tertiary); }

.post__feature { max-width: 1080px; margin: var(--space-8) auto 0; padding: 0 var(--gutter); }
.post__feature img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius-lg); display: block; }

.post__body {
  max-width: 720px;
  margin: var(--space-9) auto 0;
  font-size: 1.135rem;
  line-height: 1.78;
  color: #353129;
}
.post__body > p { margin: 0 0 var(--space-5); }
.post__body > p:first-of-type { font-size: 1.28rem; line-height: 1.6; color: var(--text-primary); }
.post__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text-primary);
  margin: var(--space-8) 0 var(--space-4);
}
.post__body h3 { font-size: 1.35rem; font-weight: 600; color: var(--text-primary); margin: var(--space-7) 0 var(--space-3); }
.post__body a { color: var(--brand-green-dark); text-decoration: underline; text-underline-offset: 2px; }
.post__body ul, .post__body ol { margin: 0 0 var(--space-5); padding-left: var(--space-6); }
.post__body li { margin-bottom: var(--space-2); }
.post__body figure { margin: var(--space-7) 0; }
.post__body figure img { width: 100%; height: auto; border-radius: var(--radius-md); display: block; }
.post__body figcaption { font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary); text-align: center; margin-top: var(--space-3); }
.post__body blockquote {
  border-left: 3px solid var(--brand-green);
  margin: var(--space-6) 0; padding: var(--space-2) 0 var(--space-2) var(--space-5);
  font-family: 'Times New Roman', serif; font-style: italic; font-size: 1.4rem; line-height: 1.4; color: var(--text-primary);
}
.post__body strong { color: var(--text-primary); font-weight: 600; }

.post__foot { max-width: 720px; margin: var(--space-8) auto 0; padding-top: var(--space-6); border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: center; }
.post__tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.post__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 6px 12px; text-decoration: none; transition: border-color var(--d-fast) var(--ease), color var(--d-fast) var(--ease); }
.post__tag:hover { border-color: var(--brand-green); color: var(--brand-green-dark); }
.post__share { display: flex; gap: var(--space-3); align-items: center; }
.post__share-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-tertiary); }
.post__share a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
.post__share a:hover { color: var(--brand-green-dark); }

.post__author { max-width: 720px; margin: var(--space-8) auto 0; display: flex; gap: var(--space-5); align-items: center; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); }
.post__author img { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; background: var(--bg-tertiary); }
.post__author-name { font-weight: 600; color: var(--text-primary); }
.post__author-role { font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary); margin-bottom: var(--space-2); }
.post__author-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

.post__back { max-width: 720px; margin: var(--space-7) auto 0; }
.post__back a { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; color: var(--text-secondary); text-decoration: none; }
.post__back a:hover { color: var(--brand-green-dark); }

.related { background: var(--bg-secondary); }
.related__head { margin-bottom: var(--space-6); }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.related__card { display: block; text-decoration: none; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--d-base) var(--ease), box-shadow var(--d-base) var(--ease); }
.related__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(14, 13, 11, 0.10); }
.related__thumb { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; display: block; background: var(--bg-tertiary); }
.related__body { padding: var(--space-5); }
.related__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-green-dark); }
.related__title { font-size: 1.05rem; font-weight: 500; color: var(--text-primary); line-height: 1.3; margin-top: var(--space-2); }

@media (max-width: 860px) { .related__grid { grid-template-columns: 1fr; } }
@media (max-width: 767px) {
  .post__feature { padding: 0; margin-top: var(--space-6); }
  .post__feature img { border-radius: 0; }
  .post__body { font-size: 1.06rem; }
  .post__author { flex-direction: column; text-align: center; }
}

/* ============================================================
   21. FIX — menu mobile recortado pela navbar
   Um ancestral com backdrop-filter vira "containing block" dos
   filhos position:fixed, recortando o .mobile-nav à altura da
   navbar. Enquanto o menu está aberto a navbar já é sólida, então
   removemos o filtro p/ o painel preencher a tela. (Vale p/ todas
   as páginas: home, portfólio e blog.)
   ============================================================ */
.navbar.is-mobile-open {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  background: var(--bg) !important;
}

/* ============================================================
   22. BLOG — listagem / arquivo (/blog/)
   ============================================================ */
.blog-archive { padding-top: var(--nav-h); background: var(--bg); }

.blog-hero { background: var(--bg); }
.blog-hero__head { display: grid; gap: var(--space-5); }
@media (min-width: 900px) {
  .blog-hero__head { grid-template-columns: 1.15fr 1fr; align-items: end; gap: var(--space-8); }
}
.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300; letter-spacing: -0.03em; line-height: 1;
  color: var(--text-primary); margin: var(--space-4) 0 0;
}
.blog-hero__title em { font-family: 'Times New Roman', serif; font-style: italic; }
.blog-hero__lead { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.6; max-width: 460px; }
.blog-hero__lead strong { color: var(--text-primary); font-weight: 600; }

/* filtros por categoria (reaproveita .filter) */
.blog-filters { display: flex; flex-wrap: wrap; gap: var(--space-2); margin: var(--space-8) 0 var(--space-7); }

/* grid de cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
@media (max-width: 980px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex; flex-direction: column;
  background: var(--bg-tertiary);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none;
  opacity: 0; transform: translateY(12px);
  transition: transform var(--d-base) var(--ease), box-shadow var(--d-base) var(--ease), opacity var(--d-base) var(--ease);
}
.blog-card.is-in { opacity: 1; transform: none; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(14, 13, 11, 0.12); }
.blog-card__thumb { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; display: block; background: var(--bg-secondary); }
.blog-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.blog-card__cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-green-dark); }
.blog-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; color: var(--text-primary); }
.blog-card__excerpt { font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__meta { margin-top: auto; padding-top: var(--space-3); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--text-tertiary); }

/* estados + carregar mais */
.blog-state { text-align: center; color: var(--text-tertiary); padding: var(--space-9) 0; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.04em; }
.blog-state a { color: var(--brand-green-dark); }
.blog-loadmore-wrap { display: flex; justify-content: center; margin-top: var(--space-8); }
.blog-loadmore {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong); background: transparent; color: var(--text-primary);
  cursor: pointer; transition: background var(--d-fast) var(--ease), color var(--d-fast) var(--ease), border-color var(--d-fast) var(--ease);
}
.blog-loadmore:hover { background: var(--text-primary); color: var(--bg); border-color: var(--text-primary); }
.blog-loadmore:disabled { opacity: 0.5; cursor: default; }

/* ============================================================
   23. PÁGINAS INTERNAS (landing / serviço) — mesma URL, design novo
   ============================================================ */
.inner-page { padding-top: var(--nav-h); background: var(--bg); }
.inner-hero { background: var(--bg); }
.inner-hero__head { display: grid; gap: var(--space-5); }
@media (min-width: 900px) {
  .inner-hero__head { grid-template-columns: 1.1fr 1fr; align-items: end; gap: var(--space-8); }
}
.inner-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 300; letter-spacing: -0.03em; line-height: 1.02;
  color: var(--text-primary); margin: var(--space-4) 0 0;
}
.inner-hero__lead { color: var(--text-secondary); font-size: 1.12rem; line-height: 1.6; max-width: 480px; }
.inner-hero__cta { margin-top: var(--space-5); }
/* o conteúdo usa .post__body (tipografia de artigo já estilizada) */
.inner-body .post__body { margin-top: var(--space-9); }

/* ============================================================
   24. PÁGINAS DE SERVIÇO — layout estruturado (gerado)
   ============================================================ */
/* HERO assimétrico */
.svc-hero { background: var(--bg); }
.svc-hero__grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: var(--space-5) var(--space-9); align-items: end; }
.svc-hero__eyebrow { grid-column: 1 / -1; color: var(--text-tertiary); }
.svc-hero__title { grid-column: 1; font-family: var(--font-display); font-weight: 300; letter-spacing: -0.03em; font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 1.02; margin: var(--space-4) 0 0; color: var(--text-primary); }
.svc-hero__title em { font-family: 'Times New Roman', serif; font-style: italic; }
.svc-hero__lead { grid-column: 2; align-self: end; max-width: 44ch; color: var(--text-secondary); font-size: 1.12rem; line-height: 1.6; }
.svc-hero__cta { grid-column: 2; margin-top: var(--space-5); }
@media (max-width: 860px) {
  .svc-hero__grid { grid-template-columns: 1fr; }
  .svc-hero__title, .svc-hero__lead, .svc-hero__cta { grid-column: 1; }
  .svc-hero__lead { max-width: none; }
}

/* BENEFÍCIOS — cards numerados */
.svc-benefits__grid { list-style: none; margin: var(--space-6) 0 0; padding: 0; display: grid; gap: var(--space-4); grid-template-columns: repeat(3, 1fr); }
.svc-benefit { background: var(--bg-tertiary); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); transition: transform var(--d-base) var(--ease), box-shadow var(--d-base) var(--ease); }
.svc-benefit:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(14, 13, 11, 0.10); }
.svc-benefit__num { display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 300; letter-spacing: -0.03em; color: var(--brand-green-dark); line-height: 1; margin-bottom: var(--space-4); }
.svc-benefit__text { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; margin: 0; }
@media (max-width: 980px) { .svc-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-benefits__grid { grid-template-columns: 1fr; } }

/* STAT-STRIP escura */
.svc-statband { background: var(--bg-dark); color: var(--text-on-dark); margin-top: var(--space-9); }
.svc-statband__row { display: grid; gap: var(--space-7); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); padding-block: var(--space-8); }
.svc-stat__num { display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 300; letter-spacing: -0.03em; color: var(--brand-green); line-height: 1; }
.svc-stat__desc { color: rgba(239, 234, 224, 0.72); font-size: 0.98rem; line-height: 1.5; margin: var(--space-3) 0 0; }

/* CONTEÚDO — feature-rows numeradas e alternadas */
.svc-content__head, .svc-reasons__head { font-family: var(--font-display); font-weight: 300; letter-spacing: -0.03em; font-size: clamp(1.7rem, 3.5vw, 2.7rem); line-height: 1.1; margin: var(--space-3) 0 var(--space-6); color: var(--text-primary); }
.svc-content__head em, .svc-reasons__head em { font-family: 'Times New Roman', serif; font-style: italic; }
.feature-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr); gap: var(--space-6); align-items: start; padding: var(--space-6) 0; border-top: 1px solid var(--border); }
.feature-row:last-child { border-bottom: 1px solid var(--border); }
.feature-row__index { font-family: var(--font-mono); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 400; color: var(--brand-green); line-height: 1; }
.feature-row__title { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin: 0 0 var(--space-2); color: var(--text-primary); }
.feature-row__text { color: var(--text-secondary); font-size: 1.08rem; line-height: 1.7; margin: 0; }
.feature-row__list { margin: 0; padding-left: var(--space-5); color: var(--text-secondary); line-height: 1.7; }
.feature-row.is-rev { grid-template-columns: minmax(0, 2.4fr) minmax(0, 1fr); }
.feature-row.is-rev .feature-row__index { order: 2; text-align: right; }
@media (max-width: 720px) {
  .feature-row, .feature-row.is-rev { grid-template-columns: 1fr; gap: var(--space-3); }
  .feature-row.is-rev .feature-row__index { order: 0; text-align: left; }
}

/* MID-CTA verde (só páginas longas) */
.svc-midcta { margin-block: var(--space-8); }
.svc-midcta__inner { background: var(--brand-green); border-radius: var(--radius-lg); padding: var(--space-6) var(--space-7); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--space-5); }
.svc-midcta__txt { color: var(--bg-dark); font-family: var(--font-display); font-weight: 300; margin: 0; font-size: clamp(1.3rem, 2.5vw, 2rem); letter-spacing: -0.02em; }
.svc-midcta__txt em { font-family: 'Times New Roman', serif; font-style: italic; }
.svc-midcta__btn { background: var(--bg-dark); color: var(--bg); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 26px; border-radius: var(--radius-pill); text-decoration: none; white-space: nowrap; transition: transform var(--d-fast) var(--ease); }
.svc-midcta__btn:hover { transform: translateY(-2px); }

/* RAZÕES — cards "por que contratar" */
.svc-reasons__grid { display: grid; gap: var(--space-4); margin-top: var(--space-5); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.svc-reason { background: var(--bg-tertiary); border: 1px solid var(--border); border-left: 3px solid var(--brand-green); border-radius: var(--radius-lg); padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); transition: transform var(--d-base) var(--ease), box-shadow var(--d-base) var(--ease); }
.svc-reason:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(14, 13, 11, 0.10); }
.svc-reason__kicker { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 500; color: var(--brand-green-dark); padding-bottom: var(--space-3); border-bottom: 1px solid rgba(133, 194, 38, 0.35); margin: 0; }
.svc-reason__text { color: var(--text-secondary); line-height: 1.6; margin: 0; }
