:root {
  --blue: #1738d2;
  --blue-electric: #244bff;
  --blue-dark: #071f89;
  --blue-ink: #071443;
  --red: #e62b2d;
  --red-dark: #b9161b;
  --yellow: #ffda3e;
  --cream: #f6f1e7;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #10162e;
  --muted: #60667a;
  --line: #dcdde3;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --shadow: 0 30px 80px rgba(4, 18, 71, 0.2);
  --container: 1220px;
  --header-height: 78px;
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

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

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

.section {
  position: relative;
  padding: clamp(88px, 10vw, 144px) 0;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -0.045em; line-height: 0.98; }

h2 {
  max-width: 960px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(3.15rem, 7vw, 6.9rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.88;
  text-transform: uppercase;
}

h3 { font-size: 1.75rem; font-weight: 900; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 4px;
  background: currentColor;
  content: "";
  transform: skewX(-22deg);
}

.eyebrow-red { color: var(--red); }

.lead {
  color: var(--ink);
  font-size: clamp(1.17rem, 2vw, 1.38rem);
  font-weight: 700;
  line-height: 1.46;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 23px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after { content: "→"; transition: transform 180ms ease; }
.button:hover { transform: translateY(-3px); }
.button:hover::after { transform: translateX(4px); }

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 15px 34px rgba(121, 9, 14, 0.3);
}

.button-primary:hover { background: var(--red-dark); }

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

.button-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.button-ghost-dark { color: var(--blue); border-color: var(--blue); background: var(--white); }
.button-light { color: var(--blue-ink); background: var(--white); }
.button-full { width: 100%; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(7, 20, 67, 0.1);
  background: rgba(251, 250, 247, 0.91);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.header-brand { display: block; width: min(218px, 39vw); overflow: hidden; }

.campaign-logo-image {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
  object-fit: contain;
}

.header-signature {
  justify-self: start;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 30px);
}

.main-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:not(.nav-instagram)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-instagram {
  padding: 10px 16px;
  color: var(--white);
  border-radius: 999px;
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) { width: 23px; height: 2px; background: var(--blue); }

/* Hero: um cartaz político contemporâneo */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(36, 75, 255, 0.95) 0, rgba(36, 75, 255, 0) 37%),
    linear-gradient(138deg, #071443 0%, #0d2cb1 64%, #0e258f 100%);
}

.hero::before {
  position: absolute;
  top: 6%;
  right: 2%;
  width: min(24vw, 330px);
  aspect-ratio: 1;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
  animation: orbit 28s linear infinite;
}

.hero::after {
  position: absolute;
  top: 22%;
  right: 34%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--red);
  content: "";
  filter: blur(1px);
  opacity: 0.92;
}

.hero-number {
  position: absolute;
  right: -0.05em;
  bottom: -0.25em;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--display);
  font-size: clamp(16rem, 37vw, 38rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.hero-outline-word {
  position: absolute;
  z-index: 0;
  top: 12%;
  left: -0.02em;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(7rem, 15vw, 15rem);
  letter-spacing: 0.02em;
  line-height: 0.8;
  opacity: 0.17;
  pointer-events: none;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--white);
  transform: rotate(-4deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(32px, 5vw, 78px);
  padding-top: 42px;
  padding-bottom: 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: hero-in 700ms ease both;
}

.hero-kicker-row { display: flex; align-items: center; gap: 18px; }
.hero .eyebrow { margin-bottom: 20px; color: rgba(255, 255, 255, 0.78); }

.hero-kicker-number {
  margin: 0 0 20px;
  padding: 6px 11px 5px;
  color: var(--blue-ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(3deg);
}

.hero h1 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 0.75;
  text-transform: uppercase;
}

.hero h1 span, .hero h1 strong, .hero h1 em { display: block; font-style: normal; font-weight: 900; }

.hero h1 strong {
  width: max-content;
  max-width: 100%;
  margin: 0.09em 0 0.1em -0.04em;
  padding: 0.07em 0.1em 0.03em;
  color: var(--blue-ink);
  background: var(--yellow);
  box-shadow: 9px 9px 0 var(--red);
  transform: rotate(-1deg);
}

.hero h1 em {
  margin-top: 0.13em;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.58;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-facts {
  display: grid;
  max-width: 570px;
  margin: 0;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.hero-facts div { padding: 13px 18px; }
.hero-facts div + div { border-left: 1px solid rgba(255, 255, 255, 0.2); }

.hero-facts dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-facts dd { margin: 2px 0 0; font-size: 1.2rem; font-weight: 900; }

.hero-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 505px);
  margin: 10px auto 0;
  align-self: end;
  animation: portrait-in 800ms 120ms ease both;
}

.hero-portrait::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -28px;
  width: 88%;
  height: 91%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 38px 140px 38px 38px;
  content: "";
  transform: rotate(5deg);
}

.portrait-frame {
  position: absolute;
  z-index: -1;
  bottom: -18px;
  left: -30px;
  width: 67%;
  height: 57%;
  border-radius: 36px;
  background: var(--red);
  content: "";
  transform: rotate(-7deg);
}

.hero-portrait img {
  width: 100%;
  max-height: calc(100svh - 145px);
  border: 8px solid var(--cream);
  border-radius: 34px 126px 34px 34px;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 42px 75px rgba(1, 11, 48, 0.44);
  transform: rotate(1.4deg);
}

.portrait-sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--blue-ink);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 rgba(7, 20, 67, 0.85);
}

.portrait-sticker-top {
  top: 10%;
  right: -34px;
  width: 108px;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: rotate(8deg);
}

.portrait-sticker-side {
  bottom: 29%;
  left: -62px;
  padding: 12px 16px 10px;
  border-radius: 9px;
  background: var(--white);
  transform: rotate(-8deg);
}

.hero-portrait figcaption {
  position: absolute;
  right: -14px;
  bottom: 28px;
  display: grid;
  min-width: 246px;
  padding: 15px 19px;
  color: var(--blue);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--red);
  transform: rotate(-2deg);
}

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

.hero-portrait figcaption span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.campaign-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--white);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--blue-ink);
  background: var(--red);
  transform: rotate(-1deg) scale(1.02);
}

.campaign-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 14px 0 11px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

.campaign-marquee b {
  padding: 5px 10px 3px;
  color: var(--blue-ink);
  background: var(--yellow);
  font-size: 0.7em;
  transform: rotate(2deg);
}

/* Trajetória */
.about-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 20, 67, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(7, 20, 67, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 42px 42px;
}

.about-section::after {
  position: absolute;
  right: -2vw;
  bottom: 1vw;
  color: rgba(23, 56, 210, 0.06);
  font-family: var(--display);
  font-size: clamp(9rem, 24vw, 24rem);
  line-height: 0.7;
  content: "AL";
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(330px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(48px, 8vw, 118px);
}

.about-photo { position: relative; transform: rotate(-2deg); }

.about-photo::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -26px;
  width: 78%;
  height: 90%;
  border-radius: 34px 36px 130px 34px;
  background: var(--blue);
  content: "";
  transform: rotate(6deg);
}

.about-photo::after {
  position: absolute;
  z-index: -1;
  bottom: -28px;
  left: -24px;
  width: 62%;
  height: 48%;
  border-radius: 120px 30px 30px 30px;
  background: var(--red);
  content: "";
  transform: rotate(-5deg);
}

.about-photo img {
  width: 100%;
  max-height: 690px;
  border: 7px solid var(--white);
  border-radius: 34px 34px 130px 34px;
  object-fit: cover;
  object-position: center 13%;
  box-shadow: var(--shadow);
}

.photo-stamp {
  position: absolute;
  right: -36px;
  bottom: 28px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 6.2rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 5px 5px 0 var(--blue-ink);
  transform: rotate(90deg);
}

.about-copy p:not(.eyebrow):not(.lead):not(.verification-note):not(.pull-quote) {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0; }

.about-tags span {
  padding: 8px 14px 7px;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-tags span:nth-child(2n) {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
  transform: rotate(2deg);
}

.pull-quote {
  position: relative;
  margin: 34px 0 22px;
  padding: 25px 30px 23px;
  color: var(--white);
  border-radius: 8px 28px 8px 28px;
  background: var(--blue);
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  box-shadow: 10px 10px 0 var(--yellow);
  transform: rotate(-1deg);
}

.verification-note {
  padding-top: 18px;
  border-top: 1px solid rgba(7, 20, 67, 0.15);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Propostas */
.proposals-section {
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 9% 13%, rgba(36, 75, 255, 0.8), transparent 28%), var(--blue-ink);
}

.proposal-outline-word {
  position: absolute;
  top: 1.2%;
  right: -0.03em;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 20rem);
  letter-spacing: 0.01em;
  line-height: 0.8;
  opacity: 0.09;
  pointer-events: none;
  -webkit-text-stroke: 2px var(--white);
}

.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 60px;
  margin-bottom: 54px;
}

.section-heading h2 { margin-bottom: 0; }

.section-heading > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
}

.proposals-section .eyebrow, .study-section .eyebrow { color: var(--yellow); }

.proposal-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proposal-card {
  position: relative;
  min-height: 610px;
  padding: 36px 30px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.proposal-card:hover {
  z-index: 3;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.24);
  transform: translateY(-10px) rotate(-0.5deg);
}

.proposal-card:nth-child(2) { transform: translateY(34px); }
.proposal-card:nth-child(2):hover { transform: translateY(24px) rotate(0.5deg); }
.proposal-card-blue { background: linear-gradient(150deg, var(--blue-electric), var(--blue)); }
.proposal-card-red { background: linear-gradient(150deg, #fa4446, var(--red-dark)); }
.proposal-card-white { color: var(--ink); background: var(--cream); }

.proposal-index {
  position: absolute;
  top: 16px;
  right: 20px;
  color: rgba(255, 255, 255, 0.13);
  font-family: var(--display);
  font-size: 7.8rem;
  letter-spacing: 0;
  line-height: 1;
}

.proposal-card-white .proposal-index { color: rgba(23, 56, 210, 0.08); }

.proposal-mark {
  position: absolute;
  right: -0.05em;
  bottom: -0.15em;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--display);
  font-size: 16rem;
  line-height: 1;
}

.proposal-card-white .proposal-mark { color: rgba(23, 56, 210, 0.055); }

.proposal-status {
  position: relative;
  z-index: 1;
  margin-bottom: 76px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proposal-status::after {
  display: block;
  width: 46px;
  height: 7px;
  margin-top: 14px;
  border-radius: 99px;
  background: var(--yellow);
  content: "";
}

.proposal-card h3 {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.proposal-card > p:not(.proposal-status) {
  position: relative;
  z-index: 1;
  min-height: 126px;
  color: rgba(255, 255, 255, 0.8);
}

.proposal-card-white > p:not(.proposal-status) { color: var(--muted); }

.proposal-card details {
  position: relative;
  z-index: 2;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.proposal-card summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.proposal-card summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.25rem;
  content: "+";
}

.proposal-card details[open] summary::after { content: "−"; }
.proposal-detail { padding: 2px 0 20px; }

.proposal-detail h4 {
  margin: 17px 0 3px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-detail p { margin-bottom: 0; font-size: 0.89rem; line-height: 1.48; }

.source-link {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 22px;
  font-size: 0.8rem;
  font-weight: 900;
  text-underline-offset: 4px;
}

/* Papel federal */
.role-section { overflow: hidden; background: var(--cream); }

.role-background-word {
  position: absolute;
  right: -0.02em;
  bottom: 0.04em;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(10rem, 24vw, 26rem);
  line-height: 0.68;
  opacity: 0.07;
  pointer-events: none;
  -webkit-text-stroke: 2px var(--blue);
}

.role-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 120px);
}

.role-intro { position: sticky; top: 126px; align-self: start; }
.role-intro p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.role-list { margin: 0; padding: 0; list-style: none; }

.role-list li {
  display: grid;
  min-height: 148px;
  align-items: start;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  padding: 30px 24px 28px 0;
  border-top: 1px solid rgba(7, 20, 67, 0.17);
  transition: padding-left 180ms ease, background 180ms ease;
}

.role-list li:hover { padding-left: 22px; border-radius: 18px; background: var(--white); }
.role-list li:last-child { border-bottom: 1px solid rgba(7, 20, 67, 0.17); }

.role-list li > span {
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--red);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  transform: rotate(-5deg);
}

.role-list h3 {
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 2.6rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.role-list p { margin-bottom: 0; color: var(--muted); }

/* Propostas em construção */
.study-section {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, transparent 70%, rgba(255, 255, 255, 0.06) 70%), var(--blue);
}

.study-section::after {
  position: absolute;
  top: 16%;
  right: 5%;
  width: 160px;
  aspect-ratio: 1;
  border: 3px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.study-statement {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 880px;
  margin: -10px 0 54px auto;
  padding: 18px 23px 16px;
  color: var(--blue-ink);
  background: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 10px 10px 0 var(--red);
  transform: rotate(-1deg);
}

.study-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.study-list article {
  min-height: 220px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(4, 21, 86, 0.22);
  backdrop-filter: blur(8px);
  transition: background 180ms ease, transform 180ms ease;
}

.study-list article:hover { background: rgba(4, 21, 86, 0.5); transform: translateY(-5px); }
.study-list span { color: var(--yellow); font-family: var(--display); font-size: 1.2rem; }

.study-list h3 {
  margin: 35px 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.study-list p { margin-bottom: 0; color: rgba(255, 255, 255, 0.75); font-size: 0.94rem; }

/* Participação */
.participation-section {
  overflow: hidden;
  background: radial-gradient(circle at 0 100%, rgba(230, 43, 45, 0.1), transparent 28%), var(--paper);
}

.participation-section::after {
  position: absolute;
  top: 10%;
  left: -5%;
  color: rgba(23, 56, 210, 0.045);
  font-family: var(--display);
  font-size: 18rem;
  line-height: 1;
  content: "1588";
  transform: rotate(-90deg);
}

.participation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(48px, 8vw, 120px);
}

.participation-copy { align-self: start; }
.participation-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.participation-options { display: grid; gap: 8px; margin-top: 36px; }

.intent-button {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 10px 16px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.intent-button::before {
  width: 11px;
  height: 11px;
  margin-right: 14px;
  border: 2px solid var(--line);
  border-radius: 50%;
  content: "";
}

.intent-button:hover { transform: translateX(5px); }

.intent-button.is-active {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.intent-button.is-active::before {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 218, 62, 0.18);
}

.message-form {
  position: relative;
  padding: clamp(28px, 5vw, 50px);
  border: 3px solid var(--blue-ink);
  border-radius: 30px 90px 30px 30px;
  background: var(--cream);
  box-shadow: 14px 14px 0 var(--blue), 26px 26px 0 var(--red);
}

.message-form::before {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 24px 0 0 var(--red), 48px 0 0 var(--blue);
  content: "";
}

.message-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  font-weight: 900;
}

.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.message-form input, .message-form textarea, .message-dialog textarea {
  width: 100%;
  color: var(--ink);
  border: 2px solid #c7c8d0;
  border-radius: 13px;
  background: var(--white);
  font-size: 1rem;
}

.message-form input { min-height: 52px; padding: 10px 14px; }
.message-form textarea, .message-dialog textarea { padding: 14px; resize: vertical; }

.message-form input:focus, .message-form textarea:focus, .message-dialog textarea:focus {
  border-color: var(--blue);
  outline: 4px solid rgba(23, 56, 210, 0.13);
}

.consent-field {
  display: grid !important;
  align-items: start;
  grid-template-columns: 22px 1fr;
  gap: 12px !important;
  color: var(--muted);
  font-weight: 400 !important;
  line-height: 1.45;
}

.consent-field input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.form-note { margin: 16px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
[hidden] { display: none !important; }

/* Encerramento */
.closing-section {
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 82% 10%, rgba(255, 218, 62, 0.25), transparent 24%), var(--red);
}

.closing-section::after {
  position: absolute;
  right: -0.02em;
  bottom: -0.25em;
  color: rgba(255, 255, 255, 0.09);
  font-family: var(--display);
  font-size: clamp(13rem, 33vw, 34rem);
  line-height: 0.8;
  content: "15";
}

.closing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(48px, 8vw, 112px);
}

.closing-image { position: relative; transform: rotate(-3deg); }

.closing-image::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -26px;
  width: 86%;
  height: 96%;
  border: 4px solid var(--yellow);
  border-radius: 120px 30px 30px 30px;
  content: "";
  transform: rotate(7deg);
}

.closing-image img {
  width: 100%;
  max-height: 610px;
  border: 7px solid var(--white);
  border-radius: 120px 30px 30px 30px;
  object-fit: cover;
  object-position: center 12%;
  box-shadow: 0 32px 70px rgba(84, 2, 6, 0.3);
}

.closing-copy .eyebrow { color: var(--yellow); }
.closing-copy h2 { max-width: 780px; }

.closing-copy > p:not(.eyebrow):not(.closing-signature) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.closing-signature {
  width: fit-content;
  margin: 30px 0;
  padding: 13px 17px 10px;
  color: var(--blue-ink);
  background: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.closing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.text-link { color: var(--white); font-weight: 900; text-underline-offset: 5px; }

.site-footer {
  padding: 70px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: #040b25;
}

.footer-grid { display: grid; grid-template-columns: 1.25fr 0.55fr 1fr; gap: 60px; }
.footer-grid > div:first-child p { max-width: 480px; }
.footer-logo { width: min(340px, 100%); margin-bottom: 24px; }

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-grid a { display: block; margin-bottom: 8px; color: var(--white); font-weight: 800; text-decoration: none; }
.footer-grid p { font-size: 0.9rem; }

.legal-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
}

/* Diálogo */
.message-dialog {
  width: min(calc(100% - 30px), 680px);
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: var(--shadow);
}

.message-dialog::backdrop { background: rgba(3, 9, 34, 0.76); backdrop-filter: blur(6px); }

.dialog-shell {
  position: relative;
  padding: clamp(26px, 5vw, 48px);
  border: 4px solid var(--blue-ink);
  border-radius: 28px;
  background: var(--cream);
}

.dialog-shell h2 { max-width: 520px; color: var(--blue-ink); font-size: clamp(2.4rem, 7vw, 4rem); }

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--blue-ink);
  cursor: pointer;
  font-size: 1.5rem;
}

.dialog-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.dialog-feedback { min-height: 24px; margin: 15px 0 0; color: var(--blue); font-weight: 800; }
.mobile-action { display: none; }

/* Página de links */
.links-page {
  min-height: 100svh;
  overflow-x: clip;
  color: var(--white);
  background: radial-gradient(circle at 76% 12%, rgba(36, 75, 255, 0.95), transparent 26%), linear-gradient(145deg, #071443 0%, #102ca4 58%, #071443 100%);
}

.links-page::before {
  position: fixed;
  z-index: 0;
  top: -18vw;
  left: -20vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 3px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  animation: orbit 32s linear infinite;
}

.links-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 720px);
  margin: 0 auto;
  padding: 44px 0 38px;
}

.links-backdrop {
  position: fixed;
  z-index: -1;
  inset: 0;
  display: grid;
  align-content: space-around;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: clamp(12rem, 38vw, 30rem);
  letter-spacing: -0.05em;
  line-height: 0.7;
  pointer-events: none;
  transform: rotate(-8deg) scale(1.1);
}

.links-profile { text-align: center; }
.links-logo {
  width: min(330px, 78vw);
  margin: 0 auto 34px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.22));
}

.links-photo-wrap {
  position: relative;
  width: min(310px, 72vw);
  margin: 0 auto 34px;
}

.links-photo-wrap::before {
  position: absolute;
  z-index: -1;
  inset: -14px -18px -18px -14px;
  border-radius: 48% 48% 28px 48%;
  background: var(--red);
  content: "";
  transform: rotate(6deg);
}

.links-photo-wrap::after {
  position: absolute;
  z-index: -2;
  inset: -26px 12px 10px -30px;
  border: 3px solid var(--yellow);
  border-radius: 48% 48% 28px 48%;
  content: "";
  transform: rotate(-7deg);
}

.links-photo {
  width: 100%;
  aspect-ratio: 1;
  border: 7px solid var(--white);
  border-radius: 50% 50% 28px 50%;
  object-fit: cover;
  object-position: center 18%;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.35);
}

.links-photo-sticker {
  position: absolute;
  right: -28px;
  bottom: -18px;
  display: grid;
  width: 92px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--blue-ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--display);
  font-size: 2.35rem;
  box-shadow: 7px 7px 0 var(--blue-ink);
  transform: rotate(-8deg);
}

.links-kicker {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.links-profile h1 {
  max-width: 680px;
  margin: 0 auto 18px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 11vw, 6.4rem);
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.links-profile h1 strong {
  display: inline-block;
  padding: 0.03em 0.08em 0;
  color: var(--blue-ink);
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 7px 7px 0 var(--red);
  transform: rotate(-1deg);
}

.links-intro { margin-bottom: 34px; color: rgba(255, 255, 255, 0.7); }
.links-list { display: grid; gap: 12px; }

.link-card {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--blue-ink);
  border: 2px solid transparent;
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.link-card:hover { box-shadow: 12px 12px 0 var(--yellow); transform: translateY(-4px) rotate(-0.5deg); }

.link-card > span:last-child {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  font-size: 1.35rem;
}

.link-card > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.link-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.link-card-primary { color: var(--white); background: var(--red); }
.link-card-primary small { color: var(--yellow); }
.link-card-primary > span:last-child { color: var(--blue-ink); background: var(--yellow); }

.link-card-instagram {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.link-card-instagram small { color: var(--yellow); }
.link-card-instagram > span:last-child { background: var(--red); }

.links-footer {
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  text-align: center;
}

.links-footer a { color: var(--white); font-size: 0.88rem; font-weight: 900; }
.links-footer p { margin: 6px 0 0; }
.links-signature { color: var(--yellow); font-weight: 900; }
.reveal { opacity: 1; transform: none; }

@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes portrait-in {
  from { opacity: 0; transform: translateX(30px) rotate(2deg); }
  to { opacity: 1; transform: translateX(0) rotate(0); }
}

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes orbit { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .header-signature { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr); }
  .hero h1 { font-size: clamp(4.2rem, 7vw, 6.6rem); }
  .portrait-sticker-side { left: -25px; }
  .proposal-card { padding-inline: 24px; }
}

@media (max-width: 920px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 34px), var(--container)); }

  .main-nav {
    position: fixed;
    z-index: 120;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100dvh - var(--header-height));
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    border-bottom: 4px solid var(--red);
    background: var(--cream);
    box-shadow: 0 24px 50px rgba(7, 20, 67, 0.18);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav a { display: flex; min-height: 48px; align-items: center; justify-content: flex-start; padding: 12px 10px; border-bottom: 1px solid rgba(7, 20, 67, 0.12); }
  .main-nav .nav-instagram { justify-content: center; margin-top: 10px; text-align: center; }
  .menu-toggle { display: flex; justify-self: end; }
  .hero { min-height: auto; }
  .hero::after { top: 54%; right: -7%; }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding-top: 72px;
    padding-bottom: 112px;
  }

  .hero-copy { max-width: 760px; }
  .hero-portrait { width: min(82vw, 490px); }
  .hero-portrait img { max-height: 720px; }

  .about-grid, .closing-grid {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 56px;
  }

  .proposal-grid { grid-template-columns: 1fr; }
  .proposal-card, .proposal-card:nth-child(2) { min-height: 0; transform: none; }
  .proposal-card:hover, .proposal-card:nth-child(2):hover { transform: translateY(-5px); }
  .proposal-card > p:not(.proposal-status) { min-height: 0; }
  .role-grid, .participation-grid { grid-template-columns: 1fr; }
  .role-intro { position: static; }
  .study-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .campaign-marquee { transform: none; }
}

@media (max-width: 700px) {
  .section { padding: 84px 0; }
  h2 { font-size: clamp(3.1rem, 15vw, 5.4rem); }
  .hero-outline-word, .proposal-outline-word, .role-background-word { display: none; }
  .hero-grid { gap: 54px; padding-top: 54px; padding-bottom: 106px; }
  .hero-kicker-row { align-items: flex-start; }
  .hero h1 { font-size: clamp(3.65rem, 18.5vw, 6.1rem); line-height: 0.78; }
  .hero h1 em { -webkit-text-stroke-width: 1.5px; }
  .hero-text { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-facts div { padding: 12px 10px; }
  .hero-facts dd { font-size: 1.03rem; }
  .hero-portrait { width: min(88vw, 460px); }
  .portrait-sticker-top { right: -8px; width: 88px; font-size: 0.62rem; }
  .portrait-sticker-side { left: -9px; }
  .hero-portrait figcaption { right: -4px; bottom: 22px; min-width: 210px; }
  .about-grid, .closing-grid { grid-template-columns: 1fr; }
  .about-photo, .closing-image { width: min(86vw, 480px); margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .proposal-status { margin-bottom: 58px; }
  .study-statement { margin-bottom: 44px; }
  .study-list { grid-template-columns: 1fr; }

  .message-form {
    border-radius: 25px 58px 25px 25px;
    box-shadow: 8px 8px 0 var(--blue), 16px 16px 0 var(--red);
  }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-grid > *, .about-grid > *, .closing-grid > *, .section-heading > *, .role-grid > *, .participation-grid > * { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .legal-line { display: grid; }

  .mobile-action {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 12px 32px rgba(84, 2, 6, 0.36);
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
  }

  .site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
  .links-page .links-shell { padding-top: max(30px, env(safe-area-inset-top)); }
  .links-photo-sticker { right: -12px; }
  .closing-actions { display: grid; gap: 14px; }
  .closing-actions .button { width: 100%; }
  .closing-actions .text-link { min-height: 44px; padding: 10px 0; text-align: center; }
}

@media (max-width: 440px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .header-brand { width: 182px; }
  .hero h1 { font-size: clamp(3.3rem, 18vw, 4.7rem); }
  .hero-kicker-number { display: none; }

  .hero-portrait figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 26px);
    min-width: 0;
    margin: -18px auto 0;
  }

  .portrait-sticker-side { bottom: 34%; }
  .role-list li { grid-template-columns: 58px 1fr; gap: 12px; }
  .role-list li > span { width: 46px; }
  .role-list h3 { font-size: 2.15rem; }
  .proposal-card { padding: 28px 22px; border-radius: 22px; }
  .proposal-card h3 { font-size: 2.65rem; }
  .dialog-shell { padding-top: 66px; }
  .dialog-actions .button { width: 100%; }
  .links-shell { width: min(calc(100% - 24px), 720px); padding-bottom: calc(32px + env(safe-area-inset-bottom)); }
  .links-profile h1 { font-size: clamp(3rem, 17vw, 4.4rem); line-height: 0.84; }
  .links-intro { margin-bottom: 28px; }
  .link-card { min-height: 82px; gap: 12px; padding: 16px; border-radius: 18px; font-size: 1rem; }
  .link-card > span:last-child { width: 44px; }
}

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