:root {
  --navy-950: #041321;
  --navy-900: #071c33;
  --navy-800: #0c2947;
  --navy-700: #123a61;
  --blue: #0768db;
  --blue-dark: #0558bb;
  --blue-soft: #eaf3ff;
  --sky: #59b7ff;
  --yellow: #f7c948;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-100: #edf1f5;
  --gray-200: #dfe5ec;
  --gray-500: #657486;
  --gray-700: #344354;
  --text: #102337;
  --success: #16784a;
  --danger: #b42318;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px rgba(3, 20, 38, 0.13);
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  color: var(--white);
  background: rgba(4, 19, 33, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 13px 23px;
  border: 0;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(89, 183, 255, 0.6);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--yellow);
  font-size: 12px;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 32px rgba(7, 104, 219, 0.3);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 38px rgba(7, 104, 219, 0.38);
}

.hero {
  position: relative;
  min-height: 695px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(4, 19, 33, 0.97) 0%,
      rgba(4, 19, 33, 0.86) 46%,
      rgba(4, 19, 33, 0.5) 100%
    ),
    url("assets/bandeira-brasil-oficial.svg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 580px;
  height: 580px;
  content: "";
  border: 1px solid rgba(89, 183, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(89, 183, 255, 0.035),
    0 0 0 140px rgba(89, 183, 255, 0.018);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: -280px;
  left: 5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(7, 104, 219, 0.22), transparent 68%);
}

.hero-glow-two {
  right: 5%;
  bottom: -210px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(89, 183, 255, 0.13), transparent 67%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 80px;
  align-items: center;
  min-height: 695px;
  padding-block: 65px 78px;
}

.eyebrow,
.section-label {
  margin: 0 0 17px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow span {
  width: 27px;
  height: 2px;
  margin-right: 11px;
  background: var(--yellow);
}

.light {
  color: var(--sky);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 650px;
  margin-bottom: 23px;
  font-size: clamp(44px, 5.2vw, 72px);
}

h1 em {
  position: relative;
  display: inline-block;
  color: var(--yellow);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 78%;
  height: 7px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='200' height='8' viewBox='0 0 200 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6c45-7 125-2 196-4' stroke='%23F7C948' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: 0.9;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(31px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 590px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 700;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -7px;
  place-items: center;
  color: var(--white);
  background: var(--navy-700);
  border: 2px solid var(--navy-950);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.trust-avatars span:first-child {
  margin-left: 0;
  background: var(--blue);
}

.trust-avatars span:last-child {
  color: var(--navy-950);
  background: var(--yellow);
}

.hero-trust p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.45;
}

.hero-trust strong {
  color: rgba(255, 255, 255, 0.86);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 500px;
}

.portrait-card {
  position: relative;
  width: min(400px, 86%);
  min-height: 505px;
  overflow: hidden;
  background: linear-gradient(145deg, #17466f, #071b31);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 160px 160px 26px 26px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.38);
}

.portrait-card::before {
  position: absolute;
  z-index: 2;
  inset: 20px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 145px 145px 18px 18px;
  pointer-events: none;
}

.portrait-photo {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: auto;
  max-width: none;
  height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.25));
  transform: translateX(-50%);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: -4px;
  bottom: 75px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 17px;
  color: var(--text);
  background: var(--white);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.badge-icon {
  display: grid;
  flex: 0 0 auto;
  width: 37px;
  height: 37px;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
}

.hero-badge p {
  margin: 0;
  color: var(--gray-500);
  font-size: 10px;
  line-height: 1.45;
}

.hero-badge strong {
  color: var(--text);
  font-size: 12px;
}

.hero-bottom-line {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow) 0 19%, var(--blue) 19% 100%);
}

.section {
  padding-block: 105px;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
}

.about h2 {
  max-width: 500px;
}

.about-copy {
  position: relative;
  padding-left: 34px;
  border-left: 1px solid var(--gray-200);
}

.about-copy p {
  margin: 0 0 19px;
  color: var(--gray-500);
}

.about-copy .lead {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.signature {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-100);
}

.signature span {
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}

.signature small {
  color: var(--gray-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.causes {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.causes::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 580px;
  height: 580px;
  content: "";
  background: radial-gradient(circle, rgba(7, 104, 219, 0.24), transparent 70%);
}

.section-heading,
.social-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 45px;
}

.section-heading h2,
.social-heading h2 {
  margin-bottom: 0;
}

.section-heading > p,
.social-heading > p {
  max-width: 420px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
}

.featured-cause {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr 220px;
  gap: 30px;
  align-items: center;
  min-height: 265px;
  padding: 42px 50px;
  overflow: hidden;
  background: linear-gradient(110deg, #075abf, #0877e4);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.cause-number {
  align-self: start;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}

.cause-content {
  max-width: 575px;
}

.cause-tag {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 10px;
  color: var(--navy-950);
  background: var(--yellow);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cause-content h3 {
  margin-bottom: 14px;
  font-size: clamp(25px, 3vw, 34px);
}

.cause-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.cause-symbol {
  display: grid;
  width: 155px;
  height: 155px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.cause-symbol svg {
  width: 95px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.cause-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.cause-card {
  position: relative;
  min-height: 235px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, background 0.25s ease;
}

.cause-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.cause-number-small {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 11px;
  font-weight: 700;
}

.cause-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--yellow);
  background: rgba(247, 201, 72, 0.09);
  border: 1px solid rgba(247, 201, 72, 0.25);
  border-radius: 12px;
  font-weight: 800;
}

.cause-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.cause-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.movement {
  padding-block: 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}

.movement-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.movement h2 {
  margin-bottom: 16px;
  font-size: 37px;
}

.movement p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--gray-500);
  font-size: 14px;
}

.movement-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  overflow: hidden;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.movement-stats div {
  display: flex;
  min-height: 140px;
  padding: 26px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
}

.movement-stats strong {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
}

.movement-stats span {
  margin-top: 9px;
  color: var(--gray-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signup {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 95%, rgba(7, 104, 219, 0.25), transparent 34%),
    var(--navy-950);
}

.signup::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  content: "";
  background: linear-gradient(145deg, rgba(7, 104, 219, 0.08), transparent);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}

.signup-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 95px;
  align-items: center;
}

.signup-intro h2 {
  max-width: 500px;
}

.signup-intro > p:not(.section-label) {
  max-width: 490px;
  color: rgba(255, 255, 255, 0.61);
}

.benefit-list {
  display: grid;
  gap: 15px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-list span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.form-card {
  min-height: 610px;
  padding: 42px;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h3 {
  margin: 9px 0 7px;
  font-size: 28px;
}

.form-heading p {
  margin: 0;
  color: var(--gray-500);
  font-size: 13px;
}

.form-step {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 800;
}

.field label span {
  color: var(--blue);
}

.field input {
  width: 100%;
  height: 49px;
  padding: 0 15px;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input::placeholder {
  color: #9aa6b2;
}

.field input:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 104, 219, 0.1);
  outline: 0;
}

.field input[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 4px;
  color: var(--danger);
  font-size: 10px;
  font-weight: 700;
}

.field-error:not(:empty) {
  min-height: 15px;
}

.check-row {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0;
  color: var(--gray-700);
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
}

.check-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-check {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--white);
  border: 1px solid #bac5d0;
  border-radius: 5px;
}

.check-row input:checked + .custom-check {
  background: var(--blue);
  border-color: var(--blue);
}

.check-row input:checked + .custom-check::after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  content: "";
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.check-row input:focus-visible + .custom-check {
  outline: 3px solid rgba(89, 183, 255, 0.6);
  outline-offset: 2px;
}

.consent-row {
  margin-bottom: 0;
}

.consent-error {
  margin: 3px 0 12px 28px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.button-submit {
  width: 100%;
  margin-top: 8px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(7, 104, 219, 0.2);
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

.button-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.button-submit.is-loading .button-loader {
  display: block;
}

.button-submit.is-loading .button-label {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.privacy-note {
  margin: 12px 0 0;
  color: #8491a0;
  font-size: 9px;
  text-align: center;
}

.privacy-note span {
  margin-right: 3px;
  color: var(--success);
}

.form-alert {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  color: var(--danger);
  background: #fff0ef;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}

.form-alert.is-visible {
  display: block;
}

.success-state {
  min-height: 525px;
  padding: 45px 15px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 35px auto 30px;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(22, 120, 74, 0.1);
  font-size: 28px;
  font-weight: 900;
}

.success-state h3 {
  margin-bottom: 12px;
  font-size: 31px;
}

.success-state p:not(.section-label) {
  max-width: 360px;
  margin: 0 auto 30px;
  color: var(--gray-500);
  font-size: 14px;
}

.social {
  background: var(--white);
}

.social-heading > p {
  color: var(--gray-500);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.social-grid a {
  display: flex;
  min-height: 88px;
  padding: 18px;
  align-items: center;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-grid a:hover {
  background: var(--white);
  border-color: #b7d5f7;
  transform: translateY(-3px);
}

.social-grid a[aria-disabled="true"] {
  cursor: default;
  opacity: 0.58;
}

.social-grid a[aria-disabled="true"]:hover {
  background: var(--off-white);
  border-color: var(--gray-100);
  transform: none;
}

.social-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 11px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
}

.social-grid a > span:nth-child(2) {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
}

.social-grid small {
  color: var(--gray-500);
  font-size: 10px;
  font-weight: 500;
}

.social-grid b {
  color: var(--blue);
  font-size: 16px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-950);
  font-size: 11px;
}

.footer-top {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top p {
  margin: 0;
}

.footer-top > a:last-child {
  color: var(--white);
  font-weight: 700;
}

.legal-copy {
  padding-block: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-copy p {
  max-width: 950px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  line-height: 1.7;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-responsible {
  color: rgba(255, 255, 255, 0.58) !important;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: min(760px, calc(100% - 40px));
  min-height: 90px;
  margin-inline: auto;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--white);
  background: rgba(7, 28, 51, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-actions button {
  min-height: 36px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions button:last-child {
  color: var(--navy-950);
  background: var(--yellow);
  border-color: var(--yellow);
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 35px;
  }

  .hero-badge {
    right: -8px;
  }

  .about-grid,
  .signup-grid {
    gap: 55px;
  }

  .featured-cause {
    grid-template-columns: auto 1fr 150px;
    padding: 38px;
  }

  .movement-grid {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 600px);
  }

  .site-header {
    height: 68px;
  }

  .brand-logo {
    height: 56px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    display: flex;
    min-height: auto;
    padding-block: 62px 74px;
    flex-direction: column;
    gap: 52px;
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-visual {
    width: 100%;
    min-height: 430px;
  }

  .portrait-card {
    width: min(350px, 90%);
    min-height: 430px;
  }

  .hero-badge {
    display: none;
  }

  .section {
    padding-block: 76px;
  }

  .about-grid,
  .movement-grid,
  .signup-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-copy {
    padding: 25px 0 0;
    border-top: 1px solid var(--gray-200);
    border-left: 0;
  }

  .section-heading,
  .social-heading {
    display: block;
    margin-bottom: 32px;
  }

  .section-heading > p,
  .social-heading > p {
    margin-top: 16px;
  }

  .featured-cause {
    display: block;
    padding: 30px 26px;
  }

  .cause-number {
    margin-bottom: 25px;
    font-size: 35px;
  }

  .cause-symbol {
    width: 110px;
    height: 110px;
    margin-top: 28px;
  }

  .cause-symbol svg {
    width: 70px;
  }

  .cause-grid {
    grid-template-columns: 1fr;
  }

  .cause-card {
    min-height: 210px;
  }

  .movement-stats {
    width: 100%;
  }

  .movement-stats strong {
    font-size: 32px;
  }

  .signup::after {
    display: none;
  }

  .signup-intro {
    padding-top: 5px;
  }

  .form-card {
    min-height: auto;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    padding-block: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .cookie-actions button {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 35px;
  }

  .portrait-card {
    min-height: 410px;
  }

  h2 {
    font-size: 32px;
  }

  .movement-stats div {
    min-height: 118px;
    padding-inline: 8px;
  }

  .movement-stats strong {
    font-size: 28px;
  }

  .movement-stats span {
    font-size: 8px;
  }

  .form-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Direção visual: campanha popular, direta e energética */
:root {
  --campaign-green: #008c45;
  --campaign-green-dark: #005b36;
  --campaign-yellow: #ffd600;
  --campaign-blue: #003b7a;
  --campaign-ink: #061b2d;
  --font-display: "Barlow Condensed", Impact, sans-serif;
}

.site-header {
  height: 82px;
  background: rgba(0, 58, 43, 0.96);
  border-bottom-color: rgba(255, 214, 0, 0.42);
}

.brand-logo {
  height: 72px;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.28));
}

.desktop-nav {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.button-small {
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
  border-radius: 8px;
  box-shadow: 0 5px 0 #bc8f00;
}

.hero {
  min-height: 720px;
  background:
    linear-gradient(
      90deg,
      rgba(1, 29, 48, 0.97) 0%,
      rgba(1, 34, 53, 0.88) 43%,
      rgba(0, 74, 47, 0.3) 100%
    ),
    url("assets/bandeira-brasil-oficial.svg") center / cover no-repeat;
}

.hero::after {
  right: auto;
  bottom: -52px;
  left: -4vw;
  width: 108vw;
  height: 110px;
  background: var(--campaign-yellow);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(0 75%, 100% 0, 100% 28%, 0 100%);
  opacity: 0.95;
}

.hero-glow {
  display: none;
}

.hero-grid {
  min-height: 720px;
  padding-block: 66px 90px;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 34px;
}

.hero-content {
  z-index: 3;
  animation: campaign-copy-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 23px;
  padding: 7px 11px;
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.eyebrow span {
  display: none;
}

h1,
h2,
h3 {
  letter-spacing: -0.025em;
}

h1 {
  max-width: 690px;
  margin-bottom: 25px;
  font-size: clamp(58px, 7.2vw, 88px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 em {
  display: block;
  color: var(--campaign-yellow);
}

h1 em::after {
  display: none;
}

.hero-copy {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions .button-primary {
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
  border-radius: 8px;
  box-shadow: 0 6px 0 #b98c00;
}

.hero-actions .button-primary:hover {
  background: #ffe54d;
  box-shadow: 0 4px 0 #b98c00;
}

.text-link {
  color: var(--white);
  border-bottom: 2px solid var(--campaign-yellow);
}

.hero-trust {
  margin-top: 43px;
}

.trust-avatars span:first-child {
  background: var(--campaign-blue);
}

.trust-avatars span:last-child {
  background: var(--campaign-yellow);
}

.hero-visual {
  min-height: 580px;
  align-self: end;
  animation: campaign-portrait-in 0.85s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.portrait-card {
  width: 100%;
  min-height: 590px;
  overflow: visible;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.portrait-card::before {
  display: none;
}

.portrait-photo {
  bottom: -18px;
  height: 106%;
  filter: drop-shadow(18px 22px 20px rgba(0, 0, 0, 0.35));
}

.hero-badge {
  right: 0;
  bottom: 82px;
  min-width: 235px;
  border-radius: 10px;
  box-shadow: 0 8px 0 rgba(0, 58, 43, 0.6);
}

.badge-icon {
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
}

.hero-bottom-line {
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--campaign-green) 0 34%,
    var(--campaign-yellow) 34% 67%,
    var(--campaign-blue) 67%
  );
}

.section {
  padding-block: clamp(82px, 9vw, 125px);
}

.section-label {
  width: fit-content;
  margin-bottom: 20px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--campaign-green);
  border-radius: 3px;
  font-size: 10px;
  letter-spacing: 0.07em;
}

.about {
  background: #f7f9f5;
}

.about-grid {
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 110px);
}

.about h2 {
  max-width: 550px;
  color: var(--campaign-ink);
  font-size: clamp(45px, 5vw, 65px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.about-copy {
  padding: 31px 0 0;
  border-top: 8px solid var(--campaign-yellow);
  border-left: 0;
}

.about-copy .lead {
  color: var(--campaign-green-dark);
  font-size: 20px;
}

.signature span {
  color: var(--campaign-green-dark);
  font-family: var(--font-display);
  font-size: 27px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.causes {
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
}

.causes::before {
  display: none;
}

.causes .section-label {
  color: var(--white);
  background: var(--campaign-blue);
}

.section-heading h2 {
  max-width: 620px;
  color: var(--campaign-ink);
  font-size: clamp(48px, 6vw, 70px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading > p {
  color: rgba(6, 27, 45, 0.74);
  font-weight: 600;
}

.featured-cause {
  min-height: 300px;
  padding: 48px clamp(30px, 5vw, 62px);
  grid-template-columns: 1fr 230px;
  color: var(--white);
  background: var(--campaign-green-dark);
  border-radius: 14px;
  box-shadow: 0 8px 0 #004528;
}

.featured-cause .cause-number {
  display: none;
}

.cause-tag {
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
}

.cause-content h3 {
  max-width: 680px;
  font-size: clamp(36px, 5vw, 55px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.cause-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.cause-symbol {
  width: 180px;
  height: 180px;
  background: var(--campaign-yellow);
  border: 0;
  border-radius: 50%;
}

.cause-symbol svg {
  stroke: var(--campaign-ink);
}

.cause-grid {
  gap: 0;
  margin-top: 45px;
  border-top: 2px solid rgba(6, 27, 45, 0.72);
  border-bottom: 2px solid rgba(6, 27, 45, 0.72);
}

.cause-card {
  min-height: 250px;
  padding: 37px 31px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(6, 27, 45, 0.28);
  border-radius: 0;
}

.cause-card:last-child {
  border-right: 0;
}

.cause-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: none;
}

.cause-number-small {
  color: rgba(6, 27, 45, 0.48);
}

.cause-icon {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 25px;
  color: var(--campaign-green-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 33px;
}

.cause-card h3 {
  color: var(--campaign-ink);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
}

.cause-card p {
  color: rgba(6, 27, 45, 0.74);
  font-size: 13px;
}

.movement {
  color: var(--white);
  background: var(--campaign-green);
  border: 0;
}

.movement .section-label {
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
}

.movement h2 {
  color: var(--white);
  font-size: 46px;
  font-weight: 900;
  text-transform: uppercase;
}

.movement p {
  color: rgba(255, 255, 255, 0.78);
}

.movement-stats {
  gap: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.movement-stats div {
  min-height: 150px;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.movement-stats strong {
  color: var(--campaign-yellow);
  font-size: 55px;
}

.movement-stats span {
  color: rgba(255, 255, 255, 0.8);
}

.signup {
  background:
    linear-gradient(115deg, rgba(0, 59, 122, 0.98) 0 58%, rgba(0, 91, 54, 0.98) 58%),
    var(--campaign-blue);
}

.signup::after {
  width: 28%;
  background: var(--campaign-yellow);
  opacity: 0.12;
}

.signup .section-label {
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
}

.signup-intro h2 {
  font-size: clamp(46px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.benefit-list span {
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
}

.form-card {
  border-radius: 16px;
  box-shadow: 14px 14px 0 rgba(0, 35, 82, 0.55);
}

.form-heading h3 {
  color: var(--campaign-ink);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-submit {
  color: var(--campaign-ink);
  background: var(--campaign-yellow);
  box-shadow: 0 5px 0 #b98c00;
}

.button-submit:hover {
  background: #ffe250;
}

.social {
  background: #f1f4ef;
}

.social-heading h2 {
  color: var(--campaign-ink);
  font-size: clamp(45px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.social-grid a {
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 0 #d8ded5;
}

.social-grid a:hover {
  border-color: transparent;
  box-shadow: 0 6px 0 var(--campaign-yellow);
}

.social-icon {
  background: var(--campaign-green-dark);
  border-radius: 8px;
}

.social-grid b {
  color: var(--campaign-green);
}

.site-footer {
  background: #003d2d;
}

.cookie-banner {
  border-radius: 10px;
}

@keyframes campaign-copy-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes campaign-portrait-in {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 960px) {
  .brand-logo {
    height: 62px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 0.9fr;
    gap: 15px;
  }

  .hero-visual {
    min-height: 510px;
  }

  .portrait-card {
    min-height: 520px;
  }

  .hero-badge {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
  }

  .brand-logo {
    height: 58px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(1, 29, 48, 0.95) 0 48%, rgba(0, 70, 43, 0.45) 100%),
      url("assets/bandeira-brasil-oficial.svg") center / cover no-repeat;
  }

  .hero-grid {
    gap: 5px;
    padding-block: 58px 82px;
  }

  h1 {
    font-size: clamp(54px, 16vw, 70px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .portrait-card {
    width: 100%;
    min-height: 460px;
  }

  .portrait-photo {
    height: 104%;
  }

  .about-grid,
  .signup-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .featured-cause {
    padding: 34px 26px;
  }

  .cause-symbol {
    width: 118px;
    height: 118px;
  }

  .cause-grid {
    border-bottom: 0;
  }

  .cause-card,
  .cause-card:last-child {
    min-height: auto;
    padding-inline: 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 27, 45, 0.35);
  }

  .movement-stats div {
    min-height: 120px;
    padding-inline: 7px;
  }

  .movement-stats strong {
    font-size: 38px;
  }

  .signup {
    background: var(--campaign-blue);
  }

  .form-card {
    box-shadow: 7px 7px 0 rgba(0, 35, 82, 0.55);
  }
}

@media (max-width: 480px) {
  .button-small {
    padding-inline: 10px;
    font-size: 9px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .portrait-card {
    min-height: 420px;
  }

  .movement-stats strong {
    font-size: 32px;
  }
}
