/* Brazilian Investment Academy — identidade digital 2026 */
:root {
  --navy-950: #020e20;
  --navy-900: #04182f;
  --navy-850: #082039;
  --navy-800: #0b2946;
  --navy-700: #143a5c;
  --gold-700: #9f6f2d;
  --gold-600: #bd873d;
  --gold-500: #d3a252;
  --gold-400: #e2bb75;
  --gold-300: #efd79f;
  --ivory-50: #fbfaf6;
  --ivory-100: #f6f2e8;
  --slate-50: #f8fafc;
  --slate-100: #eef3f7;
  --slate-200: #dce5ec;
  --slate-300: #c4d0db;
  --slate-500: #6a7c8e;
  --slate-600: #526579;
  --slate-700: #34495e;
  --ink: #102237;
  --white: #fff;
  --success: #17785b;
  --success-dark: #0f5f47;
  --danger: #9a3b35;
  --shadow-sm: 0 8px 24px rgba(2, 14, 32, 0.08);
  --shadow-md: 0 20px 60px rgba(2, 14, 32, 0.14);
  --shadow-gold: 0 18px 46px rgba(182, 125, 45, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 76px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ivory-50);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }
::selection { color: var(--navy-950); background: var(--gold-300); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--gold-300);
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; position: relative; }
.section--compact { padding: 72px 0; }
.section--white { background: var(--white); }
.section--ivory { background: var(--ivory-100); }
.section--navy {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 8%, rgba(211, 162, 82, .13), transparent 28rem),
    radial-gradient(circle at 92% 78%, rgba(21, 68, 104, .55), transparent 32rem),
    var(--navy-950);
}
.section--navy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(239, 215, 159, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 215, 159, .12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}
.section > .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-700);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}
.section--navy .eyebrow { color: var(--gold-400); }
.section-title {
  max-width: 850px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.03;
}
.section--navy .section-title { color: var(--white); }
.section-lead {
  max-width: 800px;
  margin: 22px 0 0;
  color: var(--slate-600);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  line-height: 1.7;
}
.section--navy .section-lead { color: #cbd7e3; }
.section-head { margin-bottom: 48px; }
.section-head--center { max-width: 900px; margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-title, .section-head--center .section-lead { margin-inline: auto; }
.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .7fr);
  gap: 60px;
  align-items: end;
}
.section-head--split .section-lead { margin: 0; }
.gold-text { color: var(--gold-500); }

.topbar {
  position: relative;
  z-index: 1002;
  color: #d7e1eb;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(226, 187, 117, .16);
  font-size: .78rem;
  line-height: 1.3;
}
.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar__group { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item strong { color: var(--white); }
.topbar__item a { color: var(--gold-300); text-decoration: none; font-weight: 800; }
.topbar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(226, 187, 117, .12);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-height);
  background: rgba(251, 250, 246, .95);
  border-bottom: 1px solid rgba(4, 24, 47, .08);
  box-shadow: 0 8px 32px rgba(2, 14, 32, .04);
  backdrop-filter: blur(18px);
}
.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  min-width: 245px;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  overflow: hidden;
  border: 1px solid rgba(189, 135, 61, .45);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(4, 24, 47, .14);
}
.brand__name { display: grid; line-height: 1; }
.brand__name strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: .025em;
}
.brand__name span {
  margin-top: 5px;
  color: var(--gold-700);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav-mobile-cta { display: none; }
.nav a {
  position: relative;
  color: var(--slate-700);
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-600);
  transition: transform .2s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  background: transparent;
  border: 1px solid rgba(4, 24, 47, .16);
  border-radius: 13px;
  cursor: pointer;
}
.menu-button__lines, .menu-button__lines::before, .menu-button__lines::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-button__lines { position: relative; }
.menu-button__lines::before, .menu-button__lines::after { content: ""; position: absolute; left: 0; }
.menu-button__lines::before { top: -7px; }
.menu-button__lines::after { top: 7px; }
.menu-button[aria-expanded="true"] .menu-button__lines { background: transparent; }
.menu-button[aria-expanded="true"] .menu-button__lines::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-button__lines::after { top: 0; transform: rotate(-45deg); }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .91rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 12px 26px rgba(189, 135, 61, .28);
}
.btn--primary:hover { box-shadow: 0 16px 32px rgba(189, 135, 61, .38); }
.btn--navy {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 12px 26px rgba(4, 24, 47, .18);
}
.btn--navy:hover { background: var(--navy-800); }
.btn--outline {
  color: var(--navy-950);
  background: rgba(255,255,255,.76);
  border-color: rgba(4, 24, 47, .2);
}
.btn--outline:hover { border-color: var(--gold-600); box-shadow: var(--shadow-sm); }
.section--navy .btn--outline {
  color: var(--white);
  background: rgba(255,255,255,.035);
  border-color: rgba(239, 215, 159, .38);
}
.section--navy .btn--outline:hover { background: rgba(255,255,255,.07); }
.btn--small { min-height: 44px; padding: 10px 17px; font-size: .82rem; border-radius: 12px; }
.btn__arrow { font-size: 1.2em; line-height: 1; transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 14%, rgba(211, 162, 82, .16), transparent 27rem),
    radial-gradient(circle at 15% 100%, rgba(19, 62, 96, .7), transparent 34rem),
    linear-gradient(135deg, var(--navy-950), #061b36 62%, #0b2947);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(226, 187, 117, .17);
  border-radius: 50%;
}
.hero::before { width: 820px; height: 820px; right: -390px; top: -360px; }
.hero::after { width: 530px; height: 530px; right: -230px; top: -215px; }
.hero__grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
  padding: 82px 0 86px;
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-300);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero__eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -.052em;
  line-height: .96;
}
.hero h1 span { color: var(--gold-400); }
.hero__lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #ccd8e4;
  font-size: clamp(1.07rem, 2vw, 1.25rem);
  line-height: 1.68;
}
.hero__lead strong { color: var(--white); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__microcopy {
  max-width: 700px;
  margin: 18px 0 0;
  color: #93a7ba;
  font-size: .78rem;
  line-height: 1.55;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.proof-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #dfe8f0;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 720;
  line-height: 1.2;
}
.proof-chip::before { content: ""; width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--gold-400); }

.logo-stage {
  position: relative;
  z-index: 2;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid rgba(239, 215, 159, .26);
  border-radius: var(--radius-xl);
  box-shadow: 0 35px 90px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.logo-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px;
  border: 1px solid rgba(211, 162, 82, .13);
  border-radius: calc(var(--radius-xl) + 14px);
}
.logo-stage__image {
  overflow: hidden;
  background: var(--navy-900);
  border-radius: 25px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}
.logo-stage__image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.logo-stage__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.logo-fact {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 14px;
  background: rgba(2,14,32,.62);
  border: 1px solid rgba(226,187,117,.15);
  border-radius: 15px;
}
.logo-fact strong { color: var(--gold-300); font-size: .93rem; line-height: 1.25; }
.logo-fact span { margin-top: 5px; color: #9fb0c1; font-size: .69rem; line-height: 1.35; }

.trust-strip {
  position: relative;
  z-index: 3;
  color: var(--white);
  background: #061a33;
  border-top: 1px solid rgba(226,187,117,.14);
  border-bottom: 1px solid rgba(226,187,117,.14);
}
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item {
  min-height: 114px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 25px;
  border-right: 1px solid rgba(226,187,117,.12);
}
.trust-item:last-child { border-right: 0; }
.trust-item__number {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(226,187,117,.38);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}
.trust-item strong { display: block; color: var(--white); font-size: .91rem; line-height: 1.3; }
.trust-item span { display: block; margin-top: 4px; color: #9fb0c2; font-size: .72rem; line-height: 1.4; }

.manifesto {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: 76px;
  align-items: center;
}
.manifesto__statement {
  position: relative;
  margin: 0;
  padding-left: 28px;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.08;
}
.manifesto__statement::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(var(--gold-300),var(--gold-700));
}
.manifesto__body p { margin: 0 0 18px; color: var(--slate-600); font-size: 1.08rem; }
.manifesto__body p:last-child { margin-bottom: 0; }
.manifesto__body strong { color: var(--navy-950); }

.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.cards--2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.solution-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 34px rgba(4,24,47,.055);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.solution-card:hover { transform: translateY(-5px); border-color: rgba(189,135,61,.48); box-shadow: var(--shadow-md); }
.solution-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -66px;
  top: -66px;
  border: 1px solid rgba(189,135,61,.2);
  border-radius: 50%;
}
.solution-card__index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--ivory-100);
  border: 1px solid rgba(189,135,61,.25);
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 700;
}
.solution-card h3 { margin: 22px 0 10px; color: var(--navy-950); font-size: 1.22rem; line-height: 1.3; }
.solution-card p { margin: 0; color: var(--slate-600); font-size: .94rem; line-height: 1.64; }
.solution-card__note {
  margin-top: 18px;
  padding: 11px 12px;
  color: var(--slate-700);
  background: var(--slate-50);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 9px 9px 0;
  font-size: .74rem;
  line-height: 1.5;
}
.solution-card__link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--gold-700);
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
}
.solution-card__link span { transition: transform .2s ease; }
.solution-card__link:hover span { transform: translateX(3px); }

.network-panel {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(350px,.75fr);
  gap: 60px;
  align-items: center;
  padding: 56px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 10%, rgba(226,187,117,.15), transparent 18rem),
    var(--navy-900);
  border: 1px solid rgba(226,187,117,.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.network-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem,4vw,4rem);
  line-height: 1.03;
}
.network-panel p { margin: 20px 0 0; color: #c3d0dd; font-size: 1.05rem; }
.network-score {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.network-stat {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(226,187,117,.18);
  border-radius: 19px;
}
.network-stat strong { color: var(--gold-300); font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.network-stat span { margin-top: 10px; color: #c3d0dd; font-size: .78rem; line-height: 1.45; }
.network-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.process-grid { counter-reset: process; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.process-card {
  counter-increment: process;
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}
.process-card::before {
  content: counter(process,decimal-leading-zero);
  display: block;
  color: var(--gold-600);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
}
.process-card h3 { margin: 20px 0 8px; color: var(--navy-950); font-size: 1.08rem; line-height: 1.3; }
.process-card p { margin: 0; color: var(--slate-600); font-size: .87rem; line-height: 1.58; }
.process-note {
  margin-top: 26px;
  padding: 22px 24px;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 16px;
  font-weight: 760;
  text-align: center;
}

.academy-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 72px; align-items: center; }
.academy-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg,var(--navy-900),var(--navy-800));
  border: 1px solid rgba(226,187,117,.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.academy-visual::before, .academy-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(226,187,117,.22);
  border-radius: 50%;
}
.academy-visual::before { width: 440px; height: 440px; }
.academy-visual::after { width: 310px; height: 310px; }
.academy-monogram {
  position: relative;
  z-index: 1;
  width: min(55%,250px);
  border: 1px solid rgba(226,187,117,.28);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}
.academy-label {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 18px;
  color: var(--gold-300);
  background: rgba(2,14,32,.78);
  border: 1px solid rgba(226,187,117,.22);
  border-radius: 16px;
  font-size: .85rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.academy-copy h2 { margin: 0; color: var(--navy-950); font-family: var(--font-display); font-size: clamp(2.4rem,5vw,4.4rem); line-height: 1.02; }
.academy-copy > p { margin: 23px 0 0; color: var(--slate-600); font-size: 1.05rem; }
.track-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin: 28px 0; padding: 0; list-style: none; }
.track-list li {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  color: var(--slate-700);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 700;
}
.track-list li::before { content: ""; width: 8px; height: 8px; flex: 0 0 8px; background: var(--gold-500); border-radius: 50%; }

.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 42px; }
.pillar {
  min-height: 220px;
  padding: 26px;
  color: var(--white);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(226,187,117,.17);
  border-radius: 20px;
}
.pillar__num { color: var(--gold-300); font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.pillar h3 { margin: 30px 0 10px; color: var(--white); font-size: 1.05rem; }
.pillar p { margin: 0; color: #b7c6d5; font-size: .82rem; line-height: 1.55; }

.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.partner-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid rgba(226,187,117,.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.partner-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -155px;
  top: -150px;
  border: 1px solid rgba(226,187,117,.22);
  border-radius: 50%;
}
.partner-card__tag { color: var(--gold-300); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.partner-card h3 { margin: 18px 0 14px; font-family: var(--font-display); font-size: clamp(2rem,4vw,3.1rem); line-height: 1.04; }
.partner-card > p { margin: 0; color: #c4d1dd; font-size: .96rem; }
.partner-list { display: grid; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.partner-list li { display: flex; gap: 10px; color: #dbe4ec; font-size: .84rem; line-height: 1.5; }
.partner-list li::before { content: "✓"; color: var(--gold-300); font-weight: 900; }
.partner-card .btn { width: fit-content; margin-top: auto; }
.referral-flow {
  margin-top: 26px;
  padding: 30px;
  background: var(--ivory-100);
  border: 1px solid rgba(189,135,61,.22);
  border-radius: var(--radius-md);
}
.referral-flow h3 { margin: 0; color: var(--navy-950); font-size: 1.08rem; }
.flow-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 20px; }
.flow-step { position: relative; padding: 18px; background: var(--white); border: 1px solid var(--slate-200); border-radius: 14px; }
.flow-step strong { display: block; color: var(--gold-700); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.flow-step span { display: block; margin-top: 8px; color: var(--slate-700); font-size: .78rem; line-height: 1.45; }

.purpose-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(350px,.72fr); gap: 72px; align-items: center; }
.purpose-copy h2 { margin: 0; color: var(--white); font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4.8rem); line-height: 1.01; }
.purpose-copy p { margin: 24px 0 0; color: #c3d1dd; font-size: 1.04rem; }
.purpose-quote {
  position: relative;
  padding: 34px;
  color: var(--navy-950);
  background: linear-gradient(145deg,var(--gold-300),var(--gold-500));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
}
.purpose-quote::before { content: "“"; position: absolute; top: 6px; right: 24px; color: rgba(4,24,47,.18); font-family: var(--font-display); font-size: 7rem; line-height: 1; }
.purpose-quote blockquote { position: relative; margin: 0; font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.35rem); font-weight: 700; line-height: 1.18; }
.purpose-quote cite { display: block; margin-top: 20px; font-size: .76rem; font-style: normal; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.techsenso-card {
  display: grid;
  grid-template-columns: 210px minmax(0,1fr);
  gap: 38px;
  align-items: center;
  padding: 42px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.techsenso-seal {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  background: var(--navy-950);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(226,187,117,.05);
  text-align: center;
}
.techsenso-seal strong { display: block; font-family: var(--font-display); font-size: 1.75rem; line-height: 1; }
.techsenso-seal span { display: block; margin-top: 7px; font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.techsenso-copy h2 { margin: 0; color: var(--navy-950); font-family: var(--font-display); font-size: clamp(2rem,4vw,3.4rem); line-height: 1.05; }
.techsenso-copy p { margin: 16px 0 0; color: var(--slate-600); }
.techsenso-copy .btn { margin-top: 22px; }

.security-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: 64px; align-items: start; }
.security-panel {
  position: sticky;
  top: 112px;
  padding: 38px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid rgba(226,187,117,.24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.security-panel h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4.1rem); line-height: 1.03; }
.security-panel p { margin: 20px 0 0; color: #c2cfdb; }
.security-panel .btn { margin-top: 24px; }
.checklist { display: grid; gap: 14px; }
.check-item {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr);
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 17px;
}
.check-item__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--success-dark);
  background: #e7f5ef;
  border-radius: 13px;
  font-weight: 900;
}
.check-item h3 { margin: 0; color: var(--navy-950); font-size: 1rem; }
.check-item p { margin: 7px 0 0; color: var(--slate-600); font-size: .83rem; line-height: 1.55; }
.verification-box {
  margin-top: 18px;
  padding: 24px;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 17px;
}
.verification-box strong { display: block; font-size: 1rem; }
.verification-box p { margin: 7px 0 0; font-size: .8rem; line-height: 1.5; }
.verification-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.verification-links a { color: var(--navy-950); font-size: .76rem; font-weight: 900; }

.faq-list { max-width: 940px; margin: 0 auto; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(4,24,47,.035);
}
.faq-list details + details { margin-top: 12px; }
.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--navy-950);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  color: var(--gold-700);
  background: var(--ivory-100);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details[open] { border-color: rgba(189,135,61,.4); }
.faq-answer { padding: 0 22px 22px; color: var(--slate-600); font-size: .91rem; }
.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 10px; }

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 64px;
  color: var(--white);
  background: linear-gradient(135deg,var(--navy-950),var(--navy-800));
  border: 1px solid rgba(226,187,117,.24);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.final-cta::before, .final-cta::after { content: ""; position: absolute; border: 1px solid rgba(226,187,117,.18); border-radius: 50%; }
.final-cta::before { width: 450px; height: 450px; right: -190px; top: -220px; }
.final-cta::after { width: 300px; height: 300px; right: -110px; top: -145px; }
.final-cta__content { position: relative; z-index: 1; max-width: 820px; }
.final-cta h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4.7rem); line-height: 1.02; }
.final-cta p { margin: 20px 0 0; color: #c7d4df; font-size: 1.05rem; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-footer { color: #b7c5d2; background: #010a17; }
.footer__main { padding: 72px 0 46px; }
.footer__grid { display: grid; grid-template-columns: 1.45fr .7fr .7fr 1fr; gap: 44px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand img { width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(226,187,117,.32); }
.footer-brand strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 1.1rem; line-height: 1.15; }
.footer-brand span { display: block; margin-top: 6px; color: var(--gold-300); font-size: .66rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-about { margin: 20px 0 0; max-width: 430px; font-size: .79rem; line-height: 1.65; }
.footer__col h3 { margin: 0 0 16px; color: var(--white); font-size: .87rem; }
.footer__col a, .footer__col span { display: block; margin: 8px 0; color: #b7c5d2; font-size: .76rem; text-decoration: none; }
.footer__col a:hover { color: var(--gold-300); }
.footer__legal {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .7rem;
  line-height: 1.6;
}
.footer__legal p { margin: 0; }
.footer__legal p + p { margin-top: 8px; }
.footer__bottom {
  padding: 18px 0;
  color: #8294a6;
  background: #000713;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .68rem;
}
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 20px; }

.whatsapp-float {
  position: fixed;
  z-index: 950;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(14,92,69,.34);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); background: var(--success-dark); }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

/* Legal and utility pages */
.legal-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(211,162,82,.18), transparent 24rem),
    var(--navy-950);
}
.legal-hero__inner { padding: 72px 0 64px; }
.legal-hero h1 { max-width: 900px; margin: 0; font-family: var(--font-display); font-size: clamp(2.8rem,6vw,5.2rem); line-height: 1; }
.legal-hero p { max-width: 760px; margin: 20px 0 0; color: #c1cfdb; }
.breadcrumb { display: inline-flex; margin-bottom: 24px; color: var(--gold-300); font-size: .78rem; font-weight: 800; text-decoration: none; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 50px; align-items: start; }
.legal-nav { position: sticky; top: 110px; padding: 22px; background: var(--white); border: 1px solid var(--slate-200); border-radius: 16px; }
.legal-nav strong { display: block; margin-bottom: 12px; color: var(--navy-950); font-size: .83rem; }
.legal-nav a { display: block; padding: 7px 0; color: var(--slate-600); font-size: .76rem; text-decoration: none; }
.legal-nav a:hover { color: var(--gold-700); }
.legal-article { padding: 42px; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.legal-article h2 { margin: 38px 0 12px; color: var(--navy-950); font-family: var(--font-display); font-size: 1.8rem; line-height: 1.2; }
.legal-article h2:first-child { margin-top: 0; }
.legal-article h3 { margin: 26px 0 8px; color: var(--navy-950); font-size: 1rem; }
.legal-article p, .legal-article li { color: var(--slate-600); font-size: .91rem; }
.legal-article ul, .legal-article ol { padding-left: 22px; }
.legal-callout { margin: 24px 0; padding: 20px; color: var(--navy-950); background: var(--ivory-100); border-left: 4px solid var(--gold-500); border-radius: 0 12px 12px 0; }
.legal-meta { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--slate-200); color: var(--slate-500); font-size: .74rem; }
.error-page { min-height: 68vh; display: grid; place-items: center; text-align: center; }
.error-page__box { max-width: 720px; padding: 70px 20px; }
.error-page__code { color: var(--gold-500); font-family: var(--font-display); font-size: clamp(6rem,18vw,12rem); line-height: .8; }
.error-page h1 { margin: 30px 0 14px; color: var(--navy-950); font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.8rem); }
.error-page p { color: var(--slate-600); }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 4px; }

@media (max-width: 1080px) {
  .nav { gap: 18px; }
  .nav a { font-size: .8rem; }
  .brand { min-width: 215px; }
  .hero__grid { grid-template-columns: minmax(0,1fr) 390px; gap: 44px; }
  .cards--3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(226,187,117,.12); }
  .pillars { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer__col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .topbar__inner { padding: 9px 0; align-items: flex-start; }
  .topbar__group:last-child { display: none; }
  .topbar__group { flex-wrap: wrap; gap: 8px 16px; }
  .brand__name strong { font-size: .92rem; }
  .header__actions .btn { display: none; }
  .menu-button { display: inline-flex; }
  .nav {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    display: none;
    padding: 28px 20px 40px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: rgba(251,250,246,.99);
  }
  .nav.is-open { display: flex; }
  .nav a { min-height: 54px; display: flex; align-items: center; padding: 0 8px; border-bottom: 1px solid var(--slate-200); font-size: .98rem; }
  .nav a::after { display: none; }
  .nav .nav-mobile-cta { display: flex; margin-top: 18px; justify-content: center; color: var(--navy-950); background: var(--gold-300); border: 0; border-radius: 14px; }
  .hero__grid { grid-template-columns: 1fr; padding: 72px 0 82px; }
  .hero__content { max-width: 800px; }
  .logo-stage { width: min(100%,620px); margin-inline: auto; }
  .section-head--split, .manifesto, .network-panel, .academy-grid, .purpose-grid, .security-grid { grid-template-columns: 1fr; }
  .section-head--split { gap: 22px; }
  .manifesto { gap: 38px; }
  .network-panel { gap: 36px; padding: 42px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .academy-grid { gap: 46px; }
  .academy-visual { min-height: 440px; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { min-height: 420px; }
  .flow-steps { grid-template-columns: repeat(2,1fr); }
  .purpose-grid { gap: 42px; }
  .security-panel { position: static; }
  .techsenso-card { grid-template-columns: 160px 1fr; }
  .techsenso-seal { width: 150px; height: 150px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px),var(--container)); }
  .section { padding: 74px 0; }
  .section--compact { padding: 56px 0; }
  .topbar__item:nth-child(2) { display: none; }
  .brand { min-width: auto; gap: 9px; }
  .brand__mark { width: 43px; height: 43px; flex-basis: 43px; }
  .brand__name strong { font-size: .83rem; }
  .brand__name span { font-size: .54rem; letter-spacing: .12em; }
  .hero__grid { min-height: auto; padding: 58px 0 70px; gap: 38px; }
  .hero h1 { font-size: clamp(2.85rem,14vw,4.5rem); }
  .hero__lead { font-size: 1rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__proof { display: grid; grid-template-columns: 1fr; }
  .proof-chip { width: 100%; border-radius: 12px; }
  .logo-stage { padding: 14px; border-radius: 28px; }
  .logo-stage::before { inset: -8px; }
  .logo-stage__image { border-radius: 19px; }
  .logo-stage__facts { grid-template-columns: 1fr; }
  .logo-fact { min-height: 68px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 90px; padding: 20px 16px; border-right: 0; border-bottom: 1px solid rgba(226,187,117,.12); }
  .trust-item:last-child { border-bottom: 0; }
  .manifesto__statement { padding-left: 20px; font-size: 2.2rem; }
  .cards--3, .cards--2, .process-grid, .pillars { grid-template-columns: 1fr; }
  .solution-card { padding: 24px; }
  .network-panel { padding: 30px 22px; border-radius: 24px; }
  .network-score { grid-template-columns: 1fr 1fr; }
  .network-stat { min-height: 125px; padding: 18px; }
  .network-stat strong { font-size: 2rem; }
  .network-actions { flex-direction: column; }
  .network-actions .btn { width: 100%; }
  .process-card { min-height: auto; padding: 24px; }
  .academy-visual { min-height: 370px; border-radius: 27px; }
  .track-list { grid-template-columns: 1fr; }
  .partner-card { min-height: 0; padding: 30px 24px; border-radius: 24px; }
  .partner-card .btn { width: 100%; margin-top: 28px; }
  .referral-flow { padding: 24px 18px; }
  .flow-steps { grid-template-columns: 1fr; }
  .purpose-quote { padding: 27px 23px; }
  .techsenso-card { grid-template-columns: 1fr; padding: 28px 22px; text-align: left; }
  .techsenso-seal { width: 145px; height: 145px; margin-inline: auto; }
  .security-panel { padding: 30px 23px; }
  .check-item { grid-template-columns: 38px minmax(0,1fr); padding: 19px; gap: 13px; }
  .check-item__icon { width: 38px; height: 38px; }
  .verification-links { flex-direction: column; align-items: flex-start; }
  .final-cta { padding: 42px 24px; border-radius: 27px; }
  .final-cta__actions { flex-direction: column; }
  .final-cta__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__col:last-child { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; gap: 6px; }
  .whatsapp-float { width: 56px; height: 56px; right: 14px; bottom: 14px; }
  .legal-hero__inner { padding: 54px 0 48px; }
  .legal-article { padding: 27px 20px; }
  .legal-nav { display: none; }
}

@media (max-width: 390px) {
  .brand__name strong { font-size: .76rem; }
  .brand__name span { font-size: .49rem; }
  .hero h1 { font-size: 2.7rem; }
  .network-score { grid-template-columns: 1fr; }
  .trust-item__number { width: 38px; height: 38px; flex-basis: 38px; }
}

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

@media print {
  .topbar, .site-header, .whatsapp-float, .hero__actions, .network-actions, .final-cta, .site-footer { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .section, .hero, .legal-hero { padding: 22px 0; color: #000; background: #fff !important; }
  .hero h1, .section-title, .legal-hero h1 { color: #000; }
  .container { width: 100%; }
  a { color: #000; text-decoration: none; }
}
