    :root {
      /* Blue estrutural: logo negativa não traz azul; mantido o navy do projeto */
      --navy: #070043;
      --navy-soft: #12086b;
      /* Verdes oficiais extraídos da logo */
      --lime: #d3d800;          /* seta inferior (lime) */
      --green: #88bd2e;         /* seta superior (leaf): accent em fundo escuro/CTA */
      --green-ink: #4d7a18;     /* verde escurecido para texto sobre claro (passa WCAG AA) */
      --text: #11183f;
      --muted: #64708d;
      --line: #e2e7f1;
      --off-white: #f4f7fb;
      --white: #ffffff;
      --shadow: 0 24px 60px rgba(7, 0, 67, 0.14);
      --shadow-card: 0 14px 34px rgba(17, 24, 63, 0.06);
      --shadow-card-hover: 0 22px 50px rgba(17, 24, 63, 0.13);
      --radius: 8px;
      --container: 1180px;
      --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .gp-lp2-root {
      width: 100%;
      overflow: visible;
      background: var(--white);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      background: var(--white);
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(136, 189, 46, 0.7);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(7, 0, 67, 0.92);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
    }

    .brand-logo {
      height: 100px;
      width: auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .main-nav a {
      border-bottom: 2px solid transparent;
      padding: 8px 0;
      transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
    }

    .main-nav a:hover {
      color: var(--lime);
      border-bottom-color: var(--lime);
    }

    .header-cta,
    .button-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border: 0;
      border-radius: var(--radius);
      background: var(--green);
      color: var(--navy);
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 900;
      line-height: 1.2;
      text-align: center;
      text-transform: uppercase;
      transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    }

    .header-cta {
      min-height: 42px;
      padding: 0 20px;
      text-transform: none;
    }

    .button-primary {
      width: 100%;
      padding: 0 20px;
    }

    .header-cta:hover,
    .button-primary:hover {
      background: var(--lime);
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(136, 189, 46, 0.3);
    }

    .hero {
      position: relative;
      overflow: hidden;
      color: var(--white);
      background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      opacity: 0.22;
      background:
        radial-gradient(circle at 20% 35%, rgba(136, 189, 46, 0.35) 0 2px, transparent 3px),
        radial-gradient(circle at 36% 58%, rgba(255, 255, 255, 0.28) 0 2px, transparent 3px),
        linear-gradient(115deg, transparent 0 22%, rgba(255, 255, 255, 0.15) 22.2% 22.5%, transparent 22.7%),
        linear-gradient(35deg, transparent 0 34%, rgba(255, 255, 255, 0.13) 34.2% 34.5%, transparent 34.7%),
        linear-gradient(155deg, transparent 0 50%, rgba(255, 255, 255, 0.12) 50.2% 50.5%, transparent 50.7%);
      background-size: 260px 260px, 320px 320px, 100% 100%, 100% 100%, 100% 100%;
    }

    .hero-grid {
      position: relative;
      display: grid;
      gap: 28px;
      padding: 72px 0 48px;
    }

    .hero-copy {
      z-index: 2;
      max-width: 620px;
    }

    .hero-media {
      position: relative;
      min-height: 320px;
      overflow: hidden;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 35% center;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--green-ink);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .hero .eyebrow,
    .municipalism .eyebrow {
      color: var(--lime);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 720px;
      margin-bottom: 24px;
      font-size: clamp(2.55rem, 6vw, 5.25rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .hero h1 {
      font-size: clamp(2.45rem, 8vw, 3.6rem);
      line-height: 1.02;
    }

    .hero h1 span {
      display: block;
    }

    h1 span,
    .green-text {
      color: var(--green);
    }

    .hero-copy p {
      margin-bottom: 18px;
    }

    .hero-form {
      z-index: 3;
    }

    .hero-numbers {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      max-width: 650px;
      margin-top: 36px;
    }

    .hero-number {
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius);
      padding: 18px;
      background: rgba(255, 255, 255, 0.08);
    }

    .hero-number strong {
      display: block;
      color: var(--green);
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      line-height: 1;
    }

    .hero-number span {
      display: block;
      margin-top: 8px;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.9rem;
      line-height: 1.35;
    }

    .lead-form {
      border-radius: var(--radius);
      padding: 32px;
      background: var(--white);
      color: var(--text);
      box-shadow: var(--shadow);
    }

    .form-honey {
      display: none;
    }

    .lead-form h2 {
      margin-bottom: 22px;
      font-size: clamp(1.35rem, 2vw, 1.8rem);
      line-height: 1.15;
    }

    .form-field {
      margin-bottom: 16px;
    }

    .form-field label {
      display: block;
      margin-bottom: 7px;
      color: var(--text);
      font-size: 0.95rem;
      font-weight: 800;
    }

    .form-field input {
      width: 100%;
      min-height: 50px;
      border: 1px solid #cfd6e5;
      border-radius: 6px;
      padding: 12px 14px;
      color: var(--text);
      background: var(--white);
    }

    .form-field input:focus {
      border-color: var(--green);
    }

    .checkbox-field {
      display: grid;
      grid-template-columns: 20px 1fr;
      gap: 10px;
      align-items: start;
      margin: 6px 0 18px;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.35;
    }

    .checkbox-field input {
      width: 18px;
      height: 18px;
      margin: 0;
      accent-color: var(--green);
    }

    .form-note,
    .status-message {
      margin: 14px 0 0;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.45;
      text-align: center;
    }

    .status-message {
      display: none;
      border-radius: 6px;
      padding: 12px;
      background: #ecfaea;
      color: #176b10;
      font-weight: 700;
      text-align: left;
    }

    .status-message.is-visible {
      display: block;
    }

    .section {
      padding: 96px 0;
    }

    .section-off {
      background: var(--off-white);
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 42px;
    }

    .section-heading.center {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }

    .section-heading h2 {
      margin-bottom: 16px;
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .section-heading p {
      color: var(--muted);
      font-size: 1.08rem;
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .result-card,
    .project-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow-card);
      transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    }

    .result-card:hover,
    .project-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card-hover);
    }

    .result-card {
      display: flex;
      flex-direction: column;
      min-height: 380px;
      padding: 30px 28px;
    }

    .result-number {
      display: flex;
      align-items: flex-end;
      min-height: 92px;
      margin-bottom: 4px;
      color: var(--green-ink);
      font-size: clamp(2.4rem, 3vw, 3.1rem);
      font-weight: 900;
      line-height: 0.96;
      letter-spacing: -0.01em;
      text-wrap: balance;
    }

    .result-card h3 {
      position: relative;
      margin-bottom: 14px;
      padding-top: 18px;
      color: var(--navy);
      font-size: 1.18rem;
      line-height: 1.22;
    }

    .result-card h3::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 36px;
      height: 3px;
      border-radius: 2px;
      background: var(--green);
    }

    .project-card h3 {
      margin-bottom: 12px;
      color: var(--navy);
      font-size: 1.25rem;
      line-height: 1.18;
    }

    .result-card p,
    .project-card p,
    .project-card li {
      color: var(--muted);
    }

    .result-card > p:not(.small-note) {
      font-size: 0.96rem;
      line-height: 1.55;
    }

    .small-note {
      margin-top: auto;
      padding-top: 20px;
      color: #7c86a0;
      font-size: 0.78rem;
      line-height: 1.4;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .project-card {
      padding: 32px;
    }

    .project-kicker {
      display: inline-block;
      margin-bottom: 16px;
      border-left: 4px solid var(--green);
      padding-left: 12px;
      color: var(--green-ink);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .project-card ul {
      display: grid;
      gap: 8px;
      margin: 18px 0 0;
      padding-left: 20px;
    }

    .municipalism {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      color: var(--white);
    }

    .municipalism::before {
      content: "399";
      position: absolute;
      right: clamp(16px, 8vw, 120px);
      bottom: -40px;
      color: rgba(255, 255, 255, 0.06);
      font-size: clamp(8rem, 24vw, 22rem);
      font-weight: 900;
      line-height: 1;
      pointer-events: none;
    }

    .municipalism-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
      gap: 64px;
      align-items: center;
    }

    .municipalism-stat {
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius);
      padding: 42px;
      background: rgba(255, 255, 255, 0.06);
    }

    .municipalism-stat strong {
      display: block;
      color: var(--green);
      font-size: clamp(4.5rem, 12vw, 9rem);
      font-weight: 900;
      line-height: 0.9;
    }

    .municipalism-stat span {
      display: block;
      max-width: 340px;
      margin-top: 16px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 1.2rem;
      font-weight: 800;
      line-height: 1.35;
    }

    .municipalism-copy h2 {
      margin-bottom: 22px;
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.05;
    }

    .municipalism-copy p {
      color: rgba(255, 255, 255, 0.84);
      font-size: 1.08rem;
    }

    .statement {
      margin: 30px 0;
      border-left: 5px solid var(--green);
      padding-left: 22px;
      color: var(--white);
      font-size: clamp(1.45rem, 3vw, 2.2rem);
      font-weight: 900;
      line-height: 1.14;
    }

    .final-cta {
      background-image:
        linear-gradient(90deg, rgba(244, 247, 251, 0.72) 0%, rgba(244, 247, 251, 0.9) 42%, rgba(244, 247, 251, 0.98) 100%),
        url("./img/alexandre-curi-juntos.webp");
      background-position: center, left center;
      background-size: cover, auto 100%;
      background-repeat: no-repeat;
    }

    #projetos{
      background-image:
        linear-gradient(90deg, rgba(244, 247, 251, 0.98) 0%, rgba(244, 247, 251, 0.94) 52%, rgba(244, 247, 251, 0.48) 100%),
        url("./img/alexandre-curi-projetos.webp");
      background-position: center, calc(100% + 620px) center;
      background-size: cover, auto 118%;
      background-repeat: no-repeat;
    }

    .final-cta-inner {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(320px, 560px);
      gap: 58px;
      align-items: center;
    }

    .final-copy h2 {
      margin-bottom: 18px;
      color: var(--navy);
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.05;
    }

    .final-copy p {
      max-width: 540px;
      color: var(--muted);
      font-size: 1.12rem;
    }

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}
.footer-content {
  display: grid;
  gap: 16px;
}
.footer-content p,
.footer-content small {
  margin: 0;
  max-width: 940px;
}
.footer-logo {
  width: min(100%, 320px);
  height: auto;
}
.footer-content nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.footer-content a,
.footer-content span {
  color: var(--white);
  font-weight: 600;
}
.footer-content a:hover {
  color: var(--green);
}

.legal-content {
  max-width: 860px;
}
.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--text);
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.2;
}
.legal-content h3 {
  margin: 30px 0 10px;
  color: var(--text);
  font-size: clamp(1.18rem, 3vw, 1.55rem);
  line-height: 1.25;
}
.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  color: var(--muted);
}
.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-content a,
.contact-card a {
  color: var(--navy-soft);
  font-weight: 700;
}
.legal-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.legal-section .section-heading {
  display: none;
}
.legal-accordion {
  display: grid;
  gap: 8px;
}
.legal-panel {
  scroll-margin-top: 88px;
  background: #fbfcfe;
  border: 1px solid rgba(8, 4, 47, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.legal-panel summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 12px 16px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.legal-panel summary::-webkit-details-marker {
  display: none;
}
.legal-panel summary::after {
  content: "+";
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  color: var(--green-ink);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}
.legal-panel[open] summary::after {
  content: "-";
}
.legal-panel summary:focus-visible {
  outline: 3px solid rgba(44, 202, 3, 0.5);
  outline-offset: -3px;
}
.legal-panel summary span {
  padding-right: 28px;
  font-size: 0.95rem;
  font-weight: 900;
}
.legal-panel summary small {
  color: var(--muted);
  font-size: 0.76rem;
}
.legal-panel .legal-content,
.legal-contact-content {
  max-width: none;
  padding: 18px 16px 22px;
  border-top: 1px solid var(--line);
}
.legal-contact-content {
  padding-top: 18px;
}
.contact-page-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}
.contact-form {
  margin-top: 22px;
  padding: 24px;
}
.contact-card {
  padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.contact-card h2,
.contact-card h3 {
  margin-bottom: 18px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.contact-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-card li {
  display: grid;
  gap: 4px;
  color: var(--muted);
}
.contact-card strong {
  color: var(--text);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field label {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd6e5;
  border-radius: 6px;
  color: var(--text);
  background: var(--white);
  outline: none;
}

.field input {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 140px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--green);
}

.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.microcopy,
.form-message {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.form-message {
  color: var(--green-ink);
  font-weight: 700;
}

@media (min-width: 860px) {
  .contact-page-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

    /* Reveal-on-scroll (leve) */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
      will-change: opacity, transform;
    }

    .reveal.is-in {
      opacity: 1;
      transform: none;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
      .result-card:hover,
      .project-card:hover,
      .header-cta:hover,
      .button-primary:hover {
        transform: none;
      }
    }

    @media (max-width: 980px) {
      .header-inner {
        flex-wrap: wrap;
        padding: 14px 0;
      }
      .main-nav {
        order: 3;
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .final-cta-inner,
      .municipalism-inner {
        grid-template-columns: 1fr;
      }

      .results-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .site-header {
        position: static;
      }

      .brand-logo {
        height: 60px;
      }

      .header-cta {
        padding: 0 14px;
        font-size: 0.84rem;
      }

      .main-nav {
        font-size: 0.88rem;
      }

      #projetos {
        background-position: center, right top;
        background-size: cover, auto 520px;
      }

      .final-cta {
        background-position: center, left top;
        background-size: cover, auto 520px;
      }

      .hero-grid {
        padding: 32px 0 64px;
      }

      .section {
        padding: 64px 0;
      }

      .hero-numbers,
      .results-grid,
      .projects-grid {
        grid-template-columns: 1fr;
      }

      .lead-form,
      .project-card,
      .result-card,
      .municipalism-stat {
        padding: 24px;
      }

      .result-card {
        min-height: auto;
      }

      .municipalism-inner,
      .final-cta-inner {
        gap: 34px;
      }
    }

    @media (min-width: 980px) and (max-width: 1079px) {
      .hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 72px 0 48px;
      }

      .hero-form {
        width: min(100%, 520px);
        justify-self: center;
      }

      .hero-media {
        min-height: 380px;
      }
    }

    @media (min-width: 1080px) {
      .hero-grid {
        width: min(1360px, calc(100% - 32px));
        grid-template-columns: minmax(360px, 1fr) 330px minmax(260px, 420px);
        column-gap: 0;
        align-items: stretch;
        min-height: 650px;
        padding: 76px 0;
      }

      .hero-copy {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
        max-width: 680px;
        padding-right: 28px;
      }

      .hero-form {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 330px;
        align-self: stretch;
        border-radius: var(--radius) 0 0 var(--radius);
      }

      .hero-media {
        grid-column: 3;
        grid-row: 1;
        min-height: auto;
        align-self: stretch;
        border-radius: 0 var(--radius) var(--radius) 0;
      }

      .hero-media img {
        object-position: center;
      }
    }

    @media (max-width: 420px) {
      .header-inner {
        gap: 12px;
      }

      .header-cta {
        width: 100%;
      }

      .main-nav {
        justify-content: flex-start;
      }

      .hero-grid {
        padding-top: 52px;
      }

      #projetos,
      .final-cta {
        background-size: cover, auto 460px;
      }
    }
.lp-video-short {
  width: 100%;
  padding: clamp(40px, 6vw, 80px) 20px;
  display: flex;
  justify-content: center;
  background: transparent;
}

.lp-video-short iframe {
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

@media (max-width: 480px) {
  .lp-video-short {
    padding: 32px 16px;
  }

  .lp-video-short iframe {
    width: min(100%, 340px);
    border-radius: 20px;
  }
}
