:root {
  --black: #050505;
  --black-2: #0b0d10;
  --black-3: #141414;
  --yellow: #fcbe26;
  --yellow-2: #ffd35d;
  --white: #f8f8f4;
  --muted: #b8b8b0;
  --muted-dark: #5c5d5a;
  --line: rgba(252, 190, 38, 0.26);
  --line-dark: rgba(5, 5, 5, 0.12);
  --max: 1180px;
  --header: 78px;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--black);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(252, 190, 38, 0.18);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.brand__text span {
  font-size: 16px;
  font-weight: 950;
}

.brand__text small {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

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

.site-nav a {
  padding: 11px 13px;
  color: rgba(248, 248, 244, 0.82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--yellow);
  background: rgba(252, 190, 38, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(252, 190, 38, 0.42);
  background: transparent;
  color: var(--white);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--yellow);
}

.section {
  scroll-margin-top: var(--header);
  padding: clamp(76px, 10vw, 118px) clamp(18px, 4vw, 48px);
}

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

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

.section__inner,
.hero__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.section-heading {
  max-width: 620px;
}

.section-heading--wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  column-gap: 48px;
  row-gap: 18px;
  align-items: end;
  max-width: none;
  margin-bottom: 42px;
}

.section-heading--wide .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.contact p {
  margin: 0;
  color: inherit;
  opacity: 0.72;
  font-size: 17px;
  line-height: 1.6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  scroll-margin-top: var(--header);
  min-height: 100vh;
  padding: calc(var(--header) + 42px) clamp(18px, 4vw, 48px) 48px;
  overflow: hidden;
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(135deg, transparent 0 44%, var(--yellow) 45% 46%, transparent 47%),
    radial-gradient(circle at 12px 12px, var(--white) 1px, transparent 1px);
  background-size: 54px 54px, 24px 24px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
  min-height: calc(100vh - var(--header) - 90px);
}

.mission-logo {
  width: min(260px, 58vw);
  margin-bottom: 30px;
}

.hero h1 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(62px, 10vw, 138px);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(248, 248, 244, 0.8);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button--primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 7px 7px 0 rgba(248, 248, 244, 0.18);
}

.button--ghost {
  border-color: rgba(248, 248, 244, 0.7);
  color: var(--white);
}

.button--ghost:hover {
  background: var(--white);
  color: var(--black);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 42px 0 0;
  padding: 0;
  background: rgba(252, 190, 38, 0.24);
}

.hero__facts div {
  padding: 18px;
  background: rgba(5, 5, 5, 0.86);
}

.hero__facts dt {
  margin: 0 0 8px;
  color: rgba(248, 248, 244, 0.55);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 0;
  color: var(--yellow);
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero__media {
  justify-self: end;
  width: min(100%, 480px);
}

.portrait-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--yellow);
  padding: 12px;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: auto -14px -14px auto;
  width: 68%;
  height: 58%;
  background: var(--yellow);
  z-index: -1;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 24%;
  filter: contrast(1.05);
}

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

.content-stack p {
  margin: 0;
  color: rgba(5, 5, 5, 0.72);
  font-size: 19px;
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 12px;
  background: var(--line-dark);
}

.info-grid div {
  padding: 20px;
  background: #fff;
  border-left: 5px solid var(--yellow);
}

.info-grid span,
.candidate-card span,
.candidate-feature span {
  display: block;
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  text-transform: uppercase;
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proposal-grid article {
  min-height: 230px;
  padding: 26px;
  background: var(--black);
  transition: background 160ms ease, color 160ms ease;
}

.proposal-grid article:hover {
  background: var(--yellow);
  color: var(--black);
}

.proposal-grid article:hover span,
.proposal-grid article:hover p {
  color: rgba(5, 5, 5, 0.76);
}

.proposal-grid span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
}

.proposal-grid h3 {
  margin: 42px 0 12px;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.proposal-grid p {
  margin: 0;
  color: rgba(248, 248, 244, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

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

.video-card {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.9)),
    url("assets/imagem_01.jpg") center / cover;
  color: var(--white);
  overflow: hidden;
}

.video-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.88)),
    url("assets/imagem_02.jpeg") center 34% / cover;
}

.video-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.88)),
    url("assets/imagem_03.jpeg") center 20% / cover;
}

.play-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 64px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: scaleX(0.75);
}

.video-card strong {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
}

.video-card p {
  margin: 8px 0 0;
  color: rgba(248, 248, 244, 0.76);
  line-height: 1.5;
}

.candidates {
  background:
    radial-gradient(circle at 90% 5%, rgba(252, 190, 38, 0.12), transparent 28%),
    var(--black);
}

.state-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-candidates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.candidate-feature,
.candidate-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(252, 190, 38, 0.18);
}

.candidate-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.candidate-feature img,
.candidate-card img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  object-fit: cover;
  background: var(--black-3);
}

.candidate-feature h3,
.candidate-card h3 {
  margin: 6px 0 8px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.05;
}

.candidate-feature span,
.candidate-card span {
  color: rgba(248, 248, 244, 0.56);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid rgba(252, 190, 38, 0.28);
  background: rgba(5, 5, 5, 0.36);
  color: var(--yellow-2);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.tabs {
  margin-top: 26px;
}

.tab-list {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(252, 190, 38, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.tab-button {
  min-width: 118px;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: rgba(248, 248, 244, 0.65);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.tab-button.is-active {
  background: var(--yellow);
  color: var(--black);
}

.tab-panel {
  margin-top: 20px;
}

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

.candidate-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 142px;
  padding: 16px;
}

.candidate-card img {
  grid-row: span 3;
}

.candidate-card h3 {
  min-width: 0;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.candidate-card .social-row {
  margin-top: 9px;
}

.candidate-card--active {
  border-color: var(--yellow);
  background: rgba(252, 190, 38, 0.12);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 48px;
  align-items: center;
}

.contact__inner > div:first-child {
  display: grid;
  gap: 20px;
}

.contact-panel {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
}

.contact-panel a {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: #fff;
  border-left: 5px solid var(--yellow);
}

.contact-panel span {
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel strong {
  font-size: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 48px);
  background: var(--black);
  color: rgba(248, 248, 244, 0.68);
  border-top: 4px solid var(--yellow);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer img {
  width: 116px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .site-nav a {
    padding-inline: 9px;
  }

  .hero__inner,
  .two-col,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .hero__media {
    justify-self: start;
    width: min(100%, 520px);
  }

  .section-heading--wide {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 780px) {
  :root {
    --header: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__text span {
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(252, 190, 38, 0.2);
  }

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

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(252, 190, 38, 0.1);
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero__facts,
  .featured-candidates,
  .video-grid,
  .candidate-grid {
    grid-template-columns: 1fr;
  }

  .hero__facts dd {
    font-size: 16px;
  }

  .info-grid,
  .proposal-grid {
    grid-template-columns: 1fr;
  }

  .proposal-grid article {
    min-height: 190px;
  }

  .candidate-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .candidate-card img {
    width: 68px;
    height: 68px;
  }

  .site-footer,
  .site-footer div {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .hero__actions .button {
    width: 100%;
  }

  .hero__facts div {
    padding: 15px;
  }

  .candidate-feature {
    align-items: flex-start;
  }

  .candidate-feature img {
    width: 66px;
    height: 66px;
  }

  .tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .tab-button {
    min-width: 0;
  }
}
