@import "tailwindcss";

@font-face {
  font-family: "Gotham";
  src: url("/fonts/GOTHAM-BOLD.TTF") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --orange: #f56d1f;
  --yellow: #fddd10;
  --mint: #90c4b6;
  --navy: #192140;
  --white: #fffdf6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--orange);
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

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

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

.social-topbar {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  justify-content: center;
  min-height: 58px;
  padding: 8px clamp(20px, 5vw, 74px);
  position: relative;
  z-index: 30;
}

.social-topbar-label {
  color: var(--yellow);
  flex: 0 0 auto;
  font-family: "Gotham", Impact, "Arial Narrow Bold", sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.social-topbar-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.social-topbar a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  display: inline-flex;
  font-family: "Gotham", Arial, sans-serif;
  font-size: 11px;
  gap: 7px;
  letter-spacing: 0.04em;
  min-height: 34px;
  padding: 4px 12px 4px 5px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-topbar a span {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--navy);
  display: inline-flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.social-topbar a svg { height: 14px; width: 14px; }

.social-topbar a:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
}

.site-header {
  align-items: center;
  background: var(--orange);
  color: var(--white);
  display: flex;
  justify-content: flex-end;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 74px);
  position: relative;
  z-index: 20;
}

.brand {
  display: flex;
  line-height: 0;
}

.brand img {
  display: block;
  filter: brightness(0) invert(1);
  height: auto;
  width: clamp(96px, 10vw, 140px);
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  text-transform: uppercase;
}

nav a {
  font-family: "Gotham", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
}

nav a {
  border-bottom: 2px solid transparent;
  padding: 9px 0;
}

nav a:hover { border-bottom-color: var(--yellow); }

.hero {
  background: var(--orange);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  height: calc(100svh - 136px);
  overflow: hidden;
  min-height: 720px;
  padding: 24px clamp(18px, 7vw, 106px) 20px;
  position: relative;
}

.hero-noise {
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.hero-copy {
  align-self: start;
  max-width: 520px;
  padding: 0 0 28px;
  position: relative;
  z-index: 5;
}

.hero-lockup {
  display: block;
  filter: brightness(0) invert(1);
  height: auto;
  max-width: min(440px, 84vw);
  transform: translateX(-10px);
  width: clamp(280px, 37vw, 440px);
}

.party-line {
  font-family: "Gotham", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin: 24px 0 0;
  text-transform: lowercase;
}

.party-line strong { color: var(--yellow); }

.number,
.final-number {
  color: var(--yellow);
  font-family: "Gotham", Arial, sans-serif;
  font-size: clamp(76px, 10vw, 150px);
  letter-spacing: -0.1em;
  line-height: 0.78;
  margin-top: 20px;
  padding-right: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  font-family: "Gotham", Arial, sans-serif;
  font-size: 10px;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 42px;
  padding: 0 18px;
  text-transform: uppercase;
}

.button-primary { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }

.hero-portrait {
  align-self: end;
  display: flex;
  height: min(880px, 78vw);
  justify-content: flex-end;
  margin-right: calc(clamp(18px, 7vw, 106px) * -1);
  min-height: 460px;
  position: relative;
  z-index: 3;
}

.hero-portrait img {
  filter: drop-shadow(18px 18px 0 rgba(20, 40, 77, 0.16));
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
  position: relative;
  width: auto;
}

.badge {
  align-items: center;
  display: flex;
  font-family: "Gotham", Arial, sans-serif;
  font-size: clamp(13px, 1.5vw, 21px);
  justify-content: center;
  line-height: 0.86;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  z-index: 8;
}

.badge-uerj {
  bottom: calc(20% + clamp(100px, 9.5vw, 138px) + 18px);
  height: auto;
  left: calc(44% + clamp(96px, 10vw, 142px) + 12px);
  overflow: hidden;
  width: clamp(96px, 10vw, 142px);
}

.badge-round {
  background: var(--mint);
  border-radius: 50%;
  bottom: 28%;
  color: var(--white);
  height: clamp(96px, 10vw, 142px);
  left: 44%;
  transform: rotate(-10deg);
  width: clamp(96px, 10vw, 142px);
}

.badge-burst {
  background: var(--yellow);
  bottom: 20%;
  color: var(--navy);
  height: clamp(100px, 9.5vw, 138px);
  left: 53%;
  padding: 20px 16px;
  transform: rotate(7deg);
  width: clamp(110px, 10.5vw, 152px);
  clip-path: polygon(50% 0%, 62% 13%, 80% 8%, 86% 26%, 100% 38%, 90% 54%, 96% 73%, 77% 79%, 66% 100%, 49% 88%, 30% 96%, 23% 78%, 4% 70%, 12% 51%, 0 36%, 18% 25%, 20% 5%, 40% 12%);
}

.badge-burst span { white-space: nowrap; }

.proposals {
  background: var(--mint);
  padding: clamp(44px, 7vw, 88px) clamp(18px, 7vw, 104px) clamp(44px, 7vw, 80px);
}

.section-heading {
  display: grid;
  gap: 18px;
  grid-template-columns: 0.27fr 1fr;
  margin: 0 auto clamp(32px, 5vw, 58px);
  max-width: 1180px;
}

.section-kicker {
  color: var(--orange);
  font-family: "Gotham", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 7px 0 0;
  text-transform: uppercase;
}

.section-heading h2,
.story h2,
.final-cta h2 {
  font-family: "Gotham", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 72px);
  letter-spacing: -0.065em;
  line-height: 0.92;
  margin: 0;
  max-width: 880px;
  text-transform: uppercase;
}

.proposal-grid {
  display: grid;
  gap: 0 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: 1180px;
  padding: 0;
}

.proposal-grid li {
  align-items: flex-start;
  border-top: 1px solid rgba(20, 40, 77, 0.18);
  display: grid;
  gap: 14px;
  grid-template-columns: 34px 1fr;
  min-height: 78px;
  padding: 16px 0 12px;
}

.proposal-grid span {
  color: var(--orange);
  font-family: "Gotham", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.proposal-grid p {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.story {
  background: var(--yellow);
  display: block;
}

.story-label {
  display: none;
}

.story-copy {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(42px, 7vw, 84px) clamp(18px, 7vw, 104px);
}

.story h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 58px);
  margin: 0 0 28px;
  max-width: 800px;
}

.story-copy > p:not(.section-kicker) {
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1.36;
  margin: 0 0 14px;
  max-width: 900px;
}

.story-signoff {
  color: var(--orange);
  font-family: "Gotham", Arial, sans-serif;
  font-size: clamp(20px, 2.3vw, 32px) !important;
  margin-top: 22px !important;
}

.final-cta {
  align-items: center;
  background: var(--mint);
  color: var(--yellow);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: clamp(46px, 7vw, 90px) clamp(18px, 7vw, 104px);
}

.final-cta .section-kicker { color: var(--orange); }

.final-cta h2 {
  color: var(--yellow);
  font-size: clamp(42px, 7vw, 105px);
  text-transform: none;
}

.final-slogan {
  display: block;
  height: auto;
  overflow: hidden;
  width: 100%;
}

.final-number {
  color: var(--orange);
  font-size: clamp(70px, 9vw, 136px);
  margin: 0;
}

footer {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 36px clamp(20px, 7vw, 108px);
}

.brand-footer img { filter: none; width: clamp(98px, 10vw, 138px); }

footer p {
  font-family: "Gotham", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.footer-socials a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  display: inline-flex;
  font-family: "Gotham", Arial, sans-serif;
  font-size: 10px;
  gap: 7px;
  min-height: 34px;
  padding: 4px 11px 4px 5px;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--yellow);
}

.footer-social-icon {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--navy);
  display: inline-flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.footer-socials svg { height: 14px; width: 14px; }

@media (max-width: 760px) {
  .social-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 9px 18px;
  }

  .social-topbar-label { font-size: 18px; }

  .social-topbar-links { justify-content: flex-start; }

  .site-header { min-height: 62px; padding: 12px 18px; }
  .brand img { width: 106px; }
  nav a { font-size: 9px; }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    height: auto;
    min-height: 390px;
    padding: 22px 18px 18px;
  }

  .hero-copy { align-self: start; padding: 0 0 18px; }
  .hero-lockup { transform: translate(-6px, -12px); width: min(202px, 50vw); }
  .party-line { font-size: 20px; margin-top: 17px; }
  .number { font-size: clamp(58px, 19vw, 92px); margin-top: 16px; }
  .hero-actions { display: none; }

  .hero-portrait { height: 348px; margin-right: -18px; min-height: 0; }
  .badge-uerj { bottom: 54%; left: 61%; width: 76px; }
  .badge-round { bottom: 14%; left: 61%; height: 76px; width: 76px; }
  .badge-burst { bottom: 32%; left: 75%; height: 72px; padding: 12px 7px; width: 80px; }
  .badge { font-size: 12px; }
  .badge-burst { font-size: 10px; }

  .proposals { padding: 36px 18px 28px; }
  .section-heading { display: block; margin-bottom: 25px; }
  .section-heading h2 { font-size: clamp(34px, 11vw, 54px); margin-top: 12px; }
  .proposal-grid { display: block; }
  .proposal-grid li { min-height: 0; padding: 11px 0 10px; }
  .proposal-grid p { font-size: 14px; }

  .story-copy { padding: 36px 18px 34px; }
  .story h2 { font-size: clamp(29px, 9vw, 46px); margin-bottom: 23px; }
  .story-copy > p:not(.section-kicker) { font-size: 14px; line-height: 1.3; }
  .final-cta { display: block; padding: 34px 18px 40px; }
  .final-cta h2 { font-size: clamp(48px, 15vw, 76px); }
  .final-number { font-size: 86px; margin: 20px 0 24px; }
  .final-cta .button { width: 100%; }

  footer { align-items: flex-start; flex-direction: column; gap: 18px; padding: 28px 18px; }
  .footer-socials { flex-direction: column; justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
