:root {
  --navy: #002366;
  --navy-deep: #091f5a;
  --navy-night: #061645;
  --orange: #d65b14;
  --orange-hot: #fc6407;
  --ink: #171717;
  --paper: #f6f4ef;
  --white: #ffffff;
  --line: rgba(0, 35, 102, 0.14);
  --shadow: 0 24px 70px rgba(2, 13, 48, 0.22);
  --radius-sm: 16px;
  --radius: 28px;
  --shell: min(1240px, calc(100vw - 48px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--orange);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(6, 22, 69, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-name {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.brand-name strong {
  font-weight: 900;
}

.brand-cause {
  margin-top: 6px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 36px);
}

.site-nav > a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.site-nav > a:not(.nav-action)::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  padding: 12px 17px;
  color: var(--navy-night);
  background: var(--white);
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-action:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 52px);
  color: var(--white);
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-night) 48%, #000 118%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 680px;
  height: 680px;
  top: 5%;
  right: -120px;
}

.hero-orbit-two {
  width: 480px;
  height: 480px;
  top: 18%;
  right: -20px;
}

.hero-grid {
  min-height: calc(100svh - var(--header-height) - 166px);
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #ffb27a;
}

.hero h1,
.section h2,
.contact h2,
.social-heading h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 6.2vw, 96px);
  line-height: 0.93;
}

.hero h1 em,
.social-heading h2 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 21px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-3px);
}

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

.button-dark:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.84);
}

.hero-visual {
  position: relative;
  align-self: end;
  min-height: 650px;
}

.hero-portrait {
  position: absolute;
  z-index: 2;
  width: min(620px, 48vw);
  height: auto;
  inset: auto 50% 0 auto;
  transform: translateX(50%);
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.46));
  mask-image: linear-gradient(to bottom, black 92%, transparent 100%);
}

.portrait-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  left: 50%;
  bottom: 48px;
  background: rgba(214, 91, 20, 0.34);
  border-radius: 50%;
  filter: blur(48px);
  transform: translateX(-50%);
}

.hero-statement {
  position: absolute;
  inset: 22% auto auto 50%;
  color: rgba(255, 255, 255, 0.045);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(80px, 9vw, 144px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transform: translateX(-50%) rotate(-90deg);
}

.hero-proof {
  position: absolute;
  z-index: 4;
  min-width: 160px;
  padding: 15px 17px;
  background: rgba(6, 22, 69, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--orange);
  font-family: "Arial Narrow", sans-serif;
  font-size: 30px;
  font-weight: 900;
}

.hero-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.hero-proof-law {
  top: 15%;
  right: -1%;
}

.hero-proof-cases {
  left: 2%;
  bottom: 13%;
}

.hero-index {
  min-height: 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-index > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 25px 24px 25px 0;
}

.hero-index > div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-index strong {
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(26px, 2.6vw, 40px);
  letter-spacing: -0.04em;
}

.hero-index span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.movement-strip {
  overflow: hidden;
  color: var(--navy-night);
  background: var(--orange);
  border-block: 1px solid rgba(6, 22, 69, 0.14);
}

.movement-strip > div {
  width: max-content;
  padding-block: 17px;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: marquee 24s linear infinite;
}

.movement-strip span {
  font-family: "Arial Narrow", sans-serif;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.movement-strip i {
  font-style: normal;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.story {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  align-items: center;
  gap: 38px clamp(42px, 7vw, 100px);
}

.section h2,
.contact h2 {
  max-width: 780px;
  color: var(--navy-night);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
}

.section-lead {
  max-width: 610px;
  margin: 28px 0 30px;
  color: rgba(23, 23, 23, 0.7);
  font-size: 17px;
  line-height: 1.72;
}

.story-photo {
  position: relative;
  margin: 0;
  min-height: 610px;
  overflow: hidden;
  background: var(--navy-deep);
  border-radius: 120px 24px 24px 24px;
  box-shadow: var(--shadow);
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 22, 69, 0.88), transparent 55%);
}

.story-photo img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: top center;
}

.story-photo figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 30px 30px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  color: var(--white);
}

.story-photo figcaption span {
  color: var(--orange);
  font-family: "Arial Narrow", sans-serif;
  font-size: 34px;
  font-weight: 900;
}

.story-photo figcaption p {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.story-roles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-roles article {
  padding: 28px clamp(20px, 2.8vw, 42px) 28px 0;
}

.story-roles article + article {
  padding-left: clamp(20px, 2.8vw, 42px);
  border-left: 1px solid var(--line);
}

.story-roles span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.story-roles p {
  max-width: 320px;
  margin: 12px 0 0;
  color: rgba(23, 23, 23, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.cause {
  position: relative;
  color: var(--white);
  background: var(--navy-night);
  isolation: isolate;
  overflow: hidden;
}

.cause-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy-night) 10%, rgba(6, 22, 69, 0.88) 55%, rgba(6, 22, 69, 0.68)),
    url("https://cdn.abacus.ai/images/df17f3f4-15b1-41a3-9406-134b363dabc6.png") center / cover;
  opacity: 0.74;
}

.cause::after {
  content: "HENRY";
  position: absolute;
  z-index: -1;
  right: -3vw;
  top: -5vw;
  color: rgba(255, 255, 255, 0.035);
  font-family: Impact, sans-serif;
  font-size: 30vw;
  letter-spacing: -0.08em;
}

.cause-heading h2 {
  color: var(--white);
}

.cause-actions {
  margin-top: clamp(58px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
  gap: 18px;
}

.law-panel,
.disque-panel {
  position: relative;
  min-height: 470px;
  padding: clamp(32px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  overflow: hidden;
}

.law-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.law-panel::before {
  content: "14.344";
  position: absolute;
  inset: 30px 42px auto auto;
  color: rgba(255, 255, 255, 0.08);
  font-family: Impact, sans-serif;
  font-size: clamp(90px, 12vw, 176px);
  line-height: 1;
}

.disque-panel {
  color: var(--navy-night);
  background: var(--orange);
}

.panel-index {
  position: absolute;
  inset: 28px auto auto 32px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.law-panel h3,
.disque-panel h3 {
  position: relative;
  max-width: 620px;
  margin: 0;
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(30px, 3.5vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.law-panel p,
.disque-panel p {
  max-width: 630px;
  margin: 18px 0 26px;
  font-size: 14px;
  line-height: 1.62;
}

.law-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.law-evidence {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  margin: -6px 0 18px;
  padding-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.law-evidence strong {
  color: var(--orange);
  font-family: "Arial Narrow", sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

.law-evidence span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.law-panel a,
.disque-panel a {
  width: max-content;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 850;
}

.disque-number {
  margin: auto 0 6px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(110px, 15vw, 210px);
  line-height: 0.72;
  letter-spacing: -0.07em;
}

.disque-number span {
  display: block;
  margin: 0 0 0.16em 0.12em;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.13em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.19em;
}

.mandate {
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading h2 {
  max-width: 850px;
}

.mandate-flow {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.mandate-feature {
  min-height: 190px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, padding 220ms ease;
}

.mandate-feature:hover {
  padding-inline: 28px;
  color: var(--white);
  background: var(--navy-deep);
}

.mandate-feature > span {
  color: var(--orange);
  font-family: "Arial Narrow", sans-serif;
  font-size: 42px;
  font-weight: 900;
}

.mandate-feature > div {
  display: grid;
  grid-template-columns: 170px 1fr minmax(200px, 0.42fr);
  align-items: center;
  gap: 30px;
}

.mandate-feature p,
.mandate-feature h3,
.mandate-feature small {
  margin: 0;
}

.mandate-feature p {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.mandate-feature h3 {
  max-width: 640px;
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.mandate-feature small {
  color: rgba(23, 23, 23, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.mandate-feature:hover small {
  color: rgba(255, 255, 255, 0.62);
}

.social {
  position: relative;
  color: var(--white);
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-night) 48%, #000 118%);
  overflow: hidden;
}

.social-beam {
  position: absolute;
  width: 900px;
  height: 900px;
  top: -480px;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(255, 255, 255, 0.02), 0 0 0 220px rgba(255, 255, 255, 0.015);
  transform: translateX(-50%);
}

.social-heading {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.social-heading .eyebrow {
  justify-content: center;
}

.social-heading h2 {
  color: var(--white);
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.94;
}

.social-heading p:last-child {
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

.social-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.social-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  isolation: isolate;
}

.social-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%);
  pointer-events: none;
}

.social-card:hover {
  z-index: 4;
  border-color: rgba(214, 91, 20, 0.74);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(-8px);
}

.social-card-wide {
  grid-column: span 6;
  min-height: 490px;
  padding: 42px;
  background: #111a3b;
}

.social-card-copy {
  position: relative;
  z-index: 4;
  max-width: 49%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-card-copy > p,
.social-card-small > p {
  margin: 26px 0 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.social-card h3 {
  margin: 0;
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.platform-mark {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.platform-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.platform-instagram {
  background: linear-gradient(145deg, #833ab4, #fd1d1d 58%, #fcb045);
}

.platform-tiktok {
  background: #010101;
}

.platform-facebook {
  background: #1877f2;
}

.platform-youtube {
  background: #ff0000;
}

.platform-x {
  background: #000;
}

.platform-linkedin {
  background: #0a66c2;
}

.social-button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  color: var(--navy-night);
  background: var(--orange);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.phone {
  position: absolute;
  z-index: 2;
  width: 300px;
  height: 570px;
  right: -22px;
  top: 54px;
  padding: 18px 12px 0;
  color: var(--ink);
  background: #f8f8f8;
  border: 8px solid #080b12;
  border-radius: 46px 46px 0 0;
  box-shadow: 0 26px 42px rgba(0, 0, 0, 0.44);
  transform: rotate(4deg);
  transition: transform 320ms ease;
  overflow: hidden;
}

.social-card:hover .phone {
  transform: rotate(1deg) translateY(-12px);
}

.phone-island {
  width: 82px;
  height: 23px;
  margin: -10px auto 18px;
  background: #050505;
  border-radius: 999px;
}

.profile-line {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 10px;
}

.profile-line img {
  width: 35px;
  height: 35px;
  object-fit: cover;
  object-position: top;
  background: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.profile-line strong,
.profile-line small {
  display: block;
}

.profile-line small {
  margin-top: 2px;
  color: #777;
}

.phone-photo {
  height: 330px;
  margin-inline: -12px;
  background-color: var(--navy);
  background-position: center top;
  background-size: cover;
}

.photo-leniel {
  background-image:
    linear-gradient(to top, rgba(6, 22, 69, 0.72), transparent 56%),
    url("https://cdn.abacus.ai/images/99683535-af64-440d-8c6a-6cdc26a2f7e7.png");
}

.phone-caption {
  padding: 13px 3px;
  font-size: 9px;
  line-height: 1.45;
}

.social-tiktok {
  background: linear-gradient(145deg, #10152d, #050713);
}

.phone-tiktok {
  padding: 0;
  color: var(--white);
  background: var(--navy-night);
  border-color: #111;
  transform: rotate(-4deg);
}

.phone-tiktok .phone-island {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

.tiktok-preview {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 65%),
    url("https://cdn.abacus.ai/images/7c0d221c-2d05-408f-8590-a3c7c92048b3.png") center bottom / cover no-repeat,
    var(--navy);
}

.video-copy {
  position: absolute;
  inset: auto 50px 96px 18px;
  font-family: "Arial Narrow", sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 0.95;
}

.video-tag {
  position: absolute;
  inset: auto auto 64px 18px;
  font-size: 10px;
  font-weight: 800;
}

.video-actions {
  position: absolute;
  right: 14px;
  bottom: 62px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 20px;
}

.social-card-small {
  grid-column: span 3;
  min-height: 310px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
}

.social-card-small h3 {
  font-size: clamp(28px, 2.7vw, 40px);
}

.card-arrow {
  width: 48px;
  height: 48px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-night);
  background: var(--orange);
  border-radius: 50%;
  font-size: 22px;
  transition: transform 180ms ease;
}

.social-card-small:hover .card-arrow {
  transform: rotate(45deg);
}

.social-manifesto {
  grid-column: 1 / -1;
  min-height: 260px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--navy-night);
  background: var(--orange);
  border-radius: var(--radius);
}

.social-manifesto > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.social-manifesto p {
  max-width: 570px;
  margin: 18px 0 28px;
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.social-manifesto a {
  width: max-content;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 850;
}

.contact {
  padding-block: clamp(75px, 8vw, 116px);
  color: var(--navy-night);
  background: var(--orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 60px;
}

.contact .eyebrow {
  color: var(--navy-night);
}

.contact-action p {
  max-width: 430px;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
}

.site-footer {
  padding-top: 64px;
  color: var(--white);
  background: #020817;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 0.65fr;
  gap: 70px;
  padding-bottom: 58px;
}

.brand-footer {
  width: max-content;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-footer .brand-logo-footer {
  width: clamp(174px, 15vw, 208px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-grid > div:first-child > p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 1.62;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 15px 32px;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.35;
}

.footer-grid nav a:hover {
  color: var(--orange);
}

.footer-safety {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-safety strong {
  color: var(--orange);
  font-size: 9px;
  letter-spacing: 0.17em;
}

.footer-safety a {
  margin-top: 10px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 52px;
  line-height: 1;
}

.footer-safety span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover {
  color: var(--orange);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 680ms cubic-bezier(0.2, 0.65, 0.2, 1), transform 680ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.reveal-mid {
  transition-delay: 90ms;
}

.reveal-late {
  transition-delay: 170ms;
}

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

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 36px, 920px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    color: var(--white);
    background: rgba(6, 22, 69, 0.98);
    transform: translateX(100%);
    transition: transform 230ms ease;
  }

  .site-header.is-scrolled .site-nav {
    inset-block-start: 70px;
  }

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

  .site-nav > a {
    width: 100%;
    padding: 18px 2px;
    font-family: "Arial Narrow", sans-serif;
    font-size: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav .nav-action {
    width: auto;
    margin-top: 28px;
    padding: 14px 20px;
    color: var(--navy-night);
    font-family: inherit;
    font-size: 14px;
  }

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

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

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(58px, 10vw, 90px);
  }

  .hero-visual {
    width: min(680px, 100%);
    min-height: 640px;
    margin: -30px auto 0;
  }

  .hero-portrait {
    width: min(650px, 78vw);
  }

  .hero-index {
    position: relative;
    z-index: 6;
  }

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

  .story-photo {
    min-height: 570px;
  }

  .story-roles {
    grid-column: auto;
  }

  .cause-actions {
    grid-template-columns: 1fr;
  }

  .disque-panel {
    min-height: 390px;
  }

  .mandate-feature > div {
    grid-template-columns: 130px 1fr;
  }

  .mandate-feature small {
    display: none;
  }

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

  .social-card-small {
    grid-column: span 6;
  }

  .social-manifesto {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 70px;
    --radius: 22px;
  }

  .section {
    padding-block: 80px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-cause {
    font-size: 7px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 30px);
  }

  .hero-grid {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .hero-visual {
    min-height: 480px;
    margin-top: 0;
  }

  .hero-portrait {
    width: min(530px, 108vw);
  }

  .portrait-glow {
    width: 340px;
    height: 340px;
  }

  .hero-proof {
    min-width: 130px;
    padding: 11px 13px;
  }

  .hero-proof strong {
    font-size: 24px;
  }

  .hero-proof-law {
    top: 16%;
    right: 0;
  }

  .hero-proof-cases {
    left: 0;
    bottom: 9%;
  }

  .hero-index {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .hero-index > div,
  .hero-index > div + div {
    min-height: 67px;
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .hero-index > div:first-child {
    border-top: 0;
  }

  .movement-strip > div {
    gap: 24px;
  }

  .movement-strip span {
    font-size: 16px;
  }

  .section h2,
  .contact h2,
  .social-heading h2 {
    font-size: clamp(40px, 13vw, 60px);
  }

  .story-photo,
  .story-photo img {
    min-height: 480px;
    height: 480px;
  }

  .story-photo {
    border-radius: 72px 18px 18px 18px;
  }

  .story-roles {
    grid-template-columns: 1fr;
  }

  .story-roles article,
  .story-roles article + article {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .story-roles article:first-child {
    border-top: 0;
  }

  .law-panel,
  .disque-panel {
    min-height: 440px;
    padding: 32px 24px;
  }

  .law-panel::before {
    inset: 50px 20px auto auto;
  }

  .disque-number {
    font-size: 42vw;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .mandate-flow {
    margin-top: 50px;
  }

  .mandate-feature {
    min-height: 230px;
    grid-template-columns: 52px 1fr;
  }

  .mandate-feature:hover {
    padding-inline: 14px;
  }

  .mandate-feature > span {
    align-self: start;
    padding-top: 34px;
    font-size: 28px;
  }

  .mandate-feature > div {
    display: block;
  }

  .mandate-feature h3 {
    margin-top: 14px;
    font-size: 30px;
  }

  .social-grid {
    margin-top: 50px;
  }

  .social-card-wide,
  .social-card-small,
  .social-manifesto {
    grid-column: 1 / -1;
  }

  .social-card-wide {
    min-height: 580px;
    padding: 28px;
  }

  .social-card-copy {
    max-width: 100%;
    height: 255px;
  }

  .social-card-copy h3 {
    max-width: 260px;
    font-size: 36px;
  }

  .social-button {
    margin-top: 18px;
  }

  .phone {
    width: 250px;
    height: 410px;
    top: 282px;
    right: 50%;
    transform: translateX(50%) rotate(2deg);
  }

  .social-card:hover .phone {
    transform: translateX(50%) rotate(0deg) translateY(-7px);
  }

  .phone-tiktok {
    transform: translateX(50%) rotate(-2deg);
  }

  .phone-photo {
    height: 260px;
  }

  .social-card-small,
  .social-manifesto {
    min-height: 270px;
    padding: 30px;
  }

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

  .contact-grid {
    gap: 34px;
  }

  .footer-grid {
    gap: 38px;
  }

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

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

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

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

/* Direção visual 02 — autoridade leve
   Branco e neutros como base; azul estrutura a leitura; laranja sinaliza ação. */
:root {
  --paper: #f7f9fc;
  --mist: #edf3f8;
  --sand: #fbf6f1;
  --line: rgba(0, 35, 102, 0.1);
  --shadow: 0 24px 70px rgba(9, 31, 90, 0.11);
}

body {
  color: var(--navy-night);
  background: var(--white);
}

.site-header,
.site-header.is-scrolled {
  color: var(--navy-night);
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(0, 35, 102, 0.08);
  box-shadow: 0 8px 30px rgba(9, 31, 90, 0.06);
  backdrop-filter: blur(18px);
}

.nav-action {
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: 0 8px 20px rgba(9, 31, 90, 0.14);
}

.nav-action:hover {
  color: var(--white);
  background: var(--orange);
}

.menu-toggle {
  color: var(--navy-deep);
  background: var(--mist);
}

.hero {
  color: var(--navy-night);
  background:
    radial-gradient(circle at 78% 46%, rgba(214, 91, 20, 0.08), transparent 27%),
    linear-gradient(145deg, #fff 0%, var(--paper) 62%, var(--mist) 100%);
}

.hero::before {
  background-image:
    linear-gradient(rgba(0, 35, 102, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 35, 102, 0.035) 1px, transparent 1px);
}

.hero-orbit {
  border-color: rgba(0, 35, 102, 0.08);
}

.hero h1 {
  color: var(--navy-night);
}

.hero-lead {
  color: rgba(9, 31, 90, 0.68);
}

.eyebrow-light {
  color: var(--orange);
}

.text-link-light {
  color: var(--navy-deep);
}

.portrait-glow {
  background: rgba(214, 91, 20, 0.12);
  filter: blur(60px);
}

.hero-statement {
  color: rgba(0, 35, 102, 0.035);
}

.hero-proof {
  color: var(--navy-night);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(0, 35, 102, 0.1);
  box-shadow: 0 18px 45px rgba(9, 31, 90, 0.1);
  backdrop-filter: blur(14px);
}

.hero-proof span {
  color: rgba(9, 31, 90, 0.64);
}

.hero-index {
  border-top-color: rgba(0, 35, 102, 0.1);
}

.hero-index > div + div {
  border-left-color: rgba(0, 35, 102, 0.1);
}

.hero-index strong {
  color: var(--navy-deep);
}

.hero-index span {
  color: rgba(9, 31, 90, 0.52);
}

.movement-strip {
  color: var(--navy-deep);
  background: var(--white);
  border-color: rgba(0, 35, 102, 0.09);
}

.movement-strip i {
  color: var(--orange);
}

.story {
  background: var(--white);
}

.cause {
  margin-inline: clamp(8px, 2vw, 26px);
  color: var(--navy-night);
  background: var(--mist);
  border: 1px solid rgba(0, 35, 102, 0.06);
  border-radius: 64px;
}

.cause-image {
  background: url("https://cdn.abacus.ai/images/df17f3f4-15b1-41a3-9406-134b363dabc6.png") center / cover;
  filter: grayscale(1);
  opacity: 0.055;
}

.cause::after {
  color: rgba(0, 35, 102, 0.025);
}

.cause-heading h2 {
  color: var(--navy-night);
}

.law-panel,
.disque-panel {
  color: var(--navy-night);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 35, 102, 0.08);
  box-shadow: 0 20px 60px rgba(9, 31, 90, 0.08);
  backdrop-filter: blur(12px);
}

.law-panel::before {
  color: rgba(0, 35, 102, 0.045);
}

.law-panel p,
.disque-panel p {
  color: rgba(9, 31, 90, 0.64);
}

.disque-panel {
  box-shadow: inset 0 7px 0 var(--orange), 0 20px 60px rgba(9, 31, 90, 0.08);
}

.disque-number {
  color: var(--orange);
}

.disque-number span {
  color: var(--navy-deep);
}

.mandate {
  background: var(--white);
}

.mandate-feature:hover {
  color: var(--navy-night);
  background: var(--mist);
}

.mandate-feature:hover small {
  color: rgba(9, 31, 90, 0.58);
}

.social {
  color: var(--navy-night);
  background: linear-gradient(180deg, var(--white), var(--paper));
  border-radius: 72px 72px 0 0;
}

.social-beam {
  border-color: rgba(0, 35, 102, 0.06);
  box-shadow: 0 0 0 110px rgba(0, 35, 102, 0.018), 0 0 0 220px rgba(0, 35, 102, 0.012);
}

.social-heading h2 {
  color: var(--navy-night);
}

.social-heading p:last-child {
  color: rgba(9, 31, 90, 0.58);
}

.social-card {
  color: var(--navy-night);
  border-color: rgba(0, 35, 102, 0.09);
  box-shadow: 0 18px 50px rgba(9, 31, 90, 0.075);
}

.social-card::after {
  background: linear-gradient(135deg, rgba(0, 35, 102, 0.025), transparent 48%);
}

.social-card:hover {
  border-color: rgba(214, 91, 20, 0.46);
  box-shadow: 0 26px 60px rgba(9, 31, 90, 0.13);
}

.social-card-wide {
  background: var(--white);
}

.social-instagram {
  background: var(--sand);
}

.social-tiktok {
  background: var(--mist);
}

.social-card-copy > p,
.social-card-small > p {
  color: rgba(9, 31, 90, 0.48);
}

.social-card h3 {
  color: var(--navy-night);
}

.social-card-small {
  background: rgba(255, 255, 255, 0.94);
}

.social-manifesto {
  color: var(--navy-night);
  background: var(--mist);
  border: 1px solid rgba(0, 35, 102, 0.08);
  box-shadow: inset 7px 0 0 var(--orange);
}

.contact {
  color: var(--navy-night);
  background: var(--sand);
  border-top: 1px solid rgba(0, 35, 102, 0.07);
}

@media (max-width: 1050px) {
  .site-nav {
    color: var(--white);
    background: rgba(6, 22, 69, 0.98);
  }

  .site-nav .nav-action {
    color: var(--navy-night);
    background: var(--white);
    box-shadow: none;
  }
}

@media (max-width: 700px) {
  .cause {
    margin-inline: 6px;
    border-radius: 36px;
  }

  .social {
    border-radius: 42px 42px 0 0;
  }

  .hero-index > div,
  .hero-index > div + div {
    border-top-color: rgba(0, 35, 102, 0.09);
  }
}

/* Acabamento da direção 03 — prevalece sobre o estudo claro anterior. */
:root {
  --paper: #f2f5f8;
  --mist: #dfe8f0;
  --sand: #f7e7dc;
  --line: rgba(0, 35, 102, 0.13);
  --shadow: 0 26px 70px rgba(9, 31, 90, 0.16);
}

body {
  background: var(--paper);
}

.site-header,
.site-header.is-scrolled {
  background: rgba(248, 250, 252, 0.91);
  border-bottom-color: rgba(0, 35, 102, 0.12);
  box-shadow: 0 10px 32px rgba(9, 31, 90, 0.085);
}

.hero {
  background:
    radial-gradient(circle at 79% 43%, rgba(214, 91, 20, 0.14), transparent 25%),
    linear-gradient(118deg, #ffffff 0%, #f7f8fa 52%, #dce6ef 100%);
}

.hero::before {
  background-image:
    linear-gradient(rgba(0, 35, 102, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 35, 102, 0.045) 1px, transparent 1px);
}

.portrait-glow {
  background: rgba(214, 91, 20, 0.36);
  filter: blur(54px);
}

.hero-statement {
  color: rgba(255, 255, 255, 0.065);
}

.hero-proof {
  color: var(--white);
  background: rgba(6, 22, 69, 0.86);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 42px rgba(6, 22, 69, 0.24);
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.74);
}

.hero-index {
  color: var(--white);
  border-top: 0;
}

.hero-index > div + div {
  border-left-color: rgba(255, 255, 255, 0.15);
}

.hero-index strong {
  color: var(--white);
}

.hero-index span {
  color: rgba(255, 255, 255, 0.62);
}

.movement-strip {
  color: var(--navy-night);
  background: var(--orange);
  border-color: rgba(6, 22, 69, 0.16);
}

.movement-strip i {
  color: var(--navy-night);
}

.story {
  background: var(--paper);
}

.cause {
  background: linear-gradient(145deg, #d9e5ee 0%, #edf2f6 54%, #f6e8de 100%);
  border-color: rgba(0, 35, 102, 0.11);
}

.cause-image {
  filter: grayscale(0.75) saturate(0.6);
  opacity: 0.105;
}

.cause::after {
  color: rgba(0, 35, 102, 0.042);
}

.law-panel {
  color: var(--white);
  background: linear-gradient(150deg, #103779, var(--navy-night));
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 58px rgba(6, 22, 69, 0.2);
}

.law-panel::before {
  color: rgba(255, 255, 255, 0.075);
}

.law-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.disque-panel {
  color: var(--navy-night);
  background: var(--orange);
  border-color: rgba(6, 22, 69, 0.08);
  box-shadow: 0 24px 58px rgba(127, 55, 13, 0.18);
}

.disque-panel p {
  color: rgba(6, 22, 69, 0.7);
}

.disque-number,
.disque-number span {
  color: var(--navy-night);
}

.mandate-feature:hover {
  color: var(--white);
  background: var(--navy-deep);
}

.mandate-feature:hover small {
  color: rgba(255, 255, 255, 0.64);
}

.social {
  background: linear-gradient(155deg, #d4e0ea 0%, #e8eef3 55%, #f6e9df 112%);
  border-top-color: rgba(0, 35, 102, 0.1);
}

.social-beam {
  border-color: rgba(0, 35, 102, 0.1);
  box-shadow: 0 0 0 110px rgba(0, 35, 102, 0.028), 0 0 0 220px rgba(0, 35, 102, 0.018);
}

.social-card-wide,
.social-instagram,
.social-tiktok {
  color: var(--white);
  background: linear-gradient(150deg, #123b80 0%, var(--navy-deep) 52%, var(--navy-night) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 58px rgba(6, 22, 69, 0.2);
}

.social-card-wide h3 {
  color: var(--white);
}

.social-card-wide .social-card-copy > p {
  color: rgba(255, 255, 255, 0.58);
}

.social-manifesto {
  color: var(--navy-night);
  background: #f2c2a4;
  border-color: rgba(214, 91, 20, 0.2);
  box-shadow: inset 8px 0 0 var(--orange), 0 20px 50px rgba(9, 31, 90, 0.1);
}

.contact {
  color: var(--navy-night);
  background: #e78a50;
  border-top-color: rgba(6, 22, 69, 0.13);
}

@media (max-width: 700px) {
  .hero-index > div,
  .hero-index > div + div {
    border-top-color: rgba(255, 255, 255, 0.14);
  }
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 10% -8% 2% -16%;
  background: radial-gradient(
    ellipse at 58% 58%,
    rgba(16, 55, 121, 0.2) 0%,
    rgba(16, 55, 121, 0.09) 44%,
    rgba(16, 55, 121, 0) 73%
  );
  border-radius: 0;
  box-shadow: none;
  pointer-events: none;
}

.hero-portrait {
  width: min(610px, 47vw);
  -webkit-mask-image: none;
  mask-image: none;
  filter: drop-shadow(0 22px 28px rgba(6, 22, 69, 0.18));
}

.hero-visual::after {
  content: none;
}

.hero-index {
  background: linear-gradient(100deg, var(--navy-deep), #103779);
  margin-top: -1px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -12px 34px rgba(6, 22, 69, 0.11);
  overflow: hidden;
}

.hero-index > div:first-child {
  padding-left: 24px;
}

.mandate-feature:nth-child(2) {
  padding-inline: 24px;
  background: rgba(223, 232, 240, 0.62);
  border-radius: 20px;
}

@media (max-width: 1050px) {
  .hero-visual::before {
    inset: 7% -4% 2%;
    background: radial-gradient(
      ellipse at 50% 58%,
      rgba(16, 55, 121, 0.18) 0%,
      rgba(16, 55, 121, 0.08) 46%,
      transparent 73%
    );
  }

  .hero-portrait {
    width: min(650px, 78vw);
  }
}

@media (max-width: 700px) {
  .hero-visual::before {
    inset: 5% -14% 2%;
    background: radial-gradient(
      ellipse at 50% 60%,
      rgba(16, 55, 121, 0.19) 0%,
      rgba(16, 55, 121, 0.08) 48%,
      transparent 74%
    );
  }

  .hero-portrait {
    width: min(530px, 108vw);
  }

  .hero-index {
    border-radius: 18px 18px 0 0;
  }

  .hero-index > div:first-child {
    padding-left: 14px;
  }

  .hero-index > div,
  .hero-index > div + div {
    padding-inline: 14px;
  }

  .mandate-feature:nth-child(2) {
    padding-inline: 14px;
  }
}

/* Telefones como linguagem visual dos canais sociais. */
.social-card-small {
  grid-column: span 6;
  min-height: 390px;
  padding: 38px;
  align-items: stretch;
}

.social-card-small-copy {
  position: relative;
  z-index: 4;
  width: 46%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-card-small-copy > p {
  margin: 25px 0 12px;
  color: rgba(9, 31, 90, 0.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.social-card-small h3 {
  font-size: clamp(30px, 3.1vw, 44px);
}

.social-facebook {
  background: linear-gradient(145deg, #ffffff, #edf4fb);
}

.social-youtube {
  background: linear-gradient(145deg, #ffffff, #f9eeea);
}

.social-x {
  background: linear-gradient(145deg, #ffffff, #edf0f4);
}

.social-linkedin {
  background: linear-gradient(145deg, #ffffff, #eaf2f8);
}

.phone-mini {
  position: absolute;
  z-index: 2;
  top: 36px;
  right: 26px;
  width: 210px;
  height: 370px;
  padding: 29px 11px 0;
  color: #15171a;
  background: #fbfbfc;
  border: 7px solid #080b12;
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 26px 42px rgba(6, 22, 69, 0.3);
  transform: rotate(3deg);
  transition: transform 320ms ease;
  overflow: hidden;
}

.phone-mini-youtube,
.phone-mini-linkedin {
  transform: rotate(-3deg);
}

.social-card-small:hover .phone-mini {
  transform: rotate(0deg) translateY(-10px);
}

.phone-mini-island {
  position: absolute;
  z-index: 5;
  top: 8px;
  left: 50%;
  width: 63px;
  height: 17px;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.mini-appbar {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e8e9eb;
  font-size: 10px;
}

.mini-appbar-center {
  justify-content: center;
  font-size: 17px;
}

.mini-brand-facebook,
.mini-brand-linkedin {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #1877f2;
  border-radius: 6px;
  font-size: 17px;
  line-height: 1;
}

.mini-brand-linkedin {
  background: #0a66c2;
  font-size: 12px;
}

.mini-brand-youtube {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
}

.mini-brand-youtube i {
  width: 20px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #ff0000;
  border-radius: 4px;
  font-size: 7px;
  font-style: normal;
}

.mini-profile {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
}

.mini-profile strong,
.mini-profile small {
  display: block;
}

.mini-profile small {
  margin-top: 2px;
  color: #74777c;
}

.mini-avatar {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  background: url("https://cdn.abacus.ai/images/7c0d221c-2d05-408f-8590-a3c7c92048b3.png") center top / 58px auto no-repeat, var(--navy);
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.mini-media {
  position: relative;
  height: 168px;
  margin-inline: -11px;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  color: var(--white);
  background:
    linear-gradient(to top, rgba(6, 22, 69, 0.86), rgba(6, 22, 69, 0.05) 68%),
    url("https://cdn.abacus.ai/images/99683535-af64-440d-8c6a-6cdc26a2f7e7.png") center 24% / cover;
  font-family: "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 0.86;
}

.mini-actions {
  padding-block: 12px;
  color: #64686e;
  font-size: 7px;
  white-space: nowrap;
}

.mini-media-video {
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(6, 22, 69, 0.18), rgba(6, 22, 69, 0.3)),
    url("https://cdn.abacus.ai/images/99683535-af64-440d-8c6a-6cdc26a2f7e7.png") center 25% / cover;
}

.mini-play {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  color: var(--white);
  background: rgba(214, 91, 20, 0.94);
  border-radius: 50%;
  font-size: 17px;
}

.mini-caption {
  padding: 11px 2px;
  font-size: 9px;
}

.mini-caption strong,
.mini-caption small {
  display: block;
}

.mini-caption small {
  margin-top: 4px;
  color: #74777c;
}

.mini-post {
  padding: 8px 0 10px;
  font-size: 9px;
  line-height: 1.45;
}

.mini-media-x {
  height: 125px;
  align-items: flex-end;
  padding: 12px;
  font-family: inherit;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.mini-linkedin-cover {
  height: 72px;
  margin-inline: -11px;
  background:
    linear-gradient(135deg, rgba(0, 35, 102, 0.15), transparent),
    linear-gradient(115deg, var(--navy), #2d70ad);
}

.mini-linkedin-profile {
  position: relative;
  padding: 24px 4px 8px;
  display: flex;
  flex-direction: column;
  font-size: 9px;
}

.mini-linkedin-profile .mini-avatar {
  position: absolute;
  top: -22px;
  left: 4px;
  width: 44px;
  height: 44px;
  background-size: 76px auto;
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}

.mini-linkedin-profile small {
  margin-top: 4px;
  color: #74777c;
  line-height: 1.35;
}

.mini-connect {
  width: 100%;
  padding: 7px;
  color: var(--white);
  background: #0a66c2;
  border-radius: 999px;
  text-align: center;
  font-size: 8px;
  font-weight: 800;
}

.mini-lines {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.mini-lines span {
  height: 5px;
  background: #e4e7ea;
  border-radius: 999px;
}

.mini-lines span:nth-child(2) {
  width: 84%;
}

.mini-lines span:nth-child(3) {
  width: 64%;
}

@media (max-width: 1050px) {
  .phone-mini {
    right: 14px;
    width: 190px;
  }
}

@media (max-width: 700px) {
  .social-card-small {
    min-height: 470px;
    padding: 28px;
  }

  .social-card-small-copy {
    width: 48%;
  }

  .social-card-small h3 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .phone-mini {
    top: 104px;
    right: -8px;
    width: 164px;
    height: 350px;
  }

  .mini-media {
    height: 148px;
  }

  .card-arrow {
    width: 44px;
    height: 44px;
  }
}

/* Contadores de impacto e respiro do Disque 100. */
.metric-counter {
  min-width: 5.7ch;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hero-index > div:nth-child(3) .metric-counter {
  min-width: 4.8ch;
}

.disque-number span {
  margin: 0 0 clamp(22px, 2vw, 34px) 0.12em;
}

@media (max-width: 700px) {
  .metric-counter {
    min-width: 0;
  }

  .disque-number span {
    margin-bottom: 20px;
  }
}

/* Cabeçalho oficial, mandato clicável e entrada por WhatsApp. */
.header-inner {
  width: min(1460px, calc(100vw - 40px));
  gap: clamp(18px, 2vw, 32px);
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(174px, 15vw, 208px);
  height: auto;
}

.site-nav {
  gap: clamp(11px, 1.25vw, 21px);
}

.site-nav > a {
  font-size: clamp(10px, 0.88vw, 12px);
  white-space: nowrap;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
}

.nav-action-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mandate-feature {
  position: relative;
  padding-right: 84px;
  cursor: pointer;
}

.mandate-feature::after {
  content: "↗";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 50%;
  font-size: 19px;
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mandate-feature:nth-child(2) {
  background: rgba(223, 232, 240, 0.82);
  box-shadow: inset 7px 0 0 var(--orange);
}

.mandate-feature:hover,
.mandate-feature:nth-child(2):hover,
.mandate-feature:focus-visible {
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: none;
}

.mandate-feature:hover small,
.mandate-feature:focus-visible small {
  color: rgba(255, 255, 255, 0.68);
}

.mandate-feature:hover::after,
.mandate-feature:focus-visible::after {
  color: var(--navy-night);
  background: var(--orange);
  transform: translateY(-50%) rotate(45deg);
}

.mandate-feature:focus-visible {
  outline-offset: 5px;
}

.social-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(38px, 6vw, 90px);
}

.social-manifesto-copy {
  min-width: 0;
}

.social-manifesto-copy > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.social-manifesto-copy p {
  max-width: 680px;
}

.social-manifesto-instruction {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 850;
}

.social-manifesto-instruction::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--navy-deep);
}

.social-manifesto-qr {
  width: 226px;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--navy-night);
  background: var(--white);
  border: 1px solid rgba(0, 35, 102, 0.12);
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(9, 31, 90, 0.16);
  text-align: center;
}

.social-manifesto-qr img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  image-rendering: crisp-edges;
}

.social-manifesto-qr > span {
  margin-top: 11px;
  color: rgba(9, 31, 90, 0.58);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 1050px) {
  .header-inner {
    width: var(--shell);
  }

  .brand-logo {
    width: 184px;
  }

  .site-nav > a {
    font-size: 27px;
    white-space: normal;
  }

  .site-nav .nav-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    width: 152px;
  }

  .mandate-feature {
    padding-right: 66px;
  }

  .mandate-feature::after {
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .social-manifesto {
    grid-template-columns: 1fr;
  }

  .social-manifesto-qr {
    width: min(100%, 250px);
    justify-self: center;
  }
}

/* Ajuste de escala da imagem da trajetória. */
.story-photo {
  width: 100%;
  max-width: 560px;
  min-height: 540px;
  justify-self: end;
}

.story-photo img {
  height: 540px;
}

@media (max-width: 1050px) {
  .story-photo {
    max-width: 620px;
    min-height: 520px;
    justify-self: center;
  }

  .story-photo img {
    height: 520px;
  }
}

@media (max-width: 700px) {
  .story-photo {
    max-width: 100%;
    min-height: 430px;
  }

  .story-photo img {
    height: 430px;
    min-height: 430px;
  }
}

/* Seção da causa compacta para leitura completa em uma tela de notebook. */
@media (min-width: 1051px) {
  .cause.section {
    padding-block: clamp(42px, 4.5vw, 60px);
  }

  .cause-heading h2 {
    max-width: 900px;
    font-size: clamp(44px, 4.3vw, 60px);
    line-height: 0.96;
  }

  .cause-actions {
    margin-top: clamp(28px, 3vw, 40px);
  }

  .law-panel,
  .disque-panel {
    min-height: 360px;
    padding: clamp(26px, 2.5vw, 36px);
  }

  .panel-index {
    inset: 22px auto auto 26px;
  }

  .law-panel::before {
    inset: 20px 30px auto auto;
    font-size: clamp(82px, 9vw, 126px);
  }

  .law-panel h3,
  .disque-panel h3 {
    font-size: clamp(27px, 2.5vw, 34px);
  }

  .law-panel p,
  .disque-panel p {
    margin: 12px 0 18px;
    font-size: 12px;
    line-height: 1.5;
  }

  .disque-number {
    margin: auto 0 4px;
    font-size: clamp(92px, 9.5vw, 124px);
    line-height: 0.7;
  }

  .disque-number span {
    margin-bottom: 12px;
  }
}

@media (min-width: 1051px) {
  .disque-number {
    margin-bottom: 12px;
    font-size: clamp(88px, 8.2vw, 110px);
  }

  .disque-number span {
    margin-bottom: 16px;
  }

  .disque-panel h3 {
    font-size: clamp(25px, 2.2vw, 30px);
    line-height: 0.98;
  }
}

/* Barra de navegação em vidro fosco, com recolhimento direcional. */
.site-header,
.site-header.is-scrolled {
  background:
    linear-gradient(100deg, rgba(244, 248, 252, 0.82), rgba(255, 255, 255, 0.62)),
    rgba(238, 244, 249, 0.58);
  border-bottom-color: rgba(0, 35, 102, 0.13);
  box-shadow: 0 12px 36px rgba(9, 31, 90, 0.1);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  transform: translateY(0);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    box-shadow 220ms ease,
    height 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  box-shadow: none;
  transform: translateY(calc(-100% - 10px));
}

body.menu-open .site-header {
  transform: translateY(0);
}

/* Todas as redes na primeira tela da seção em monitores e notebooks. */
@media (min-width: 1051px) {
  .social.section {
    min-height: 100svh;
    padding-block: clamp(20px, 3vh, 34px);
    display: flex;
    align-items: center;
  }

  .social > .shell {
    width: var(--shell);
  }

  .social-heading {
    max-width: 920px;
  }

  .social-heading .eyebrow {
    margin-bottom: 10px;
  }

  .social-heading h2 {
    max-width: 900px;
    margin-inline: auto;
    font-size: clamp(38px, 3.7vw, 52px);
    line-height: 0.94;
  }

  .social-heading h2 em {
    display: inline;
  }

  .social-heading p:last-child {
    margin-top: 10px;
    font-size: 13px;
  }

  .social-grid {
    margin-top: 22px;
    gap: 16px;
  }

  .social-card-wide {
    min-height: 300px;
    padding: 28px;
  }

  .social-card-copy {
    max-width: 55%;
  }

  .social-card-copy > p {
    margin: 16px 0 9px;
    font-size: 8px;
  }

  .social-card-wide h3 {
    font-size: clamp(28px, 2.55vw, 38px);
  }

  .social-card-wide .platform-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .social-card-wide .platform-icon {
    width: 25px;
    height: 25px;
  }

  .social-button {
    padding: 12px 16px;
    font-size: 9px;
  }

  .phone {
    top: 20px;
    right: 16px;
    transform: scale(0.7) rotate(4deg);
    transform-origin: top right;
  }

  .phone-tiktok {
    transform: scale(0.7) rotate(-4deg);
  }

  .social-card-wide:hover .phone {
    transform: scale(0.73) rotate(1deg) translateY(-8px);
  }

  .social-card-small {
    grid-column: span 3;
    min-height: 230px;
    padding: 22px;
  }

  .social-card-small-copy {
    width: 58%;
  }

  .social-card-small-copy > p {
    margin: 12px 0 7px;
    font-size: 7px;
  }

  .social-card-small h3 {
    font-size: clamp(21px, 1.95vw, 28px);
  }

  .social-card-small .platform-mark {
    width: 41px;
    height: 41px;
    border-radius: 12px;
  }

  .social-card-small .platform-icon {
    width: 22px;
    height: 22px;
  }

  .social-card-small .card-arrow {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .phone-mini {
    top: 19px;
    right: 10px;
    transform: scale(0.61) rotate(3deg);
    transform-origin: top right;
  }

  .phone-mini-youtube,
  .phone-mini-linkedin {
    transform: scale(0.61) rotate(-3deg);
  }

  .social-card-small:hover .phone-mini {
    transform: scale(0.64) rotate(0deg) translateY(-8px);
  }

}

.network-mobilization {
  position: relative;
  padding-block: clamp(108px, 9vw, 138px);
  background: linear-gradient(145deg, #edf2f6 0%, #f7e8de 100%);
  border-top: 1px solid rgba(0, 35, 102, 0.1);
  overflow: visible;
}

.network-mobilization .social-manifesto {
  width: 100%;
  min-height: clamp(315px, 38vh, 365px);
  margin: 0;
  padding: clamp(28px, 3vw, 42px);
  grid-template-columns: minmax(330px, 0.84fr) minmax(390px, 1.08fr) minmax(166px, 0.36fr);
  gap: clamp(22px, 2.5vw, 38px);
  overflow: visible;
  background: linear-gradient(135deg, #f3c2a4 0%, #efb28d 100%);
}

.network-mobilization .social-manifesto-copy p {
  max-width: 470px;
  margin-block: 17px 25px;
  font-size: clamp(32px, 2.65vw, 46px);
  line-height: 0.98;
}

.supporter-collage {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  height: clamp(410px, 34vw, 460px);
  margin-block: -88px;
  align-self: center;
}

.supporter-photo {
  position: absolute;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  box-shadow: 0 22px 46px rgba(6, 22, 69, 0.25);
  transform-origin: center;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.supporter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supporter-photo-handshake {
  z-index: 1;
  top: 3%;
  left: 0;
  width: 60%;
  transform: rotate(-4deg);
}

.supporter-photo-handshake img {
  object-position: 50% 48%;
}

.supporter-photo-group {
  z-index: 3;
  bottom: 2%;
  left: 19%;
  width: 64%;
  transform: rotate(-1.5deg);
}

.supporter-photo-group img {
  object-position: 55% 45%;
}

.supporter-photo-conversation {
  z-index: 2;
  top: 8%;
  right: 0;
  width: 60%;
  transform: rotate(4deg);
}

.supporter-photo-conversation img {
  object-position: 52% 48%;
}

.supporter-collage:hover .supporter-photo-handshake {
  transform: rotate(-6deg) translate(-4px, -3px);
}

.supporter-collage:hover .supporter-photo-group {
  transform: rotate(0deg) translateY(-7px);
  box-shadow: 0 28px 58px rgba(6, 22, 69, 0.3);
}

.supporter-collage:hover .supporter-photo-conversation {
  transform: rotate(6deg) translate(4px, -3px);
}

.supporter-collage small {
  position: absolute;
  z-index: 5;
  right: 7%;
  bottom: 0;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(6, 22, 69, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.network-mobilization .social-manifesto-qr {
  width: 180px;
  padding: 11px 11px 13px;
  border-radius: 21px;
  box-shadow: 0 18px 38px rgba(9, 31, 90, 0.18);
}

@media (max-width: 1050px) {
  .network-mobilization {
    padding-block: 76px 112px;
  }

  .network-mobilization .social-manifesto {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 28px 34px;
  }

  .network-mobilization .social-manifesto-copy {
    grid-column: 1;
  }

  .network-mobilization .social-manifesto-qr {
    grid-column: 2;
    grid-row: 1;
    width: 190px;
  }

  .supporter-collage {
    grid-column: 1 / -1;
    width: min(100%, 690px);
    height: 340px;
    margin: 14px auto -68px;
    justify-self: center;
  }
}

@media (max-width: 700px) {
  .network-mobilization {
    padding-block: 48px;
  }

  .network-mobilization .social-manifesto {
    padding: 28px 24px 32px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .network-mobilization .social-manifesto-copy,
  .network-mobilization .social-manifesto-qr,
  .supporter-collage {
    grid-column: 1;
    grid-row: auto;
  }

  .network-mobilization .social-manifesto-copy p {
    font-size: clamp(30px, 9vw, 40px);
  }

  .supporter-collage {
    width: 100%;
    height: 300px;
    margin: 6px 0 -52px;
  }

  .supporter-photo {
    border-width: 4px;
    border-radius: 17px;
  }

  .supporter-collage small {
    right: 50%;
    transform: translateX(50%);
  }

  .network-mobilization .social-manifesto-qr {
    width: min(100%, 210px);
    justify-self: center;
  }
}

/* Convite para palestras — a causa viajando de cidade em cidade. */
.speaking {
  position: relative;
  min-height: clamp(620px, 82vh, 760px);
  display: grid;
  color: var(--white);
  background: var(--navy-night);
  overflow: hidden;
  isolation: isolate;
}

.speaking::before,
.speaking::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.speaking::before {
  background: linear-gradient(
    90deg,
    rgba(6, 22, 69, 1) 0%,
    rgba(6, 22, 69, 0.98) 32%,
    rgba(6, 22, 69, 0.82) 49%,
    rgba(6, 22, 69, 0.3) 72%,
    rgba(6, 22, 69, 0.08) 100%
  );
}

.speaking::after {
  background:
    linear-gradient(0deg, rgba(6, 22, 69, 0.72), transparent 34%),
    radial-gradient(circle at 75% 38%, transparent 0 20%, rgba(6, 22, 69, 0.2) 64%);
}

.speaking-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.speaking-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 46%;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.015);
}

.speaking-inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: 78px;
}

.speaking-copy {
  position: relative;
  z-index: 2;
  width: min(660px, 58%);
}

.speaking-copy .eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.speaking-copy .eyebrow span {
  background: var(--orange);
}

.speaking h2 {
  max-width: 650px;
  margin: 0;
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.speaking h2 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.speaking-question {
  width: max-content;
  max-width: 100%;
  margin: 26px 0 0;
  padding: 8px 12px 9px;
  color: #04102f;
  background: var(--orange);
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.speaking-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.58;
}

.speaking-audiences {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.speaking-audiences span {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.speaking-cta {
  width: max-content;
  max-width: 100%;
  margin-top: 30px;
  padding: 7px 7px 7px 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: #04102f;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.speaking-cta strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.speaking-cta span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy-night);
  border-radius: 50%;
  font-size: 23px;
  transition: transform 220ms ease;
}

.speaking-cta:hover {
  background: var(--white);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.speaking-cta:hover span {
  transform: translateX(3px);
}

@media (max-width: 1050px) {
  .speaking {
    min-height: 680px;
  }

  .speaking::before {
    background: linear-gradient(
      90deg,
      rgba(6, 22, 69, 0.98) 0%,
      rgba(6, 22, 69, 0.9) 48%,
      rgba(6, 22, 69, 0.32) 100%
    );
  }

  .speaking-media img {
    object-position: 63% center;
  }

  .speaking-copy {
    width: min(680px, 74%);
  }
}

@media (max-width: 700px) {
  .speaking {
    min-height: auto;
  }

  .speaking::before {
    background: linear-gradient(
      0deg,
      rgba(6, 22, 69, 1) 0%,
      rgba(6, 22, 69, 0.98) 48%,
      rgba(6, 22, 69, 0.36) 78%,
      rgba(6, 22, 69, 0.08) 100%
    );
  }

  .speaking::after {
    background: linear-gradient(0deg, rgba(6, 22, 69, 0.62), transparent 64%);
  }

  .speaking-media img {
    object-position: 58% top;
  }

  .speaking-inner {
    min-height: 820px;
    align-items: flex-end;
    padding-block: 300px 56px;
  }

  .speaking-copy {
    width: 100%;
  }

  .speaking-copy .eyebrow {
    margin-bottom: 15px;
  }

  .speaking h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .speaking-question {
    margin-top: 20px;
    padding: 7px 9px 8px;
    font-size: clamp(19px, 6vw, 25px);
  }

  .speaking-lead {
    margin-top: 19px;
    font-size: 14px;
  }

  .speaking-audiences {
    margin-top: 16px;
  }

  .speaking-cta {
    width: 100%;
    margin-top: 24px;
    padding-left: 18px;
    justify-content: space-between;
    gap: 12px;
  }

  .speaking-cta strong {
    font-size: 11px;
  }

  .speaking-cta span {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }
}

@media (min-width: 701px) and (max-width: 1050px) {
  .story-roles {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-roles article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .story-roles article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

/* Direção editorial final: contraste com propósito, sem formas decorativas concorrentes. */
.hero {
  background: #f7f9fb;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 52%;
  background:
    radial-gradient(circle at 54% 34%, rgba(214, 91, 20, 0.38), transparent 28%),
    linear-gradient(145deg, #1a4a8f 0%, #0d3274 48%, #061645 100%);
  pointer-events: none;
}

.hero-visual::before {
  content: none;
}

.hero-portrait {
  width: min(640px, 49vw);
  filter: drop-shadow(0 28px 34px rgba(2, 12, 42, 0.34));
}

.hero-index {
  border-top: 4px solid var(--orange);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -16px 42px rgba(6, 22, 69, 0.16);
}

.speaking {
  min-height: clamp(620px, 76vh, 730px);
  display: block;
  background: var(--navy-night);
}

.speaking::before {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(6, 22, 69, 1) 0%,
    rgba(6, 22, 69, 1) 39%,
    rgba(6, 22, 69, 0.98) 43%,
    rgba(6, 22, 69, 0.72) 49%,
    rgba(6, 22, 69, 0.16) 56%,
    transparent 62%
  );
}

.speaking::after {
  content: none;
}

.speaking-media {
  z-index: 0;
  inset: 0;
  background: var(--navy-night);
}

.speaking-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 22, 69, 0.22), transparent 38%);
  pointer-events: none;
}

.speaking-media img {
  object-position: 50% 42%;
  filter: saturate(1.04) contrast(1.015) brightness(1.02);
  transform: none;
}

.speaking-credit {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 14px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(6, 22, 69, 0.5);
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.speaking-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  padding-block: clamp(58px, 7vh, 82px);
}

.speaking-copy {
  width: min(640px, 45%);
}

.speaking-copy .eyebrow {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.speaking h2 {
  max-width: 640px;
  font-size: clamp(50px, 4.9vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.048em;
  text-transform: uppercase;
}

.speaking h2 em {
  margin-top: 6px;
}

.speaking-invite {
  width: max-content;
  max-width: 100%;
  margin: 27px 0 0;
  padding: 8px 11px 9px;
  color: var(--navy-night);
  background: var(--orange);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.speaking-lead {
  max-width: 535px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.62;
}

.speaking-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 32px;
  padding-left: 22px;
  gap: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.speaking-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -45%;
  bottom: -45%;
  left: 0;
  width: 52%;
  background: linear-gradient(
    105deg,
    transparent 10%,
    rgba(255, 255, 255, 0.1) 32%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.14) 68%,
    transparent 90%
  );
  filter: blur(1px);
  transform: translateX(-240%) skewX(-16deg);
  animation: speaking-cta-shine 4.2s ease-in-out infinite;
  pointer-events: none;
}

.speaking-cta strong,
.speaking-cta span {
  position: relative;
  z-index: 1;
}

.speaking-cta span {
  width: 46px;
  height: 46px;
}

@keyframes speaking-cta-shine {
  0%,
  52% {
    transform: translateX(-240%) skewX(-16deg);
  }

  78%,
  100% {
    transform: translateX(320%) skewX(-16deg);
  }
}

@media (max-width: 1050px) {
  .hero::after {
    inset: 48% 0 0;
    background:
      radial-gradient(circle at 54% 28%, rgba(214, 91, 20, 0.32), transparent 28%),
      linear-gradient(155deg, #1a4a8f 0%, #0d3274 52%, #061645 100%);
  }

  .hero-portrait {
    width: min(680px, 82vw);
  }

  .speaking {
    min-height: 660px;
  }

  .speaking::before {
    background: linear-gradient(
      90deg,
      rgba(6, 22, 69, 1) 0%,
      rgba(6, 22, 69, 0.98) 43%,
      rgba(6, 22, 69, 0.72) 51%,
      rgba(6, 22, 69, 0.1) 63%,
      transparent 70%
    );
  }

  .speaking-media {
    left: 0;
  }

  .speaking-copy {
    width: min(540px, 49%);
  }

  .speaking h2 {
    font-size: clamp(44px, 6.4vw, 62px);
  }
}

@media (max-width: 700px) {
  .hero::after {
    inset: 52% 0 0;
  }

  .hero-portrait {
    width: min(560px, 114vw);
  }

  .hero-index {
    border-top-width: 3px;
    border-radius: 14px 14px 0 0;
  }

  .speaking {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .speaking::before {
    content: none;
  }

  .speaking-media {
    position: relative;
    inset: auto;
    height: clamp(280px, 72vw, 380px);
    flex: 0 0 auto;
  }

  .speaking-media::after {
    background: linear-gradient(0deg, rgba(6, 22, 69, 0.72), transparent 52%);
  }

  .speaking-media img {
    object-position: 68% 46%;
  }

  .speaking-inner {
    min-height: auto;
    display: block;
    padding-block: 44px 58px;
  }

  .speaking-copy {
    width: 100%;
  }

  .speaking-copy .eyebrow {
    margin-bottom: 18px;
  }

  .speaking h2 {
    max-width: 520px;
    font-size: clamp(42px, 12vw, 56px);
  }

  .speaking-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .speaking-invite {
    margin-top: 22px;
    font-size: clamp(19px, 5.7vw, 24px);
  }

  .speaking-cta {
    width: 100%;
    margin-top: 26px;
    justify-content: space-between;
  }
}

/* Demonstração: central interativa de redes sociais. */
.social-hub {
  position: relative;
  min-height: 100svh;
  padding-block: clamp(48px, 6vh, 74px);
  color: var(--white);
  background:
    radial-gradient(circle at 73% 20%, rgba(214, 91, 20, 0.34), transparent 24%),
    radial-gradient(circle at 62% 68%, rgba(31, 84, 174, 0.34), transparent 33%),
    linear-gradient(138deg, #020919 0%, #061645 47%, #0a2a67 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.social-hub-ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 56%, rgba(255, 255, 255, 0.035) 56% 57%, transparent 57%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 35%);
  pointer-events: none;
}

.social-hub-layout {
  min-height: calc(100svh - clamp(96px, 12vh, 148px));
  display: grid;
  grid-template-columns: minmax(350px, 0.86fr) minmax(500px, 1.14fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3vw, 52px) clamp(42px, 5vw, 78px);
}

.social-hub-copy {
  position: relative;
  z-index: 3;
  max-width: 570px;
}

.social-hub-copy .eyebrow {
  margin-bottom: clamp(18px, 2.5vh, 30px);
}

.social-hub-count {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: clamp(20px, 3vh, 34px);
}

.social-hub-count strong {
  color: var(--orange-hot);
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(78px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.7;
  letter-spacing: -0.075em;
}

.social-hub-count span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.16em;
}

.social-hub-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.91;
  letter-spacing: -0.055em;
}

.social-hub-copy h2 em {
  display: block;
  color: var(--orange-hot);
  font-style: normal;
}

.social-hub-lead {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.62;
}

.social-hub-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: max-content;
  max-width: 100%;
  margin-top: 30px;
  padding: 9px 10px 9px 22px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--navy-night);
  background: var(--orange-hot);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.social-hub-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -50%;
  bottom: -50%;
  left: 0;
  width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  transform: translateX(-240%) skewX(-18deg);
  animation: social-hub-shine 4.4s ease-in-out infinite;
  pointer-events: none;
}

.social-hub-cta b {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy-night);
  border-radius: 50%;
  font-size: 20px;
  transition: transform 200ms ease;
}

.social-hub-cta:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

.social-hub-cta:hover b {
  transform: rotate(-45deg);
}

@keyframes social-hub-shine {
  0%,
  54% {
    transform: translateX(-240%) skewX(-18deg);
  }
  80%,
  100% {
    transform: translateX(360%) skewX(-18deg);
  }
}

.social-hub-stage {
  position: relative;
  min-height: clamp(500px, 58vh, 630px);
  display: grid;
  place-items: center;
}

.social-hub-stage-label {
  position: absolute;
  z-index: 4;
  top: 8%;
  right: 0;
  min-width: 142px;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(4, 15, 48, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.social-hub-stage-label small,
.social-hub-stage-label strong {
  display: block;
}

.social-hub-stage-label small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.social-hub-stage-label strong {
  margin-top: 4px;
  font-family: "Arial Narrow", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.social-hub-number {
  position: absolute;
  z-index: -1;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(320px, 34vw, 520px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.1em;
  transform: translateX(-4%);
  user-select: none;
}

.social-hub-phone {
  --hub-accent: #e1306c;
  --hub-image: url("assets/leniel-palestra.png");
  --hub-position: 60% 38%;
  position: relative;
  z-index: 2;
  width: clamp(278px, 25vw, 344px);
  aspect-ratio: 0.555;
  padding: 10px;
  background: #05070b;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 46px;
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.48),
    0 0 0 9px rgba(255, 255, 255, 0.055),
    0 0 80px color-mix(in srgb, var(--hub-accent) 38%, transparent);
  transform: rotate(-2deg);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.social-hub-phone:hover {
  transform: rotate(0deg) translateY(-8px);
}

.social-hub-phone.is-switching {
  animation: social-hub-switch 360ms ease;
}

@keyframes social-hub-switch {
  0% { opacity: 0.65; transform: rotate(-2deg) scale(0.965); }
  100% { opacity: 1; transform: rotate(-2deg) scale(1); }
}

.social-hub-phone[data-platform="instagram"] {
  --hub-accent: #e1306c;
  --hub-image: url("assets/leniel-palestra.png");
  --hub-position: 61% 40%;
}

.social-hub-phone[data-platform="tiktok"] {
  --hub-accent: #25f4ee;
  --hub-image: url("assets/leniel-apoiadores-conversa-v2.jpg");
  --hub-position: 53% 48%;
}

.social-hub-phone[data-platform="facebook"] {
  --hub-accent: #1877f2;
  --hub-image: url("assets/leniel-apoiadores-grupo-v2.jpg");
  --hub-position: 64% 46%;
}

.social-hub-phone[data-platform="youtube"] {
  --hub-accent: #ff0000;
  --hub-image: url("assets/leniel-palestra-auditorio-v4.jpg");
  --hub-position: 69% 45%;
}

.social-hub-phone[data-platform="x"] {
  --hub-accent: #ffffff;
  --hub-image: url("assets/leniel-apoiadores-aperto-v2.jpg");
  --hub-position: 37% 48%;
}

.social-hub-phone[data-platform="linkedin"] {
  --hub-accent: #0a66c2;
  --hub-image: url("assets/leniel-palestra-escola.jpeg");
  --hub-position: 62% 45%;
}

.social-hub-phone-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  color: #101010;
  background: #f7f7f5;
  border-radius: 37px;
}

.social-hub-phone-island {
  position: absolute;
  z-index: 4;
  top: 11px;
  left: 50%;
  width: 88px;
  height: 25px;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.social-hub-phone-header {
  min-height: 88px;
  padding: 43px 17px 12px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 9px;
}

.social-hub-phone-header > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--hub-accent);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  transition: background 220ms ease;
}

.social-hub-phone-header strong,
.social-hub-phone-header small {
  display: block;
}

.social-hub-phone-header strong {
  font-size: 11px;
}

.social-hub-phone-header small {
  max-width: 175px;
  margin-top: 2px;
  overflow: hidden;
  color: #777;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-hub-phone-header b {
  color: #777;
  font-size: 10px;
}

.social-hub-phone-media {
  position: relative;
  height: 64%;
  display: block;
  overflow: hidden;
  color: inherit;
  background:
    linear-gradient(0deg, rgba(6, 22, 69, 0.9) 0%, rgba(6, 22, 69, 0.1) 52%, transparent 72%),
    var(--hub-image) var(--hub-position) / cover no-repeat;
  cursor: pointer;
  transition: background-image 220ms ease;
}

.social-hub-phone-media:focus-visible {
  outline: 3px solid var(--orange-hot);
  outline-offset: -5px;
}

.social-hub-media-open {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  padding: 7px 9px 7px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  background: rgba(6, 22, 69, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.social-hub-media-open b {
  font-size: 12px;
}

.social-hub-phone-media:hover .social-hub-media-open,
.social-hub-phone-media:focus-visible .social-hub-media-open {
  color: var(--navy-night);
  background: var(--hub-accent);
  transform: translateY(-2px);
}

.social-hub-phone-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.social-hub-phone-media p {
  position: absolute;
  z-index: 2;
  inset: auto 20px 18px;
  margin: 0;
  color: var(--white);
  font-family: "Arial Narrow", sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.52);
}

.social-hub-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--hub-accent);
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.76);
  transition: opacity 200ms ease, transform 200ms ease;
}

.social-hub-phone[data-platform="youtube"] .social-hub-play,
.social-hub-phone[data-platform="tiktok"] .social-hub-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.social-hub-phone-meta {
  padding: 15px 18px;
}

.social-hub-phone-meta small,
.social-hub-phone-meta strong {
  display: block;
}

.social-hub-phone-meta small {
  color: var(--hub-accent);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.social-hub-phone-meta strong {
  max-width: 245px;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.4;
}

.social-hub-hint {
  position: absolute;
  right: 0;
  bottom: 5%;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-hub-hint span {
  display: inline-block;
  margin-right: 6px;
  color: var(--orange-hot);
  animation: social-hub-hint 1.8s ease-in-out infinite;
}

@keyframes social-hub-hint {
  50% { transform: translateY(5px); }
}

.social-hub-dock {
  grid-column: 1 / -1;
  position: relative;
  z-index: 5;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
}

.social-hub-tab {
  --tab-accent: var(--orange-hot);
  min-width: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 17px;
  cursor: pointer;
  text-align: left;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.social-hub-tab[data-platform="instagram"] { --tab-accent: #e1306c; }
.social-hub-tab[data-platform="tiktok"] { --tab-accent: #25f4ee; }
.social-hub-tab[data-platform="facebook"] { --tab-accent: #1877f2; }
.social-hub-tab[data-platform="youtube"] { --tab-accent: #ff0000; }
.social-hub-tab[data-platform="x"] { --tab-accent: #ffffff; }
.social-hub-tab[data-platform="linkedin"] { --tab-accent: #0a66c2; }

.social-hub-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.social-hub-tab.is-active {
  color: var(--navy-night);
  background: var(--white);
  border-color: color-mix(in srgb, var(--tab-accent) 62%, transparent);
  box-shadow: inset 0 -3px 0 var(--tab-accent), 0 12px 26px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.social-hub-tab:focus-visible {
  outline-color: var(--orange-hot);
  outline-offset: 3px;
}

.social-hub-tab .platform-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.social-hub-tab .platform-icon {
  width: 21px;
  height: 21px;
}

.social-hub-tab > span:last-child {
  min-width: 0;
}

.social-hub-tab strong,
.social-hub-tab small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-hub-tab strong {
  font-size: 11px;
}

.social-hub-tab small {
  margin-top: 3px;
  color: inherit;
  font-size: 7px;
  opacity: 0.66;
}

@media (max-width: 1180px) {
  .social-hub {
    min-height: auto;
  }

  .social-hub-layout {
    min-height: 0;
    grid-template-columns: minmax(300px, 0.8fr) minmax(400px, 1.2fr);
  }

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

  .social-hub-tab {
    padding: 10px 14px;
  }
}

@media (max-width: 800px) {
  .social-hub {
    padding-block: 64px;
  }

  .social-hub-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .social-hub-copy {
    max-width: 620px;
  }

  .social-hub-copy h2 {
    max-width: 640px;
  }

  .social-hub-stage {
    min-height: 530px;
  }

  .social-hub-stage-label {
    right: 5%;
  }

  .social-hub-hint {
    right: 5%;
  }
}

@media (max-width: 560px) {
  .social-hub {
    padding-block: 48px;
  }

  .social-hub-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .social-hub-count strong {
    font-size: 78px;
  }

  .social-hub-cta {
    width: 100%;
    justify-content: space-between;
  }

  .social-hub-stage {
    min-height: 490px;
  }

  .social-hub-phone {
    width: min(264px, 78vw);
  }

  .social-hub-stage-label {
    top: 4%;
    right: 0;
    min-width: 118px;
  }

  .social-hub-stage-label strong {
    font-size: 21px;
  }

  .social-hub-hint {
    right: 0;
    bottom: 0;
  }

  .social-hub-dock {
    padding: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-hub-tab {
    padding: 9px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .social-hub-tab .platform-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .social-hub-tab small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-hub-cta::before,
  .social-hub-hint span {
    animation: none;
  }
}

/* Redes sociais: uma única composição, com hierarquia editorial por canal. */
.social.section {
  min-height: 100svh;
  padding-block: clamp(30px, 4vh, 48px);
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -24%, rgba(214, 91, 20, 0.2), transparent 34%),
    radial-gradient(circle at 86% 52%, rgba(34, 82, 162, 0.24), transparent 30%),
    linear-gradient(154deg, #05070c 0%, #07143a 50%, #02050c 100%);
  border-radius: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social.section > .shell {
  width: var(--shell);
}

.social.section .social-beam {
  border-color: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 0 0 110px rgba(255, 255, 255, 0.016),
    0 0 0 220px rgba(255, 255, 255, 0.01);
  opacity: 0.72;
}

.social.section .social-heading {
  max-width: 1060px;
}

.social.section .social-heading .eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
}

.social.section .social-heading h2 {
  max-width: 1040px;
  margin-inline: auto;
  color: var(--white);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.95;
}

.social.section .social-heading h2 em {
  display: inline;
  color: var(--orange);
}

.social.section .social-heading p:last-child {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

.social.section .social-grid {
  margin-top: clamp(22px, 3vh, 34px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1vw, 17px);
}

.social.section .social-card {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: clamp(24px, 2vw, 34px);
  background:
    linear-gradient(145deg, rgba(25, 57, 119, 0.9), rgba(4, 15, 48, 0.98));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.social.section .social-card::after {
  z-index: 1;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.075), transparent 38%),
    linear-gradient(90deg, rgba(1, 8, 26, 0.16), transparent 62%);
}

.social.section .social-card:hover {
  border-color: rgba(214, 91, 20, 0.8);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.38);
}

.social.section .social-card h3,
.social.section .social-card-small h3 {
  color: var(--white);
}

.social.section .social-card-copy > p,
.social.section .social-card-small-copy > p {
  color: rgba(255, 255, 255, 0.58);
}

.social.section .social-card-wide {
  grid-column: span 6;
  min-height: clamp(305px, 32vh, 355px);
  padding: clamp(27px, 2.1vw, 36px);
}

.social.section .social-instagram {
  background:
    radial-gradient(circle at 92% 18%, rgba(224, 59, 110, 0.2), transparent 30%),
    linear-gradient(145deg, #173f86 0%, #081c51 62%, #050c25 100%);
}

.social.section .social-tiktok {
  background:
    radial-gradient(circle at 88% 28%, rgba(37, 244, 238, 0.13), transparent 29%),
    linear-gradient(145deg, #143777 0%, #071947 62%, #030816 100%);
}

.social.section .social-card-copy {
  max-width: 55%;
}

.social.section .social-card-copy > p {
  margin: 17px 0 9px;
  font-size: 8px;
}

.social.section .social-card-wide h3 {
  max-width: 430px;
  font-size: clamp(31px, 2.7vw, 43px);
}

.social.section .social-card-wide .platform-mark {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.social.section .social-button {
  padding: 13px 18px;
  color: var(--navy-night);
  background: var(--orange);
  font-size: 9px;
}

.social.section .phone {
  top: 20px;
  right: 18px;
  transform: scale(0.78) rotate(4deg);
  transform-origin: top right;
}

.social.section .phone-tiktok {
  transform: scale(0.78) rotate(-4deg);
}

.social.section .social-card-wide:hover .phone {
  transform: scale(0.81) rotate(1deg) translateY(-8px);
}

.social.section .social-card-small {
  min-height: clamp(225px, 24vh, 270px);
  padding: clamp(20px, 1.55vw, 27px);
  align-items: stretch;
  background:
    linear-gradient(145deg, rgba(20, 40, 83, 0.98), rgba(6, 15, 39, 0.98));
}

.social.section .social-card-medium {
  grid-column: span 4;
}

.social.section .social-card-compact {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(19, 28, 50, 0.98), rgba(5, 9, 18, 0.99));
}

.social.section .social-card-medium .social-card-small-copy {
  width: 54%;
}

.social.section .social-card-medium h3 {
  max-width: 260px;
  font-size: clamp(24px, 2vw, 32px);
}

.social.section .social-card-medium .phone-mini {
  top: 15px;
  right: 4px;
  transform: scale(0.66) rotate(3deg);
  transform-origin: top right;
}

.social.section .social-card-medium .phone-mini-youtube {
  transform: scale(0.66) rotate(-3deg);
}

.social.section .social-card-compact .social-card-small-copy {
  width: 100%;
}

.social.section .social-card-compact .social-card-small-copy > p {
  max-width: 95px;
  margin: 12px 0 7px;
  font-size: 6px;
}

.social.section .social-card-compact h3 {
  position: relative;
  z-index: 4;
  max-width: 120px;
  font-size: clamp(19px, 1.5vw, 25px);
}

.social.section .social-card-compact .platform-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.social.section .social-card-compact .platform-icon {
  width: 21px;
  height: 21px;
}

.social.section .social-card-compact .card-arrow {
  position: relative;
  z-index: 5;
  width: 38px;
  height: 38px;
  color: var(--navy-night);
  background: var(--orange);
  font-size: 18px;
}

.social.section .social-card-compact .phone-mini {
  z-index: 2;
  top: 58px;
  right: -58px;
  opacity: 0.46;
  transform: scale(0.5) rotate(3deg);
  transform-origin: top right;
}

.social.section .social-card-compact .phone-mini-linkedin {
  transform: scale(0.5) rotate(-3deg);
}

.social.section .social-card-compact::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 9, 22, 0.96) 0%, rgba(4, 9, 22, 0.72) 54%, transparent 100%);
  pointer-events: none;
}

@media (max-width: 1050px) {
  .social.section {
    min-height: auto;
    padding-block: 72px;
  }

  .social.section .social-card-wide {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .social.section .social-card-medium,
  .social.section .social-card-compact {
    grid-column: span 6;
    min-height: 300px;
  }

  .social.section .social-card-compact .social-card-small-copy {
    width: 52%;
  }

  .social.section .social-card-compact h3 {
    max-width: 260px;
    font-size: clamp(25px, 4vw, 34px);
  }

  .social.section .social-card-compact .phone-mini {
    top: 18px;
    right: 10px;
    opacity: 0.76;
    transform: scale(0.62) rotate(3deg);
  }
}

@media (max-width: 700px) {
  .social.section .social-heading h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .social.section .social-grid {
    margin-top: 34px;
  }

  .social.section .social-card-wide,
  .social.section .social-card-medium,
  .social.section .social-card-compact {
    grid-column: 1 / -1;
  }

  .social.section .social-card-wide {
    min-height: 560px;
  }

  .social.section .social-card-medium,
  .social.section .social-card-compact {
    min-height: 390px;
  }

  .social.section .social-card-medium .social-card-small-copy,
  .social.section .social-card-compact .social-card-small-copy {
    width: 52%;
  }

  .social.section .social-card-compact .phone-mini {
    opacity: 0.72;
  }
}

/* Hub institucional: dois braços complementares da causa */
.institutes {
  position: relative;
  overflow: hidden;
  color: var(--navy-night);
  background:
    radial-gradient(circle at 88% 15%, rgba(214, 91, 20, 0.12), transparent 28%),
    linear-gradient(155deg, #e8eef3 0%, #f6f4ef 72%);
}

.institutes::before {
  content: "INSTITUTOS";
  position: absolute;
  top: -0.1em;
  right: -0.03em;
  color: rgba(0, 35, 102, 0.035);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(120px, 18vw, 300px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.institutes-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(46px, 6vw, 82px);
}

.institutes-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  align-items: end;
  gap: 32px clamp(54px, 8vw, 120px);
}

.institutes-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.institutes-heading h2 {
  max-width: 810px;
  margin: 0;
}

.institutes-heading > p:last-child {
  max-width: 520px;
  margin: 0 0 4px;
  color: rgba(9, 31, 90, 0.66);
  font-size: 16px;
  line-height: 1.7;
}

.institutes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.institute-card {
  position: relative;
  min-height: 440px;
  padding: clamp(30px, 3.4vw, 52px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(6, 22, 69, 0.14);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.institute-card::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -90px;
  bottom: -120px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.13;
  box-shadow: 0 0 0 55px currentColor, 0 0 0 110px currentColor;
  pointer-events: none;
}

.institute-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 82px rgba(6, 22, 69, 0.22);
}

.institute-card-social {
  color: var(--white);
  background: linear-gradient(145deg, #123b80 0%, var(--navy-deep) 58%, var(--navy-night) 100%);
}

.institute-card-corporate {
  color: var(--navy-night);
  background: linear-gradient(145deg, #f08a4b 0%, var(--orange) 68%, #ba4508 100%);
}

.institute-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.institute-card-topline span {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.institute-card-social .institute-card-topline span {
  color: var(--orange);
}

.institute-card-topline small {
  padding: 9px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  opacity: 0.72;
}

.institute-card-copy {
  position: relative;
  z-index: 1;
  margin: auto 0 44px;
}

.institute-card-copy p {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.institute-card-social .institute-card-copy p {
  color: #f3955c;
}

.institute-card-copy h3 {
  max-width: 430px;
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.institute-card-copy span {
  display: block;
  max-width: 500px;
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.76;
}

.institute-card > strong {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
}

.institute-card > strong b {
  margin-left: 6px;
}

@media (max-width: 900px) {
  .institutes-heading {
    grid-template-columns: 1fr;
  }

  .institutes-heading .eyebrow {
    grid-column: auto;
  }

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

  .institute-card {
    min-height: 400px;
  }
}

@media (max-width: 700px) {
  .institutes::before {
    top: 0.12em;
    font-size: 34vw;
  }

  .institutes-heading {
    gap: 22px;
  }

  .institutes-heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .institute-card {
    min-height: 430px;
    border-radius: 24px;
  }

  .institute-card-topline {
    align-items: flex-start;
  }

  .institute-card-topline small {
    max-width: 160px;
    text-align: center;
  }

  .institute-card-copy h3 {
    font-size: clamp(40px, 13vw, 56px);
  }
}
