:root {
  --blue: #073f7a;
  --blue-deep: #052d59;
  --green: #00AD4A;
  --green-dark: #087451;
  --lime: #FFB511;
  --ink: #102238;
  --muted: #637286;
  --paper: #f7f9fb;
  --white: #fff;
  --line: #dfe7ed;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 251, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 63, 122, 0.08);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  white-space: nowrap;
}
.brand img {
  display: block;
  width: 100px;
  height: 42px;
  object-fit: contain;
}
.footer-brand img {
  height: 48px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: "Space Grotesk";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -1px;
}
.brand-name {
  font-family: "Space Grotesk";
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.08em;
}
.brand-name strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--green);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin-left: auto;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: #637286;
  transition: 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}
.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.16s var(--ease),
    box-shadow 0.2s,
    background 0.2s;
}
.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--lime);
  background-color: var(--lime);
  color: #ffffff;
  font-size: 13px;
}
.nav-cta:hover {
    border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
}

.btn:hover{
    border: 1px solid #3155A4;
  background: #3155A4!important;
  color: #fff;
}

.nav-cta span,
.btn span {
  font-size: 20px;
  line-height: 0;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  margin: 5px;
}
.section {
  padding: 112px 0;
}
.hero {
  padding: 80px 0 108px;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 104, 71, 0.96) 0%,
      rgba(0, 104, 71, 0.78) 34%,
      rgba(0, 104, 71, 0.38) 58%,
      rgba(0, 104, 71, 0) 82%
    ),
    url("fundo.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 65px;
}
.eyebrow {
  margin: 0 0 21px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow.light {
  color: var(--lime);
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.06;
  margin: 0;
  color: var(--blue-deep);
}
h1 {
  max-width: 670px;
  font-size: clamp(43px, 5.2vw, 76px);
  letter-spacing: -0.065em;
}
h1 em {
  font-style: normal;
  color: var(--green);
}
.hero h1 {
  color: #fff;
}
.hero h1 em {
  color: var(--lime);
}
.hero .hero-lead {
  color: rgba(255, 255, 255, 0.88);
}
.hero .motto {
  color: #fff;
}
.hero-lead {
  max-width: 590px;
  margin: 30px 0;
  color: #556779;
  font-size: 17px;
}
.btn {
  min-height: 54px;
  padding: 0 23px;
  background: #FFB511;
  color: #fff;
}
.btn:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(11, 155, 108, 0.18);
  transform: translateY(-2px);
}
.btn:active {
  transform: scale(0.97);
}
.motto {
  margin: 25px 0 0;
  color: var(--blue);
  font-family: "Space Grotesk";
  font-size: 13px;
  font-weight: 600;
}
.hero-visual {
  position: relative;
  min-height: 510px;
}
.person-image-slot {
  position: absolute;
  z-index: 1;
  left: 14%;
  right: 8%;
  top: 36px;
  bottom: 0;
  min-height: 430px;
  border-radius: 44% 12% 38% 12%;
  transform: none;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.glass-circle {
  position: absolute;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.34),
    rgba(255, 255, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 12px 12px 25px rgba(255, 255, 255, 0.22),
    inset -12px -15px 28px rgba(0, 72, 54, 0.12),
    0 18px 45px rgba(0, 54, 38, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.person-image-slot img {
  position: relative;
  z-index: 1;
  display: block;
  width: 200%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.04);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.section-heading h2,
.values-copy h2,
.participate-copy h2,
.contact h2 {
  font-size: clamp(35px, 4.2vw, 58px);
  letter-spacing: -0.06em;
}
.section-copy {
  color: #536476;
  font-size: 17px;
}
.section-copy p {
  margin: 0 0 20px;
}
.manifesto {
  margin-top: 88px;
  padding: 37px 42px;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 20px;
}
.manifesto span,
.number {
  color: var(--green);
  font-family: "Space Grotesk";
  font-size: 20px;
  font-weight: 700;
}
.manifesto p {
  font-family: "Space Grotesk";
  font-size: 25px;
  line-height: 1.15;
  margin: 0;
  max-width: 480px;
}
.manifesto strong {
  font-family: "Space Grotesk";
  font-size: 28px;
  line-height: 0.9;
  text-align: right;
  color: var(--blue);
}
.manifesto i {
  color: var(--green);
  font-style: normal;
}
.proposals {
  background: #fff;
}
.centered {
  text-align: center;
}
.centered .section-intro {
  max-width: 600px;
  margin: 25px auto 0;
  color: var(--muted);
}
.proposal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 57px;
}
.proposal-card {
  position: relative;
  min-height: 315px;
  padding: 25px 25px 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s;
}
.proposal-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 30px rgba(7, 63, 122, 0.08);
}
.proposal-card.accent {
  background: var(--blue);
  color: #fff;
}
.proposal-card.accent h3 {
  color: #fff;
}
.proposal-card.accent p {
  color: #c3d4e5;
}
.proposal-card .number {
  position: absolute;
  right: 22px;
  top: 23px;
}
.icon {
  margin: 55px 0 22px;
  color: var(--green);
  font-size: 37px;
  line-height: 1;
}
.proposal-card h3 {
  font-size: 25px;
  letter-spacing: -0.05em;
}
.proposal-card p {
  margin-top: 15px;
  color: var(--muted);
  font-size: 14px;
}
.values {
  background: var(--lime);
}
.values-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}
.values-art {
  height: 460px;
  position: relative;
}
.values-rays {
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(7, 63, 122, 0.35);
  border-radius: 50%;
  transform: rotate(28deg);
}
.values-rays:after {
  content: "";
  position: absolute;
  inset: 43px;
  border: 1px solid rgba(7, 63, 122, 0.2);
  border-radius: 50%;
}
.values-circle {
  position: absolute;
  z-index: 1;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  box-shadow: 22px 22px 0 rgba(11, 155, 108, 0.75);
}
.values-circle span {
  font-family: "Space Grotesk";
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: 0.1em;
}
.values-circle span:nth-child(2),
.values-circle span:nth-child(4) {
  color: var(--lime);
  margin-left: 45px;
}
.values-copy > p:not(.eyebrow) {
  color: #38536b;
  max-width: 540px;
  margin: 27px 0;
}
.value-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 34px;
}
.value-list div {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(7, 63, 122, 0.3);
  padding-top: 12px;
}
.value-list b {
  color: var(--blue);
  font-family: "Space Grotesk";
  font-size: 18px;
}
.value-list span {
  color: #4f687c;
  font-size: 13px;
  line-height: 1.4;
}
.participate {
  background: var(--blue);
  color: #fff;
}
.participate-grid {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 100px;
  align-items: center;
}
.participate-copy h2 {
  color: #fff;
}
.participate-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: #bfd0e0;
  margin: 28px 0;
}
.participate blockquote {
  margin: 43px 0 0;
  padding-left: 23px;
  border-left: 4px solid var(--lime);
  font-family: "Space Grotesk";
  font-size: 26px;
  line-height: 1.12;
  color: #fff;
}
.participate blockquote strong {
  color: var(--lime);
}
.form-card {
  padding: 38px;
  background: #fff;
  color: var(--ink);
  box-shadow: 18px 18px 0 rgba(11, 155, 108, 0.9);
}
.form-kicker {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.form-card h3 {
  font-size: 32px;
  margin: 10px 0 25px;
}
.form-card form {
  display: grid;
  gap: 15px;
}
.form-card label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.form-card input:not([type="checkbox"]) {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  border: 1px solid var(--line);
  outline: none;
  color: var(--ink);
}
.form-card input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 155, 108, 0.12);
}
.form-card .check {
  display: flex;
  grid-template-columns: auto 1fr;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}
.form-card .check input {
  margin: 2px 0;
  accent-color: var(--green);
}
.form-card .btn {
  width: 100%;
  margin-top: 5px;
}
.form-status {
  font-size: 13px;
  color: var(--green);
  min-height: 20px;
  margin: 0;
}
.contact {
  background: #f1f5f8;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
}
.contact-grid > div:last-child {
  padding-bottom: 5px;
}
.contact-grid p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted);
  font-size: 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: var(--green);
  font-family: "Space Grotesk";
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid var(--green);
}
.site-footer {
  padding: 40px 0 20px;
  background: var(--blue-deep);
  color: #b9c9d8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding-bottom: 35px;
}
.footer-brand {
  color: #fff;
}
.footer-grid p {
  margin: 0;
  color: var(--lime);
  font-family: "Space Grotesk";
  font-size: 18px;
}
.footer-grid nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
}
.footer-grid nav a:hover {
  color: #fff;
}
.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.footer-bottom button {
  background: transparent;
  border: 0;
  color: #b9c9d8;
  text-decoration: underline;
  cursor: pointer;
}
.privacy-dialog {
  width: min(450px, calc(100% - 40px));
  padding: 35px;
  border: 0;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
}
.privacy-dialog::backdrop {
  background: rgba(5, 45, 89, 0.75);
}
.privacy-dialog h3 {
  font-size: 28px;
}
.privacy-dialog p {
  color: var(--muted);
  font-size: 14px;
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 15px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 26px;
  cursor: pointer;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay {
  transition-delay: 0.12s;
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
  }
  .main-nav a {
    font-size: 12px;
  }
  .hero-grid,
  .values-grid,
  .participate-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-visual {
    max-width: 560px;
    width: 100%;
    margin: auto;
  }
  .proposal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-art {
    max-width: 480px;
    width: 100%;
    margin: auto;
  }
  .participate-grid {
    gap: 65px;
  }
  .contact-grid {
    gap: 30px;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 34px, 600px);
  }
  .site-header {
    position: sticky;
  }
  .nav-wrap {
    height: 68px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    left: 17px;
    right: 17px;
    top: 67px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(7, 63, 122, 0.12);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta {
    display: none;
  }
  .section {
    padding: 75px 0;
  }
  .hero {
    padding: 62px 0 70px;
  }
  h1 {
    font-size: 43px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .person-image-slot {
    left: 10%;
    right: 4%;
    top: 30px;
    min-height: 340px;
  }
  .glass-circle {
    width: 78%;
    left: 11%;
    top: 7%;
  }
  .person-image-slot img {
    transform: scale(1.02);
  }
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .manifesto {
    grid-template-columns: 35px 1fr;
    padding: 25px 0;
  }
  .manifesto strong {
    grid-column: 2;
    text-align: left;
    font-size: 25px;
  }
  .proposal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 38px;
  }
  .proposal-card {
    min-height: 280px;
    padding: 18px;
  }
  .proposal-card h3 {
    font-size: 21px;
  }
  .proposal-card p {
    font-size: 13px;
  }
  .values-art {
    height: 350px;
  }
  .values-circle {
    width: 235px;
    height: 235px;
  }
  .values-circle span {
    font-size: 18px;
  }
  .value-list {
    grid-template-columns: 1fr;
  }
  .participate-grid {
    gap: 45px;
  }
  .form-card {
    padding: 27px 22px;
    box-shadow: 10px 10px 0 var(--green);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-grid nav {
    justify-content: flex-start;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
