/* ============================================================
   FORTIVA — LANDING PAGE COMERCIAL
   ============================================================ */

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0b0b0b; }
::-webkit-scrollbar-thumb { background: #ebbb1e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #f5d252; }
html { scrollbar-width: thin; scrollbar-color: #ebbb1e #0b0b0b; }

:root {
  /* Brand */
  --yellow:        #ebbb1e;
  --yellow-light:  #f5d252;
  --yellow-dark:   #c49a10;
  --yellow-muted:  rgba(235,187,30,.12);
  --yellow-glow:   rgba(235,187,30,.28);

  /* Neutrals */
  --black:         #080808;
  --gray-950:      #0b0b0b;
  --gray-900:      #131313;
  --gray-850:      #181818;
  --gray-800:      #1f1f1f;
  --gray-700:      #2a2a2a;
  --gray-600:      #3a3a3a;
  --gray-500:      #545454;
  --gray-400:      #7a7a7a;
  --gray-300:      #a3a3a3;
  --gray-200:      #cfcfcf;
  --gray-100:      #ececec;
  --white:         #ffffff;

  --text:          #f3f3f3;
  --text-soft:     #a3a3a3;
  --text-muted:    #6f6f6f;
  --border:        #242424;
  --border-soft:   #1a1a1a;

  --font-display:  'Space Grotesk', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, monospace;

  --ease-out:      cubic-bezier(.16,1,.3,1);
  --ease-spring:   cubic-bezier(.34,1.56,.64,1);
  --dur-fast:      180ms;
  --dur-base:      320ms;
  --dur-slow:      560ms;

  --maxw:          1480px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--yellow); color: var(--black); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
  padding: 140px 0;
}
section.tight { padding: 96px 0; }

/* ============================================================
   TYPE
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--yellow);
}
.eyebrow.no-line::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .98;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.03em;
}
h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.lead {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--text-soft);
  line-height: 1.6;
  text-wrap: pretty;
}

.section-header {
  display: grid;
  gap: 18px;
  margin-bottom: 72px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

.amp { color: var(--yellow); font-style: normal; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.005em;
  padding: 18px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}
.btn .arr {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--yellow-light);
  box-shadow: 0 12px 40px -10px var(--yellow-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--gray-600);
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-dark {
  background: var(--gray-900);
  color: var(--white);
  border: 1px solid var(--gray-700);
}
.btn-dark:hover { background: var(--gray-800); border-color: var(--gray-600); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  transition: background var(--dur-base), backdrop-filter var(--dur-base), border-color var(--dur-base);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--border-soft);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 39px;
  width: auto;
  display: block;
}
.brand-logo--footer {
  height: 51px;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 10px 16px;
  border-radius: 4px;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-links a:hover { color: var(--white); background: var(--gray-900); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: .02em;
}
.nav-phone strong { color: var(--white); font-weight: 500; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute;
  inset: -10%; /* extra margin so parallax shift doesn't expose edges */
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 30%, transparent 75%);
  will-change: transform;
}
.hero-glow {
  position: absolute;
  top: -10%; right: -20%;
  width: 70%; height: 110%;
  background: radial-gradient(ellipse at center, var(--yellow-glow) 0%, transparent 60%);
  filter: blur(20px);
  opacity: .6;
  will-change: transform;
}
.hero-glow.two {
  top: 60%; left: -10%; right: auto;
  width: 40%; height: 60%;
  background: radial-gradient(circle, rgba(235,187,30,.12), transparent 70%);
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding-bottom: 30px;
}

.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-tagline {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 32px;
}
.hero h1 .ln {
  display: block;
  overflow: hidden;
}
.hero h1 .ln > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s var(--ease-out) forwards;
}
.hero h1 .ln:nth-child(1) > span { animation-delay: .15s; }
.hero h1 .ln:nth-child(2) > span { animation-delay: .28s; }
.hero h1 .ln:nth-child(3) > span { animation-delay: .41s; }

@keyframes rise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}

.hero .yellow-text { color: var(--yellow); }

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--text-soft);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) .6s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) .75s forwards;
}

.hero-meta {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) .9s forwards;
}
.hero-meta-item { display: grid; gap: 4px; }
.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-meta-value {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
}

/* Hero side panel — image + frame */
.hero-side {
  position: relative;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .5s forwards;
}
.hero-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-900);
  border: 1px solid var(--border);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(0,0,0,.55) 100%
  );
  pointer-events: none;
}
.hero-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-frame-client-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,.018) 0,
      rgba(255,255,255,.018) 12px,
      transparent 12px,
      transparent 24px),
    linear-gradient(180deg, var(--gray-850), var(--gray-900));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.placeholder-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--gray-500);
  text-transform: uppercase;
}
.placeholder-body {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.55;
  max-width: 32ch;
}
.placeholder-corner {
  width: 14px;
  height: 14px;
  border: 1px solid var(--gray-600);
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: var(--yellow-muted);
  border: 1px solid rgba(235,187,30,.25);
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
}

/* Floating spec card on hero */
.hero-spec {
  position: absolute;
  left: -32px;
  bottom: 48px;
  width: 240px;
  padding: 20px;
  background: rgba(15,15,15,.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 24px 80px -20px rgba(0,0,0,.7);
  animation: float 6s ease-in-out infinite alternate;
}
@keyframes float {
  to { transform: translateY(-12px); }
}
.hero-spec-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-spec-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-spec-text {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.45;
}

/* Hero ticker at bottom */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 0;
  overflow: hidden;
  background: var(--black);
}
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-300);
  letter-spacing: .02em;
}
.ticker-item .dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   NÚMEROS — 3 stat cards
   ============================================================ */
.numeros {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.numero-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.numero-card:last-child { border-right: none; }
.numero-valor {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -.02em;
  line-height: 1;
}
.numero-label {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 240px;
}

/* ============================================================
   AUTHORITY / STATS
   ============================================================ */
.authority {
  background: var(--gray-950);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}
.auth-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.auth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.auth-stat {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background var(--dur-base);
}
.auth-stat:last-child { border-right: none; }
.auth-stat:hover { background: var(--gray-900); }
.auth-stat-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.auth-stat-tag span {
  width: 24px; height: 1px;
  background: var(--yellow);
  display: inline-block;
}
.auth-stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: .95;
  margin-bottom: 18px;
}
.auth-stat-num .unit {
  font-size: .55em;
  color: var(--yellow);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: -.02em;
}
.auth-stat-label {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 30ch;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--black);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background var(--dur-base);
}
.service-card:hover { background: var(--gray-950); }

.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.service-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--yellow);
  background: var(--gray-900);
  transition: border-color var(--dur-base), background var(--dur-base), transform var(--dur-base) var(--ease-spring);
}
.service-card:hover .service-icon {
  border-color: var(--yellow);
  background: var(--yellow-muted);
  transform: rotate(-4deg) scale(1.04);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  margin-bottom: 16px;
  max-width: 18ch;
}
.service-card p {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 50ch;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.service-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: .04em;
  padding: 6px 12px;
  background: var(--gray-900);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 56px; height: 56px;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  transition: border-color var(--dur-base);
}
.service-card:hover::after {
  border-top-color: var(--yellow);
  border-right-color: var(--yellow);
}

/* ============================================================
   SETORES (tags)
   ============================================================ */
.setores {
  background: var(--gray-950);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.setores-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.setor-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--gray-700);
  padding: 14px 22px;
  border-radius: 999px;
  transition: all var(--dur-base) var(--ease-out);
  cursor: default;
}
.setor-chip:hover {
  border-color: var(--yellow);
  background: var(--yellow-muted);
  color: var(--yellow);
  transform: translateY(-2px);
}
.setor-chip .marker {
  width: 6px;
  height: 6px;
  background: var(--gray-500);
  border-radius: 50%;
  transition: background var(--dur-base);
}
.setor-chip:hover .marker { background: var(--yellow); }

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.diff {
  background: var(--black);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.diff-card {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
  transition: background var(--dur-base);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.diff-card:hover { background: var(--gray-950); }
.diff-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--yellow);
  margin-bottom: 32px;
}
.diff-card h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  max-width: 22ch;
  margin-top: auto;
}
.diff-card-arrow {
  position: absolute;
  top: 32px; right: 32px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  display: grid;
  place-items: center;
  color: var(--gray-500);
  transition: all var(--dur-base) var(--ease-out);
}
.diff-card:hover .diff-card-arrow {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: rotate(-45deg);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--gray-950);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.02em;
  max-width: 28ch;
  text-wrap: balance;
  line-height: 1.2;
}

/* ============================================================
   COMPARATIVE
   ============================================================ */
.compare {
  background: var(--black);
}
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  background: var(--gray-950);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 40px;
}
.compare-head {
  padding: 28px 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.compare-head.bad {
  background: var(--gray-900);
  color: var(--gray-400);
  border-right: 1px solid var(--border);
}
.compare-head.good {
  background: var(--black);
  color: var(--white);
}
.compare-head .pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.compare-head.bad .pill { background: rgba(220,80,60,.12); color: #d65a4a; }
.compare-head.good .pill { background: var(--yellow); color: var(--black); }

.compare-row {
  display: contents;
}
.compare-cell {
  padding: 24px 32px;
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
/* Loop animation states */
.compare-table.seq-anim .compare-cell {
  opacity: 0;
  transform: translateY(10px);
}
.compare-table.seq-anim .compare-cell.seq-in {
  opacity: 1;
  transform: translateY(0);
}
.compare-cell:nth-child(odd) {
  background: var(--gray-900);
  color: var(--gray-400);
  border-right: 1px solid var(--border);
}
.compare-cell:nth-child(even) {
  background: var(--black);
  color: var(--text);
}
.compare-cell .ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
}
.compare-cell:nth-child(odd) .ico {
  background: rgba(220,80,60,.15);
  color: #d65a4a;
}
.compare-cell:nth-child(even) .ico {
  background: var(--yellow);
  color: var(--black);
}
.compare-row:last-child .compare-cell { border-bottom: none; }

/* ============================================================
   CASE (BB)
   ============================================================ */
.case {
  background: var(--gray-950);
  position: relative;
  overflow: hidden;
}
.case::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, var(--yellow-glow) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.case-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.case-content { display: grid; gap: 24px; align-content: start; }
.case-content h2 { max-width: 18ch; }
.case-content p {
  color: var(--text-soft);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 52ch;
}
.case-meta {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
}
.case-meta-item { display: grid; gap: 4px; }
.case-meta-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.case-meta-value {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
}
.case-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 8px 14px;
  background: var(--yellow-muted);
  border: 1px solid rgba(235,187,30,.3);
  border-radius: 999px;
  margin-top: 8px;
  width: max-content;
}
.case-status .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  position: relative;
}
.case-status .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--yellow);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.case-frame {
  position: relative;
  aspect-ratio: 5/6;
}
.case-image {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: var(--gray-900);
  border: 1px solid var(--border);
  position: relative;
}
.case-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(0,0,0,.85) 100%
  );
  pointer-events: none;
}
.case-overlay {
  position: absolute;
  left: -32px;
  bottom: -32px;
  width: 240px;
  padding: 24px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.case-overlay .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.case-overlay .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.1;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
/* ============================================================
   PORTFÓLIO — galeria real por projeto
   ============================================================ */
.portfolio { background: var(--black); padding-bottom: 64px; }

/* ── Artigo de projeto ───────────────────────────────────── */
.projeto {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.projeto:first-of-type { margin-top: 56px; }

/* ── Header do projeto ───────────────────────────────────── */
.projeto-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.projeto-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.projeto-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: .08em;
}
.projeto-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(235,187,30,.08);
  border: 1px solid rgba(235,187,30,.2);
  border-radius: 4px;
  padding: 4px 10px;
}
.projeto-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.02em;
  margin: 0;
}
.projeto-meta-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: .04em;
  flex-shrink: 0;
  white-space: nowrap;
}
.projeto-meta-sep { color: var(--border); }

/* ── Grade de 6 fotos ────────────────────────────────────── */
.projeto-galeria {
  display: grid;
  grid-template-columns: 55fr 25fr 20fr;
  grid-template-rows: 248px 248px;
  gap: 3px;
  border-radius: 8px;
  overflow: hidden;
}

/* posicionamento das células */
.pg-1 { grid-column: 1; grid-row: 1 / 3; } /* hero tall  */
.pg-2 { grid-column: 2; grid-row: 1; }
.pg-3 { grid-column: 3; grid-row: 1; }
.pg-4 { grid-column: 2; grid-row: 2; }
.pg-5 { grid-column: 3; grid-row: 2; }

/* célula base */
.pg {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
}
.pg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease-out);
}
.pg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
  pointer-events: none;
}
.pg:hover img { transform: scale(1.06); }
.pg:hover::after { background: rgba(0,0,0,.12); }

/* ============================================================
   PROCESSO (método)
   ============================================================ */
.metodo {
  background: var(--gray-950);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metodo-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.metodo-rail::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--border);
}
.metodo-step {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Sequential animation states */
.metodo-rail.seq-anim .metodo-step {
  opacity: 0;
  transform: translateY(18px);
}
.metodo-rail.seq-anim .metodo-step.seq-in {
  opacity: 1;
  transform: translateY(0);
}
.metodo-rail.seq-anim .metodo-step.seq-in .metodo-step-num {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

/* Yellow progress line overlay */
.metodo-rail::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  height: 1px;
  width: 0;
  background: var(--yellow);
  transition: width 1.1s ease;
  z-index: 0;
}
.metodo-rail[data-progress="1"]::after { width: 0px; }
.metodo-rail[data-progress="2"]::after { width: calc((100% - 56px) / 3); }
.metodo-rail[data-progress="3"]::after { width: calc((100% - 56px) * 2 / 3); }
.metodo-rail[data-progress="4"]::after { width: calc(100% - 56px); }
.metodo-step-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -.01em;
  transition: border-color var(--dur-base), background var(--dur-base);
}
.metodo-step:hover .metodo-step-num {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}
.metodo-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.metodo-step p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 32ch;
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { background: var(--black); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-text { display: grid; gap: 20px; }
.sobre-text p {
  font-size: 16.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

.partners {
  display: grid;
  gap: 16px;
}
.partner-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--gray-950);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color var(--dur-base), opacity 0.45s ease, transform 0.45s ease;
  opacity: 0;
  transform: translateY(14px);
}
.partner-card.pc-in {
  opacity: 1;
  transform: translateY(0);
}
.partner-card:hover { border-color: var(--gray-600); }

/* Typing cursor */
.typing-cursor::after {
  content: '|';
  color: var(--yellow);
  font-weight: 300;
  margin-left: 1px;
  animation: blink-cursor 0.55s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.partner-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gray-800);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--yellow);
  flex-shrink: 0;
}
.partner-info { flex: 1; }
.partner-name {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.partner-role {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--yellow);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--gray-950); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list { max-width: none; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-fast);
}
.faq-item:hover { background: var(--gray-900); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.35;
}
.faq-q:hover { color: var(--yellow); }
.faq-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: all var(--dur-base);
}
.faq-toggle .x, .faq-toggle .y {
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-toggle .x { width: 12px; height: 1.5px; }
.faq-toggle .y { width: 1.5px; height: 12px; transition: transform var(--dur-base); }
.faq-item.open .faq-toggle {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.faq-item.open .faq-toggle .y { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, var(--yellow-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 24px;
}
.cta-final h2 {
  max-width: 28ch;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -.035em;
}
.cta-final p {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  max-width: 72ch;
  line-height: 1.6;
}
.cta-final .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

.cta-monogram {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: .035;
  pointer-events: none;
}
.cta-monogram svg {
  width: 80%;
  max-width: 1100px;
  height: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-bottom: 48px;
}
.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.footer-links-row a {
  font-size: 13.5px;
  color: var(--text-soft);
  transition: color var(--dur-fast);
  white-space: nowrap;
}
.footer-links-row a:hover { color: var(--yellow); }

/* Prevent grid cells from overflowing their fraction */
.footer-main > * { min-width: 0; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: .02em;
}

/* ============================================================
   MODAIS — FORMULÁRIOS + POLÍTICA DE PRIVACIDADE
   ============================================================ */
.fv-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.fv-overlay.open { opacity: 1; pointer-events: all; }

.fv-modal {
  background: #111110;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  width: 100%; max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(28px);
  transition: transform 0.4s var(--ease-out);
}
.fv-overlay.open .fv-modal { transform: translateY(0); }

.fv-modal--wide { max-width: 660px; }

.fv-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 28px 28px 0; gap: 16px;
}
.fv-modal-header h2 {
  font-size: 19px; font-weight: 600;
  color: var(--text-primary); line-height: 1.25;
}
.fv-modal-header p { font-size: 13px; color: var(--text-muted); margin-top: 5px; }

.fv-modal-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px; cursor: pointer;
  font-size: 18px; color: var(--text-soft);
  padding: 2px 9px; line-height: 1.4; flex-shrink: 0;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.fv-modal-close:hover { border-color: rgba(255,255,255,0.28); color: #fff; }

.fv-form {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
}

.fv-group { display: flex; flex-direction: column; gap: 7px; }
.fv-group label {
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-muted); font-family: var(--font-mono);
}
.fv-group input,
.fv-group select {
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--dur-fast);
}
.fv-group input::placeholder { color: var(--text-muted); }
.fv-group input:focus,
.fv-group select:focus { outline: none; border-color: var(--yellow); }
.fv-group select option { background: #1a1a1a; color: var(--text-primary); }

.fv-file-label {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 6px; cursor: pointer;
  font-size: 13px; color: var(--text-muted);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.fv-file-label:hover { border-color: var(--yellow); color: var(--text-soft); }
.fv-file-name { font-size: 12px; color: var(--text-muted); }
.fv-group input[type="file"] { display: none; }

.fv-submit {
  padding: 13px;
  background: var(--yellow); color: #080808;
  border: none; border-radius: 6px;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: .02em; cursor: pointer;
  transition: opacity var(--dur-fast); margin-top: 4px;
}
.fv-submit:hover { opacity: .88; }
.fv-submit:disabled { opacity: .45; cursor: not-allowed; }

.fv-feedback {
  padding: 12px 14px; border-radius: 6px;
  font-size: 13px; display: none;
}
.fv-feedback.success {
  background: rgba(52,199,89,.08);
  border: 1px solid rgba(52,199,89,.25);
  color: #4ade80;
}
.fv-feedback.error {
  background: rgba(255,59,48,.08);
  border: 1px solid rgba(255,59,48,.25);
  color: #f87171;
}

/* Privacy policy body */
.fv-policy-body {
  padding: 24px 28px 28px;
  font-size: 13.5px; line-height: 1.75;
  color: var(--text-soft);
}
.fv-policy-body h3 {
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--yellow); font-family: var(--font-mono);
  margin: 24px 0 8px;
}
.fv-policy-body h3:first-child { margin-top: 0; }
.fv-policy-body p,
.fv-policy-body ul { margin-bottom: 12px; }
.fv-policy-body ul { padding-left: 18px; }
.fv-policy-body strong { color: var(--text-primary); }
.fv-policy-body a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(130%);
  z-index: 8000;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px 22px;
  max-width: 520px; width: calc(100% - 40px);
  display: flex; align-items: center; gap: 18px;
  transition: transform 0.45s var(--ease-out);
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); }

.cookie-text {
  font-size: 13px; color: var(--text-soft);
  line-height: 1.5; flex: 1;
}
.cookie-text a {
  color: var(--yellow);
  text-decoration: underline; text-underline-offset: 2px;
  cursor: pointer;
}
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-btn {
  padding: 9px 18px; border-radius: 6px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  cursor: pointer; border: none;
  transition: opacity var(--dur-fast), background var(--dur-fast);
}
.cookie-btn--accept { background: var(--yellow); color: #080808; }
.cookie-btn--accept:hover { opacity: .88; }
.cookie-btn--reject {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-soft);
}
.cookie-btn--reject:hover { background: rgba(255,255,255,0.11); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-side { max-width: 480px; }
  .auth-stats { grid-template-columns: repeat(3, 1fr); }
  .case-inner { grid-template-columns: 1fr; gap: 56px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .metodo-rail { grid-template-columns: repeat(2, 1fr); }
  .metodo-rail::before { display: none; }
  /* Footer colapsa para centrado em tablet/desktop estreito */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    justify-items: center;
  }
  .footer-main > div:last-child { display: none; }
  .footer-links-row { justify-content: center; gap: 14px 28px; }
  /* Portfolio gallery estreito */
  .projeto-galeria {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .pg-1 { grid-column: 1 / 3; grid-row: 1; }
  .pg-2 { grid-column: 1; grid-row: 2; }
  .pg-3 { grid-column: 2; grid-row: 2; }
  .pg-4 { grid-column: 1; grid-row: 3; }
  .pg-5 { grid-column: 2; grid-row: 3; }
}

@media (max-width: 760px) {
  section { padding: 96px 0; }
  .container { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .nav-links, .nav-phone { display: none; }
  .hero { padding: 130px 0 60px; min-height: auto; }
  .hero-spec { display: none; }
  .auth-header { grid-template-columns: 1fr; }
  .auth-stats { grid-template-columns: 1fr; }
  .auth-stat { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 40px 28px; }
  .diff-grid { grid-template-columns: 1fr; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-head.bad, .compare-cell:nth-child(odd) { border-right: none; }
  .projeto-header { grid-template-columns: 1fr; gap: 10px; }
  .projeto-meta-strip { display: none; }
  .projeto-galeria {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .pg-1 { grid-column: 1 / 3; grid-row: 1; }
  .pg-2 { grid-column: 1;     grid-row: 2; }
  .pg-3 { grid-column: 2;     grid-row: 2; }
  .pg-4 { grid-column: 1;     grid-row: 3; }
  .pg-5 { grid-column: 2;     grid-row: 3; }
  .case-overlay { left: 0; bottom: -24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  /* Nav */
  .nav-cta { display: none; }

  /* Números */
  .numeros-grid { grid-template-columns: 1fr; }
  .numero-card { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 24px; }
  .numero-card:last-child { border-bottom: none; }

  /* Footer mobile */
  .footer { padding: 56px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }

  /* Cookie + modals */
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .fv-modal-header { padding: 22px 20px 0; }
  .fv-form { padding: 20px 20px 24px; }
  .fv-policy-body { padding: 20px 20px 24px; }
}

/* ============================================================
   SEÇÕES CLARAS — fundo #f4f4f4, texto escuro, destaques amarelos
   Seções: services · setores · metodo · sobre · faq
   Ritmo: DARK×3 → LIGHT×2 → DARK×3 → LIGHT×1 → DARK×1 → LIGHT×2 → DARK×2
   ============================================================ */

/* ── VARIÁVEIS REUTILIZÁVEIS (light context) ── */
/* text-dark : #080808  |  text-muted : rgba(8,8,8,.55) */
/* border-lt  : rgba(0,0,0,.1)                           */

/* ── 1. SERVICES ─────────────────────────────────────── */
.services {
  background: #f4f4f4;
}
.services h2 {
  color: #080808;
}
.services .lead {
  color: rgba(8,8,8,.6);
}
.services-grid {
  background: rgba(0,0,0,.09);
  border-color: rgba(0,0,0,.09);
}
.service-card {
  background: #ffffff;
}
.service-card:hover {
  background: #ebebeb;
}
.service-card h3 {
  color: #080808;
}
.service-card p {
  color: rgba(8,8,8,.6);
}
.service-icon {
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.12);
}
.service-card:hover .service-icon {
  background: rgba(235,187,30,.18);
  border-color: var(--yellow);
}
.service-tag {
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.10);
  color: rgba(8,8,8,.5);
}
.service-card::after {
  border-color: transparent;
}

/* ── 2. SETORES ──────────────────────────────────────── */
.setores {
  background: #f4f4f4;
  border-color: rgba(0,0,0,.1);
}
.setores h2 {
  color: #080808;
}
.setores .lead {
  color: rgba(8,8,8,.6);
}
.setores-header {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  max-width: none;
  gap: 64px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .setores-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.setor-chip {
  color: #080808;
  border-color: rgba(0,0,0,.18);
  background: transparent;
}
.setor-chip:hover {
  background: rgba(235,187,30,.18);
  border-color: var(--yellow);
  color: #080808;
}
.setor-chip .marker {
  background: rgba(8,8,8,.3);
}
.setor-chip:hover .marker {
  background: var(--yellow);
}

/* ── 3. METODO ───────────────────────────────────────── */
.metodo {
  background: #f4f4f4;
  border-color: rgba(0,0,0,.1);
}
.metodo h2 {
  color: #080808;
}
.metodo .lead {
  color: rgba(8,8,8,.6);
}
.metodo-rail::before {
  background: rgba(0,0,0,.14);
}
.metodo-step-num {
  background: #f4f4f4;
  border-color: rgba(0,0,0,.2);
  color: #080808;
}
.metodo-step:hover .metodo-step-num {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #080808;
}
.metodo-rail.seq-anim .metodo-step.seq-in .metodo-step-num {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #080808;
}
.metodo-step h3 {
  color: #080808;
}
.metodo-step p {
  color: rgba(8,8,8,.6);
}

/* ── 4. SOBRE ────────────────────────────────────────── */
.sobre {
  background: #f4f4f4;
}
.sobre h2 {
  color: #080808;
}
.sobre-text p {
  color: rgba(8,8,8,.62);
}
.partner-card {
  background: #ffffff;
  border-color: rgba(0,0,0,.1);
}
.partner-card:hover {
  border-color: rgba(235,187,30,.55);
}
.partner-avatar {
  background: rgba(0,0,0,.07);
  border-color: rgba(0,0,0,.1);
}
.partner-name {
  color: #080808;
}
.partner-role {
  color: rgba(8,8,8,.55);
}

/* ── 5. FAQ ──────────────────────────────────────────── */
.faq {
  background: #f4f4f4;
  border-color: rgba(0,0,0,.1);
}
.faq h2 {
  color: #080808;
}
.faq-item {
  border-color: rgba(0,0,0,.1);
}
.faq-item:hover {
  background: rgba(0,0,0,.03);
}
.faq-q {
  color: #080808;
}
.faq-q:hover {
  color: var(--yellow);
}
.faq-toggle {
  border-color: rgba(0,0,0,.18);
  color: #080808;
}
.faq-toggle .x,
.faq-toggle .y {
  background: #080808;
}
.faq-item.open .faq-toggle {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #080808;
}
.faq-item.open .faq-toggle .x,
.faq-item.open .faq-toggle .y {
  background: #080808;
}
.faq-a-inner {
  color: rgba(8,8,8,.62);
}
