:root {
  --black: #070707;
  --black-soft: #101010;
  --black-card: #161616;
  --white: #ffffff;
  --paper: #f3f1eb;
  --paper-soft: #faf9f5;
  --silver: #c9c9c9;
  --silver-dark: #858585;
  --gold: #d3ad38;
  --gold-light: #f0d47a;
  --gold-dark: #9d791d;
  --text: #191919;
  --muted: #696969;
  --line-dark: rgba(255,255,255,.11);
  --line-light: rgba(20,20,20,.12);
  --shadow: 0 30px 80px rgba(0,0,0,.22);
  --container: 1220px;
  --header-height: 88px;
  --radius: 22px;
  --hero-x: 0px;
  --hero-y: 0px;
  --evaluation-x: 0px;
  --evaluation-y: 0px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a,
button,
input,
select,
textarea,
summary {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
a {
  color: inherit;
}

.container,
.header-inner {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(5,5,5,.86), rgba(5,5,5,.25));
  backdrop-filter: blur(8px);
  transition: height .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  height: 76px;
  border-color: var(--line-dark);
  background: rgba(7,7,7,.94);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
  text-decoration: none;
}

.brand-symbol {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.34));
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 13px;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: #8d8d8d;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.35vw, 22px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #bdbdbd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .115em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}

.main-nav a:not(.nav-support)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-support {
  padding: 12px 15px !important;
  border: 1px solid rgba(211,173,56,.42);
  color: var(--gold-light) !important;
  background: rgba(211,173,56,.055);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.03);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

/* Shared typography */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--silver);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.eyebrow.dark {
  color: #666;
}

.section {
  padding: 122px 0;
}

.section-light {
  background: var(--paper);
  color: var(--text);
}

.section-dark {
  background: var(--black-soft);
  color: var(--white);
}

.section-heading h2,
.who-copy h2,
.credential-card h2,
.application-copy h2,
.support-card h2,
.testimony-layout h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.8vw, 4.9rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.section-heading.centered {
  max-width: 870px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered > p:last-child {
  max-width: 700px;
  margin: 24px auto 0;
  color: #8b8b8b;
}

.section-light .section-heading.centered > p:last-child {
  color: #676767;
}

/* Buttons */
.button {
  position: relative;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 24px;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease;
  isolation: isolate;
}

.button::before {
  content: "";
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -30%;
  width: 20%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
  transform: rotate(16deg) translateX(-240%);
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}

.button:hover::before {
  transform: rotate(16deg) translateX(820%);
}

.button:hover {
  transform: translateY(-3px);
}

.button b {
  font-size: 15px;
  font-weight: 400;
  transition: transform .25s ease;
}

.button:hover b {
  transform: translate(3px,-2px);
}

.button-primary {
  border-color: var(--gold);
  background: linear-gradient(115deg, #e2c05b, #b58a22);
  color: #111;
  box-shadow: 0 18px 48px rgba(211,173,56,.18), inset 0 1px rgba(255,255,255,.45);
}

.button-ghost {
  border-color: rgba(255,255,255,.18);
  color: var(--white);
  background: rgba(255,255,255,.025);
}

.button-secondary {
  border-color: rgba(211,173,56,.40);
  color: var(--gold-light);
  background: rgba(211,173,56,.05);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(960px, 100svh);
  display: grid;
  align-items: center;
  padding: 160px 0 110px;
  overflow: hidden;
  background: #050505;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.91) 35%, rgba(5,5,5,.48) 65%, rgba(5,5,5,.82) 100%),
    linear-gradient(180deg, rgba(5,5,5,.24), rgba(5,5,5,.66)),
    url("assets/hero-ball-bg.webp");
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
  background-position: center, center, calc(52% + var(--hero-x)) calc(48% + var(--hero-y));
  opacity: .68;
  transform: scale(1.035);
  filter: saturate(.95) contrast(1.04) blur(1px);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(90deg, transparent 8%, #000 42%, #000 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -8%;
  top: 12%;
  z-index: 1;
  width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,173,56,.14), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 190px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, .94fr);
  gap: 86px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.registration-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(211,173,56,.27);
  background: rgba(211,173,56,.06);
  color: #d8c993;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.registration-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(211,173,56,.08), 0 0 16px rgba(211,173,56,.55);
  animation: pulse 2.5s ease-in-out infinite;
}

.hero h1 {
  max-width: 800px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.8vw, 4.9rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.058em;
  text-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.hero h1 em {
  display: block;
  margin-top: .12em;
  background: linear-gradient(92deg, #f7e29a 0%, #d4ad34 48%, #fff2bd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-top: 28px;
  color: #c8c8c8;
  font-size: clamp(.96rem, 1.18vw, 1.08rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-proofs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin-top: 46px;
  border-top: 1px solid var(--line-dark);
}

.hero-proofs div {
  display: grid;
  gap: 5px;
  padding: 23px 16px 0 0;
}

.hero-proofs strong {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.hero-proofs span {
  color: #777;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-dashboard {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.dashboard-orbit {
  position: absolute;
  border: 1px solid rgba(211,173,56,.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  width: 470px;
  aspect-ratio: 1;
  animation: spin 32s linear infinite;
}

.orbit-b {
  width: 560px;
  aspect-ratio: 1;
  border-color: rgba(255,255,255,.045);
  animation: spin 46s linear infinite reverse;
}

.dashboard-orbit::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 14%;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(211,173,56,.7);
}

.career-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  padding: 25px;
  border: 1px solid rgba(211,173,56,.28);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), transparent 24%),
    linear-gradient(155deg, rgba(24,24,24,.94), rgba(8,8,8,.98));
  box-shadow: 0 50px 110px rgba(0,0,0,.48);
  transform: rotate(1.3deg) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .22s ease-out, border-color .25s ease;
}

.hero-dashboard:hover .career-panel {
  border-color: rgba(240,212,122,.50);
}

.panel-top,
.panel-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.panel-top div,
.panel-metrics div {
  display: grid;
  gap: 3px;
}

.panel-top small,
.panel-metrics small {
  color: #707070;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.panel-top strong,
.panel-metrics strong {
  color: #e8e8e8;
  font-size: 11px;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8f8f8f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.live-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(211,173,56,.6);
}

.career-pitch {
  position: relative;
  min-height: 385px;
  margin: 23px 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(211,173,56,.06), transparent 50%),
    #0e0e0e;
  background-size: 50px 50px, 50px 50px, auto, auto;
  box-shadow: inset 0 0 60px rgba(0,0,0,.45);
}

.pitch-half {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.13);
}

.pitch-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  aspect-ratio: 1;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.route {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(211,173,56,.8), transparent);
  filter: drop-shadow(0 0 5px rgba(211,173,56,.28));
  transform-origin: left;
}

.route-a { left: 21%; top: 28%; width: 43%; transform: rotate(31deg); }
.route-b { left: 48%; top: 51%; width: 39%; transform: rotate(38deg); }
.route-c { left: 22%; bottom: 20%; width: 31%; transform: rotate(-27deg); }

.route-point {
  position: absolute;
  z-index: 3;
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211,173,56,.7);
  border-radius: 50%;
  background: #111;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  box-shadow: 0 12px 26px rgba(0,0,0,.35);
}

.point-a { top: 17%; left: 13%; }
.point-b { top: 45%; left: 50%; width: 68px; transform: translate(-50%,-50%); background: var(--gold); color: #111; font-size: 18px; }
.point-c { right: 11%; bottom: 14%; }

.route-label {
  position: absolute;
  z-index: 2;
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(7,7,7,.68);
  color: #777;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.label-a { left: 7%; bottom: 8%; }
.label-b { right: 7%; top: 45%; }
.label-c { left: 7%; top: 7%; }

.dashboard-tag {
  position: absolute;
  z-index: 4;
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(211,173,56,.25);
  background: rgba(8,8,8,.78);
  box-shadow: 0 24px 55px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
  animation: float 5.8s ease-in-out infinite;
}

.dashboard-tag span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.dashboard-tag div {
  display: grid;
  gap: 2px;
  color: #bdbdbd;
  font-size: 10px;
}

.dashboard-tag small {
  color: #6d6d6d;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.tag-one { top: 56px; right: -26px; }
.tag-two { left: -34px; bottom: 52px; animation-delay: -2s; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 31px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  width: 18px;
  height: 29px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* Trust */
.trust-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--black);
}

.trust-grid {
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  align-items: stretch;
}

.trust-grid span {
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid var(--line-dark);
  color: #9a9a9a;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid span:last-child { border-right: 0; }

/* Assessoria */
.split-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 100px;
  align-items: start;
}

.section-copy > p {
  margin-bottom: 20px;
  color: #535353;
  font-size: 17px;
  line-height: 1.75;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 42px;
}

.glass-light {
  min-height: 245px;
  padding: 28px 24px;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.46);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.glass-light:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.80);
  box-shadow: 0 22px 45px rgba(0,0,0,.06);
}

.glass-light > span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.glass-light h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.glass-light p {
  color: #676767;
  font-size: 13px;
}

/* Who */
.who-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(211,173,56,.08), transparent 24%),
    var(--black-soft);
}

.who-section::before {
  content: "GF";
  position: absolute;
  left: -2vw;
  bottom: -8vw;
  color: rgba(255,255,255,.016);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34vw;
  line-height: .8;
  pointer-events: none;
}

.who-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(350px,.92fr);
  gap: 80px;
  align-items: center;
}

.who-description {
  max-width: 750px;
  margin-top: 28px;
  color: #c1c1c1;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.88;
}

.founder-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 38px;
}

.founder-list article {
  padding: 22px 20px;
  border-top: 1px solid rgba(211,173,56,.26);
  background: linear-gradient(180deg, rgba(255,255,255,.025), transparent);
}

.founder-list span {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.25;
}

.founder-list strong {
  display: block;
  margin: 7px 0 11px;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.founder-list p {
  color: #8f8f8f;
  font-size: 12px;
}

.who-logo {
  width: 170px;
  margin-top: 36px;
  opacity: .88;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.28));
}

.who-visual {
  position: relative;
  width: min(100%, 570px);
  margin: 0;
  padding: 18px 18px 0;
  isolation: isolate;
}

.who-visual::before {
  content: "";
  position: absolute;
  inset: 0 0 72px;
  z-index: -2;
  border: 1px solid rgba(211,173,56,.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 8%, rgba(240,212,122,.12), transparent 25%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012) 46%, rgba(211,173,56,.045));
  box-shadow: 0 38px 90px rgba(0,0,0,.34);
}

.who-visual::after {
  content: "";
  position: absolute;
  top: -22px;
  right: 34px;
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
  box-shadow: 0 0 22px rgba(211,173,56,.34);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: #191714;
  box-shadow:
    0 30px 66px rgba(0,0,0,.34),
    0 1px 0 rgba(255,255,255,.06) inset;
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  pointer-events: none;
}

.portrait-frame::before {
  top: 12px;
  left: 12px;
  border-top: 1px solid rgba(240,212,122,.56);
  border-left: 1px solid rgba(240,212,122,.56);
  border-radius: 8px 0 0;
}

.portrait-frame::after {
  right: 12px;
  bottom: 12px;
  border-right: 1px solid rgba(240,212,122,.34);
  border-bottom: 1px solid rgba(240,212,122,.34);
  border-radius: 0 0 8px;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
}

.portrait-caption {
  position: relative;
  z-index: 3;
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: -1px 16px 0;
  padding: 18px 22px;
  border: 1px solid rgba(211,173,56,.16);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: rgba(12,12,12,.96);
  box-shadow: 0 20px 42px rgba(0,0,0,.28);
}

.portrait-caption > span {
  min-width: 62px;
  padding-right: 18px;
  border-right: 1px solid rgba(211,173,56,.22);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: -.04em;
}

.portrait-caption div {
  display: grid;
  gap: 4px;
}

.portrait-caption strong {
  color: var(--white);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.portrait-caption small {
  color: #8f8f8f;
  font-size: 11px;
  line-height: 1.5;
}

/* Services */
.services-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(211,173,56,.07), transparent 25%),
    #0b0b0b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.service-card {
  --card-x: 50%;
  --card-y: 50%;
  position: relative;
  min-height: 345px;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255,255,255,.008);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x) var(--card-y), rgba(211,173,56,.11), transparent 32%);
  opacity: 0;
  transition: opacity .22s ease;
}

.service-card:hover {
  z-index: 2;
  background: rgba(211,173,56,.035);
  transform: translateY(-5px);
}

.service-card:hover::before { opacity: 1; }

.service-card > span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.service-symbol {
  position: absolute;
  top: 28px;
  right: 29px;
  color: rgba(255,255,255,.15);
  font-size: 28px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 155px;
  color: var(--white);
  font-size: 20px;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: #979797;
  font-size: 13px;
  line-height: 1.75;
}

/* Athlete showcase */
.athlete-section {
  background: var(--paper);
  color: var(--text);
}

.athlete-heading {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.athlete-heading > p {
  color: #666;
  line-height: 1.75;
}

.athlete-showcase {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 22px;
}

.athlete-profile {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: 0 32px 72px rgba(0,0,0,.08);
}

.athlete-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(211,173,56,.06), transparent 32%),
    linear-gradient(135deg, #101010, #232018);
}

.athlete-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.profile-status {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  padding: 8px 10px;
  border: 1px solid rgba(211,173,56,.30);
  background: rgba(8,8,8,.65);
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.jersey-number {
  position: absolute;
  right: -14px;
  bottom: -60px;
  color: rgba(255,255,255,.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 280px;
  line-height: 1;
}

.athlete-silhouette {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 44%;
  height: 72%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.15) 0 12%, transparent 13%),
    radial-gradient(ellipse at 50% 55%, rgba(255,255,255,.12) 0 32%, transparent 33%),
    linear-gradient(90deg, transparent 31%, rgba(255,255,255,.10) 32% 68%, transparent 69%);
  filter: blur(.3px);
  opacity: .9;
}

.athlete-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.athlete-info > small {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.athlete-info h3 {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
}

.athlete-info > p {
  margin-top: 20px;
  color: #676767;
  line-height: 1.75;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.profile-meta span {
  padding: 8px 10px;
  border: 1px solid var(--line-light);
  color: #777;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-button {
  width: fit-content;
  margin-top: 36px;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid rgba(157,121,29,.4);
  background: transparent;
  color: #9a7926;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.profile-slots {
  display: grid;
  gap: 16px;
}

.profile-slot {
  min-height: 178px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.46);
  transition: transform .22s ease, background .22s ease;
}

.profile-slot:hover {
  transform: translateX(-4px);
  background: var(--white);
}

.profile-slot > span {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border: 1px solid rgba(157,121,29,.28);
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.profile-slot strong {
  font-size: 17px;
}

.profile-slot p {
  margin-top: 5px;
  color: #6c6c6c;
  font-size: 13px;
}

/* Credential */
.credential-section {
  padding: 0 0 122px;
  background: var(--paper);
  color: var(--text);
}

.credential-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 54px;
  align-items: center;
  padding: 55px 60px;
  border: 1px solid var(--line-light);
  background: #111;
  color: var(--white);
  box-shadow: 0 32px 80px rgba(0,0,0,.18);
}

.credential-seal {
  width: 160px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(211,173,56,.48);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(211,173,56,.03);
}

.credential-seal span,
.credential-seal small {
  color: #8e8e8e;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.credential-seal strong {
  margin: 3px 0;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
}

.credential-card h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.credential-card > div:nth-child(2) > p:last-child {
  max-width: 700px;
  margin-top: 18px;
  color: #9e9e9e;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Journey */
.journey-section {
  overflow: hidden;
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  border-top: 1px solid var(--line-light);
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18%;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(211,173,56,.4);
}

.journey-step {
  position: relative;
  min-height: 340px;
  padding: 34px 24px;
  border-right: 1px solid var(--line-light);
  transition: background .2s ease, transform .2s ease;
}

.journey-step:last-child { border-right: 0; }

.journey-step:hover {
  background: rgba(255,255,255,.60);
  transform: translateY(-4px);
}

.journey-step > span {
  display: block;
  margin-bottom: 105px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.journey-step h3 {
  font-size: 17px;
}

.journey-step p {
  margin-top: 10px;
  color: #686868;
  font-size: 12px;
}

/* Network */
.network-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(211,173,56,.08), transparent 24%),
    #0c0c0c;
}

.network-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
  align-items: start;
}

.network-layout .section-heading > p:last-child {
  margin-top: 24px;
  color: #999;
  line-height: 1.75;
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.network-grid article {
  min-height: 180px;
  display: grid;
  align-content: center;
  padding: 26px;
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.018);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.network-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(211,173,56,.28);
  background: rgba(211,173,56,.035);
}

.network-grid span {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.network-grid strong {
  margin-top: 30px;
  font-size: 18px;
}

.network-grid small {
  margin-top: 6px;
  color: #777;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Testimony ethics */
.testimony-section {
  background: #e9e5da;
  color: var(--text);
}

.testimony-layout {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 48px;
  align-items: center;
  padding: 62px 70px;
  border: 1px solid rgba(20,20,20,.10);
  background: rgba(255,255,255,.46);
  box-shadow: 0 28px 70px rgba(0,0,0,.06);
}

.quote-mark {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 170px;
  line-height: .6;
  opacity: .56;
}

.testimony-layout h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.testimony-layout > div:last-child > p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 22px;
  color: #5f5f5f;
  line-height: 1.8;
}

.testimony-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.testimony-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(157,121,29,.24);
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}

/* Content */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.content-card {
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.46);
  transition: background .2s ease, border-color .2s ease;
}

.content-card[open] {
  border-color: rgba(157,121,29,.25);
  background: var(--white);
}

.content-card summary {
  min-height: 120px;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  list-style: none;
  cursor: pointer;
}

.content-card summary::-webkit-details-marker { display: none; }

.content-card summary > span {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.content-card h3 {
  font-size: 17px;
  line-height: 1.35;
}

.content-card summary b {
  color: var(--gold-dark);
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s ease;
}

.content-card[open] summary b { transform: rotate(45deg); }

.content-card > p {
  padding: 0 28px 28px 98px;
  color: #656565;
  font-size: 14px;
  line-height: 1.8;
}

/* Evaluation */
.application-section {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.application-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6,6,6,.97) 0%, rgba(6,6,6,.83) 34%, rgba(6,6,6,.42) 60%, rgba(6,6,6,.88) 100%),
    linear-gradient(180deg, rgba(211,173,56,.08), transparent 30%),
    url("assets/avaliacao-bg.webp");
  background-size: auto, auto, cover;
  background-position: center, center, calc(68% + var(--evaluation-x)) calc(44% + var(--evaluation-y));
  opacity: .58;
  transform: scale(1.04);
  filter: saturate(.95) contrast(1.05) blur(1.5px);
}

.application-section::after {
  content: "GF";
  position: absolute;
  left: -3%;
  bottom: -6%;
  color: rgba(255,255,255,.018);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34vw;
  line-height: .8;
}

.application-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 76px;
  align-items: start;
}

.application-copy {
  position: sticky;
  top: 120px;
  padding: 30px;
  border: 1px solid rgba(211,173,56,.14);
  background: rgba(8,8,8,.47);
  backdrop-filter: blur(12px);
}

.application-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 3.65vw, 3.95rem);
  line-height: 1.02;
}

.application-copy > p {
  color: #a8a8a8;
  font-size: 0.98rem;
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d1d1;
  font-size: 13px;
}

.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211,173,56,.36);
  color: var(--gold);
  font-size: 11px;
}

.application-warning {
  margin-top: 30px;
  padding: 18px;
  border-left: 2px solid var(--gold);
  background: rgba(211,173,56,.055);
}

.application-warning strong {
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.application-warning p {
  margin-top: 7px;
  color: #999;
  font-size: 12px;
}

.multi-form {
  padding: 40px;
  border: 1px solid rgba(211,173,56,.22);
  background: linear-gradient(180deg, rgba(18,18,18,.94), rgba(9,9,9,.91));
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.form-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.form-top > div {
  display: grid;
  gap: 5px;
}

.form-top small {
  color: #777;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.form-top strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.form-top > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.progress-track {
  height: 2px;
  margin-top: 22px;
  background: rgba(255,255,255,.09);
}

.progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 12px rgba(211,173,56,.36);
  transition: width .35s ease;
}

.step-indicators {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin: 22px 0 30px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.015);
  color: #676767;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.step-indicator span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.step-indicator.active {
  border-color: rgba(211,173,56,.32);
  color: var(--gold-light);
}

.step-indicator.active span {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}

.step-indicator.complete {
  color: #aaa;
}

.step-indicator.complete span {
  border-color: rgba(211,173,56,.42);
  color: var(--gold-light);
}

.form-step {
  border: 0;
}

.form-step[hidden] { display: none; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.field-row.three-columns {
  grid-template-columns: 1fr 1fr .8fr;
}

.multi-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: #b9b9b9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .045em;
}

.multi-form input,
.multi-form select,
.multi-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0;
  outline: 0;
  background: #0f0f0f;
  color: var(--white);
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.multi-form textarea {
  min-height: 100px;
  resize: vertical;
}

.multi-form input:focus,
.multi-form select:focus,
.multi-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(211,173,56,.08);
}

.multi-form input.invalid,
.multi-form select.invalid,
.multi-form textarea.invalid,
.multi-form input[type="checkbox"].invalid {
  border-color: #c96969;
}

.multi-form select { color-scheme: dark; }

.checkbox-field {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  gap: 12px !important;
  margin-top: 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 2px;
  accent-color: var(--gold);
}

.checkbox-field span {
  color: #aaa;
  font-weight: 500;
  line-height: 1.55;
}

.privacy-note {
  margin-top: 16px;
  color: #747474;
  font-size: 10px;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.form-actions .button {
  min-width: 178px;
}

/* Support */
.athlete-support-section {
  padding: 0 0 100px;
  background: #0a0a0a;
}

.support-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  padding: 54px 58px;
  border: 1px solid rgba(211,173,56,.22);
  background:
    radial-gradient(circle at 92% 10%, rgba(211,173,56,.08), transparent 25%),
    linear-gradient(150deg, #151515, #0d0d0d);
  box-shadow: 0 28px 75px rgba(0,0,0,.28);
}

.support-card h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
}

.support-card > div > p:last-child {
  max-width: 760px;
  margin-top: 18px;
  color: #959595;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 80px;
  align-items: start;
}

.contact-layout .section-heading > p:last-of-type {
  max-width: 520px;
  margin-top: 22px;
  color: #666;
}

.contact-preference {
  width: fit-content;
  display: grid;
  gap: 4px;
  margin-top: 30px;
  padding: 14px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,.48);
}

.contact-preference span {
  color: #777;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-preference strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.contact-board {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.62);
  box-shadow: 0 28px 70px rgba(0,0,0,.07);
}

.contact-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: 54px 112px minmax(0,1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line-light);
  background: var(--white);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-row:hover {
  z-index: 2;
  transform: translateX(-5px);
  border-color: rgba(157,121,29,.30);
  box-shadow: 0 18px 38px rgba(0,0,0,.06);
}

.contact-row.primary-contact {
  border-color: rgba(157,121,29,.24);
  background: linear-gradient(90deg, #fff, #fbf6e7);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157,121,29,.18);
  border-radius: 50%;
  background: linear-gradient(145deg, #fff, #f7f1df);
  color: var(--gold-dark);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-row:hover .contact-icon {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(157,121,29,.38);
  background: #fff;
}

.contact-row.primary-contact .contact-icon {
  background: rgba(211,173,56,.12);
}

.contact-channel {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-row strong {
  min-width: 0;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.62rem);
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.email-row strong {
  font-size: clamp(.98rem, 1.35vw, 1.18rem);
  white-space: nowrap;
}

.contact-row small {
  color: #777;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  padding: 76px 0 28px;
  border-top: 1px solid var(--line-dark);
  background: #050505;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}

.footer-brand .brand-symbol {
  width: 52px;
  height: 52px;
}

.footer-main > p {
  max-width: 500px;
  color: #777;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: #8b8b8b;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .10em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: #5f5f5f;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(211,173,56,.38);
  border-radius: 999px;
  background: rgba(8,8,8,.92);
  color: var(--gold-light);
  box-shadow: 0 20px 42px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
  text-decoration: none;
}

.whatsapp-float span {
  font-size: 19px;
}

.whatsapp-float strong {
  font-size: 9px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 2000;
  min-width: min(90vw, 400px);
  padding: 15px 20px;
  border: 1px solid rgba(211,173,56,.35);
  background: #171717;
  color: #ddd;
  box-shadow: var(--shadow);
  transform: translate(-50%,140%);
  opacity: 0;
  text-align: center;
  font-size: 13px;
  transition: transform .28s ease, opacity .28s ease;
}

.toast.show {
  transform: translate(-50%,0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.82); opacity: .66; }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes scrollDot {
  0% { transform: translate(-50%,0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%,11px); opacity: 0; }
}

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

@media (max-width: 1120px) {
  :root { --header-height: 78px; }

  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 390px);
    height: 100dvh;
    display: grid;
    align-content: center;
    gap: 0;
    padding: 90px 32px 34px;
    border-left: 1px solid var(--line-dark);
    background: rgba(8,8,8,.985);
    box-shadow: -30px 0 80px rgba(0,0,0,.35);
    transform: translateX(103%);
    transition: transform .3s ease;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav a {
    padding: 17px 2px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 10px;
  }

  .nav-support {
    margin-top: 18px;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy { max-width: 860px; }
  .hero-dashboard { width: min(100%, 650px); margin-inline: auto; }

  .split-layout,
  .who-layout,
  .network-layout,
  .application-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .application-copy { position: static; }
  .who-copy { max-width: 900px; }
  .who-visual { width: min(100%, 570px); margin-inline: auto; }

  .services-grid { grid-template-columns: repeat(2,1fr); }
  .athlete-heading { grid-template-columns: 1fr; gap: 24px; }
  .athlete-showcase { grid-template-columns: 1fr; }
  .profile-slots { grid-template-columns: repeat(3,1fr); }
  .profile-slot { grid-template-columns: 1fr; min-height: 200px; }

  .credential-card {
    grid-template-columns: 160px 1fr;
  }
  .credential-card .text-link {
    grid-column: 2;
    justify-self: start;
  }

  .journey-line { grid-template-columns: repeat(3,1fr); }
  .journey-step { border-bottom: 1px solid var(--line-light); }

  .footer-main { grid-template-columns: auto 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 760px) {
  .container,
  .header-inner { width: min(calc(100% - 28px), var(--container)); }

  .site-header { background: rgba(7,7,7,.92); }
  .brand-symbol { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 10px; letter-spacing: .16em; }
  .brand-copy small { font-size: 7px; }

  .hero {
    min-height: auto;
    padding: 130px 0 88px;
  }

  .hero-photo {
    background-position: center, center, calc(57% + var(--hero-x)) calc(48% + var(--hero-y));
    opacity: .58;
  }

  .hero h1 { font-size: clamp(2.35rem, 12vw, 4rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proofs { grid-template-columns: 1fr; }
  .hero-proofs div { grid-template-columns: 72px 1fr; align-items: center; }

  .hero-dashboard { min-height: 470px; }
  .career-panel { width: calc(100% - 10px); padding: 17px; transform: none; }
  .career-pitch { min-height: 290px; background-size: 42px 42px,42px 42px,auto,auto; }
  .dashboard-orbit { display: none; }
  .dashboard-tag { display: none; }
  .panel-top { align-items: flex-start; }
  .live-status { text-align: right; }
  .panel-metrics { align-items: flex-start; }
  .point-b { width: 56px; }

  .scroll-cue { display: none; }

  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid span { min-height: 70px; border-bottom: 1px solid var(--line-dark); }
  .trust-grid span:nth-child(2) { border-right: 0; }
  .trust-grid span:nth-last-child(-n+2) { border-bottom: 0; }

  .section { padding: 86px 0; }

  .section-heading h2,
  .who-copy h2,
  .credential-card h2,
  .support-card h2,
  .testimony-layout h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .application-copy h2 {
    font-size: clamp(2.05rem, 10.2vw, 3.45rem);
  }

  .split-layout { gap: 38px; }
  .principles-grid,
  .services-grid,
  .founder-list,
  .network-grid,
  .content-grid,
  .profile-slots {
    grid-template-columns: 1fr;
  }

  .who-layout { gap: 38px; }
  .who-visual {
    width: min(100%, 540px);
    padding: 12px 12px 0;
  }

  .portrait-caption {
    min-height: 88px;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-inline: 10px;
    padding: 16px 18px;
  }

  .portrait-caption > span {
    min-width: 0;
    padding: 0 0 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(211,173,56,.20);
    font-size: 1.15rem;
  }

  .portrait-caption small { font-size: 10.5px; }

  .service-card { min-height: 300px; }
  .service-card h3 { margin-top: 120px; }

  .athlete-profile { grid-template-columns: 1fr; }
  .athlete-visual { min-height: 430px; }
  .athlete-info { padding: 34px 26px; }
  .profile-slot { min-height: 160px; grid-template-columns: 60px 1fr; }

  .credential-section { padding-bottom: 86px; }
  .credential-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 26px;
    text-align: center;
  }
  .credential-seal { margin-inline: auto; }
  .credential-card .eyebrow { justify-content: center; }
  .credential-card .text-link { grid-column: auto; justify-self: center; }

  .journey-line { grid-template-columns: 1fr; border-top: 0; }
  .journey-line::before { display: none; }
  .journey-step { min-height: 220px; border: 1px solid var(--line-light); border-bottom: 0; }
  .journey-step:last-child { border-bottom: 1px solid var(--line-light); }
  .journey-step > span { margin-bottom: 55px; }

  .network-layout { gap: 38px; }

  .testimony-layout {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 42px 26px;
  }
  .quote-mark { font-size: 100px; }

  .content-card summary {
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    padding: 22px 18px;
  }
  .content-card > p { padding: 0 18px 24px 66px; }

  .application-section::before {
    background-position: center, center, calc(62% + var(--evaluation-x)) calc(44% + var(--evaluation-y));
  }
  .application-layout { gap: 38px; }
  .application-copy { padding: 24px; }
  .multi-form { padding: 26px 18px; }
  .form-top { align-items: flex-start; flex-direction: column; gap: 8px; }
  .step-indicators { grid-template-columns: 1fr; }
  .field-row,
  .field-row.three-columns { grid-template-columns: 1fr; gap: 0; }
  .form-actions { display: grid; grid-template-columns: 1fr; }
  .form-actions .button { width: 100%; }

  .athlete-support-section { padding-bottom: 80px; }
  .support-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 24px;
  }
  .support-card .button { width: 100%; }

  .contact-layout { gap: 38px; }
  .contact-board { padding: 14px; }
  .contact-row {
    min-height: 130px;
    grid-template-columns: 48px minmax(0,1fr);
    gap: 7px 15px;
    padding: 22px 20px;
  }
  .contact-icon {
    grid-row: 1 / 4;
    width: 46px;
    height: 46px;
    align-self: center;
  }
  .contact-channel,
  .contact-row strong,
  .contact-row small { grid-column: 2; }
  .email-row strong { white-space: normal; }
  .contact-row small { white-space: normal; }
  .contact-row:hover { transform: translateY(-3px); }

  .footer-main { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { grid-column: auto; }
  .footer-bottom { flex-direction: column; }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
  }
  .whatsapp-float strong { display: none; }
}

/* =========================================================
   REFINAMENTO PROFISSIONAL — JULHO/2026
   Conversão, acessibilidade, mobile e estabilidade do formulário
   ========================================================= */

[hidden] {
  display: none !important;
}

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

.main-nav a {
  font-size: 10.5px;
  letter-spacing: .095em;
}

.nav-support {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 990;
  border: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.section {
  padding-block: clamp(86px, 8vw, 112px);
}

.services-section,
.who-section,
.journey-section,
.content-section,
.application-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.hero-lead {
  max-width: 730px;
}

.who-description {
  max-width: 720px;
}

.founder-list article strong {
  line-height: 1.35;
}

.credential-card {
  grid-template-columns: 145px minmax(0, 1fr) auto;
}

.journey-line {
  grid-template-columns: repeat(4, 1fr);
}

.journey-step:last-child {
  border-right: 0;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-actions [hidden] {
  display: none !important;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 7px;
  color: #ffaaa2;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .01em;
  line-height: 1.35;
}

.field-hint {
  display: flex;
  justify-content: flex-end;
  margin-top: 7px;
  color: #828282;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.multi-form input[aria-invalid="true"],
.multi-form select[aria-invalid="true"],
.multi-form textarea[aria-invalid="true"] {
  border-color: #ef7569;
  box-shadow: 0 0 0 3px rgba(239, 117, 105, .12);
}

.checkbox-field input[aria-invalid="true"] {
  outline: 2px solid #ef7569;
  outline-offset: 3px;
}

.checkbox-field {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.checkbox-field .field-error {
  grid-column: 2;
  margin-top: 2px;
}

.checkbox-field a {
  color: var(--gold-light);
  text-underline-offset: 3px;
}

.consent-panel {
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(211, 173, 56, .27);
  background: linear-gradient(135deg, rgba(211, 173, 56, .08), rgba(255,255,255,.02));
}

.consent-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.consent-panel p {
  color: #b5b5b5;
  font-size: 14px;
}

.support-contact .contact-icon {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-float {
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .22s ease;
}

.whatsapp-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
}

.footer-links {
  flex-wrap: wrap;
}

/* Política de privacidade */
.legal-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--text);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-light);
  background: rgba(250, 249, 245, .92);
  backdrop-filter: blur(16px);
}

.legal-header .header-inner {
  min-height: 78px;
}

.legal-header .brand {
  color: var(--black);
}

.legal-header .brand-copy small {
  color: #666;
}

.legal-back {
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-main {
  padding: 90px 0 110px;
}

.legal-content {
  width: min(calc(100% - 48px), 820px);
  margin-inline: auto;
}

.legal-content h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.045em;
}

.legal-intro {
  margin-bottom: 50px;
  color: #626262;
  font-size: 18px;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line-light);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.legal-content p,
.legal-content li {
  color: #4f4f4f;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: #765b15;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .credential-card {
    grid-template-columns: 130px 1fr;
  }

  .journey-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-step:nth-child(2) {
    border-right: 0;
  }

  .journey-step:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-light);
  }
}

@media (max-width: 960px) {
  .main-nav a {
    font-size: 12px;
  }

  .menu-overlay:not([hidden]) {
    display: block !important;
  }
}

@media (max-width: 760px) {
  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding-block: 76px;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 70px;
  }

  .hero-layout {
    gap: 48px;
  }

  .hero-dashboard {
    min-height: 340px;
  }

  .career-panel {
    min-height: 300px;
  }

  .dashboard-tag {
    display: none;
  }

  .hero-proofs {
    gap: 0;
  }

  .hero-proofs div {
    min-height: 66px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid span {
    min-height: 62px;
    padding: 14px 10px;
    font-size: 8px;
    text-align: center;
  }

  .who-logo {
    width: 110px;
    margin-top: 28px;
  }

  .founder-list {
    gap: 12px;
  }

  .founder-list article {
    padding: 20px;
  }

  .portrait-caption {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .services-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .credential-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .journey-line {
    grid-template-columns: 1fr;
  }

  .journey-step,
  .journey-step:nth-child(2) {
    min-height: auto;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
    padding: 30px 26px;
  }

  .journey-step:last-child {
    border-bottom: 1px solid var(--line-light);
  }

  .journey-step > span {
    margin-bottom: 28px;
  }

  .application-copy {
    padding: 0;
  }

  .multi-form {
    padding: 24px 16px;
  }

  .step-indicators {
    gap: 5px;
  }

  .step-indicator {
    min-height: 54px;
    padding-inline: 8px;
    font-size: 8px;
  }

  .step-indicator span {
    width: 24px;
    height: 24px;
  }

  .contact-board {
    padding: 10px;
  }

  .contact-row {
    padding: 17px 14px;
  }

  .contact-row strong {
    overflow-wrap: anywhere;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .legal-content {
    width: min(calc(100% - 32px), 820px);
  }

  .legal-main {
    padding: 70px 0 90px;
  }
}

@media (max-width: 1120px) {
  .menu-overlay:not([hidden]) {
    display: block !important;
  }

  .main-nav a {
    font-size: 12px;
  }
}

/* Ajuste final de densidade e estabilidade */
.services-section,
.who-section,
.journey-section,
.content-section,
.application-section,
.contact-section {
  content-visibility: visible;
  contain: none;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.whatsapp-float span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}

.whatsapp-float span svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

@media (max-width: 760px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }
}
