/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(251, 249, 246, 0.90);
  border-bottom: 1px solid rgba(72, 34, 88, 0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  font-family: var(--font-display);
  color: var(--rsh-purple-dark);
  font-weight: 700;
  font-size: 1.28rem;
}

.brand span {
  font-family: var(--font-ui);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--rsh-gold-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-size: .9rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--rsh-purple-dark);
}

.nav-links .btn--primary {
  color: var(--rsh-white);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--rsh-purple-dark);
  font-family: var(--font-ui);
  font-weight: 700;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .84rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1;
  transition: transform var(--duration) var(--ease),
              background var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--rsh-purple);
  color: var(--rsh-white);
}

.btn--gold {
  background: var(--rsh-gold);
  color: var(--rsh-black);
}

.btn--ghost {
  background: transparent;
  color: var(--rsh-purple-dark);
  border-color: rgba(72, 34, 88, .28);
}

.btn--light {
  background: var(--rsh-off-white);
  color: var(--rsh-purple-dark);
}

/* TYPOGRAPHIC COMPONENTS */
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--rsh-gold-text);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-title {
  max-width: 850px;
  margin-bottom: 1.2rem;
  font-size: var(--fs-h2);
}

.section-lead {
  max-width: 760px;
  color: var(--color-muted);
  font-size: var(--fs-body-lg);
}

.section--purple .section-lead,
.section--black .section-lead {
  color: rgba(251, 249, 246, .78);
}


.section--purple .eyebrow,
.section--black .eyebrow {
  color: var(--rsh-gold);
}

/* HERO */
.hero {
  min-height: min(860px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 24%, rgba(192,153,101,.18), transparent 25%),
    linear-gradient(120deg, var(--rsh-off-white), var(--rsh-beige));
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero h1 {
  margin-bottom: 1.35rem;
  font-size: var(--fs-hero);
  max-width: 900px;
}

.hero__lead {
  max-width: 720px;
  font-size: var(--fs-body-lg);
  color: #51484D;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hero__panel {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(43,25,48,.05), rgba(43,25,48,.18)),
    var(--rsh-purple-dark);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--rsh-off-white);
  text-align: center;
}

.hero__panel small {
  font-family: var(--font-ui);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rsh-gold);
}

/* GRID / CARDS */
.grid {
  display: grid;
  gap: 1.25rem;
}

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

.card {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--rsh-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.card--flat { box-shadow: none; }

.card__number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  background: var(--rsh-purple-dark);
  color: var(--rsh-gold);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: .8rem;
}

.card h3 {
  font-size: var(--fs-h3);
  margin-bottom: .75rem;
}

/* FEATURE BAND */
.feature-band {
  padding: clamp(2rem, 4vw, 3.3rem);
  border-radius: var(--radius-lg);
  background: var(--rsh-purple-dark);
  color: var(--rsh-off-white);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2rem;
  align-items: center;
}

.feature-band h2 { color: var(--rsh-off-white); margin-bottom: .8rem; }
.feature-band p { color: rgba(251,249,246,.8); }
.feature-band__action { display: flex; justify-content: flex-end; }

/* QUOTE / STATEMENT */
.statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.13;
  color: var(--rsh-purple-dark);
  max-width: 980px;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--color-border);
}

.faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--rsh-purple-dark);
  font-weight: 600;
}

/* FOOTER */
.site-footer {
  background: var(--rsh-black);
  color: rgba(255,255,255,.74);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 2rem;
}

.site-footer h3 {
  color: var(--rsh-off-white);
  font-size: 1.1rem;
  margin-bottom: .8rem;
}

.site-footer a {
  color: var(--rsh-off-white);
  text-decoration: none;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  font-family: var(--font-ui);
  font-size: .9rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-ui);
  font-size: .78rem;
  text-align: center;
}


/* PAGE-SPECIFIC REUSABLE LAYOUTS */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.split--center { align-items: center; }

.kicker {
  font-family: var(--font-ui);
  color: var(--rsh-purple);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: .95rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--rsh-gold);
  font-weight: 700;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .8rem;
  border: 1px solid rgba(72,34,88,.18);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--rsh-purple-dark);
  background: rgba(255,255,255,.56);
}

.insight-box {
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-left: 3px solid var(--rsh-gold);
  background: rgba(192,153,101,.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.insight-box strong {
  display: block;
  margin-bottom: .55rem;
  color: var(--rsh-purple-dark);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.theme-card {
  position: relative;
  overflow: hidden;
}

.theme-card--featured {
  background: var(--rsh-purple-dark);
  color: var(--rsh-off-white);
  border-color: transparent;
}

.theme-card--featured h3 { color: var(--rsh-off-white); }

.theme-card--featured p {
  color: rgba(251,249,246,.8);
}

.theme-card__tag {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .38rem .7rem;
  border-radius: var(--radius-pill);
  background: rgba(192,153,101,.15);
  color: var(--rsh-gold-text);
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.process {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
}

.process__item {
  counter-increment: process;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(192,153,101,.55);
}

.process__item::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 1rem;
  color: var(--rsh-gold);
  font-family: var(--font-ui);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.process__item h3 {
  font-size: var(--fs-h3);
}

.metricless-proof {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px dashed rgba(72,34,88,.28);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  background: rgba(255,255,255,.5);
}

.source-note {
  margin-top: 1.3rem;
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--color-muted);
}

.source-note a {
  text-underline-offset: 3px;
}

.cta-note {
  margin-top: .8rem;
  font-family: var(--font-ui);
  font-size: .8rem;
  color: rgba(251,249,246,.68);
}



/* PALESTRAS V0.3 */
.hero--palestras { position: relative; }
.hero--palestras::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 120px;
  background: linear-gradient(var(--rsh-gold), transparent);
  left: 50%;
  bottom: 0;
  opacity: .65;
}
.microcopy {
  margin-top: 1rem;
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--color-muted);
}
.hero__panel--photo {
  position: relative;
  min-height: 590px;
  background:
    linear-gradient(145deg, rgba(72,34,88,.2), rgba(0,0,0,.48)),
    linear-gradient(160deg, #3b2142, #151016);
}
.hero__panel--photo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(192,153,101,.42);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  margin-top: clamp(2.4rem,5vw,4rem);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.outcome-item { padding: 2rem clamp(1rem,3vw,2rem); }
.outcome-item + .outcome-item { border-left: 1px solid var(--color-border); }
.outcome-item > span {
  display: block;
  margin-bottom: .9rem;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--rsh-gold);
}
.outcome-item h3 { margin-bottom: .55rem; }
.outcome-item p { color: var(--color-muted); }
.theme-layout {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr);
  gap: 1.25rem;
  margin-top: 2.4rem;
}
.theme-featured {
  min-height: 470px;
  padding: clamp(2rem,4vw,3.4rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 15%, rgba(192,153,101,.22), transparent 25%),
    var(--rsh-purple-dark);
  color: var(--rsh-off-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}
.theme-featured h3 {
  color: var(--rsh-off-white);
  max-width: 650px;
  font-size: clamp(2rem,4vw,3.8rem);
  margin-bottom: 1.1rem;
}
.theme-featured p { color: rgba(251,249,246,.8); max-width: 670px; font-size: 1.04rem; }
.theme-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 1.25rem; }
.theme-stack .card { display: flex; flex-direction: column; justify-content: center; }
.text-link {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--rsh-gold-text);
  text-decoration: none;
}
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform var(--duration) var(--ease); }
.burnout-aside {
  padding: clamp(1.5rem,3vw,2.2rem);
  background: var(--rsh-beige);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(72,34,88,.12);
}
.layer-card { padding: 1.2rem 0; border-top: 1px solid rgba(72,34,88,.14); }
.layer-card:first-of-type { margin-top: .7rem; }
.layer-card strong {
  display: block;
  margin-bottom: .35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--rsh-purple-dark);
}
.layer-card p { color: var(--color-muted); }
.bio-photo { min-height: 540px; }
.signature-line {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--rsh-purple-dark);
  font-style: italic;
}



/* PALESTRAS V0.5 — PROVAS, FOTOS E CONVERSÃO */
.photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 75% 18%, rgba(192,153,101,.20), transparent 30%),
    linear-gradient(145deg, #3d2544, #151016 72%);
  color: var(--rsh-off-white);
  border: 1px solid rgba(192,153,101,.20);
  box-shadow: var(--shadow-soft);
}
.photo-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.photo-frame--hero { min-height: 590px; }
.photo-frame--bio { min-height: 540px; }
.photo-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 2rem;
  text-align: center;
}
.photo-fallback::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(192,153,101,.44);
  border-radius: calc(var(--radius-lg) - 8px);
}
.photo-fallback > * { position: relative; z-index: 1; }
.photo-fallback span {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--rsh-gold);
}
.photo-fallback strong {
  max-width: 90%;
  font-family: var(--font-display);
  font-size: clamp(1.25rem,2vw,1.75rem);
  color: var(--rsh-off-white);
}
.photo-fallback small {
  max-width: 300px;
  color: rgba(251,249,246,.68);
  font-family: var(--font-ui);
}
.inline-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(72,34,88,.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.inline-cta p {
  margin: 0;
  font-family: var(--font-display);
  color: var(--rsh-purple-dark);
  font-size: 1.25rem;
  font-weight: 600;
}
.reference-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem .8rem;
  align-items: center;
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--color-muted);
}
.reference-links span { font-weight: 700; }
.reference-links a {
  color: var(--rsh-purple);
  text-underline-offset: 3px;
}
.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.proof-figure {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}
.proof-figure > img { height: calc(100% - 58px); }
.proof-figure .photo-fallback { bottom: 58px; }
.proof-figure figcaption {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: .8rem 1rem;
  background: var(--rsh-white);
  color: var(--rsh-purple-dark);
  border-top: 1px solid rgba(72,34,88,.12);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
}
.proof-policy {
  margin: 1.35rem 0 0;
  max-width: 900px;
  font-family: var(--font-ui);
  font-size: .76rem;
  line-height: 1.6;
  color: var(--color-muted);
}
.contract-steps {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid rgba(192,153,101,.45);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contract-steps article {
  padding: 2rem clamp(1rem,3vw,2rem);
}
.contract-steps article + article { border-left: 1px solid rgba(255,255,255,.12); }
.contract-steps span {
  display: block;
  margin-bottom: .8rem;
  font-family: var(--font-ui);
  color: var(--rsh-gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.contract-steps h3 { color: var(--rsh-off-white); margin-bottom: .55rem; }
.contract-steps p { color: rgba(251,249,246,.72); }
.feature-band__actions {
  flex-direction: column;
  align-items: flex-end;
  gap: .9rem;
}
.text-link--light { color: var(--rsh-off-white); font-size: .86rem; }



/* PALESTRAS V0.6 — IMAGENS REAIS E TRAJETÓRIA */
.photo-frame--hero > img {
  object-position: center 42%;
}
.photo-frame--portrait {
  background:
    radial-gradient(circle at 52% 28%, rgba(255,255,255,.96), rgba(243,238,232,.96) 50%, rgba(192,153,101,.14) 100%);
}
.photo-frame--portrait > img {
  object-fit: contain;
  object-position: center bottom;
  padding: 1.2rem 1.2rem 0;
}
.trajectory-logos {
  margin-top: clamp(2rem,4vw,3rem);
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 1rem;
}
.trajectory-logo-card {
  min-height: 190px;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(72,34,88,.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.trajectory-logo-card img {
  width: min(100%, 170px);
  height: 78px;
  object-fit: contain;
}
.trajectory-logo-card:nth-child(3) img,
.trajectory-logo-card:nth-child(4) img {
  width: min(100%, 190px);
  height: 88px;
}
.trajectory-logo-card span {
  min-height: 2.6em;
  display: flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: .74rem;
  line-height: 1.35;
  color: var(--color-muted);
}
.trajectory-note {
  margin: 1.15rem auto 0;
  max-width: 900px;
  text-align: center;
  font-family: var(--font-ui);
  font-size: .72rem;
  line-height: 1.55;
  color: var(--color-muted);
}
.proof-figure > img {
  object-position: center center;
}


/* PALESTRAS V0.7 — ACABAMENTO VISUAL E QA */
.hero--palestras .hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
}
.hero--palestras h1 {
  font-size: clamp(2.8rem, 4.8vw, 4.75rem);
  max-width: 820px;
}
.hero--palestras .hero__lead {
  max-width: 700px;
}
.hero-audience {
  margin: 1.15rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--rsh-gold);
  font-family: var(--font-ui);
  font-size: .84rem;
  font-weight: 650;
  color: var(--rsh-purple);
}
.photo-frame--hero {
  min-height: 560px;
  isolation: isolate;
}
.photo-frame--hero::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(251,249,246,.38);
  border-radius: calc(var(--radius-lg) - 8px);
  box-shadow: inset 0 0 0 1px rgba(192,153,101,.16);
}
.photo-frame--hero > img {
  filter: saturate(.94) contrast(1.02);
}
.section-intro--center {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.section-intro--center .section-title,
.section-intro--center .section-lead {
  margin-inline: auto;
}
.trajectory-logo-card {
  min-height: 172px;
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}
.trajectory-logo-card img {
  filter: grayscale(1);
  opacity: .78;
  transition: filter var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.trajectory-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(192,153,101,.34);
  box-shadow: var(--shadow-card);
}
.trajectory-logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}
.trajectory-note {
  max-width: 760px;
}
.proof-gallery {
  grid-template-columns: 1.18fr .91fr .91fr;
  align-items: start;
}
.proof-figure {
  min-height: 0;
  background: var(--rsh-white);
  box-shadow: var(--shadow-card);
}
.proof-figure > img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.proof-figure figcaption {
  position: relative;
  inset: auto;
  min-height: 66px;
  line-height: 1.45;
}
.proof-figure:first-child > img {
  object-position: center 38%;
}
.proof-figure:nth-child(2) > img,
.proof-figure:nth-child(3) > img {
  object-position: center center;
}
#trajetoria,
#provas {
  overflow: clip;
}
#trajetoria::before,
#provas::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,153,101,.09), transparent 68%);
  pointer-events: none;
}
#trajetoria::before {
  right: -90px;
  top: 8%;
}
#provas::before {
  left: -110px;
  bottom: 6%;
}



/* PALESTRAS V0.8 — CONTRASTE E ACABAMENTO FINAL */
.theme-featured .theme-card__tag,
.theme-featured .text-link,
.burnout-aside .theme-card__tag {
  color: var(--rsh-gold);
}
.section--black .theme-card__tag,
.section--purple .theme-card__tag {
  color: var(--rsh-gold);
}



/* HOME RSH V0.1 */
.home-hero {
  min-height: min(900px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(192,153,101,.16), transparent 26%),
    radial-gradient(circle at 14% 88%, rgba(72,34,88,.08), transparent 31%),
    linear-gradient(120deg, var(--rsh-off-white), var(--rsh-beige));
}
.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr);
  gap: clamp(2.5rem,5vw,5.5rem);
  align-items: center;
}
.home-hero h1 {
  font-size: clamp(3rem,5.25vw,5.25rem);
  max-width: 900px;
  margin-bottom: 1.35rem;
}
.home-hero__lead {
  max-width: 720px;
  color: #51484D;
  font-size: var(--fs-body-lg);
}
.home-hero__micro {
  margin-top: 1.1rem;
  font-family: var(--font-ui);
  font-size: .84rem;
  color: var(--rsh-purple);
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1.25rem;
}
.path-card {
  position: relative;
  min-height: 310px;
  padding: clamp(1.7rem,3vw,2.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--rsh-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.path-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(192,153,101,.14), transparent 70%);
}
.path-card__index {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-family: var(--font-ui);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--rsh-gold-text);
}
.path-card h3 {
  font-size: clamp(1.65rem,2.5vw,2.25rem);
  max-width: 520px;
  margin-bottom: .9rem;
}
.path-card p {
  max-width: 590px;
  color: var(--color-muted);
}
.path-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.4rem;
}
.path-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .56rem .78rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(72,34,88,.16);
  background: rgba(251,249,246,.78);
  color: var(--rsh-purple-dark);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 650;
}
.path-link:hover {
  border-color: rgba(192,153,101,.55);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1.25rem;
}
.signature-card {
  min-height: 380px;
  padding: clamp(2rem,4vw,3rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  color: var(--rsh-off-white);
  background:
    radial-gradient(circle at 80% 20%, rgba(192,153,101,.2), transparent 28%),
    var(--rsh-purple-dark);
}
.signature-card--black {
  background:
    radial-gradient(circle at 76% 18%, rgba(192,153,101,.14), transparent 30%),
    #0b0b0b;
}
.signature-card .eyebrow { color: var(--rsh-gold); }
.signature-card h3 {
  color: var(--rsh-off-white);
  font-size: clamp(2rem,3.5vw,3rem);
  margin-bottom: .8rem;
}
.signature-card p {
  color: rgba(251,249,246,.78);
  max-width: 620px;
}
.signature-card .btn {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.ecosystem-band {
  padding: clamp(2rem,4vw,3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg,var(--rsh-purple-dark),#1b111f);
  color: var(--rsh-off-white);
}
.ecosystem-band h2 { color: var(--rsh-off-white); }
.ecosystem-band p { color: rgba(251,249,246,.78); }

.home-statements {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.home-statement {
  padding: 1.5rem;
  border-top: 1px solid rgba(192,153,101,.5);
}
.home-statement strong {
  display: block;
  color: var(--rsh-purple-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: .45rem;
}
.section--black .home-statement strong,
.section--purple .home-statement strong { color: var(--rsh-off-white); }

.home-note {
  margin-top: 1rem;
  max-width: 800px;
  font-family: var(--font-ui);
  font-size: .79rem;
  color: var(--color-muted);
}



/* HOME RSH V0.2 — REVISÃO ESTRATÉGICA */
.home-hero__micro strong {
  color: var(--rsh-purple-dark);
}
.path-card {
  display: flex;
  flex-direction: column;
}
.path-card .path-links {
  margin-top: auto;
  padding-top: 1.4rem;
}
.path-card:nth-child(1),
.path-card:nth-child(4) {
  background:
    radial-gradient(circle at 94% 8%, rgba(192,153,101,.12), transparent 25%),
    var(--rsh-white);
}
.path-card:nth-child(2),
.path-card:nth-child(3) {
  background:
    radial-gradient(circle at 94% 8%, rgba(72,34,88,.07), transparent 25%),
    var(--rsh-white);
}
.path-link--primary {
  background: var(--rsh-purple);
  border-color: var(--rsh-purple);
  color: var(--rsh-white);
}
.path-link--primary:hover {
  border-color: var(--rsh-purple-dark);
  background: var(--rsh-purple-dark);
}
.home-start-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1.25rem;
  margin-top: 2.3rem;
}
.home-start-step {
  padding: clamp(1.5rem,3vw,2rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--rsh-off-white);
}
.home-start-step > span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--rsh-gold-text);
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.home-start-step h3 {
  font-size: var(--fs-h3);
  margin-bottom: .65rem;
}
.home-start-step p {
  color: var(--color-muted);
}
#autorais .signature-card {
  box-shadow: 0 18px 55px rgba(43,25,48,.12);
}
#autorais .signature-card .btn {
  min-width: 220px;
}



/* HOME RSH V0.3 — HIERARQUIA INSTITUCIONAL */
.home-hero__micro {
  max-width: 700px;
  padding-top: .9rem;
  border-top: 1px solid rgba(72,34,88,.12);
}
#sobre .photo-frame {
  box-shadow: 0 20px 55px rgba(43,25,48,.11);
}
#trajetoria .trajectory-logos {
  max-width: 980px;
  margin-inline: auto;
}
#autorais {
  position: relative;
  overflow: clip;
}
#autorais::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -130px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72,34,88,.08), transparent 70%);
  pointer-events: none;
}
#como-comecar .home-start-step {
  min-height: 220px;
}



/* RSH V1.1 — REVISÃO VISUAL E PADRONIZAÇÃO */
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  top: .62em;
  border-radius: 50%;
  background: var(--rsh-gold);
}

.card__number,
.outcome-item > span,
.contract-steps article > span,
.home-start-step > span {
  display: none !important;
}

.process__item::before {
  content: none;
  display: none;
}

.grid,
.path-grid,
.process,
.home-start-grid,
.contract-steps,
.trajectory-logos,
.proof-gallery {
  align-items: stretch;
}

.grid > .card,
.path-card,
.process__item,
.home-start-step,
.outcome-item,
.contract-steps article,
.trajectory-logo-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.path-card {
  min-height: 340px;
}

.home-start-step {
  min-height: 220px;
}

.outcome-item,
.process__item,
.contract-steps article {
  justify-content: flex-start;
}

.path-card__index {
  margin-bottom: .8rem;
}

.path-card h3 {
  font-size: clamp(1.5rem, 2.25vw, 2.05rem);
}

.path-card .path-links,
.home-start-step .btn,
.signature-card .btn {
  margin-top: auto;
}

.split .photo-frame--portrait,
.split .photo-frame--bio {
  min-height: clamp(430px, 46vw, 620px);
}

#sobre .split,
#rosemeire.split,
#rosemeire .split {
  align-items: center;
}

#sobre .photo-frame--portrait > img,
#rosemeire .photo-frame--portrait > img {
  object-position: center bottom;
}

.feature-band__action,
.feature-band__actions {
  display: flex;
}



/* RSH V1.3 — REVISÃO GLOBAL DE CARDS, LISTAS E FAQ */
.hero {
  min-height: min(790px, calc(100vh - 76px));
}

.hero h1 {
  font-size: clamp(2.45rem, 4.65vw, 4.8rem);
  line-height: 0.98;
  max-width: 760px;
}

.hero__lead {
  max-width: 680px;
}

.hero__actions {
  margin-top: 2.15rem;
  row-gap: 1rem;
}

.hero-audience {
  margin-top: 1rem;
}

.check-list {
  gap: 1rem;
}

.check-list li {
  padding-left: 1.55rem;
}

.check-list li::before {
  content: "◆" !important;
  width: auto;
  height: auto;
  top: 0.03rem;
  left: 0;
  border-radius: 0;
  background: transparent;
  color: var(--rsh-gold);
  font-size: .88rem;
  line-height: 1.2;
}

.process {
  align-items: stretch;
}

.process__item {
  border-top: none !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.section--purple .process__item,
.section--black .process__item {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}

.section--purple .process__item h3,
.section--black .process__item h3 {
  color: var(--rsh-off-white);
}

.section--purple .process__item p,
.section--black .process__item p {
  color: rgba(251,249,246,.82);
}

.faq {
  border-top: none;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq details {
  border: 1px solid var(--color-border);
  padding: 0;
  border-radius: var(--radius-md);
  background: var(--rsh-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.section--beige .faq details {
  background: rgba(255,255,255,.75);
}

.faq summary {
  position: relative;
  list-style: none;
  padding: 1.2rem 4rem 1.2rem 1.3rem;
  font-size: 1.18rem;
  transition: background var(--duration) var(--ease);
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(72,34,88,.08);
  color: var(--rsh-purple-dark);
  font-family: var(--font-ui);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq details[open] summary {
  background: rgba(72,34,88,.03);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details > p,
.faq details > div,
.faq details > ul {
  padding: 0 1.3rem 1.3rem;
}

.faq details > p {
  color: var(--color-muted);
}

.section-intro--center .section-title {
  max-width: 1020px;
}

/* reduzir sensação de informação pendurada sob linhas */
.outcome-item,
.contract-steps article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--rsh-white);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.section--purple .outcome-item,
.section--black .outcome-item,
.section--purple .contract-steps article,
.section--black .contract-steps article {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}


/* RSH V1.4 — REVISÃO PREMIUM FINAL */

/* HERO: mais equilíbrio, menos altura e CTA dentro da dobra */
.hero {
  min-height: min(760px, calc(100vh - 76px));
  padding-block: clamp(2.9rem, 5vw, 4.5rem);
}

.hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(2.4rem, 4.5vw, 4.4rem);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.35vw, 4.35rem);
  line-height: 1;
  margin-bottom: 1.1rem;
}

.hero__lead {
  max-width: 680px;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 1.65rem;
}

.photo-frame--hero {
  min-height: 515px;
}

/* SISTEMA DE CARDS */
.grid > .card,
.path-card,
.process__item,
.home-start-step,
.outcome-item,
.contract-steps article,
.trajectory-logo-card,
.faq details {
  border-radius: var(--radius-md);
}

.grid > .card,
.process__item,
.home-start-step,
.outcome-item,
.contract-steps article {
  border: 1px solid rgba(72,34,88,.12);
  box-shadow: 0 12px 32px rgba(43,25,48,.055);
}

.grid > .card,
.path-card,
.process__item,
.home-start-step,
.outcome-item,
.contract-steps article,
.trajectory-logo-card {
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

@media (hover:hover) {
  .grid > .card:hover,
  .path-card:hover,
  .process__item:hover,
  .home-start-step:hover,
  .outcome-item:hover,
  .contract-steps article:hover {
    transform: translateY(-2px);
    border-color: rgba(192,153,101,.34);
    box-shadow: 0 16px 38px rgba(43,25,48,.08);
  }
}

/* remove estruturas em linha herdadas */
.outcome-grid {
  gap: 1.15rem;
  border-top: 0;
  border-bottom: 0;
}

.outcome-item + .outcome-item {
  border-left: 1px solid rgba(72,34,88,.12);
}

.contract-steps {
  gap: 1rem;
  border-top: 0;
  border-bottom: 0;
}

.contract-steps article + article {
  border-left: 1px solid rgba(255,255,255,.14);
}

/* Palestras: camadas viram mini-cards, sem linhas */
.layer-card {
  border-top: 0;
  border: 1px solid rgba(72,34,88,.10);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.76);
  padding: 1rem 1.05rem;
  margin-top: .8rem;
}

.layer-card:first-of-type {
  margin-top: 1rem;
}

/* CTA intermediário vira bloco, não linha */
.inline-cta {
  border-top: 0;
  border: 1px solid rgba(72,34,88,.11);
  background: rgba(255,255,255,.66);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin-top: 1.6rem;
}

/* Home: princípios em cards, não em linhas */
.home-statements {
  gap: 1rem;
}

.home-statement {
  border-top: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: rgba(255,255,255,.055);
}

.section--white .home-statement,
.section--beige .home-statement {
  border-color: rgba(72,34,88,.11);
  background: rgba(255,255,255,.78);
}

/* Citação institucional sem régua superior */
.signature-line {
  border-top: 0;
  margin-top: 1.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(192,153,101,.10);
  border-left: 3px solid var(--rsh-gold);
}

/* Listas: marcador editorial uniforme */
.check-list li::before {
  content: "◆" !important;
  background: transparent !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  color: var(--rsh-gold);
  font-size: .8rem;
  top: .12rem;
}

/* FAQ premium em cards sanfona */
.faq {
  border-top: 0;
  gap: .9rem;
}

.faq details {
  border: 1px solid rgba(72,34,88,.13);
  background: var(--rsh-white);
  box-shadow: 0 9px 24px rgba(43,25,48,.045);
}

.faq summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 1rem 4rem 1rem 1.25rem;
  line-height: 1.25;
}

.faq details[open] {
  border-color: rgba(192,153,101,.4);
  box-shadow: 0 12px 30px rgba(43,25,48,.065);
}

.faq details[open] summary {
  color: var(--rsh-purple);
}

/* títulos de seção com largura mais controlada */
.section-intro--center .section-title {
  max-width: 940px;
}

/* faixa de marcas mais leve */
.trajectory-logo-card {
  box-shadow: none;
  background: rgba(255,255,255,.72);
}

/* Cards escuros permanecem sóbrios */
.section--purple .card,
.section--black .card,
.section--purple .process__item,
.section--black .process__item {
  box-shadow: none;
}


/* RSH V1.5 — GALERIA DE TRAJETÓRIA MAIS DISCRETA E PADRONIZADA */
#trajetoria .section-title {
  max-width: 980px;
  margin-inline: auto;
}

.trajectory-logos {
  max-width: 1180px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .95rem;
}

.trajectory-logo-card {
  min-height: 154px;
  padding: 1.1rem .95rem;
  border-radius: calc(var(--radius-md) - 2px);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(72,34,88,.08);
  box-shadow: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: .8rem;
}

.trajectory-logo-card img,
.trajectory-logo-card:nth-child(3) img,
.trajectory-logo-card:nth-child(4) img {
  width: min(100%, 150px);
  height: 54px;
  object-fit: contain;
  filter: grayscale(1) contrast(.94) brightness(.92);
  opacity: .62;
}

.trajectory-logo-card span {
  min-height: auto;
  font-size: .68rem;
  line-height: 1.28;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(46,34,55,.66);
}

.trajectory-logo-card:hover {
  transform: none;
  border-color: rgba(72,34,88,.12);
  box-shadow: none;
}

.trajectory-logo-card:hover img {
  filter: grayscale(.3) contrast(.98) brightness(.96);
  opacity: .82;
}

.trajectory-note {
  margin-top: 1rem;
  max-width: 880px;
  opacity: .92;
}


/* RSH V1.6 — TRAJETÓRIA PROFISSIONAL REVISADA */
#trajetoria .trajectory-logos,
.trajectory-logos {
  max-width: 1180px;
  margin: clamp(1.8rem, 3vw, 2.4rem) auto 0;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: .78rem;
  align-items: stretch;
}

.trajectory-logo-card {
  min-height: 128px;
  height: 100%;
  padding: .9rem .72rem .78rem;
  border-radius: 14px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(72,34,88,.065);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-align: center;
  transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease);
}

.trajectory-logo-card img,
.trajectory-logo-card:nth-child(3) img,
.trajectory-logo-card:nth-child(4) img {
  display: block;
  width: min(100%, 132px);
  height: 45px;
  object-fit: contain;
  filter: grayscale(1) contrast(.92);
  opacity: .52;
  mix-blend-mode: multiply;
  transition: opacity var(--duration) var(--ease), filter var(--duration) var(--ease);
}

.trajectory-logo-card span {
  min-height: auto;
  display: block;
  font-family: var(--font-ui);
  font-size: .61rem;
  line-height: 1.25;
  letter-spacing: .075em;
  text-transform: uppercase;
  color: rgba(43,25,48,.52);
}

.trajectory-logo-card:hover {
  transform: none;
  background: rgba(255,255,255,.62);
  border-color: rgba(72,34,88,.11);
  box-shadow: none;
}

.trajectory-logo-card:hover img {
  filter: grayscale(.45) contrast(.96);
  opacity: .76;
}

.trajectory-note {
  max-width: 900px;
  margin: .95rem auto 0;
  font-size: .68rem;
  line-height: 1.5;
  color: rgba(70,60,67,.72);
}


/* RSH V1.7 — GALERIA DE LOGOS SEM RÓTULOS */
.trajectory-logo-card {
  min-height: 118px;
  padding: .95rem .85rem;
  gap: 0;
}

.trajectory-logo-card span {
  display: none !important;
}

.trajectory-logo-card img,
.trajectory-logo-card:nth-child(3) img,
.trajectory-logo-card:nth-child(4) img {
  width: min(100%, 160px);
  height: 58px;
  object-fit: contain;
}
