:root {
  --green: #009f00;
  --lime: #b0dc00;
  --gold: #ffde00;
  --gold-deep: #ffbd00;
  --orange: #ff6b00;
  --pink: #ff4fb8;
  --blue: #1321e5;
  --teal-dark: #006967;
  --teal: #008784;
  --aqua: #07edfd;
  --cream: #f4eedd;
  --ink: #10231a;
  --black: #050605;
  --shadow: 0 18px 0 rgba(5, 6, 5, 0.2);
  --radius: 28px;
  --max: 1180px;
  --parallax-y: 0px;
  --menu-ball-progress: 0;
  --menu-ball-spin: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

mark {
  display: inline;
  padding: 0.04em 0.18em 0.1em;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 48%, var(--gold) 48%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.mark-green {
  color: var(--cream);
  background: linear-gradient(180deg, transparent 42%, var(--green) 42%);
}

.mark-pink {
  color: var(--black);
  background: linear-gradient(180deg, transparent 42%, var(--pink) 42%);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--cream);
  background: var(--black);
  border-radius: 999px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(16px, 4vw, 48px);
  color: var(--cream);
  transition: padding 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  color: var(--cream);
  background: rgba(19, 33, 229, 0.94);
  box-shadow: 0 10px 0 rgba(5, 6, 5, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border: 3px solid var(--black);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--black);
  object-fit: cover;
}

.brand-full-logo {
  width: clamp(170px, 18vw, 235px);
  height: auto;
  display: block;
}

.site-header nav {
  display: none;
  gap: 8px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 900;
}

.site-header nav a {
  padding: 8px 12px;
  border: 2px solid var(--black);
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--black);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.site-header nav a:hover {
  transform: translate(2px, 2px) rotate(-1deg);
  background: var(--gold);
  box-shadow: 1px 1px 0 var(--black);
}

.menu-ball {
  position: absolute;
  left: clamp(14px, 3vw, 42px);
  bottom: -18px;
  z-index: 2;
  width: clamp(26px, 3.2vw, 36px);
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  transform:
    translateX(calc(var(--menu-ball-progress) * (100vw - clamp(112px, 13vw, 176px))))
    rotate(var(--menu-ball-spin))
    scale(0.86);
  transform-origin: center;
  transition: opacity 180ms ease, scale 180ms ease;
  filter: drop-shadow(3px 4px 0 rgba(5, 6, 5, 0.28));
}

.site-header.is-scrolled .menu-ball,
.site-header.is-scrolled .menu-goal {
  opacity: 1;
  scale: 1;
}

.menu-ball svg {
  width: 100%;
  height: 100%;
}

.menu-ball-base {
  fill: var(--cream);
  stroke: var(--black);
  stroke-width: 5.4;
}

.menu-ball-patch {
  fill: var(--black);
  stroke: var(--black);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-ball-line,
.menu-ball-shine,
.menu-ball-accent {
  fill: none;
  stroke: var(--black);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-ball-shine {
  stroke-width: 2.2;
  opacity: 0.34;
}

.menu-ball-accent {
  stroke-width: 3.2;
}

.menu-ball-accent-teal {
  stroke: var(--teal);
}

.menu-ball-accent-orange {
  stroke: var(--orange);
}

.menu-goal {
  position: absolute;
  right: clamp(10px, 2.8vw, 42px);
  bottom: -23px;
  z-index: 1;
  width: clamp(48px, 5.8vw, 70px);
  opacity: 0;
  pointer-events: none;
  scale: 0.9;
  transform: translateY(4px);
  transform-origin: 50% 100%;
  transition: opacity 180ms ease, scale 180ms ease, transform 180ms ease;
  filter: drop-shadow(4px 5px 0 rgba(5, 6, 5, 0.22));
}

.site-header.is-scrolled .menu-goal {
  transform: translateY(0);
}

.site-header.is-goal .menu-goal {
  animation: goalPop 720ms cubic-bezier(0.14, 0.84, 0.28, 1);
}

.site-header.is-goal .menu-ball {
  animation: ballGoalPop 520ms cubic-bezier(0.14, 0.84, 0.28, 1);
  transform:
    translateX(calc(100vw - clamp(112px, 13vw, 176px)))
    rotate(var(--menu-ball-spin))
    scale(1);
}

.menu-goal svg {
  width: 100%;
  height: auto;
}

.menu-goal-net {
  fill: rgba(244, 238, 221, 0.78);
}

.menu-goal-frame,
.menu-goal-line,
.menu-goal-ground {
  fill: none;
  stroke: var(--black);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-goal-frame {
  stroke-width: 8;
}

.menu-goal-line {
  stroke-width: 2.4;
  opacity: 0.72;
}

.menu-goal-ground {
  stroke-width: 6;
}

.menu-goal-confetti {
  position: absolute;
  inset: -42px 0 -34px;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 92px clamp(18px, 5vw, 64px) 44px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -8vw;
  z-index: -1;
  width: 58vw;
  min-width: 280px;
  aspect-ratio: 1;
  border: 5px solid var(--black);
  border-radius: 50%;
  background: var(--aqua);
  transform: translateY(calc(var(--parallax-y) * -0.08));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--cream);
  transform: translateY(calc(var(--parallax-y) * 0.04));
}

.hero h1,
h2 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero h1 {
  max-width: 9ch;
  color: var(--cream);
  font-size: clamp(4.6rem, 18vw, 10.8rem);
  text-shadow: 7px 7px 0 var(--black);
}

.hero-subtitle {
  max-width: 620px;
  margin: 18px 0 28px;
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 900;
}

.hero-art {
  position: absolute;
  right: max(-140px, -15vw);
  bottom: 0;
  z-index: 1;
  width: min(72vw, 850px);
  margin: 0;
  opacity: 0.72;
}

.hero-art img {
  width: 100%;
  border: 5px solid var(--black);
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: translateY(calc(var(--parallax-y) * 0.1)) rotate(-3deg);
}

.doodle {
  position: absolute;
  z-index: 3;
  width: 72px;
  fill: var(--gold);
  stroke: var(--black);
  stroke-width: 7;
  stroke-linejoin: round;
}

.doodle-star {
  top: 18%;
  right: 8%;
  transform: translateY(calc(var(--parallax-y) * -0.18)) rotate(12deg);
  animation: popFloat 4.8s ease-in-out infinite;
}

.section-green {
  color: var(--cream);
  background: var(--green);
}

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

.section-blue {
  color: var(--cream);
  background: var(--blue);
}

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

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

.section-teal {
  color: var(--cream);
  background: var(--teal-dark);
}

.section-orange {
  color: var(--cream);
  background: var(--orange);
}

.parallax-section {
  --title-shift: 0px;
}

.parallax-section .eyebrow,
.parallax-section h2 {
  --reveal-y: 32px;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.18, 0.84, 0.28, 1);
}

.parallax-section .eyebrow.title-visible,
.parallax-section h2.title-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.parallax-section .eyebrow {
  transform: translate3d(0, calc(var(--reveal-y) + (var(--title-shift) * -0.08)), 0);
}

.parallax-section h2 {
  transform: translate3d(0, calc(var(--reveal-y) + (var(--title-shift) * -0.14)), 0) rotate(calc(var(--title-shift) * -0.003deg));
}

section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 64px);
}

section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 28px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 18%, 0 100%);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.split,
.final-grid,
.feature-band {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  max-width: 750px;
  font-size: clamp(2.2rem, 7.4vw, 4.7rem);
}

.stack-title span {
  display: block;
}

.intro-title {
  max-width: 440px;
  font-size: clamp(2.15rem, 8vw, 4.2rem);
}

.action-title {
  max-width: 620px;
}

.compact-section h2 {
  max-width: 680px;
  font-size: clamp(2.05rem, 6.8vw, 4.15rem);
}

.copy-block {
  max-width: 700px;
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
}

.copy-block p,
.feature-band p,
.section-heading p,
.share-note {
  margin-top: 0;
}

.copy-block p:last-child,
.feature-band p:last-child,
.section-heading p:last-child {
  margin-bottom: 0;
}

.feature-band {
  align-items: center;
}

.problem-copy p:not(.eyebrow) {
  margin-top: clamp(22px, 3.4vw, 42px);
  font-weight: 400;
}

.feature-band p {
  max-width: 810px;
  font-size: clamp(1.12rem, 2.8vw, 1.45rem);
}

.problem-art,
.final-art {
  margin: 0;
}

.problem-art {
  width: min(360px, 78vw);
  justify-self: center;
  transform: translateY(calc(var(--parallax-y) * -0.025)) rotate(-2deg);
}

.problem-art img,
.final-art img {
  width: 100%;
  height: auto;
}

.final-art {
  width: min(390px, 82vw);
  justify-self: center;
  align-self: center;
  transform: translateY(calc(var(--parallax-y) * -0.035)) rotate(3deg);
}

.final-art img {
  transform-origin: 50% 7%;
  animation: cleat-swing 3.8s ease-in-out infinite;
  will-change: transform;
}

.final-art:hover img {
  animation-duration: 2.4s;
}

.goal-net {
  fill: rgba(244, 238, 221, 0.18);
}

.goal-frame,
.goal-lines,
.goal-ball-lines {
  fill: none;
}

.goal-frame {
  stroke-width: 9;
}

.goal-lines {
  stroke-width: 3.5;
  opacity: 0.9;
}

.goal-ball {
  fill: var(--gold);
}

.goal-ball-lines {
  stroke-width: 4;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 3px solid var(--black);
  border-radius: 999px;
  box-shadow: 6px 6px 0 var(--black);
  font: inherit;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--black);
}

.button-primary,
.button-cream {
  color: var(--ink);
  background: var(--gold);
}

.button-dark {
  color: var(--cream);
  background: var(--ink);
}

.button-whatsapp {
  color: var(--ink);
  background: var(--aqua);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 820px;
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
  font-weight: 700;
}

.flow-panel {
  position: relative;
  margin-bottom: clamp(34px, 6vw, 64px);
  padding: clamp(16px, 3vw, 24px);
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: #fff9e8;
  box-shadow: 8px 8px 0 var(--black);
}

.flow-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border: 3px dashed rgba(5, 6, 5, 0.18);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 165px), 1fr));
  gap: 26px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-step {
  --flow-rotate: -0.6deg;
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 16px;
  border: 3px solid var(--black);
  border-radius: 22px;
  background: var(--aqua);
  box-shadow: 6px 6px 0 var(--black);
  transform: rotate(var(--flow-rotate));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.flow-step:nth-child(2) {
  --flow-rotate: 0.8deg;
  background: var(--lime);
}

.flow-step:nth-child(3) {
  --flow-rotate: -0.4deg;
  color: var(--cream);
  background: var(--blue);
}

.flow-step:nth-child(4) {
  --flow-rotate: 0.5deg;
  background: var(--gold);
}

.flow-step:nth-child(5) {
  --flow-rotate: -0.2deg;
  color: var(--cream);
  background: var(--teal-dark);
}

.what-we-do .section-heading .eyebrow.title-visible {
  animation: sectionTagWiggle 850ms cubic-bezier(0.18, 0.84, 0.28, 1);
}

.what-we-do .section-heading h2.title-visible {
  animation: sectionTitleWiggle 1050ms cubic-bezier(0.18, 0.84, 0.28, 1);
}

.flow-step::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  top: -14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid var(--black);
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--black);
  font-weight: 900;
  line-height: 1;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 2;
  width: 32px;
  height: 24px;
  background: var(--orange);
  clip-path: polygon(0 35%, 58% 35%, 58% 0, 100% 50%, 58% 100%, 58% 65%, 0 65%);
  filter: drop-shadow(2px 2px 0 var(--black));
  transform: translateY(-50%) rotate(3deg);
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-top: 4px;
  border: 3px solid var(--black);
  border-radius: 20px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--black);
}

.flow-icon svg {
  width: 52px;
  height: 52px;
}

.flow-icon path,
.flow-icon rect,
.flow-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-icon-card {
  color: var(--blue);
}

.flow-icon-cleat {
  color: var(--orange);
}

.flow-icon-photo {
  color: var(--teal);
}

.flow-icon-list {
  color: var(--green);
}

.flow-step h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.18rem, 2.1vw, 1.55rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: lowercase;
}

.flow-step p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.28;
}

.flow-note {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 680px;
  margin: 18px 0 0;
  padding: 10px 12px;
  border: 3px solid var(--black);
  border-radius: 16px;
  background: var(--pink);
  box-shadow: 4px 4px 0 var(--black);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
}

.quota-intro {
  display: grid;
  gap: 8px;
  margin: clamp(36px, 7vw, 72px) 0 18px;
}

.quota-intro h3,
.payment-copy h3 {
  max-width: 760px;
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.2rem, 7.4vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: lowercase;
}

.quota-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 14px;
}

.quota-card,
.stat-card,
.donation-panel,
.payment-method {
  border: 4px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--black);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quota-card:hover,
.stat-card:hover,
.donation-panel:hover,
.payment-method:hover,
.flow-step:hover {
  transform: translate(4px, 4px) rotate(-0.5deg);
  box-shadow: 4px 4px 0 var(--black);
}

.quota-card {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: var(--gold);
}

.quota-card:nth-child(2) {
  background: var(--aqua);
}

.quota-card:nth-child(3) {
  color: var(--cream);
  background: var(--teal);
}

.quota-card:nth-child(4) {
  color: var(--cream);
  background: var(--blue);
}

.quota-card:nth-child(5) {
  background: var(--lime);
}

.quota-card h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
}

.quota-value {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.quota-description {
  margin: 0;
  font-weight: 700;
}

.quota-card .button {
  width: 100%;
  background: var(--orange);
  color: var(--cream);
}

.quota-card:nth-child(3) .button,
.quota-card:nth-child(4) .button {
  background: var(--gold);
  color: var(--ink);
}

.payment-copy {
  display: grid;
  gap: 8px;
  margin: clamp(36px, 7vw, 72px) 0 18px;
}

.payment-copy p {
  max-width: 660px;
  margin: 0;
  font-size: clamp(1.04rem, 2.3vw, 1.24rem);
  font-weight: 800;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.payment-method {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: clamp(20px, 3vw, 30px);
  background: #fff9e8;
}

.payment-method h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: lowercase;
}

.payment-method p,
.payment-method li,
.free-quota-callout p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.payment-method ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
}

.mercado-box {
  background: var(--aqua);
}

.other-donation-box {
  color: var(--cream);
  background: var(--teal-dark);
}

.other-donation-box .button {
  width: fit-content;
  margin-top: 2px;
}

.free-quota-callout {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 3px solid var(--black);
  border-radius: 16px;
  background: var(--gold);
}

.free-quota-callout .button,
.contact-actions {
  width: fit-content;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-note {
  max-width: 520px;
  padding-top: 10px;
  border-top: 2px solid rgba(5, 6, 5, 0.2);
  font-size: 0.86rem !important;
}

.pix-copy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.stat-card {
  min-height: 145px;
  padding: 18px;
  color: var(--ink);
  background: var(--cream);
}

.stat-value,
.stat-label {
  display: block;
}

.stat-value {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.7rem, 4.3vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.stat-label {
  margin-top: 12px;
  font-weight: 900;
}

.fame-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.fame-copy {
  display: grid;
  align-content: start;
}

.fame-copy p:not(.eyebrow) {
  max-width: 360px;
  margin: 20px 0 0;
  font-size: clamp(1.02rem, 2.1vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
}

.fame-art {
  grid-column: 2 / 4;
  margin: 0;
  transform: translateY(calc(var(--parallax-y) * -0.025)) rotate(1deg);
}

.fame-art img {
  width: 100%;
  height: auto;
  filter: drop-shadow(8px 10px 0 rgba(5, 6, 5, 0.16));
}

.donor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 165px), 1fr));
  gap: 14px;
  margin-top: clamp(28px, 5vw, 52px);
}

.fame .section-inner {
  position: relative;
  z-index: 1;
}

.confetti-burst {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  left: 50%;
  top: 20%;
  width: 11px;
  height: 18px;
  border: 2px solid var(--black);
  border-radius: 3px;
  background: var(--gold);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: confettiBurst 1200ms cubic-bezier(0.14, 0.84, 0.28, 1) forwards;
}

.confetti-piece:nth-child(4n) {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.confetti-piece:nth-child(5n) {
  width: 18px;
  height: 8px;
}

.donor-card {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 4px solid var(--black);
  border-radius: 22px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--black);
  transform: rotate(-0.5deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.donor-card:hover {
  transform: translate(3px, 3px) rotate(0.5deg);
  box-shadow: 4px 4px 0 var(--black);
}

.donor-card:nth-child(2n) {
  background: var(--aqua);
}

.donor-card:nth-child(3n) {
  background: var(--lime);
}

.donor-card:nth-child(4n) {
  background: var(--orange);
}

.donor-card-featured {
  color: var(--cream);
  background: var(--teal-dark);
}

.donor-card span {
  width: fit-content;
  padding: 7px 10px;
  border: 3px solid var(--black);
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.donor-card strong {
  max-width: 16ch;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: lowercase;
}

.donor-card-featured strong {
  max-width: 13ch;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.28rem, 2.5vw, 1.75rem);
  line-height: 0.98;
}

.donor-card time {
  width: fit-content;
  padding: 6px 9px;
  border: 2px solid var(--black);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(244, 238, 221, 0.86);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

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

.faq-list details {
  border: 4px solid var(--black);
  border-radius: 22px;
  box-shadow: 7px 7px 0 var(--black);
  color: var(--ink);
  background: var(--cream);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.faq-list details:hover {
  transform: translate(3px, 3px) rotate(-0.35deg);
  box-shadow: 4px 4px 0 var(--black);
}

.faq-list details:nth-child(2n) {
  background: var(--aqua);
}

.faq-list details:nth-child(3n) {
  background: var(--gold);
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 18px 58px 18px 20px;
  font-weight: 900;
  line-height: 1.15;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 3px solid var(--black);
  border-radius: 50%;
  color: var(--cream);
  background: var(--orange);
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--green);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 1rem;
  font-weight: 700;
}

.is-loading {
  opacity: 0.82;
}

.donation-panel {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 20px;
  color: var(--ink);
  background: var(--cream);
}

.panel-label {
  font-size: clamp(1.08rem, 2.6vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#pix-key {
  display: block;
  max-width: 260px;
  padding: 10px 12px;
  border: 3px dashed var(--black);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  white-space: normal;
  overflow-wrap: anywhere;
}

.copy-feedback {
  min-height: 1.3em;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.share-note {
  margin-bottom: 0;
  font-weight: 900;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.final-cta {
  padding-bottom: clamp(34px, 5vw, 58px);
}

.site-footer {
  padding: clamp(42px, 7vw, 72px) clamp(18px, 5vw, 64px) 34px;
  color: var(--cream);
  background: var(--ink);
}

.footer-inner {
  width: min(100%, var(--max));
  display: grid;
  gap: clamp(30px, 6vw, 86px);
  margin: 0 auto;
}

.footer-about p {
  max-width: 470px;
  color: rgba(244, 238, 221, 0.78);
  font-weight: 400;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-weight: 900;
  text-decoration: none;
}

.footer-full-logo {
  width: clamp(230px, 24vw, 330px);
}

.footer-column,
.footer-contact {
  margin: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 13px;
  color: rgba(244, 238, 221, 0.8);
  font-weight: 400;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--gold-deep);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.72rem;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(244, 238, 221, 0.86);
  font-weight: 500;
  text-decoration: none;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--gold-deep);
}

.footer-column p {
  max-width: 260px;
  margin: 0;
}

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

.footer-bottom {
  width: min(100%, var(--max));
  display: grid;
  gap: 18px;
  margin: clamp(48px, 7vw, 78px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 238, 221, 0.22);
  color: rgba(244, 238, 221, 0.48);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(244, 238, 221, 0.58);
  text-decoration: none;
}

.floating-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 12;
  display: grid;
  gap: 10px;
  justify-items: end;
}

.floating-cta,
.floating-whatsapp,
.floating-top {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 3px solid var(--black);
  border-radius: 999px;
  color: var(--cream);
  background: var(--orange);
  box-shadow: 5px 5px 0 var(--black);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.floating-top {
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  color: var(--ink);
  background: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 160ms ease;
}

body.has-scrolled .floating-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp {
  width: 62px;
  height: 62px;
  min-width: 62px;
  min-height: 62px;
  padding: 9px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.floating-whatsapp svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wa-bubble {
  fill: var(--green);
  stroke: var(--black);
  stroke-width: 4;
  stroke-linejoin: round;
}

.wa-phone {
  fill: var(--cream);
  stroke: var(--black);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes popFloat {
  0%,
  100% {
    transform: translateY(calc(var(--parallax-y) * -0.18)) rotate(12deg) scale(1);
  }

  50% {
    transform: translateY(calc(var(--parallax-y) * -0.18 - 10px)) rotate(18deg) scale(1.08);
  }
}

@keyframes confettiBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--burst-x)), calc(-50% + var(--burst-y))) scale(1) rotate(var(--burst-r));
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes cleat-swing {
  0%,
  100% {
    transform: rotate(-2.4deg);
  }

  50% {
    transform: rotate(3.2deg);
  }
}

@keyframes goalPop {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  28% {
    transform: translateY(-7px) rotate(-4deg) scale(1.12);
  }

  58% {
    transform: translateY(2px) rotate(3deg) scale(0.98);
  }
}

@keyframes ballGoalPop {
  0%,
  100% {
    scale: 1;
  }

  38% {
    scale: 1.18;
  }
}

@keyframes sectionTagWiggle {
  0% {
    transform: translateY(18px) rotate(-3deg);
  }

  45% {
    transform: translateY(-5px) rotate(2deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes sectionTitleWiggle {
  0% {
    transform: translateY(28px) rotate(-2deg);
  }

  42% {
    transform: translateY(-8px) rotate(1.4deg);
  }

  72% {
    transform: translateY(3px) rotate(-0.7deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (min-width: 720px) {
  .site-header nav {
    display: flex;
  }

  .split,
  .feature-band {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    align-items: start;
  }

  .reverse {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  }

  .reverse > :first-child {
    order: 2;
  }

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

  .footer-inner {
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
    align-items: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .footer-bottom a {
    justify-self: end;
  }

  .hero {
    min-height: 92vh;
    align-items: center;
    padding-top: 120px;
  }

  .hero-art {
    opacity: 0.94;
  }
}

@media (min-width: 720px) and (max-width: 899px) {
  .site-header nav {
    display: none;
  }
}

@media (min-width: 1020px) {
  .quota-grid,
  .stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-art {
    right: -70px;
    width: min(56vw, 780px);
  }

  .hero-copy {
    margin-left: max(0px, calc((100vw - var(--max)) / 2));
  }
}

@media (max-width: 1019px) {
  .fame-hero {
    grid-template-columns: 1fr;
  }

  .fame-art {
    grid-column: auto;
    width: min(100%, 720px);
    justify-self: center;
  }

  .fame-copy p:not(.eyebrow) {
    max-width: 680px;
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 17px;
  }

  .brand span:last-child {
    max-width: 120px;
    line-height: 1.05;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .brand-full-logo {
    width: min(54vw, 190px);
  }

  .hero-art {
    right: -120px;
    width: 112vw;
    opacity: 0.45;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 15.5vw, 4.9rem);
  }

  .flow-panel {
    padding: 18px;
  }

  .flow-panel::before {
    inset: 12px;
  }

  .flow-steps {
    gap: 16px;
  }

  .flow-step {
    min-height: auto;
    transform: none !important;
  }

  .flow-step:not(:last-child)::after {
    display: block;
    top: auto;
    right: 28px;
    bottom: -20px;
    transform: rotate(90deg);
  }

  .flow-note {
    width: 100%;
  }

  .quota-card,
  .stat-card,
  .donation-panel {
    border-radius: 22px;
  }

  .button {
    width: 100%;
  }

  .floating-actions {
    right: 12px;
    left: auto;
    grid-template-columns: auto auto auto;
    align-items: end;
    justify-items: end;
  }

  .floating-cta {
    min-height: 46px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
  }

  .floating-top {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
  }
}

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

  .hero-copy,
  .hero-art img,
  .hero::after,
  .doodle-star,
  .final-art img,
  .fame-art,
  .flow-step,
  .parallax-section .eyebrow,
  .parallax-section h2 {
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-ball,
  .menu-goal {
    display: none !important;
  }
}
