/*!
 * MADMIX — style.css
 * Version : 2.1.0
 * Updated : 2026-08-15
 * Limpeza: normalização de fontes, paleta, escalas tipográficas,
 *           remoção de valores hardcoded, consolidação de breakpoints.
 */

/* ═══════════════════════════════════════════════
   TOKENS — DESIGN SYSTEM
   Fonte única da verdade para cores e tipografia.
   ═══════════════════════════════════════════════ */
:root {
  /* Cores */
  --black:      #090909;
  --white:      #f4f1eb;
  --gray:       #141414;
  --gray2:      #1c1c1c;
  --gray3:      #c8c4bc;
  --gray4:      #999490;
  --gray5:      #b0aca4;
  --border:     #252525;

  --red:        #b03a2e;
  --red2:       #d44c3e;
  --red-text:   #e8724a;

  --green:      #0f9e6e;
  --blue2:      #3b82f6;
  --amber:      #ba7517;
  --amber-text: #e8a94a;
  --purple:     #7f6fcc;

  /* Famílias tipográficas */
  --font-display: "Bebas Neue", sans-serif;   /* títulos, stats, numerais */
  --font-body:    "DM Sans", sans-serif;       /* corpo, UI, labels */
  --font-serif:   "Instrument Serif", serif;   /* citações, ênfase editorial */

  /* Escala tipográfica (body) — usada em toda lógica de font-size */
  --text-2xs: clamp(0.68rem, 0.68vw, 0.76rem);
  --text-xs:  clamp(0.76rem, 0.78vw, 0.86rem);
  --text-sm:  clamp(0.88rem, 0.92vw, 1.0rem);
  --text-md:  clamp(1.0rem, 1.05vw, 1.14rem);
  --text-lg:  clamp(1.12rem, 1.22vw, 1.34rem);
  --text-xl:  clamp(1.28rem, 1.45vw, 1.55rem);

  /* Escala tipográfica (display) */
  --display-sm:   clamp(1.2rem,  2vw,   1.8rem);
  --display-md:   clamp(1.8rem,  4.5vw, 4.0rem);
  --display-lg:   clamp(2.4rem,  5.5vw, 5.0rem);
  --display-hero: clamp(4.2rem,  8.8vw, 8.9rem);

  /* Espaçamento de seção */
  --section-pad-y: 6.5rem;
  --section-pad-x: 5vw;
}

/* ═══════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* offset para nav fixa: 108px desktop, 72px mobile */
section[id], [id="credenciais-topo"] { scroll-margin-top: 108px; }
@media (max-width: 900px) {
  section[id], [id="credenciais-topo"] { scroll-margin-top: 72px; }
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(232,114,74,0.08), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(15,158,110,0.055), transparent 30rem),
    var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--red-text);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(232,114,74,0.22);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}


/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 160;
  padding: 0 var(--section-pad-x); height: 108px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 9, 0.96);
  backdrop-filter: blur(18px);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; padding: 10px 0; }
.nav-logo img { height: 64px; width: auto; display: block; object-fit: contain; }

.nav-links {
  display: flex; flex-direction: row; align-items: center;
  justify-content: center; gap: 1.15rem; flex: 1; padding: 0 1rem;
}
.nav-links a {
  font-size: var(--text-xs);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(244,241,235,0.82); transition: color .18s;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--red-text);
  transform: scaleX(0); transition: transform .22s;
}
.nav-links a:hover, .nav-links a.active, .nav-links a.nav-active { color: var(--white); }
.nav-links a.active::after, .nav-links a.nav-active::after { transform: scaleX(1); }

/* especificidade via qualificador — sem !important */
nav .nav-cta {
  background: var(--red); color: var(--white);
  padding: 0.7rem 1.2rem; font-size: var(--text-xs);
  letter-spacing: 0.08em; transition: background .18s;
  white-space: nowrap; flex-shrink: 0;
}
nav .nav-cta:hover { background: var(--red2); }
nav .nav-cta::after { display: none; }

.lang-selector {
  display: flex; align-items: center; gap: 0.5rem;
  margin-left: 1.5rem; margin-right: 1.5rem;
  padding-right: 1.5rem; border-right: 1px solid var(--border); flex-shrink: 0;
}
.lang-selector a {
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(244,241,235,0.78); transition: color .18s; padding: 2px 0;
}
.lang-selector a:hover { color: var(--white); }
.lang-selector a.active { color: var(--white); border-bottom: 1px solid var(--red-text); }
.lang-sep { font-size: 0.55rem; color: var(--gray4); }


/* ═══════════════════════════════════════════════
   HAMBURGER / MOBILE NAV
   ═══════════════════════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  padding: 8px; background: none; border: none; z-index: 200;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.28s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0;
  width: 55%; max-width: 280px; height: 100vh;
  background: rgba(9, 9, 9, 0.60);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(18px);
  border-right: 1px solid var(--border);
  z-index: 150; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 0; padding: 2rem 2.2rem;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  will-change: transform;
}
.mobile-nav.open { display: flex; transform: translateX(0); }
.mobile-nav a {
  font-size: 1.3rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); font-family: var(--font-display); transition: color 0.18s;
  padding: 0.75rem 0; width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a:hover { color: var(--red-text); }
.mobile-nav .mobile-cta {
  background: var(--red); color: var(--white) !important;
  padding: 0.75rem 1.5rem; font-size: var(--text-sm);
  margin-top: 1.5rem; text-align: center; border-bottom: none !important;
}
.mobile-nav .mobile-cta:hover { background: var(--red2); }

.mobile-nav-overlay {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.35); z-index: 140;
}
.mobile-nav-overlay.open { display: block; }

.mobile-lang {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; width: 100%; padding-bottom: 1.5rem; margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-lang a {
  font-size: var(--text-xs) !important; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray3) !important; font-family: var(--font-body) !important;
  font-weight: 400; padding: 0 !important; border-bottom: none !important;
  width: auto !important; transition: color 0.18s;
}
.mobile-lang a.active { color: var(--white) !important; border-bottom: 1px solid var(--red-text) !important; }
.mobile-lang a:hover { color: var(--white) !important; }
.mobile-lang .lang-sep { font-size: 0.55rem; color: var(--gray4); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links, .lang-selector, .nav-cta { display: none !important; }
  nav#main-nav { height: 72px; padding: 0 4vw; justify-content: space-between; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .nav-logo img { height: 44px; }
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  padding: 8.6rem var(--section-pad-x) 5.2rem;
  position: relative; overflow: hidden; contain: layout style;
  background:
    radial-gradient(circle at 74% 18%, rgba(232,114,74,0.16), transparent 24rem),
    radial-gradient(circle at 8% 70%, rgba(255,74,28,0.08), transparent 28rem),
    linear-gradient(135deg, rgba(255,255,255,0.03), transparent 46%);
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 82%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: 2.6rem; align-items: center; max-width: 1120px; width: 100%;
  position: relative; z-index: 1;
  margin: 0 auto;
}

.hero-tag {
  font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red-text); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-tag::before { content: ""; display: block; width: 28px; height: 1px; background: var(--red-text); }

.hero-slogan {
  font-size: var(--text-sm); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray3); margin-bottom: 1.35rem; font-weight: 400;
}
.hero-slogan strong { color: var(--white); font-weight: 500; }

h1.hero-h1 {
  font-family: var(--font-display);
  font-size: var(--display-hero);
  line-height: 0.88; letter-spacing: 0.015em; margin-bottom: 2.2rem;
  max-width: 780px;
}
h1.hero-h1 em {
  font-style: normal;
  color: var(--red-text);
  text-shadow: 0 0 34px rgba(232,114,74,0.22);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--gray3); font-weight: 300;
  max-width: 680px; line-height: 1.7; margin-bottom: 2rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin: 0 0 2.2rem;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.09);
}
.hero-proof-item {
  padding: 1rem 1.1rem;
  background: rgba(9,9,9,0.72);
}
.hero-proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.hero-proof-item span {
  display: block;
  color: var(--gray4);
  font-size: var(--text-xs);
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--red); color: var(--white);
  padding: 1.05rem 2.2rem; font-size: var(--text-sm);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  transition: background .18s;
}
.btn-primary:hover { background: var(--red2); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); color: var(--gray3);
  padding: 1.05rem 1.9rem; font-size: var(--text-sm);
  letter-spacing: 0.1em; text-transform: uppercase; transition: all .18s;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.3); color: var(--white); }
.btn-ghost .arrow { transition: transform .2s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.hero-creds {
  font-size: var(--text-2xs); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray4); margin-top: 1.8rem; margin-bottom: 0;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2.8rem; border-top: 1px solid var(--border);
}
.stat-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--white); line-height: 1; }
.stat-label { font-size: var(--text-2xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray5); margin-top: 0.3rem; line-height: 1.4; }

/* Hero side panel */
.hero-side { border: 1px solid var(--border); padding: 1.5rem 1.5rem 2rem; position: relative; }
.hero-side::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue2), var(--red));
}
.hero-side--image {
  padding: 1rem 1rem 1.2rem;
  background:
    radial-gradient(circle at 50% 8%, rgba(232,114,74,0.1), transparent 34%),
    rgba(255,255,255,0.015);
  box-shadow: 0 24px 80px rgba(0,0,0,0.42);
}
.hero-side--image {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
  gap: 1rem 1.4rem;
  align-items: stretch;
}
.hero-ecosystem-art {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #050505;
  grid-column: 2;
  grid-row: 2 / span 4;
}
.hero-ecosystem-art img {
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
}
.hero-side--image {
  max-width: 1120px;
}
.side-label {
  font-size: var(--text-2xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray5);
  margin-bottom: 0.2rem;
  grid-column: 1 / -1;
}
.pillar-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.pillar-item:last-child { border-bottom: none; }
.pillar-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.pillar-dot.green { background: var(--green); }
.pillar-dot.blue  { background: var(--blue2); }
.pillar-dot.red   { background: var(--red2); }
.pillar-name { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.06em; }
.pillar-sub  { font-size: var(--text-sm); color: var(--gray3); margin-top: 0.15rem; font-weight: 300; }

.role-avatar-link {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.78;
  transition: border-color .18s, opacity .18s, transform .18s;
}
.role-avatar-link:hover {
  border-color: var(--red-text);
  opacity: 1;
  transform: translateY(-1px);
}
.role-avatar-link picture,
.qs-mini-photo picture {
  width: 100%;
  height: 100%;
}
.role-avatar-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.top-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* ═══════════════════════════════════════════════
   MAPA DA OPERAÇÃO
   ═══════════════════════════════════════════════ */
#mapa-operacao {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0)),
    var(--black);
  border-bottom: 1px solid var(--border);
}
.ops-shell {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: 4rem;
  align-items: center;
}
.ops-lead {
  color: var(--gray3);
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
}
.ops-board {
  min-height: 560px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.055), transparent 11rem),
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    #0b0b0b;
  background-size: auto, 44px 44px, 44px 44px, auto;
  overflow: hidden;
}
.ops-board::before,
.ops-board::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.16);
  z-index: 0;
}
.ops-board::before {
  left: 50%;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
}
.ops-board::after {
  top: 50%;
  left: 2rem;
  right: 2rem;
  height: 1px;
}
.ops-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background:
    radial-gradient(circle, #161616 0 58%, #090909 59% 100%);
  box-shadow: 0 0 0 10px rgba(232,114,74,0.08), 0 0 0 19px rgba(15,158,110,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}
.ops-center span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
.ops-center small {
  color: var(--gray4);
  font-size: var(--text-2xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.ops-card {
  position: relative;
  z-index: 1;
  min-height: 200px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(9,9,9,0.78);
}
.ops-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid currentColor;
  opacity: 0.78;
  pointer-events: none;
}
.ops-card--red { color: var(--red-text); }
.ops-card--green { color: var(--green); }
.ops-card--blue { color: var(--blue2); }
.ops-card--cyan { color: #25c7d9; }
.ops-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  opacity: 0.16;
}
.ops-card h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}
.ops-card p {
  color: var(--gray3);
  font-size: var(--text-sm);
  line-height: 1.55;
  font-weight: 300;
}
.ops-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: -1rem;
}
.ops-flow div {
  background: var(--gray);
  padding: 1rem 1.1rem;
  position: relative;
}
.ops-flow div:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.55rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red-text);
  z-index: 2;
}
.ops-flow strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.ops-flow span {
  display: block;
  color: var(--gray4);
  font-size: var(--text-2xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.hero-line {
  position: absolute; left: 0; bottom: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red-text) 40%, transparent 100%);
}

/* Scroll cue — chevron animado abaixo do hero (v2.3.0) */
.hero-scroll-cue {
  display: flex;
  justify-content: center;
  padding: 16px 0 24px;
  color: rgba(255,255,255,0.25);
  animation: scrollCueBounce 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scrollCueBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.25; }
  50%       { transform: translateY(6px); opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; }
}


/* ═══════════════════════════════════════════════
   SEÇÕES — BASE
   ═══════════════════════════════════════════════ */
section { padding: var(--section-pad-y) var(--section-pad-x); }

.section-tag {
  font-size: var(--text-2xs); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red-text); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.section-tag::before { content: ""; display: block; width: 20px; height: 1px; background: var(--red-text); }

h2.section-h2 {
  font-family: var(--font-display);
  font-size: var(--display-md);
  line-height: 1; letter-spacing: 0.015em;
  margin-bottom: 1rem; max-width: 720px;
}


/* ═══════════════════════════════════════════════
   MERCADO
   ═══════════════════════════════════════════════ */
#mercado {
  background:
    linear-gradient(135deg, rgba(232,114,74,0.04), transparent 34%),
    var(--gray);
}
.mercado-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 4rem; align-items: start; }
.mercado-text p { color: var(--gray3); line-height: 1.85; font-weight: 300; font-size: var(--text-md); margin-bottom: 1.2rem; }
.mercado-text strong { color: var(--white); font-weight: 500; }
.mercado-facts { display: flex; flex-direction: column; gap: 1.2rem; }

.fact-card { border: 1px solid var(--border); padding: 1.6rem; position: relative; overflow: hidden; background: rgba(9,9,9,0.48); }
.fact-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red-text); }
.fact-card::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1.1rem;
  width: 72px;
  height: 28px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 5px, transparent 5px 10px);
  opacity: 0.45;
}
.fact-num  { font-family: var(--font-display); font-size: 2.8rem; color: var(--white); line-height: 1; }
.fact-text { font-size: var(--text-sm); color: var(--gray3); margin-top: 0.4rem; line-height: 1.55; }
.fact-source {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: var(--text-2xs);
  color: var(--gray4);
  line-height: 1.45;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fact-source:hover { color: var(--red-text); }


/* ═══════════════════════════════════════════════
   SERVIÇOS
   ═══════════════════════════════════════════════ */
.servicos-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; }
.servicos-intro-text { color: var(--gray3); line-height: 1.85; font-weight: 300; font-size: var(--text-md); }

.pillar-group { margin-bottom: 4rem; }
.pillar-group:last-child { margin-bottom: 0; }

.pillar-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border);
}
.pillar-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--text-2xs); letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.4rem 1rem; font-weight: 500;
}
.pillar-badge.green  { color: var(--green); border: 1px solid rgba(15,158,110,0.3); background: rgba(15,158,110,0.06); }
.pillar-badge.blue   { color: var(--blue2); border: 1px solid rgba(59,130,246,0.3); background: rgba(59,130,246,0.06); }
.pillar-badge.red    { color: var(--red2);  border: 1px solid rgba(212,76,62,0.3);  background: rgba(212,76,62,0.06); }
.pillar-badge-dot    { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.pillar-badge.green .pillar-badge-dot { background: var(--green); }
.pillar-badge.blue  .pillar-badge-dot { background: var(--blue2); }
.pillar-badge.red   .pillar-badge-dot { background: var(--red2); }
.pillar-badge-label  { color: var(--gray3); font-size: var(--text-xs); letter-spacing: 0.08em; font-weight: 300; }

.servicos-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); counter-reset: servico; }
.servicos-cards.two { grid-template-columns: repeat(2, 1fr); }

.servico-card { background: var(--black); padding: 2rem; transition: background .18s, transform .18s; position: relative; overflow: hidden; counter-increment: servico; min-height: 250px; }
.servico-card::before {
  content: "0" counter(servico);
  position: absolute;
  right: 1.4rem;
  top: 1.1rem;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(255,255,255,0.055);
}
.servico-card::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0.35;
}
.servico-card:hover { transform: translateY(-2px); }
.pillar-group:nth-child(1) .servico-card:hover { background: rgba(15,158,110,0.04); }
.pillar-group:nth-child(2) .servico-card:hover { background: rgba(59,130,246,0.04); }
.pillar-group:nth-child(3) .servico-card:hover { background: rgba(212,76,62,0.04); }

.servico-title  { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.04em; margin-bottom: 0.7rem; color: var(--white); padding-right: 3.4rem; }
.servico-desc   { font-size: var(--text-sm); color: var(--gray3); line-height: 1.72; font-weight: 300; }
.servico-result {
  font-size: var(--text-sm); font-weight: 500; color: var(--white);
  margin-bottom: 0.6rem; line-height: 1.5; font-style: italic;
  font-family: var(--font-serif);
}


/* ═══════════════════════════════════════════════
   FRAMEWORK ARC
   ═══════════════════════════════════════════════ */
#arc { background: var(--black); }
.arc-inner { max-width: 1400px; margin: 0 auto; overflow-x: hidden; }
.arc-header { margin-bottom: 4rem; max-width: 740px; }
.arc-intro { font-size: var(--text-md); color: var(--gray3); font-weight: 300; line-height: 1.85; margin-top: 1rem; }

.arc-stages {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch; background: var(--border); gap: 1px; margin-bottom: 0;
}
.arc-stage {
  background: var(--gray); padding: 2.5rem 2rem;
  transition: background .18s, transform .18s; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.arc-stage::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.2rem auto;
  width: 96px;
  height: 44px;
  background:
    linear-gradient(90deg, currentColor 2px, transparent 2px) 0 0 / 16px 100%,
    linear-gradient(currentColor 2px, transparent 2px) 0 100% / 100% 12px;
  opacity: 0.08;
}
.arc-tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 0.4rem; }

.arc-stage:hover          { background: rgba(255,255,255,0.025); transform: translateY(-2px); }
.arc-stage--amber         { background: var(--gray2); }
.arc-stage--amber:hover   { background: rgba(186,117,23,0.05); }
.arc-stage--green:hover   { background: rgba(15,158,110,0.05); }

.arc-stage-num { font-family: var(--font-display); font-size: 3.5rem; color: var(--border); line-height: 1; margin-bottom: 1rem; }
.arc-stage-num--amber { color: rgba(186,117,23,0.22); }
.arc-stage-num--green { color: rgba(15,158,110,0.22); }

.arc-stage-label {
  font-size: var(--text-2xs); letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; color: var(--red-text); margin-bottom: 0.6rem; display: block;
}
.arc-label--amber { color: var(--amber-text); }
.arc-label--green { color: var(--green); }

.arc-stage-title  { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.04em; color: var(--white); line-height: 1.1; margin-bottom: 0.8rem; }
.arc-stage-desc   { font-size: var(--text-md); color: var(--gray3); line-height: 1.75; font-weight: 300; margin-bottom: 1.2rem; }
.arc-stage-desc strong { color: var(--white); font-weight: 500; }

.arc-tag { font-size: var(--text-2xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-text); border: 1px solid rgba(232,93,36,0.3); padding: 0.2rem 0.65rem; }
.arc-tag--amber { color: var(--amber-text); border-color: rgba(186,117,23,0.35); }
.arc-tag--green { color: var(--green);      border-color: rgba(15,158,110,0.35); }

.arc-connector { display: flex; align-items: center; justify-content: center; background: var(--black); padding: 0 0.8rem; font-size: 1.4rem; color: var(--border); user-select: none; }

.arc-cta-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; padding: 2rem;
  border: 1px solid var(--border); border-top: none;
  background: var(--gray); overflow: hidden;
}
.arc-cta-text { font-size: var(--text-md); color: var(--gray3); font-weight: 300; line-height: 1.7; max-width: 560px; flex: 1; }


/* ═══════════════════════════════════════════════
   PARA QUEM
   ═══════════════════════════════════════════════ */
#paraquem { background: var(--gray); }

.paraquem-intro { font-size: var(--text-md); color: var(--gray3); font-weight: 300; line-height: 1.85; max-width: 680px; margin-top: 1rem; margin-bottom: 4rem; }

.paraquem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.paraquem-card {
  background: var(--black); padding: 2.5rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  border: 1px solid var(--border); position: relative; transition: background .18s, transform .18s;
  overflow: hidden;
}
.paraquem-card:hover { background: rgba(255,255,255,0.02); transform: translateY(-2px); }
.paraquem-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.paraquem-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.08;
}
.paraquem-card--red::before    { background: var(--red-text); }
.paraquem-card--amber::before  { background: var(--amber); }
.paraquem-card--blue::before   { background: var(--blue2); }
.paraquem-card--purple::before { background: var(--purple); }

.paraquem-dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 8px; flex-shrink: 0; box-shadow: 0 0 8px rgba(255,255,255,0.15); }
.paraquem-content { flex: 1; }

.paraquem-persona-tag { font-size: var(--text-2xs); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.4rem; display: block; }
.paraquem-title { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.04em; color: var(--white); margin-bottom: 0.7rem; }
.paraquem-dor   { font-family: var(--font-serif); font-style: italic; font-size: var(--text-sm); color: var(--gray3); line-height: 1.65; margin-bottom: 1rem; }

.paraquem-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.4rem; }
.paraquem-list li { font-size: var(--text-sm); color: var(--gray3); font-weight: 300; line-height: 1.5; padding-left: 1rem; position: relative; }
.paraquem-list li::before { content: "—"; position: absolute; left: 0; color: var(--red-text); font-size: var(--text-xs); }

.paraquem-cta { display: inline-flex; align-items: center; font-size: var(--text-2xs); letter-spacing: 0.1em; text-transform: uppercase; padding-bottom: 2px; transition: all .18s; border-bottom: 1px solid; }
.paraquem-cta--red    { color: var(--red-text);   border-color: rgba(232,93,36,0.35); }
.paraquem-cta--amber  { color: var(--amber-text);  border-color: rgba(186,117,23,0.35); }
.paraquem-cta--blue   { color: var(--blue2);        border-color: rgba(59,130,246,0.35); }
.paraquem-cta--purple { color: var(--purple);       border-color: rgba(127,111,204,0.35); }
.paraquem-cta:hover   { color: var(--white);        border-color: rgba(255,255,255,0.3); }


/* ═══════════════════════════════════════════════
   QUEM SOMOS
   ═══════════════════════════════════════════════ */
#quemsomos { background: var(--gray); overflow: hidden; }
.qs-header { margin-bottom: 4rem; }
.qs-anchor { font-family: var(--font-display); font-size: var(--display-sm); color: var(--gray3); letter-spacing: 0.04em; margin-top: 0.8rem; }
.qs-anchor strong { color: var(--white); }

.qs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 540px; }
.qs-photo-side { position: relative; overflow: hidden; min-height: 480px; }
.qs-photo-side img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; filter: grayscale(15%) contrast(1.05); transition: transform .6s ease; }
.qs-photo-side:hover img { transform: scale(1.03); }
.qs-photo-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(9,9,9,0) 40%, rgba(9,9,9,0.78) 100%); }

.qs-photo-label { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; display: flex; justify-content: space-between; align-items: flex-end; }
.qs-names { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.06em; color: var(--white); line-height: 1.2; }
.qs-names span { display: block; font-size: var(--text-2xs); font-family: var(--font-body); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray3); font-weight: 300; margin-bottom: 0.3rem; }
.qs-rgb-tag { display: flex; gap: 5px; align-items: center; }
.qs-rgb-dot { width: 10px; height: 10px; border-radius: 50%; }

.qs-founders-side { border-left: 1px solid var(--border); display: flex; flex-direction: column; }
.qs-founder { flex: 1; padding: 2.2rem 2.5rem; position: relative; transition: background .2s; }
.qs-founder:hover { background: rgba(255,255,255,0.02); }
.qs-founder:not(:last-child) { border-bottom: 1px solid var(--border); }
.qs-founder-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.8rem; }
.qs-founder-name { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.03em; line-height: 1; }
.qs-founder-role { font-size: var(--text-2xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-text); margin-top: 0.3rem; }
.qs-years { font-family: var(--font-display); font-size: 2.2rem; color: var(--border); line-height: 1; text-align: right; }
.qs-years span { display: block; font-family: var(--font-body); font-size: var(--text-2xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray4); font-weight: 300; margin-top: 0.2rem; }
.qs-bio { font-size: var(--text-sm); color: var(--gray3); line-height: 1.75; font-weight: 300; margin-bottom: 0.9rem; }

.qs-profile-with-photo {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1rem;
  align-items: start;
}
.qs-mini-photo {
  width: 84px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--gray5);
  overflow: hidden;
}
.qs-mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.qs-creds { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.qs-cred-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--text-2xs); letter-spacing: 0.08em;
  color: var(--gray5); border: 1px solid var(--border);
  padding: 0.25rem 0.65rem; font-family: var(--font-body); transition: border-color .18s;
}
.qs-cred-tag::before { content: "●"; font-size: 0.4rem; color: var(--red-text); opacity: 0.8; }
.qs-founder:first-child .qs-cred-tag::before { color: var(--green); opacity: 0.9; }

.qs-linkedin { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray3); border: 1px solid var(--border); padding: 0.45rem 1rem; transition: all .18s; }
.qs-linkedin:hover { border-color: var(--blue2); color: var(--blue2); }
.qs-linkedin svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.qs-closing { margin-top: 4rem; padding: 3rem; background: var(--black); border: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.qs-closing-text { font-family: var(--font-serif); font-style: italic; font-size: var(--text-xl); color: var(--gray3); line-height: 1.6; max-width: 560px; }
.qs-closing-text strong { color: var(--white); font-style: normal; }


/* ═══════════════════════════════════════════════
   PROCESSO
   ═══════════════════════════════════════════════ */
.processo-intro { font-size: var(--text-md); color: var(--gray3); font-weight: 300; line-height: 1.85; max-width: 680px; margin-top: 1rem; margin-bottom: 3rem; margin-left: auto; margin-right: auto; }
.processo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--border); margin-top: 4rem; }
.processo-step { background: var(--black); padding: 2.5rem; }
.step-num   { font-family: var(--font-display); font-size: 4rem; color: var(--border); line-height: 1; margin-bottom: 1.5rem; }
.step-title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.04em; margin-bottom: 0.7rem; color: var(--white); }
.step-desc  { font-size: var(--text-sm); color: var(--gray3); line-height: 1.72; font-weight: 300; }


/* ═══════════════════════════════════════════════
   PROVA DE EXECUÇÃO
   ═══════════════════════════════════════════════ */
#execucao {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  contain: content;
}
#execucao .container {
  max-width: 1200px; margin: 0 auto; padding: 0 6vw;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px; align-items: center;
}
.exec-video-side .video-wrapper {
  position: relative; border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; background: #000; box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, border-color 0.3s ease; will-change: transform;
}
.exec-video-side .video-wrapper:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); }
.exec-video-side video { width: 100%; display: block; }
.exec-video-caption { font-family: var(--font-serif); font-style: italic; color: var(--gray5); margin-top: 20px; font-size: var(--text-md); text-align: center; opacity: 0.7; }
.exec-highlight-text { font-family: var(--font-serif); font-style: italic; color: var(--red-text); font-size: var(--text-xl); line-height: 1.3; margin-bottom: 35px; }
.exec-features-list { color: var(--gray3); font-family: var(--font-body); font-size: var(--text-md); line-height: 1.7; display: flex; flex-direction: column; gap: 20px; }
.exec-features-list strong { color: var(--white); font-weight: 500; }


/* ═══════════════════════════════════════════════
   CTA FINAL / CONTATO
   ═══════════════════════════════════════════════ */
#contato { background: var(--black); text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-logo { display: flex; justify-content: center; align-items: center; margin: 0 auto 2.8rem; background: transparent; border: none; padding: 0; }
.cta-logo img { display: block; height: auto; width: auto; max-height: 72px; max-width: 360px; object-fit: contain; }

h2.cta-h2 { font-family: var(--font-display); font-size: var(--display-lg); line-height: 0.93; letter-spacing: 0.015em; margin-bottom: 1.4rem; }
h2.cta-h2 em { font-style: normal; color: var(--red); }

.cta-sub     { color: var(--gray3); font-size: var(--text-md); font-weight: 300; line-height: 1.85; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--red); color: var(--white);
  padding: 1.15rem 2.4rem; font-size: var(--text-sm);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500;
  transition: background .18s; white-space: nowrap;
}
.btn-whatsapp:hover { background: var(--red2); }

.cta-email      { font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray3); }
.cta-email a    { color: var(--gray3); border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: color .18s; }
.cta-email a:hover { color: var(--white); }
.cta-note       { font-size: var(--text-2xs); color: var(--gray4); margin-top: 1rem; letter-spacing: 0.06em; }


/* ═══════════════════════════════════════════════
   FORMULÁRIO DE CONTATO
   ═══════════════════════════════════════════════ */
.form-section { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); width: 100%; max-width: 520px; margin-left: auto; margin-right: auto; }
.form-section-title { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.04em; color: var(--white); margin-bottom: 0.4rem; text-align: center; }
.form-section-sub { font-size: var(--text-sm); color: var(--gray3); text-align: center; margin-bottom: 2rem; font-weight: 300; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: var(--text-2xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray4); font-weight: 400; }
.form-field input, .form-field textarea {
  background: var(--gray2); border: 1px solid var(--border);
  color: var(--white); padding: 0.85rem 1rem; font-size: var(--text-sm);
  font-family: var(--font-body); font-weight: 300;
  outline: none; transition: border-color 0.18s; resize: none;
  -webkit-appearance: none; border-radius: 0;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--red-text); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--gray4); }
.form-field textarea { min-height: 100px; }
.form-field.full { grid-column: 1 / -1; }

.btn-form-submit {
  background: var(--red); color: var(--white); border: none;
  padding: 1rem 2rem; cursor: pointer;
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500;
  transition: background 0.18s; white-space: nowrap;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-form-submit:hover { background: var(--red2); }
.form-msg { font-size: var(--text-sm); text-align: center; padding: 0.8rem; margin-top: 0.5rem; display: none; }
.form-msg.success { color: var(--green); border: 1px solid var(--green); display: block; }
.form-msg.error   { color: var(--red-text); border: 1px solid var(--red-text); display: block; }


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer { border-top: 1px solid var(--border); background: var(--black); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; border-bottom: 1px solid var(--border); }
.footer-col  { padding: 3.5rem 3rem; }
.footer-col:first-child { padding-left: var(--section-pad-x); }
.footer-col:last-child  { padding-right: var(--section-pad-x); }
.footer-col + .footer-col { border-left: 1px solid var(--border); }

.footer-brand-logo { display: block; margin-bottom: 1.6rem; line-height: 0; }
.footer-brand-logo img { display: block; height: auto; width: auto; max-height: 64px; max-width: 240px; object-fit: contain; opacity: 0.9; transition: opacity .18s; }
.footer-brand-logo:hover img { opacity: 1; }

.footer-slogan      { font-family: var(--font-serif); font-style: italic; font-size: var(--text-sm); color: var(--gray3); line-height: 1.65; margin-bottom: 1.4rem; max-width: 220px; }
.footer-email-link  { font-size: var(--text-xs); letter-spacing: 0.06em; color: var(--gray4); transition: color .18s; }
.footer-email-link:hover { color: var(--white); }
.footer-col-title   { font-size: var(--text-2xs); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gray4); margin-bottom: 1.6rem; display: block; }
.footer-page-links  { display: flex; flex-direction: column; gap: 0.8rem; list-style: none; }
.footer-page-links li a { font-size: var(--text-sm); color: var(--gray3); transition: color .18s; letter-spacing: 0.02em; }
.footer-page-links li a:hover { color: var(--white); }

.footer-li-company { display: flex; align-items: center; gap: 0.85rem; padding: 0.8rem 1.1rem; border: 1px solid var(--border); margin-bottom: 1.2rem; transition: all .18s; color: var(--white); }
.footer-li-company:hover { border-color: var(--blue2); color: var(--blue2); }
.footer-li-company svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.footer-li-company-name { font-size: var(--text-sm); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

.footer-li-people { display: flex; flex-direction: column; gap: 0.6rem; list-style: none; }
.footer-li-person { display: flex; align-items: center; gap: 0.6rem; font-size: var(--text-xs); color: var(--gray3); transition: color .18s; }
.footer-li-person:hover { color: var(--blue2); }
.footer-li-person svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; opacity: 0.55; }

.footer-bottom { padding: 1.2rem var(--section-pad-x); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-rgb    { display: flex; gap: 5px; align-items: center; }
.footer-rgb-dot { width: 7px; height: 7px; border-radius: 50%; }
.footer-copy    { font-size: var(--text-2xs); color: var(--gray4); letter-spacing: 0.08em; text-align: center; flex: 1; }
.footer-domain  { font-size: var(--text-2xs); color: var(--gray4); letter-spacing: 0.08em; }
.li-icon path   { fill: currentColor; }


/* ═══════════════════════════════════════════════
   DAI — CAPACIDADES
   ═══════════════════════════════════════════════ */
.dai-cap-title { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.04em; }
.dai-cap-desc  { font-size: var(--text-sm); color: var(--gray3); line-height: 1.65; font-weight: 300; }


/* ═══════════════════════════════════════════════
   RESPONSIVE — CONSOLIDADO
   Ordem: mobile-first escalando para cima.
   ═══════════════════════════════════════════════ */

/* Breakpoint: ≤ 600px — pequenos ajustes extras */
@media (max-width: 600px) {
  .hero-stats  { flex-wrap: wrap; gap: 1.5rem; }
  .form-row    { grid-template-columns: 1fr; }
  .paraquem-card { flex-direction: column; gap: 0.8rem; }
}

/* Breakpoint: ≤ 900px — stacks de grid */
@media (max-width: 900px) {
  :root {
    --section-pad-y: 4.5rem;
  }

  .hero-grid, .mercado-grid, .servicos-intro-grid, .qs-grid {
    grid-template-columns: 1fr;
  }
  .hero-side { display: none; }
  .servicos-cards, .servicos-cards.two { grid-template-columns: 1fr !important; }
  .processo-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
  .processo-step { background: var(--gray2); }
  .paraquem-grid { grid-template-columns: 1fr; }

  .qs-photo-side { min-height: 320px; }
  .qs-founders-side { border-left: none; border-top: 1px solid var(--border); }
  .qs-closing { flex-direction: column; align-items: flex-start; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-col  { padding: 2.5rem var(--section-pad-x); }
  .footer-col + .footer-col { border-left: none; border-top: 1px solid var(--border); }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  .arc-stages { grid-template-columns: 1fr; gap: 1px; background: var(--border); }
  .arc-stage  { display: block; }
  .arc-tags   { margin-top: 1rem; }
  .arc-connector { display: none; }
  .arc-cta-row { flex-direction: column; align-items: flex-start; border: none; border-top: 1px solid var(--border); padding: 1.8rem 0 0; background: transparent; max-width: 100%; box-sizing: border-box; }
  .arc-cta-text { max-width: 100%; word-break: break-word; }
  .arc-cta-row .btn-primary { width: 100%; justify-content: center; }

  #execucao { padding: 60px 0; }
  #execucao .container { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 0 8vw; }
  .exec-text-side { display: flex; flex-direction: column; align-items: center; }
  .exec-video-side { order: 2; }
  #execucao .btn-primary { display: flex; width: 100%; justify-content: center; padding: 18px 24px; }
}

/* Breakpoint: 768px–900px — tablet portrait */
@media (min-width: 768px) and (max-width: 900px) {
  .servicos-cards { grid-template-columns: 1fr 1fr !important; }
  .processo-grid  { grid-template-columns: 1fr 1fr; background: var(--border); }
}

/* Breakpoint: 900px–1024px — tablet landscape */
@media (min-width: 900px) and (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 2rem; }
  .hero-side { display: block; }
}

/* Breakpoint: ≥ 1280px — large desktop */
@media (min-width: 1280px) {
  :root { --section-pad-y: 7.5rem; }
  #hero { padding: 10rem var(--section-pad-x) 6rem; }
  .hero-stats { gap: 3.5rem; }
  .stat-num   { font-size: 2.8rem; }
  .stat-label { font-size: var(--text-xs); }
  .servico-card  { padding: 2.4rem; }
  .servico-title { font-size: 1.45rem; }
  .qs-photo-side { min-height: 560px; }
  .processo-step { padding: 3rem; }
  .step-num { font-size: 5rem; }
}

/* Breakpoint: ≥ 1440px */
@media (min-width: 1440px) {
  .hero-grid     { grid-template-columns: 1fr 560px; gap: 4rem; }
  .mercado-grid  { gap: 6rem; }
  .qs-grid       { min-height: 600px; }
  .qs-founder    { padding: 2.8rem 3rem; }
  .footer-col    { padding: 4rem 3.5rem; }
  .footer-col:first-child { padding-left: var(--section-pad-x); }
  .footer-col:last-child  { padding-right: var(--section-pad-x); }
}

/* Breakpoint: ≥ 1600px */
@media (min-width: 1600px) {
  :root { --section-pad-x: 4vw; --section-pad-y: 8rem; }
  #hero { padding: 11rem var(--section-pad-x) 7rem; }
}

/* Breakpoint: ≥ 1920px */
@media (min-width: 1920px) {
  :root { --section-pad-x: 3vw; --section-pad-y: 9rem; }
  #hero { padding: 12rem var(--section-pad-x) 8rem; }
}
