/* ===========================================================================
   page-a-investpro.css · v3 (03/09) — redesign institucional completo
   ---------------------------------------------------------------------------
   O design system vive em assets/css/system.css. Aqui: índice da página
   (pagenav), Quem somos (split + colagem assimétrica), Princípios (intro
   sticky + ledger), Trajetória (banda navy c/ timeline), Solidez (faixa de
   números + foto panorâmica), Administradoras (painel navy de linhas) e
   Frentes (bento assimétrico). Ritmo: branco → off → navy → branco → branco
   (painel navy) → off.
   =========================================================================== */

/* ---------- ÍNDICE DA PÁGINA ---------- */
.section_pagenav {
  background: var(--bg);
  border-bottom: 1px solid var(--border-2);
}
.pagenav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  padding: 15px 0;
}
.pagenav_label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.pagenav_links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.pagenav_links::-webkit-scrollbar { display: none; }
.pagenav_links a {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--t), border-color var(--t);
}
.pagenav_links a:hover { color: var(--blue); border-color: var(--blue); }
.pagenav_cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-left: auto;
}
.pagenav_cta svg { transition: transform var(--t); }
.pagenav_cta:hover svg { transform: translateX(3px); }

/* ---------- QUEM SOMOS · split + colagem assimétrica ---------- */
.qs_head { margin-bottom: clamp(32px, 4vw, 56px); }
.qs_head h2 { margin: 0; }
.qs_split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: stretch;
}
.qs_title { display: flex; flex-direction: column; gap: clamp(24px, 3vw, 40px); }
.qs_title .lead-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink-strong);
  text-wrap: balance;
}
.qs_title .lead-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.qs_sign {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid var(--border);
}
.qs_sign-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-strong);
}
.qs_sign-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.qs_body p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}
.qs_body p:last-child { margin-bottom: 0; }
.qs_body p.is-lead {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--ink);
}
/* Faixa de 3 fotos de altura igual, legendas sobrepostas (galeria organizada) */
.qs_strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: clamp(40px, 5vw, 72px);
}
.qs_shot {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.qs_shot img {
  display: block;
  width: 100%;
  height: clamp(300px, 30vw, 440px);
  object-fit: cover;
}
.qs_shot:nth-child(2) img { object-position: center 22%; }
.qs_shot:nth-child(3) img { object-position: center 30%; }
.qs_shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 18px 14px;
  background: linear-gradient(180deg, rgba(7, 21, 42, 0) 0%, rgba(7, 21, 42, 0.82) 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.45;
}

/* ---------- PRINCÍPIOS · intro sticky + ledger ---------- */
.section_about.is-principios {
  background: var(--off);
  border-top: 1px solid var(--border-2);
}
.princ_grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}
.princ_intro {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.princ_intro h2 { margin: 0; }
.princ_lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 44ch;
}
.princ_list { border-top: 1px solid var(--border); }
.princ_row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--border);
}
.princ_row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  transition: color var(--t);
}
.princ_row:hover h3 { color: var(--blue); }
.princ_row p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 58ch;
}

/* ---------- TRAJETÓRIA · banda navy + timeline ---------- */
.section_traj {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.tl_head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.tl_head h2 { margin: 0; color: var(--on-dark-1); }
.tl_lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-dark-2);
  max-width: 52ch;
}
.tl { list-style: none; margin: 0; padding: 0; position: relative; }
.tl::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 36px);
  padding: clamp(18px, 2.4vw, 30px) 0;
}
.tl-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue, #0072ce);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
.tl-body h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.9vw, 25px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--on-dark-1);
}
.tl-body p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-dark-2);
  max-width: 68ch;
}
.tl-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7db4e8;
}

/* ---------- SOLIDEZ · faixa de números + foto panorâmica ---------- */
.section_about.is-numbers { background: var(--bg); }
.num_head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.num_head h2 { margin: 0; }
.num_lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
}
.num_band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  padding: clamp(24px, 3vw, 40px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.num_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: clamp(16px, 2vw, 24px);
  border-left: 1px solid var(--border);
}
.num_item:first-child { padding-left: 0; border-left: none; }
.num_v {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-strong);
}
.num_l {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}
.num_photo { margin: clamp(28px, 3.5vw, 48px) 0 0; }
.num_photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 32%;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.num_photo figcaption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.section_about.is-numbers .trust-seal-row {
  justify-content: flex-start;
  margin-top: clamp(24px, 3vw, 36px);
}
.statistics_disclaimer {
  margin-top: clamp(18px, 2vw, 24px);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}

/* ---------- ADMINISTRADORAS · painel navy de linhas ---------- */
.section_about.is-administradoras { border-top: 1px solid var(--border-2); }
.adm_head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.adm_head h2 { margin: 0; }
.adm_lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 48ch;
}
.adm_panel {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--r-lg);
  padding: clamp(8px, 1.2vw, 14px) clamp(20px, 3vw, 44px);
  overflow: hidden;
}
.adm_row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) auto 36px;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  padding: clamp(22px, 2.6vw, 30px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-decoration: none;
}
.adm_brand img { display: block; height: 34px; width: auto; }
.adm_row[data-brand="volkswagen"] .adm_brand img { height: 40px; }
.adm_row[data-brand="stellantis"] .adm_brand img { height: 44px; }
.adm_desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--on-dark-2);
}
.adm_stat {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7db4e8;
  white-space: nowrap;
}
.adm_arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-dark-1);
  transition: transform var(--t), background var(--t);
}
.adm_arrow svg { width: 15px; height: 15px; }
.adm_row:hover .adm_arrow {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.16);
}
.adm_foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: clamp(16px, 2vw, 22px) 0;
}
.adm_foot span { font-size: 12.5px; color: var(--on-dark-3); }

/* ---------- FRENTES · bento assimétrico ---------- */
.section_frentes {
  background: var(--off);
  border-top: 1px solid var(--border-2);
}
.fr_head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.fr_head h2 { margin: 0; }
.fr_lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}
.fr_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-rows: auto auto;
  gap: clamp(16px, 2vw, 24px);
}
.fr_card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(26px, 3vw, 40px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: transform var(--t), border-color var(--t);
}
.fr_card:hover { transform: translateY(-3px); border-color: rgba(0, 114, 206, 0.4); }
.fr_card.is-featured {
  grid-row: 1 / span 2;
  gap: 18px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: transparent;
}
.fr_card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
}
.fr_card h3 em { font-style: italic; color: var(--blue); }
.fr_card.is-featured h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--on-dark-1);
}
.fr_card.is-featured h3 em { color: #7db4e8; }
.fr_card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}
.fr_card.is-featured p { font-size: 16px; color: var(--on-dark-2); }
.fr_list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fr_list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--on-dark-2);
}
.fr_list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #7db4e8;
  border-bottom: 2px solid #7db4e8;
  transform: rotate(-45deg);
}
.fr_link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.fr_link svg { transition: transform var(--t); }
.fr_link:hover svg { transform: translateX(3px); }
.fr_link.is-light {
  margin-top: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  transition: background var(--t), border-color var(--t);
}
.fr_link.is-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 991px) {
  .pagenav { flex-wrap: wrap; row-gap: 6px; }
  .pagenav_label { display: none; }
  .pagenav_links { order: 1; flex: 1 0 100%; }
  .pagenav_cta { order: 2; margin-left: 0; }
  .qs_split,
  .princ_grid,
  .tl_head,
  .num_head,
  .adm_head,
  .fr_head { grid-template-columns: 1fr; align-items: start; }
  .princ_intro { position: static; }
  .num_band { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .num_item:nth-child(odd) { padding-left: 0; border-left: none; }
  .fr_grid { grid-template-columns: 1fr; }
  .fr_card.is-featured { grid-row: auto; }
  .adm_row { grid-template-columns: 190px minmax(0, 1fr) auto 36px; }
}
@media (max-width: 767px) {
  .qs_strip { grid-template-columns: 1fr 1fr; }
  .qs_shot.is-wide { grid-column: 1 / -1; }
  .qs_shot img { height: clamp(200px, 42vw, 300px); }
  .qs_shot.is-wide img { height: clamp(210px, 52vw, 320px); }
  .num_photo img { aspect-ratio: 16 / 9; }
  .adm_row {
    grid-template-columns: minmax(0, 1fr) 36px;
    row-gap: 8px;
    align-items: start;
  }
  .adm_brand, .adm_desc, .adm_stat { grid-column: 1; }
  .adm_stat { white-space: normal; }
  .adm_arrow { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
}
@media (max-width: 479px) {
  .num_band { grid-template-columns: 1fr; }
  .num_item { padding-left: 0; border-left: none; }
  .tl::before { left: 20px; }
  .tl-item { grid-template-columns: 40px minmax(0, 1fr); }
  .tl-node { width: 40px; height: 40px; font-size: 13.5px; }
}

/* ============================================================
   HERO · alinhar à COLUNA GLOBAL (04/09)
   A .hero-master_grid usava max-width fixo 1280px e escapava da
   coluna global (min(1710px,95%)), ficando ~17px mais larga e o
   título ~8px à esquerda do logo/menu. Aqui ela passa a correr na
   MESMA coluna do navbar e das seções. Mobile/tablet intocados.
   ============================================================ */
@media (min-width: 992px) {
  body[data-page="a-investpro"] .hero-master_grid,
  body[data-page="a-investpro"] .hero-foot { max-width: min(1710px, 95%); }
}
