@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* ==================== FONTE ==================== */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/anton.woff2) format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/inter.woff2) format("woff2");
}

/* ==================== RESET / TOKENS ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --green-900: #122e1c;
  --green-850: #163a22;
  --green-800: #1e5631;
  --green-700: #204d2b;
  --green-600: #2e7d32;
  --green-500: #3c8c3c;
  --green-400: #4e8b3f;
  --lime: #8bc53f;
  --lime-bright: #a4d94b;
  --lime-soft: #e8f4d6;
  --white: #ffffff;
  --ink: #15201a;
  --muted: #5a6b5f;
  --paper: #f4f6f2;
  --yellow: #fdb913;
  --blue: #0a4da6;
  --shadow: 0 18px 45px -18px rgba(12, 40, 20, 0.45);
  --radius: 18px;
  --wrap: 1180px;
  --header-h: 73px;
  --disp: "Poppins", system-ui, -apple-system, sans-serif;
  --body: "Poppins", system-ui, -apple-system, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1 {
  font-family: var(--disp);
  font-weight: 900;
}
h2 {
  font-family: var(--disp);
  font-weight: 800;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

/* Tipografia display estilo cartaz */
.display {
  font-family: var(--disp);
  font-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.5px;
  font-weight: 800;
}
.eyebrow {
  font-family: var(--disp);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-600);
  font-size: clamp(0.8rem, 2vw, 1rem);
}

/* ==================== BOTÕES ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--disp);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 1.02rem;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.97);
}
.btn-lime {
  background: var(--lime);
  color: var(--green-900);
}
.btn-white {
  background: var(--white);
  color: var(--green-800);
}
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--white);
}
.btn-outline.heroghost {
  color: var(--green-800);
}
.btn svg {
  width: 1.15em;
  height: 1.15em;
}

/* ==================== HEADER ==================== */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(18, 46, 28, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 6px solid var(--lime);
  transition: background 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 70px;
  transition: height 0.3s ease;
}
header.scrolled {
  background: rgba(18, 46, 28, 0.98);
}
header.scrolled .nav {
  height: 58px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand .num {
  font-family: var(--disp);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-900);
  background: var(--lime);
  border-radius: 10px;
  padding: 0.08em 0.32em;
  line-height: 1;
}
.brand .bname {
  font-family: var(--disp);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 0.9;
  color: #fff;
}
.brand .bname small {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--lime);
  text-transform: uppercase;
  margin-top: 3px;
}
.menu {
  display: flex;
  gap: 24px;
  margin-left: auto;
  align-items: center;
}
.menu a {
  color: #dcefd0;
  font-weight: 600;
  font-size: 0.93rem;
  position: relative;
  padding: 4px 0;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.2s;
}
.menu a:hover {
  color: #fff;
}
.menu a:hover::after {
  width: 100%;
}
.nav .btn {
  padding: 0.6em 1.1em;
  font-size: 0.9rem;
}
.burger {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  margin: 5px 0;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.2s ease;
}
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: #e9eae7;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(../images/hero.jpg) right center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(244, 246, 242, 0.97) 0%,
    rgba(244, 246, 242, 0.86) 30%,
    rgba(244, 246, 242, 0.45) 48%,
    rgba(244, 246, 242, 0) 62%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-text {
  max-width: 600px;
}
.hero-text > * {
  opacity: 0;
  animation: heroIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-text .eyebrow {
  animation-delay: 0.15s;
}
.hero-text h1 {
  animation-delay: 0.28s;
}
.hero-text .sub {
  animation-delay: 0.45s;
}
.hero-text .acts {
  animation-delay: 0.6s;
}
.hero-text .hero-badge {
  animation-delay: 0.75s;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-text .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.hero-text h1 {
  font-family: var(--disp);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--green-850);
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  text-shadow: 0 2px 20px rgba(244, 246, 242, 0.7);
}
.hero-text h1 b {
  color: var(--green-500);
}
.hero-text .sub {
  margin-top: 20px;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  color: #2f3d34;
  font-weight: 500;
  max-width: 34ch;
}
.hero-text .sub b {
  color: var(--green-700);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background: var(--green-900);
  color: #fff;
  border-radius: 999px;
  padding: 9px 16px 9px 20px;
  font-family: var(--disp);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.05rem;
}
.hero-badge .n {
  display: flex;
  gap: 5px;
}
.hero-badge .n span {
  background: var(--lime);
  color: var(--green-900);
  width: 1.55em;
  height: 1.55em;
  display: grid;
  place-items: center;
  border-radius: 7px;
}
.hero .acts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* Faixa votar */
.voteband {
  background: var(--lime);
  color: var(--green-900);
  padding: 14px 0;
  text-align: center;
}
.voteband .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.voteband .t {
  font-family: var(--disp);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 1px;
}
.voteband .digits {
  display: flex;
  gap: 6px;
}
.voteband .digits span {
  background: var(--green-900);
  color: var(--lime);
  font-family: var(--disp);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  width: 1.55em;
  height: 1.55em;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

/* ==================== SEÇÃO GENÉRICA ==================== */
section {
  padding: 78px 0;
  position: relative;
}
.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}
.sec-head h2 {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  color: var(--green-800);
  line-height: 1;
}
.sec-head p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* Skyline divisória */
.skyline {
  display: block;
  width: 100%;
  height: 38px;
  color: var(--green-800);
}
.skyline.flip {
  transform: scaleY(-1);
}

/* ==================== NÚMEROS ==================== */
.impact {
  background: var(--green-850);
  color: #fff;
}
.impact .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(164, 217, 75, 0.25);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.stat:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    160deg,
    rgba(164, 217, 75, 0.12),
    rgba(255, 255, 255, 0.02)
  );
}
.stat .n {
  font-family: var(--disp);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--lime-bright);
  line-height: 1;
}
.stat .l {
  margin-top: 8px;
  font-weight: 600;
  color: #dcefd0;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== SOBRE ==================== */
.about .cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}
.about .lead {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1.4;
}
.about p {
  color: #3f4c44;
  margin-top: 14px;
}
.about .quote {
  margin-top: 26px;
  border-left: 5px solid var(--lime);
  background: var(--lime-soft);
  padding: 18px 20px;
  border-radius: 0 14px 14px 0;
  font-family: var(--disp);
  text-transform: uppercase;
  color: var(--green-800);
  font-size: 1.25rem;
  line-height: 1.1;
}
.about .photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2/2;
  background: var(--green-850);
}
.about .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.about .photo:hover img {
  transform: scale(1.05);
}

/* ==================== PILARES / OBRAS ==================== */
.pillars {
  background: var(--paper);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid #cdddbf;
  transition: transform 0.18s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
}
.card .thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(150deg, var(--green-600), var(--green-800));
}
.card:nth-child(2) .thumb {
  background: linear-gradient(150deg, var(--green-500), var(--green-700));
}
.card:nth-child(3) .thumb {
  background: linear-gradient(150deg, var(--green-700), var(--green-900));
}
.card:nth-child(4) .thumb {
  background: linear-gradient(150deg, var(--green-500), var(--green-800));
}
.card:nth-child(5) .thumb {
  background: linear-gradient(150deg, var(--green-600), var(--green-850));
}
.card:nth-child(6) .thumb {
  background: linear-gradient(150deg, var(--green-400), var(--green-700));
}
.card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.card .thumb svg {
  width: 52px;
  height: 52px;
  opacity: 0.85;
}
.card .thumb .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--lime);
  color: var(--green-900);
  font-family: var(--disp);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 0.3em 0.7em;
  border-radius: 6px;
}
.card .body {
  padding: 20px;
}
.card .body h3 {
  font-family: var(--disp);
  text-transform: uppercase;
  color: var(--green-800);
  font-size: 1.25rem;
  line-height: 1;
}
.card .body p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.95rem;
}
.card .body .ph-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: #93a396;
  font-style: italic;
}

/* ==================== VOZ DA COMUNIDADE (FORM) ==================== */
.voice {
  background: linear-gradient(180deg, var(--green-850), var(--green-900));
  color: #fff;
}
.voice .sec-head h2 {
  color: #fff;
}
.voice .sec-head p {
  color: #cfe6c2;
}
.voice .panel {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(164, 217, 75, 0.28);
  border-radius: 22px;
  padding: 30px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
  color: #e6f3da;
  font-size: 0.92rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
}
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.voice .submit {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 6px;
}
.voice .note {
  text-align: center;
  color: #a9c69a;
  font-size: 0.85rem;
  margin-top: 14px;
}

/* ==================== AGENDA ==================== */
.agenda .list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.event {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1.5px solid #cdddbf;
  border-radius: 16px;
  padding: 18px 22px;
}
.event .date {
  flex: 0 0 auto;
  text-align: center;
  background: var(--green-800);
  color: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 74px;
}
.event .date .d {
  font-family: var(--disp);
  font-size: 1.7rem;
  line-height: 1;
}
.event .date .m {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--lime-bright);
}
.event .info h3 {
  font-size: 1.08rem;
  color: var(--green-800);
}
.event .info p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 2px;
}

/* ==================== PROJETOS DE LEI ==================== */
.laws {
  background: var(--lime-soft);
}
.law-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.law-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #c4d9b3;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease;
}
.law-card:hover {
  transform: translateY(-4px);
}
.law-card .pl {
  font-family: var(--disp);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-600);
  font-size: 0.9rem;
}
.law-card h3 {
  font-family: var(--disp);
  text-transform: uppercase;
  color: var(--green-800);
  font-size: 1.3rem;
  line-height: 1.02;
}
.law-card p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}
.law-status {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.4em 0.8em;
  border-radius: 999px;
}
.st-tram {
  background: #fff3cf;
  color: #8a6d00;
}
.st-prot {
  background: #dbeefe;
  color: #0a4da6;
}
.st-aprov {
  background: #d8f0d1;
  color: #2e7d32;
}

/* ==================== CTA FINAL ==================== */
.finalcta {
  background: var(--green-900);
  color: #fff;
  text-align: center;
}
.finalcta h2 {
  font-family: var(--disp);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 0.95;
}
.finalcta h2 b {
  color: var(--lime-bright);
}
.finalcta p {
  color: #cfe6c2;
  max-width: 620px;
  margin: 16px auto 26px;
  font-size: 1.1rem;
}
.finalcta .acts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--green-850);
  color: #cfe6c2;
  padding: 52px 0 26px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}
footer .brand .bname {
  color: #fff;
}
footer .ftxt {
  margin-top: 14px;
  font-size: 0.92rem;
  color: #a9c69a;
  max-width: 340px;
}
footer h4 {
  font-family: var(--disp);
  text-transform: uppercase;
  color: var(--lime-bright);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
footer .flinks a {
  display: block;
  color: #cfe6c2;
  padding: 5px 0;
  font-size: 0.94rem;
}
footer .flinks a:hover {
  color: #fff;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}
.social-row svg {
  width: 20px;
  height: 20px;
}
.foot-num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.foot-num .num {
  font-family: var(--disp);
  font-size: 1.7rem;
  color: var(--green-900);
  background: var(--lime);
  border-radius: 10px;
  padding: 0.05em 0.3em;
  line-height: 1;
}
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #8fac81;
  text-align: center;
  line-height: 1.5;
}

/* ==================== REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 900px) {
  .menu {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--green-850);
    border-bottom: 3px solid var(--lime);
    padding: 10px 22px 20px;
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.3s ease;
  }
  .menu.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .menu a {
    padding: 13px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.35s ease,
      transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .menu.open a {
    opacity: 1;
    transform: none;
  }
  .menu.open a:nth-child(1) {
    transition-delay: 0.12s;
  }
  .menu.open a:nth-child(2) {
    transition-delay: 0.18s;
  }
  .menu.open a:nth-child(3) {
    transition-delay: 0.24s;
  }
  .menu.open a:nth-child(4) {
    transition-delay: 0.3s;
  }
  .menu.open a:nth-child(5) {
    transition-delay: 0.36s;
  }
  .menu.open a:nth-child(6) {
    transition-delay: 0.42s;
  }
  .menu .btn {
    margin-top: 14px;
    justify-content: center;
  }
  .burger {
    display: block;
  }
  .impact .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about .cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about .photo {
    aspect-ratio: 3/2;
  }
  .cards,
  .law-grid {
    grid-template-columns: 1fr;
  }
  .row2 {
    grid-template-columns: 1fr;
  }
  .fgrid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  section {
    padding: 56px 0;
  }
  /* no mobile a imagem preenche a tela: texto branco sobre gradiente escuro */
  .hero {
    align-items: flex-end;
  }
  .hero-bg {
    background-position: 74% center;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(18, 46, 28, 0.05) 0%,
      rgba(18, 46, 28, 0.34) 42%,
      rgba(18, 46, 28, 0.82) 100%
    );
  }
  .hero-inner {
    padding-bottom: 44px;
  }
  .hero-text {
    max-width: none;
  }
  .hero-text h1 {
    color: #fff;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
  }
  .hero-text h1 b {
    color: var(--lime-bright);
  }
  .hero-text .eyebrow {
    color: var(--lime-bright);
  }
  .hero-text .sub {
    color: #e9f5de;
  }
  .btn-outline.heroghost {
    color: #fff;
  }
}
@media (max-width: 560px) {
  /* mantém o candidato visível em telas estreitas */
  .hero-bg {
    background-position: 72% center;
  }
  .impact .grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 20px 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-bg {
    animation: none;
  }
  .hero-text > * {
    opacity: 1;
    animation: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
}
