/* ==========================================================================
   BRASIL CADASTRO · BRC · SOLUÇÕES CORPORATIVAS
   Identidade visual: preto + dourado · tom B2B premium
   ========================================================================== */

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

:root {
  /* ── Cores principais ─────────────────────────────────── */
  --preto: #0a0a0a;
  --preto-suave: #141414;
  --carbono: #1f1f1f;
  --carbono-borda: #2c2c2c;

  --ouro: #a8862e;
  --ouro-claro: #c9a84c;
  --ouro-escuro: #8a6e22;
  --ouro-bg: rgba(168, 134, 46, 0.08);
  --ouro-borda: rgba(168, 134, 46, 0.24);

  --branco: #ffffff;
  --bege: #f5efe1;
  --bege-suave: #faf6ec;

  /* Cinzas */
  --cinza-50: #fafafa;
  --cinza-100: #f4f4f4;
  --cinza-200: #ebebeb;
  --cinza-300: #d4d4d4;
  --cinza-500: #8a8a8a;
  --cinza-600: #5e5e5e;
  --cinza-700: #3f3f3f;

  --texto-principal: #1a1a1a;
  --texto-secundario: #555555;

  /* Tons especiais */
  --verde-wpp: #25d366;
  --verde-wpp-escuro: #1da851;

  /* Sombras & efeitos */
  --sombra-sutil: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.06);
  --sombra: 0 4px 24px rgba(0,0,0,.08);
  --sombra-grande: 0 12px 40px rgba(0,0,0,.12);
  --sombra-ouro: 0 6px 24px rgba(168,134,46,.28);

  /* Tipografia */
  --display: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--texto-principal);
  background: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01" on, "cv11" on;
}

a { color: inherit; text-decoration: none; }

/* ── UTILITÁRIOS ──────────────────────────────────────────────────────── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1560px; margin: 0 auto; padding: 0 32px; }

/* ── SÍMBOLO DA MARCA (mask-image) ────────────────────────────────────── */
.simbolo {
  display: inline-block;
  width: 28px; height: 30px;
  background: var(--ouro);
  -webkit-mask-image: url(simbolo.png);
  mask-image: url(simbolo.png);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
}
.simbolo--branco { background: var(--branco); }
.simbolo--preto { background: var(--preto); }
.simbolo--ouro-claro { background: var(--ouro-claro); }

/* ── LOGO TIPOGRÁFICO ─────────────────────────────────────────────────── */
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; line-height: 1;
}
.brand-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.005em;
  display: flex; align-items: baseline; gap: 0;
}
.brand-text .brasil { color: var(--ouro); margin-right: 1px; }
.brand-text .cadastro { color: var(--preto); font-weight: 500; }
.brand-text .reg {
  font-size: 8px; vertical-align: super;
  color: var(--cinza-500); margin-left: 2px;
  font-weight: 400;
}
.brand-tagline {
  display: block;
  font-size: 9.5px;
  color: var(--cinza-500);
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}

/* Versão para fundos escuros */
.brand--escuro .brand-text .cadastro { color: var(--branco); }
.brand--escuro .brand-tagline { color: rgba(255,255,255,.55); }

/* ── BOTÕES ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 600;
  letter-spacing: .01em;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s; flex-shrink: 0; }

.btn-ouro {
  background: var(--ouro);
  color: var(--preto);
}
.btn-ouro:hover { background: var(--ouro-claro); transform: translateY(-2px); box-shadow: var(--sombra-ouro); }
.btn-ouro:hover svg { transform: translateX(3px); }

.btn-preto {
  background: var(--preto);
  color: var(--branco);
}
.btn-preto:hover { background: var(--carbono); transform: translateY(-2px); box-shadow: var(--sombra); }

.btn-outline {
  background: transparent;
  color: var(--preto);
  border: 1.5px solid var(--preto);
}
.btn-outline:hover { background: var(--preto); color: var(--branco); }

.btn-outline-claro {
  background: transparent;
  color: var(--branco);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-claro:hover { background: rgba(255,255,255,.08); border-color: var(--branco); }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--preto);
  padding: 8px 0;
  border: none;
  border-bottom: 1.5px solid var(--ouro);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-link svg { width: 14px; height: 14px; transition: transform .25s; flex-shrink: 0; }
.btn-link:hover { color: var(--ouro-escuro); }
.btn-link:hover svg { transform: translateX(4px); }

.btn-link-claro {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--branco);
  padding: 8px 0;
  border: none;
  border-bottom: 1.5px solid var(--ouro);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-link-claro svg { width: 14px; height: 14px; transition: transform .25s; flex-shrink: 0; }
.btn-link-claro:hover { color: var(--ouro-claro); }
.btn-link-claro:hover svg { transform: translateX(4px); }

/* WhatsApp */
.btn-wpp {
  background: var(--verde-wpp);
  color: var(--branco);
}
.btn-wpp:hover { background: var(--verde-wpp-escuro); transform: translateY(-2px); }
.btn-wpp svg { width: 18px; height: 18px; fill: currentColor; }

.btn-grande {
  padding: 19px 36px;
  font-size: 15px;
}

/* ── EYEBROW ──────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ouro-escuro);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1.5px;
  background: var(--ouro);
}
.eyebrow--claro { color: var(--ouro-claro); }

/* ── TIPOGRAFIA ───────────────────────────────────────────────────────── */
.display-1 {
  font-family: var(--display);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.display-1 em { font-style: normal; color: var(--ouro); font-weight: 700; }
.display-1 strong { font-weight: 700; }

.display-2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.display-2 em { font-style: normal; color: var(--ouro); font-weight: 700; }

.display-3 {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.display-3 em { font-style: normal; color: var(--ouro); font-weight: 700; }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--texto-secundario);
  font-weight: 400;
}

section { padding: 100px 0; }

/* ── HEADER ───────────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: all .25s;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--texto-principal);
  letter-spacing: .005em;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ouro-escuro); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--ouro);
}
.header-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 6px;
}
.menu-toggle svg {
  width: 24px; height: 24px;
  stroke: var(--preto); fill: none; stroke-width: 2;
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  background: var(--preto);
  color: var(--branco);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* Pattern decorativo do símbolo no fundo */
  content: '';
  position: absolute; inset: 0;
  background-image: url(simbolo.png);
  background-size: 300px;
  background-position: 110% -50px;
  background-repeat: no-repeat;
  opacity: .025;
  pointer-events: none;
}
.hero::after {
  /* Glow dourado sutil */
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168,134,46,.13) 0%, transparent 60%);
  top: -200px; right: -100px;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 880px;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(168,134,46,.2);
  border-radius: 50px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}
.hero-meta-num {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ouro-claro);
  line-height: 1;
}
.hero-meta-label {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  letter-spacing: .04em;
}
.hero-meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ouro);
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--branco);
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  max-width: 680px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 80px;
}

.hero-numeros {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
  max-width: 720px;
}
.hero-numero {
  border-right: 1px solid rgba(255,255,255,.08);
  padding-right: 32px;
}
.hero-numero:last-child { border-right: none; }
.hero-numero-valor {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 400;
  color: var(--ouro-claro);
  line-height: 1;
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 8px;
}
.hero-numero-label {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── SOBRE / INSTITUCIONAL ────────────────────────────────────────────── */
.sobre {
  background: var(--branco);
  position: relative;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-texto p + p { margin-top: 18px; }
.sobre-texto p {
  font-size: 16px;
  color: var(--texto-secundario);
  line-height: 1.75;
}
.sobre-texto strong { color: var(--texto-principal); font-weight: 600; }

.sobre-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--preto);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sobre-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(168,134,46,.18), transparent 60%);
}
.sobre-visual-pattern {
  position: absolute; inset: 0;
  background-image: url(simbolo.png);
  background-size: 80px;
  background-repeat: repeat;
  opacity: .04;
}
.sobre-visual-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 48px;
}
.sobre-visual .simbolo {
  width: 96px; height: 100px;
  background: var(--ouro);
  margin-bottom: 32px;
}
.sobre-visual h3 {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  color: var(--branco);
  line-height: 1.05;
  margin-bottom: 16px;
}
.sobre-visual h3 em { color: var(--ouro-claro); font-weight: 600; }
.sobre-visual p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* ── PILARES ──────────────────────────────────────────────────────────── */
.pilares {
  background: var(--cinza-50);
  border-top: 1px solid var(--cinza-200);
  border-bottom: 1px solid var(--cinza-200);
}
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
}
.pilar {
  padding: 48px 36px;
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  margin-left: -1px;
  margin-top: -1px;
  position: relative;
  transition: all .3s;
}
.pilar:hover {
  z-index: 2;
  border-color: var(--ouro);
  background: var(--bege-suave);
}
.pilar h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--preto);
  margin-bottom: 16px;
  letter-spacing: -.015em;
  line-height: 1.1;
}
.pilar p {
  font-size: 14.5px;
  color: var(--texto-secundario);
  line-height: 1.7;
}

/* ── SOLUÇÕES PREVIEW ─────────────────────────────────────────────────── */
.solucoes-preview { background: var(--branco); }
.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.solucao-card {
  padding: 44px 40px;
  background: var(--bege-suave);
  border: 1px solid var(--ouro-borda);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.solucao-card:hover {
  background: var(--preto);
  color: var(--branco);
  transform: translateY(-4px);
  box-shadow: var(--sombra-grande);
}
.solucao-card-num {
  font-family: var(--display);
  font-size: 13px; font-weight: 500;
  color: var(--ouro-escuro);
  letter-spacing: .15em;
  margin-bottom: 24px;
  transition: color .3s;
}
.solucao-card:hover .solucao-card-num { color: var(--ouro-claro); }

.solucao-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -.015em;
  line-height: 1.15;
  color: var(--preto);
  transition: color .3s;
}
.solucao-card:hover h3 { color: var(--branco); }
.solucao-card p {
  font-size: 14.5px;
  color: var(--texto-secundario);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
  transition: color .3s;
}
.solucao-card:hover p { color: rgba(255,255,255,.75); }
.solucao-card-itens {
  list-style: none;
  margin-bottom: 28px;
}
.solucao-card-itens li {
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--texto-secundario);
  border-bottom: 1px solid var(--cinza-200);
  display: flex; align-items: center; gap: 10px;
  transition: all .3s;
}
.solucao-card-itens li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--ouro);
  border-radius: 50%;
  flex-shrink: 0;
}
.solucao-card:hover .solucao-card-itens li {
  color: rgba(255,255,255,.7);
  border-bottom-color: rgba(255,255,255,.08);
}
.solucao-card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--preto);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: .02em;
  transition: color .3s;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11.5px;
}
.solucao-card:hover .solucao-card-link { color: var(--ouro-claro); }
.solucao-card-link svg { width: 14px; height: 14px; transition: transform .25s; }
.solucao-card:hover .solucao-card-link svg { transform: translateX(4px); }

.solucoes-cta {
  text-align: center; margin-top: 56px;
}

/* ── DIFERENCIAIS ─────────────────────────────────────────────────────── */
.diferenciais {
  background: var(--preto);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}
.diferenciais::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url(simbolo.png);
  background-size: 400px;
  background-position: -100px 80%;
  background-repeat: no-repeat;
  opacity: .03;
}
.diferenciais .display-2 { color: var(--branco); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.diferencial {
  padding: 56px 48px;
  border: 1px solid rgba(255,255,255,.06);
  margin-left: -1px;
  margin-top: -1px;
  display: flex;
  gap: 32px;
  transition: background .3s;
}
.diferencial:hover { background: rgba(168,134,46,.04); }

.diferencial-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  color: var(--ouro);
  line-height: .9;
  flex-shrink: 0;
  min-width: 60px;
}
.diferencial-content h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--branco);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.diferencial-content p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ── GRUPO STUDIO / CREDIBILIDADE ─────────────────────────────────────── */
.studio {
  background: var(--bege);
  position: relative;
  overflow: hidden;
}
.studio::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url(simbolo.png);
  background-size: 600px;
  background-position: 120% 50%;
  background-repeat: no-repeat;
  opacity: .04;
}
.studio-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.studio h2 {
  margin-bottom: 24px;
  color: var(--preto);
}
.studio p {
  font-size: 16px;
  color: var(--cinza-700);
  line-height: 1.75;
  margin-bottom: 16px;
}
.studio strong { color: var(--preto); font-weight: 600; }

/* Logo Grupo Studio inline no título da seção studio */
.studio-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  line-height: 1.1;
}
.studio-headline span {
  display: inline-block;
}
.logo-inline {
  height: 0.78em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  /* Filtro: deixa o logo do Grupo Studio em tom neutro escuro consistente com a marca */
  filter: brightness(0.18);
}

.studio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ouro-borda);
  border: 1px solid var(--ouro-borda);
}
.studio-stat {
  background: var(--bege);
  padding: 36px 32px;
  text-align: center;
}
.studio-stat-valor {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 400;
  color: var(--ouro-escuro);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.studio-stat-label {
  font-size: 12px;
  color: var(--cinza-700);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── CTA FINAL ────────────────────────────────────────────────────────── */
.cta-final {
  background: var(--preto);
  color: var(--branco);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(168,134,46,.15) 0%, transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
}
.cta-final h2 {
  color: var(--branco);
  margin-bottom: 24px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.cta-final .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ── CONTATO ──────────────────────────────────────────────────────────── */
.contato {
  background: var(--branco);
  border-top: 1px solid var(--cinza-200);
}
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.contato-info h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--preto);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.contato-info > p {
  color: var(--texto-secundario);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contato-itens {
  display: flex; flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  border-top: 1px solid var(--cinza-200);
}
.contato-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--cinza-200);
}
.contato-item-icone {
  width: 40px; height: 40px;
  background: var(--bege-suave);
  border: 1px solid var(--ouro-borda);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contato-item-icone svg {
  width: 16px; height: 16px;
  stroke: var(--ouro-escuro); fill: none; stroke-width: 2;
}
.contato-item-texto strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--cinza-500);
  margin-bottom: 4px;
  font-weight: 700;
}
.contato-item-texto span,
.contato-item-texto a {
  display: block;
  font-size: 15px;
  color: var(--preto);
  line-height: 1.6;
}
.contato-item-texto a:hover { color: var(--ouro-escuro); }

.contato-redes {
  display: flex; gap: 10px; margin-top: 10px;
  align-items: center;
}
.contato-rede {
  width: 50px; height: 50px;
  background: var(--cinza-100);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
  border: 1px solid transparent;
  flex-shrink: 0;
  color: var(--preto);
}
.contato-rede:hover {
  background: var(--preto);
  border-color: var(--preto);
  color: var(--ouro-claro);
}
.contato-rede svg {
  width: 20px; height: 20px;
  fill: currentColor;
  transition: all .25s;
  flex-shrink: 0;
}

.mapa {
  border: 1px solid var(--cinza-200);
  background: var(--cinza-100);
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.mapa iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--preto);
  color: rgba(255,255,255,.6);
  padding: 72px 0 28px;
  border-top: 1px solid var(--carbono-borda);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand .brand-text .cadastro { color: var(--branco); }
.footer-brand .brand-tagline { color: rgba(255,255,255,.4); }

.footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  margin-top: 24px;
  margin-bottom: 24px;
  max-width: 320px;
  color: rgba(255,255,255,.55);
}

.footer h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 22px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer ul a:hover { color: var(--ouro-claro); }

.footer-redes {
  display: flex; gap: 10px; margin-top: 8px;
}
.footer-redes a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
  color: rgba(255,255,255,.85);
}
.footer-redes a:hover { background: var(--ouro); border-color: var(--ouro); transform: translateY(-2px); color: var(--preto); }
.footer-redes svg { width: 17px; height: 17px; fill: currentColor; transition: all .25s; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer-bottom-marca {
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-bottom-marca .simbolo {
  width: 14px; height: 15px;
  background: var(--ouro);
}

/* ── WHATSAPP FLUTUANTE ───────────────────────────────────────────────── */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--verde-wpp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  z-index: 99;
  transition: transform .25s;
}
.wpp-float:hover { transform: translateY(-4px) scale(1.05); }
.wpp-float::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse 2.4s ease-out infinite;
}
.wpp-float svg { width: 30px; height: 30px; fill: var(--branco); position: relative; z-index: 1; }
@keyframes pulse {
  0% { transform: scale(.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── PÁGINA SOLUÇÕES ──────────────────────────────────────────────────── */
.page-hero {
  background: var(--preto);
  color: var(--branco);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url(simbolo.png);
  background-size: 280px;
  background-position: 110% 50%;
  background-repeat: no-repeat;
  opacity: .04;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { color: var(--branco); margin-bottom: 24px; }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  max-width: 620px;
}

.solucao-categoria {
  padding: 96px 0;
  border-bottom: 1px solid var(--cinza-200);
}
.solucao-categoria:nth-child(even) { background: var(--bege-suave); }

.solucao-categoria-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: start;
}
.solucao-categoria-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.solucao-categoria-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ouro);
  letter-spacing: .15em;
}
.solucao-categoria-divider {
  flex: 1; height: 1px;
  background: var(--cinza-300);
}

.solucao-categoria h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--preto);
}
.solucao-categoria h2 em { color: var(--ouro); font-weight: 600; }

.solucao-categoria-desc {
  font-size: 16.5px;
  color: var(--texto-secundario);
  line-height: 1.7;
  max-width: 540px;
  padding-top: 16px;
}

.solucoes-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--cinza-200);
  background: var(--branco);
}
.solucao-item {
  padding: 32px 32px 36px;
  border: 1px solid var(--cinza-200);
  margin-left: -1px; margin-top: -1px;
  background: var(--branco);
  position: relative;
  transition: background .3s;
  display: flex; flex-direction: column;
  gap: 12px;
}
.solucao-item:hover { background: var(--bege-suave); }
.solucao-item-num {
  font-family: var(--display);
  font-size: 13px;
  color: var(--ouro);
  font-weight: 500;
  letter-spacing: .12em;
}
.solucao-item h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--preto);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.solucao-item p {
  font-size: 14px;
  color: var(--texto-secundario);
  line-height: 1.65;
}

/* ── ANIMAÇÕES ────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVO ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre-grid,
  .studio-inner,
  .contato-grid { grid-template-columns: 1fr; gap: 48px; }
  .pilares-grid,
  .diferenciais-grid,
  .solucoes-grid { grid-template-columns: 1fr; }
  .pilar, .diferencial { margin-left: 0; }
  .hero-numeros { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .hero-numero { padding-right: 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .solucao-categoria-header { grid-template-columns: 1fr; gap: 24px; }
  .solucoes-lista { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .selo-parceria-inner { gap: 8px; padding: 18px 24px; }
  .selo-parceria-texto { flex-direction: column; gap: 14px; }
  section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--branco);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--cinza-200);
    box-shadow: var(--sombra);
  }
  .header-cta .btn { display: none; }
  .header-cta .nav-cart { display: flex; }
  .hero { padding: 80px 0 72px; }
  .hero-numeros { grid-template-columns: 1fr; gap: 24px; }
  .hero-numero { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-right: 0; padding-bottom: 16px; }
  .hero-numero:last-child { border-bottom: none; }
  .hero-meta { flex-wrap: wrap; gap: 8px; padding: 8px 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pilar, .diferencial, .solucao-card { padding: 36px 28px; }
  .diferencial { gap: 20px; flex-direction: column; }
  .diferencial-num { font-size: 44px; }
  .studio-stats { grid-template-columns: 1fr; }
  .brand-text { font-size: 16px; }
  .brand-tagline { font-size: 8.5px; }
  .wpp-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .wpp-float svg { width: 26px; height: 26px; }
}

/* ── HEADER: ocultar btn-outline "Seja parceiro" em telas médias ──────── */
@media (max-width: 900px) {
  .header-cta .btn-outline { display: none; }
}

/* ── SELO DE PARCERIA ─────────────────────────────────────────────────── */
.selo-parceria {
  padding: 0;
  background: var(--preto-suave);
  border-top: 1px solid rgba(168,134,46,.15);
  border-bottom: 1px solid rgba(168,134,46,.15);
}
.selo-parceria-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 32px;
  flex-wrap: wrap;
}
.selo-parceria-texto {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ouro);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.selo-parceria-logo {
  height: 24px;
  max-height: 24px;
  width: auto;
  max-width: 180px;
  display: inline-block;
  filter: brightness(0) invert(1);
  opacity: .85;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── MARCAS ATENDIDAS ─────────────────────────────────────────────────── */
.marcas-atendidas {
  background: var(--preto);
  color: var(--branco);
  overflow: hidden;
  padding-bottom: 80px;
}
.marcas-atendidas .display-2 { color: var(--branco); }
.marcas-atendidas-intro {
  max-width: 680px;
  margin-bottom: 64px;
}
.marcas-atendidas-intro p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-top: 20px;
}
.marcas-carrossel-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marcas-carrossel-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marcas-scroll 40s linear infinite;
  padding: 16px 0;
}
.marcas-carrossel-wrap:hover .marcas-carrossel-track {
  animation-play-state: paused;
}
@keyframes marcas-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marcas-carrossel-item {
  flex-shrink: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marcas-carrossel-item img {
  max-height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .75;
  transition: opacity .3s;
}
.marcas-carrossel-item:hover img { opacity: 1; }
.marcas-disclaimer {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.38);
  max-width: 600px;
  margin: 40px auto 0;
  line-height: 1.6;
}

/* ── SEJA PARCEIRO ────────────────────────────────────────────────────── */
.seja-parceiro {
  background: var(--bege-suave);
  text-align: center;
  border-top: 1px solid var(--cinza-200);
  border-bottom: 1px solid var(--cinza-200);
}
.seja-parceiro .display-2 { color: var(--preto); }
.seja-parceiro-texto {
  font-size: 16px;
  color: var(--texto-secundario);
  line-height: 1.75;
  max-width: 560px;
  margin: 20px auto 40px;
}

/* ── ECOSSISTEMA: ÓRBITA ──────────────────────────────────────────────── */
.orbita-secao {
  background: var(--preto);
  color: var(--branco);
  padding-bottom: 100px;
}
.orbita-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.orbita-header .display-2 { color: var(--branco); }

.orbita-container {
  position: relative;
  width: 600px; height: 600px;
  margin: 64px auto 0;
}
.orbita-container:hover .orbita-item { animation-play-state: paused; }

.orbita-centro {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: rgba(168,134,46,.08);
  border-radius: 50%;
  border: 1px solid rgba(168,134,46,.3);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
}
.orbita-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,134,46,.18) 0%, transparent 70%);
  animation: glow-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}
@keyframes glow-pulse {
  0%, 100% { opacity: .5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}
.orbita-anel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 460px; height: 460px;
  border-radius: 50%;
  border: 1px dashed rgba(168,134,46,.22);
  z-index: 1;
}

/* Items orbitando: rotate → translateY (raio) → counter-rotate para manter upright */
.orbita-items { position: absolute; inset: 0; z-index: 2; }

@keyframes item-orbit {
  from { transform: translate(-50%, -50%) rotate(0deg)   translateY(-230px) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateY(-230px) rotate(-360deg); }
}

.orbita-item {
  position: absolute;
  top: 50%; left: 50%;
  width: 130px;
  animation: item-orbit 40s linear infinite;
}
.orbita-item:nth-child(1) { animation-delay:    0s; }
.orbita-item:nth-child(2) { animation-delay: -5.71s; }
.orbita-item:nth-child(3) { animation-delay: -11.43s; }
.orbita-item:nth-child(4) { animation-delay: -17.14s; }
.orbita-item:nth-child(5) { animation-delay: -22.86s; }
.orbita-item:nth-child(6) { animation-delay: -28.57s; }
.orbita-item:nth-child(7) { animation-delay: -34.28s; }

.orbita-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(168,134,46,.2);
  padding: 14px 12px;
  text-align: center;
  transition: background .3s, border-color .3s;
}
.orbita-item:hover .orbita-card {
  background: rgba(168,134,46,.1);
  border-color: rgba(168,134,46,.5);
}
.orbita-card-titulo {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ouro-claro);
  margin-bottom: 6px;
  line-height: 1.3;
}
.orbita-card-desc {
  font-size: 10.5px;
  color: rgba(255,255,255,.58);
  line-height: 1.45;
}

/* Versão mobile: lista vertical estática */
.orbita-lista-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}
.orbita-lista-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(168,134,46,.2);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.orbita-lista-num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 300;
  color: var(--ouro);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.orbita-lista-titulo {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ouro-claro);
  margin-bottom: 4px;
}
.orbita-lista-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

/* ── SOBRE GRUPO STUDIO (ecossistema.html) ────────────────────────────── */
.gs-sobre {
  background: var(--bege);
  position: relative;
  overflow: hidden;
}
.gs-sobre::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url(simbolo.png);
  background-size: 600px;
  background-position: 120% 50%;
  background-repeat: no-repeat;
  opacity: .03;
}
.gs-sobre-inner { position: relative; z-index: 1; }
.gs-sobre-logo {
  height: auto;
  max-height: 80px;
  max-width: 300px;
  width: auto;
  display: block;
  margin-bottom: 40px;
  filter: brightness(0.18);
}
.gs-sobre-texto { max-width: 820px; }
.gs-sobre-texto p { font-size: 16px; color: var(--cinza-700); line-height: 1.78; }
.gs-sobre-texto p + p { margin-top: 18px; }
.gs-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ouro-borda);
  border: 1px solid var(--ouro-borda);
  margin-top: 72px;
}
.gs-stat {
  background: var(--bege);
  padding: 36px 24px;
  text-align: center;
}
.gs-stat-valor {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 400;
  color: var(--ouro-escuro);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.gs-stat-label {
  font-size: 11.5px;
  color: var(--cinza-700);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── GS EDUCAÇÃO ──────────────────────────────────────────────────────── */
.gs-educacao { background: var(--branco); }
.gs-educacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.gs-educacao-texto p { font-size: 16px; color: var(--texto-secundario); line-height: 1.78; }
.gs-educacao-texto p + p { margin-top: 18px; }
.gs-educacao-texto .btn-link { margin-top: 32px; }
.gs-educacao-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--preto);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.gs-educacao-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(168,134,46,.18), transparent 60%);
}
.gs-educacao-visual-pattern {
  position: absolute; inset: 0;
  background-image: url(simbolo.png);
  background-size: 80px;
  background-repeat: repeat;
  opacity: .04;
}
.gs-educacao-visual-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 48px;
}
.gs-educacao-visual-content .simbolo {
  width: 80px; height: 84px;
  background: var(--ouro);
  margin-bottom: 24px;
}
.gs-educacao-visual-content h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--branco);
  line-height: 1.1;
}
.gs-educacao-visual-content h3 em { color: var(--ouro-claro); font-weight: 600; font-style: normal; }

/* ── PARCEIROS ESTRATÉGICOS ───────────────────────────────────────────── */
.parceiros-secao {
  background: var(--cinza-50);
  border-top: 1px solid var(--cinza-200);
}
.parceiros-intro {
  font-size: 16px;
  color: var(--texto-secundario);
  line-height: 1.75;
  max-width: 620px;
  margin-top: 20px;
  margin-bottom: 64px;
}
.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.parceiro-card {
  padding: 48px 44px;
  border: 1px solid var(--cinza-200);
  background: var(--branco);
  display: flex;
  flex-direction: column;
}
.parceiro-card--escuro {
  background: var(--preto);
  border-color: var(--carbono-borda);
  color: var(--branco);
}
.parceiro-card-logo {
  height: auto;
  max-height: 60px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 28px;
}
.parceiro-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--preto);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.parceiro-card--escuro h3 { color: var(--branco); }
.parceiro-card-sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--ouro);
  margin-bottom: 20px;
}
.parceiro-card p {
  font-size: 14.5px;
  color: var(--texto-secundario);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 32px;
}
.parceiro-card--escuro p { color: rgba(255,255,255,.62); }

/* ── SÓCIOS DA BRASIL CADASTRO ────────────────────────────────────────── */
.socios-secao {
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-200);
}
.socios-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: center;
}
.socios-foto {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  box-shadow: var(--sombra-grande);
  display: block;
}
.socios-texto .display-3 { margin-bottom: 28px; }
.socios-texto p {
  font-size: 16px;
  color: var(--texto-secundario);
  line-height: 1.78;
  margin-bottom: 32px;
}
.socios-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.socio-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.socio-item::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 2px;
  background: var(--ouro);
  margin-top: 10px;
}
.socio-nome {
  font-size: 15px;
  font-weight: 700;
  color: var(--preto);
  line-height: 1.3;
}
.socio-cargo {
  font-size: 13px;
  color: var(--texto-secundario);
  margin-top: 2px;
}

/* ── RESPONSIVO — novas seções ────────────────────────────────────────── */
/* ── PARCEIROS LOCAIS (cards com conteúdo) ────────────────────────────── */
.parceiros-locais {
  margin-top: 48px;
}
.parceiros-locais-titulo {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cinza-600);
  text-align: center;
  margin-bottom: 40px;
}

.parceiros-locais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.parceiro-local {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 36px 32px;
  background: var(--preto);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  transition: all .3s ease;
  text-decoration: none;
}

.parceiro-local:hover {
  background: var(--preto-suave);
  border-color: var(--ouro-borda);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.parceiro-local-logo {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: all .3s ease;
  margin-bottom: 4px;
}

.parceiro-local:hover .parceiro-local-logo {
  opacity: 1;
}

.parceiro-local-nome {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--branco);
  letter-spacing: -.01em;
  line-height: 1.2;
}

.parceiro-local-sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--ouro);
}

.parceiro-local-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  flex: 1;
}
.parceiro-local-desc a {
  color: var(--ouro-claro);
  font-weight: 600;
  text-decoration: none;
  transition: color .25s;
}

.parceiro-local-desc a:hover {
  color: var(--branco);
}

.parceiro-local-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, 0.7);
  transition: all .3s ease;
  margin-top: 8px;
}

.parceiro-local-link svg {
  width: 14px;
  height: 14px;
  transition: transform .25s;
}

.parceiro-local:hover .parceiro-local-link {
  color: var(--ouro-claro);
}

.parceiro-local:hover .parceiro-local-link svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .orbita-container { width: 520px; height: 520px; }
  .orbita-anel { width: 400px; height: 400px; }
  .orbita-item { animation: item-orbit-sm 40s linear infinite; }
  @keyframes item-orbit-sm {
    from { transform: translate(-50%, -50%) rotate(0deg)   translateY(-195px) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg) translateY(-195px) rotate(-360deg); }
  }
  .gs-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .gs-educacao-grid { grid-template-columns: 1fr; gap: 48px; }
  .parceiros-grid { grid-template-columns: 1fr; }
  .socios-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .selo-parceria-inner { gap: 8px; padding: 18px 24px; }
  .orbita-container { display: none; }
  .orbita-lista-mobile { display: flex; }
  .gs-stats-grid { grid-template-columns: repeat(1, 1fr); }
  .parceiro-card { padding: 36px 28px; }
  .marcas-carrossel-track { gap: 56px; }
  .marcas-carrossel-item img { max-height: 36px; }
  .socios-grid { grid-template-columns: 1fr; gap: 40px; }
  .socios-foto { max-width: 360px; margin: 0 auto; }
   .parceiros-locais-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .parceiro-local {
    padding: 28px 24px;
  }
  .parceiro-local-logo {
    max-height: 38px;
  }
}
