@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #080808;
  --ink-soft: #121212;
  --ink-raised: #191919;
  --yellow: #e7b914;
  --yellow-light: #f0c83a;
  --paper: #0b0b0b;
  --paper-strong: #141414;
  --white: #ffffff;
  --grey: #aaa79d;
  --grey-dark: #b9b6ae;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(255, 255, 255, 0.13);
  --success: #177245;
  --danger: #a12626;
  --display: "DM Serif Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: 1180px;
  --header-height: 78px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--white);
  font-family: var(--sans);
  font-synthesis: none;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 4px;
  background: var(--yellow);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

button {
  border: 0;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-compact {
  padding: clamp(54px, 6vw, 84px) 0;
}

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

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

.section-yellow {
  background: var(--yellow);
  color: var(--ink);
}

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

.section-white {
  background: var(--paper-strong);
  color: var(--white);
}

.section-rule {
  border-top: 1px solid var(--line-light);
}

.section-dark.section-rule,
.section-black-soft.section-rule {
  border-top-color: var(--line-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--grey-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--yellow);
}

.section-dark .eyebrow,
.section-black-soft .eyebrow {
  color: #c8c5bc;
}

.section-yellow .eyebrow {
  color: var(--ink);
}

.section-yellow .eyebrow::before {
  background: var(--ink);
}

.section-yellow .quote-block::before {
  background: var(--ink);
  opacity: 0.72;
}

.section-yellow .quote-block cite {
  color: rgba(8, 8, 8, 0.7);
}

.display-title {
  max-width: 860px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.section-title {
  max-width: 790px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 4.35rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.section-title em,
.display-title em {
  color: var(--yellow);
  font-weight: 400;
}

.section-yellow .section-title em,
.section-yellow .display-title em {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.heading-small {
  margin-bottom: 14px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.lead {
  max-width: 730px;
  margin-bottom: 32px;
  color: var(--grey-dark);
  font-size: clamp(1.05rem, 1.8vw, 1.27rem);
  line-height: 1.7;
}

.section-dark .lead,
.section-black-soft .lead {
  color: #c8c5bc;
}

.section-yellow .lead {
  color: rgba(8, 8, 8, 0.72);
}

.kicker {
  max-width: 690px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.text-muted {
  color: var(--grey-dark);
}

.section-dark .text-muted,
.section-black-soft .text-muted {
  color: #aaa79d;
}

.text-yellow {
  color: var(--yellow);
}

.text-balance {
  text-wrap: balance;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--yellow-light);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #252525;
}

.button-outline {
  border-color: currentColor;
  background: transparent;
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.section-dark .button-outline,
.section-black-soft .button-outline {
  color: var(--white);
}

.section-dark .button-outline:hover,
.section-black-soft .button-outline:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.button-small {
  min-height: 43px;
  padding: 10px 16px;
  font-size: 0.78rem;
}

.button-arrow {
  font-size: 1.1em;
  transition: transform 160ms ease;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 8, 8, 0.98);
  color: var(--white);
}

.utility-bar {
  border-bottom: 1px solid var(--line-dark);
  background: var(--yellow);
  color: var(--ink);
}

.utility-inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.utility-inner span:last-child {
  opacity: 0.68;
}

.nav-shell {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  padding: 0;
  text-align: center;
  text-indent: 0;
}

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

.brand-name {
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-role {
  margin-top: 5px;
  color: #9e9b92;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 10px 9px;
  color: #c7c4bc;
  font-size: 0.76rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 5px;
  left: 9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  transition: transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

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

.nav-cta {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle-copy {
  display: none;
  text-align: left;
  line-height: 1;
}

.menu-toggle-copy strong,
.menu-toggle-copy small {
  display: block;
}

.menu-toggle-copy strong {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-toggle-copy small {
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  opacity: 0.72;
}

.menu-bars {
  display: grid;
  width: 21px;
  gap: 5px;
}

.menu-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-bars span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bars span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bars span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: 80px;
  width: min(54vw, 760px);
  height: 2px;
  transform: rotate(-11deg);
  transform-origin: right;
  background: var(--yellow);
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: clamp(680px, calc(100svh - 110px), 840px);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(70px, 9vw, 110px);
}

.hero-copy .display-title {
  max-width: 860px;
}

.hero-copy .lead {
  max-width: 700px;
}

.hero-note {
  display: flex;
  max-width: 650px;
  align-items: flex-start;
  gap: 13px;
  margin-top: 30px;
  color: #aaa79d;
  font-size: 0.84rem;
}

.hero-note::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.strategy-card {
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
  box-shadow: var(--shadow);
}

.strategy-card::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 6px;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--yellow);
}

.strategy-head {
  padding: 25px 26px 20px 31px;
  border-bottom: 1px solid var(--line-dark);
}

.strategy-head span {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strategy-head h2 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.strategy-list {
  display: grid;
}

.strategy-item {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 15px;
  padding: 19px 26px 19px 31px;
  border-bottom: 1px solid var(--line-dark);
}

.strategy-item:last-child {
  border-bottom: 0;
}

.strategy-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(245, 196, 0, 0.35);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.05rem;
}

.strategy-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.86rem;
}

.strategy-item small {
  color: #97948c;
  font-size: 0.75rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 154px) 0 clamp(76px, 9vw, 118px);
  background: var(--ink);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  width: 42%;
  height: 2px;
  transform: rotate(-14deg);
  background: var(--yellow);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .display-title {
  max-width: 940px;
}

.page-hero .lead {
  max-width: 700px;
}

/* Authority */
.authority-band {
  background: var(--yellow);
  color: var(--ink);
}

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

.authority-item {
  min-height: 145px;
  padding: 30px 26px;
  border-right: 1px solid rgba(8, 8, 8, 0.22);
}

.authority-item:last-child {
  border-right: 0;
}

.authority-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.authority-item span {
  display: block;
  max-width: 210px;
  color: rgba(8, 8, 8, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

/* Layouts and cards */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

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

.sticky-copy {
  position: sticky;
  top: 132px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.card {
  position: relative;
  min-height: 260px;
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
}

.section-dark .card,
.section-black-soft .card {
  border-color: var(--line-dark);
  background: var(--ink-raised);
}

.card-accent {
  border-top: 5px solid var(--yellow);
}

.card-label {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--grey-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-dark .card-label,
.section-black-soft .card-label {
  color: var(--yellow);
}

/* Contraste dos temas na seção amarela de palestras */
.section-yellow .workshop-topic-grid .card-label {
  color: var(--yellow);
}

.section-yellow .workshop-topic-grid .card h3 {
  color: var(--white);
}

.section-yellow .workshop-topic-grid .card p {
  color: #f0eee7;
}

.card h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.card p {
  margin-bottom: 0;
  color: var(--grey-dark);
  font-size: 0.91rem;
}

.section-dark .card p,
.section-black-soft .card p {
  color: #aaa79d;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.service-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-row-index {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.45rem;
}

.service-row h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 800;
}

.service-row p {
  margin-bottom: 0;
  color: #aaa79d;
  font-size: 0.9rem;
}

.check-list,
.clean-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.clean-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line-light);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 2px;
  width: 12px;
  height: 6px;
  transform: rotate(-45deg);
  border-bottom: 3px solid var(--yellow);
  border-left: 3px solid var(--yellow);
}

.section-dark .check-list li,
.section-black-soft .check-list li {
  border-color: var(--line-dark);
}

.section-yellow .check-list li {
  border-color: rgba(8, 8, 8, 0.2);
}

.section-yellow .check-list li::before {
  border-color: var(--ink);
}

.numberless-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.numberless-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 32px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.numberless-item strong {
  font-size: 1rem;
}

.numberless-item p {
  margin-bottom: 0;
  color: var(--grey-dark);
}

.section-dark .numberless-list,
.section-dark .numberless-item,
.section-black-soft .numberless-list,
.section-black-soft .numberless-item {
  border-color: var(--line-dark);
}

.section-dark .numberless-item p,
.section-black-soft .numberless-item p {
  color: #aaa79d;
}

/* Method */
.method-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
  overflow: hidden;
}

.method-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  min-height: 170px;
  border-bottom: 1px solid var(--line-dark);
}

.method-row:last-child {
  border-bottom: 0;
}

.method-letter {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-dark);
  color: var(--yellow);
  font-family: var(--display);
  font-size: 4rem;
}

.method-copy {
  padding: 30px;
}

.method-copy h3 {
  margin-bottom: 9px;
  color: var(--yellow);
  font-size: 1.12rem;
}

.method-copy p {
  margin-bottom: 0;
  color: var(--white);
  font-size: 0.91rem;
}

.method-pillar {
  padding: clamp(28px, 4vw, 46px);
  border-top: 6px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

.method-pillar .method-letter-large {
  display: block;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
}

.method-pillar h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.method-pillar p {
  margin-bottom: 0;
  color: rgba(8, 8, 8, 0.7);
}

/* Process and results */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--yellow);
}

.process-step {
  position: relative;
  padding: 35px 27px 0 0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.process-step h3 {
  margin-bottom: 11px;
  font-size: 1rem;
}

.process-step p {
  margin-bottom: 0;
  color: #aaa79d;
  font-size: 0.88rem;
}

.process-track-vertical {
  grid-template-columns: 1fr;
  margin-left: 7px;
  border-top: 0;
  border-left: 3px solid var(--yellow);
}

.process-track-vertical .process-step {
  padding: 0 0 32px 30px;
}

.process-track-vertical .process-step:last-child {
  padding-bottom: 0;
}

.process-track-vertical .process-step::before {
  top: 3px;
  left: -9px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.outcome {
  min-height: 190px;
  padding: 30px 34px 30px 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.outcome:nth-child(even) {
  padding-right: 0;
  padding-left: 34px;
  border-right: 0;
}

.outcome h3 {
  margin-bottom: 11px;
  font-size: 1.05rem;
}

.outcome p {
  margin-bottom: 0;
  color: var(--grey-dark);
  font-size: 0.91rem;
}

/* About / quote */
.quote-block {
  position: relative;
  max-width: 980px;
  padding-left: clamp(26px, 5vw, 72px);
}

.quote-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--yellow);
}

.quote-block blockquote {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.quote-block cite {
  color: #aaa79d;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(45px, 8vw, 108px);
  align-items: center;
}

.profile-monogram {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
}

.profile-monogram::before {
  content: "WB";
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(7rem, 16vw, 12rem);
  letter-spacing: -0.12em;
  line-height: 1;
}

.profile-monogram::after {
  content: "ESTRATÉGIA • POSTURA • EXECUÇÃO";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 17px;
  border-top: 1px solid var(--line-dark);
  color: #aaa79d;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
}

/* Channels */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.channel-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.channel-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  background: #202020;
}

.channel-name {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.channel-card h3 {
  margin: 45px 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.05;
}

.channel-card p {
  margin-bottom: 25px;
  color: #aaa79d;
  font-size: 0.88rem;
}

.channel-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
}

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

.faq-answer {
  max-width: 760px;
  padding: 0 52px 26px 0;
  color: var(--grey-dark);
}

/* CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 76px);
  border-radius: var(--radius-md);
  background: var(--yellow);
  color: var(--ink);
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -15%;
  bottom: 15%;
  width: 55%;
  height: 2px;
  transform: rotate(-12deg);
  background: rgba(8, 8, 8, 0.35);
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-panel .section-title {
  max-width: 850px;
}

.cta-panel .section-title em {
  color: var(--ink);
}

.cta-panel .lead {
  color: var(--ink);
}

.cta-panel .eyebrow {
  color: var(--ink);
}

.cta-panel .eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

.cta-panel .button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.cta-panel .button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: stretch;
}

.contact-aside {
  position: sticky;
  top: 132px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--paper-strong);
  min-height: 570px;
  align-content: start;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #aaa69a;
  border-radius: var(--radius-sm);
  background: #0d0d0d;
  color: var(--white);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 210px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(231, 185, 20, 0.34);
}

.field-help {
  color: var(--grey-dark);
  font-size: 0.75rem;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #321616;
  color: #ffb4b4;
}

.form-status.is-success {
  background: #123322;
  color: #9de4bb;
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.form-privacy {
  max-width: 500px;
  color: var(--grey-dark);
  font-size: 0.72rem;
}

/* Legal */
.legal-copy {
  color: #c8c5bc;
}

.legal-copy h2 {
  margin: 48px 0 14px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
}

.legal-copy h3 {
  margin: 28px 0 10px;
  font-size: 1rem;
}

.legal-copy a {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* Footer */
.site-footer {
  padding: 66px 0 22px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 420px;
  color: #aaa79d;
  font-size: 0.88rem;
}

.footer-heading {
  margin-bottom: 17px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  color: #c5c2ba;
  font-size: 0.82rem;
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  color: #85827b;
  font-size: 0.71rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  font-size: 0.8rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: var(--yellow-light);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

/* Small utility layouts */
.logo-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-chip {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--ink-raised);
  font-size: 0.76rem;
  font-weight: 800;
}

.section-dark .logo-chip {
  border-color: var(--line-dark);
  background: rgba(231, 185, 20, 0.06);
}

.note-box {
  padding: 24px;
  border-left: 5px solid var(--yellow);
  background: rgba(231, 185, 20, 0.08);
}

.note-box strong {
  display: block;
  margin-bottom: 6px;
}

.note-box p {
  margin-bottom: 0;
  color: inherit;
  opacity: 0.75;
}

.section-yellow .note-box {
  border-left-color: var(--ink);
  background: rgba(8, 8, 8, 0.08);
  color: var(--ink);
}

.content-stack {
  display: grid;
  gap: 22px;
}

.meta-line {
  color: var(--grey-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-strip a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #c8c5bc;
  font-size: 0.75rem;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease;
}

.social-strip a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* Responsive */
@media (max-width: 1020px) {
  :root {
    --header-height: 70px;
  }

  .utility-inner span:last-child {
    display: none;
  }

  .menu-toggle {
    display: flex;
    min-width: 122px;
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 0 8px 26px rgba(231, 185, 20, 0.2);
    animation: menu-attention 3.2s ease-in-out infinite;
  }

  .menu-toggle-copy {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--yellow-light);
    animation: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 106px);
    overflow-y: auto;
    padding: 13px;
    border: 1px solid var(--line-dark);
    border-top: 3px solid var(--yellow);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-link {
    min-height: 48px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.87rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.is-active {
    color: var(--yellow);
  }

  .nav-link-feature {
    margin-top: 4px;
    border-left: 3px solid var(--yellow);
    background: rgba(231, 185, 20, 0.08);
    color: var(--yellow-light);
  }

  .nav-cta {
    margin: 9px 0 0;
  }

  body.menu-is-open {
    overflow: hidden;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .strategy-card {
    max-width: 670px;
  }

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

  .authority-item:nth-child(2) {
    border-right: 0;
  }

  .authority-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 8, 8, 0.22);
  }

  .split,
  .profile-block,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .sticky-copy,
  .contact-aside {
    position: static;
  }

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

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@keyframes menu-attention {
  0%,
  100% {
    box-shadow: 0 8px 26px rgba(231, 185, 20, 0.16);
  }

  50% {
    box-shadow: 0 8px 32px rgba(231, 185, 20, 0.38);
  }
}

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

  .utility-inner {
    min-height: 30px;
    font-size: 0.61rem;
    letter-spacing: 0.08em;
  }

  .brand-role {
    display: none;
  }

  .brand-name {
    font-size: 0.84rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .display-title {
    font-size: clamp(2.65rem, 14.5vw, 4.3rem);
  }

  .section-title {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .hero-inner {
    gap: 50px;
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .hero::after,
  .page-hero::after {
    width: 75%;
    opacity: 0.5;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .authority-item {
    min-height: 130px;
    padding: 25px 18px;
  }

  .card-grid,
  .card-grid-2,
  .channel-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 230px;
  }

  .outcome,
  .outcome:nth-child(even) {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
  }

  .numberless-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .method-row {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .method-letter {
    font-size: 3rem;
  }

  .method-copy {
    padding: 24px 20px;
  }

  .process-track {
    grid-template-columns: 1fr;
    margin-left: 7px;
    border-top: 0;
    border-left: 3px solid var(--yellow);
  }

  .process-step {
    padding: 0 0 30px 30px;
  }

  .process-step::before {
    top: 3px;
    left: -9px;
  }

  .profile-monogram {
    min-height: 330px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .form-actions {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

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

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .brand-copy {
    max-width: 160px;
  }

  .authority-grid {
    grid-template-columns: 1fr;
  }

  .authority-item,
  .authority-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(8, 8, 8, 0.22);
  }

  .authority-item:last-child {
    border-bottom: 0;
  }

  .strategy-head,
  .strategy-item {
    padding-right: 20px;
    padding-left: 25px;
  }

  .strategy-item {
    grid-template-columns: 40px 1fr;
  }

  .cta-panel {
    padding: 34px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .whatsapp-float,
  .site-footer,
  .button-row {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section,
  .page-hero {
    padding: 30px 0;
    background: white !important;
    color: black !important;
  }
}


/* Movimento ambiente discreto */
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      112deg,
      transparent 0,
      transparent 178px,
      rgba(231, 185, 20, 0.06) 179px,
      rgba(231, 185, 20, 0.06) 180px,
      transparent 181px,
      transparent 360px
    ),
    repeating-linear-gradient(
      18deg,
      transparent 0,
      transparent 238px,
      rgba(231, 185, 20, 0.022) 239px,
      rgba(231, 185, 20, 0.022) 240px,
      transparent 241px,
      transparent 480px
    );
  background-position: 0 0, 0 0;
  opacity: 0.72;
  animation: ambient-lines 28s linear infinite;
  will-change: background-position;
}

.hero::after,
.page-hero::after {
  animation: signal-opacity 7s ease-in-out infinite;
}

.cta-panel::after {
  animation: cta-signal 9s ease-in-out infinite;
  transform-origin: center;
}

@keyframes ambient-lines {
  to {
    background-position: 360px 180px, -480px 240px;
  }
}

@keyframes signal-opacity {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.3;
  }
}

@keyframes cta-signal {
  0%,
  100% {
    transform: rotate(-12deg) translateX(0);
    opacity: 1;
  }

  50% {
    transform: rotate(-12deg) translateX(9%);
    opacity: 0.48;
  }
}

@media (max-width: 700px) {
  .hero::before,
  .page-hero::before {
    opacity: 0.48;
    animation-duration: 36s;
  }
}


/* Fotografias e identidades oficiais */
.hero-portrait {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  pointer-events: none;
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 6px;
  background: var(--yellow);
}

.hero-portrait > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 50% center;
  image-orientation: from-image;
  filter: saturate(0.88) contrast(1.04);
  animation: portrait-breathe 18s ease-in-out infinite alternate;
}

.hero-portrait figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 32px;
  z-index: 3;
}

.hero-portrait figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-portrait figcaption strong {
  display: block;
  max-width: 360px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.12;
}

.hero-portrait-seal {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: grid;
  min-width: 110px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.hero-portrait-seal b {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}

.hero-portrait-seal span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.experience-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(231, 185, 20, 0.12), transparent 52%),
    var(--ink-raised);
  box-shadow: var(--shadow);
  isolation: isolate;
  text-align: center;
}

.experience-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(231, 185, 20, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 185, 20, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom right, black, transparent 72%);
}

.experience-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--yellow);
}

.experience-panel-kicker {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.experience-panel-title {
  max-width: 360px;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.experience-panel p {
  margin: 0;
  color: #b9b6ae;
  font-size: 0.92rem;
}

.profile-image {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
}

.profile-image > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  image-orientation: from-image;
  filter: saturate(0.82) contrast(1.04);
}

.profile-image-tall > img {
  object-position: 50% 18%;
}

.profile-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  display: none;
  pointer-events: none;
}

.profile-image figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.page-hero-grid-lecture {
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
}

.lecture-hero-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
  box-shadow: var(--shadow);
}

.lecture-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-showcase {
  display: grid;
  min-height: 235px;
  grid-template-columns: 128px 1fr;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
}

.brand-showcase-dark {
  border-color: var(--line-dark);
  background: var(--ink-raised);
  box-shadow: var(--shadow);
}

.brand-showcase-light {
  border-color: rgba(8, 8, 8, 0.23);
  background: rgba(8, 8, 8, 0.08);
}

.brand-showcase img {
  width: 128px;
  height: 128px;
  border-radius: 9px;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
  background: var(--ink);
}

.brand-showcase.brand-showcase-logo-only {
  grid-template-columns: 1fr;
  place-items: center;
}

.brand-showcase figcaption {
  display: grid;
  gap: 8px;
}

.brand-showcase figcaption strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
}

.brand-showcase figcaption span {
  color: inherit;
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.68;
}

.editorial-gallery-section {
  overflow: hidden;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 16px;
}

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

.media-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--ink-raised);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  image-orientation: from-image;
  filter: saturate(0.84) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 300ms ease;
}

.media-card:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.media-card-wide img {
  object-position: 50% 24%;
}

.media-card-group img {
  object-fit: cover;
  object-position: 50% 36%;
  image-orientation: from-image;
}

.media-card-portrait,
.media-card-portrait img {
  min-height: 460px;
}

.media-card-portrait img {
  object-position: 50% 28%;
}

.media-card-contain img {
  padding: clamp(22px, 4vw, 52px);
  object-fit: contain;
  background: #0d0d0d;
}

.media-card-captioned {
  display: grid;
  grid-template-rows: 1fr auto;
}

.media-card-captioned img {
  height: 400px;
  min-height: 0;
}

.media-card-captioned figcaption {
  min-height: 88px;
  padding: 18px 19px;
  border-top: 1px solid var(--line-dark);
  color: #c8c5bc;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.55;
}

.method-photo-captioned {
  display: grid;
  grid-template-rows: 1fr auto;
}

.method-photo-captioned img {
  min-height: 0;
}

.method-photo-captioned figcaption {
  width: 100%;
  padding: 17px 20px;
  border-top: 1px solid var(--line-light);
  color: #c8c5bc;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: left;
}

.wide-brand-visual {
  display: grid;
  min-height: 390px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: var(--ink);
}

.wide-brand-visual img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
}

.wide-brand-visual-photo {
  width: min(100%, 520px);
  min-height: 0;
  aspect-ratio: 4 / 5;
  justify-self: center;
}

.wide-brand-visual-photo img {
  max-height: none;
  object-fit: cover;
  object-position: 50% 34%;
}

.consulting-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.consulting-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: transparent;
}

.consulting-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  image-orientation: from-image;
  filter: none;
  transition: none;
}

.consulting-photo:hover img {
  transform: none;
}

.consulting-photo figcaption {
  min-height: 78px;
  padding: 17px 18px;
  border-top: 1px solid var(--line-dark);
  color: #c8c5bc;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.method-value-note {
  max-width: 610px;
  margin: 24px 0 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--ink);
  background: rgba(8, 8, 8, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
}

.method-value-note strong {
  display: block;
  margin-bottom: 3px;
}

.workshop-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(34px, 7vw, 88px);
}

.workshop-gallery {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  margin-top: 48px;
}

.workshop-photo {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.24);
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(8, 8, 8, 0.16);
}

.workshop-photo img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: 50% 34%;
}

.workshop-photo-wide img {
  object-position: 50% 46%;
}

.workshop-photo figcaption {
  min-height: 86px;
  padding: 18px 20px;
  border-top: 1px solid var(--line-dark);
  color: #c8c5bc;
  font-size: 0.82rem;
  line-height: 1.55;
}

.workshop-photo figcaption strong {
  color: var(--yellow);
}

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

.workshop-gallery-mosaic .workshop-photo {
  display: block;
  min-height: 0;
  background: var(--ink-raised);
}

.workshop-gallery-mosaic .workshop-photo img {
  height: clamp(320px, 38vw, 520px);
}

@keyframes portrait-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

@media (max-width: 1020px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .lecture-hero-image {
    width: min(100%, 780px);
  }

  .brand-showcase {
    max-width: 680px;
  }

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

  .media-card-wide {
    grid-column: 1 / -1;
  }

  .workshop-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hero-portrait,
  .hero-portrait > img {
    min-height: 440px;
  }

  .hero-portrait > img {
    object-position: 50% center;
  }

  .hero-portrait figcaption {
    right: 20px;
    bottom: 20px;
    left: 25px;
  }

  .hero-portrait figcaption strong {
    font-size: 1.3rem;
  }

  .hero-portrait-seal {
    top: 15px;
    right: 15px;
  }

  .experience-panel,
  .profile-image,
  .profile-image > img {
    min-height: 340px;
  }

  .brand-showcase {
    min-height: 0;
    grid-template-columns: 82px 1fr;
    gap: 17px;
    padding: 20px;
  }

  .brand-showcase img {
    width: 82px;
    height: 82px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .consulting-photo-grid {
    grid-template-columns: 1fr;
  }

  .media-card-wide {
    grid-column: auto;
  }

  .media-card,
  .media-card img {
    min-height: 300px;
  }

  .media-card-portrait,
  .media-card-portrait img {
    min-height: 420px;
  }

  .media-card-captioned img {
    height: min(112vw, 500px);
    min-height: 0;
  }

  .wide-brand-visual {
    min-height: 280px;
  }

  .workshop-gallery {
    grid-template-columns: 1fr;
  }

  .workshop-photo img {
    height: min(112vw, 500px);
  }

  .workshop-gallery-mosaic .workshop-photo img {
    height: min(112vw, 520px);
  }
}

/* Fundo abstrato preto e amarelo da página principal */
.hero::before {
  inset: -3%;
  background-image:
    linear-gradient(90deg, rgba(8, 8, 8, 0.97) 0%, rgba(8, 8, 8, 0.86) 46%, rgba(8, 8, 8, 0.58) 100%),
    url("../images/fundo-abstrato-spp.webp");
  background-position: center, 55% center;
  background-size: cover;
  opacity: 1;
  animation: hero-background-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-background-drift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.065) translate3d(-0.8%, -0.6%, 0);
  }
}

@media (max-width: 700px) {
  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.78) 56%, rgba(8, 8, 8, 0.9) 100%),
      url("../images/fundo-abstrato-spp.webp");
    background-position: center, 50% center;
    opacity: 1;
  }
}
