:root {
  --black: #050505;
  --graphite: #101010;
  --white: #ffffff;
  --light: #f3f3f3;
  --gold: #e0ad26;
  --gold-light: #f1bd32;
  --gold-strong: #f0b72f;
  --gold-soft: #c9971d;
  --border-dark: rgba(255, 255, 255, 0.10);
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-dark: #1b1b1b;
  --muted: var(--text-soft);
  --ink: var(--text-dark);
  --line: var(--border-dark);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(224, 173, 38, 0.055), transparent 28%),
    var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.hero-container {
  width: min(92%, 1440px);
  margin: 0 auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.has-scrolled .site-header,
body.is-menu-open .site-header {
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: rgba(224, 173, 38, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.header-inner {
  width: min(92%, 1440px);
  min-height: 100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-logo {
  display: none;
  width: auto;
  max-width: 220px;
  height: 72px;
  object-fit: contain;
}

.brand.has-logo .brand-logo {
  display: block;
}

.brand.has-logo .brand-text {
  display: none;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1;
}

.brand-text::before {
  content: "";
  width: 9px;
  height: 34px;
  background: var(--gold);
  border-radius: 2px;
  box-shadow: 13px 0 0 rgba(224, 173, 38, 0.32);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.4vw, 42px);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--white);
}

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

.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  margin-left: clamp(8px, 2vw, 32px);
  padding: 0 28px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  background: rgba(224, 173, 38, 0.03);
  color: var(--gold-light);
  font-size: 1rem;
  box-shadow: 0 14px 34px rgba(224, 173, 38, 0.1);
}

.main-nav .nav-cta::after {
  display: none;
}

.main-nav .nav-cta:hover {
  color: var(--black);
  background: var(--gold-strong);
}

.main-nav .nav-cta svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(900px, 100vh);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.88) 35%, rgba(5, 5, 5, 0.42) 68%, rgba(5, 5, 5, 0.22) 100%),
    url("../assets/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(115deg, transparent 0 47%, rgba(224, 173, 38, 0.28) 48%, transparent 49%),
    linear-gradient(115deg, transparent 0 62%, rgba(255, 255, 255, 0.06) 63%, transparent 64%);
  background-size: 220px 100%, 310px 100%;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.45) 48%, transparent 82%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.88));
  pointer-events: none;
}

.hero-grid {
  min-height: min(900px, 100vh);
  padding: 116px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  align-items: end;
  gap: clamp(18px, 2.7vw, 48px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  min-width: 0;
  padding: 26px 0 58px;
}

.eyebrow,
.section-kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark {
  color: var(--gold-soft);
}

.hero h1,
.section-heading h2,
.cta-section h2,
.contact-copy h2 {
  margin: 16px 0;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 720px;
  margin: 18px 0 14px;
  color: var(--white);
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(64px, 6vw, 106px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.hero h1 .hero-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 64%, #b67d12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .hero-nowrap {
  color: var(--white);
  white-space: nowrap;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 318px);
  margin: 0 0 24px;
  color: var(--gold);
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, transparent, currentColor);
}

.hero-divider::after {
  background: linear-gradient(90deg, currentColor, transparent);
}

.hero-divider span {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 3px;
  transform: rotate(45deg);
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(1.28rem, 1.55vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero-text {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 32px;
  border: 0;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn span[aria-hidden="true"] {
  font-size: 1.55rem;
  line-height: 1;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: var(--black);
  box-shadow: 0 14px 36px rgba(224, 173, 38, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #f4c54e, var(--gold-strong));
}

.btn-secondary {
  border: 1px solid rgba(224, 173, 38, 0.72);
  color: var(--white);
  background: rgba(5, 5, 5, 0.32);
}

.btn-secondary:hover {
  border-color: var(--gold);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(9, 9, 9, 0.2);
}

.btn-dark:hover {
  background: #1d1d1d;
}

.hero-visual {
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-width: 0;
  min-height: clamp(570px, 75vh, 760px);
  align-self: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -5%;
  bottom: 3%;
  z-index: 0;
  width: 70%;
  height: 70%;
  background:
    linear-gradient(112deg, transparent 4%, rgba(224, 173, 38, 0.16) 45%, transparent 82%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 68%);
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
}

.santos-watermark {
  position: absolute;
  top: 7%;
  right: 4%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.07);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(6rem, 13vw, 13rem);
  font-weight: 900;
  line-height: 0.8;
  transform: rotate(-10deg);
  pointer-events: none;
}

.candidate {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.55));
  pointer-events: none;
  user-select: none;
}

.candidate-maruca {
  left: -5%;
  bottom: -10px;
  z-index: 2;
  height: clamp(620px, 78vh, 735px);
  mask-image: linear-gradient(to bottom, #000 0 88%, transparent 100%);
}

.candidate-rodrigo {
  right: -7%;
  bottom: 0;
  z-index: 3;
  height: clamp(650px, 80vh, 760px);
}

.values-band {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #121212, #080808);
  border-top: 1px solid rgba(224, 173, 38, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.values-band .section-kicker {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 0;
  background: rgba(5, 5, 5, 0.78);
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 0;
  min-height: 126px;
  padding: 16px 20px;
  border-right: 1px solid rgba(224, 173, 38, 0.36);
  background: transparent;
}

.value-item:last-child {
  border-right: 0;
}

.value-icon,
.proposal-icon,
.commitment-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  border: 1px solid rgba(224, 173, 38, 0.45);
  color: var(--gold);
  background: rgba(224, 173, 38, 0.045);
}

.value-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  margin: 0;
  border: 0;
  background: transparent;
}

.value-icon svg,
.proposal-icon svg,
.commitment-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.55;
}

.value-item h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.82rem, 0.72vw, 0.87rem);
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.ticket-section {
  color: var(--ink);
}

.chapa-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 8vw, 130px);
  background:
    radial-gradient(circle at 50% 42%, rgba(224, 173, 38, 0.07), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 42%),
    repeating-linear-gradient(135deg, rgba(25, 20, 10, 0.025) 0 1px, transparent 1px 28px),
    #f7f5ef;
}

.chapa-container {
  width: min(92%, 1400px);
  margin-inline: auto;
}

.chapa-grid {
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(500px, 650px) minmax(280px, 320px);
  grid-template-areas: "left center right";
  align-items: stretch;
  justify-content: center;
  gap: clamp(30px, 3vw, 58px);
  min-width: 0;
}

.candidate-card,
.chapa-center {
  min-width: 0;
}

.candidate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(224, 173, 38, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 22px 50px rgba(25, 20, 10, 0.10),
    0 5px 15px rgba(25, 20, 10, 0.05);
}

.candidate-card::before {
  content: "";
  position: absolute;
  top: 0;
  width: 86px;
  height: 1px;
  background: var(--gold);
  transform-origin: left center;
  pointer-events: none;
}

.candidate-card::after {
  content: "";
  height: 6px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold), var(--gold-soft));
}

.candidate-card-left {
  grid-area: left;
}

.candidate-card-left::before {
  left: 0;
  transform: rotate(-45deg);
}

.candidate-card-right {
  grid-area: right;
}

.candidate-card-right::before {
  right: -1px;
  transform: rotate(-45deg);
}

.candidate-photo {
  position: relative;
  display: grid;
  place-items: end center;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(232, 229, 221, 0.34)),
    #ece9e1;
}

.candidate-card-right .candidate-photo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 239, 234, 0.58)),
    #fbfaf7;
}

.candidate-photo::before {
  content: "Foto oficial";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(25, 20, 10, 0.34);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.candidate-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.candidate-card-left .candidate-photo img {
  object-position: center top;
}

.candidate-card-right .candidate-photo img {
  object-fit: contain;
  object-position: center bottom;
}

.candidate-photo.is-missing img {
  display: none;
}

.candidate-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  padding: 28px 30px 34px;
}

.candidate-kicker {
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.candidate-card h3,
.proposal-card h3 {
  margin: 12px 0 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.candidate-card h3 {
  color: #151515;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
}

.candidate-card h3 span {
  display: block;
}

.candidate-rule {
  width: 35px;
  height: 2px;
  margin: 16px 0;
  background: var(--gold);
}

.candidate-content p {
  margin: 0;
  color: #555555;
  font-size: 0.94rem;
  line-height: 1.65;
}

.candidate-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.candidate-list li {
  position: relative;
  min-width: 0;
  padding-left: 30px;
  color: #242424;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
}

.candidate-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.04em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
}

.chapa-center {
  grid-area: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: clamp(18px, 2vw, 30px) 0;
  text-align: center;
}

.chapa-mark {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--gold-soft);
}

.chapa-crown {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.chapa-kicker {
  display: grid;
  grid-template-columns: minmax(74px, 1fr) auto minmax(74px, 1fr);
  align-items: center;
  gap: 22px;
  width: min(100%, 430px);
  color: #9c7414;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chapa-kicker span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.chapa-kicker span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.chapa-center h2 {
  width: min(100%, 650px);
  margin: clamp(34px, 4vw, 54px) 0 0;
  color: #121212;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 3.45vw, 3.95rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.chapa-center h2 > span {
  display: block;
  white-space: nowrap;
}

.headline-nowrap {
  white-space: nowrap;
}

.gold-dot {
  color: var(--gold-soft);
}

.chapa-divider {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
  align-items: center;
  gap: 24px;
  width: min(100%, 360px);
  margin: clamp(28px, 3.2vw, 42px) auto 24px;
  color: var(--gold);
}

.chapa-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.chapa-divider span:last-child {
  background: linear-gradient(90deg, currentColor, transparent);
}

.chapa-divider svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chapa-center p {
  max-width: 600px;
  margin: 0 auto;
  color: #4b4b4b;
  font-size: 1.125rem;
  line-height: 1.75;
}

.chapa-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(34px, 4vw, 52px);
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(224, 173, 38, 0.55);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.62);
  color: #9c7414;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.value-pill svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.contact-copy h2 {
  color: inherit;
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  font-weight: 950;
}

.section-heading p,
.contact-copy p,
.cta-section p {
  margin: 0 auto;
  color: #5d5d5d;
  font-size: 1.08rem;
}

.proposals-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(96px, 7vw, 128px) 0 clamp(104px, 7vw, 132px);
  background:
    linear-gradient(rgba(4, 4, 4, 0.91), rgba(4, 4, 4, 0.97)),
    url("../assets/images/hero-bg.webp") center 43% / cover no-repeat;
  color: var(--white);
}

.proposals-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 2% 0%, rgba(220, 170, 41, 0.19), transparent 25%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.42));
}

.proposals-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 1400px);
  margin-inline: auto;
}

.proposals-header {
  display: grid;
  justify-items: center;
  text-align: center;
}

.proposals-kicker {
  display: grid;
  grid-template-columns: minmax(64px, 112px) 24px auto minmax(64px, 112px);
  align-items: center;
  gap: 20px;
  color: #e6b83f;
}

.proposals-kicker > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.proposals-kicker > span:last-child {
  background: linear-gradient(90deg, currentColor, transparent);
}

.proposals-kicker svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proposals-kicker p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.proposals-title {
  display: grid;
  justify-items: center;
  margin: clamp(30px, 3vw, 42px) 0 0;
  color: #f7f5ef;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(3.9rem, 5.55vw, 5.75rem);
  font-weight: 600;
  line-height: 0.87;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.proposals-title > span {
  display: block;
  white-space: nowrap;
}

.proposals-title-gold {
  padding: 0 0.05em 0.08em;
  background: linear-gradient(180deg, #f4ce65, #c28a17);
  background-clip: text;
  color: #dcaa29;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.proposals-divider {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) 8px minmax(72px, 1fr);
  align-items: center;
  gap: 10px;
  width: min(100%, 210px);
  margin: 30px 0 84px;
  color: rgba(230, 184, 63, 0.86);
}

.proposals-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.proposals-divider span:last-child {
  background: linear-gradient(90deg, currentColor, transparent);
}

.proposals-divider i,
.proposal-divider i {
  width: 7px;
  height: 7px;
  background: currentColor;
  transform: rotate(45deg);
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(22px, 2vw, 28px);
}

.proposal-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 380px;
  padding: 82px clamp(24px, 2.2vw, 38px) 40px;
  overflow: visible;
  border: 1px solid rgba(218, 168, 39, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8 0%, #f5f1e8 100%);
  color: var(--text-dark);
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.proposal-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 55px;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: #dcaa29;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.proposal-icon {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  margin: 0;
  border: 2px solid #dcaa29;
  border-radius: 50%;
  background: #090909;
  color: #dcaa29;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(220, 170, 41, 0.18);
  transform: translate(-50%, -50%);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.proposal-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.5;
}

.proposal-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.proposal-card h3 {
  min-height: 2.1em;
  margin: 16px 0 0;
  color: #111111;
  font-size: clamp(1.12rem, 1.35vw, 1.38rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.proposal-card h3 span {
  display: block;
  white-space: nowrap;
}

.proposal-divider {
  display: grid;
  grid-template-columns: 48px 7px 48px;
  align-items: center;
  gap: 10px;
  margin: 22px auto 20px;
  color: rgba(201, 151, 29, 0.82);
}

.proposal-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.proposal-divider span:last-child {
  background: linear-gradient(90deg, currentColor, transparent);
}

.proposal-card p {
  margin: 0;
  color: #353535;
  font-size: 1rem;
  line-height: 1.7;
}

.manifesto-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(90px, 9vw, 150px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.68) 0%, rgba(5, 5, 5, 0.88) 47%, rgba(5, 5, 5, 0.98) 100%),
    url("../assets/images/hero-bg.webp") center / cover no-repeat;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.manifesto-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 20%, rgba(220, 170, 41, 0.13), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(220, 170, 41, 0.09), transparent 25%);
}

.manifesto-watermark {
  position: absolute;
  z-index: -1;
  top: -48px;
  left: 2%;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(7.5rem, 15vw, 16.25rem);
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  pointer-events: none;
}

.manifesto-container {
  width: min(92%, 1500px);
  margin-inline: auto;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(50px, 6vw, 100px);
  align-items: center;
}

.manifesto-copy,
.manifesto-right {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.manifesto-copy,
.manifesto-right,
.manifesto-card-content,
.manifesto-card p,
.manifesto-copy p {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.manifesto-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #dcaa29;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.manifesto-eyebrow i {
  width: 46px;
  height: 2px;
  background: currentColor;
}

.manifesto-title {
  display: grid;
  justify-items: start;
  width: 100%;
  min-width: 0;
  margin: 30px 0 0;
  color: var(--white);
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(3.7rem, 4.7vw, 5rem);
  font-weight: 900;
  line-height: 0.89;
  letter-spacing: 0;
  text-transform: uppercase;
}

.manifesto-title span {
  display: block;
  white-space: nowrap;
}

.manifesto-title .gold {
  color: #dcaa29;
}

.manifesto-divider {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) 34px minmax(90px, 1fr);
  align-items: center;
  gap: 22px;
  width: min(100%, 520px);
  margin: 34px 0 30px;
  color: #dcaa29;
}

.manifesto-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

.manifesto-divider span:last-child {
  background: linear-gradient(90deg, currentColor, transparent);
}

.manifesto-divider svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manifesto-lead {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.06rem, 1.35vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
}

.manifesto-lead strong {
  font-weight: 800;
}

.manifesto-support {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.manifesto-values-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin-top: 38px;
  padding: 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.66);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.manifesto-value {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.manifesto-value:last-child {
  border-right: 0;
}

.manifesto-value svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #dcaa29;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manifesto-value p {
  display: grid;
  gap: 3px;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.manifesto-value strong {
  color: #e8bd50;
  font-weight: 800;
}

.manifesto-value span {
  color: rgba(255, 255, 255, 0.76);
}

.manifesto-right {
  display: grid;
  align-content: center;
}

.manifesto-quote {
  position: relative;
  max-width: 660px;
  margin: 0 0 42px;
  padding: 30px 52px 16px 58px;
  color: #f6f3ed;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.2;
}

.manifesto-quote::before,
.manifesto-quote::after {
  position: absolute;
  color: #e4ad25;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.manifesto-quote::before {
  content: "\201C";
  top: 0;
  left: 0;
}

.manifesto-quote::after {
  content: "\201D";
  right: 0;
  bottom: -10px;
}

.manifesto-quote span {
  color: #e4ad25;
}

.commitment-list {
  display: grid;
  gap: 18px;
}

.manifesto-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 28px;
  min-width: 0;
  min-height: 175px;
  padding: 30px 28px 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 2px solid rgba(220, 170, 41, 0.85);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.manifesto-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0;
  border: 2px solid #dcaa29;
  border-radius: 50%;
  background: #101010;
  color: #dcaa29;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.manifesto-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 14px);
  width: 1px;
  height: 88px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.manifesto-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manifesto-card-content h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.manifesto-card-rule {
  display: block;
  width: 30px;
  height: 2px;
  margin: 12px 0 11px;
  background: #dcaa29;
}

.manifesto-card-content p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.card-number {
  align-self: start;
  justify-self: end;
  color: rgba(255, 255, 255, 0.035);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 0.85;
}

.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(92px, 8vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.91) 48%, rgba(5, 5, 5, 0.985) 100%),
    url("../assets/images/hero-bg.webp"),
    #050505;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cta-section::before {
  background:
    radial-gradient(circle at 4% 75%, rgba(220, 170, 41, 0.24), transparent 25%),
    radial-gradient(circle at 12% 6%, rgba(220, 170, 41, 0.08), transparent 30%);
}

.cta-section::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.34)),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(255, 255, 255, 0.012) 52px 53px);
}

.final-cta-container {
  width: min(90%, 1440px);
  margin-inline: auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(60px, 7vw, 120px);
}

.cta-copy,
.cta-action-column {
  min-width: 0;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e3ae26;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.cta-eyebrow i {
  width: 48px;
  height: 2px;
  flex: 0 0 auto;
  background: #e3ae26;
}

.cta-section .cta-title {
  margin: 24px 0 0;
  color: #f7f7f7;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(3.65rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.91;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cta-title span {
  display: block;
  white-space: nowrap;
}

.cta-title .gold {
  color: #dcaa29;
  text-shadow: 0 8px 28px rgba(220, 170, 41, 0.14);
}

.cta-section .cta-support {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 400;
  line-height: 1.55;
}

.cta-support strong,
.cta-intro strong {
  color: #e0ad26;
  font-weight: 800;
}

.cta-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.cta-pillar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-width: 0;
  padding: 4px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-pillar:first-child {
  padding-left: 0;
}

.cta-pillar:last-child {
  padding-right: 0;
  border-right: 0;
}

.cta-pillar svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #e0ad26;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-pillar span,
.cta-pillar strong,
.cta-pillar small {
  display: block;
  min-width: 0;
}

.cta-pillar strong {
  color: #f8f8f8;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.cta-pillar small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.cta-action-column {
  display: flex;
  flex-direction: column;
}

.cta-section .cta-intro {
  max-width: 700px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
  font-weight: 400;
  line-height: 1.3;
}

.cta-card-list {
  display: grid;
  gap: 14px;
}

.cta-card {
  --cta-card-delay: 0ms;
  position: relative;
  display: grid;
  grid-template-columns: 64px 1px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 22px;
  min-height: 108px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cta-card:nth-child(2) {
  --cta-card-delay: 70ms;
}

.cta-card:nth-child(3) {
  --cta-card-delay: 140ms;
}

.cta-card-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(220, 170, 41, 0.58);
  border-radius: 8px;
  background: rgba(220, 170, 41, 0.045);
  color: #dcaa29;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.35s ease,
    color 0.35s ease;
}

.cta-card-icon svg,
.cta-card-arrow,
.cta-arrow svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-card-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.7;
}

.cta-card-divider {
  align-self: stretch;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.cta-card p {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.98rem, 1.1vw, 1.12rem);
  font-weight: 400;
  line-height: 1.48;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cta-card p strong {
  color: #fff;
  font-weight: 800;
}

.cta-card-arrow {
  width: 24px;
  height: 24px;
  color: #e0ad26;
  stroke-width: 2;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-main-button {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 0 20px 0 36px;
  background: linear-gradient(90deg, #c99419, #f0ba31);
  border: 1px solid #f1c34a;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
  color: #080808;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cta-arrow {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #101010;
  color: #dcaa29;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-arrow svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes cta-card-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-reveal-left.reveal {
  transform: translateX(-20px);
}

.cta-reveal-right.reveal {
  transform: translateY(25px);
}

.cta-reveal-left.reveal.is-visible,
.cta-reveal-right.reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

.cta-card.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.cta-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: cta-card-in 600ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--cta-card-delay) backwards;
}

@media (hover: hover) and (pointer: fine) {
  .cta-card.reveal.is-visible:hover {
    transform: translateX(5px);
    border-color: rgba(220, 170, 41, 0.42);
    background: linear-gradient(135deg, rgba(220, 170, 41, 0.065), rgba(255, 255, 255, 0.018));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  }

  .cta-card:hover .cta-card-icon {
    transform: scale(1.04);
    background: #dcaa29;
    color: #080808;
  }

  .cta-card:hover .cta-card-arrow {
    transform: translateX(4px);
  }

  .cta-main-button:hover {
    transform: translateY(-4px);
    background: linear-gradient(90deg, #d9a525, #f6c64b);
    box-shadow:
      0 20px 45px rgba(0, 0, 0, 0.35),
      0 0 30px rgba(220, 170, 41, 0.15);
  }

  .cta-main-button:hover .cta-arrow {
    transform: scale(1.06);
  }

  .cta-main-button:hover .cta-arrow svg {
    transform: translateX(4px);
  }
}

@media (hover: none), (pointer: coarse) {
  .cta-card.reveal.is-visible:active,
  .cta-main-button:active {
    transform: scale(0.99);
  }
}

@media (max-width: 1240px) {
  .cta-grid {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
    gap: 64px;
  }

  .cta-copy,
  .cta-action-column {
    width: 100%;
  }

  .cta-section .cta-title {
    font-size: clamp(3.7rem, 8vw, 5.65rem);
  }
}

@media (max-width: 640px) {
  .cta-section {
    padding: 78px 0 84px;
    background-position: 42% center;
  }

  .final-cta-container {
    width: min(calc(100% - 28px), 1440px);
  }

  .cta-grid {
    gap: 52px;
  }

  .cta-eyebrow {
    gap: 12px;
    font-size: 0.72rem;
  }

  .cta-eyebrow i {
    width: 38px;
  }

  .cta-section .cta-title {
    margin-top: 22px;
    font-size: clamp(2.15rem, 10vw, 3.5rem);
    line-height: 0.92;
  }

  .cta-section .cta-support {
    margin-top: 24px;
    font-size: 1rem;
  }

  .cta-pillars {
    margin-top: 30px;
  }

  .cta-pillar {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 2px 8px;
    text-align: center;
  }

  .cta-pillar svg {
    width: 34px;
    height: 34px;
  }

  .cta-pillar strong {
    font-size: 0.72rem;
  }

  .cta-pillar small {
    margin-top: 3px;
    font-size: 0.59rem;
  }

  .cta-section .cta-intro {
    margin-bottom: 24px;
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }

  .cta-card-list {
    gap: 12px;
  }

  .cta-card {
    grid-template-columns: 56px minmax(0, 1fr) 18px;
    gap: 13px;
    min-height: 116px;
    padding: 18px 14px;
  }

  .cta-card-icon {
    width: 56px;
    height: 56px;
  }

  .cta-card-icon svg {
    width: 30px;
    height: 30px;
  }

  .cta-card-divider {
    display: none;
  }

  .cta-card p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .cta-card-arrow {
    width: 18px;
    height: 18px;
  }

  .cta-main-button {
    min-height: 78px;
    gap: 12px;
    margin-top: 20px;
    padding: 0 10px 0 18px;
    font-size: 0.88rem;
  }

  .cta-arrow {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .cta-arrow svg {
    width: 23px;
    height: 23px;
  }
}

@media (min-width: 351px) and (max-width: 375px) {
  .cta-card {
    min-height: 128px;
  }
}

@media (max-width: 350px) {
  .cta-section .cta-title {
    font-size: 2.05rem;
  }

  .cta-pillar {
    padding-inline: 5px;
  }

  .cta-pillar small {
    font-size: 0.55rem;
  }

  .cta-card {
    grid-template-columns: 50px minmax(0, 1fr) 16px;
    gap: 10px;
    min-height: 144px;
    padding-inline: 11px;
  }

  .cta-card-icon {
    width: 50px;
    height: 50px;
  }

  .cta-card p {
    font-size: 0.9rem;
  }
}

.contact-section {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(224, 173, 38, 0.08), transparent 36%),
    var(--graphite);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 118px;
}

.contact-copy p {
  color: var(--muted);
}

.email-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--gold);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(9, 9, 9, 0.36);
  color: var(--white);
  padding: 14px 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: rgba(9, 9, 9, 0.56);
  outline: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 36%),
    #050505;
  color: var(--white);
  border-top: 1px solid rgba(220, 170, 41, 0.2);
}

.footer-container {
  width: min(92%, 1400px);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 3.4vw, 48px);
  padding: 68px 0 58px;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-logo {
  width: fit-content;
}

.footer-logo .brand-logo {
  width: min(100%, 220px);
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-rule {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, #dcaa29, rgba(220, 170, 41, 0.12));
}

.footer-brand p {
  max-width: 300px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
}

.footer-heading {
  margin: 3px 0 20px;
  color: #dcaa29;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-nav-list,
.footer-social-list {
  display: grid;
  gap: 8px;
}

.footer-nav a {
  width: fit-content;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.3;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social a {
  width: min(100%, 230px);
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid rgba(220, 170, 41, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.2;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.footer-social svg,
.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--gold);
}

.footer-social .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-contact {
  margin: 0;
  font-style: normal;
}

.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.footer-contact a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover {
    color: var(--gold);
    transform: translateX(3px);
  }

  .footer-social a:hover {
    border-color: rgba(220, 170, 41, 0.55);
    background: rgba(220, 170, 41, 0.07);
    color: var(--gold);
    transform: translateX(4px);
  }

  .footer-contact a:hover {
    border-color: rgba(220, 170, 41, 0.38);
    background: rgba(220, 170, 41, 0.055);
    color: var(--gold);
  }
}

@media (hover: none), (pointer: coarse) {
  .footer-social a:active,
  .footer-contact a:active {
    transform: scale(0.985);
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 20px 0 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.45;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes proposal-card-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.proposal-card.reveal {
  --proposal-delay: 0ms;
  opacity: 0;
  transform: translateY(24px);
}

.proposal-card.reveal:nth-child(2) {
  --proposal-delay: 80ms;
}

.proposal-card.reveal:nth-child(3) {
  --proposal-delay: 160ms;
}

.proposal-card.reveal:nth-child(4) {
  --proposal-delay: 240ms;
}

.proposal-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: proposal-card-in 600ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--proposal-delay) backwards;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .proposal-card.reveal.is-visible:hover {
    border-color: rgba(220, 170, 41, 0.75);
    background:
      radial-gradient(circle at 50% 0%, rgba(220, 170, 41, 0.08), transparent 42%),
      linear-gradient(180deg, #fffdf8 0%, #f5f1e8 100%);
    box-shadow:
      0 28px 60px rgba(0, 0, 0, 0.42),
      0 0 30px rgba(220, 170, 41, 0.08);
    transform: translateY(-10px);
  }

  .proposal-card:hover::after {
    width: 65%;
  }

  .proposal-card:hover .proposal-icon {
    background: #dcaa29;
    color: #090909;
    box-shadow: 0 10px 30px rgba(220, 170, 41, 0.28);
    transform: translate(-50%, -50%) scale(1.08);
  }

  .proposal-card:hover .proposal-card-content {
    transform: translateY(-3px);
  }
}

@media (hover: none), (pointer: coarse) {
  .proposal-card.reveal.is-visible:active {
    transform: scale(0.985);
  }
}

@keyframes manifesto-card-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.manifesto-reveal-left.reveal {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.manifesto-reveal-left.reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.manifesto-card.reveal {
  --manifesto-delay: 0ms;
  opacity: 0;
  transform: translateY(24px);
}

.manifesto-card.reveal:nth-child(2) {
  --manifesto-delay: 80ms;
}

.manifesto-card.reveal:nth-child(3) {
  --manifesto-delay: 160ms;
}

.manifesto-card.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: manifesto-card-in 600ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--manifesto-delay) backwards;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .manifesto-card.reveal.is-visible:hover {
    border-color: rgba(220, 170, 41, 0.35);
    border-right-color: #dcaa29;
    box-shadow:
      0 24px 55px rgba(0, 0, 0, 0.36),
      0 0 24px rgba(220, 170, 41, 0.06);
    transform: translateX(6px);
  }

  .manifesto-card:hover .manifesto-icon {
    transform: scale(1.06);
  }
}

@media (hover: none), (pointer: coarse) {
  .manifesto-card.reveal.is-visible:active {
    transform: scale(0.99);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .proposal-card.reveal,
  .proposal-card.reveal.is-visible {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .manifesto-reveal-left.reveal,
  .manifesto-reveal-left.reveal.is-visible,
  .manifesto-card.reveal,
  .manifesto-card.reveal.is-visible,
  .cta-reveal-left.reveal,
  .cta-reveal-left.reveal.is-visible,
  .cta-reveal-right.reveal,
  .cta-reveal-right.reveal.is-visible,
  .cta-card.reveal,
  .cta-card.reveal.is-visible {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

@media (max-width: 1240px) {
  .chapa-grid {
    grid-template-columns: repeat(2, minmax(0, 360px));
    grid-template-areas:
      "center center"
      "left right";
    gap: clamp(28px, 4vw, 46px);
  }

  .chapa-center {
    justify-self: center;
    max-width: 760px;
    padding: 0 0 12px;
  }

  .chapa-center h2 {
    font-size: clamp(3rem, 5.8vw, 4rem);
  }

  .candidate-photo {
    height: 380px;
  }

  .manifesto-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(60px, 8vw, 88px);
  }

  .manifesto-copy,
  .manifesto-right {
    width: min(100%, 820px);
    margin-inline: auto;
  }

  .manifesto-right {
    transform: none;
  }

  .manifesto-quote {
    max-width: 740px;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
    font-size: 0.8rem;
  }

  .main-nav .nav-cta {
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .hero-grid {
    min-height: min(840px, 100vh);
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: 22px;
    padding-top: 108px;
  }

  .hero-copy {
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(54px, 6.2vw, 82px);
  }

  .hero-visual {
    min-height: clamp(520px, 70vh, 670px);
  }

  .candidate-maruca {
    left: -13%;
    height: clamp(470px, 62vh, 600px);
  }

  .candidate-rodrigo {
    right: -13%;
    height: clamp(500px, 66vh, 640px);
  }

  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-item:nth-child(3n) {
    border-right: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .proposal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 82px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 78px;
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    align-content: start;
    gap: 0;
    height: calc(100vh - 74px);
    padding: 18px 20px 36px;
    background: rgba(9, 9, 9, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 0.25s ease, opacity 0.2s ease, visibility 0.25s ease;
  }

  body.is-menu-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0);
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .main-nav .nav-cta {
    min-height: 56px;
    margin-left: 0;
    margin-top: 18px;
    justify-content: center;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 104px;
  }

  .hero-copy {
    align-self: auto;
    padding: 10px 0 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 10.5vw, 5.1rem);
  }

  .hero-visual {
    min-height: clamp(420px, 58vw, 540px);
    width: min(100%, 620px);
    justify-self: center;
    margin-top: 6px;
  }

  .santos-watermark {
    top: 6%;
    right: 12%;
    font-size: clamp(4.8rem, 22vw, 9rem);
  }

  .candidate-maruca {
    left: 4%;
    bottom: -8px;
    height: clamp(390px, 52vw, 500px);
  }

  .candidate-rodrigo {
    right: 2%;
    bottom: 0;
    height: clamp(410px, 56vw, 530px);
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .manifesto-container {
    width: min(calc(100% - 28px), 1440px);
  }

  .manifesto-watermark {
    top: -18px;
    font-size: clamp(5.5rem, 28vw, 8rem);
  }

  .manifesto-title {
    margin-top: 24px;
    font-size: clamp(2rem, 10vw, 3.5rem);
    line-height: 0.91;
  }

  .manifesto-divider {
    grid-template-columns: minmax(50px, 1fr) 30px minmax(50px, 1fr);
    gap: 14px;
    margin: 28px 0 26px;
  }

  .manifesto-divider svg {
    width: 30px;
    height: 30px;
  }

  .manifesto-lead {
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .manifesto-values-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0 18px;
  }

  .manifesto-value {
    padding: 18px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .manifesto-value:last-child {
    border-bottom: 0;
  }

  .manifesto-quote {
    margin-bottom: 34px;
    padding: 30px 38px 16px 42px;
    font-size: clamp(1.65rem, 7.4vw, 2.2rem);
  }

  .manifesto-quote::before,
  .manifesto-quote::after {
    font-size: 3.8rem;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-container,
  .header-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-logo {
    max-width: 168px;
    height: 56px;
  }

  .brand-text {
    font-size: 0.84rem;
  }

  .brand-text::before {
    height: 30px;
  }

  .hero-grid {
    padding-bottom: 0;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .hero-visual {
    min-height: clamp(350px, 83vw, 470px);
  }

  .hero-visual::before {
    right: 0;
    bottom: 5%;
    width: 80%;
    height: 62%;
  }

  .candidate-maruca {
    left: -2%;
    height: clamp(320px, 78vw, 430px);
  }

  .candidate-rodrigo {
    right: -5%;
    height: clamp(340px, 82vw, 450px);
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-item,
  .value-item:nth-child(3n) {
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    text-align: center;
    min-height: 96px;
    border-right: 1px solid rgba(224, 173, 38, 0.26);
    border-bottom: 1px solid rgba(224, 173, 38, 0.18);
  }

  .value-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .value-icon svg {
    width: 34px;
    height: 34px;
  }

  .value-item:nth-child(2n) {
    border-right: 0;
  }

  .ticket-section,
  .proposals-section,
  .manifesto-section,
  .contact-section {
    padding: 68px 0;
  }

  .manifesto-section {
    padding: 84px 0 96px;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.85rem, 9.2vw, 2.65rem);
  }

  .proposal-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .proposal-card {
    min-height: 360px;
  }

  .proposals-section {
    padding: 84px 0 96px;
  }

  .proposals-container {
    width: min(calc(100% - 28px), 1400px);
  }

  .proposals-kicker {
    grid-template-columns: minmax(28px, 52px) 22px auto minmax(28px, 52px);
    gap: 10px;
  }

  .proposals-kicker p {
    font-size: 0.76rem;
  }

  .proposals-kicker svg {
    width: 22px;
    height: 22px;
  }

  .proposals-title {
    margin-top: 28px;
    font-size: clamp(2.35rem, 9vw, 3.6rem);
    line-height: 0.92;
  }

  .proposals-divider {
    margin: 25px 0 76px;
  }

  .proposal-card {
    padding: 80px 28px 36px;
  }

  .proposal-card h3 {
    font-size: 1.25rem;
  }

  .manifesto-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 20px;
    min-height: 240px;
    padding: 26px 20px;
  }

  .manifesto-icon {
    width: 64px;
    height: 64px;
  }

  .manifesto-icon::after {
    display: none;
  }

  .manifesto-icon svg {
    width: 32px;
    height: 32px;
  }

  .manifesto-card-content {
    padding: 0 0 24px;
  }

  .manifesto-card-content h3 {
    font-size: 0.96rem;
  }

  .manifesto-card-content p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .card-number {
    font-size: 2.2rem;
  }

  .candidate-content,
  .contact-form {
    padding: 24px;
  }

  .contact-grid {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .chapa-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "center"
      "left"
      "right";
    max-width: 430px;
    margin-inline: auto;
    gap: 28px;
  }

  .chapa-center {
    padding: 0 0 8px;
  }

  .chapa-kicker {
    grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
    gap: 14px;
  }

  .chapa-center h2 {
    margin-top: 28px;
    font-size: clamp(2.15rem, 8.2vw, 3rem);
  }

  .chapa-divider {
    grid-template-columns: minmax(58px, 1fr) auto minmax(58px, 1fr);
    gap: 16px;
    margin-top: 28px;
  }

  .chapa-center p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .chapa-pills {
    display: grid;
    width: min(100%, 360px);
    gap: 10px;
    margin-top: 28px;
  }

  .value-pill {
    justify-content: center;
  }

  .candidate-photo {
    height: 360px;
  }

  .candidate-card {
    height: auto;
    min-height: 810px;
  }
}

@media (max-width: 390px) {
  .proposals-title {
    font-size: clamp(1.75rem, 9.2vw, 2.25rem);
  }

  .proposals-kicker {
    grid-template-columns: minmax(20px, 38px) 20px auto minmax(20px, 38px);
    gap: 8px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-visual {
    min-height: 330px;
  }

  .candidate-maruca {
    height: 300px;
  }

  .candidate-rodrigo {
    height: 318px;
  }

  .value-item h2 {
    font-size: 0.78rem;
  }

  .chapa-container {
    width: min(calc(100% - 28px), 1400px);
  }

  .chapa-center h2 {
    font-size: clamp(1.55rem, 7.8vw, 2.05rem);
  }

  .candidate-photo {
    height: 318px;
  }

  .candidate-card {
    height: auto;
    min-height: 850px;
  }

  .candidate-card h3 {
    font-size: 2.1rem;
  }

  .candidate-content {
    padding: 22px;
  }
}

@media (max-width: 1024px) {
  .proposal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifesto-grid {
    gap: 56px;
  }

  .cta-grid {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-item,
  .value-item:nth-child(3n) {
    flex-direction: row;
    justify-content: flex-start;
    gap: 9px;
    min-height: 86px;
    padding: 12px 10px;
    border-right: 1px solid rgba(224, 173, 38, 0.26);
    border-bottom: 1px solid rgba(224, 173, 38, 0.18);
    text-align: left;
  }

  .value-item:nth-child(2n) {
    border-right: 0;
  }

  .value-item:nth-child(n + 5) {
    border-bottom: 0;
  }

  .value-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .value-icon svg {
    width: 30px;
    height: 30px;
  }

  .value-item h2 {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .proposals-section {
    padding: 60px 0 64px;
  }

  .proposals-container {
    width: min(calc(100% - 28px), 1400px);
  }

  .proposals-kicker {
    grid-template-columns: minmax(24px, 46px) 20px auto minmax(24px, 46px);
    gap: 9px;
  }

  .proposals-kicker p {
    font-size: 0.72rem;
  }

  .proposals-kicker svg {
    width: 20px;
    height: 20px;
  }

  .proposals-title {
    margin-top: 20px;
    font-size: clamp(2.125rem, 10vw, 3rem);
    line-height: 0.92;
  }

  .proposals-divider {
    width: min(100%, 164px);
    margin: 20px 0 40px;
  }

  .proposal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .proposal-card {
    flex-direction: column;
    min-height: 0;
    padding: 16px 12px 18px;
    overflow: hidden;
  }

  .proposal-icon {
    position: static;
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    transform: none;
  }

  .proposal-icon svg {
    width: 28px;
    height: 28px;
  }

  .proposal-card h3 {
    min-height: 2.1em;
    margin: 0;
    font-size: clamp(0.8rem, 3.5vw, 0.94rem);
    line-height: 1.05;
  }

  .proposal-divider {
    grid-template-columns: 24px 5px 24px;
    gap: 6px;
    margin: 12px auto;
  }

  .proposal-divider i {
    width: 5px;
    height: 5px;
  }

  .proposal-card p {
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .manifesto-section {
    padding-block: 60px;
  }

  .manifesto-container {
    width: min(calc(100% - 28px), 1500px);
  }

  .manifesto-grid {
    gap: 40px;
  }

  .manifesto-watermark {
    top: -10px;
    font-size: clamp(5rem, 26vw, 7rem);
  }

  .manifesto-title {
    margin-top: 20px;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 0.91;
  }

  .manifesto-divider {
    grid-template-columns: minmax(44px, 1fr) 28px minmax(44px, 1fr);
    gap: 12px;
    margin: 22px 0 20px;
  }

  .manifesto-divider svg {
    width: 28px;
    height: 28px;
  }

  .manifesto-lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .manifesto-support {
    margin-top: 16px;
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .manifesto-values-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 24px;
    padding: 12px 4px;
  }

  .manifesto-value {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
    text-align: center;
  }

  .manifesto-value:last-child {
    border-right: 0;
  }

  .manifesto-value svg {
    width: 30px;
    height: 30px;
  }

  .manifesto-value p {
    font-size: 0.64rem;
  }

  .manifesto-quote {
    margin: 0 0 24px;
    padding: 24px 30px 10px 36px;
    font-size: clamp(1.7rem, 8vw, 2.375rem);
    line-height: 1.08;
  }

  .manifesto-quote::before,
  .manifesto-quote::after {
    font-size: 3rem;
  }

  .commitment-list {
    gap: 12px;
  }

  .manifesto-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .manifesto-icon {
    width: 54px;
    height: 54px;
  }

  .manifesto-icon::after {
    display: none;
  }

  .manifesto-icon svg {
    width: 28px;
    height: 28px;
  }

  .manifesto-card-content {
    padding: 0;
  }

  .manifesto-card-content h3 {
    font-size: 0.9375rem;
    line-height: 1.15;
  }

  .manifesto-card-rule {
    display: none;
  }

  .manifesto-card-content p {
    margin-top: 6px;
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .card-number {
    display: none;
  }

  .cta-section {
    padding-block: 60px;
  }

  .cta-grid {
    gap: 36px;
  }

  .cta-section .cta-title {
    margin-top: 18px;
    font-size: clamp(1.95rem, 8.7vw, 2.45rem);
  }

  .cta-section .cta-support {
    margin-top: 18px;
    font-size: 0.95rem;
  }

  .cta-pillars {
    margin-top: 22px;
  }

  .cta-pillar {
    gap: 5px;
    padding-inline: 6px;
  }

  .cta-pillar svg {
    width: 30px;
    height: 30px;
  }

  .cta-pillar strong {
    font-size: 0.68rem;
  }

  .cta-pillar small {
    font-size: 0.56rem;
  }

  .cta-section .cta-intro {
    margin-bottom: 18px;
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .cta-card-list {
    gap: 10px;
  }

  .cta-card {
    grid-template-columns: 48px minmax(0, 1fr) 16px;
    gap: 10px;
    min-height: 0;
    padding: 14px 12px;
  }

  .cta-card-icon {
    width: 48px;
    height: 48px;
  }

  .cta-card-icon svg {
    width: 26px;
    height: 26px;
  }

  .cta-card p {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .cta-card-arrow {
    width: 16px;
    height: 16px;
  }

  .cta-main-button {
    min-height: 66px;
    margin-top: 16px;
    padding: 0 10px 0 16px;
    font-size: 0.8rem;
  }

  .cta-arrow {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .cta-arrow svg {
    width: 21px;
    height: 21px;
  }
}

@media (hover: hover) and (pointer: fine) and (max-width: 767px) {
  .proposal-card:hover .proposal-icon {
    transform: scale(1.04);
  }
}

@media (max-width: 480px) {
  .value-item,
  .value-item:nth-child(3n) {
    gap: 7px;
    min-height: 82px;
    padding: 10px 8px;
  }

  .value-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .value-icon svg {
    width: 28px;
    height: 28px;
  }

  .value-item h2 {
    font-size: 0.72rem;
  }

  .proposal-grid {
    gap: 12px;
  }

  .proposal-card {
    padding: 14px 10px 16px;
  }

  .proposal-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
  }

  .proposal-card h3 {
    font-size: clamp(0.78rem, 3.45vw, 0.9rem);
  }

  .manifesto-section,
  .cta-section {
    padding-block: 56px;
  }

  .manifesto-grid {
    gap: 36px;
  }

  .cta-grid {
    gap: 32px;
  }
}

@media (max-width: 375px) {
  .value-item,
  .value-item:nth-child(3n) {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 92px;
    padding: 8px 6px;
    text-align: center;
  }

  .value-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .value-icon svg {
    width: 26px;
    height: 26px;
  }

  .value-item h2 {
    font-size: 0.7rem;
  }
}

@media (max-width: 340px) {
  .proposal-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .proposal-card {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 16px;
    text-align: left;
  }

  .proposal-icon {
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .proposal-card-content {
    align-items: flex-start;
  }

  .proposal-card h3 {
    min-height: 0;
    font-size: 0.84rem;
  }

  .proposal-divider {
    display: none;
  }

  .proposal-card p {
    margin-top: 8px;
    text-align: left;
  }

  .manifesto-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .manifesto-icon {
    width: 48px;
    height: 48px;
  }

  .cta-card {
    grid-template-columns: 44px minmax(0, 1fr) 14px;
    gap: 8px;
    min-height: 0;
    padding: 12px 10px;
  }

  .cta-card-icon {
    width: 44px;
    height: 44px;
  }

  .cta-card p {
    font-size: 0.8125rem;
  }
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 44px;
    padding: 58px 0 52px;
  }

  .footer-social a {
    width: min(100%, 260px);
  }
}

@media (max-width: 767.98px) {
  .footer-container {
    width: min(calc(100% - 28px), 1400px);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding: 52px 0 44px;
  }

  .footer-heading {
    margin-bottom: 16px;
  }

  .footer-social a {
    width: min(100%, 320px);
  }

  .footer-contact a {
    width: min(100%, 420px);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    gap: 30px;
    padding-top: 46px;
  }

  .footer-logo .brand-logo {
    width: min(100%, 200px);
  }

  .footer-brand p {
    margin-top: 14px;
    font-size: 0.93rem;
  }

  .footer-social a,
  .footer-contact a {
    max-width: none;
  }

  .footer-bottom {
    padding: 18px 0 22px;
  }

  .footer-bottom p {
    font-size: 0.78rem;
  }
}
