﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0b1117;
  --ink-soft: #172431;
  --paper: #fafcff;
  --paper-2: #f0f5fa;
  --rose: #d61828;
  --rose-deep: #b00f34;
  --rose-soft: #fb7185;
  --blush: #fecdd3;
  --muted: #5b6b7c;
  --line: rgba(225, 29, 46, 0.16);
  --ok: #1f8a55;
  --shadow: 0 20px 48px -8px rgba(15, 30, 50, 0.12), 0 10px 24px -4px rgba(15, 30, 50, 0.08);
  --radius: 26px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.checkout-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

/* Brand chip over photo hero */
.hero .brand-text {
  margin-bottom: 1rem;
}

.hero .countdown {
  margin-bottom: 1rem;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(8, 14, 22, 0.18) 0%,
      rgba(8, 14, 22, 0.28) 38%,
      rgba(8, 14, 22, 0.58) 68%,
      rgba(8, 14, 22, 0.78) 100%
    );
}

.hero__inner {
  width: min(100% - 2rem, 760px);
  margin: 0 auto;
  padding: 1.25rem 0 2.4rem;
  text-align: center;
}

.hero h1,
.hero__lead,
.hero__safe {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 4px 22px rgba(0, 0, 0, 0.65);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  animation: rise 0.9s 0.1s ease both;
}

.brand img {
  width: clamp(220px, 58vw, 340px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 6.4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  text-wrap: balance;
  animation: rise 0.9s 0.25s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-soft);
  font-weight: 500;
}

.hero__lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 36rem;
  margin: 0 auto 1.6rem;
  text-wrap: pretty;
  animation: rise 0.9s 0.4s ease both;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: rise 0.9s 0.55s ease both;
}

.hero__safe {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 0.6rem;
  transform: translateX(-50%);
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55));
  opacity: 0.7;
  animation: pulseLine 2.2s ease-in-out infinite;
}

/* ---------- BUTTONS ---------- */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px; backdrop-filter: blur(8px);
  background: linear-gradient(180deg, #f43f5e, var(--rose) 45%, var(--rose-deep));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow:
    0 14px 34px rgba(233, 37, 133, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 40px rgba(233, 37, 133, 0.45);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(233, 37, 133, 0.35);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(225, 29, 46, 0.06);
  box-shadow: none;
}

.btn--hero {
  min-width: min(100%, 280px);
  font-size: 1rem;
  min-height: 3.6rem;
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  position: relative;
}

.section--paper {
  background: var(--paper);
}

.section--blush {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(225, 29, 46, 0.07), transparent 40%),
    linear-gradient(180deg, #f8fafc, #f1f5f9 50%, #f7f9fc);
}

.section--ink {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(225, 29, 46, 0.22), transparent 40%),
    linear-gradient(160deg, #0c1219, #152232 55%, #0a1018);
  color: #fff;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.85rem;
}

.section--ink .eyebrow {
  color: var(--rose-soft);
}

.title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
  margin-bottom: 0.85rem;
}

.title em {
  font-style: italic;
  color: var(--rose-deep);
}

.section--ink .title em {
  color: var(--rose-soft);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  text-wrap: pretty;
}

.section--ink .lead {
  color: rgba(255, 255, 255, 0.78);
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

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

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- META / PROGRESS ---------- */
.meta-panel {
  display: grid;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid rgba(225, 29, 46, 0.08);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.4rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.progress {
  position: relative;
  height: 14px;
  border-radius: 999px; backdrop-filter: blur(8px);
  background: #f3d7e4;
  overflow: visible;
}

.progress__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff8fb8, var(--rose));
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress__knob {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--rose);
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 16px rgba(233, 37, 133, 0.35);
  transition: left 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.meta-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.meta-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.nudge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px; backdrop-filter: blur(8px);
  background: rgba(225, 29, 46, 0.08);
  color: var(--rose-deep);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- IMPACT (carousel mobile / grid desktop) ---------- */
.impact-grid {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0.15rem 1rem;
  scrollbar-width: none;
}

.impact-grid::-webkit-scrollbar {
  display: none;
}

.impact-option {
  appearance: none;
  text-align: left;
  cursor: pointer;
  border: 1.5px solid rgba(225, 29, 46, 0.18);
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.15rem 1.15rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.55rem;
  justify-items: start;
  flex: 0 0 min(78vw, 280px);
  scroll-snap-align: center;
  min-height: 12.5rem;
  box-shadow: 0 12px 28px rgba(15, 30, 50, 0.04); border-color: rgba(225, 29, 46, 0.08);
}

.impact-option:hover,
.impact-option:focus-visible,
.impact-option.is-active {
  transform: translateY(-4px);
  border-color: var(--rose);
  box-shadow: 0 18px 40px rgba(225, 29, 46, 0.18);
  outline: none;
}

.impact-option:active {
  transform: scale(0.98);
  background: #fff1f2;
  border-color: var(--rose-deep);
}

.impact-option:hover .impact-option__icon,
.impact-option:focus-visible .impact-option__icon,
.impact-option.is-active .impact-option__icon {
  background: rgba(225, 29, 46, 0.14);
  color: var(--rose-deep);
  transform: scale(1.06);
}

.impact-option:hover .impact-option__cta,
.impact-option:focus-visible .impact-option__cta {
  letter-spacing: 0.02em;
}

.impact-option.is-popular {
  border-color: var(--rose);
  background: linear-gradient(180deg, #fff, #fff1f2);
  box-shadow: 0 18px 40px rgba(225, 29, 46, 0.16);
}

.impact-option.is-popular .impact-option__icon {
  background: rgba(225, 29, 46, 0.16);
  color: var(--rose);
}

.impact-option.is-popular .impact-option__value {
  color: var(--rose);
}

@media (min-width: 800px) {
  .impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin-top: 2rem;
  }

  .impact-option {
    flex: none;
    width: auto;
    min-height: 0;
  }
}

@media (min-width: 1100px) {
  .impact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impact-option__icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(225, 29, 46, 0.08);
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.impact-option__icon svg {
  display: block;
}

.impact-option__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--rose);
  color: #fff;
  padding: 0.28rem 0.55rem;
  border-radius: 999px; backdrop-filter: blur(8px);
}

.impact-option__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0;
  line-height: 1;
}

.impact-option p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.4;
  margin: 0;
  width: 100%;
}

.impact-option__cta {
  display: block;
  width: 100%;
  margin-top: auto;
  padding-top: 0.55rem;
  text-align: right;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rose);
  transition: letter-spacing 0.3s ease;
}

/* ---------- STORY SPLITS ---------- */
.split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .split--flip {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split--flip .split__copy {
    order: 1;
  }

  .split--flip .split__visual {
    order: 2;
  }
}

.split__visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.split__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.split__copy .btn {
  margin-top: 1.35rem;
}

.quote-line {
  margin-top: 1.1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--rose);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.35;
}

/* ---------- CHECKOUT ---------- */
.checkout {
  scroll-margin-top: 1rem;
}

.checkout-shell {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 920px) {
  .checkout-shell {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

.checkout-aside {
  padding: 0.25rem;
}

.checkout-aside ul {
  list-style: none;
  margin-top: 1.4rem;
  display: grid;
  gap: 0.85rem;
}

.checkout-aside li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--muted);
}

.checkout-aside .tick {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(225, 29, 46, 0.12);
  color: var(--rose-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-panel {
  background: #fff;
  border: 1px solid rgba(225, 29, 46, 0.08);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
}

.label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.value-btn {
  appearance: none;
  border: 1.5px solid rgba(225, 29, 46, 0.18);
  background: #fff;
  border-radius: 16px;
  min-height: 3.2rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.value-btn:hover,
.value-btn:focus-visible {
  border-color: var(--rose);
  background: rgba(225, 29, 46, 0.07);
  color: var(--rose-deep);
  outline: none;
}

.value-btn:active {
  transform: scale(0.97);
}

.value-btn.active {
  border-color: var(--rose);
  background: rgba(225, 29, 46, 0.12);
  color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.12);
}

.value-btn--wide {
  width: 100%;
  margin-bottom: 0.9rem;
}

.mini-badge {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--rose);
  color: #fff;
  padding: 0.18rem 0.45rem;
  border-radius: 999px; backdrop-filter: blur(8px);
}

.custom-label {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.4rem 0 0.55rem;
}

.input-money {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1.5px solid rgba(233, 37, 133, 0.2);
  border-radius: 16px;
  padding: 0.7rem 0.95rem;
  margin-bottom: 1rem;
  background: #fffafc;
}

.input-money span {
  font-weight: 700;
  color: var(--rose-deep);
}

.input-money input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: var(--ink);
}

.form-submit {
  width: 100%;
  margin-bottom: 0.7rem;
}

.secure {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.inline-pix__loading {
  font-weight: 600;
  color: var(--rose-deep);
  margin-bottom: 0.85rem;
  animation: pulseLine 1.4s ease-in-out infinite;
}

.form-content.pix-mode .js-auto-hint {
  display: none;
}

.form-content.pix-mode .inline-pix,
.modal-body.pix-mode .inline-pix {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.inline-pix {
  display: none;
  text-align: center;
}

.inline-pix.visible {
  display: block;
  animation: rise 0.45s ease;
}

.inline-pix__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.inline-pix__beneficiary {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.inline-pix__qr {
  width: min(100%, 220px);
  margin: 0 auto 1rem;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid rgba(225, 29, 46, 0.08);
  border-radius: 18px;
}

.inline-pix__qr img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.inline-pix__code {
  word-break: break-all;
  background: #fff1f2;
  border: 1px dashed rgba(233, 37, 133, 0.35);
  border-radius: 14px;
  padding: 0.85rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

.inline-pix__copy {
  width: 100%;
  appearance: none;
  border: 0;
  cursor: pointer;
  min-height: 3.5rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px; backdrop-filter: blur(8px);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.inline-pix__copy.is-copied,
.inline-pix__copy.copied {
  background: #16a34a;
  text-transform: none;
  letter-spacing: 0;
}

.inline-pix__steps {
  text-align: left;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.inline-pix__steps p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.inline-pix__steps .step-icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(225, 29, 46, 0.12);
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.inline-pix__receiver {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  display: grid;
  gap: 0.35rem;
}

.inline-pix__receiver-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.inline-pix__receiver strong {
  color: var(--ink);
}

/* ---------- SOCIAL ---------- */
.testimonials {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.testimonial__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.testimonial__top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.testimonial__top strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial__top span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- FINAL CTA ---------- */
.final {
  text-align: left;
}

.final .brand-mark {
  width: min(220px, 70%);
  height: auto;
  margin: 0 0 1.1rem;
  border-radius: 14px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.final .btn {
  margin-top: 1.4rem;
}

@media (max-width: 879px) {
  .final {
    text-align: center;
  }

  .final .brand-mark {
    margin-inline: auto;
  }

  .final .lead {
    margin-inline: auto;
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid rgba(225, 29, 46, 0.08);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-q::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--rose);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
}

.faq-item.open .faq-a {
  display: block;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 2rem 0 6.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- STICKY / TOAST / MODAL ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(20, 8, 13, 0.88);
  backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: none;
}

.sticky-cta .btn {
  width: min(100%, 420px);
  margin: 0 auto;
  display: flex;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 6.5rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: 999px; backdrop-filter: blur(8px);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: min(92vw, 420px);
  text-align: center;
  font-size: 0.92rem;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.error {
  background: #8f1d39;
}

.donor-toast {
  position: fixed;
  left: 1rem;
  bottom: 6.2rem;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid rgba(225, 29, 46, 0.08);
  border-radius: 999px; backdrop-filter: blur(8px);
  padding: 0.55rem 0.95rem 0.55rem 0.55rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  max-width: min(92vw, 320px);
}

.donor-toast.visible {
  opacity: 1;
  transform: none;
}

.donor-toast__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(31, 138, 85, 0.15);
  flex: 0 0 auto;
}

.donor-toast strong,
.donor-toast span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.25;
}

.donor-toast span {
  color: var(--muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 4, 8, 0.62);
  backdrop-filter: blur(8px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

.modal-backdrop.open {
  display: flex;
}

.checkout-modal {
  width: min(100%, 460px);
  max-height: min(92vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: 28px 28px 22px 22px;
  padding: 1.1rem 1.1rem 1.35rem;
  position: relative;
  animation: rise 0.35s ease;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-head h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.modal-close {
  appearance: none;
  border: 0;
  background: #fee2e2;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--ink);
}

@media (min-width: 640px) {
  .modal-backdrop {
    align-items: center;
  }

  .checkout-modal {
    border-radius: 28px;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-50%) scaleY(0.7);
  }
  50% {
    opacity: 0.85;
    transform: translateX(-50%) scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .brand,
  .brand-text,
  .countdown,
  .hero h1,
  .hero__lead,
  .hero__actions,
  .hero-video {
    opacity: 1;
    transform: none;
  }
}


/* ---------- LEO extras ---------- */
.hero--video {
  min-height: auto;
  padding-bottom: 0;
  align-items: stretch;
}

.hero--video .hero__inner {
  width: min(100% - 2rem, 520px);
  padding: 1.5rem 0 2rem;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  animation: rise 0.9s 0.1s ease both;
}

.brand-text__mark {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(225, 29, 46, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.brand-text__mark svg {
  width: 1.45rem;
  height: 1.45rem;
}

.brand-text strong {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.hero-video {
  position: relative;
  width: min(100%, 360px);
  margin: 1.25rem auto 1.35rem;
  aspect-ratio: 9 / 16;
  max-height: min(58vh, 520px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1), transparent 40%),
    linear-gradient(160deg, #1e293b, #0f172a 60%, #020617);
  animation: rise 0.9s 0.35s ease both;
}

.hero-video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
}

.hero-video__play span {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rose);
  box-shadow: 0 14px 34px rgba(225, 29, 46, 0.45);
  transition: transform 0.2s ease;
}

.hero-video__play:hover span {
  transform: scale(1.06);
}

.hero-video__play svg {
  width: 1.35rem;
  height: 1.35rem;
  margin-left: 3px;
}

.hero-video__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  text-align: center;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px; backdrop-filter: blur(8px);
  background: rgba(225, 29, 46, 0.14);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: rise 0.9s 0.18s ease both;
}

.docs-grid {
  display: none;
}

.doc-card {
  display: none;
}

.budget-card {
  width: min(100%, 340px);
  margin: 1.5rem auto 0;
  padding: 1.6rem 1.35rem 1.45rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 30, 50, 0.08);
  box-shadow: 0 14px 36px rgba(15, 30, 50, 0.07);
  text-align: center;
}

.budget-card__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.85rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(225, 29, 46, 0.08);
  color: var(--rose-deep);
}

.budget-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.budget-card__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.budget-card__value {
  margin: 0.45rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.budget-card__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

.impact-hint {
  display: block;
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

@media (min-width: 800px) {
  .impact-hint {
    display: none;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.1rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.trust-badges--pix {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-top: 0;
  border-top: 0;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 500;
}

.trust-badges svg {
  width: 0.95rem;
  height: 0.95rem;
  color: #6b7280;
  flex: 0 0 auto;
}

.story-blocks {
  display: grid;
  gap: 1.15rem;
  max-width: 40rem;
}

.story-blocks p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
}

.story-blocks .highlight {
  background: rgba(225, 29, 46, 0.07);
  border-left: 3px solid var(--rose);
  border-radius: 0 16px 16px 0;
  padding: 1rem 1.1rem;
  color: var(--ink-soft);
}

.share-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn--share {
  background: transparent;
  color: #374151;
  border: 1.5px solid rgba(55, 65, 81, 0.35);
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.btn--share:hover {
  background: rgba(55, 65, 81, 0.05);
  filter: none;
  box-shadow: none;
}

.btn--secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid rgba(225, 29, 46, 0.2);
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.hero-bg-pulse {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 30%, #1e293b 0%, #0c1219 55%, #05080c 100%);
}

.hero-bg-pulse::before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 480px;
  max-height: 480px;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.22), transparent 68%);
  animation: heartbeat 2.4s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: translateX(-50%) scale(0.92); opacity: 0.55; }
  35% { transform: translateX(-50%) scale(1.05); opacity: 0.9; }
  55% { transform: translateX(-50%) scale(0.96); opacity: 0.65; }
  70% { transform: translateX(-50%) scale(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-pulse::before { animation: none; }
}


/* ---------- PLATFORM FEE + UPSELL ---------- */
.fee-opt-in {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.85rem 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(15, 30, 50, 0.04);
  border: 1px solid rgba(15, 30, 50, 0.08);
  cursor: pointer;
  text-align: left;
}

.fee-opt-in input {
  margin-top: 0.15rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--rose);
  flex: 0 0 auto;
  cursor: pointer;
}

.fee-opt-in span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: #6b7280;
  font-weight: 500;
}

.fee-opt-in--pix {
  margin-top: 0.35rem;
  margin-bottom: 0.85rem;
  background: #fff;
}

.upsell-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  background: #0b1017;
  color: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.upsell-screen.is-open,
.upsell-screen:not([hidden]) {
  display: block !important;
}

.upsell-screen[hidden] {
  display: none !important;
}

.upsell-inline-trigger {
  appearance: none;
  width: 100%;
  margin: 0.35rem 0 0.85rem;
  border: 1.5px dashed rgba(225, 29, 46, 0.35);
  background: rgba(225, 29, 46, 0.06);
  color: var(--rose-deep);
  border-radius: 14px;
  min-height: 2.8rem;
  padding: 0.65rem 0.9rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.upsell-inline-trigger:hover {
  background: rgba(225, 29, 46, 0.12);
  border-color: var(--rose);
}

.upsell-screen__inner {
  width: min(100%, 480px);
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.upsell-screen__media {
  width: 100%;
  background: #05080c;
}

/* media-frame overridden below */
.upsell-screen__media-frame { aspect-ratio: 9 / 16; }

.upsell-screen__media-frame video,
.upsell-screen__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.upsell-screen__media-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.upsell-screen__media-placeholder small {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.upsell-screen__body {
  padding: 1.25rem 1.2rem 2.2rem;
  display: grid;
  gap: 0.9rem;
  background: linear-gradient(180deg, #0b1017 0%, #121926 100%);
}

.upsell-screen__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.upsell-screen__copy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

.upsell-screen__cta {
  width: 100%;
  background: linear-gradient(180deg, #22c55e, #16a34a 55%, #15803d);
  box-shadow: 0 14px 34px rgba(22, 163, 74, 0.35);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  min-height: 3.5rem;
}

.upsell-screen__cta:hover {
  filter: brightness(1.05);
}

.upsell-screen__skip {
  appearance: none;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.55rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.upsell-screen__skip:hover {
  color: #d1d5db;
}

.upsell-screen__pix {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.upsell-screen__pix[hidden] {
  display: none !important;
}

.upsell-screen__pix .inline-pix__code {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.upsell-screen__pix-loading {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}


.upsell-screen__success {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
}

.upsell-screen__body--top {
  padding-bottom: 0.35rem;
}

.upsell-screen__pix-hint {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}


.upsell-screen__media-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(42vh, 520px);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: #111827;
  border-radius: 0 0 18px 18px;
}

.upsell-screen__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.upsell-screen__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.upsell-screen__media-placeholder {
  display: none !important;
}

.upsell-amounts {
  display: grid;
  gap: 0.65rem;
}

.upsell-amounts[hidden] {
  display: none !important;
}

.upsell-amounts__label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.upsell-amounts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.upsell-amount-btn {
  appearance: none;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 14px;
  min-height: 3rem;
  padding: 0.55rem 0.4rem;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}

.upsell-amount-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

.upsell-amount-btn.is-selected {
  background: rgba(34, 197, 94, 0.18);
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.35);
  transform: translateY(-1px);
}

.upsell-amounts__custom {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.upsell-amounts__custom.is-active {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.28);
}

.upsell-amounts__custom span {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.upsell-amounts__custom input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
}

.upsell-amounts__custom input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.upsell-screen__cta {
  width: 100%;
  background: linear-gradient(180deg, #22c55e, #16a34a 55%, #15803d);
  box-shadow: 0 14px 34px rgba(22, 163, 74, 0.35);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 1.02rem;
  font-weight: 800;
  min-height: 3.5rem;
}

.upsell-screen__cta[hidden] {
  display: none !important;
}

.upsell-screen__cta:disabled {
  opacity: 0.65;
  cursor: wait;
}

.upsell-screen__pix .inline-pix__copy {
  width: 100%;
  min-height: 3.2rem;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #fff;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
}

.upsell-screen__pix .inline-pix__copy.is-copied {
  background: #0f766e;
}

.upsell-screen__body {
  padding: 1.1rem 1.15rem 2rem;
  display: grid;
  gap: 0.85rem;
  background: linear-gradient(180deg, #0b1017 0%, #121926 100%);
}

.upsell-screen__copy {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: pretty;
}

.upsell-inline-trigger {
  display: none !important;
}


.generate-pix-btn {
  width: 100%;
  margin-top: 0.85rem;
  min-height: 3.55rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #22c55e, #16a34a 55%, #15803d);
  color: #fff;
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.32);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  font-weight: 800;
}

.generate-pix-btn:hover {
  filter: brightness(1.05);
}

.generate-pix-btn:disabled {
  opacity: 0.7;
  cursor: wait;
  filter: none;
}

.generate-pix-btn[hidden] {
  display: none !important;
}

.secure--manual {
  margin-top: 0.55rem;
  margin-bottom: 0;
  text-align: center;
}

.inline-pix__copy {
  white-space: normal;
  line-height: 1.35;
  min-height: 3.7rem;
  height: auto;
  padding: 0.95rem 1.15rem;
  border-radius: 16px;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
}

.inline-pix__copy.is-copied,
.inline-pix__copy.copied {
  min-height: 4.6rem;
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  text-wrap: pretty;
}

.upsell-screen__pix .inline-pix__copy {
  white-space: normal;
  line-height: 1.35;
  min-height: 3.7rem;
  height: auto;
  border-radius: 16px;
  text-transform: none;
}

.upsell-screen__pix .inline-pix__copy.is-copied {
  min-height: 4.6rem;
  font-size: 0.88rem;
  line-height: 1.4;
}

