@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Instrument+Sans:wght@400;500;600&family=Space+Grotesk:wght@400;500;600&display=swap');
@import url('./tokens.css');

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-display);
  background: #03070C;
  color: var(--color-interface-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Ambient blue glow on whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 10%, rgba(9, 211, 242, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 60%, rgba(0, 94, 166, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(46, 175, 255, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main, header, section, footer { position: relative; z-index: 1; }

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

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(9, 211, 242, 0.08);
  border: 1px solid rgba(9, 211, 242, 0.25);
  color: var(--color-cyan-gateway);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-cyan-gateway);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-cyan-gateway);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-top: 16px;
}

.section-head h2 .accent {
  background: linear-gradient(173.345deg, #FFFFFF 26.095%, rgb(183, 182, 205) 92.976%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head h2 .accent-cyan {
  background: linear-gradient(120deg, var(--color-cyan-gateway), var(--color-blue-flow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 18px;
  line-height: 1.6;
}

section {
  position: relative;
  padding: 120px 0;
}

.divider-bg {
  position: relative;
}

.divider-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(9, 211, 242, 0.14), transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0, 94, 166, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.divider-bg > * { position: relative; z-index: 1; }

/* CTA buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(95deg, var(--color-cyan-gateway), var(--color-blue-flow));
  color: var(--color-fort-dark);
  box-shadow: 0 8px 32px rgba(9, 211, 242, 0.35), 0 0 0 1px rgba(9, 211, 242, 0.6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(9, 211, 242, 0.5), 0 0 0 1px rgba(9, 211, 242, 0.8);
}

.btn-primary .arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-fort-dark);
  color: var(--color-cyan-gateway);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
  padding: 22px 44px;
  font-size: 16px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(3, 7, 12, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

.header__logo {
  width: 140px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.header__tagline {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.3;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.header__nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.header__nav a:hover { color: #fff; }

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

.header__login {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header__login:hover { background: rgba(255, 255, 255, 0.06); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
  min-height: 100vh;
}

.hero__bg-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: 80px 80px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}

.hero__spotlight {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 900px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 30%, rgba(9, 211, 242, 0.7), rgba(46, 175, 255, 0.3) 40%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 94, 166, 0.4), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero__wordmark-bg {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.hero__badge .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cyan-gateway), var(--color-blue-flow));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-fort-dark);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 24px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .hero h1 { white-space: normal; }
}

.hero h1 .gradient-white {
  background: linear-gradient(173.345deg, #FFFFFF 26.095%, rgb(183, 182, 205) 92.976%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 .gradient-cyan {
  background: linear-gradient(120deg, var(--color-cyan-gateway) 0%, var(--color-blue-flow) 60%, var(--color-fort-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subhead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__social {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px 12px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.avatar-stack {
  display: inline-flex;
}

.avatar-stack .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-fort-dark);
  background: linear-gradient(135deg, var(--color-cyan-gateway), var(--color-fort-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.avatar-stack .avatar + .avatar { margin-left: -10px; }
.avatar-stack .avatar:nth-child(2) { background: linear-gradient(135deg, #ff8a65, #ff5252); }
.avatar-stack .avatar:nth-child(3) { background: linear-gradient(135deg, #ba68c8, #7e57c2); }
.avatar-stack .avatar:nth-child(4) { background: linear-gradient(135deg, #ffd54f, #ff8a65); }

.hero__social-text {
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
}

.hero__social-text strong { display: block; font-size: 14px; }
.hero__social-text span { color: rgba(255, 255, 255, 0.5); font-size: 12px; }

/* Mockup cards */
.hero__mockup {
  position: relative;
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: end;
}

.mock-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  position: relative;
  overflow: hidden;
  animation: pulse-float 5s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.mock-card:nth-child(1) { animation-delay: 0s; }
.mock-card:nth-child(2) { animation-delay: 0.8s; }
.mock-card:nth-child(3) { animation-delay: 1.6s; }

@keyframes pulse-float {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 rgba(9, 211, 242, 0),
      0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: translateY(-12px);
    box-shadow:
      0 0 60px rgba(9, 211, 242, 0.25),
      0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(9, 211, 242, 0.3);
  }
}

.mock-pix {
  transform: translateY(-32px);
  animation: pulse-float-pix 5s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes pulse-float-pix {
  0%, 100% {
    transform: translateY(-32px);
    box-shadow:
      0 0 0 rgba(9, 211, 242, 0),
      0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
  }
  50% {
    transform: translateY(-44px);
    box-shadow:
      0 0 80px rgba(9, 211, 242, 0.35),
      0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(9, 211, 242, 0.4);
  }
}

.mock-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(9, 211, 242, 0.1), transparent 60%);
  pointer-events: none;
}

.mock-card > * { position: relative; }

.mock-card__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.mock-saldo .value {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.mock-saldo .delta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(9, 211, 242, 0.15);
  color: var(--color-cyan-gateway);
  font-size: 12px;
  font-weight: 600;
}

.mock-saldo .chart {
  margin-top: 20px;
  height: 60px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(9, 211, 242, 0.08) 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.mock-pix .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-app-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mock-pix .icon svg { width: 65%; height: 65%; }

.mock-pix__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.mock-pix__row:first-of-type { border-top: 0; }
.mock-pix__row .name { color: rgba(255, 255, 255, 0.9); }
.mock-pix__row .value { color: var(--color-cyan-gateway); font-weight: 600; font-variant-numeric: tabular-nums; }
.mock-pix__row .time { color: rgba(255, 255, 255, 0.4); font-size: 11px; margin-top: 2px; display: block; }

.mock-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-pill {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* ============================================================
   APRESENTAÇÃO — campo de pixels caindo com glow ciano
   ============================================================ */
.intro {
  position: relative;
  text-align: center;
  padding: 140px 0 200px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.intro__pixels {
  position: absolute;
  top: 40%;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
  overflow: hidden;
}

.intro__pixels span {
  position: absolute;
  top: 0;
  left: var(--x);
  width: var(--w);
  height: var(--h);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  animation: pixel-fall var(--t) linear infinite;
  animation-delay: var(--d);
  will-change: transform, opacity;
  box-shadow: 0 0 8px rgba(9, 211, 242, 0.1);
}

.intro__pixels span:nth-child(3n) {
  background: rgba(9, 211, 242, 0.22);
  border-color: rgba(9, 211, 242, 0.4);
  box-shadow: 0 0 12px rgba(9, 211, 242, 0.3);
}

.intro__pixels span:nth-child(5n) {
  background: rgba(46, 175, 255, 0.18);
  border-color: rgba(46, 175, 255, 0.3);
  box-shadow: 0 0 10px rgba(46, 175, 255, 0.25);
}

.intro__pixels span:nth-child(7n) {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

@keyframes pixel-fall {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  15% { opacity: 1; }
  80% { opacity: 1; }
  100% {
    transform: translateY(400px);
    opacity: 0;
  }
}

.intro__glow {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background:
    radial-gradient(ellipse 45% 55% at 50% 100%, rgba(9, 211, 242, 0.55), transparent 60%),
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(0, 94, 166, 0.4), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.intro__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.intro__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 900px;
  margin: 0;
}

.intro__title .accent-cyan {
  background: linear-gradient(120deg, var(--color-cyan-gateway), var(--color-blue-flow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0;
  line-height: 1.6;
}

.intro__inner .btn { margin-top: 8px; }

/* ============================================================
   BENEFÍCIOS PRINCIPAIS — bento grid estilo Aqueduct
   ============================================================ */
.bento-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 460px 460px;
  grid-template-areas:
    "c1 c1 c1 c1 c1 c1 c1 c2 c2 c2 c2 c2"
    "c3 c3 c3 c3 c4 c4 c4 c4 c5 c5 c5 c5";
}

.bento-grid > .bento-card:nth-child(1) { grid-area: c1; }
.bento-grid > .bento-card:nth-child(2) { grid-area: c2; }
.bento-grid > .bento-card:nth-child(3) { grid-area: c3; }
.bento-grid > .bento-card:nth-child(4) { grid-area: c4; }
.bento-grid > .bento-card:nth-child(5) { grid-area: c5; }

.bento-card {
  position: relative;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.bento-card:hover {
  border-color: rgba(9, 211, 242, 0.25);
  transform: translateY(-4px);
}

.bento-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(9, 211, 242, 0.06), transparent 70%);
  pointer-events: none;
}

.bento-card__visual {
  position: relative;
  flex: 1;
  min-height: 200px;
  padding: 28px;
  overflow: hidden;
}

.bento-card__body {
  padding: 0 28px 28px;
}

.bento-card__body h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}

.bento-card__body p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
}

/* ----- Visual 1: PIX rows ----- */
.bento-visual--pix {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(9, 211, 242, 0.18), transparent 70%);
}

.pix-row {
  display: grid;
  grid-template-columns: 130px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
}

.pix-row--active {
  background: rgba(9, 211, 242, 0.08);
  border-color: rgba(9, 211, 242, 0.3);
  box-shadow: 0 0 24px rgba(9, 211, 242, 0.15);
}

.pix-row--faded {
  opacity: 0.4;
  mask-image: linear-gradient(180deg, #000, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent);
}

.pix-row__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pix-row__icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--color-app-icon-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  flex-shrink: 0;
}

.pix-row__icon svg { width: 100%; height: 100%; }

.pix-row__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.pix-row__client {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.pix-row__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-cyan-gateway);
  font-variant-numeric: tabular-nums;
}

.pix-row__btn {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.pix-row__btn--cta {
  background: var(--color-cyan-gateway);
  border-color: var(--color-cyan-gateway);
  color: var(--color-fort-dark);
}

/* ----- Visual 2: Crypto cards ----- */
.bento-visual--crypto {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 28px 0;
  position: relative;
}

.bento-visual--crypto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 30%, rgba(9, 211, 242, 0.18), transparent 70%);
  pointer-events: none;
}

.crypto-card {
  position: relative;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transform-origin: top;
}

.crypto-card:nth-child(1) { margin-bottom: -20px; transform: scale(0.92); opacity: 0.7; }
.crypto-card--featured {
  background: rgba(9, 211, 242, 0.1);
  border-color: rgba(9, 211, 242, 0.35);
  box-shadow: 0 0 32px rgba(9, 211, 242, 0.2);
  transform: scale(1.02);
  z-index: 2;
}
.crypto-card:nth-child(3) { margin-top: -20px; transform: scale(0.92); opacity: 0.7; }

.crypto-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.crypto-card__sym {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
}

.crypto-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.crypto-card__pct {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-cyan-gateway);
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(9, 211, 242, 0.12);
}

.crypto-card__amount {
  font-size: 16px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ----- Visual 3: Chart with circuit bg ----- */
.bento-visual--chart {
  position: relative;
  padding: 24px;
}

.circuit-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 211, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 211, 242, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.circuit-bg--dense {
  background-size: 16px 16px;
}

.circuit-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 30px at 25% 30%, rgba(9, 211, 242, 0.6), transparent),
    radial-gradient(circle 20px at 75% 50%, rgba(46, 175, 255, 0.4), transparent),
    radial-gradient(circle 25px at 50% 80%, rgba(9, 211, 242, 0.5), transparent);
}

.chart-mock {
  position: relative;
  padding: 18px;
  border-radius: 14px;
  background: rgba(20, 40, 54, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
}

.chart-mock__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.chart-mock__title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chart-mock__live {
  font-size: 10px;
  color: var(--color-cyan-gateway);
  font-weight: 600;
}

.chart-mock__live::first-letter {
  font-size: 14px;
}

.chart-mock__value {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.chart-mock__svg {
  width: 100%;
  height: 60px;
}

/* ----- Visual 4: Security shield ----- */
.bento-visual--security {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-stack {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-stack__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(9, 211, 242, 0.4), transparent 60%);
  filter: blur(20px);
}

.shield-stack__icon {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 50%),
    linear-gradient(135deg, var(--color-cyan-gateway), var(--color-fort-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 16px 48px rgba(9, 211, 242, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.shield-stack__icon svg {
  width: 56px;
  height: 56px;
}

/* ----- Visual 5: Network rings ----- */
.bento-visual--network {
  position: relative;
}

.network-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-rings__r1,
.network-rings__r2,
.network-rings__r3 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(9, 211, 242, 0.15);
}

.network-rings__r1 { width: 60%; aspect-ratio: 1; }
.network-rings__r2 { width: 80%; aspect-ratio: 1; border-color: rgba(9, 211, 242, 0.1); }
.network-rings__r3 { width: 100%; aspect-ratio: 1; border-color: rgba(9, 211, 242, 0.05); }

.network-rings__center {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 50%),
    linear-gradient(135deg, var(--color-cyan-gateway), var(--color-fort-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 12px 32px rgba(9, 211, 242, 0.5);
  z-index: 2;
}

.network-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-cyan-gateway);
  left: var(--x);
  top: var(--y);
  box-shadow: 0 0 12px var(--color-cyan-gateway);
  animation: network-pulse 3s ease-in-out infinite;
}

.network-dot:nth-child(odd) { animation-delay: 1.5s; }

@keyframes network-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
}

/* ============================================================
   ÁREA DE MEMBROS — centered + showcase frame (ref. Starvy)
   ============================================================ */
.members {
  padding: 140px 0 200px;
  position: relative;
  overflow: hidden;
}

.members__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 211, 242, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 211, 242, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}

.members__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 80px;
}

.members__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin: 8px 0 0;
}

.members__sub {
  font-size: 18px;
  color: var(--color-cyan-gateway);
  font-weight: 500;
  margin: 4px 0 0;
}

.members__lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}

.members__inner .btn { margin-top: 16px; }

/* Showcase frame */
.members__showcase {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Beam de luz saindo de trás do topo do mockup */
.members__showcase::before {
  content: '';
  position: absolute;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 600px;
  background:
    radial-gradient(ellipse 35% 60% at 50% 70%, rgba(9, 211, 242, 1), transparent 60%),
    radial-gradient(ellipse 55% 70% at 50% 75%, rgba(46, 175, 255, 0.7), transparent 70%),
    radial-gradient(ellipse 75% 80% at 50% 80%, rgba(0, 94, 166, 0.5), transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.members__showcase::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 180px;
  background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(9, 211, 242, 1), transparent 60%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

.members__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 600px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(9, 211, 242, 0.5), transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0, 94, 166, 0.35), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.members__frame {
  position: relative;
  z-index: 1;
  border-radius: 16px 16px 0 0;
  background: #0a0e14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  overflow: hidden;
  mask-image: linear-gradient(180deg,
    #000 0%,
    #000 40%,
    rgba(0, 0, 0, 0.6) 70%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(180deg,
    #000 0%,
    #000 40%,
    rgba(0, 0, 0, 0.6) 70%,
    transparent 100%);
}

/* shadow externo num wrapper pra não ser mascarado */
.members__showcase {
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.4));
}

.members__chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.members__chrome-dots {
  display: flex;
  gap: 6px;
}

.members__chrome-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.members__chrome-dots span:nth-child(1) { background: #ff5f57; }
.members__chrome-dots span:nth-child(2) { background: #febc2e; }
.members__chrome-dots span:nth-child(3) { background: #28c840; }

.members__chrome-url {
  flex: 1;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-family: 'Inter', monospace;
  letter-spacing: 0.2px;
}

.members__chrome-actions {
  display: flex;
  gap: 6px;
}

.members__chrome-actions span {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.members__screen {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-fort-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.members__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.members__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(9, 211, 242, 0.02) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, rgba(9, 211, 242, 0.04), rgba(0, 94, 166, 0.06));
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.members__placeholder strong {
  display: block;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.members__placeholder span {
  font-size: 13px;
  line-height: 1.6;
}

.members__placeholder code {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(9, 211, 242, 0.1);
  border: 1px solid rgba(9, 211, 242, 0.25);
  color: var(--color-cyan-gateway);
  font-family: monospace;
  font-size: 12px;
}

/* ============================================================
   BENEFÍCIOS EXCLUSIVOS
   ============================================================ */
.exclusive-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.exclusive-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s, border-color 0.2s;
}

.exclusive-item:hover {
  background: rgba(9, 211, 242, 0.04);
  border-color: rgba(9, 211, 242, 0.2);
}

.exclusive-item:first-child { grid-column: span 2; }

.exclusive-item__num {
  flex: 0 0 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-cyan-gateway), var(--color-fort-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-fort-dark);
}

.exclusive-item__body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.exclusive-item__body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================================
   MOEDAS INTERNACIONAIS — split + orbit tech
   ============================================================ */
.currencies {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.currencies::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(9, 211, 242, 0.15), transparent 70%);
  pointer-events: none;
}

.currencies__split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.currencies__text { text-align: left; }

.currencies__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 20px 0 24px;
}

.currencies__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

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

.cur-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.cur-tag i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

/* === ORBIT === */
.orbit {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1;
  margin: 0 auto;
}

/* Anéis decorativos */
.orbit__ring {
  position: absolute;
  border-radius: 50%;
  border-style: dashed;
}

.orbit__ring--outer {
  inset: 0;
  border: 1px dashed rgba(9, 211, 242, 0.15);
  animation: ring-spin 60s linear infinite;
}

.orbit__ring--mid {
  inset: 18%;
  border: 1px dotted rgba(9, 211, 242, 0.25);
  animation: ring-spin 40s linear infinite reverse;
}

.orbit__ring--inner {
  inset: 32%;
  border: 1px solid rgba(9, 211, 242, 0.12);
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* Sweep radial estilo radar */
.orbit__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(9, 211, 242, 0.25) 30deg,
    rgba(9, 211, 242, 0.05) 60deg,
    transparent 90deg,
    transparent 360deg
  );
  animation: ring-spin 6s linear infinite;
  mix-blend-mode: screen;
  filter: blur(1px);
}

/* Eixos tech (cross-hairs) */
.orbit__axis {
  position: absolute;
  background:
    linear-gradient(90deg, transparent, rgba(9, 211, 242, 0.25), transparent);
  pointer-events: none;
}

.orbit__axis--h {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.orbit__axis--v {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(9, 211, 242, 0.25), transparent);
  transform: translateX(-50%);
}

/* Centro BRL */
.orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.orbit__core-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 211, 242, 0.5), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.6; }
}

.orbit__core-disk {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.35), transparent 50%),
    linear-gradient(135deg, #009C3B, #FFDF00 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 0 8px rgba(9, 211, 242, 0.08),
    0 0 0 1px rgba(9, 211, 242, 0.25),
    0 0 40px rgba(9, 211, 242, 0.4),
    inset 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.orbit__core-disk span {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.orbit__core-label {
  position: relative;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(9, 211, 242, 0.15);
  border: 1px solid rgba(9, 211, 242, 0.4);
  color: var(--color-cyan-gateway);
  white-space: nowrap;
}

/* Moedas orbitando */
.orbit { --orbit-r: 240px; }

.orbit__moon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 3;
  animation: moon-orbit 28s linear infinite;
  animation-delay: calc(var(--i) * -4.667s);
}

@keyframes moon-orbit {
  from { transform: rotate(0deg) translateY(calc(var(--orbit-r) * -1)); }
  to { transform: rotate(360deg) translateY(calc(var(--orbit-r) * -1)); }
}

.coin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 24px var(--coin-glow),
    inset 0 -3px 8px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  /* Counter-rotate pra manter símbolo upright */
  animation: coin-counter 28s linear infinite;
  animation-delay: calc(var(--i) * -4.667s);
}

@keyframes coin-counter {
  from { rotate: 0deg; }
  to { rotate: -360deg; }
}

.coin--usd {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3), transparent 50%),
    linear-gradient(135deg, #1e8e3e, #34a853);
  --coin-glow: rgba(52, 168, 83, 0.55);
}

.coin--eur {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3), transparent 50%),
    linear-gradient(135deg, #003399, #4D6FED);
  --coin-glow: rgba(77, 111, 237, 0.55);
}

.coin--gbp {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3), transparent 50%),
    linear-gradient(135deg, #800020, #C8102E);
  --coin-glow: rgba(200, 16, 46, 0.55);
}

.coin--jpy {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3), transparent 50%),
    linear-gradient(135deg, #BC002D, #FF6B6B);
  --coin-glow: rgba(255, 107, 107, 0.55);
}

.coin--cad {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3), transparent 50%),
    linear-gradient(135deg, #B91C1C, #FF0000);
  --coin-glow: rgba(255, 0, 0, 0.55);
  font-size: 18px;
}

.coin--aud {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3), transparent 50%),
    linear-gradient(135deg, #00247D, #002F9F);
  --coin-glow: rgba(0, 36, 125, 0.6);
  font-size: 18px;
}

/* Pulses brilhantes no anel interno */
.orbit__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px;
  border-radius: 50%;
  background: var(--color-cyan-gateway);
  box-shadow: 0 0 12px var(--color-cyan-gateway);
  animation: pulse-orbit 18s linear infinite, pulse-glow 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * -4.5s), calc(var(--i) * -0.5s);
}

@keyframes pulse-orbit {
  from { transform: rotate(0deg) translateY(-130px); }
  to { transform: rotate(360deg) translateY(-130px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--color-cyan-gateway); }
  50% { opacity: 0.4; box-shadow: 0 0 24px var(--color-cyan-gateway), 0 0 36px var(--color-cyan-gateway); }
}

/* ============================================================
   PLACAS DE RECONHECIMENTO
   ============================================================ */
.awards {
  padding: 100px 0 120px;
}

.awards .section-head { margin-bottom: 16px; }

/* ============================================================
   AWARDS FAN — 5 placas em leque com destaque no centro
   ============================================================ */
.awards-fan {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-top: -40px;
  padding: 0 0 20px;
  min-height: 600px;
}

.awards-fan__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(9, 211, 242, 0.5), transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0, 94, 166, 0.3), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

/* Desktop: wrapper e track são transparentes (display: contents)
   pra que as placas voltem a ser filhos diretos do .awards-fan e o leque funcione. */
.awards-marquee { display: contents; }
.awards-track { display: contents; }
.awards-track--clone { display: none; }

.award-plate {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s;
  cursor: pointer;
  z-index: calc(10 - var(--i) * var(--i));
}

.award-plate img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Distribuição em leque: i = -2, -1, 0, 1, 2 */
.award-plate {
  margin-left: -52px;
  margin-right: -52px;
}

/* Fallback pra browsers sem abs() */
.award-plate[style*="--i: -2"] { transform: translateY(80px) rotate(-14deg) scale(0.86); }
.award-plate[style*="--i: -1"] { transform: translateY(40px) rotate(-7deg) scale(0.94); }
.award-plate[style*="--i: 0"]  { transform: translateY(0) rotate(0deg) scale(1); }
.award-plate[style*="--i: 1"]  { transform: translateY(40px) rotate(7deg) scale(0.94); }
.award-plate[style*="--i: 2"]  { transform: translateY(80px) rotate(14deg) scale(0.86); }

.award-plate--featured {
  width: 340px;
  z-index: 10;
}

.award-plate--featured img {
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(9, 211, 242, 0.3),
    0 0 60px rgba(9, 211, 242, 0.35);
}

.award-plate:hover {
  transform: translateY(-12px) rotate(0deg) scale(1.05) !important;
  z-index: 20 !important;
  filter: brightness(1.1);
}

/* (mobile awards rules moved to consolidated breakpoint below) */

/* ============================================================
   COMO COMEÇAR
   ============================================================ */
.steps {
  padding: 140px 0;
}

/* ============================================================
   PIPELINE — 3 etapas sequenciais animadas
   ============================================================ */
.pipeline {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: stretch;
  gap: 16px;
  margin-top: 64px;
  --cycle: 9s; /* duração total de um ciclo */
}

/* ====== STEP CARD ====== */
.pipeline__step {
  position: relative;
  padding: 28px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.3s;
  animation: step-cycle var(--cycle) ease-in-out infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3));
}

@keyframes step-cycle {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: none;
    transform: translateY(0);
  }
  10%, 30% {
    border-color: rgba(9, 211, 242, 0.55);
    background: linear-gradient(180deg, rgba(9, 211, 242, 0.08), rgba(9, 211, 242, 0.02));
    box-shadow:
      0 0 0 1px rgba(9, 211, 242, 0.2),
      0 24px 60px rgba(9, 211, 242, 0.18),
      inset 0 0 40px rgba(9, 211, 242, 0.05);
    transform: translateY(-6px);
  }
  40%, 90% {
    border-color: rgba(9, 211, 242, 0.25);
    background: linear-gradient(180deg, rgba(9, 211, 242, 0.04), rgba(255, 255, 255, 0.01));
  }
}

/* Linha vertical brilhante na lateral esquerda do card ativo */
.pipeline__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-cyan-gateway), transparent);
  opacity: 0;
  animation: step-side var(--cycle) ease-in-out infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3));
}

@keyframes step-side {
  0%, 100% { opacity: 0; }
  10%, 30% { opacity: 1; box-shadow: 0 0 16px var(--color-cyan-gateway); }
  40%, 90% { opacity: 0.3; }
}

.pipeline__step-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pipeline__step-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.4s;
  animation: step-num var(--cycle) ease-in-out infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3));
}

@keyframes step-num {
  0%, 100% { color: rgba(255, 255, 255, 0.15); }
  10%, 30% {
    background: linear-gradient(120deg, var(--color-cyan-gateway), var(--color-blue-flow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  40%, 90% { color: rgba(9, 211, 242, 0.6); }
}

.pipeline__step-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pipeline__step-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(9, 211, 242, 0.18), rgba(0, 94, 166, 0.06));
  border: 1px solid rgba(9, 211, 242, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan-gateway);
  margin-bottom: 20px;
  animation: step-icon var(--cycle) ease-in-out infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3));
}

@keyframes step-icon {
  0%, 100% { box-shadow: none; transform: scale(1); }
  10%, 30% {
    box-shadow: 0 0 24px rgba(9, 211, 242, 0.5);
    transform: scale(1.05);
  }
  40%, 90% { box-shadow: 0 0 12px rgba(9, 211, 242, 0.2); }
}

.pipeline__step-icon svg {
  width: 24px;
  height: 24px;
}

.pipeline__step h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.pipeline__step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 64px;
}

/* Progress bar dentro do card */
.pipeline__step-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}

.pipeline__step-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-cyan-gateway), var(--color-blue-flow));
  box-shadow: 0 0 12px var(--color-cyan-gateway);
  animation: step-bar var(--cycle) linear infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3));
}

@keyframes step-bar {
  0%, 100% { width: 0; }
  10% { width: 0; }
  30% { width: 100%; }
  35%, 90% { width: 100%; opacity: 0.5; }
}

/* Status pill */
.pipeline__step-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: status-dot var(--cycle) ease-in-out infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3));
}

@keyframes status-dot {
  0%, 100% {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
  }
  10%, 30% {
    background: var(--color-cyan-gateway);
    box-shadow: 0 0 10px var(--color-cyan-gateway);
  }
  31%, 90% {
    background: #34a853;
    box-shadow: 0 0 8px rgba(52, 168, 83, 0.6);
  }
}

.status-text::after {
  content: '';
  animation: status-text var(--cycle) ease-in-out infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3));
}

.status-text {
  position: relative;
}

.pipeline__step .status-text {
  display: inline-block;
  font-feature-settings: "tnum";
}

/* Trocar texto via pseudo-content (truque) */
.pipeline__step-status > .status-text { display: none; }

.pipeline__step-status::before {
  content: 'Pendente';
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: status-label var(--cycle) ease-in-out infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3));
}

@keyframes status-label {
  0%, 9% { content: 'Pendente'; color: rgba(255, 255, 255, 0.4); }
  10%, 29% { content: 'Em andamento…'; color: var(--color-cyan-gateway); }
  30%, 100% { content: 'Concluído ✓'; color: #34a853; }
}

/* ====== CONNECTOR (seta + pulse) ====== */
.pipeline__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipeline__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background:
    repeating-linear-gradient(90deg,
      rgba(9, 211, 242, 0.3) 0 6px,
      transparent 6px 12px);
  transform: translateY(-50%);
}

.pipeline__link-arrow {
  position: relative;
  z-index: 2;
  width: 24px;
  height: 24px;
  color: rgba(9, 211, 242, 0.4);
  background: var(--color-fort-dark);
  padding: 2px;
  border-radius: 50%;
  animation: arrow-active var(--cycle) ease-in-out infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3) + (var(--cycle) / 3 - 0.5s));
}

@keyframes arrow-active {
  0%, 60% { color: rgba(9, 211, 242, 0.4); transform: scale(1); }
  65%, 75% {
    color: var(--color-cyan-gateway);
    transform: scale(1.3);
    filter: drop-shadow(0 0 8px var(--color-cyan-gateway));
  }
  85%, 100% { color: rgba(9, 211, 242, 0.4); transform: scale(1); }
}

.pipeline__link-pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan-gateway);
  box-shadow: 0 0 12px var(--color-cyan-gateway);
  transform: translateY(-50%);
  animation: link-pulse var(--cycle) ease-in-out infinite;
  animation-delay: calc(var(--i) * (var(--cycle) / 3) + (var(--cycle) / 3 - 1s));
  opacity: 0;
}

@keyframes link-pulse {
  0%, 60% { left: 0%; opacity: 0; }
  62% { left: 0%; opacity: 1; }
  80% { left: calc(100% - 8px); opacity: 1; }
  82%, 100% { left: calc(100% - 8px); opacity: 0; }
}

@media (max-width: 960px) {
  .pipeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pipeline__link {
    height: 40px;
    transform: rotate(90deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pipeline__step,
  .pipeline__step::before,
  .pipeline__step-num,
  .pipeline__step-icon,
  .pipeline__step-bar-fill,
  .status-dot,
  .pipeline__step-status::before,
  .pipeline__link-arrow,
  .pipeline__link-pulse {
    animation: none !important;
  }
}

/* ============================================================
   INTEGRAÇÕES
   ============================================================ */
.integrations {
  padding: 140px 0;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.integration-card {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.2s;
}

.integration-card:hover {
  border-color: rgba(9, 211, 242, 0.25);
  background: rgba(9, 211, 242, 0.03);
  transform: translateY(-2px);
}

.integration-card__logo {
  flex: 0 0 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-cyan-gateway);
  overflow: hidden;
}

.integration-card__logo--img {
  background: #fff;
  padding: 8px;
}

.integration-card__logo--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.integration-card__body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.integration-card__body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ============================================================
   TAXAS
   ============================================================ */
.fees {
  padding: 140px 0;
}

.fees__main {
  text-align: center;
  margin-bottom: 24px;
}

.fees__box {
  position: relative;
  padding: 80px 32px 56px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 90% at 50% 50%, rgba(9, 211, 242, 0.22), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(9, 211, 242, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(15, 22, 32, 0.85), rgba(8, 14, 22, 0.85));
  border: 1px solid rgba(9, 211, 242, 0.2);
  overflow: hidden;
  /* Sem box-shadow externo — o brilho fica dentro do box */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fees__box-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 80%;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(9, 211, 242, 0.45), transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(46, 175, 255, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: box-glow-pulse 4s ease-in-out infinite;
}

@keyframes box-glow-pulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.fees__box-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 211, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 211, 242, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 20%, transparent 80%);
  pointer-events: none;
  opacity: 0.6;
}

.fees__box > .price,
.fees__box > .desc {
  position: relative;
  z-index: 1;
}

.zero {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s, filter 0.3s;
}

.zero.is-counting {
  filter: drop-shadow(0 0 24px rgba(9, 211, 242, 0.8));
}

.fees__main .price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  margin-top: 24px;
  margin-bottom: 16px;
}

.fees__main .price .zero {
  font-size: clamp(120px, 14vw, 200px);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--color-cyan-gateway), var(--color-blue-flow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -8px;
  padding: 0 4px;
}

.fees__main .price .percent {
  font-size: 80px;
  font-weight: 700;
  color: var(--color-cyan-gateway);
  margin-left: 8px;
}

.fees__main .price .plus {
  font-size: 56px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 16px;
  margin-right: 8px;
}

.fees__main .price .fixed {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
}

.fees__main .desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.fees__main .desc strong {
  color: var(--color-cyan-gateway);
  font-weight: 600;
}

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

.timeline-card {
  position: relative;
  padding: 36px 24px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(9, 211, 242, 0.1), transparent 70%),
    linear-gradient(180deg, rgba(15, 22, 32, 0.85), rgba(8, 14, 22, 0.85));
  border: 1px solid rgba(9, 211, 242, 0.15);
  text-align: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s, transform 0.3s;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(9, 211, 242, 0.18), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}

.timeline-card > * { position: relative; z-index: 1; }

.timeline-card:hover {
  border-color: rgba(9, 211, 242, 0.35);
  transform: translateY(-4px);
}

.timeline-card__d {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--color-cyan-gateway), var(--color-blue-flow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.timeline-card h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.fees__footnote {
  text-align: center;
  margin-top: 48px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 140px 0;
}

.faq-list {
  max-width: 800px;
  margin: 64px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
  list-style: none;
  gap: 24px;
}

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

.faq-item summary::after {
  content: '+';
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  transition: all 0.2s;
}

.faq-item[open] summary::after {
  content: '×';
  background: var(--color-cyan-gateway);
  color: var(--color-fort-dark);
  border-color: var(--color-cyan-gateway);
}

.faq-item__body {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.7;
  padding-right: 60px;
}

/* ============================================================
   FECHAMENTO
   ============================================================ */
.closing {
  position: relative;
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(9, 211, 242, 0.22), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 94, 166, 0.3), transparent 70%);
  pointer-events: none;
}

.closing__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Pixels subindo (variação inversa da seção apresentação) */
.closing__pixels {
  position: absolute;
  top: 0;
  bottom: 40%;
  left: 0;
  right: 0;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  overflow: hidden;
  z-index: 1;
}

.closing__pixels span {
  position: absolute;
  bottom: 0;
  left: var(--x);
  width: var(--w);
  height: var(--h);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  animation: pixel-rise var(--t) linear infinite;
  animation-delay: var(--d);
  box-shadow: 0 0 8px rgba(9, 211, 242, 0.1);
  will-change: transform, opacity;
}

.closing__pixels span:nth-child(3n) {
  background: rgba(9, 211, 242, 0.22);
  border-color: rgba(9, 211, 242, 0.45);
  box-shadow: 0 0 12px rgba(9, 211, 242, 0.35);
}

.closing__pixels span:nth-child(4n) {
  background: rgba(46, 175, 255, 0.18);
  border-color: rgba(46, 175, 255, 0.35);
  box-shadow: 0 0 10px rgba(46, 175, 255, 0.3);
}

.closing__pixels span:nth-child(7n) {
  background: rgba(0, 94, 166, 0.25);
  border-color: rgba(0, 94, 166, 0.5);
  box-shadow: 0 0 14px rgba(0, 94, 166, 0.4);
}

@keyframes pixel-rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15% { opacity: 1; }
  80% { opacity: 1; }
  100% {
    transform: translateY(-400px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .closing__pixels span { animation: none !important; opacity: 0.4; }
}

.closing p.lead {
  font-family: var(--font-ui);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.2px;
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
}

.closing p.lead strong {
  color: #fff;
  font-weight: 600;
}

.closing__tagline {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.closing__tagline span {
  background: linear-gradient(120deg, var(--color-cyan-gateway), var(--color-blue-flow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.closing__tagline em {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-cyan-gateway);
}

.closing__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #02060A;
  padding: 80px 0 32px;
  border-top: 1px solid rgba(9, 211, 242, 0.08);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(9, 211, 242, 0.08), transparent 70%);
  pointer-events: none;
}

.footer > * { position: relative; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer__brand {
  display: inline-block;
  text-decoration: none;
}

.footer__logo {
  width: 160px;
  height: auto;
  display: block;
}

.footer__brand-block .tagline {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
  line-height: 1.6;
}

.footer__motto {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cyan-gateway);
  font-weight: 500;
}

.footer__col h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer__col ul { list-style: none; }

.footer__col li { margin-bottom: 12px; }

.footer__col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.footer__col a:hover { color: var(--color-cyan-gateway); }

.footer__apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.app-badge {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, opacity 0.2s;
  line-height: 0;
}

.app-badge img {
  display: block;
  height: 44px;
  width: auto;
}

.app-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom__links {
  display: flex;
  gap: 24px;
  font-size: 12px;
}

.footer__bottom__links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer__bottom__links a:hover { color: var(--color-cyan-gateway); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .mock-card,
  .mock-pix { animation: none !important; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablets grandes / laptops pequenos */
@media (max-width: 1180px) {
  .container { padding: 0 24px; }
  .hero h1 { font-size: clamp(38px, 6vw, 72px); white-space: normal; }
  .hero__mockup { max-width: 100%; gap: 16px; }
  .mock-card { padding: 20px; }
  .currencies__split { gap: 48px; }
  .orbit { max-width: 480px; }
  .orbit { --orbit-r: 200px; }
  .award-plate { width: 240px; }
  .award-plate--featured { width: 290px; }
  .pipeline { grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 12px; }
  .pipeline__step { padding: 22px; }
}

/* Tablets */
@media (max-width: 960px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }

  /* Header */
  .header__nav { display: none; }
  .header__tagline { display: none; }
  .header__logo { width: 120px; }

  /* Hero */
  .hero { padding: 140px 0 60px; min-height: auto; }
  .hero__wordmark-bg { font-size: clamp(140px, 26vw, 280px); }
  .hero h1 { font-size: clamp(36px, 7vw, 64px); white-space: normal; }
  .hero__ctas { flex-direction: column; gap: 16px; }
  .hero__mockup {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
  }
  .mock-pix { transform: none; }

  /* Intro pixels */
  .intro { padding: 100px 0 160px; }
  .intro__title { font-size: clamp(34px, 6vw, 56px); }

  /* Bento — sticky stack effect ao scrollar */
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    gap: 16px;
    padding-bottom: 100px;
  }
  .bento-grid > .bento-card,
  .bento-grid > .bento-card:nth-child(1),
  .bento-grid > .bento-card:nth-child(2),
  .bento-grid > .bento-card:nth-child(3),
  .bento-grid > .bento-card:nth-child(4),
  .bento-grid > .bento-card:nth-child(5) {
    grid-area: auto;
    min-height: 420px;
    position: sticky;
    /* Fundo sólido pra que cards stickados encubram os de baixo */
    background:
      linear-gradient(180deg, rgba(15, 22, 32, 0.98), rgba(8, 14, 22, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  }
  .bento-grid > .bento-card:nth-child(1) { top: 80px; z-index: 1; }
  .bento-grid > .bento-card:nth-child(2) { top: 96px; z-index: 2; }
  .bento-grid > .bento-card:nth-child(3) { top: 112px; z-index: 3; }
  .bento-grid > .bento-card:nth-child(4) { top: 128px; z-index: 4; }
  .bento-grid > .bento-card:nth-child(5) { top: 144px; z-index: 5; }

  /* Members */
  .members { padding: 100px 0 140px; }
  .members__title { font-size: clamp(36px, 6vw, 60px); }
  .members__chrome-url { font-size: 10px; padding: 5px 12px; }

  /* Exclusive list */
  .exclusive-list { grid-template-columns: 1fr; }
  .exclusive-item:first-child { grid-column: span 1; }

  /* Currencies — vira coluna */
  .currencies { padding: 30px 0; }
  .currencies__split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .currencies__text { text-align: center; }
  .currencies__bullets { justify-content: center; }
  .orbit { max-width: 420px; --orbit-r: 180px; }
  .orbit__core-disk { width: 100px; height: 100px; }
  .orbit__core-disk span { font-size: 34px; }
  .coin { width: 52px; height: 52px; margin: -26px; font-size: 18px; }

  /* Awards mobile */
  .awards { padding: 30px 0; }
  .awards .section-head { margin-bottom: 24px; }

  /* Awards — marquee infinito automático */
  .awards-fan {
    display: block;
    position: relative;
    min-height: auto;
    padding: 16px 0 40px;
    margin: 0 -20px;
    overflow: hidden;
  }
  .awards-fan__glow { top: 0; width: 100%; height: 100%; }

  /* Wrapper marquee criado via JS — contém as 2 tracks lado a lado */
  .awards-marquee {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: awards-marquee 30s linear infinite;
    will-change: transform;
  }

  .awards-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  /* Movimento contínuo: percorre exatamente a largura de uma track + gap,
     então quando a primeira sai, a clone está na posição original (seamless) */
  @keyframes awards-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
  }

  .awards-fan:hover .awards-marquee,
  .awards-fan:active .awards-marquee {
    animation-play-state: paused;
  }

  .award-plate,
  .award-plate[style*="--i"],
  .award-plate.award-plate--featured,
  .award-plate--featured[style*="--i"] {
    transform: none !important;
    margin: 0 !important;
    width: 240px !important;
    flex-shrink: 0;
    order: 0 !important;
  }

  /* Pipeline 3 passos vira coluna */
  .pipeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pipeline__link {
    height: 50px;
    transform: rotate(90deg);
    width: 60px;
    justify-self: center;
  }
  .pipeline__step { padding: 24px; }

  /* Integrations */
  .integrations-grid { grid-template-columns: 1fr; }

  /* Fees */
  .timelines { grid-template-columns: repeat(2, 1fr); }
  .fees__main .price .zero { font-size: clamp(80px, 18vw, 140px); letter-spacing: -4px; }
  .fees__main .price .percent { font-size: 56px; }
  .fees__main .price .plus { font-size: 36px; }
  .fees__main .price .fixed { font-size: 36px; }

  /* Closing */
  .closing { padding: 100px 0; }
  .closing__tagline {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    font-size: clamp(22px, 4vw, 36px);
  }
  .closing__ctas { flex-direction: column; align-items: center; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand-block { grid-column: span 2; }
  .footer__bottom { justify-content: center; text-align: center; }
}

/* Smartphones */
@media (max-width: 640px) {
  body { line-height: 1.65; }

  section { padding: 30px 0; }
  .container { padding: 0 18px; }

  /* Header — CTAs com tamanho consistente */
  .header { padding: 12px 0; }
  .header__inner { gap: 12px; }
  .header__logo { width: 96px; }
  .header__login { padding: 8px 12px; font-size: 12px; }
  .btn { padding: 11px 16px; font-size: 12px; line-height: 1.2; white-space: nowrap; }
  .btn-large { padding: 16px 22px; font-size: 13px; line-height: 1.35; white-space: normal; }
  .header .btn { padding: 10px 14px; font-size: 12px; }
  .header .btn .arrow { width: 22px; height: 22px; margin-left: 4px; font-size: 12px; }

  /* Section heads — mais respiração */
  .section-head { margin-bottom: 28px; padding: 0 4px; }
  .section-head h2 {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -1px;
    line-height: 1.15;
    margin-top: 12px;
  }
  .section-head p {
    font-size: 15px;
    line-height: 1.65;
    margin-top: 12px;
  }
  .eyebrow { font-size: 11px; padding: 7px 14px; letter-spacing: 1.2px; }

  /* Hero — mantém padding-top maior pra dar respiro abaixo do header sticky */
  .hero { padding: 100px 0 30px; }

  /* Mockup cards do hero: cartão empilhado em cima do PIX */
  .hero__mockup {
    position: relative;
    overflow: visible;
  }
  .hero__mockup .mock-card:nth-child(3) {
    margin-top: -180px;
    z-index: 3;
    position: relative;
    transform: translateX(20px);
    box-shadow:
      0 -10px 30px rgba(0, 0, 0, 0.4),
      0 20px 40px rgba(0, 0, 0, 0.5);
  }
  .hero h1 {
    font-size: clamp(30px, 9vw, 44px);
    letter-spacing: -1.5px;
    line-height: 1.12;
    margin-bottom: 20px;
  }
  .hero h1 br { display: none; }
  .hero__subhead {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    padding: 0 4px;
  }
  .hero__badge { font-size: 11px; padding: 6px 14px 6px 8px; margin-bottom: 24px; }
  .hero__ctas { gap: 18px; }
  .hero__social { padding: 10px 18px 10px 10px; }
  .hero__social-text strong { font-size: 12px; }
  .hero__social-text span { font-size: 10px; }
  .avatar-stack .avatar { width: 28px; height: 28px; font-size: 10px; }

  /* Intro */
  .intro { padding: 30px 0 60px; }
  .intro__inner { gap: 22px; }
  .intro__title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.15;
    letter-spacing: -1px;
  }
  .intro__sub {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 4px;
  }

  /* Bento — mais ar nos cards */
  .bento-card { min-height: 360px !important; }
  .bento-card__visual { padding: 24px; min-height: 180px; }
  .bento-card__body { padding: 0 24px 28px; }
  .bento-card__body h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .bento-card__body p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Exclusive items */
  .exclusive-item {
    gap: 20px;
    padding: 24px 20px;
  }
  .exclusive-item__body h4 {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .exclusive-item__body p {
    font-size: 14px;
    line-height: 1.65;
  }

  /* Members */
  .members { padding: 30px 0; }
  .members__inner { gap: 24px; margin-bottom: 32px; }
  .members__title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.15;
    letter-spacing: -1px;
  }
  .members__sub { font-size: 15px; }
  .members__lead {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 4px;
  }
  .members__chrome { padding: 8px 12px; gap: 8px; }
  .members__chrome-dots span { width: 8px; height: 8px; }
  .members__chrome-url { font-size: 9px; }
  .members__chrome-actions { display: none; }
  /* Glow do mockup mais sutil no mobile */
  .members__glow {
    width: 100% !important;
    height: 300px !important;
    filter: blur(60px) !important;
    background:
      radial-gradient(ellipse 50% 60% at 50% 50%, rgba(9, 211, 242, 0.2), transparent 60%),
      radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0, 94, 166, 0.12), transparent 70%) !important;
  }
  .members__showcase::before {
    width: 100% !important;
    height: 250px !important;
    top: -100px !important;
    background:
      radial-gradient(ellipse 35% 60% at 50% 70%, rgba(9, 211, 242, 0.35), transparent 60%),
      radial-gradient(ellipse 55% 70% at 50% 75%, rgba(46, 175, 255, 0.2), transparent 70%) !important;
  }
  .members__showcase::after {
    width: 70% !important;
    height: 100px !important;
    background: radial-gradient(ellipse 50% 100% at 50% 100%, rgba(9, 211, 242, 0.5), transparent 60%) !important;
  }

  /* Currencies */
  .currencies__title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 18px 0 22px;
  }
  .currencies__desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .orbit { max-width: 320px; --orbit-r: 140px; }
  .orbit__core-disk { width: 80px; height: 80px; }
  .orbit__core-disk span { font-size: 26px; }
  .orbit__core-label { font-size: 9px; padding: 3px 8px; }
  .coin { width: 44px; height: 44px; margin: -22px; font-size: 15px; }
  .coin--cad, .coin--aud { font-size: 13px; }
  .cur-tag { font-size: 11px; padding: 7px 12px; }
  .currencies__bullets { gap: 8px; }

  /* Awards — carrossel já configurado em 960px */

  /* Pipeline */
  .steps { padding: 30px 0; }
  .pipeline { gap: 16px; }
  .pipeline__step { padding: 24px; }
  .pipeline__step-head { margin-bottom: 20px; }
  .pipeline__step-num { font-size: 32px; }
  .pipeline__step-icon { margin-bottom: 18px; }
  .pipeline__step h4 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .pipeline__step p {
    font-size: 14px;
    line-height: 1.7;
    min-height: auto;
    margin-bottom: 22px;
  }
  .pipeline__link { height: 40px; }

  /* Integrations */
  .integrations { padding: 30px 0; }
  .integration-card {
    padding: 22px;
    gap: 16px;
  }
  .integration-card__body h4 {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .integration-card__body p {
    font-size: 13px;
    line-height: 1.65;
  }

  /* Fees */
  .fees { padding: 30px 0; }
  .fees__main { margin-bottom: 28px; }
  .fees__main .price { flex-wrap: wrap; justify-content: center; gap: 4px; }
  .fees__main .price .zero { font-size: clamp(60px, 22vw, 100px); }
  .fees__main .price .percent { font-size: 44px; }
  .fees__main .price .plus { font-size: 28px; margin-left: 8px; margin-right: 4px; }
  .fees__main .price .fixed { font-size: 28px; }
  .fees__main .desc {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 12px;
  }
  .timelines { grid-template-columns: 1fr 1fr; gap: 12px; }
  .timeline-card { padding: 22px 18px; }
  .timeline-card__d { font-size: 40px; margin-bottom: 10px; }
  .timeline-card h5 { font-size: 14px; margin-bottom: 6px; }
  .timeline-card p { font-size: 12px; line-height: 1.5; }
  .fees__footnote {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 8px;
    margin-top: 20px;
  }

  /* FAQ */
  .faq { padding: 30px 0; }
  .faq-list { margin-top: 24px; }
  .faq-item { padding: 22px 0; }
  .faq-item summary {
    font-size: 16px;
    line-height: 1.4;
    gap: 16px;
  }
  .faq-item__body {
    font-size: 14px;
    line-height: 1.75;
    padding-right: 0;
    margin-top: 14px;
  }

  /* Closing */
  .closing { padding: 30px 0 60px; }
  .closing__inner { gap: 28px; }
  .closing p.lead {
    font-size: 16px;
    line-height: 1.7;
    padding: 0 4px;
  }
  .closing__tagline {
    gap: 12px;
    font-size: clamp(20px, 5vw, 28px);
    line-height: 1.3;
    margin-bottom: 32px;
  }
  .closing__tagline em { width: 5px; height: 5px; }
  .closing__ctas { gap: 14px; }

  /* Footer — mobile centralizado e compacto */
  .footer { padding: 56px 0 24px; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
    text-align: center;
  }
  .footer__brand-block {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__brand { display: inline-flex; justify-content: center; }
  .footer__logo { width: 140px; }
  .footer__brand-block .tagline {
    font-size: 14px;
    line-height: 1.65;
    margin-top: 16px;
    max-width: 320px;
    text-align: center;
  }
  .footer__motto { margin-top: 12px; font-size: 11px; }

  .footer__col h6 {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 2px;
  }
  .footer__col ul { display: flex; flex-direction: column; align-items: center; }
  .footer__col li { margin-bottom: 12px; }
  .footer__col a { font-size: 14px; line-height: 1.5; }

  .footer__apps {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .app-badge img { height: 42px; }

  .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .footer__bottom p { font-size: 11px; }
  .footer__bottom__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 11px;
  }
}

/* Smartphones extra pequenos — manter badges lado a lado quando dá, empilhar se MUITO estreito */
@media (max-width: 340px) {
  .footer__apps { flex-direction: column; }
  .footer__logo { width: 124px; }
}

/* Smartphones pequenos */
@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  .section-head h2 { font-size: 26px; }
  .header__logo { width: 90px; }
  .btn { padding: 11px 18px; font-size: 12px; }
  .btn-large { padding: 14px 22px; font-size: 13px; }
  .orbit { max-width: 280px; --orbit-r: 120px; }
  .coin { width: 40px; height: 40px; margin: -20px; font-size: 13px; }
}
