:root {
  --azul-900: #00113c;
  --azul-700: #0b2c78;
  --amarelo-500: #f7b101;
  --gelo-100: #f4f6fb;
  --cinza-700: #334155;
  --branco: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--azul-900);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #f4f6fb 100%);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  position: relative;
  z-index: 3;
}

.brand {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--branco);
  font-size: 1.2rem;
}

.menu-links {
  display: flex;
  gap: 1.1rem;
}

.menu-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.menu-links a:hover {
  color: var(--amarelo-500);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 177, 1, 0.28), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.25), transparent 36%),
    linear-gradient(130deg, #00113c 0%, #0b2c78 72%, #2342a6 100%);
  min-height: 78vh;
  padding-bottom: 4rem;
}

.hero-content {
  padding: 4.5rem 0 3rem;
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.6rem;
  align-items: center;
}

.hero-text {
  min-width: 0;
}

.hero-photo {
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(420px, 100%);
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 42px rgba(0, 11, 40, 0.35);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-highlight {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  width: 100%;
  margin: 0;
  background: var(--amarelo-500);
  color: #0a173f;
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.05em;
  padding: 0.6rem 1rem;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.photo-number {
  font-size: clamp(5.8rem, 14vw, 9.2rem);
  line-height: 0.85;
  color: #c1121f;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.45), 0 8px 16px rgba(0, 0, 0, 0.28);
}

.photo-party {
  font-size: clamp(0.88rem, 1.6vw, 1.12rem);
  line-height: 1;
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--branco);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-family: "Archivo Black", sans-serif;
  line-height: 1.05;
  color: var(--branco);
  text-wrap: balance;
}

.subtitle {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-top: 1.2rem;
}

.hero-cta {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  border-radius: 0.65rem;
  padding: 0.85rem 1.25rem;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.btn-primary {
  background: var(--amarelo-500);
  color: #192544;
  box-shadow: 0 10px 24px rgba(247, 177, 1, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--branco);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-shape {
  position: absolute;
  filter: blur(2px);
  opacity: 0.45;
}

.hero-shape-1 {
  width: 280px;
  height: 280px;
  border-radius: 50% 50% 40% 60%;
  background: linear-gradient(160deg, #f7b101, #ffdd7c);
  bottom: -80px;
  right: -30px;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  border-radius: 46% 54% 62% 38%;
  background: linear-gradient(160deg, #9fb4f1, #ffffff);
  top: 10%;
  right: 12%;
}

main section {
  padding: 4.5rem 0;
}

.manifesto h2,
.propostas h2,
.compromissos h2,
.apoie h2 {
  font-family: "Archivo Black", sans-serif;
  line-height: 1.1;
  color: var(--azul-900);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 0;
}

.manifesto p {
  max-width: 70ch;
  color: var(--cinza-700);
  font-size: 1.08rem;
}

.campaign-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  padding-top: 1rem;
}

.campaign-feature-copy {
  border-left: 8px solid var(--amarelo-500);
  padding-left: 1.3rem;
}

.section-kicker {
  margin: 0 0 0.6rem;
  color: #c1121f;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.campaign-feature h2 {
  margin: 0;
  color: var(--azul-900);
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.campaign-feature-copy > p:last-child {
  color: var(--cinza-700);
  font-size: 1.08rem;
  max-width: 34ch;
}

.campaign-art {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 17, 60, 0.18);
}

.campaign-art img {
  display: block;
  width: 100%;
  height: auto;
}

.propostas {
  background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--branco);
  border-radius: 1rem;
  border-top: 5px solid var(--amarelo-500);
  box-shadow: 0 12px 36px rgba(18, 40, 94, 0.08);
  padding: 1.2rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: var(--azul-700);
  font-size: 1.25rem;
}

.card p {
  color: var(--cinza-700);
}

.card ul {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
}

.card li {
  margin-bottom: 0.35rem;
}

.compromissos {
  padding-top: 4rem;
}

.commit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
}

.commit-list p {
  margin: 0;
  background: #ffffff;
  border-left: 4px solid #0b2c78;
  border-radius: 0.6rem;
  box-shadow: 0 8px 22px rgba(11, 44, 120, 0.08);
  padding: 0.95rem;
}

.apoie {
  background:
    radial-gradient(circle at 15% 30%, rgba(247, 177, 1, 0.18), transparent 26%),
    linear-gradient(140deg, #00113c 0%, #16378b 100%);
  color: var(--branco);
  text-align: center;
}

.apoie h2,
.apoie p {
  color: var(--branco);
}

.apoie p {
  max-width: 65ch;
  margin: 0 auto 1.3rem;
}

.footer {
  background: #020f32;
  color: rgba(255, 255, 255, 0.82);
  padding: 1rem 0;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 900px) {
  .campaign-feature {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

  .hero-photo {
    justify-self: start;
    width: min(360px, 100%);
    order: -1;
  }

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

  .commit-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    gap: 0.75rem;
  }

  .menu-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 66vh;
  }

  main section {
    padding: 3.3rem 0;
  }
}
