@font-face {
  font-family: "Gordita";
  src: url("assets/fonts/Gordita-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gordita";
  src: url("assets/fonts/Gordita-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gordita";
  src: url("assets/fonts/Gordita-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1c4484;
  --blue-deep: #102f5f;
  --blue-dark: #0b2347;
  --yellow: #fec00f;
  --yellow-soft: #ffe06c;
  --white: #ffffff;
  --paper: #f7f9fc;
  --paper-blue: #eef3f9;
  --ink: #163354;
  --muted: #64748b;
  --line: #dce4ee;
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --section-space: clamp(5rem, 9vw, 8rem);
  --radius: 24px;
  --radius-small: 16px;
  --shadow: 0 20px 55px rgba(16, 47, 95, 0.1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Gordita", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a { font-family: "Gordita", Arial, sans-serif; }

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; }

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.section { padding-block: var(--section-space); }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 14px;
  transition: padding 180ms ease;
}

.site-header.is-scrolled { padding-block: 7px; }

.header__content {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: 10px 18px 10px 24px;
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(16, 47, 95, 0.09);
  backdrop-filter: blur(14px);
}

.brand { flex: 0 0 auto; }
.brand img { width: 165px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.7vw, 2rem);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding-block: 0.6rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin-block: 5px;
  border-radius: 2px;
  background: var(--blue);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.4rem;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--yellow-soft);
  background: var(--yellow-soft);
  box-shadow: 0 12px 24px rgba(254, 192, 15, 0.22);
  transform: translateY(-2px);
}

.button--small { min-height: 42px; padding: 0.6rem 1.1rem; font-size: 0.76rem; }
.button--outline { border-color: var(--blue); background: transparent; color: var(--blue); }
.button--outline:hover, .button--outline:focus-visible { border-color: var(--blue); background: var(--blue); color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-block: 2rem; }

.eyebrow {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 5px;
  border-radius: 5px;
  background: var(--yellow);
  content: "";
}

.eyebrow--plain { color: var(--blue); }
.eyebrow--light { color: var(--white); }

.hero { position: relative; padding: 16px 0 54px; overflow: hidden; }

.hero::before {
  position: absolute;
  top: 4%;
  right: -12%;
  width: 46vw;
  height: 46vw;
  border: clamp(40px, 7vw, 110px) solid var(--yellow-soft);
  border-radius: 50%;
  content: "";
  opacity: 0.32;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero__copy { position: relative; z-index: 2; padding-block: 3rem; }

.hero h1 {
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: var(--blue);
  font-size: clamp(3.5rem, 6.4vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.068em;
}

.hero h1 strong { display: block; color: var(--yellow); }
.hero__lead { max-width: 590px; color: var(--muted); font-size: 1.04rem; }

.hero__values {
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
  margin: 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero__values li { display: flex; align-items: center; gap: 0.5rem; }
.hero__values span { color: #9a7a00; font-size: 0.65rem; }
.hero__visual { position: relative; align-self: stretch; padding: 20px 0 34px; }
.hero__caption { position: absolute; right: 24px; bottom: 0; margin: 0; color: var(--blue); font-size: 0.74rem; font-weight: 700; }

.photo-slot {
  --slot-bg: var(--paper-blue);
  --slot-ink: var(--blue);
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px dashed rgba(28, 68, 132, 0.35);
  border-radius: var(--radius);
  background: var(--slot-bg);
  color: var(--slot-ink);
  text-align: center;
}

.photo-slot::before,
.photo-slot::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.photo-slot::before {
  width: 150%;
  height: 1px;
  background: currentColor;
  opacity: 0.1;
  transform: rotate(-34deg);
}

.photo-slot::after {
  width: 150%;
  height: 1px;
  background: currentColor;
  opacity: 0.1;
  transform: rotate(34deg);
}

.photo-slot__label,
.photo-slot small { position: relative; z-index: 2; }
.photo-slot__label { display: block; font-size: clamp(1.4rem, 3vw, 2.25rem); font-weight: 900; letter-spacing: -0.04em; }
.photo-slot small { position: absolute; bottom: 1.5rem; right: 1.5rem; left: 1.5rem; color: currentColor; font-size: 0.7rem; opacity: 0.7; }
.photo-slot__index { position: absolute; top: 1.4rem; left: 1.5rem; z-index: 2; font-size: 0.72rem; font-weight: 900; }

/* Também permite inserir uma tag <img> diretamente dentro da caixa. */
.photo-slot > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-slot:has(> img) {
  border-style: solid;
  border-color: transparent;
}

.photo-slot:has(> img)::before {
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 35, 71, 0.22));
  opacity: 1;
  transform: none;
}

.photo-slot:has(> img)::after { display: none; }
.photo-slot:has(> img) .photo-slot__label,
.photo-slot:has(> img) small { display: none; }
.photo-slot:has(> img) .photo-slot__index { color: var(--white); text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); }

.photo-slot.has-photo { border-style: solid; border-color: transparent; background-position: center; background-size: cover; }
.photo-slot.has-photo::before { inset: 0; width: auto; height: auto; background: linear-gradient(180deg, transparent 55%, rgba(11, 35, 71, 0.38)); opacity: 1; transform: none; }
.photo-slot.has-photo::after, .photo-slot.has-photo .photo-slot__label, .photo-slot.has-photo small { display: none; }
.photo-slot.has-photo .photo-slot__index { color: var(--white); text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); }
.photo-slot--hero { height: 100%; min-height: 610px; border-radius: 40px 40px 120px 40px; }
.photo-slot--hero > img { object-position: center top; }
.photo-slot--portrait { min-height: 570px; }
.photo-slot--portrait > img { object-position: center 35%; }
.photo-slot--landscape { min-height: 490px; }
.photo-slot--landscape > img { object-position: center center; }
.photo-slot--territory { min-height: 610px; border-radius: 140px 24px 24px 24px; }
.photo-slot--territory > img { object-position: center top; }
.photo-slot--family { min-height: 520px; border-radius: 24px 140px 24px 24px; }
.photo-slot--family > img { object-position: center 30%; }
.photo-slot--signup { height: 100%; min-height: 720px; border: 0; border-radius: 0; background: #153867; color: var(--white); }
.photo-slot--signup > img { object-position: 42% center; }
.photo-slot--dark { --slot-bg: rgba(255, 255, 255, 0.09); --slot-ink: var(--white); border-color: rgba(255, 255, 255, 0.35); }

.intro-strip { position: relative; z-index: 5; margin-bottom: 1rem; }
.intro-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-radius: var(--radius); background: var(--blue); box-shadow: var(--shadow); }
.intro-strip__grid div { min-height: 150px; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem 2rem; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.intro-strip__grid div:last-child { border-right: 0; }
.intro-strip strong { color: var(--yellow); font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1; }
.intro-strip span { margin-top: 0.75rem; color: rgba(255, 255, 255, 0.76); font-size: 0.72rem; line-height: 1.45; }

.origin__grid, .municipalities__grid, .personal__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(3rem, 7vw, 6rem); }
.visual-composition { position: relative; padding: 0 0 50px 50px; }
.visual-note { position: absolute; bottom: 0; left: 0; display: flex; width: 210px; min-height: 140px; flex-direction: column; justify-content: center; padding: 1.5rem; border-radius: 22px; background: var(--yellow); color: var(--blue-dark); box-shadow: 0 20px 40px rgba(16, 47, 95, 0.15); }
.visual-note strong { font-size: 2rem; font-weight: 900; letter-spacing: -0.05em; }
.visual-note span { font-size: 0.72rem; line-height: 1.4; }
.origin__copy h2, .communication h2, .municipalities h2, .priorities h2, .personal h2, .section-heading h2 {
  margin-bottom: 1.5rem;
  color: var(--blue);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}
.origin__copy > p:not(.eyebrow), .municipalities__content > p:not(.eyebrow), .personal__copy > p:not(.eyebrow) { max-width: 620px; color: var(--muted); }
.origin blockquote { position: relative; margin: 2rem 0 0; padding: 1.4rem 1.5rem 1.4rem 2rem; border-left: 5px solid var(--yellow); background: var(--paper); }
.origin blockquote p { margin: 0; color: var(--blue); font-size: 1rem; font-weight: 700; }

.communication { background: var(--blue-dark); color: var(--white); }
.communication__grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(2.5rem, 6vw, 5rem); }
.communication h2 { color: var(--white); }
.communication__copy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.74); }
.communication__copy strong { color: var(--yellow); }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.tag-list li { padding: 0.55rem 0.9rem; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 999px; color: var(--white); font-size: 0.7rem; font-weight: 700; }

.section-heading { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); align-items: end; gap: 3rem; }
.section-heading--split h2 { max-width: 15ch; margin-bottom: 0; }
.section-heading--split > p { max-width: 540px; margin-bottom: 0; color: var(--muted); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 0; padding: 0; background: var(--line); list-style: none; }
.timeline__item { min-height: 300px; padding: clamp(1.5rem, 3vw, 2.4rem); background: var(--white); }
.timeline__item time { display: block; margin-bottom: clamp(3rem, 7vw, 6rem); color: var(--yellow); font-size: clamp(2.3rem, 4vw, 3.6rem); font-weight: 900; letter-spacing: -0.06em; line-height: 1; }
.timeline__item h3 { margin-bottom: 0.8rem; color: var(--blue); font-size: 1.1rem; }
.timeline__item p { margin: 0; color: var(--muted); font-size: 0.79rem; }
.timeline__item--current { background: var(--blue); }
.timeline__item--current h3 { color: var(--white); }
.timeline__item--current p { color: rgba(255, 255, 255, 0.72); }

.results { padding-block: var(--section-space); background: var(--blue); color: var(--white); }
.results__grid { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); align-items: start; gap: clamp(3rem, 7vw, 6rem); }
.results__intro { position: sticky; top: 130px; }
.results__intro h2 { margin-bottom: 1.5rem; color: var(--white); font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 900; letter-spacing: -0.055em; }
.results__intro > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.72); }
.results__numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255, 255, 255, 0.16); }
.result { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--blue); }
.result--wide { grid-column: 1 / -1; min-height: 320px; background: var(--yellow); color: var(--blue-dark); }
.result strong { display: block; font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 900; letter-spacing: -0.075em; line-height: 0.9; }
.result strong small { font-size: 0.25em; letter-spacing: -0.03em; }
.result p { max-width: 24ch; margin: 1.5rem 0 0; font-size: 0.82rem; font-weight: 700; }
.result:not(.result--wide) p { color: rgba(255, 255, 255, 0.7); }

.municipalities { background: var(--paper); }
.municipalities__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.flow { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; margin-block: 2rem; }
.flow span { padding: 0.55rem 0.8rem; border-radius: 8px; background: var(--white); color: var(--blue); font-size: 0.68rem; font-weight: 900; box-shadow: 0 8px 20px rgba(16, 47, 95, 0.07); }
.flow i { color: #9a7a00; font-style: normal; }
.check-list { display: grid; gap: 0.9rem; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; color: var(--ink); font-size: 0.82rem; font-weight: 700; }
.check-list li::before { position: absolute; top: 0; left: 0; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--yellow); color: var(--blue-dark); content: "✓"; font-size: 0.7rem; font-weight: 900; }

.priorities__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(3rem, 8vw, 8rem); }
.priorities__main { position: relative; }
.priorities__number { display: block; margin-bottom: 1rem; color: var(--yellow); font-size: clamp(5rem, 10vw, 9rem); font-weight: 900; letter-spacing: -0.08em; line-height: 0.8; }
.priorities__main p:last-child { max-width: 630px; color: var(--muted); }
.priorities__topics > p { margin-bottom: 1.5rem; color: var(--muted); font-size: 0.78rem; }
.priorities__topics ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.priorities__topics li { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding-block: 1.05rem; border-bottom: 1px solid var(--line); color: var(--blue); font-size: 0.88rem; font-weight: 700; }
.priorities__topics li span { color: #9a7a00; font-size: 0.7rem; }

.manifesto { display: grid; min-height: 720px; grid-template-columns: 1.1fr 0.9fr; background: var(--blue-dark); }
.photo-slot--manifesto { min-height: 720px; border: 0; border-radius: 0; background: #153867; color: var(--white); }
.photo-slot--manifesto > img { object-position: center center; }
.manifesto__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); color: var(--white); }
.manifesto h2 { margin-bottom: 2rem; color: var(--white); font-size: clamp(3rem, 5.8vw, 5.5rem); font-weight: 900; letter-spacing: -0.06em; }
.manifesto__content > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.72); }

.personal__values { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.personal__values span { padding: 0.55rem 0.9rem; border-radius: 999px; background: var(--paper-blue); color: var(--blue); font-size: 0.7rem; font-weight: 700; }

.signup { padding-block: var(--section-space); background: var(--paper); }
.signup__card { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr); overflow: hidden; border-radius: 32px; background: var(--blue); color: var(--white); box-shadow: var(--shadow); }
.signup__content { padding: clamp(2rem, 5vw, 4.5rem); }
.signup__content h2 { max-width: 680px; margin-bottom: 1.2rem; color: var(--white); font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 900; letter-spacing: -0.055em; }
.signup__content > p:not(.eyebrow) { max-width: 620px; color: rgba(255, 255, 255, 0.72); }
.signup-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1rem; margin-top: 2rem; }
.form-field { min-width: 0; }
.form-field label { display: block; margin-bottom: 0.4rem; color: var(--white); font-size: 0.72rem; font-weight: 700; }
.form-field label span { color: rgba(255, 255, 255, 0.55); font-weight: 400; }
.form-field input { width: 100%; min-height: 52px; padding: 0.8rem 0.95rem; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 10px; background: var(--white); color: var(--ink); font-size: 0.84rem; }
.form-field input::placeholder { color: #8a97a8; }
.form-field input[aria-invalid="true"] { border-color: #ff9b9b; box-shadow: 0 0 0 3px rgba(255, 155, 155, 0.18); }
.field-help { display: block; margin-top: 0.35rem; color: rgba(255, 255, 255, 0.54); font-size: 0.62rem; }
.field-error { display: block; min-height: 18px; margin-top: 0.25rem; color: #ffd3d3; font-size: 0.65rem; }
.consent-field { grid-column: 1 / -1; }
.consent-field label { display: flex; align-items: flex-start; gap: 0.7rem; color: rgba(255, 255, 255, 0.75); font-size: 0.68rem; line-height: 1.5; }
.consent-field input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 0.1rem; accent-color: var(--yellow); }
.signup-form__submit { grid-column: 1 / -1; width: 100%; margin-top: 0.2rem; border: 0; cursor: pointer; }
.signup-form__submit:disabled { cursor: wait; opacity: 0.72; transform: none; }
.form-message { grid-column: 1 / -1; min-height: 22px; margin: 0; color: var(--white); font-size: 0.7rem; }
.form-message--error { color: #ffd3d3; }
.form-message--success { color: #d5ffdf; }
.privacy-note { margin-top: 0.7rem; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.privacy-note summary { padding-top: 1rem; color: rgba(255, 255, 255, 0.72); font-size: 0.68rem; font-weight: 700; cursor: pointer; }
.privacy-note p { margin: 0.7rem 0 0; color: rgba(255, 255, 255, 0.58); font-size: 0.66rem; }
.signup__visual { position: relative; min-height: 720px; }
.signup__trust { position: absolute; right: 1.5rem; bottom: 1.5rem; left: 1.5rem; z-index: 3; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 14px; background: rgba(11, 35, 71, 0.78); backdrop-filter: blur(10px); }
.signup__trust strong { color: var(--yellow); font-size: 0.75rem; }
.signup__trust span { color: rgba(255, 255, 255, 0.7); font-size: 0.66rem; }
.mobile-signup-cta { display: none; }

.social { padding-block: var(--section-space); background: var(--blue-dark); color: var(--white); }
.section-heading--light h2 { color: var(--white); }
.section-heading--light > p { color: rgba(255, 255, 255, 0.68); }
.social__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.social__links a { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 0.9rem; min-height: 92px; padding: 1.2rem 1.4rem; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius-small); text-decoration: none; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.social__links a:hover, .social__links a:focus-visible { border-color: var(--yellow); background: rgba(255, 255, 255, 0.06); transform: translateY(-2px); }
.social__links a > span { grid-row: 1 / 3; color: var(--yellow); font-size: 1.6rem; font-weight: 900; }
.social__links strong { color: var(--white); font-size: 0.86rem; }
.social__links small { color: rgba(255, 255, 255, 0.55); font-size: 0.67rem; }
.social__feeds { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.feed-card { min-width: 0; overflow: hidden; border-radius: var(--radius); background: var(--white); color: var(--ink); }
.feed-card__header { display: flex; min-height: 96px; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); }
.feed-card__header span { color: var(--blue); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.feed-card__header h3 { margin: 0.2rem 0 0; font-size: 1rem; }
.feed-card__header a { color: var(--blue); font-size: 0.72rem; font-weight: 700; text-underline-offset: 0.2em; }
.feed-card iframe { display: block; width: 100%; height: 620px; border: 0; background: var(--white); }
.social__notice { max-width: 700px; margin: 1.25rem auto 0; color: rgba(255, 255, 255, 0.5); font-size: 0.7rem; text-align: center; }

.closing { padding-block: clamp(3.5rem, 7vw, 6rem); background: var(--blue); color: var(--white); }
.closing__content { display: grid; grid-template-columns: 260px minmax(0, 1fr) auto; align-items: center; gap: clamp(2rem, 5vw, 4rem); }
.closing__content > img { width: 260px; height: auto; }
.closing h2 { max-width: 800px; margin: 0; color: var(--white); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 900; letter-spacing: -0.05em; }

.site-footer { background: var(--blue-dark); color: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.25fr 0.65fr 0.65fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); padding-block: 3.5rem; }
.footer__brand img { width: 125px; height: auto; margin-bottom: 1.2rem; }
.footer__brand p { max-width: 280px; color: rgba(255, 255, 255, 0.62); font-size: 0.75rem; }
.footer__grid nav { display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem; }
.footer__grid h3 { margin-bottom: 0.65rem; color: var(--yellow); font-size: 0.8rem; }
.footer__grid a, .footer__grid p { margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 0.72rem; text-decoration: none; }
.footer__grid a:hover { color: var(--white); }
.footer__legal { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__legal strong { color: var(--white); }
.footer__legal-row { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer__legal-row .container { display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 1rem; color: rgba(255, 255, 255, 0.6); font-size: 0.68rem; font-weight: 700; }
.footer__credit { display: grid; min-height: 54px; place-items: center; padding: 0.7rem var(--gutter); background: var(--yellow); color: var(--blue-dark); text-align: center; }
.footer__credit a { display: inline-flex; align-items: center; gap: 0.3rem; color: inherit; font-size: 0.74rem; text-decoration: none; }
.footer__credit img { width: 22px; height: 22px; margin-left: 0.15rem; object-fit: contain; }
.footer__credit strong { font-weight: 900; }
.footer__credit a:hover, .footer__credit a:focus-visible { text-decoration: underline; text-underline-offset: 0.25em; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 650ms ease, transform 650ms ease; transition-delay: var(--reveal-delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

@media (max-width: 1020px) {
  .main-nav { gap: 1rem; }
  .main-nav a:nth-child(4) { display: none; }
  .hero__grid { min-height: 600px; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); }
  .hero h1 { font-size: clamp(3.4rem, 7vw, 5rem); }
  .intro-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .intro-strip__grid div:nth-child(2) { border-right: 0; }
  .intro-strip__grid div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .results__grid { grid-template-columns: 1fr; }
  .results__intro { position: static; }
  .manifesto { grid-template-columns: 1fr 1fr; }
  .closing__content { grid-template-columns: 220px 1fr; }
  .closing__content .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 88px; }
  .site-header { padding-block: 8px; }
  .header__content { position: relative; min-height: 64px; padding-inline: 18px; }
  .brand img { width: 145px; }
  .menu-button { display: block; margin-left: auto; }
  .main-nav { position: absolute; top: calc(100% + 10px); right: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 0.75rem; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a, .main-nav a:nth-child(4) { display: block; padding: 0.85rem 1rem; }
  .main-nav a::after { display: none; }
  .header__cta { display: none; }
  .hero { padding-top: 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero__copy { padding: 3rem 0 1rem; }
  .hero h1 { max-width: 700px; }
  .hero__visual { min-height: 620px; }
  .photo-slot--hero { min-height: 600px; }
  .origin__grid, .communication__grid, .municipalities__grid, .personal__grid { grid-template-columns: 1fr; }
  .origin__copy, .personal__copy { order: -1; }
  .section-heading--split { grid-template-columns: 1fr; align-items: start; gap: 1rem; }
  .results__numbers { grid-template-columns: 1fr 1fr; }
  .priorities__layout { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; }
  .photo-slot--manifesto { min-height: 620px; }
  .manifesto__content { padding: var(--section-space) var(--gutter); }
  .social__links { grid-template-columns: 1fr; }
  .social__feeds { grid-template-columns: 1fr; }
  .signup__card { grid-template-columns: 1fr; }
  .signup__visual, .photo-slot--signup { min-height: 560px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --section-space: 4.5rem; }
  .hero::before { width: 100vw; height: 100vw; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero__lead { font-size: 0.96rem; }
  .button-row { display: grid; }
  .hero__values { justify-content: space-between; gap: 0.6rem; }
  .hero__values li { align-items: flex-start; flex-direction: column; gap: 0.15rem; }
  .hero__visual, .photo-slot--hero { min-height: 520px; }
  .photo-slot--hero { border-radius: 26px 26px 80px 26px; }
  .intro-strip__grid { grid-template-columns: 1fr 1fr; }
  .intro-strip__grid div { min-height: 130px; padding: 1.2rem; }
  .intro-strip strong { font-size: 1.8rem; }
  .intro-strip span { font-size: 0.64rem; }
  .visual-composition { padding: 0 0 35px 24px; }
  .photo-slot--portrait, .photo-slot--territory, .photo-slot--family { min-height: 470px; border-radius: 24px; }
  .visual-note { width: 170px; min-height: 115px; }
  .origin__copy h2, .communication h2, .municipalities h2, .priorities h2, .personal h2, .section-heading h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .timeline { grid-template-columns: 1fr; background: transparent; gap: 0; border-left: 2px solid var(--line); }
  .timeline__item { min-height: 0; position: relative; padding: 0 0 2.5rem 1.5rem; }
  .timeline__item::before { position: absolute; top: 0.35rem; left: -7px; width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); content: ""; }
  .timeline__item time { margin-bottom: 1rem; font-size: 2.6rem; }
  .timeline__item--current { margin-left: -2px; padding: 1.5rem; border-left: 2px solid var(--blue); }
  .timeline__item--current::before { display: none; }
  .results__numbers { grid-template-columns: 1fr; }
  .result--wide { grid-column: auto; }
  .result, .result--wide { min-height: 230px; }
  .flow { display: grid; grid-template-columns: 1fr; }
  .flow span { text-align: center; }
  .flow i { transform: rotate(90deg); text-align: center; }
  .photo-slot--manifesto { min-height: 520px; }
  .manifesto h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .signup__card { border-radius: 24px; }
  .signup__content { padding: 2rem 1.25rem; }
  .signup__content h2 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .signup-form { grid-template-columns: 1fr; }
  .consent-field, .signup-form__submit, .form-message { grid-column: auto; }
  .signup__visual, .photo-slot--signup { min-height: 480px; }
  .mobile-signup-cta { position: fixed; right: 1rem; bottom: 1rem; left: 1rem; z-index: 90; display: flex; min-height: 52px; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 999px; background: var(--yellow); color: var(--blue-dark); box-shadow: 0 14px 34px rgba(11, 35, 71, 0.28); font-size: 0.78rem; font-weight: 900; text-decoration: none; transition: opacity 180ms ease, transform 180ms ease; }
  .mobile-signup-cta.is-hidden { pointer-events: none; opacity: 0; transform: translateY(18px); }
  .feed-card__header { padding-inline: 1rem; }
  .feed-card iframe { height: 580px; }
  .closing__content { grid-template-columns: 1fr; }
  .closing__content > img { width: 210px; }
  .closing__content .button { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__legal-row .container { min-height: 74px; align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
