/* ============================================================
   SALT PPS — Design System v2
   Paleta oficial · Fontes oficiais · Header flutuante
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600&family=Unbounded:wght@200;300;400;500;600;700;800&family=Michroma&display=swap");

/* ============================================================
   Omnium — fonte oficial de display (arquivos locais)
   Títulos, subtítulos, botões e destaques numéricos
   ============================================================ */
@font-face {
  font-family: 'Omnium';
  src: url('../fonte/fonnts.com-Omnium_Thin.otf') format('opentype');
  font-weight: 100 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnium';
  src: url('../fonte/fonnts.com-Omnium_Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnium';
  src: url('../fonte/fonnts.com-Omnium_Medium.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnium';
  src: url('../fonte/fonnts.com-Omnium_SemiBold.otf') format('opentype');
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnium';
  src: url('../fonte/fonnts.com-Omnium_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnium';
  src: url('../fonte/fonnts.com-Omnium_ExtraBold.otf') format('opentype');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnium Wide';
  src: url('../fonte/fonnts.com-Omnium_Wide_Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Omnium Wide';
  src: url('../fonte/fonnts.com-Omnium_Wide_Medium.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta oficial Salt PPS */
  --white:        #ffffff;
  --black:        #000000;
  --aqua:         #59bcb3;   /* verde-água — cor oficial de destaque */
  --aqua-soft:    #c4e6e3;
  --aqua-pale:    #eaf6f4;
  --aqua-deep:    #3f9a92;
  --gray-light:   #e8e8e8;
  --gray-medium:  #cecece;
  --gray-dark:    #8c8c8c;
  --navy:         #15253d;   /* azul-marinho — raras ocasiões */
  --navy-soft:    #1f3554;

  /* Tokens semânticos */
  --bg:           var(--white);
  --bg-soft:      var(--gray-light);
  --bg-deeper:    #f4f4f4;
  --surface:      var(--white);
  --ink:          var(--black);
  --ink-2:        #1a1a1a;
  --ink-3:        var(--gray-dark);
  --ink-4:        var(--gray-medium);
  --divider:      var(--gray-light);

  /* Tipografia — famílias */
  --font-display: 'Omnium', 'Omnium Wide', 'Unbounded', 'Michroma', system-ui, sans-serif;
  --font-body:    'Montserrat', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Montserrat', system-ui, sans-serif;

  /* Tipografia — escala padronizada (única fonte de verdade dos tamanhos) */
  --fs-h1:         clamp(2.4rem, 6vw, 4.8rem);    /* títulos de página/hero */
  --fs-h2:         clamp(1.85rem, 3.6vw, 3rem);   /* títulos de seção */
  --fs-h3:         1.35rem;                        /* subtítulos */
  --fs-card-title: 1.5rem;                         /* títulos de card */
  --fs-h4:         1.05rem;                        /* títulos menores */
  --fs-lead:       1.1rem;                         /* leads/subheaders */
  --fs-body:       1rem;                           /* texto corrido */
  --fs-small:      .94rem;                         /* texto de apoio */
  --fs-xs:         .85rem;                         /* metadados/labels */
  --fs-eyebrow:    .7rem;                          /* eyebrows/uppercase */
  --fs-stat:       2.6rem;                         /* números de destaque */

  /* Layout */
  --container: 1280px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --header-h:  104px;
  --hero-pad-top: 56px;

  /* Motion */
  --ease:  cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: 200ms;
  --t-med:  420ms;
  --t-slow: 760ms;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 1px 0 rgba(0,0,0,.02);
  --shadow-md: 0 8px 28px -10px rgba(0,0,0,.12), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 28px 60px -20px rgba(0,0,0,.22), 0 8px 24px -12px rgba(0,0,0,.08);
  --shadow-float: 0 18px 44px -16px rgba(0,0,0,.18), 0 4px 14px -6px rgba(0,0,0,.08);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   Typography — Omnium Wide para títulos · Inter para corpo
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0;
  font-weight: 300;
}
h1 { line-height: 1.05; font-size: var(--fs-h1); }
h2 { line-height: 1.1;  font-size: var(--fs-h2); }
h3 { line-height: 1.2;  font-size: var(--fs-h3); font-weight: 400; }
h4 { line-height: 1.3;  font-size: var(--fs-h4); font-weight: 400; letter-spacing: .04em; }
em { font-style: italic; font-weight: 200; color: var(--aqua-deep); }
strong { font-weight: 600; color: var(--ink); }
p { margin: 0 0 1em; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--aqua-deep);
  font-weight: 500;
}
.section-eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--aqua);
}
.eyebrow-light { color: var(--aqua); }
.eyebrow-light::before { background: var(--aqua); }

.section-title { margin-top: 16px; max-width: 22ch; }
.section-lead {
  margin-top: 22px;
  color: var(--ink-3);
  font-size: var(--fs-lead);
  max-width: 60ch;
  line-height: 1.7;
}

.page-title {
  margin-top: 18px;
  max-width: 18ch;
}
.page-lead {
  margin-top: 22px;
  color: var(--ink-3);
  font-size: var(--fs-lead);
  max-width: 62ch;
  line-height: 1.7;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .94rem;
  letter-spacing: .01em;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-display);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 22px -6px rgba(0,0,0,.4), inset 0 0 0 1px var(--ink);
}
.btn-primary:hover {
  background: var(--aqua);
  color: var(--ink);
  box-shadow: 0 14px 32px -8px rgba(89,188,179,.55), inset 0 0 0 1px var(--aqua);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--gray-medium);
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 1px var(--ink);
  background: var(--ink);
  color: var(--white);
}
.btn-lg { padding: 18px 32px; font-size: var(--fs-body); }

/* ============================================================
   HEADER — integrado no topo, flutuante no scroll
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-top: 18px;
  padding-bottom: 18px;
  background: transparent;
  transition: padding var(--t-med) var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 999px;
  padding: 14px 14px 14px 28px;
  transition: max-width var(--t-med) var(--ease),
              margin var(--t-med) var(--ease),
              padding var(--t-med) var(--ease),
              background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  box-shadow: var(--shadow-sm);
  max-width: var(--container);
  margin: 0 auto;
}

/* Estado inicial (topo): logo grande, header sem pill destacado */
.site-header:not(.is-scrolled) .header-inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 8px 8px 8px 28px;
}

/* Estado scrolled: pill flutuante com a largura exata da área central útil */
.site-header.is-scrolled {
  padding-top: 14px;
}
.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, .88);
  border-color: rgba(0, 0, 0, .08);
  box-shadow: var(--shadow-float);
  padding: 12px 12px 12px 24px;
  max-width: 100%;
  margin: 0;
}

/* Brand & logos */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--t-med) var(--ease);
}
.brand-logo {
  width: auto;
  display: block;
  transition: all var(--t-med) var(--ease-out);
}
.brand-logo-full {
  height: 76px;
  opacity: 1;
}
.brand-logo-mini {
  height: 42px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.brand-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 76px;
  transition: height var(--t-med) var(--ease);
}
.site-header.is-scrolled .brand-logo-wrap {
  height: 42px;
}
.site-header.is-scrolled .brand-logo-full {
  opacity: 0;
  transform: scale(.92);
  position: absolute;
  pointer-events: none;
}
.site-header.is-scrolled .brand-logo-mini {
  opacity: 1;
  transform: scale(1);
  position: static;
  pointer-events: auto;
}

.brand-tag {
  font-family: var(--font-display);
  font-size: .68rem;
  color: var(--ink-3);
  letter-spacing: .18em;
  text-transform: uppercase;
  border-left: 1px solid var(--gray-medium);
  padding-left: 16px;
  font-weight: 300;
  display: none;
  transition: opacity var(--t-med) var(--ease);
}
@media (min-width: 1100px) {
  .brand-tag { display: inline; }
}
.site-header.is-scrolled .brand-tag {
  opacity: 0;
  pointer-events: none;
  width: 0;
  padding-left: 0;
  border-left: 0;
  margin-left: -16px;
  overflow: hidden;
  white-space: nowrap;
}

/* Nav main */
.nav-main {
  display: none;
  align-items: center;
  gap: 2px;
}
.nav-main > a, .nav-dropdown-trigger {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  font-weight: 500;
}
.nav-main > a:hover, .nav-dropdown-trigger:hover {
  color: var(--ink);
  background: rgba(0,0,0,.04);
}
.nav-main > a.is-active {
  color: var(--ink);
  background: var(--aqua-pale);
}
/* CTA no canto direito do menu (elemento próprio, fora do grupo central) */
.nav-cta {
  display: none;
  align-items: center;
  background: var(--ink);
  color: var(--white) !important;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-cta:hover {
  background: var(--aqua) !important;
  color: var(--ink) !important;
}
@media (min-width: 1024px) {
  .nav-main { display: flex; }
  .nav-cta { display: inline-flex; }
  /* Logo à esquerda · nav + idiomas ao centro · CTA na ponta direita */
  .nav-main { margin-left: auto; }
  .nav-cta { margin-left: auto; }
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 12px;
  width: 380px;
  box-shadow: var(--shadow-lg);
  transition: all var(--t-med) var(--ease);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background var(--t-fast) var(--ease);
}
.nav-dropdown-menu a:hover { background: var(--bg-soft); }
.nav-dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--c, var(--aqua));
  margin-top: 7px;
  flex: 0 0 9px;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--c, var(--aqua)) 18%, transparent);
}
.nav-dropdown-menu strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: .94rem;
}
.nav-dropdown-menu em {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  color: var(--ink-3);
  font-size: .8rem;
  margin-top: 2px;
}

/* ============================================================
   Seletor de idioma — PT-BR / EN-US (bandeiras)
   ============================================================ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  flex: 0 0 auto;
}
.lang-btn {
  width: 34px;
  height: 25px;
  padding: 0;
  border-radius: 7px;
  overflow: hidden;
  display: flex;
  opacity: .38;
  filter: saturate(.7);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.14);
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
}
.lang-btn svg {
  width: 100%;
  height: 100%;
  display: block;
}
.lang-btn:hover {
  opacity: .8;
  filter: saturate(1);
  transform: translateY(-1px);
}
.lang-btn.is-active {
  opacity: 1;
  filter: saturate(1);
  box-shadow: 0 0 0 2px var(--aqua), inset 0 0 0 1px rgba(0,0,0,.1);
}
@media (max-width: 1023px) {
  .lang-switch { margin-left: auto; margin-right: 10px; }
}

/* Mobile toggle */
.nav-toggle {
  width: 46px; height: 46px;
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--ink);
  color: var(--white);
}
.nav-toggle span {
  width: 18px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-top: 12px;
  padding: 24px 28px 24px;
  border: 1px solid var(--divider);
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  box-shadow: var(--shadow-md);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  color: var(--ink-2);
  font-size: 1.05rem;
  font-weight: 500;
}
.nav-mobile a:last-child { border-bottom: 0; color: var(--aqua-deep); }

/* Spacer para header fixo + margem extra para a primeira fatia */
.app-shell { padding-top: calc(var(--header-h) + var(--hero-pad-top)); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  padding: 40px 0 clamp(80px, 12vh, 140px);
  overflow: hidden;
  isolation: isolate;
  background: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.orb-1 {
  width: 620px; height: 620px;
  top: -200px; right: -160px;
  background: radial-gradient(circle, var(--aqua-soft) 0%, transparent 70%);
}
.orb-2 {
  width: 480px; height: 480px;
  bottom: -160px; left: -120px;
  background: radial-gradient(circle, var(--aqua-pale) 0%, transparent 70%);
  animation-delay: -9s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.06); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 80%);
}

/* Luzes percorrendo a malha (horizontal e vertical) — desfoque suave */
.grid-light {
  position: absolute;
  pointer-events: none;
  opacity: .85;
  mix-blend-mode: screen;
}
.grid-light-h {
  height: 1px;
  width: 220px;
  background: linear-gradient(90deg, transparent 0%, rgba(89,188,179,0) 0%, rgba(89,188,179,.95) 50%, rgba(89,188,179,0) 100%);
  filter: blur(1.4px) drop-shadow(0 0 8px rgba(89,188,179,.55));
  animation: gridLightH 7s ease-in-out infinite;
}
.grid-light-v {
  width: 1px;
  height: 220px;
  background: linear-gradient(180deg, transparent 0%, rgba(89,188,179,0) 0%, rgba(89,188,179,.95) 50%, rgba(89,188,179,0) 100%);
  filter: blur(1.4px) drop-shadow(0 0 8px rgba(89,188,179,.55));
  animation: gridLightV 9s ease-in-out infinite;
}

/* Véu branco nas bordas do hero — as luzes somem gradualmente num blur claro,
   sem corte abrupto */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse 115% 85% at 50% 38%,
              transparent 52%,
              rgba(255,255,255,.55) 78%,
              var(--white) 98%);
}
.grid-light-h.l1 { top: 18%;  animation-delay: 0s;    animation-duration: 7s; }
.grid-light-h.l2 { top: 46%;  animation-delay: 2.3s;  animation-duration: 9s; }
.grid-light-h.l3 { top: 72%;  animation-delay: 4.1s;  animation-duration: 6.5s; }
.grid-light-v.l1 { left: 22%; animation-delay: 1s;    animation-duration: 10s; }
.grid-light-v.l2 { left: 48%; animation-delay: 3.2s;  animation-duration: 8s; }
.grid-light-v.l3 { left: 78%; animation-delay: 5.5s;  animation-duration: 11s; }

@keyframes gridLightH {
  0%   { transform: translateX(-260px); opacity: 0; }
  22%  { opacity: .9; }
  62%  { opacity: .55; }
  100% { transform: translateX(110vw);  opacity: 0; }
}
@keyframes gridLightV {
  0%   { transform: translateY(-260px); opacity: 0; }
  22%  { opacity: .9; }
  62%  { opacity: .55; }
  100% { transform: translateY(110vh);  opacity: 0; }
}

.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--ink);
  background: var(--aqua);
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  letter-spacing: .08em;
  box-shadow: 0 6px 18px -8px rgba(89,188,179,.55);
  font-weight: 600;
}
.eyebrow-dot {
  width: 9px; height: 9px;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(0,0,0,.18);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(89,188,179,.22); }
  50%      { box-shadow: 0 0 0 10px rgba(89,188,179,.04); }
}

.hero-title {
  margin-top: 30px;
  max-width: 17ch;
  font-weight: 200;
}
.hero-title em {
  color: var(--aqua-deep);
  font-style: italic;
  font-weight: 200;
}
.hero-title .hero-bold {
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}
.hero-lead {
  margin-top: 28px;
  color: var(--ink-3);
  font-size: var(--fs-lead);
  max-width: 60ch;
  line-height: 1.65;
  font-family: var(--font-body);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  border-top: 1px solid var(--divider);
  padding-top: 36px;
  max-width: 820px;
}
@media (min-width: 720px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats b {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: var(--fs-stat);
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1;
}
.hero-stats span {
  color: var(--ink-3);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: clamp(80px, 11vh, 150px) 0;
  position: relative;
}
.section-head {
  margin-bottom: 70px;
  max-width: 760px;
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  max-width: 100%;
  flex-wrap: wrap;
}

/* ============================================================
   Fronts grid (home)
   ============================================================ */
.section-fronts { background: var(--white); }

.fronts-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .fronts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .fronts-grid { grid-template-columns: repeat(4, 1fr); } }

.front-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card-bg, var(--white));
  color: var(--card-fg, var(--ink));
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  min-height: 520px;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  isolation: isolate;
}
/* Degradê de luz para profundidade em cada card */
.front-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 80% -10%, rgba(255,255,255,.18) 0%, transparent 55%),
              radial-gradient(circle at 0% 110%, rgba(0,0,0,.12) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
  opacity: .9;
  transition: opacity var(--t-med) var(--ease);
}
.front-card.fc-default::before {
  background: radial-gradient(circle at 100% -10%, rgba(89,188,179,.16) 0%, transparent 55%),
              radial-gradient(circle at 0% 110%, rgba(0,0,0,.04) 0%, transparent 50%);
}
.front-card:hover::before { opacity: 1; }

.front-card.fc-default { border-color: var(--gray-light); }
.front-card.fc-aqua    { background: var(--aqua); color: var(--ink); border-color: transparent; }
.front-card.fc-navy    { background: var(--navy); color: var(--white); border-color: transparent; }
.front-card.fc-black   { background: var(--black); color: var(--white); border-color: transparent; }

.front-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.front-card-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin-bottom: 30px;
  aspect-ratio: 1;
  object-fit: contain;
}
.front-card .front-num {
  font-family: var(--font-display);
  font-size: .8rem;
  color: var(--ink-3);
  margin-bottom: 14px;
  letter-spacing: .2em;
  font-weight: 300;
}
.fc-aqua .front-num   { color: rgba(0,0,0,.55); }
.fc-navy .front-num   { color: rgba(255,255,255,.6); }
.fc-black .front-num  { color: rgba(255,255,255,.55); }

.front-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-card-title);
  font-weight: 400;
  letter-spacing: -.01em;
  color: inherit;
  line-height: 1.1;
}
.front-card .front-tagline {
  margin-top: 12px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: .98rem;
  opacity: .8;
}
.front-card .front-bilingua {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.front-card .front-bilingua .front-en {
  margin-top: 0;
}
.front-card .front-desc {
  margin-top: 22px;
  font-size: var(--fs-small);
  line-height: 1.6;
  opacity: .85;
  font-family: var(--font-body);
}
.fc-default .front-desc { color: var(--ink-3); opacity: 1; }
.front-card .front-tags {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.front-card .front-tags span {
  font-family: var(--font-body);
  font-size: .72rem;
  background: rgba(255,255,255,.18);
  color: inherit;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.fc-default .front-tags span {
  background: rgba(0,0,0,.05);
  color: var(--ink-3);
}
.front-card .front-link {
  margin-top: 24px;
  font-size: .9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-family: var(--font-body);
}
.front-card .front-link svg {
  transition: transform var(--t-med) var(--ease);
}
.front-card:hover .front-link svg { transform: translateX(6px); }

/* ============================================================
   Positioning
   ============================================================ */
.section-positioning { background: var(--gray-light); }
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 980px) {
  .positioning-grid { grid-template-columns: 1.2fr 1fr; gap: 90px; }
}
.principles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.principles li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 26px;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.principles li:hover {
  transform: translateX(8px);
  border-color: var(--aqua);
}
.principle-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--aqua-deep);
  font-weight: 300;
  letter-spacing: .04em;
}
.principles strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.01em;
}
.principles p {
  color: var(--ink-3);
  font-size: var(--fs-small);
  margin: 0;
}

/* ============================================================
   Team preview (home)
   ============================================================ */
.section-team-preview { background: var(--white); }

.team-preview-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .team-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .team-preview-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .team-preview-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card-mini {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  min-height: 280px;
}
.team-card-mini .role { min-height: 2.6em; }
.team-card-mini:hover {
  transform: translateY(-6px);
  border-color: var(--aqua);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua-soft), var(--bg-deeper));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: .04em;
}
.team-card-mini h3 { font-size: var(--fs-h4); margin: 0; font-weight: 400; }
.team-card-mini .role {
  color: var(--ink-3);
  font-size: var(--fs-xs);
}
.team-card-mini .front-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 12px;
  background: var(--aqua-pale);
  color: var(--aqua-deep);
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .04em;
  font-family: var(--font-body);
  font-weight: 500;
}

/* ============================================================
   CTA card
   ============================================================ */
.section-cta {
  background: var(--white);
  padding-bottom: clamp(90px, 13vh, 160px);
}
.cta-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-card::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  right: -240px; top: -240px;
  background: radial-gradient(circle, rgba(89, 188, 179, .35) 0%, transparent 60%);
  z-index: -1;
}
.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='20' cy='20' r='1' fill='%23fff' fill-opacity='.08'/></svg>");
  background-size: 40px 40px;
  z-index: -1;
  opacity: .6;
}
.cta-card h2 { color: var(--white); max-width: 18ch; margin-top: 18px; font-weight: 200; }
.cta-card h2 em { color: var(--aqua); }
.cta-card p { color: rgba(255,255,255,.65); max-width: 56ch; margin-top: 16px; }
.cta-card .btn-primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 6px 24px -6px rgba(255,255,255,.4), inset 0 0 0 1px var(--white);
}
.cta-card .btn-primary:hover {
  background: var(--aqua);
  box-shadow: 0 16px 36px -10px rgba(89,188,179,.65), inset 0 0 0 1px var(--aqua);
  color: var(--ink);
}

/* ============================================================
   FRONT detail
   ============================================================ */
.front-hero {
  padding: 100px 0 0;
  position: relative;
  isolation: isolate;
}
/* Curva moderna de transição entre cor da frente → branco */
.front-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 140px;
  background: var(--white);
  clip-path: ellipse(95% 100% at 50% 100%);
  z-index: 1;
}
/* Decorações: anel + squircle flutuantes */
.front-hero::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  right: -120px; top: -120px;
  border-radius: 30%;
  background: linear-gradient(135deg, rgba(89,188,179,.18), transparent 60%);
  filter: blur(2px);
  z-index: -1;
  pointer-events: none;
}
.front-hero .container { padding-bottom: 80px; position: relative; z-index: 2; }
/* Tema padrão (Consulting/Assessoria) */
.front-hero.theme-default {
  background: linear-gradient(180deg, var(--aqua-pale) 0%, transparent 100%);
  color: var(--ink);
}
/* ESG: verde-água com texto preto */
.front-hero.theme-aqua {
  background: radial-gradient(ellipse 100% 100% at 50% 0%, #6cd0c6 0%, var(--aqua) 60%, var(--aqua) 100%);
  color: var(--ink);
}
.front-hero.theme-aqua::after { background: var(--white); }
.front-hero.theme-aqua .section-eyebrow,
.front-hero.theme-aqua h1,
.front-hero.theme-aqua .breadcrumb {
  color: var(--ink);
}
.front-hero.theme-aqua .breadcrumb:hover { opacity: .7; }
.front-hero.theme-aqua .section-eyebrow::before { background: var(--ink); }
.front-hero.theme-aqua .front-lead { color: rgba(0,0,0,.78); }
.front-hero.theme-aqua .front-hero-card { background: var(--white); border-color: transparent; }
.front-hero.theme-aqua .btn-ghost { color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.front-hero.theme-aqua .btn-ghost:hover { background: var(--ink); color: var(--aqua); }

/* Trading: azul-marinho */
.front-hero.theme-navy {
  background: radial-gradient(ellipse 110% 100% at 50% 0%, var(--navy-soft) 0%, var(--navy) 60%, var(--navy) 100%);
  color: var(--white);
}
.front-hero.theme-navy::after { background: var(--white); }
.front-hero.theme-navy::before {
  background: linear-gradient(135deg, rgba(89,188,179,.32), transparent 60%);
}
.front-hero.theme-navy .section-eyebrow { color: var(--aqua); }
.front-hero.theme-navy .section-eyebrow::before { background: var(--aqua); }
.front-hero.theme-navy h1 { color: var(--white); }
.front-hero.theme-navy h1 em { color: var(--aqua); }
.front-hero.theme-navy .front-lead { color: rgba(255,255,255,.78); }
.front-hero.theme-navy .breadcrumb { color: rgba(255,255,255,.6); }
.front-hero.theme-navy .breadcrumb:hover { color: var(--white); }
.front-hero.theme-navy .front-hero-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); backdrop-filter: blur(8px); }
.front-hero.theme-navy .front-hero-card-meta { border-color: rgba(255,255,255,.1); }
.front-hero.theme-navy .front-hero-card-meta strong { color: var(--white); }
.front-hero.theme-navy .front-hero-card-meta span { color: rgba(255,255,255,.6); }
.front-hero.theme-navy .btn-primary { background: var(--aqua); color: var(--ink); box-shadow: 0 6px 22px -6px rgba(89,188,179,.6); }
.front-hero.theme-navy .btn-primary:hover { background: var(--white); }
.front-hero.theme-navy .btn-ghost { color: var(--white); box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); }
.front-hero.theme-navy .btn-ghost:hover { background: var(--white); color: var(--ink); }

/* Defense: preto */
.front-hero.theme-black {
  background: radial-gradient(ellipse 110% 100% at 50% 0%, #161616 0%, var(--black) 60%, var(--black) 100%);
  color: var(--white);
}
.front-hero.theme-black::after { background: var(--white); }
.front-hero.theme-black::before {
  background: linear-gradient(135deg, rgba(89,188,179,.4), transparent 60%);
}
.front-hero.theme-black .section-eyebrow { color: var(--aqua); }
.front-hero.theme-black .section-eyebrow::before { background: var(--aqua); }
.front-hero.theme-black h1 { color: var(--white); }
.front-hero.theme-black h1 em { color: var(--aqua); }
.front-hero.theme-black .front-lead { color: rgba(255,255,255,.72); }
.front-hero.theme-black .breadcrumb { color: rgba(255,255,255,.55); }
.front-hero.theme-black .breadcrumb:hover { color: var(--white); }
.front-hero.theme-black .front-hero-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); backdrop-filter: blur(8px); }
.front-hero.theme-black .front-hero-card-meta { border-color: rgba(255,255,255,.1); }
.front-hero.theme-black .front-hero-card-meta strong { color: var(--white); }
.front-hero.theme-black .front-hero-card-meta span { color: rgba(255,255,255,.55); }
.front-hero.theme-black .btn-primary { background: var(--aqua); color: var(--ink); box-shadow: 0 6px 22px -6px rgba(89,188,179,.5); }
.front-hero.theme-black .btn-ghost { color: var(--white); box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.front-hero.theme-black .btn-ghost:hover { background: var(--white); color: var(--ink); }

.breadcrumb {
  display: inline-flex;
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--ink-3);
  margin-bottom: 40px;
  transition: color var(--t-fast) var(--ease);
  letter-spacing: .02em;
}
.breadcrumb:hover { color: var(--ink); }

.front-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 32px;
}
@media (min-width: 980px) {
  .front-hero-grid { grid-template-columns: 1.5fr 1fr; gap: 80px; }
}
.front-title {
  font-size: var(--fs-h1);
  margin-top: 16px;
  font-weight: 200;
  line-height: 1.05;
}
.front-lead {
  font-size: var(--fs-lead);
  margin-top: 26px;
  max-width: 50ch;
  line-height: 1.65;
  font-family: var(--font-body);
}
.front-actions {
  margin-top: 38px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.front-hero-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.front-hero-card img {
  max-width: 220px;
  width: 100%;
  margin: 0 auto 28px;
}
.front-hero-card-meta {
  border-top: 1px solid var(--divider);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.front-hero-card-meta span:first-child {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-family: var(--font-body);
}
.front-hero-card-meta strong {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
  font-family: var(--font-display);
  font-weight: 400;
}
.front-hero-card-meta span:last-child {
  font-size: .85rem;
  color: var(--ink-3);
}

.front-body-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 1024px) {
  .front-body-grid { grid-template-columns: 220px 1fr; gap: 90px; }
}

.front-toc {
  position: sticky;
  top: 110px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.front-toc h4 {
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.toc-link {
  padding: 11px 16px;
  border-left: 2px solid transparent;
  color: var(--ink-3);
  font-size: .9rem;
  transition: all var(--t-fast) var(--ease);
  font-weight: 500;
}
.toc-link:hover, .toc-link.is-active {
  color: var(--ink);
  border-left-color: var(--aqua);
  background: var(--aqua-pale);
}

.front-content > article {
  margin-bottom: 90px;
  scroll-margin-top: 120px;
}
.front-content h2 {
  margin-top: 18px;
  margin-bottom: 26px;
  max-width: 22ch;
}
.front-content p {
  color: var(--ink-3);
  font-size: var(--fs-body);
  line-height: 1.75;
  max-width: 66ch;
}

.method-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}
@media (min-width: 720px) {
  .method-steps { grid-template-columns: repeat(2, 1fr); }
}
.method-step {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  transition: all var(--t-med) var(--ease);
}
.method-step:hover {
  border-color: var(--aqua);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.method-step .step-num {
  font-family: var(--font-display);
  color: var(--aqua-deep);
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 300;
  letter-spacing: .04em;
}
.method-step h4 {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 400;
}
.method-step p {
  color: var(--ink-3);
  font-size: var(--fs-small);
  margin: 0;
}

.who-list {
  margin-top: 20px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .who-list { grid-template-columns: repeat(2, 1fr); }
}
.who-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  background: var(--white);
  font-size: var(--fs-small);
  color: var(--ink-3);
}
.who-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--aqua);
  border-radius: 999px;
  margin-top: 9px;
  flex: 0 0 7px;
}

.deliverables-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}
@media (min-width: 720px) {
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
}
.deliverable {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  transition: all var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.deliverable:hover {
  border-color: var(--aqua);
  background: var(--aqua-pale);
  transform: translateY(-2px);
}
.deliverable strong { color: var(--ink); font-size: var(--fs-body); font-family: var(--font-display); font-weight: 400; }
.deliverable span  { color: var(--ink-3); font-size: var(--fs-xs); }

/* ============================================================
   Sobre
   ============================================================ */
.section-sobre-hero,
.section-page-hero {
  padding-top: 80px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, var(--aqua-pale) 0%, transparent 100%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* Replica o fundo elegante da home: malha sutil dissolvendo em blur branco */
.section-sobre-hero::before,
.section-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 15%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 15%, #000 25%, transparent 78%);
}
/* Squircle de marca preenchendo o canto vazio dos heros internos */
.section-sobre-hero::after,
.section-page-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  right: -90px; top: -70px;
  border-radius: 30%;
  background: linear-gradient(135deg, rgba(89,188,179,.16), transparent 65%);
  filter: blur(2px);
  z-index: -1;
  pointer-events: none;
}
.section-sobre-hero .container,
.section-page-hero .container { position: relative; z-index: 1; }

.trajectory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 980px) {
  .trajectory-grid { grid-template-columns: 1.5fr 1fr; gap: 90px; }
}
.trajectory-body h2 { max-width: 22ch; margin-bottom: 32px; margin-top: 18px; font-weight: 200; }
.trajectory-body p {
  color: var(--ink-3);
  font-size: var(--fs-body);
  line-height: 1.8;
}
.trajectory-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.meta-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 26px;
}
.meta-card h4 {
  color: var(--aqua-deep);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.meta-card p {
  font-size: var(--fs-small);
  color: var(--ink-3);
  margin: 0;
  line-height: 1.6;
}
.meta-footnote {
  margin: 6px 4px 0;
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .04em;
  opacity: .72;
}

/* ============================================================
   Globe + Mapa de atuação
   ============================================================ */
.section-map {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 12vh, 160px) 0;
  position: relative;
  overflow: hidden;
}
.section-map h2 {
  color: var(--white);
  font-weight: 200;
}
.section-map h2 em { color: var(--aqua); }
.section-map .section-lead { color: rgba(255,255,255,.65); }
.section-map .section-eyebrow { color: var(--aqua); }
.section-map .section-eyebrow::before { background: var(--aqua); }

.globe-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}
@media (min-width: 980px) {
  .globe-layout { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}

.globe-stage {
  position: relative;
  aspect-ratio: 1;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.globe-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  position: relative;
  z-index: 2;
}
.globe-canvas:active { cursor: grabbing; }

.globe-stage::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at center, rgba(89,188,179,.18) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
}

/* Elipses orbitais girando */
.globe-orbit {
  position: absolute;
  inset: -8%;
  border: 1px solid rgba(89,188,179,.22);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.globe-orbit-1 {
  transform: rotateX(72deg);
  animation: spinOrbit 28s linear infinite;
  border-color: rgba(89,188,179,.32);
  border-top-color: rgba(89,188,179,.65);
  border-left-color: rgba(89,188,179,.45);
}
.globe-orbit-2 {
  inset: -16%;
  transform: rotateX(70deg) rotateZ(60deg);
  animation: spinOrbit 42s linear infinite reverse;
  border-color: rgba(89,188,179,.18);
  border-top-color: rgba(89,188,179,.42);
}
.globe-orbit-3 {
  inset: 8%;
  transform: rotateX(76deg) rotateZ(-30deg);
  animation: spinOrbit 35s linear infinite;
  border-color: rgba(255,255,255,.07);
  border-top-color: rgba(89,188,179,.5);
}
@keyframes spinOrbit {
  from { transform: rotateX(72deg) rotateZ(0); }
  to   { transform: rotateX(72deg) rotateZ(360deg); }
}

.globe-stage { perspective: 1200px; }

/* Tooltip do globo */
.globe-tooltip {
  position: absolute;
  pointer-events: none;
  padding: 8px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  opacity: 0;
  transform: translate(-50%, -130%);
  transition: opacity var(--t-fast) var(--ease);
  z-index: 5;
  white-space: nowrap;
}
.globe-tooltip.visible { opacity: 1; }
.globe-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--white);
}

.globe-legend {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.globe-legend h3 {
  color: var(--white);
  font-weight: 200;
  margin-bottom: 12px;
}
.globe-legend p {
  color: rgba(255,255,255,.65);
  font-size: var(--fs-body);
  line-height: 1.7;
}
.region-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}
@media (min-width: 580px) {
  .region-list { grid-template-columns: 1fr 1fr; }
}
.region-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 20px 22px;
  border-radius: var(--radius);
  transition: all var(--t-med) var(--ease);
}
.region-card:hover {
  background: rgba(89,188,179,.08);
  border-color: var(--aqua);
}
.region-card h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .04em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.region-card h4::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--aqua);
}
.region-card p {
  color: rgba(255,255,255,.6);
  font-size: var(--fs-xs);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   Team
   ============================================================ */
.section-team {
  background: var(--gray-light);
}
.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 60px;
}
@media (min-width: 760px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-card {
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
}
.team-card:hover {
  border-color: var(--aqua);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.team-card-head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.team-card .team-avatar { width: 80px; height: 80px; font-size: 1.9rem; flex: 0 0 80px; }
.team-card h3 { font-size: var(--fs-card-title); font-weight: 300; }
.team-card .role { color: var(--ink-3); font-size: var(--fs-small); font-family: var(--font-body); }
.team-card .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.badge {
  font-family: var(--font-body);
  font-size: .72rem;
  background: var(--aqua-pale);
  color: var(--aqua-deep);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-weight: 500;
}
.badge-dark {
  background: var(--bg-soft);
  color: var(--ink-3);
}
.team-card details {
  border-top: 1px solid var(--divider);
  padding-top: 20px;
  margin-top: 4px;
}
.team-card summary {
  cursor: pointer;
  list-style: none;
  font-size: .78rem;
  color: var(--ink-3);
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.team-card summary::-webkit-details-marker { display: none; }
.team-card summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: 200;
  font-family: var(--font-display);
  transition: transform var(--t-med) var(--ease);
}
.team-card details[open] summary::after { transform: rotate(45deg); }
.team-card details > div {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--fs-small);
  line-height: 1.65;
  color: var(--ink-3);
}
.team-card details h5 {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--aqua-deep);
  margin: 0 0 6px;
  font-weight: 500;
}
.team-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.team-contacts a {
  font-size: var(--fs-xs);
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  width: fit-content;
  transition: all var(--t-fast) var(--ease);
  font-family: var(--font-body);
}
.team-contacts a svg {
  width: 16px; height: 16px;
  flex: 0 0 16px;
  color: var(--aqua-deep);
  transition: color var(--t-fast) var(--ease);
}
.team-contacts a strong {
  font-weight: 500;
  color: var(--ink);
}
.team-contacts a:hover { background: var(--ink); color: var(--white); }
.team-contacts a:hover svg, .team-contacts a:hover strong { color: var(--aqua); }

/* ============================================================
   Portfolio
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--divider);
}
.filter-chip {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: .86rem;
  background: transparent;
  color: var(--ink-3);
  transition: all var(--t-fast) var(--ease);
  box-shadow: inset 0 0 0 1px var(--divider);
  font-weight: 500;
}
.filter-chip:hover {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink-3);
}
.filter-chip.is-active {
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.portfolio-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.portfolio-card .client-logo {
  height: 56px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.portfolio-card .client-logo svg,
.portfolio-card .client-logo img {
  max-height: 100%;
  max-width: 200px;
  filter: grayscale(100%) brightness(0);
  opacity: .82;
  transition: all var(--t-med) var(--ease);
}
.portfolio-card:hover .client-logo svg,
.portfolio-card:hover .client-logo img {
  opacity: 1;
}
.portfolio-card .client-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--ink);
  opacity: .82;
}
.portfolio-card:hover {
  border-color: var(--aqua);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.portfolio-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.portfolio-card .meta .front { color: var(--aqua-deep); font-weight: 600; }
.portfolio-card h3 {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.3;
}
.portfolio-card .client {
  color: var(--ink-3);
  font-size: .88rem;
}
.portfolio-card p {
  color: var(--ink-3);
  font-size: .92rem;
  margin: 0;
  line-height: 1.6;
}
.portfolio-card .results {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--divider);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.portfolio-card .result {
  display: flex;
  flex-direction: column;
}
.portfolio-card .result b {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--aqua-deep);
  line-height: 1;
}
.portfolio-card .result span {
  font-size: .68rem;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================================
   Mídia
   ============================================================ */
.media-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 16px;
}
.tab {
  padding: 11px 22px;
  font-size: .92rem;
  color: var(--ink-3);
  border-radius: 8px 8px 0 0;
  position: relative;
  transition: color var(--t-fast) var(--ease);
  font-weight: 500;
}
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--ink); }
.tab.is-active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0; right: 0;
  height: 2px;
  background: var(--aqua);
}

.media-timeline { display: flex; flex-direction: column; }
.media-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px 18px;
  border-bottom: 1px solid var(--divider);
  transition: background var(--t-fast) var(--ease);
  border-radius: var(--radius);
}
@media (min-width: 720px) {
  .media-item { grid-template-columns: 160px 80px 1fr auto; align-items: center; gap: 24px; }
}
.media-item:hover { background: var(--bg-soft); }
.media-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--ink);
  opacity: .82;
}
.media-flag {
  width: 28px; height: 20px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
  font-size: 1.4em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
}
.media-date {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--aqua-deep);
  font-weight: 300;
}
.media-content h3 { font-size: 1.2rem; margin-bottom: 6px; font-weight: 400; }
.media-content .where { color: var(--ink-3); font-size: .88rem; }
.media-content p { margin: 8px 0 0; color: var(--ink-3); font-size: .92rem; }
.media-tag {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  white-space: nowrap;
  align-self: start;
  width: fit-content;
  font-weight: 500;
}

/* ============================================================
   Contato
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
@media (min-width: 980px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 70px; }
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field label {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.field input, .field select, .field textarea {
  font: inherit;
  font-family: var(--font-body);
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ink);
  transition: all var(--t-fast) var(--ease);
  font-size: var(--fs-small);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(89, 188, 179, .18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field textarea { resize: vertical; min-height: 130px; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 720px) { .checkbox-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .checkbox-grid { grid-template-columns: repeat(3, 1fr); } }
.checkbox-card {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.checkbox-card:hover { background: var(--aqua-pale); }
.checkbox-card input {
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--gray-medium);
  background: var(--white);
  cursor: pointer;
  margin-top: 2px;
  flex: 0 0 18px;
  position: relative;
  transition: all var(--t-fast) var(--ease);
}
.checkbox-card input:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.checkbox-card input:checked::after {
  content: '';
  position: absolute;
  top: 3px; left: 5px;
  width: 4px; height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-card:has(input:checked) {
  background: var(--aqua-pale);
  border-color: var(--aqua);
}
.checkbox-card strong {
  display: block;
  font-size: .9rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
}
.checkbox-card em {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .8rem;
  color: var(--ink-3);
}
.cbx-en {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.cbx-en em {
  display: inline;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .82rem;
  color: var(--ink-3);
  margin-top: 0;
  font-weight: 300;
}
.cbx-en .lang-badge {
  margin-right: 0;
  font-size: .52rem;
  padding: 2px 6px;
}

/* Conversa Direta com Cenira — bloco destacado */
.direct-with { display: flex; flex-direction: column; }
.direct-with-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--divider);
}
.direct-with-head .team-avatar {
  width: 54px; height: 54px;
  font-size: 1.15rem;
  flex: 0 0 54px;
}
.direct-with-head strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.direct-with-head span {
  display: block;
  color: var(--ink-3);
  font-size: .8rem;
  margin-top: 2px;
}

.checkbox-inline {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--ink-3);
  cursor: pointer;
}
.checkbox-inline input {
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--gray-medium);
  background: var(--white);
  flex: 0 0 18px;
  position: relative;
  cursor: pointer;
  margin-top: 2px;
}
.checkbox-inline input:checked { background: var(--ink); border-color: var(--ink); }
.checkbox-inline input:checked::after {
  content: '';
  position: absolute;
  top: 3px; left: 5px;
  width: 4px; height: 8px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.field-consent { margin-top: 4px; }

.form-success {
  background: var(--aqua-pale);
  border: 1px solid var(--aqua);
  color: var(--ink);
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: var(--fs-small);
  margin-top: 10px;
}
.form-success strong { display: block; margin-bottom: 6px; color: var(--ink); font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; }
.form-success a { color: var(--aqua-deep); text-decoration: underline; }

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 30px;
}
.contact-card h4 {
  color: var(--aqua-deep);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  font-size: var(--fs-small);
  transition: color var(--t-fast) var(--ease);
}
.contact-link:last-child { border-bottom: 0; }
.contact-link:hover { color: var(--aqua-deep); }
.contact-link span { color: var(--ink-3); font-size: .8rem; letter-spacing: .04em; }
.contact-link strong { color: var(--ink); font-weight: 500; font-family: var(--font-body); }

.leader-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  align-items: flex-start;
}
.leader-row:last-child { border-bottom: 0; }
.leader-row .dot {
  width: 9px; height: 9px;
  border-radius: 999px;
  margin-top: 8px;
  flex: 0 0 9px;
}
.leader-row strong { display: block; color: var(--ink); font-size: .94rem; font-family: var(--font-display); font-weight: 400; }
.leader-row span { font-size: .8rem; color: var(--ink-3); }

.contact-card-soft { background: var(--aqua-pale); border-color: var(--aqua-soft); }
.contact-card-soft h4 { color: var(--aqua-deep); }
.contact-card-soft p { font-size: var(--fs-xs); color: var(--ink-2); margin: 0; line-height: 1.6; }

/* ============================================================
   404
   ============================================================ */
.section-404 {
  text-align: center;
  padding: clamp(120px, 22vh, 220px) 0;
}
.section-404 .page-title { margin-left: auto; margin-right: auto; font-size: clamp(2.4rem, 6vw, 4.4rem); }
.section-404 .page-lead  { margin: 22px auto 36px; }

/* ============================================================
   FOOTER — escuro com identidade Salt
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding: 100px 0 32px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89,188,179,.18) 0%, transparent 60%);
  z-index: -1;
}
.site-footer::after {
  content: 'salt';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(180px, 30vw, 380px);
  color: rgba(255,255,255,.025);
  letter-spacing: -.03em;
  line-height: 1;
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
}
.footer-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 720px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }

.footer-brand img { height: 96px; margin-bottom: 32px; filter: drop-shadow(0 8px 24px rgba(89,188,179,.18)); }
.footer-brand p { max-width: 42ch; font-size: var(--fs-small); line-height: 1.7; color: rgba(255,255,255,.75); }
.footer-tagline {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--aqua);
  line-height: 1.5;
  max-width: 36ch;
}
.footer-fantasia {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
}
.footer-legal { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 24px; letter-spacing: .02em; }

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}
.site-footer a {
  display: block;
  padding: 8px 0;
  font-size: var(--fs-small);
  color: rgba(255,255,255,.65);
  transition: all var(--t-fast) var(--ease);
  font-weight: 500;
}
.site-footer a:hover { color: var(--aqua); transform: translateX(4px); }

.footer-bottom {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.42);
  position: relative;
}
.footer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  transition: color var(--t-fast) var(--ease);
}
.footer-credit a:hover { color: var(--aqua); transform: none; }
.footer-credit strong { color: var(--white); font-weight: 600; }

/* ============================================================
   Scroll Indicator — fixo lateral direito, dot desliza com scroll
   ============================================================ */
.scroll-indicator {
  position: fixed;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 260px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.14) 20%, rgba(0,0,0,.14) 80%, transparent);
  border-radius: 999px;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.scroll-indicator.is-ready { opacity: 1; }
.scroll-indicator::before {
  content: '';
  position: absolute;
  left: -4px;
  top: calc(var(--sp, 0) * (260px - 44px));
  width: 10px;
  height: 44px;
  background: var(--aqua);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(89,188,179,.2),
              0 8px 20px -6px rgba(89,188,179,.55);
  transition: top .1s linear;
}
.scroll-indicator::after {
  content: attr(data-pct);
  position: absolute;
  left: 22px;
  top: calc(var(--sp, 0) * (260px - 44px) + 14px);
  font-family: var(--font-secondary);
  font-size: .64rem;
  letter-spacing: .18em;
  color: var(--aqua-deep);
  font-weight: 600;
  white-space: nowrap;
  transition: top .1s linear;
}
/* Em seções escuras (footer, sobre-map, CTA), inverter contraste */
.scroll-indicator.on-dark {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.16) 20%, rgba(255,255,255,.16) 80%, transparent);
}
.scroll-indicator.on-dark::after { color: var(--aqua); }

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

/* ============================================================
   EN/US badge para nome bilíngue das frentes
   ============================================================ */
.lang-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-secondary);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  color: var(--ink);
  margin-right: 10px;
  text-transform: uppercase;
  vertical-align: middle;
  border: 1px solid rgba(0,0,0,.14);
}
.fc-aqua  .lang-badge { background: rgba(0,0,0,.14); color: var(--ink); border-color: rgba(0,0,0,.22); }
.fc-navy  .lang-badge { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.2); }
.fc-black .lang-badge { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.18); }

.front-en {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: .98rem;
  opacity: .78;
}

/* ============================================================
   Grafismo Salt — squircle verde-água (retângulo de pontas
   arredondadas 25–35%, elemento oficial da marca)
   ============================================================ */
.squircle {
  position: absolute;
  pointer-events: none;
  border-radius: 28%;
  background: var(--aqua);
  opacity: .14;
}
.squircle-outline {
  position: absolute;
  pointer-events: none;
  border-radius: 28%;
  border: 1px solid var(--aqua);
  background: transparent;
  opacity: .25;
}

/* Squircles do hero da home */
.sq-hero-1 {
  width: 140px; height: 140px;
  right: 8%; top: 16%;
  border-radius: 32%;
  opacity: .1;
  filter: blur(1px);
  animation: floatY 16s ease-in-out infinite;
  animation-iteration-count: 5;
}
.sq-hero-2 {
  width: 90px; height: 90px;
  left: 5%; bottom: 18%;
  border-radius: 30%;
  animation: floatX 18s ease-in-out infinite reverse;
  animation-iteration-count: 4;
}

/* Squircles preenchendo áreas vazias de seções da home */
.section-positioning::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  right: -60px; bottom: -60px;
  border-radius: 30%;
  border: 1px solid rgba(89,188,179,.3);
  transform: rotate(12deg);
  pointer-events: none;
}
.section-positioning { position: relative; overflow: hidden; }
.section-team-preview::before {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  left: -50px; top: 10%;
  border-radius: 32%;
  background: linear-gradient(135deg, rgba(89,188,179,.12), transparent 70%);
  pointer-events: none;
}
.section-team-preview { position: relative; overflow: hidden; }

/* ============================================================
   Página em construção (Portfólio · Salt na Mídia)
   ============================================================ */
.section-construction {
  min-height: calc(100vh - var(--header-h) - var(--hero-pad-top) - 120px);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--aqua-pale) 0%, transparent 60%);
}
.construction-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.construction-logo {
  height: 92px;
  width: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 14px 30px rgba(89,188,179,.35));
}
.construction-inner .page-title { margin: 0 auto; }
.construction-inner .btn { margin-top: 18px; }

/* ============================================================
   Redes sociais próprias de uma frente (ex.: Salt Defesa)
   ============================================================ */
.front-social {
  border-top: 1px solid var(--divider);
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.front-social-label {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.front-social-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.front-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-2);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  transition: all var(--t-fast) var(--ease);
}
.front-social-btn svg { width: 15px; height: 15px; color: var(--aqua-deep); }
.front-social-btn:hover { background: var(--ink); color: var(--white); }
.front-social-btn:hover svg { color: var(--aqua); }
.front-hero.theme-black .front-social,
.front-hero.theme-navy .front-social { border-color: var(--divider); }

/* ============================================================
   Backgrounds animados (portfólio + mídia)
   ============================================================ */
.bg-animated {
  position: relative;
  isolation: isolate;
}
.bg-animated::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 14%, rgba(89,188,179,.06) 0%, transparent 36%),
    radial-gradient(circle at 88% 6%,  rgba(21,37,61,.05)  0%, transparent 36%),
    radial-gradient(circle at 92% 92%, rgba(89,188,179,.07) 0%, transparent 40%);
}
.bg-animated .floating {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.bg-animated .float-1 {
  top: 8%; left: 4%;
  width: 110px; height: 110px;
  border-radius: 30%;
  background: linear-gradient(135deg, rgba(89,188,179,.18), transparent 70%);
  border: 1px solid rgba(89,188,179,.18);
  animation: floatY 14s ease-in-out infinite;
  animation-iteration-count: 6;
}
.bg-animated .float-2 {
  bottom: 14%; right: 6%;
  width: 80px; height: 80px;
  border-radius: 28%;
  background: linear-gradient(135deg, rgba(21,37,61,.12), transparent 70%);
  animation: floatY 18s ease-in-out infinite reverse;
  animation-iteration-count: 4;
}
.bg-animated .float-3 {
  top: 38%; right: 14%;
  width: 60px; height: 60px;
  border-radius: 30%;
  background: var(--aqua);
  opacity: .12;
  animation: floatX 16s ease-in-out infinite;
  animation-iteration-count: 5;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(40px) rotate(8deg); }
}
@keyframes floatX {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50%      { transform: translateX(-30px) rotate(-6deg); }
}

/* ============================================================
   Reveal animations
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Custom scrollbar
   ============================================================ */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb {
  background: var(--gray-medium);
  border-radius: 999px;
  border: 3px solid var(--bg-soft);
}
::-webkit-scrollbar-thumb:hover { background: var(--aqua); }

/* Text selection */
::selection { background: var(--aqua); color: var(--ink); }
