/* Axis — estilo.css. Tokens from Visual Direction v0.1 (contrast measured). No JavaScript anywhere. */

@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400; font-display: swap; src: url("fontes/manrope-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 500; font-display: swap; src: url("fontes/manrope-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 600; font-display: swap; src: url("fontes/manrope-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 700; font-display: swap; src: url("fontes/manrope-latin-700-normal.woff2") format("woff2"); }

:root {
  --ink: #121212;
  --paper: #FAFAF8;
  --blue: #0066CC;
  --blue-deep: #0052A3;
  --blue-light: #7FB3F5;
  --grey: #5C5C5C;
  --grey-light: #A8A8A8;
  --light: #EEEEEE;
  --rule: #D9D9D6;
  --rule-dark: #333333;
  --tint: #F1F1EE;

  --sans: "Manrope", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --serif: var(--sans); /* one family throughout, by the owner's decision of 2026-09-04 */

  --medida: 66ch;
  --largura: 1120px; /* content width; containers add the margin */
  --margem: clamp(20px, 5vw, 72px);
  --passo: 4px;

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
.int { max-width: calc(var(--largura) + 2 * var(--margem)); margin-left: auto; margin-right: auto; padding-left: var(--margem); padding-right: var(--margem); }
html { -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
@supports not (scrollbar-gutter: stable) { html { overflow-y: scroll; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  hyphens: auto;
  -webkit-hyphens: auto;
}
/* Paragraph text is justified; headings, ledes, lists and links stay ragged. */
p { text-align: justify; text-align-last: left; hyphenate-limit-chars: 7 3 3; }
.rodape p, .foto figcaption { text-align: left; }
@media (max-width: 720px) { body { font-size: 16.5px; line-height: 26px; } }

h1, h2, h3 { font-family: var(--sans); font-weight: 600; letter-spacing: -0.015em; margin: 0; }
h1 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.12; }
h2 { font-size: clamp(24px, 2.6vw, 30px); line-height: 1.2; }
h3 { font-size: 22px; line-height: 28px; }
p { margin: 0 0 20px; }
a { color: var(--blue-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue); }
a:focus-visible, summary:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 2px; }
strong { font-weight: 600; }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: 8px; }
mark.pendente { background: #FFF3B0; color: var(--ink); padding: 0 4px; border-radius: 2px; font-family: var(--sans); font-size: 0.85em; }

.pular { position: absolute; left: -9999px; top: 8px; background: var(--ink); color: var(--light); padding: 8px 12px; z-index: 10; }
.pular:focus { left: 8px; }

/* Header */
.topo { padding-top: 24px; padding-bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.marca { display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; }
.marca svg { display: block; }
.marca-logotipo svg { height: 34px; width: auto; }
.marca-simbolo { display: none; }
.marca-simbolo svg { height: 34px; width: auto; }
.menu { display: none; }
.menu summary { list-style: none; cursor: pointer; width: 44px; height: 44px; padding: 10px; }
.menu summary::-webkit-details-marker { display: none; }
.menu summary span { display: block; height: 2px; background: var(--ink); margin: 6px 0; }
.nav-mesa, .menu nav { display: flex; align-items: center; gap: 28px; }
.nav-mesa ul, .menu nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.nav-mesa li, .menu nav li { margin: 0; }
.nav-mesa ul a, .menu nav ul a { font-family: var(--sans); font-weight: 500; font-size: 15px; color: var(--ink); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-mesa ul a:hover, .menu nav ul a:hover { border-bottom-color: var(--blue); color: var(--ink); }
.nav-mesa ul a[aria-current="page"], .menu nav ul a[aria-current="page"] { border-bottom-color: var(--ink); }
.idioma { font-family: var(--sans); font-size: 14px; color: var(--grey); padding: 4px 10px; border: 1px solid var(--rule); border-radius: 999px; text-decoration: none; }
.idioma:hover { border-color: var(--ink); color: var(--ink); }

@media (max-width: 860px) {
  .marca-logotipo { display: none; }
  .marca-simbolo { display: inline-block; }
  .nav-mesa { display: none; }
  .menu { display: block; position: relative; }
  .menu[open] summary span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu[open] summary span:nth-child(2) { opacity: 0; }
  .menu[open] summary span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .menu nav { position: absolute; right: 0; top: 52px; background: var(--paper); border: 1px solid var(--rule); border-radius: 8px; padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 12px; min-width: 220px; box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 5; }
  .menu nav ul { flex-direction: column; gap: 4px; }
  .menu nav ul a { display: block; padding: 8px 0; font-size: 17px; }
}

/* Home */
.abertura { padding-top: clamp(40px, 7vw, 88px); padding-bottom: clamp(32px, 6vw, 72px); display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; }
.abertura h1 { max-width: 26ch; font-size: clamp(30px, 3.4vw, 44px); text-wrap: balance; }
.abertura-figura svg { width: 100%; height: auto; display: block; color: var(--ink); }
@media (max-width: 860px) { .abertura { grid-template-columns: 1fr; gap: 24px; } .abertura-figura { max-width: 260px; } }
.pictograma { display: flex; justify-content: center; align-items: center; min-height: 72px; margin-bottom: 14px; }
.pictograma svg { width: 40px; height: 40px; color: var(--ink); }
.foto { margin: 0; }
.foto img { display: block; width: 100%; height: auto; max-height: 560px; object-fit: cover; }
.foto figcaption { font-size: 13px; color: var(--grey); padding: 8px var(--margem) 0; text-align: right; }
.lede { font-size: clamp(19px, 1.6vw, 22px); line-height: 1.5; max-width: 60ch; margin-top: 24px; color: var(--ink); }
.linhas { border-top: 1px solid var(--rule); padding-top: 48px; padding-bottom: 56px; }
.linhas h2 { margin-bottom: 32px; }
.linhas ol { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
.linhas li { margin: 0; border-top: 1px solid var(--rule); padding-top: 20px; }
.numeral { font-family: var(--sans); font-weight: 500; color: var(--blue); font-size: 14px; letter-spacing: 0.08em; display: block; margin-bottom: 12px; }
.linhas h3 { margin-bottom: 12px; }
.linhas p { margin-bottom: 12px; }
.linhas p strong { font-weight: 600; }
.texto h3 { font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); font-weight: 600; }
.linhas a { font-family: var(--sans); font-size: 15px; font-weight: 500; }
@media (max-width: 860px) { .linhas ol { grid-template-columns: 1fr; gap: 28px; } }

.faixa-tinta { background: var(--ink); color: var(--light); }
.faixa-int { padding-top: 64px; padding-bottom: 64px; display: grid; grid-template-columns: 120px 1fr; gap: 40px; align-items: start; }
.faixa-int .anel svg { width: 96px; height: auto; color: var(--light); }
.faixa-int h2 { color: var(--light); margin-bottom: 16px; }
.faixa-int p { max-width: var(--medida); color: var(--light); }
.faixa-int a { color: var(--blue-light); font-family: var(--sans); font-size: 15px; font-weight: 500; }
.faixa-int a:hover { color: #fff; }
@media (max-width: 720px) { .faixa-int { grid-template-columns: 1fr; gap: 20px; } .faixa-int .anel svg { width: 64px; } }

.assessoria-inicio { border-top: 1px solid var(--rule); padding-top: 48px; padding-bottom: 56px; display: grid; grid-template-columns: 72px 1fr; gap: 28px; align-items: start; }
.assessoria-inicio svg { width: 48px; height: 48px; color: var(--ink); }
.assessoria-inicio h2 { margin-bottom: 12px; }
.assessoria-inicio p { max-width: var(--medida); }
.assessoria-inicio a { font-family: var(--sans); font-size: 15px; font-weight: 500; }
@media (max-width: 720px) { .assessoria-inicio { grid-template-columns: 1fr; gap: 12px; } }
.contato-inicio { padding-top: 64px; padding-bottom: 80px; }
.contato-inicio h2 { margin-bottom: 12px; }
.contato-inicio p { max-width: var(--medida); }
.contato-inicio a { font-family: var(--sans); font-size: 15px; font-weight: 500; }

/* Internal pages */
.banda { padding-top: clamp(40px, 7vw, 80px); padding-bottom: clamp(40px, 7vw, 80px); }
.banda-ink { background: var(--ink); color: var(--light); }
.banda-ink h1, .banda-ink .lede { color: var(--light); }
.banda-ink mark.pendente { background: #5A4F1F; color: var(--light); }
.banda-tinted { background: var(--tint); border-bottom: 1px solid var(--rule); }
.banda-int { display: grid; grid-template-columns: 7fr 4fr; gap: 48px; align-items: center; }
.banda h1 { max-width: 24ch; }
.banda-figura svg { width: 100%; max-width: 380px; height: auto; display: block; margin-left: auto; }
.banda-ink .banda-figura svg { color: var(--light); }
@media (max-width: 860px) { .banda-int { grid-template-columns: 1fr; gap: 24px; } .banda-figura svg { max-width: 220px; margin-left: 0; } }
.banda .lede { margin-top: 20px; }

.texto { padding-top: 48px; padding-bottom: 88px; }
.texto > * { max-width: var(--medida); }
.texto h2 { margin-top: 44px; margin-bottom: 14px; padding-top: 20px; border-top: 1px solid var(--rule); }
.texto h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.texto h3 { margin-top: 28px; margin-bottom: 8px; }
.texto ul, .texto ol { margin: 0 0 20px; }
.texto p + p { margin-top: -2px; }
.texto address, .texto p.endereco { font-style: normal; }
.texto p.nota { margin-top: 36px; padding-top: 16px; border-top: 1px solid var(--rule); font-size: 14px; line-height: 21px; color: var(--grey); max-width: calc(var(--medida) * 17 / 14); }
.texto p.nota a { color: var(--grey); }

/* Footer */
.rodape { border-top: 1px solid var(--rule); font-size: 15px; line-height: 22px; color: var(--grey); }
.rodape-int { padding-top: 40px; padding-bottom: 56px; display: grid; grid-template-columns: 64px 1fr; gap: 28px; align-items: start; }
.rodape-marca svg { width: 40px; height: auto; color: var(--ink); }
.rodape p { margin-bottom: 10px; }
.rodape strong { color: var(--ink); }
.rodape a { color: var(--ink); font-family: var(--sans); font-size: 14px; }
.miudo { font-size: 13px; color: var(--grey); }
.previa { display: inline-block; margin-left: 8px; padding: 1px 8px; border: 1px dashed var(--grey-light); border-radius: 999px; font-family: var(--sans); font-size: 12px; }
@media (max-width: 720px) { .rodape-int { grid-template-columns: 1fr; gap: 16px; } }

@media print {
  .topo, .rodape .previa, .menu { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .banda-ink { background: none; color: #000; border-bottom: 1px solid #000; }
  .banda-ink h1, .banda-ink .lede { color: #000; }
  a { color: #000; text-decoration: none; }
}
.texto p.miudo-texto { font-size: 15px; line-height: 24px; color: var(--grey); margin-top: 20px; max-width: calc(var(--medida) * 17 / 15); }

/* Keep displayed email addresses free of automatic hyphens. */
a[href^="mailto:"] { -webkit-hyphens: none; hyphens: none; }

/* Photographic opening: decorative image, real HTML text and a stable dark scrim. */
.hero-foto { position: relative; isolation: isolate; background: #121718; color: #fff; }
.hero-imagem { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 56%; z-index: -2; }
.hero-foto::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9,16,19,.82) 0%, rgba(9,16,19,.72) 56%, rgba(9,16,19,.18) 100%); }
.hero-foto .abertura { min-height: 590px; grid-template-columns: 7fr 5fr; }
.hero-foto .lede { color: #fff; }
@media (max-width: 860px) {
 .hero-foto .abertura { grid-template-columns: 1fr; min-height: 620px; padding-top: 48px; padding-bottom: 48px; }
 .hero-imagem { object-position: 72% center; }
 .hero-foto::before { background: rgba(9,16,19,.76); }
}
@media print {
 .hero-imagem, .hero-foto::before { display: none; }
 .hero-foto { background: #fff; color: #000; }
 .hero-foto .lede { color: #000; }
 .hero-foto .abertura { min-height: 0; }
}

.hero-foto h1 { hyphens: none; -webkit-hyphens: none; }

/* Restore the original vector composition over the photograph. */
.hero-foto .abertura-figura svg { color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,.25)); }
@media print { .hero-foto .abertura-figura svg { color: #121212; filter: none; } }

/* A rolling swell: the main a stays intact while satellite rings follow the wave. */
@media screen and (prefers-reduced-motion: no-preference) {
 .hero-foto .abertura-figura svg { transform-origin: 50% 50%; animation: axis-swell 9s ease-in-out infinite; }
 .hero-foto .abertura-figura circle:nth-of-type(n+2) { animation: axis-ripple 6.5s ease-in-out infinite; }
 .hero-foto .abertura-figura circle:nth-of-type(2) { animation-duration: 5.7s; animation-delay: -.6s; }
 .hero-foto .abertura-figura circle:nth-of-type(3) { animation-duration: 7.1s; animation-delay: -1.2s; }
 .hero-foto .abertura-figura circle:nth-of-type(4) { animation-duration: 6.3s; animation-delay: -1.8s; }
 .hero-foto .abertura-figura circle:nth-of-type(5) { animation-duration: 8.2s; animation-delay: -2.4s; }
 .hero-foto .abertura-figura circle:nth-of-type(6) { animation-duration: 5.2s; animation-delay: -3s; }
 .hero-foto .abertura-figura circle:nth-of-type(7) { animation-duration: 7.6s; animation-delay: -3.6s; }
}
@keyframes axis-swell {
 0%, 100% { transform: translate(-12px, 10px) rotate(-2deg); }
 28% { transform: translate(11px, -22px) rotate(2deg); }
 54% { transform: translate(15px, -5px) rotate(.6deg); }
 78% { transform: translate(-7px, 15px) rotate(-1.4deg); }
}
@keyframes axis-ripple {
 0%, 100% { transform: translate(-12px, 18px); }
 50% { transform: translate(12px, -26px); }
}

.cnpj { white-space: nowrap; hyphens: none; -webkit-hyphens: none; }

/* Restrained emphasis for the Rio allocation update. */
.texto .destaque-estrategia { margin-top: 32px; margin-bottom: 32px; padding: 24px clamp(18px, 3vw, 30px); border-left: 3px solid var(--blue); background: #F6F6F4; }
.texto .destaque-estrategia p:last-child { margin-bottom: 0; }

.texto .destaque-estrategia p { font-size: 15px; line-height: 24px; }
@media (max-width: 720px) { .texto .destaque-estrategia p { font-size: 14.5px; line-height: 24px; } }

/* Investment cards share the internal pages’ left-aligned reading measure. */
.linhas ol { max-width: var(--medida); column-gap: 24px; row-gap: 32px; }

/* One shared landing-page grid: a reading column and a supporting-art column. */
.inicio .abertura,
.inicio .linhas,
.inicio .assessoria-inicio,
.inicio .faixa-int,
.inicio .contato-inicio {
 display: grid;
 grid-template-columns: minmax(0, var(--medida)) minmax(0, 1fr);
 column-gap: 48px;
}
.inicio .linhas > *, .inicio .contato-inicio > * { grid-column: 1; }
.inicio .linhas ol { width: 100%; max-width: none; }
.inicio .assessoria-inicio > div:last-child,
.inicio .faixa-int > div:last-child { grid-column: 1; grid-row: 1; min-width: 0; }
.inicio .assessoria-figura,
.inicio .faixa-int > .anel { grid-column: 2; grid-row: 1; justify-self: start; }
.inicio .abertura-texto, .inicio .abertura-figura { min-width: 0; }
@media (max-width: 960px) {
 .inicio .abertura,
 .inicio .linhas,
 .inicio .assessoria-inicio,
 .inicio .faixa-int,
 .inicio .contato-inicio { grid-template-columns: minmax(0, var(--medida)); }
 .inicio .abertura-figura { max-width: 260px; }
 .inicio .assessoria-figura,
 .inicio .faixa-int > .anel { grid-column: 1; grid-row: 2; margin-top: 16px; }
 .inicio .abertura { row-gap: 24px; }
}

/* Static card pictograms and owner-selected Advisory/Governance placement. */
.linhas .pictograma { justify-content: flex-start; }
.inicio .assessoria-inicio { row-gap: 16px; }
.inicio .assessoria-inicio > .assessoria-figura { grid-column: 1; grid-row: 1; margin: 0; }
.inicio .assessoria-inicio > div:last-child { grid-column: 1; grid-row: 2; }
/* The mark and its breathing room scale with the outer gutter, independently of copy. */
.inicio .faixa-int {
 --governanca-gutter: max(var(--margem), calc((100vw - var(--largura) - 16px) / 2));
 --governanca-mark: clamp(24px, calc(var(--governanca-gutter) * .4), 96px);
 --governanca-gap: clamp(11.2px, calc(var(--governanca-gutter) * .308), 67.2px);
 row-gap: 16px;
}
.inicio .faixa-int > .governanca-titulo { grid-column: 1; grid-row: 1; margin: 0; }
.inicio .faixa-int > .anel { grid-column: 1; grid-row: 2; margin: 0; align-self: start; transform: translateX(calc(-100% - var(--governanca-gap))); }
.inicio .faixa-int > div.governanca-texto { grid-column: 1; grid-row: 2; }
.inicio .faixa-int .anel svg { display: block; width: var(--governanca-mark); }
/* Phones and tablets retain full-width copy and a comfortably sized mark. */
@media (max-width: 1199px) {
 .inicio .faixa-int > .anel { grid-row: 1; transform: none; }
 .inicio .faixa-int .anel svg { width: 40px; }
 .inicio .faixa-int > .governanca-titulo { grid-row: 2; }
 .inicio .faixa-int > div.governanca-texto { grid-row: 3; }
}

/* Card identifiers share a bottom-aligned row; Advisory artwork follows its heading. */
.linhas .linha-identidade { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.linhas .linha-identidade .numeral { margin: 0; }
.linhas .linha-identidade .pictograma { min-height: 0; margin: 0; flex: 0 0 40px; }
.linhas .linha-identidade svg { display: block; }
.inicio .assessoria-inicio > div:last-child { grid-column: 1; grid-row: 1; }
.assessoria-titulo { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.assessoria-titulo h2 { margin: 0; }
.inicio .assessoria-titulo .assessoria-figura { margin: 0; flex: 0 0 48px; }
.assessoria-titulo svg { display: block; }

/* Allow enlarged text to reflow instead of forcing grid tracks beyond the viewport. */
.banda-int > *, .rodape-int > * { min-width: 0; }
h1, h2, h3, .texto, .rodape { overflow-wrap: anywhere; }
