:root {
  --solid-orange: #ff8300;
  --solid-orange-deep: #de761c;
  --solid-blue: #293b97;
  --solid-blue-deep: #13245f;
  --ink: #111827;
  --muted: #5f6676;
  --paper: #fffaf3;
  --white: #ffffff;
  --cyan: #00a6c8;
  --red: #e43d30;
  --shadow: 0 30px 80px rgba(11, 22, 60, 0.22);
}

/* Cinematic campaign layer */
:root {
  --violet: #7b2ff7;
  --hot-pink: #ff3ea5;
  --sunset: #ff9f1c;
  --night: #070716;
  --hero-shift: 0px;
  --parallax: 0px;
  --scroll-progress: 0%;
}

body {
  background:
    linear-gradient(180deg, #070716 0%, #15103a 28%, #fff7ea 62%, #070716 100%);
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: fixed;
  z-index: 20;
}

.scroll-progress {
  background: linear-gradient(90deg, var(--solid-orange), var(--hot-pink), var(--cyan));
  box-shadow: 0 0 26px rgba(255, 62, 165, 0.48);
  height: 4px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  width: 100%;
  z-index: 30;
}

.site-header {
  background: rgba(7, 7, 22, 0.66);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.brand small,
.nav a {
  color: rgba(255, 255, 255, 0.72);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.header-cta {
  background: linear-gradient(135deg, var(--solid-orange), var(--hot-pink));
  box-shadow: 0 15px 34px rgba(255, 62, 165, 0.3);
}

.hero {
  min-height: 100svh;
}

.hero-media img {
  filter: saturate(1.26) contrast(1.08);
  transform: translate3d(0, var(--hero-shift), 0) scale(1.08);
  transition: transform 0.12s linear;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 22, 0.97) 0%, rgba(21, 16, 58, 0.83) 46%, rgba(255, 62, 165, 0.24) 100%),
    linear-gradient(145deg, rgba(255, 159, 28, 0.58), transparent 42%),
    linear-gradient(18deg, rgba(41, 59, 151, 0.38), rgba(255, 62, 165, 0.3));
}

.hero::before {
  bottom: 8%;
  color: rgba(255, 255, 255, 0.06);
  content: "RIO 2026";
  font-family: "Exo 2", sans-serif;
  font-size: 12rem;
  font-weight: 900;
  left: 2vw;
  line-height: 0.75;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.hero-content {
  animation: titleRise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  display: block;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 11px;
  text-transform: uppercase;
}

.primary-button,
.secondary-button,
.join-form button {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-button:hover,
.secondary-button:hover,
.join-form button:hover {
  transform: translateY(-3px);
}

.primary-button {
  background: linear-gradient(135deg, var(--solid-orange), var(--hot-pink));
  box-shadow: 0 20px 46px rgba(255, 62, 165, 0.28);
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.78);
}

.hero-ticket {
  animation: ticketFloat 4s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.92);
}

.scroll-cue {
  align-items: center;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.74);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 9px;
  left: 50%;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-cue::after {
  animation: cueDrop 1.25s ease-in-out infinite;
  background: var(--solid-orange);
  content: "";
  height: 26px;
  width: 2px;
}

.cinematic-marquee {
  background: linear-gradient(90deg, var(--solid-orange), var(--hot-pink), var(--violet));
  color: var(--white);
  overflow: hidden;
  padding: 16px 0;
}

.cinematic-marquee div {
  animation: marqueeSlide 22s linear infinite;
  display: flex;
  gap: 28px;
  width: max-content;
}

.cinematic-marquee span {
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.cinema-break {
  align-items: end;
  background: var(--night);
  color: var(--white);
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  padding: 92px max(24px, calc((100vw - 1160px) / 2));
  position: relative;
}

.cinema-break img {
  filter: saturate(1.18) contrast(1.08);
  height: 118%;
  inset: -9% 0 0;
  object-fit: cover;
  position: absolute;
  transform: translate3d(0, calc(var(--parallax) * -0.16), 0) scale(1.04);
  width: 100%;
}

.cinema-break::after {
  background:
    linear-gradient(90deg, rgba(7, 7, 22, 0.96), rgba(7, 7, 22, 0.55) 60%, rgba(255, 131, 0, 0.35)),
    linear-gradient(0deg, rgba(7, 7, 22, 0.85), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.cinema-break-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.cinema-break h2 {
  font-family: "Exo 2", sans-serif;
  font-size: 5.4rem;
  font-weight: 900;
  line-height: 0.92;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.cinema-break p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}

.story-section,
.people,
.join {
  background: var(--paper);
}

.timeline-card,
.platform-grid article,
.person-card,
.movement-panel,
.join-form,
.section-heading,
.cinema-break-copy {
  will-change: transform, opacity;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 44px, 0) scale(0.98);
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1), transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.timeline-card:nth-child(2),
.platform-grid article:nth-child(2),
.person-card:nth-child(2) {
  transition-delay: 90ms;
}

.timeline-card:nth-child(3),
.platform-grid article:nth-child(3) {
  transition-delay: 170ms;
}

.timeline-card:nth-child(4),
.platform-grid article:nth-child(4) {
  transition-delay: 250ms;
}

.timeline-card,
.platform-grid article,
.person-card {
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition-property: opacity, transform, box-shadow;
}

.timeline-card:hover,
.platform-grid article:hover,
.person-card:hover {
  box-shadow: 0 34px 85px rgba(7, 7, 22, 0.24);
  transform: translateY(-6px);
}

.image-card img,
.portrait img {
  transform: translate3d(0, calc(var(--parallax) * -0.04), 0) scale(1.06);
}

.platform {
  background:
    linear-gradient(130deg, rgba(7, 7, 22, 0.94), rgba(41, 59, 151, 0.87) 48%, rgba(255, 62, 165, 0.55)),
    url("https://marcioponcio.com.br/wp-content/uploads/2024/09/services-section-bg-1.png") center / cover;
}

.platform-grid article {
  backdrop-filter: blur(14px);
}

.movement {
  background:
    linear-gradient(90deg, rgba(7, 7, 22, 0.88), rgba(255, 62, 165, 0.4), rgba(255, 131, 0, 0.72)),
    url("https://marcioponcio.com.br/wp-content/uploads/2026/01/minha_trajetoria_Prancheta-1.jpg") center / cover fixed;
}

.movement-panel,
.join-form {
  background: rgba(7, 7, 22, 0.92);
}

.form-note {
  color: var(--solid-orange);
  font-weight: 900;
  margin: 10px 0 0;
}

@keyframes titleRise {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ticketFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes cueDrop {
  0%,
  100% {
    transform: scaleY(0.35);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

main {
  overflow-x: hidden;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.12);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 50%;
  padding: 10px 12px 10px 14px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 178px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--solid-orange), var(--solid-blue));
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: center;
  min-width: 0;
}

.nav a {
  border-radius: 999px;
  color: #2a3144;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 13px;
}

.nav a:hover {
  background: rgba(41, 59, 151, 0.09);
  color: var(--solid-blue);
}

.header-cta,
.primary-button,
.secondary-button,
.join-form button {
  border-radius: 999px;
  font-weight: 900;
}

.header-cta {
  background: var(--solid-orange);
  color: var(--white);
  padding: 12px 18px;
}

.hero {
  align-items: end;
  background: var(--solid-blue-deep);
  color: var(--white);
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 82px;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media img {
  filter: saturate(1.05) contrast(1.05);
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 18, 42, 0.96) 0%, rgba(16, 28, 78, 0.88) 42%, rgba(255, 131, 0, 0.16) 100%),
    radial-gradient(circle at 75% 26%, rgba(255, 131, 0, 0.46), transparent 34%),
    linear-gradient(180deg, rgba(19, 36, 95, 0.08), rgba(19, 36, 95, 0.72));
}

.hero::after {
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12) 0 1px,
    transparent 1px 130px
  );
  content: "";
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  max-width: 770px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--solid-orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Exo 2", sans-serif;
  font-size: 9.6rem;
  font-weight: 900;
  line-height: 0.82;
  margin: 0;
  max-width: 900px;
  text-transform: uppercase;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.55;
  margin: 30px 0 0;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
}

.primary-button {
  background: var(--solid-orange);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(255, 131, 0, 0.28);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero-ticket {
  background: var(--white);
  border-left: 9px solid var(--solid-orange);
  bottom: 50px;
  box-shadow: var(--shadow);
  color: var(--solid-blue-deep);
  display: grid;
  gap: 7px;
  min-width: 240px;
  padding: 22px;
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  z-index: 2;
}

.hero-ticket span {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-ticket strong {
  font-family: "Exo 2", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.intro-strip {
  background: var(--solid-orange);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.intro-strip div {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  padding: 28px max(20px, calc((100vw - 1160px) / 2 / 4));
  text-align: center;
}

.intro-strip span,
.intro-strip strong {
  display: block;
}

.intro-strip span {
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0.76;
  text-transform: uppercase;
}

.intro-strip strong {
  font-family: "Exo 2", sans-serif;
  font-size: 2.25rem;
  text-transform: uppercase;
}

.story-section,
.people,
.join {
  padding: 92px max(24px, calc((100vw - 1160px) / 2));
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 30px;
  grid-template-columns: 1.05fr 0.95fr;
  margin-bottom: 34px;
}

.section-heading h2,
.platform h2,
.movement h2,
.join h2,
.person-copy h2 {
  font-family: "Exo 2", sans-serif;
  font-weight: 900;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.section-heading h2,
.platform h2,
.movement h2,
.join h2 {
  font-size: 5.2rem;
}

.section-heading p,
.platform p,
.movement p,
.join p,
.person-copy p,
.timeline-card p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

.timeline {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr 1fr;
}

.timeline-card {
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
  min-height: 300px;
  overflow: hidden;
  padding: 30px;
}

.timeline-card.large {
  grid-row: span 2;
}

.timeline-card.accent {
  background: var(--solid-blue);
  color: var(--white);
}

.timeline-card.accent p {
  color: rgba(255, 255, 255, 0.82);
}

.timeline-card.image-card {
  min-height: 360px;
  padding: 0;
}

.timeline-card.image-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.chapter {
  color: var(--solid-orange);
  display: block;
  font-family: "Exo 2", sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 30px;
}

.timeline-card h3,
.platform-grid h3 {
  font-family: "Exo 2", sans-serif;
  font-size: 1.75rem;
  line-height: 1.05;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.platform {
  background:
    linear-gradient(135deg, rgba(41, 59, 151, 0.95), rgba(19, 36, 95, 0.98)),
    url("https://marcioponcio.com.br/wp-content/uploads/2024/09/services-section-bg-1.png") center / cover;
  color: var(--white);
  padding: 92px max(24px, calc((100vw - 1160px) / 2));
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.74);
}

.platform-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.platform-grid article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 315px;
  padding: 26px;
}

.platform-grid article:nth-child(2) {
  background: rgba(0, 166, 200, 0.16);
}

.platform-grid article:nth-child(3) {
  background: rgba(228, 61, 48, 0.16);
}

.platform-grid article:nth-child(4) {
  background: rgba(255, 131, 0, 0.22);
}

.platform-grid p {
  color: rgba(255, 255, 255, 0.75);
}

.icon {
  align-items: center;
  background: var(--solid-orange);
  color: var(--white);
  display: inline-flex;
  font-family: "Exo 2", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  margin-bottom: 28px;
  width: 46px;
}

.people {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}

.person-card {
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 520px auto;
  overflow: hidden;
}

.portrait {
  background: var(--solid-blue-deep);
  overflow: hidden;
}

.portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.sarah .portrait img {
  object-position: center center;
}

.person-copy {
  padding: 30px;
}

.person-copy h2 {
  color: var(--solid-blue-deep);
  font-size: 4rem;
  margin-bottom: 18px;
}

.movement {
  background:
    linear-gradient(90deg, rgba(255, 131, 0, 0.94), rgba(255, 131, 0, 0.58)),
    url("https://marcioponcio.com.br/wp-content/uploads/2026/01/minha_trajetoria_Prancheta-1.jpg") center / cover fixed;
  color: var(--white);
  padding: 120px max(24px, calc((100vw - 1160px) / 2));
}

.movement-panel {
  background: rgba(19, 36, 95, 0.92);
  max-width: 780px;
  padding: 42px;
}

.movement p,
.movement .section-kicker {
  color: rgba(255, 255, 255, 0.84);
}

.movement-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.movement-stats div {
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.movement-stats strong,
.movement-stats span {
  display: block;
}

.movement-stats strong {
  color: var(--solid-orange);
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
}

.movement-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.join {
  align-items: center;
  background: var(--white);
  display: grid;
  gap: 50px;
  grid-template-columns: 0.95fr 1.05fr;
}

.join-form {
  background: var(--solid-blue-deep);
  box-shadow: var(--shadow);
  color: var(--white);
  display: grid;
  gap: 16px;
  padding: 30px;
}

.join-form label {
  color: rgba(255, 255, 255, 0.74);
  display: grid;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

.join-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  min-height: 52px;
  outline: none;
  padding: 0 16px;
}

.join-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.join-form button {
  background: var(--solid-orange);
  border: 0;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  min-height: 54px;
}

.footer {
  align-items: center;
  background: #0b122a;
  color: var(--white);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 28px max(24px, calc((100vw - 1160px) / 2));
}

.footer strong,
.footer span {
  display: block;
}

.footer span,
.sources a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.sources {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.sources a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

@media (max-width: 980px) {
  .site-header {
    align-items: stretch;
    border-radius: 24px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand {
    flex: 1;
  }

  .nav {
    order: 3;
    overflow-x: auto;
    width: 100%;
  }

  .header-cta {
    align-items: center;
    display: inline-flex;
  }

  .hero {
    padding-top: 190px;
  }

  .hero-ticket {
    margin-top: 36px;
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
  }

  .section-heading,
  .timeline,
  .people,
  .join {
    grid-template-columns: 1fr;
  }

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

  .person-card {
    grid-template-rows: 440px auto;
  }

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

  .hero-copy {
    font-size: 1.1rem;
  }

  .section-heading h2,
  .platform h2,
  .movement h2,
  .join h2 {
    font-size: 4rem;
  }

  .person-copy h2 {
    font-size: 3.15rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .header-cta {
    display: none;
  }

  .nav a {
    font-size: 0.78rem;
    padding: 8px 7px;
    white-space: nowrap;
  }

  .hero {
    min-height: 92vh;
    padding: 190px 18px 48px;
  }

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

  .hero-copy {
    font-size: 0.98rem;
    max-width: 330px;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .intro-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-strip div {
    padding: 22px 12px;
  }

  .intro-strip strong {
    font-size: 1.35rem;
  }

  .story-section,
  .platform,
  .people,
  .movement,
  .join {
    padding-left: 18px;
    padding-right: 18px;
  }

  .story-section,
  .people,
  .join {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .platform {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading h2,
  .platform h2,
  .movement h2,
  .join h2 {
    font-size: 2.75rem;
  }

  .person-copy h2 {
    font-size: 2.5rem;
  }

  .platform-grid,
  .movement-stats {
    grid-template-columns: 1fr;
  }

  .timeline-card {
    min-height: auto;
    padding: 24px;
  }

  .timeline-card.image-card {
    min-height: 300px;
  }

  .person-card {
    grid-template-rows: 360px auto;
  }

  .person-copy,
  .movement-panel,
  .join-form {
    padding: 24px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .sources {
    justify-content: flex-start;
  }
}

/* Final cinematic overrides */
.site-header {
  background: rgba(7, 7, 22, 0.66);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.brand small,
.nav a {
  color: rgba(255, 255, 255, 0.72);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.header-cta,
.primary-button,
.join-form button {
  background: linear-gradient(135deg, var(--solid-orange), var(--hot-pink));
}

.hero {
  min-height: 100svh;
}

.hero-media img {
  filter: saturate(1.26) contrast(1.08);
  transform: translate3d(0, var(--hero-shift), 0) scale(1.08);
  transition: transform 0.12s linear;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 22, 0.97) 0%, rgba(21, 16, 58, 0.83) 46%, rgba(255, 62, 165, 0.24) 100%),
    linear-gradient(145deg, rgba(255, 159, 28, 0.58), transparent 42%),
    linear-gradient(18deg, rgba(41, 59, 151, 0.38), rgba(255, 62, 165, 0.3));
}

.hero::before {
  bottom: 8%;
  color: rgba(255, 255, 255, 0.06);
  content: "RIO 2026";
  font-family: "Exo 2", sans-serif;
  font-size: 12rem;
  font-weight: 900;
  left: 2vw;
  line-height: 0.75;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.hero h1 {
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 11px;
  text-transform: uppercase;
}

.primary-button,
.secondary-button,
.join-form button {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-button:hover,
.secondary-button:hover,
.join-form button:hover {
  transform: translateY(-3px);
}

.hero-ticket {
  animation: ticketFloat 4s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.92);
}

.cinematic-marquee {
  background: linear-gradient(90deg, var(--solid-orange), var(--hot-pink), var(--violet));
}

.story-section,
.people,
.join {
  background: var(--paper);
}

.platform {
  background:
    linear-gradient(130deg, rgba(7, 7, 22, 0.94), rgba(41, 59, 151, 0.87) 48%, rgba(255, 62, 165, 0.55)),
    url("https://marcioponcio.com.br/wp-content/uploads/2024/09/services-section-bg-1.png") center / cover;
}

.platform-grid article {
  backdrop-filter: blur(14px);
}

.movement {
  background:
    linear-gradient(90deg, rgba(7, 7, 22, 0.88), rgba(255, 62, 165, 0.4), rgba(255, 131, 0, 0.72)),
    url("https://marcioponcio.com.br/wp-content/uploads/2026/01/minha_trajetoria_Prancheta-1.jpg") center / cover fixed;
}

.movement-panel,
.join-form {
  background: rgba(7, 7, 22, 0.92);
}

@media (max-width: 980px) {
  .cinema-break h2 {
    font-size: 4rem;
  }
}

@media (max-width: 640px) {
  .cinematic-marquee span {
    font-size: 1.28rem;
  }

  .cinema-break {
    min-height: 74vh;
    padding: 64px 18px;
  }

  .cinema-break h2 {
    font-size: 2.7rem;
  }

  .hero::before {
    font-size: 6rem;
  }

  .scroll-cue {
    display: none;
  }
}

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

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

/* Alignment and mobile polish */
body {
  background: var(--paper);
}

.story-section,
.platform,
.people,
.movement,
.join,
.cinema-break {
  scroll-margin-top: 120px;
}

.section-heading {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.timeline {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-auto-rows: minmax(340px, auto);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card,
.timeline-card.large,
.timeline-card.accent,
.timeline-card.image-card {
  grid-row: auto;
  min-height: 0;
}

.timeline-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 28px;
}

.timeline-card.image-card {
  padding: 0;
}

.timeline-card.image-card img {
  height: 100%;
  min-height: 340px;
}

.chapter {
  margin-bottom: 22px;
}

.timeline-card h3 {
  min-height: 3.7rem;
}

.timeline-card p {
  margin-top: auto;
}

.platform-grid {
  align-items: stretch;
}

.platform-grid article {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.platform-grid article p {
  margin-top: auto;
}

.people {
  align-items: stretch;
}

.person-card {
  height: 100%;
}

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

  .timeline-card.image-card img {
    min-height: 320px;
  }
}

@media (max-width: 980px) {
  .site-header {
    max-height: none;
  }

  .section-heading {
    gap: 18px;
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    border-radius: 22px;
    gap: 8px;
    padding: 10px;
  }

  .site-header.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -130%);
    visibility: hidden;
  }

  .brand {
    min-width: 0;
    width: 100%;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    overflow-x: visible;
    width: 100%;
  }

  .nav a {
    font-size: 0.72rem;
    padding: 8px 5px;
    text-align: center;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    padding: 150px 18px 48px;
  }

  .hero-media img {
    object-position: 63% top;
    transform: scale(1.04);
  }

  .hero h1 {
    font-size: 3.45rem;
    line-height: 0.88;
    max-width: 100%;
  }

  .hero-tags {
    gap: 8px;
  }

  .hero-tags span {
    font-size: 0.68rem;
    padding: 7px 8px;
  }

  .hero-copy {
    font-size: 0.94rem;
    max-width: 100%;
  }

  .hero-actions {
    max-width: none;
    width: 100%;
  }

  .hero-ticket {
    min-width: 0;
    width: 100%;
  }

  .hero-content {
    max-width: 100%;
    min-width: 0;
  }

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

  .intro-strip strong {
    font-size: 1.2rem;
  }

  .timeline,
  .platform-grid,
  .movement-stats {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-auto-rows: auto;
  }

  .timeline-card {
    min-height: 250px;
  }

  .timeline-card h3 {
    min-height: 0;
  }

  .timeline-card.image-card,
  .timeline-card.image-card img {
    min-height: 280px;
  }

  .section-heading h2,
  .platform h2,
  .movement h2,
  .join h2,
  .cinema-break h2 {
    font-size: 2.35rem;
  }

  .section-heading p,
  .platform p,
  .movement p,
  .join p,
  .person-copy p,
  .timeline-card p {
    font-size: 0.94rem;
  }

  .person-card {
    grid-template-rows: 330px auto;
  }

  .person-copy h2 {
    font-size: 2.25rem;
  }

  .image-card img,
  .portrait img,
  .cinema-break img {
    transform: none;
  }

  .cinema-break {
    min-height: auto;
  }
}

@media (max-width: 390px) {
  .nav a {
    font-size: 0.64rem;
    padding-left: 3px;
    padding-right: 3px;
  }

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

  .hero-tags span {
    font-size: 0.63rem;
  }
}
