/* ==========================================================================
   LIBERTADOR ESPORTIVO — Landing page
   Monochrome / editorial / Poppins
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --ink: #111111;
  --paper: #ffffff;
  --paper-2: #f4f4f2;
  --paper-3: #eaeae7;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(10, 10, 10, 0.12);
  --muted: rgba(255, 255, 255, 0.62);
  --muted-dark: rgba(10, 10, 10, 0.58);

  /* accents (used sparingly for meaning: sim/não, whatsapp) */
  --pos: #22c55e;
  --pos-ink: #15803d;
  --neg: #ef4444;
  --neg-ink: #dc2626;
  --wa: #25d366;
  --wa-dark: #1ebe5b;

  --maxw: 1140px;
  --radius: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.45);

  --font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: #fff;
  color: #0a0a0a;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* keep real content above decorative 3D scenes */
.section > .container {
  position: relative;
  z-index: 2;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}

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

.section--tight {
  padding-top: clamp(48px, 6vw, 80px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h-section {
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 800;
  margin-bottom: 18px;
}

.lead {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 60ch;
  color: var(--muted);
}

.section--paper .lead {
  color: var(--muted-dark);
}

.center {
  text-align: center;
}

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

/* ---------- Buttons ---------- */
.btn {
  --bg: #fff;
  --fg: #0a0a0a;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
  isolation: isolate;
  overflow: hidden;
}

.btn .arrow {
  transition: transform 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -14px rgba(255, 255, 255, 0.35);
}

.btn:hover .arrow {
  transform: translateX(5px);
}

.btn:active {
  transform: translateY(-1px);
}

.btn--ghost {
  --bg: transparent;
  --fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background: #fff;
  color: #0a0a0a;
  box-shadow: none;
}

.btn--dark {
  --bg: #0a0a0a;
  --fg: #fff;
}

.btn--dark:hover {
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.45);
}

.btn--lg {
  padding: 21px 40px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

/* Sheen animation on primary buttons */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn--dark::after,
.btn--ghost::after {
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(0, 0, 0, 0.18) 50%,
    transparent 70%
  );
}

.btn:hover::after {
  transform: translateX(120%);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 44px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.scrolled .brand img {
  height: 38px;
}

.brand-fallback {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
  line-height: 1;
}

.brand-fallback span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  opacity: 0.6;
  margin-top: 3px;
}

.header-cta {
  padding: 12px 22px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* diagonal “stadium” lines echoing the logo’s inverted triangle */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 70vmax;
  height: 70vmax;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.06),
    transparent 62%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 50% 40%,
    #000 30%,
    transparent 78%
  );
}

/* giant watermark word */
.hero-watermark {
  position: absolute;
  left: 50%;
  bottom: -4vw;
  transform: translateX(-50%);
  font-size: 26vw;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 30px;
  backdrop-filter: blur(6px);
}

.hero-tag b {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: #fff;
  color: #0a0a0a;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(38px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 26px;
}

.br-d {
  display: none;
}

@media (min-width: 720px) {
  .br-d {
    display: inline;
  }
}

/* RENDA — inverted highlight chip, the visual payoff of the headline */
.hero h1 em.hl-renda {
  font-style: normal;
  display: inline-block;
  text-transform: uppercase;
  background: #fff;
  color: #0a0a0a;
  padding: 0.02em 0.3em 0.1em;
  margin-top: 0.16em;
  border-radius: 16px;
  line-height: 1;
  letter-spacing: -0.02em;
  transform: rotate(-1.6deg) scale(0.6);
  transform-origin: center bottom;
  opacity: 0;
  box-shadow: 0 20px 55px -16px rgba(255, 255, 255, 0.5);
  animation: rendaPop 0.75s var(--ease) 0.55s forwards;
}

@keyframes rendaPop {
  60% {
    transform: rotate(-1.6deg) scale(1.06);
    opacity: 1;
  }
  100% {
    transform: rotate(-1.6deg) scale(1);
    opacity: 1;
  }
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 62ch;
  margin: 0 auto 14px;
}

.hero-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 42px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-badges .ic {
  font-size: 16px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(rgba(255, 255, 255, 0.6), transparent);
  animation: scrolldot 1.8s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scrolldot {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  40% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1) translateY(6px);
    opacity: 0;
  }
}

/* ==========================================================================
   MARQUEE strip
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
  background: #0d0d0d;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  gap: 40px;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "★";
  font-size: 0.6em;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   PAIN — "Você se identifica?"
   ========================================================================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.pain-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease),
    background 0.4s var(--ease);
}

.pain-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.05);
}

.pain-card .x {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.12);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ff6b6b;
}

.pain-card p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.82);
}

.pain-outro {
  margin-top: 48px;
  text-align: center;
}

.pain-outro p {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 auto;
}

.pain-outro p .hl {
  position: relative;
  white-space: nowrap;
}

.pain-outro p .hl::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 0.08em;
  height: 0.42em;
  background: rgba(255, 255, 255, 0.16);
  z-index: -1;
}

/* ==========================================================================
   COMPARISON
   ========================================================================== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

.compare-col {
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--line-dark);
}

.compare-col--bad {
  background: var(--paper-2);
}

.compare-col--good {
  background: #0a0a0a;
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}

.compare-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.compare-col--good .compare-head {
  border-bottom-color: var(--line);
}

.compare-head .badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.compare-col--bad .badge {
  background: #e4e4e0;
  color: #0a0a0a;
}

.compare-col--good .badge {
  background: #fff;
  color: #0a0a0a;
}

.compare-head h3 {
  font-size: 19px;
  font-weight: 700;
}

.compare-head small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.55;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 15px;
}

.compare-list .mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.compare-col--bad .mark {
  background: rgba(239, 68, 68, 0.14);
  color: var(--neg-ink);
}

.compare-col--good .mark {
  background: rgba(34, 197, 94, 0.16);
  color: var(--pos-ink);
}

.compare-col--bad li {
  color: var(--muted-dark);
}

/* ==========================================================================
   LEARN grid
   ========================================================================== */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.learn-item {
  background: var(--black);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.4s var(--ease);
  position: relative;
}

.learn-item:hover {
  background: #151515;
}

.learn-item .num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

.learn-item .ic {
  font-size: 26px;
  line-height: 1;
}

.learn-item h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   AUDIENCE / FOR WHOM
   ========================================================================== */
.audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 15.5px;
  font-weight: 500;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.audience-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.4);
}

.audience-item .check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pos);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
}

/* ==========================================================================
   RECEIVE list (dark)
   ========================================================================== */
.receive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.receive-item {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.receive-item:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.receive-item .ring {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 20px;
}

.receive-item p {
  font-size: 15.5px;
  font-weight: 600;
}

/* ==========================================================================
   ABOUT / AUTHOR
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #101010;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.about-visual img {
  width: 78%;
  height: auto;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.92;
}

/* real photo: cover the whole frame, full color */
.about-visual--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: none;
  opacity: 1;
}

/* graceful fallback if the photo isn't uploaded yet (shows the logo) */
.about-visual--photo.is-fallback img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.9;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.6));
}

.about-quote {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.about-body p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
  font-size: 16.5px;
}

.about-body p.big {
  font-size: clamp(19px, 2.4vw, 24px);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.about-body strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-visual {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   OFFER / PRICING
   ========================================================================== */
.offer {
  background: var(--paper);
  color: var(--ink);
}

.offer-card {
  max-width: 720px;
  margin: 52px auto 0;
  background: #0a0a0a;
  color: #fff;
  border-radius: 26px;
  padding: clamp(34px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000, transparent 70%);
  pointer-events: none;
}

.offer-flag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.offer-flag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}

.offer-title {
  position: relative;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.price-old {
  position: relative;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.price-old s {
  text-decoration-thickness: 2px;
}

.price-main {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.price-main .cur {
  font-size: 26px;
  font-weight: 600;
  margin-top: 14px;
}

.price-main .val {
  font-size: clamp(64px, 12vw, 104px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.price-installment {
  position: relative;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 34px;
}

.price-installment b {
  color: #fff;
  font-weight: 700;
}

.offer-card .btn {
  position: relative;
}

.offer-fineprint {
  position: relative;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}

.offer-fineprint span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* value stack */
.valuestack {
  max-width: 640px;
  margin: 48px auto 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.valuestack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-dark);
}

.valuestack-row:last-child {
  border-bottom: none;
}

.valuestack-row .vs-name {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
  font-size: 15.5px;
}

.valuestack-row .vs-ic {
  font-size: 18px;
}

.valuestack-row .vs-val {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--muted-dark);
}

.valuestack-row .vs-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
}

.valuestack-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: var(--paper-2);
  font-weight: 700;
}

.valuestack-total .t-old {
  font-size: 15px;
  color: var(--muted-dark);
}

.valuestack-total .t-old s {
  margin-left: 6px;
}

.valuestack-total .t-now {
  font-size: 22px;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   STEPS / HOW IT WORKS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
  counter-reset: step;
}

.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.step .step-n {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.14);
  margin-bottom: 18px;
}

.step .ic {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
}

.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GUARANTEE
   ========================================================================== */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 52px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper);
}

.guarantee-seal {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  display: grid;
  place-items: center;
  text-align: center;
  flex-shrink: 0;
  position: relative;
}

.guarantee-seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(10, 10, 10, 0.35);
  border-radius: 50%;
}

.guarantee-seal .n {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.guarantee-seal .d {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

.guarantee-body h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 12px;
}

.guarantee-body p {
  color: var(--muted-dark);
  font-size: 16px;
}

@media (max-width: 620px) {
  .guarantee {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 24px;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  max-width: 800px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 16.5px;
  transition: color 0.3s var(--ease);
}

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

.faq-q .sign {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease);
}

.faq-item[open] .faq-q .sign {
  transform: rotate(45deg);
  background: #fff;
  color: #0a0a0a;
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 15.5px;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
}

.faq-item[open] .faq-a {
  padding: 0 24px 24px;
  max-height: 320px;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final .hero-watermark {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw;
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.final h2 {
  font-size: clamp(30px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 22px;
}

.final p {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 20px;
}

.final .btn {
  margin-top: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 36px;
  background: #070707;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-inner img {
  height: 40px;
  width: auto;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 60ch;
}

.footer-legal {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.7;
}

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta .inner {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -10px 40px -12px rgba(0, 0, 0, 0.6);
}

.sticky-cta .s-price b {
  font-size: 17px;
  font-weight: 800;
}

.sticky-cta .s-price small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
}

.sticky-cta .btn {
  padding: 13px 20px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 76px;
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 760px) {
  .compare {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

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

.reveal[data-delay="1"] {
  transition-delay: 0.08s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.16s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.24s;
}
.reveal[data-delay="4"] {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   3D THEMED FLOATERS — money (R$), soccer ball, jersey
   pure CSS/SVG, monochrome, scroll-reactive
   ========================================================================== */
.scene3d {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 1100px;
  perspective-origin: 50% 40%;
  color: rgba(255, 255, 255, 0.55);
}

.section--paper .scene3d {
  color: rgba(10, 10, 10, 0.4);
}

/* wrapper: position + scroll-driven rotation/parallax (JS sets the vars) */
.shape3d {
  position: absolute;
  width: var(--s, 120px);
  height: var(--s, 120px);
  transform-style: preserve-3d;
  transform: translate3d(0, var(--py, 0px), 0) rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.shape3d.vis {
  opacity: var(--op, 0.7);
}

/* the object that continuously spins on its own */
.spinner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.spinner.coinflip {
  animation: coinflip 8s linear infinite;
}
.spinner.roll {
  animation: roll 16s linear infinite;
}
.spinner.sway {
  animation: sway 7s ease-in-out infinite;
}
.shape3d[data-dir="rev"] .spinner {
  animation-direction: reverse;
}

@keyframes coinflip {
  from {
    transform: rotateY(0deg) rotateZ(-8deg);
  }
  to {
    transform: rotateY(360deg) rotateZ(-8deg);
  }
}
@keyframes roll {
  from {
    transform: rotateZ(0deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes sway {
  0%,
  100% {
    transform: rotateY(-18deg) rotateZ(-6deg);
  }
  50% {
    transform: rotateY(18deg) rotateZ(6deg);
  }
}

/* ---- COIN (money / lucro): real 3D cylinder ---- */
.coin {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.coin .side {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #0a0a0a;
  font-weight: 800;
  font-size: calc(var(--s, 120px) * 0.36);
  letter-spacing: -0.03em;
  backface-visibility: hidden;
  box-shadow: inset 0 0 0 3px rgba(10, 10, 10, 0.12);
}

.coin .side::before {
  content: "";
  position: absolute;
  inset: 11%;
  border: 2px dashed rgba(10, 10, 10, 0.22);
  border-radius: 50%;
}

.coin .front {
  transform: translateZ(calc(var(--s, 120px) * 0.06));
}
.coin .back {
  transform: rotateY(180deg) translateZ(calc(var(--s, 120px) * 0.06));
}

/* cylinder edge: a set of thin slabs around the rim */
.coin .rim {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3.2%;
  height: 100%;
  margin-left: -1.6%;
  background: linear-gradient(90deg, #d0d0d0, #fff 45%, #cfcfcf);
  transform: rotateY(calc(var(--i) * 22.5deg))
    translateZ(calc(var(--s, 120px) * 0.49));
  transform-origin: center;
  backface-visibility: hidden;
}

/* ---- SOCCER BALL & JERSEY (svg line-art) ---- */
.svg3d {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}
.svg3d svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* faint glow so filled coins feel premium on dark */
.shape3d[data-glow] .coin .side {
  box-shadow: inset 0 0 0 3px rgba(10, 10, 10, 0.12),
    0 20px 50px -18px rgba(255, 255, 255, 0.4);
}

/* hide the heaviest floaters on small screens for performance */
@media (max-width: 720px) {
  .shape3d[data-mobile="off"] {
    display: none;
  }
  .shape3d {
    --op: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spinner {
    animation: none;
  }
}

/* ==========================================================================
   AUTHOR PHOTO LABEL
   ========================================================================== */
.about-quote span {
  margin: 0 6px;
  opacity: 0.55;
}

/* ==========================================================================
   WHATSAPP — button, faq help block, floating bubble
   ========================================================================== */
.btn--wa {
  background: var(--wa);
  color: #05331b;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  box-shadow: 0 16px 34px -14px rgba(37, 211, 102, 0.6);
}
.btn--wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
}
.btn--wa svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.faq-help {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(
    120deg,
    rgba(37, 211, 102, 0.1),
    rgba(255, 255, 255, 0.02)
  );
}
.faq-help-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.faq-help-txt strong {
  font-size: 18px;
  font-weight: 700;
}
.faq-help-txt span {
  color: var(--muted);
  font-size: 14.5px;
}

/* floating whatsapp bubble */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 15px;
  border-radius: 999px;
  background: var(--wa);
  color: #05331b;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.65);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px -10px rgba(37, 211, 102, 0.75);
}
.wa-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.wa-float-txt {
  white-space: nowrap;
}

/* on small screens: sit above the sticky CTA bar and go icon-only */
@media (max-width: 640px) {
  .wa-float {
    bottom: 84px;
    right: 14px;
    padding: 14px;
    gap: 0;
  }
  .wa-float-txt {
    display: none;
  }
}
