:root {
  --blue: #005caa;
  --blue-section: #0867b4;
  --green: #1aa43a;          /* só preenchimento decorativo, nunca sob texto */
  --green-dark: #13872f;
  --green-header: #158230;   /* branco sobre ele = 4,92:1 */
  --green-cta: #0b6b22;      /* amarelo = 4,97:1 · branco = 6,69:1 */
  --green-text: #0b6b22;     /* verde como cor de texto sobre claro = 6,69:1 */
  --yellow: #ffdd0e;
  --yellow-deep: #fecc00;
  --cream: #f5f2ec;
  --text: #202633;
  --white: #ffffff;
  --container: 1520px;
  --header-height: 136px;
  --shadow: 0 16px 36px rgba(0, 56, 100, 0.15);
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Montserrat", "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  font: inherit;
}

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

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

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

.button {
  min-height: 60px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.04) brightness(1.02);
  box-shadow: 0 10px 22px rgba(0, 50, 95, 0.18);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--yellow);
  border-radius: 2px;
}

.button-green {
  color: var(--yellow);
  background: var(--green-cta);
}

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

/* Header */
.site-header {
  position: relative;
  z-index: 30;
  height: var(--header-height);
  color: var(--white);
  background: var(--green-header);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 295px;
  height: auto;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 2.25vw, 48px);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.primary-navigation > a:not(.header-cta) {
  position: relative;
  padding: 16px 0;
}

.primary-navigation > a:not(.header-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 9px;
  height: 3px;
  background: var(--yellow);
  transition: right 180ms ease;
}

.primary-navigation > a:not(.header-cta):hover::after,
.primary-navigation > a:not(.header-cta):focus-visible::after {
  right: 0;
}

.header-cta {
  min-width: 206px;
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--yellow);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  padding: 10px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  height: clamp(620px, 41.875vw, 1000px);
  overflow: hidden;
  isolation: isolate;
  background-color: #e8f0f7;
  background-image: image-set(url("../images/HERO.webp") type("image/webp"),
                              url("../images/HERO.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 132px;
}

.hero-roraima-logo {
  width: 338px;
  height: auto;
}

.hero h1 {
  max-width: 760px;
  margin: 40px 0 28px;
  color: var(--blue);
  font-size: clamp(86px, 6vw, 116px);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.012em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 28px;
  color: var(--blue);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-actions .button:first-child {
  min-width: 250px;
}

.hero-actions .button-wide {
  min-width: 424px;
}

/* Manifesto */
.manifesto {
  min-height: 700px;
  padding: 140px 0 124px;
  background: var(--white);
  text-align: center;
}

.manifesto-inner {
  max-width: 1120px;
}

.manifesto h2,
.vision h2,
.priorities h2,
.participate h2 {
  margin: 0;
  color: #415eae;
  font-size: 54px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 6px 0 40px;
  color: #415eae;
  font-size: 27px;
  font-weight: 700;
}

.manifesto-inner > p:not(.section-subtitle) {
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.text-link {
  margin-top: 56px;
  min-height: 60px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  background: var(--green-cta);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.04) brightness(1.02);
  box-shadow: 0 10px 22px rgba(0, 50, 95, 0.18);
}

.filete {
  height: 86px;
  overflow: hidden;
  line-height: 0;
  background: var(--white);
}

.filete img {
  width: 100%;
  min-width: 1360px;
  height: 86px;
  object-fit: cover;
  object-position: center;
}

/* Biography */
.bio {
  padding: 128px 0 138px;
  background: var(--cream);
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 806px;
  align-items: start;
  gap: 76px;
}

.bio-copy {
  padding-top: 10px;
  color: #2f5bab;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
  font-size: 27px;
  font-weight: 500;
}

.eyebrow span {
  width: 88px;
  height: 5px;
  flex: 0 0 auto;
  background: var(--yellow);
}

.bio h2 {
  margin: 0 0 44px;
  color: #415eae;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: -0.035em;
}

.bio h2 strong {
  font-weight: 900;
}

.bio-copy p {
  margin: 0 0 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.bio-copy .motto {
  margin-top: 34px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.button-bio {
  min-width: 432px;
  margin-top: 38px;
}

.bio-photo-wrap {
  width: 806px;
}

.bio-photo {
  width: 100%;
  height: auto;
}

/* Vision */
.vision {
  padding: 152px 0 148px;
  background: var(--white);
  text-align: center;
}

.vision-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vision h2 {
  font-size: 66px;
}

.vision-kicker {
  margin: 3px 0 46px;
  color: #415eae;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.vision-intro,
.vision-summary {
  max-width: 1030px;
  margin-inline: auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.52;
}

.vision-intro {
  margin-top: 0;
  margin-bottom: 74px;
}

.pillars {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 54px;
}

.pillar {
  min-width: 0;
  overflow: hidden;
  text-transform: uppercase;
}

.pillar span,
.pillar strong {
  min-height: 64px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1.18;
}

.pillar span {
  color: var(--yellow);
  background: var(--green-cta);
  font-weight: 900;
}

.pillar strong {
  color: #3c59aa;
  background: var(--yellow);
  font-weight: 800;
}

.vision-summary {
  margin-top: 0;
  margin-bottom: 28px;
}

/* Sem o botão logo abaixo, essa margem virava vão morto somado aos 148px de
   respiro da própria seção. */
.vision-summary:last-child {
  margin-bottom: 0;
}



/* Proposals */
.proposals {
  position: relative;
  min-height: 1035px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-section);
  isolation: isolate;
}

.proposals-grid {
  position: relative;
  z-index: 2;
  min-height: 1035px;
  padding-top: 190px;
  padding-bottom: 145px;
  display: grid;
  grid-template-columns: 39% 61%;
  gap: 40px;
}

.proposals-heading {
  padding-left: 2px;
}

.yellow-line,
.center-line {
  width: 86px;
  height: 5px;
  display: block;
  background: var(--yellow);
}

.proposals h2 {
  margin: 46px 0 0;
  color: var(--white);
  font-size: 72px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.proposals-content {
  padding-top: 8px;
}

.proposal-list {
  margin: 0 0 54px;
  padding: 0;
  display: grid;
  gap: 21px;
  list-style: none;
}

.proposal-list li {
  position: relative;
  min-height: 34px;
  padding-left: 60px;
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.proposal-list li::before {
  content: "↑";
  position: absolute;
  left: 0;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #0b6b22;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.proposals-content .button {
  min-width: 432px;
}

.proposals-art {
  position: absolute;
  z-index: 1;
  left: -115px;
  bottom: -14px;
  width: 920px;
  height: auto;
  pointer-events: none;
}

/* Priorities */
.priorities {
  padding: 154px 0 164px;
  background: var(--white);
  text-align: center;
}

.priorities-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.center-line {
  width: 82px;
  margin-bottom: 46px;
}

.priorities h2 {
  color: var(--blue);
  font-size: 62px;
}

.priorities-kicker {
  margin: 14px 0 36px;
  color: #415eae;
  font-size: 27px;
  font-weight: 600;
  text-transform: uppercase;
}

.priorities-intro {
  max-width: 750px;
  margin: 0 0 68px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.priority-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.priority-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8e8e8;
}

.priority-card img {
  width: 100%;
  aspect-ratio: 488 / 384;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.priority-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid transparent;
  transition: border-color 180ms ease;
}

.priority-card:hover img,
.priority-card:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.priority-card:hover::after,
.priority-card:focus-visible::after {
  border-color: var(--yellow);
}

.priorities-button {
  min-width: 430px;
  margin-top: 58px;
}

/* Participation */
.participate {
  padding: 104px 0 96px;
  color: var(--blue);
  background: var(--yellow-deep);
  text-align: center;
}

.participate h2 {
  color: var(--blue);
  font-size: 66px;
}

.participate p {
  margin: 12px 0 36px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.32;
}

.participate-button {
  min-width: 430px;
}

/* Campaign band */
.campaign-band {
  padding: 132px 0 118px;
  background: var(--white);
}

.campaign-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.campaign-lockup {
  flex: 1 1 auto;
}

.campaign-lockup img {
  width: min(680px, 100%);
  height: auto;
  image-rendering: auto;
}

.campaign-lockup p {
  margin: 16px 0 0 170px;
  color: var(--blue);
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.campaign-lockup p span {
  color: var(--green-text);
  font-size: 23px;
  font-weight: 500;
}

.campaign-lockup p strong {
  color: var(--green-text);
  font-weight: 900;
}

.campaign-band-actions {
  width: 430px;
  flex: 0 0 430px;
  display: grid;
  gap: 28px;
}

.campaign-band-actions .button {
  width: 100%;
}

/* Footer */
.site-footer {
  padding: 96px 0 28px;
  color: var(--white);
  background: var(--blue-section);
}

.footer-grid {
  min-height: 250px;
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  align-items: start;
  gap: 80px;
}

.footer-brand img {
  width: 295px;
  height: auto;
}

.footer-brand p {
  margin: 38px 0 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  gap: 20px;
  font-size: 17px;
  font-weight: 500;
}

.footer-nav a {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-links a:hover {
  background: rgba(255, 221, 14, 0.12);
  transform: translateY(-3px);
}

.social-links svg {
  width: 36px;
  height: 36px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links svg .fill {
  fill: currentColor;
  stroke: none;
}

.social-links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-legal {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1540px) {
  :root {
    --container: 1320px;
  }

  .primary-navigation {
    gap: 24px;
    font-size: 14px;
  }

  .header-cta {
    min-width: 176px;
  }

  .bio-grid {
    grid-template-columns: minmax(0, 1fr) minmax(540px, 660px);
    gap: 60px;
  }

  .bio-photo-wrap {
    width: 100%;
  }

  .bio h2 {
    font-size: 55px;
  }

  .proposals h2 {
    font-size: 64px;
  }
}

@media (max-width: 1230px) {
  :root {
    --header-height: 94px;
  }

  html {
    scroll-padding-top: 94px;
  }

  .site-header {
    position: sticky;
    top: 0;
    box-shadow: 0 4px 14px rgba(0, 60, 100, 0.12);
  }

  .brand img {
    width: 225px;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    padding: 0 32px;
    overflow: hidden;
    display: grid;
    justify-items: stretch;
    gap: 0;
    color: var(--blue);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(0, 65, 115, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: max-height 260ms ease, opacity 180ms ease, visibility 180ms ease, padding 260ms ease;
  }

  .primary-navigation.is-open {
    max-height: 570px;
    padding-top: 18px;
    padding-bottom: 24px;
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation > a:not(.header-cta) {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 92, 170, 0.12);
  }

  .primary-navigation > a:not(.header-cta)::after {
    display: none;
  }

  .header-cta {
    width: 100%;
    margin-top: 16px;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 84px;
  }

  .bio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .bio h2 {
    font-size: 48px;
  }

  .bio-copy p {
    font-size: 16px;
  }

  .vision h2,
  .participate h2 {
    font-size: 56px;
  }

  .proposals-grid {
    grid-template-columns: 42% 58%;
  }

  .proposals h2 {
    font-size: 55px;
  }

  .proposal-list li {
    font-size: 23px;
  }

  .priorities h2 {
    font-size: 54px;
  }

  .campaign-lockup {
    min-width: 0;
  }

  .campaign-lockup img {
    width: min(560px, 100%);
  }

  .campaign-lockup p {
    margin-left: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 940px) {
  .container {
    width: min(calc(100% - 40px), 760px);
  }

  .hero {
    height: auto;
    min-height: 970px;
    padding-bottom: 420px;
    background-color: #edf4f8;
    background-image: url("../images/TEXTURA-HERO.png");
    background-position: 34% top;
    background-size: auto 650px;
  }

  .hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 470px;
    /* Recorte vertical em vez da arte panorâmica: no formato original ele
       ocupava uma fração de uma imagem 1920x804, então sobrava pouco dele
       na altura disponível. */
    background-image: image-set(url("../images/HERO-MOBILE.webp") type("image/webp"),
                                url("../images/HERO-MOBILE.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 470px;
  }

  .hero-content {
    height: auto;
    padding-top: 68px;
    text-align: center;
  }

  .hero-roraima-logo {
    width: 285px;
    margin-inline: auto;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: 72px;
    letter-spacing: -0.05em;
  }

  .hero-kicker {
    font-size: 23px;
  }

  .hero-actions {
    justify-content: center;
  }

  .manifesto,
  .vision,
  .priorities {
    min-height: 0;
    padding: 100px 0;
  }

  .manifesto h2,
  .vision h2,
  .priorities h2,
  .participate h2 {
    font-size: 45px;
  }

  .bio {
    padding: 100px 0;
  }

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

  .bio-copy {
    max-width: 760px;
  }

  .bio h2 {
    max-width: 700px;
    font-size: 52px;
  }

  .bio-photo-wrap {
    max-width: 650px;
    margin-inline: auto;
    grid-row: 1;
  }

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

  .pillar:last-child {
    grid-column: 1 / -1;
  }

  .proposals {
    min-height: 0;
  }

  .proposals-grid {
    min-height: 0;
    padding: 110px 0 130px;
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .proposals h2 {
    font-size: 58px;
  }

  .proposals-content {
    padding-left: 18%;
  }

  .proposals-art {
    width: 700px;
    left: -280px;
  }

  .priority-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .campaign-band-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .campaign-lockup {
    text-align: center;
  }

  .campaign-lockup img {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .campaign-lockup p {
    margin-left: 0;
  }

  .campaign-band-actions {
    width: min(430px, 100%);
    flex-basis: auto;
    margin-inline: auto;
  }

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

  .social-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(calc(100% - 32px), 520px);
  }

  .brand img {
    width: 188px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    /* O bloco de texto empurrava o retrato para fora da primeira tela: com a
       barra do navegador, sobravam ~130px dele. Texto comprimido e área da
       foto ampliada. */
    min-height: 810px;
    padding-bottom: 440px;
    /* mesma escala do recorte (430px de 804) para o padrão não dar salto
       visível na emenda com a foto */
    background-size: auto 430px;
    background-position: 22% top;
  }

  .hero::after {
    height: 430px;
    background-position: center bottom;
    background-size: auto 430px;
  }

  .hero-content {
    padding-top: 22px;
  }

  .hero-roraima-logo {
    width: 180px;
  }

  .hero h1 {
    margin: 12px auto 10px;
    font-size: clamp(46px, 14vw, 60px);
  }

  .hero-kicker {
    font-size: 16.5px;
    margin-bottom: 18px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-actions .button:first-child,
  .hero-actions .button-wide,
  .button-bio,
  .proposals-content .button,
  .priorities-button,
  .participate-button {
    min-width: 0;
    width: 100%;
  }

  .button {
    min-height: 56px;
    padding-inline: 20px;
    font-size: 14px;
  }

  .manifesto,
  .vision,
  .priorities {
    padding: 76px 0;
  }

  .manifesto h2,
  .vision h2,
  .priorities h2,
  .participate h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section-subtitle,
  .vision-kicker,
  .priorities-kicker {
    font-size: 20px;
  }

  .manifesto-inner > p:not(.section-subtitle),
  .vision-intro,
  .vision-summary,
  .priorities-intro {
    font-size: 16px;
  }

  .filete,
  .filete img {
    height: 54px;
  }

  .filete img {
    min-width: 900px;
  }

  .bio {
    padding: 76px 0 82px;
  }

  .eyebrow {
    gap: 14px;
    font-size: 19px;
  }

  .eyebrow span {
    width: 54px;
    height: 4px;
  }

  .bio h2 {
    margin-bottom: 34px;
    font-size: 38px;
  }

  .bio-copy p {
    font-size: 15px;
  }

  .button-bio {
    margin-top: 24px;
  }

  .vision-intro {
    margin-bottom: 48px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pillar:last-child {
    grid-column: auto;
  }

  .pillar span,
  .pillar strong {
    min-height: 52px;
    font-size: 16px;
  }

  .proposals-grid {
    padding: 82px 0 100px;
    gap: 54px;
  }

  .proposals h2 {
    margin-top: 28px;
    font-size: 43px;
  }

  .proposals-content {
    padding-left: 0;
  }

  .proposal-list {
    gap: 18px;
  }

  .proposal-list li {
    min-height: 30px;
    padding-left: 46px;
    font-size: 17px;
  }

  .proposal-list li::before {
    width: 29px;
    height: 29px;
    font-size: 19px;
  }

  .proposals-art {
    width: 520px;
    left: -320px;
  }

  .center-line {
    margin-bottom: 30px;
  }

  .priorities-kicker {
    margin-bottom: 24px;
  }

  .priorities-intro {
    margin-bottom: 42px;
  }

  .priorities-button {
    margin-top: 36px;
  }

  .participate {
    padding: 72px 0;
  }

  .participate p {
    margin: 18px 0 34px;
    font-size: 19px;
  }

  .participate p br {
    display: none;
  }

  .campaign-band {
    padding: 76px 0;
  }

  .campaign-band-inner {
    gap: 52px;
  }

  .campaign-lockup p {
    font-size: 25px;
  }

  .campaign-lockup p span {
    font-size: 17px;
  }

  .campaign-band-actions {
    gap: 14px;
  }

  .site-footer {
    padding-top: 70px;
  }

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

  .footer-brand p,
  .footer-nav {
    font-size: 15px;
  }

  .social-links {
    grid-column: auto;
  }

  .footer-legal {
    font-size: 12px;
  }
}

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

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


/* =========================================================
   Internal pages
   ========================================================= */
.primary-navigation a[aria-current="page"]:not(.header-cta)::after {
  right: 0;
}

.primary-navigation .header-cta[aria-current="page"] {
  box-shadow: inset 0 -5px 0 var(--blue);
}

.footer-brand a,
.footer-legal a {
  transition: color 180ms ease;
}

.footer-brand a:hover,
.footer-legal a:hover {
  color: var(--yellow);
}

.internal-main {
  min-height: 55vh;
}

.page-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
  color: var(--blue);
  background-color: #e9f2f8;
  background-image: image-set(url("../images/HELIO-HERO-1200.webp") type("image/webp"),
                              url("../images/HELIO-HERO.png") type("image/png"));
  background-repeat: no-repeat;
  /* Ancorado no topo, e nao no centro: a arte tem 1920x804 e o hero interno
     tem ~500px, entao o cover descarta ~304px. Centralizado, metade desse
     corte saia de cima e decapitava o retrato a partir de ~1400px de largura
     (a 1920px o topo da cabeca caia em y=-102). Ancorando no topo, todo o
     corte sai do rodape da arte, que e camisa e bandeira. */
  background-position: center top;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  /* A lavagem existe para dar contraste ao texto, que fica na metade
     esquerda. Ela termina antes do retrato (que começa por volta dos
     60%), para a foto ficar nítida como no hero da home. */
  background: linear-gradient(90deg,
    rgba(233, 242, 248, 0.97) 0%,
    rgba(233, 242, 248, 0.95) 38%,
    rgba(233, 242, 248, 0.70) 48%,
    rgba(233, 242, 248, 0.10) 57%,
    rgba(233, 242, 248, 0) 62%);
}

.page-hero-inner {
  min-height: 500px;
  padding-top: 70px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.breadcrumb {
  margin-bottom: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  color: #3b5ca9;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-kicker {
  max-width: 780px;
  margin: 0 0 12px;
  color: var(--green-text);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(56px, 5.2vw, 88px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.page-hero-intro {
  max-width: 760px;
  margin: 25px 0 0;
  color: #31589f;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.45;
}

.plan-subnav,
.article-siblings {
  position: sticky;
  z-index: 20;
  top: 0;
  color: var(--blue);
  background: var(--white);
  border-bottom: 1px solid rgba(0, 92, 170, 0.12);
  box-shadow: 0 10px 24px rgba(0, 56, 100, 0.08);
}

.site-header + .internal-main .plan-subnav,
.site-header + .internal-main .article-siblings {
  top: 0;
}

.plan-subnav-inner {
  min-height: 74px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.plan-subnav a {
  min-width: 205px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 92, 170, 0.1);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease;
}

.plan-subnav a:first-child {
  border-left: 1px solid rgba(0, 92, 170, 0.1);
}

.plan-subnav a:hover,
.plan-subnav a[aria-current="page"] {
  color: var(--yellow);
  background: var(--green-cta);
}

.article-siblings {
  min-height: 74px;
  padding: 0 max(32px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.article-siblings > span,
.article-siblings a {
  padding: 18px 22px;
  display: flex;
  align-items: center;
}

.article-siblings > span {
  color: var(--green-text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-siblings a {
  border-left: 1px solid rgba(0, 92, 170, 0.1);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.article-siblings a:hover,
.article-siblings a[aria-current="page"] {
  color: var(--yellow);
  background: var(--green-cta);
}

.content-section {
  padding: 118px 0;
  background: var(--white);
}

.content-section--cream {
  background: var(--cream);
}

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

.section-marker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--green-text);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-marker::before {
  content: "";
  width: 52px;
  height: 4px;
  flex: 0 0 auto;
  background: var(--yellow);
}

.content-section--blue .section-marker,
.section-heading--light .section-marker {
  color: var(--yellow);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 62px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .section-marker {
  justify-content: center;
}

.section-heading h2,
.prose h2,
.mission-panel h2,
.next-step-card h2,
.external-action-card h2,
/* Coluna do formulário é estreita (0.8fr); a fonte cheia transbordava
   por baixo do formulário em telas médias. */
.form-intro h2,
.donation-teaser h2,
.donation-page-card h2,
.legal-placeholder h2,
.faq-aside h2,
.content-title {
  margin: 18px 0 22px;
  color: var(--blue);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

/* Este título mora numa coluna estreita ao lado do formulário, não na
   largura cheia como os outros do grupo acima. A 62px ele hifenizava no meio
   das palavras ("TRANSFOR-MAÇÃO", "RO-RAIMA"). Havia uma regra tentando
   reduzi-lo, mas vinha ANTES da agrupada, com a mesma especificidade, então
   nunca valeu — por isso esta vem depois.
   hyphens: manual porque partir nome próprio no meio é pior que uma linha
   mais curta. */
.form-intro h2 {
  font-size: clamp(28px, 2.4vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  hyphens: manual;
  overflow-wrap: break-word;
}

.section-heading p,
.centered-copy,
.mission-panel p,
.next-step-card p,
.external-action-card p,
.form-intro > p,
.donation-teaser p,
.donation-page-card p,
.legal-placeholder p,
.faq-aside p {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
}

.section-heading--light h2,
.section-heading--light p,
.content-section--blue .section-heading h2,
.content-section--blue .section-heading p {
  color: var(--white);
}

.centered-copy {
  max-width: 980px;
  margin: 50px auto 0;
  text-align: center;
}

.centered-copy p {
  margin: 0 0 20px;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 650px);
  align-items: start;
  gap: 82px;
}

.split-content--bio {
  /* a segunda faixa era minmax(460px, 640px): por ser max fixo, o grid a
     enchia ate 640px antes de sobrar espaco para o texto, que caia a
     270px em telas de 1024px. Fracionaria, as duas encolhem juntas. */
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
}

.split-content--article {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
}

.prose {
  font-size: 18px;
  line-height: 1.72;
}

.prose--blue {
  color: #31589f;
}

.prose p {
  margin: 0 0 24px;
  font-weight: 500;
}

.prose h3 {
  margin: 46px 0 16px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.prose--article h2 {
  max-width: 850px;
}

.framed-image {
  position: relative;
  margin: 0;
  padding: 0 34px 34px 0;
}

.framed-image::before,
.framed-image::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 74px;
  height: 74px;
  background: var(--green);
}

.framed-image::before {
  top: -18px;
  left: -18px;
}

.framed-image::after {
  right: 12px;
  bottom: 14px;
  background: var(--yellow);
}

.framed-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

.framed-image--compact {
  max-width: 500px;
  margin-inline: auto;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.fact-card {
  min-height: 210px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--blue);
  background: var(--cream);
  border-top: 8px solid var(--yellow);
  box-shadow: 0 14px 30px rgba(0, 56, 100, 0.09);
}

.fact-card span {
  color: var(--green-text);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-card strong {
  font-size: 23px;
  line-height: 1.25;
}

.statement-band {
  padding: 72px 0;
  color: var(--blue);
  background: var(--yellow);
}

.statement-band--blue {
  color: var(--white);
  background: var(--blue-section);
}

.statement-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.statement-band p {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.article-aside blockquote {
  margin: 56px 0 0;
  padding: 34px;
  color: var(--blue);
  background: var(--yellow);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.mission-panel,
.next-step-card,
.external-action-card {
  padding: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 70px;
  background: var(--white);
  border-left: 12px solid var(--yellow);
  box-shadow: var(--shadow);
}

.mission-panel h2,
.next-step-card h2,
.external-action-card h2 {
  margin-bottom: 0;
}

.pillars--internal {
  margin-top: 64px;
}

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

.plan-card {
  min-height: 100%;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  overflow: hidden;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 42, 84, 0.18);
}

.plan-card-number {
  padding: 30px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--blue);
  background: var(--yellow);
  font-size: 31px;
  font-weight: 900;
}

.plan-card-body {
  padding: 34px 36px 38px;
}

.plan-card h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
}

.plan-card-slogan {
  margin: 0 0 16px;
  color: var(--green-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.plan-card-intro {
  margin: 0 0 14px;
  font-weight: 700;
}

.plan-card ul,
.check-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.plan-card li,
.check-list li {
  position: relative;
  padding-left: 27px;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.45;
}

.plan-card li::before,
.check-list li::before {
  content: "↑";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--green-text);
  font-weight: 900;
}

.next-step-card {
  background: var(--cream);
}

.next-step-card .button,
.external-action-card .button {
  justify-self: end;
}

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

.priority-detail-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: var(--shadow);
}

.priority-detail-image {
  display: block;
  overflow: hidden;
}

.priority-detail-image img {
  width: 100%;
  aspect-ratio: 488 / 384;
  object-fit: cover;
  transition: transform 240ms ease;
}

.priority-detail-image:hover img {
  transform: scale(1.03);
}

.priority-detail-body {
  padding: 32px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.priority-detail-body > span {
  color: var(--green-text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.priority-detail-body h3 {
  margin: 14px 0 16px;
  color: var(--blue);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.priority-detail-body p {
  margin: 0 0 25px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.text-arrow {
  margin-top: auto;
  color: var(--green-text);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-arrow::after {
  content: " →";
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  align-items: start;
  gap: 80px;
}

.article-media-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-media-card img {
  width: 100%;
  height: auto;
}

.article-media-card > div {
  padding: 34px;
}

.article-media-card h3 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.first-days-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 90px;
}

.first-days-badge {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.first-days-badge strong {
  font-size: clamp(100px, 12vw, 190px);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.first-days-badge span {
  margin-top: 24px;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
}

.numbered-actions {
  margin: 46px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.numbered-actions li {
  min-height: 96px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 56, 100, 0.08);
}

.numbered-actions span {
  align-self: stretch;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: var(--yellow);
  font-size: 24px;
  font-weight: 900;
}

.numbered-actions p {
  margin: 0;
  padding: 24px 30px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 70px;
}

.transparency-grid article {
  min-height: 220px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--blue-section);
  border-bottom: 10px solid var(--yellow);
}

.transparency-grid span {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.transparency-grid h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
  text-transform: uppercase;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.category-pills a {
  padding: 13px 18px;
  color: var(--blue);
  background: var(--white);
  border: 2px solid rgba(0, 92, 170, 0.45);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.category-pills a:hover {
  color: var(--yellow);
  background: var(--green-cta);
  border-color: var(--green-cta);
}

.news-empty {
  min-height: 390px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  border: 4px dashed rgba(0, 92, 170, 0.18);
}

.news-empty-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-cta);
  border-radius: 50%;
  font-size: 42px;
  font-weight: 900;
}

.news-empty h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.news-empty p {
  max-width: 700px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

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

.social-channel-grid a {
  min-height: 210px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--blue);
  background: var(--yellow);
  transition: transform 180ms ease, background-color 180ms ease;
}

.social-channel-grid a:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.social-channel-grid strong {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-channel-grid span {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
  align-items: start;
  gap: 80px;
}

.form-side-card {
  margin-top: 42px;
  padding: 32px;
  display: grid;
  gap: 8px;
  color: var(--blue);
  background: var(--yellow);
}

.form-side-card strong {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-side-card span {
  font-weight: 700;
}

.campaign-form {
  padding: 48px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.campaign-form label > span,
.campaign-form legend {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-form input[type="text"],
.campaign-form input[type="tel"],
.campaign-form input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--text);
  background: #f8fafc;
  border: 2px solid rgba(0, 92, 170, 0.45);
  border-radius: 0;
  font: inherit;
}

.campaign-form input:focus {
  border-color: var(--green);
  outline: 3px solid var(--text);
  outline-offset: 2px;
}

.campaign-form fieldset {
  margin: 36px 0;
  padding: 0;
  border: 0;
}

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

.choice-grid label {
  min-height: 58px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  cursor: pointer;
}

.choice-grid input {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.choice-grid label > span {
  margin: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.campaign-form .button {
  width: 100%;
}

.form-status {
  margin: 18px 0 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}

.donation-teaser {
  padding: 85px 0;
  color: var(--blue);
  background: var(--blue-section);
}

.donation-teaser .section-marker,
.donation-teaser h2,
.donation-teaser p {
  color: var(--white);
}

.donation-teaser-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
}

.donation-teaser h2 {
  margin-bottom: 12px;
}

.donation-page-card {
  padding: 72px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 72px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.donation-number {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--green-cta);
  font-size: clamp(92px, 10vw, 160px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.donation-page-card .button {
  margin-top: 34px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 80px;
}

.faq-aside {
  position: sticky;
  top: 40px;
}

.faq-aside .button {
  margin-top: 34px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-left: 7px solid var(--yellow);
  box-shadow: 0 10px 24px rgba(0, 56, 100, 0.08);
}

.faq-item summary {
  position: relative;
  min-height: 76px;
  padding: 24px 72px 24px 28px;
  display: flex;
  align-items: center;
  color: var(--blue);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--green-cta);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  transform: translateY(-50%);
}

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

.faq-item > div {
  padding: 0 28px 28px;
}

.faq-item p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.legal-placeholder {
  max-width: 920px;
  padding: 62px;
  background: var(--white);
  border-left: 12px solid var(--yellow);
  box-shadow: var(--shadow);
}

.legal-placeholder p + p {
  margin-top: 20px;
}

.not-found-card {
  padding: 70px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.not-found-card > strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
  text-shadow: 8px 8px 0 var(--green);
}

.not-found-card h2 {
  margin: 54px 0 34px;
  color: var(--blue);
  font-size: 36px;
  text-transform: uppercase;
}

.participate--internal {
  padding: 82px 0;
}

.participate--internal h2 {
  font-size: clamp(38px, 4.5vw, 60px);
}

.is-placeholder {
  opacity: 0.88;
}

@media (max-width: 1230px) {
  .plan-subnav,
  .article-siblings,
  .faq-aside {
    position: static;
  }

  .page-hero {
    min-height: 460px;
    background-position: 58% top;
  }

  .page-hero-inner {
    min-height: 460px;
  }

  .split-content,
  .article-layout,
  .form-layout,
  .faq-layout {
    gap: 50px;
  }

  .facts-grid,
  .transparency-grid,
  .social-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .plan-card-number {
    padding-inline: 12px;
  }

  .donation-page-card {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

@media (max-width: 940px) {
  .page-hero {
    /* No mobile o retrato sumia: a arte e panoramica (1920x804) e, num box
       estreito, o cover mostrava so a faixa central de textura — por isso a
       regra antiga trocava a foto pela textura pura. Aqui vale a mesma
       solucao do hero da home: texto em cima sobre a textura, retrato numa
       faixa ao pe. Textura e recorte usam a MESMA altura em background-size
       para o padrao ficar na mesma escala dos dois lados da emenda. */
    min-height: 0;
    background-image: url("../images/TEXTURA-HERO.png");
    background-position: left top;
    background-size: auto 400px;
  }

  .page-hero::before {
    /* A lavagem da contraste ao texto, mas precisa chegar a zero antes da
       faixa: senao o padrao mudaria de forca exatamente na emenda. Medida a
       partir da base, em px, para nao depender da altura do hero, que varia
       com o tamanho do titulo de cada pagina. */
    background: linear-gradient(to top,
      rgba(233, 242, 248, 0) 0,
      rgba(233, 242, 248, 0) 400px,
      rgba(233, 242, 248, 0.86) 470px);
  }

  .page-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 400px;
    background-image: image-set(url("../images/HELIO-HERO-MOBILE.webp") type("image/webp"),
                                url("../images/HELIO-HERO-MOBILE.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: auto 400px;
  }

  .page-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 0;
    padding-bottom: 470px;
    align-items: center;
    text-align: center;
  }

  .breadcrumb,
  .section-heading--center .section-marker {
    justify-content: center;
  }

  .plan-subnav-inner {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: thin;
  }

  .plan-subnav a {
    min-width: 185px;
  }

  .article-siblings {
    overflow-x: auto;
    justify-content: flex-start;
    padding-inline: 20px;
  }

  .article-siblings > span,
  .article-siblings a {
    min-width: max-content;
  }

  .content-section {
    padding: 90px 0;
  }

  .split-content,
  .split-content--bio,
  .split-content--article,
  .article-layout,
  .form-layout,
  .faq-layout,
  .first-days-layout,
  .donation-page-card {
    grid-template-columns: 1fr;
  }

  .framed-image,
  .article-media-card {
    max-width: 620px;
    margin-inline: auto;
  }

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

  .mission-panel,
  .next-step-card,
  .external-action-card,
  .donation-teaser-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .next-step-card .button,
  .external-action-card .button {
    justify-self: start;
  }

  .statement-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .priority-detail-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }

  .first-days-badge {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .campaign-form {
    padding: 38px;
  }

  .donation-number {
    max-width: 360px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .page-hero,
  .page-hero-inner {
    min-height: 0;
  }

  .page-hero {
    background-size: auto 340px;
  }

  .page-hero::before {
    background: linear-gradient(to top,
      rgba(233, 242, 248, 0) 0,
      rgba(233, 242, 248, 0) 340px,
      rgba(233, 242, 248, 0.86) 400px);
  }

  .page-hero::after {
    height: 340px;
    background-size: auto 340px;
  }

  .page-hero-inner {
    padding-top: 34px;
    padding-bottom: 400px;
  }

  .breadcrumb {
    margin-bottom: 24px;
    font-size: 12px;
  }

  .page-kicker {
    font-size: 14px;
  }

  .page-hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .page-hero-intro {
    font-size: 17px;
  }

  .content-section {
    padding: 72px 0;
  }

  .section-heading h2,
  .prose h2,
  .mission-panel h2,
  .next-step-card h2,
  .external-action-card h2,
  .form-intro h2,
  .donation-teaser h2,
  .donation-page-card h2,
  .legal-placeholder h2,
  .faq-aside h2,
  .content-title {
    font-size: 34px;
  }

  .section-heading p,
  .centered-copy,
  .mission-panel p,
  .next-step-card p,
  .external-action-card p,
  .form-intro > p,
  .donation-teaser p,
  .donation-page-card p,
  .legal-placeholder p,
  .faq-aside p,
  .prose {
    font-size: 16px;
  }

  .facts-grid,
  .transparency-grid,
  .social-channel-grid,
  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .fact-card,
  .transparency-grid article,
  .social-channel-grid a {
    min-height: 170px;
  }

  .statement-band {
    padding: 58px 0;
  }

  .statement-band p {
    font-size: 31px;
  }

  .mission-panel,
  .next-step-card,
  .external-action-card,
  .campaign-form,
  .legal-placeholder,
  .not-found-card,
  .donation-page-card {
    padding: 32px;
  }

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

  .plan-card-number {
    padding: 24px 8px;
    font-size: 22px;
  }

  .plan-card-body {
    padding: 26px 22px 30px;
  }

  .plan-card h3 {
    font-size: 22px;
  }

  .article-media-card > div,
  .priority-detail-body {
    padding: 26px;
  }

  .numbered-actions li {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .numbered-actions p {
    padding: 20px;
    font-size: 15px;
  }

  .news-empty {
    min-height: 320px;
    padding: 34px 24px;
  }

  .news-empty h3 {
    font-size: 23px;
  }

  .campaign-form {
    padding: 28px 22px;
  }

  .faq-item summary {
    min-height: 70px;
    padding: 20px 62px 20px 20px;
    font-size: 15px;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-item > div {
    padding: 0 20px 22px;
  }

  .article-aside blockquote {
    padding: 26px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .external-action-card .button {
    width: 100%;
    min-height: 62px;
    padding-block: 12px;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }
}

.page-hero h1,
.external-action-card h2 {
  overflow-wrap: anywhere;
}

.external-action-card > * {
  min-width: 0;
}

@media (max-width: 640px) {
  .page-transparencia .page-hero h1 {
    font-size: 39px;
    letter-spacing: -0.04em;
  }
}

/* ============================================================
   Consentimento LGPD e honeypot anti-bot
   ============================================================ */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-box {
  display: grid;
  gap: 14px;
  padding: 20px 22px;
  background: #f8fafc;
  border: 2px solid rgba(0, 92, 170, 0.45);
  border-radius: 4px;
}

.consent-box label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.consent-box input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--green-dark);
  cursor: pointer;
}

.consent-box span {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.consent-main span strong { font-weight: 700; }

.consent-box a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-optional span { color: #4a5568; }

.consent-box input:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 3px;
}

.field-error {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #9d2226;
}

.campaign-form input[aria-invalid="true"] {
  border-color: #9d2226;
}

@media (max-width: 640px) {
  .consent-box { padding: 16px 16px; }
  .consent-box span { font-size: 14.5px; }
}

/* ============================================================
   Correções de toque e navegação em telas pequenas
   (auditoria de responsividade)
   ============================================================ */
@media (max-width: 640px) {
  /* Os 6 ícones sociais exigiam 349px num container de 288px: encolhiam
     para 36px, abaixo do mínimo de 44px, e se encostavam. */
  .social-links {
    flex-wrap: wrap;
    gap: 10px;
  }
  .social-links a {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  /* Links do rodapé tinham ~18px de altura tocável. */
  .footer-nav {
    gap: 2px;
  }
  .footer-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    width: 100%;
  }
  .footer-brand p a {
    display: inline-block;
    padding: 9px 2px;
  }

  /* Título quebrava no meio da palavra ("DESENVOLVIME/NTO"): o piso do
     clamp era grande demais para 288px de container. */
  .page-hero h1 {
    font-size: clamp(30px, 9vw, 48px);
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

@media (max-width: 940px) {
  /* A subnav rolava na horizontal sem nenhuma pista visual: o usuário via
     1,5 item e não descobria que Prioridades e Transparência existiam. */
  .plan-subnav {
    position: relative;
  }
  .plan-subnav-inner {
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .plan-subnav a {
    min-width: 160px;
    scroll-snap-align: start;
  }
  .plan-subnav::after {
    content: "";
    position: absolute;
    inset-block: 0;
    right: 0;
    width: 44px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--white));
    pointer-events: none;
  }
}

/* ---------------------------------------------------------------------------
   WhatsApp da campanha — (95) 97400-9222
   Canal direto ao lado dos CTAs existentes. Usa o azul da marca (branco sobre
   #005caa = 6,75:1) em vez do verde do WhatsApp, que não passa contraste com
   texto branco; o ícone é que faz o reconhecimento.
   --------------------------------------------------------------------------- */
.button-whatsapp {
  gap: 10px;
  color: var(--white);
  background: var(--blue);
}

.button-icon {
  width: 20px;
  height: 20px;
  flex: none;
  fill: currentColor;
}

.participate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Cartão de contato direto na página Quero Ajudar */
.form-whatsapp-card {
  margin-top: 22px;
  padding: 28px 32px;
  display: grid;
  gap: 14px;
  justify-items: start;
  color: var(--white);
  background: var(--blue);
}

.form-whatsapp-card > strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.form-whatsapp-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.form-whatsapp-card .wa-number {
  font-weight: 900;
  white-space: nowrap;
}

.form-whatsapp-card .button {
  min-height: 54px;
  color: var(--blue);
  background: var(--yellow);
}

@media (max-width: 640px) {
  .participate-actions {
    display: grid;
    gap: 12px;
  }

  .form-whatsapp-card {
    padding: 24px;
  }

  .form-whatsapp-card .button {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
   Formulário de cadastro: erro, desafio da Cloudflare e página de confirmação
   --------------------------------------------------------------------------- */
.form-status--erro {
  /* #b3261e sobre branco = 5,9:1 — não depende só da cor: o texto já diz
     o que houve. */
  color: #b3261e;
}

.turnstile-box {
  margin: 22px 0 4px;
  min-height: 65px;
}

.turnstile-box[hidden] {
  display: none;
}

.obrigado-card {
  max-width: 760px;
  padding: 44px 48px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.obrigado-card h2 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
}

.obrigado-acoes {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 640px) {
  .obrigado-card {
    padding: 30px 24px;
  }

  .obrigado-acoes {
    display: grid;
    gap: 12px;
  }

  .obrigado-acoes .button {
    width: 100%;
  }
}
