/* ────────────────────────────────────────────────────
   Controle Cripto — Multi-page landing · Modern fintech
   Inspiração: Stripe (mesh gradient, slants), Linear (glow,
   borders), Vercel (Geist, monochrome), Coinbase (clean stats).
   ──────────────────────────────────────────────────── */

:root {
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --bg-elev: #ffffff;
  --fg: #0a0a0a;
  --fg-soft: #404040;
  --fg-muted: #737373;
  --border: #e5e5e5;
  --border-strong: #d4d4d4;
  --accent: #00b86b;
  --accent-strong: #00d97e;
  --accent-soft: rgba(0, 217, 126, 0.10);
  --indigo: #6366f1;
  --teal: #14b8a6;
  --magenta: #d946ef;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 56px -12px rgba(0, 0, 0, 0.12);
  --grid-line: rgba(0, 0, 0, 0.05);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  font-feature-settings: "ss01", "cv11";
}

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

.mono {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace;
  font-feature-settings: "ss01", "ss02", "tnum", "lnum";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* Âncoras dentro de páginas (para que o header sticky não cubra o título) */
section[id] { scroll-margin-top: 80px; }

.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
  position: relative;
}

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

/* ─────────── Nav ─────────── */
nav.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--fg);
  transition: opacity 0.2s ease;
}
.brand:hover { opacity: 0.85; }
.brand img {
  height: 36px;
  width: auto;
  display: block;
}
@media (min-width: 880px) {
  .brand img { height: 42px; }
}

.nav-links {
  display: none;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 880px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-soft);
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}
.nav-links a:hover {
  background: var(--bg-alt);
  color: var(--fg);
}
.nav-links a.active {
  color: var(--fg);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

/* "Entrar" só aparece no desktop — no mobile vai pro drawer */
.nav-actions .btn-login { display: none; }
@media (min-width: 880px) {
  .nav-actions .btn-login { display: inline-flex; }
}

/* Hambúrguer mobile */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-toggle:hover {
  background: var(--bg-alt);
  border-color: var(--border-strong);
}
.nav-toggle svg { width: 20px; height: 20px; }
@media (min-width: 880px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-drawer-head .brand img { height: 36px; }
.nav-drawer-close {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.nav-drawer-close:hover { background: var(--bg-alt); }
.nav-drawer-close svg { width: 20px; height: 20px; }
.nav-drawer-list {
  list-style: none;
  padding: 1rem 0.75rem;
  flex: 1;
}
.nav-drawer-list li { margin: 0; }
.nav-drawer-list a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-soft);
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-drawer-list a:hover {
  background: var(--bg-alt);
  color: var(--fg);
}
.nav-drawer-list a.active {
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}
.nav-drawer-foot {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-drawer-foot .btn { width: 100%; justify-content: center; padding: 0.75rem 1rem; }

@media (min-width: 880px) {
  .nav-drawer, .nav-drawer-overlay { display: none; }
}

/* ─────────── Nav minimal (páginas de obrigado / pós-conversão) ─────────── */
/* Esconde nav-links, CTA "Comece grátis", hambúrguer e drawer mobile.
   Mantém logo + botão "Entrar" visíveis em todos os breakpoints. */
nav.top.is-minimal .nav-links,
nav.top.is-minimal .nav-actions .btn-primary,
nav.top.is-minimal .nav-toggle {
  display: none !important;
}
nav.top.is-minimal ~ .nav-drawer,
nav.top.is-minimal ~ .nav-drawer-overlay {
  display: none !important;
}
nav.top.is-minimal .nav-actions .btn-login {
  display: inline-flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--fg);
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--bg-alt); }
.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn-primary:hover {
  background: var(--fg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost { border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--fg); background: transparent; }
.btn-lg { padding: 0.75rem 1.4rem; font-size: 0.95rem; }
.btn-lg .arrow { transition: transform 0.2s ease; }
.btn-lg:hover .arrow { transform: translateX(3px); }

/* ─────────── Hero with mesh gradient ─────────── */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 8rem);
  overflow: visible;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: 30%;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 35% at 25% 35%, var(--accent-soft), transparent 70%),
    radial-gradient(ellipse 45% 35% at 75% 25%, rgba(99, 102, 241, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 30% at 60% 60%, rgba(20, 184, 166, 0.15), transparent 70%);
  filter: blur(40px);
  opacity: 1;
  animation: meshFloat 18s ease-in-out infinite;
}

@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, 1%) scale(1.06); }
  66% { transform: translate(-1%, 2%) scale(0.96); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
  }
}

/* Variante hero mais compacta (páginas internas) */
.hero.hero-compact {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.hero-compact .hero-grid { grid-template-columns: 1fr; max-width: 760px; }
.hero-compact.hero-wide .hero-grid { max-width: none; }
.hero-compact h1.hero-title { font-size: clamp(2rem, 5vw, 3.6rem); }
.hero-compact.hero-wide h1.hero-title { font-size: clamp(1.9rem, 4vw, 2.85rem); white-space: nowrap; }
@media (max-width: 900px) { .hero-compact.hero-wide h1.hero-title { white-space: normal; } }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-soft);
  box-shadow: var(--shadow-sm);
  animation: revealUp 0.7s 0.05s both ease-out;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-soft); }
  50% { box-shadow: 0 0 0 6px var(--accent-soft); }
}

h1.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 1.5rem 0 1.5rem;
  animation: revealUp 0.8s 0.15s both ease-out;
}
h1.hero-title .grad {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--teal) 40%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-deck {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--fg-soft);
  max-width: 38rem;
  margin-bottom: 2rem;
  animation: revealUp 0.8s 0.3s both ease-out;
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  animation: revealUp 0.8s 0.45s both ease-out;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  animation: revealUp 0.8s 0.6s both ease-out;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-trust svg { width: 14px; height: 14px; color: var(--accent); }

/* ─────────── Hero mockup (CSS-art) ─────────── */
.mockup {
  position: relative;
  animation: revealMockup 1.2s 0.4s both cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes revealMockup {
  from { opacity: 0; transform: translateY(40px) rotateX(8deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.mockup-frame {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform-style: preserve-3d;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.mockup-bar .dots { display: flex; gap: 0.35rem; }
.mockup-bar .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}
.mockup-bar .url {
  flex: 1;
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  color: var(--fg-muted);
}

.mockup-body {
  padding: 1.25rem;
}

.mockup-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
}
.mockup-title-row h4 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.mockup-title-row .meta {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  color: var(--fg-muted);
}

.mockup-balance {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}
.mockup-balance .currency {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.mockup-balance .figure {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum", "lnum";
}
.mockup-change {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.mockup-chart {
  position: relative;
  height: 90px;
  margin: 0 -0.25rem 1.25rem;
  border-radius: 6px;
  overflow: hidden;
}
.mockup-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mockup-coins {
  display: grid;
  gap: 0.55rem;
}
.coin-row {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}
.coin-row:first-child { border-top: 0; padding-top: 0; }
.coin-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.coin-icon svg { width: 100%; height: 100%; display: block; }
.coin-name {
  font-weight: 500;
  letter-spacing: -0.01em;
}
.coin-amount {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-feature-settings: "tnum";
}
.coin-change {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  font-feature-settings: "tnum";
}
.coin-change.up { color: var(--accent); }
.coin-change.down { color: #ef4444; }

/* Floating annotation */
.mockup-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--fg);
  color: var(--bg);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 5;
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}
.mockup-tag.tag-1 {
  top: -16px;
  right: 24px;
  animation-delay: 0.4s;
}
.mockup-tag.tag-2 {
  bottom: -16px;
  left: 24px;
  animation-delay: 1.5s;
}
.mockup-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0, 217, 126, 0.25);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (max-width: 1023px) {
  .mockup-tag.tag-1 { top: -14px; right: 16px; }
  .mockup-tag.tag-2 { bottom: -14px; left: 16px; }
}

/* ─────────── Logo cloud ─────────── */
.logocloud {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logocloud-label {
  text-align: center;
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.logocloud-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
  align-items: center;
  justify-items: center;
  opacity: 0.7;
}
@media (min-width: 720px) { .logocloud-grid { grid-template-columns: repeat(6, 1fr); } }
.exchange-logo {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1rem;
  color: var(--fg-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}
.exchange-logo:hover { opacity: 1; color: var(--fg); }
.exchange-logo svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.exchange-logo .ex-mono { fill: #0a0a0a; }

/* ─────────── Section ─────────── */
.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
  position: relative;
}
.section.alt { background: var(--bg-alt); }
.section.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 16px; height: 1px;
  background: currentColor;
}
h2.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 28ch;
  margin-bottom: 1rem;
}
h2.section-title .grad {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-deck {
  font-size: 1.1rem;
  color: var(--fg-soft);
  max-width: 60ch;
  margin-bottom: 3rem;
}

/* ─────────── How it works ─────────── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 880px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }

.step {
  counter-increment: step;
  position: relative;
  padding: 1.75rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.step:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
}
.step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.step-icon svg { width: 22px; height: 22px; }
.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.step p { color: var(--fg-soft); font-size: 0.93rem; line-height: 1.55; }

/* ─────────── Stats ─────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-elev);
}
@media (min-width: 880px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 880px) { .stat { border-bottom: 0; } }
.stat:last-child { border-right: 0; }
@media (max-width: 879px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
}
.stat-fig {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 0.45rem;
  font-feature-settings: "tnum", "lnum";
}
.stat-fig.grad {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-fig .currency, .stat-fig .unit {
  font-size: 0.55em;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.stat-fig .currency { margin-right: 0.1em; }
.stat-fig .unit { margin-left: 0.15em; -webkit-text-fill-color: var(--fg-muted); }
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ─────────── Features grid ─────────── */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) { .features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  position: relative;
  padding: 1.75rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-strong), var(--indigo));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature:hover::before { opacity: 1; }

.feature-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.45rem;
}
.feature p { color: var(--fg-soft); font-size: 0.93rem; line-height: 1.55; }
.feature .feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  margin-top: 0.85rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Slant divider */
.slant {
  position: relative;
  height: 80px;
  background: var(--bg-alt);
  transform: skewY(-2deg);
  transform-origin: 50% 0;
  margin: 0;
}

/* ─────────── Pricing ─────────── */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 720px) { .pricing { grid-template-columns: 1fr 1fr; } }

.price-card {
  padding: 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}
.price-card.featured .price-deck,
.price-card.featured .price-features li,
.price-card.featured .price-amount-meta { color: rgba(255,255,255,0.65); }
.price-card.featured .price-tag {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--accent-strong);
  color: #042614;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.price-name {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.price-deck { font-size: 0.95rem; color: var(--fg-soft); margin-bottom: 1.5rem; min-height: 2.8em; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  font-feature-settings: "tnum", "lnum";
}
.price-amount .currency { font-size: 1.05rem; font-weight: 500; opacity: 0.7; }
.price-amount .figure {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}
.price-amount .per { font-size: 0.95rem; opacity: 0.7; }
.price-amount-meta { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 1.75rem; }

.price-card .btn { width: 100%; justify-content: center; margin-bottom: 1.5rem; }
.price-card.featured .btn {
  background: var(--accent-strong);
  color: #042614;
  border-color: var(--accent-strong);
}
.price-card.featured .btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }

.price-features { list-style: none; }
.price-features li {
  display: flex;
  gap: 0.5rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  line-height: 1.45;
  border-top: 1px solid var(--border);
}
.price-card.featured .price-features li { border-top-color: rgba(255,255,255,0.12); }
.price-features li:first-child { border-top: 0; }
.price-features svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 2px;
}
.price-card.featured .price-features svg { color: var(--accent-strong); }

/* ─────────── FAQ ─────────── */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  transition: transform 0.3s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--accent); }
.faq details p,
.faq details ul {
  margin-top: 0.85rem;
  color: var(--fg-soft);
  font-size: 0.95rem;
  max-width: 65ch;
  line-height: 1.65;
}
.faq details ul { padding-left: 1.25rem; }
.faq details li { margin: 0.3rem 0; }
.faq details p + p { margin-top: 0.6rem; }

/* ─────────── Closer / CTA Final ─────────── */
.closer {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.closer::before {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 50% at 30% 30%, var(--accent-soft), transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 70%, rgba(99, 102, 241, 0.15), transparent 70%);
  filter: blur(40px);
}
.closer-card {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--fg);
  color: var(--bg);
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.closer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0, 217, 126, 0.18), transparent 70%);
  pointer-events: none;
}
.closer-card > * { position: relative; }

.closer-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.closer-card h2 .grad {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.closer-card p { font-size: 1.05rem; max-width: 50ch; margin: 0 auto 2rem; opacity: 0.75; }
.closer-card .btn { color: var(--fg); background: var(--bg); border-color: var(--bg); }
.closer-card .btn-primary { background: var(--accent-strong); color: #042614; border-color: var(--accent-strong); }
.closer-card .btn-primary:hover { background: var(--accent); border-color: var(--accent); }

/* ─────────── Card panel (genérico p/ páginas internas) ─────────── */
.cards-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .cards-grid-2 { grid-template-columns: 1fr 1fr; } }

.cards-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .cards-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.method-card {
  padding: 1.75rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.method-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.method-card.featured-card {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}
.method-card.featured-card .method-deck { color: rgba(255,255,255,0.7); }
.method-card.featured-card .method-list li { color: rgba(255,255,255,0.85); }
.method-card.featured-card .method-list svg { color: var(--accent-strong); }
.method-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.method-card.featured-card .method-icon { background: rgba(0, 217, 126, 0.15); color: var(--accent-strong); }
.method-icon svg { width: 22px; height: 22px; }
.method-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.method-deck {
  color: var(--fg-soft);
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.method-list {
  list-style: none;
  margin-top: auto;
}
.method-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--fg-soft);
  line-height: 1.45;
}
.method-list svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--accent);
  margin-top: 3px;
}

/* Exchange list (página integrações) */
.exchange-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 600px) { .exchange-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px) { .exchange-list { grid-template-columns: repeat(4, 1fr); } }
.exchange-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--fg);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.exchange-item:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.exchange-item .exchange-mark {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  font-family: 'Geist Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.exchange-item svg { width: 28px; height: 28px; flex-shrink: 0; }
.exchange-method {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.exchange-method.api { background: var(--accent-soft); color: var(--accent); }
.exchange-method.csv { background: rgba(99,102,241,0.10); color: var(--indigo); }

/* Reports grid (página relatórios) */
.report-card {
  padding: 1.85rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.report-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}
.report-card .report-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-card .report-icon svg { width: 22px; height: 22px; }
.report-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.report-card p {
  color: var(--fg-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}
.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border);
}
.report-meta .pill-mini {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Callout (caixa de destaque/aviso) */
.callout {
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.callout-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
}
.callout-icon svg { width: 18px; height: 18px; }
.callout h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.callout p {
  color: var(--fg-soft);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Checklist visual (página IR) */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
@media (min-width: 720px) { .checklist { grid-template-columns: 1fr 1fr; } }
.checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--fg-soft);
  line-height: 1.45;
}
.checklist svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 2px;
}

/* Hero checklist (substitui o hero-deck na página relatórios) */
.hero-checklist {
  max-width: none;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  animation: revealUp 0.8s 0.3s both ease-out;
}
@media (min-width: 720px) { .hero-checklist { grid-template-columns: 1fr; } }
.hero-checklist li {
  background: transparent;
  border: 0;
  padding: 0.15rem 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--fg-soft);
}
.hero-checklist svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
}

/* Cards de pricing dentro do hero da página /relatorios */
.hero .hero-pricing-grid {
  margin-top: 2rem;
}

/* Format chips (página relatórios) */
.format-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.format-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
  text-transform: uppercase;
}
.format-chip svg { width: 14px; height: 14px; color: var(--accent); }

/* ─────────── Footer ─────────── */
footer.foot {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 1.5rem;
}
@media (min-width: 880px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.foot-brand { max-width: 30ch; }
.foot-brand p { font-size: 0.88rem; color: var(--fg-muted); margin-top: 0.85rem; line-height: 1.55; }
.foot-col h5 {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.foot-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.92rem;
  color: var(--fg-soft);
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--accent); }
.foot-base {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.foot-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.85rem;
}
.foot-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--fg-muted);
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
  padding: 0;
}
.foot-social a:hover {
  color: var(--fg);
  background: var(--border);
}
.foot-social svg { width: 18px; height: 18px; }

/* Footer minimal (páginas de obrigado / pós-conversão).
   Mantém apenas a coluna da marca (.foot-brand) e o .foot-base. */
footer.foot.is-minimal .foot-col:not(.foot-brand) { display: none; }
footer.foot.is-minimal .foot-grid { grid-template-columns: 1fr; }
@media (min-width: 880px) {
  footer.foot.is-minimal .foot-grid { grid-template-columns: 1fr; }
}
footer.foot.is-minimal .foot-brand { max-width: none; }

/* ─────────── Animations ─────────── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ─────────── Pricing avulsos (variante de .report-card) ─────────── */
.report-card--pricing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #f1f5f9;
}
.report-card--pricing > .pill-mini { align-self: flex-start; margin-bottom: 0.25rem; }
.report-card--pricing h3 { margin-top: 0; }
.report-card--pricing > p { margin: 0; }

.report-card .price-line {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.2rem;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.report-card .price-line strong { font-weight: 800; }
.report-card .price-line .per {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
}
.report-card .price-line .price-free {
  color: var(--accent);
  font-weight: 800;
}

/* Tiers internos (card IN 1.888 / DeCripto com versão grátis + paga) */
.report-card--pricing .tier {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.report-card--pricing .tier + .tier { margin-top: 0.5rem; }
.report-card--pricing .tier-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}
.report-card--pricing .tier-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.report-card--pricing .tier-price {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.report-card--pricing .tier-price.price-free { color: var(--accent); }
.report-card--pricing .tier p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--fg-soft);
}
.report-card--pricing .tier-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}
.report-card--pricing .tier--paid { border-color: var(--border-strong); }

/* Tags coloridas — variantes opcionais para destacar posicionamento */
.pill-mini--featured { background: rgba(99, 102, 241, 0.12); color: var(--indigo); }
.pill-mini--success  { background: rgba(0, 184, 107, 0.12); color: var(--accent); }
.pill-mini--warn     { background: rgba(247, 147, 26, 0.14); color: #c2701a; }

/* ────────────────────────────────────────────────────
   Página /seguranca — ilustrações do curso
   ──────────────────────────────────────────────────── */

/* Hero do /seguranca — força 2 colunas no desktop (sobrescreve hero-compact) */
.hero.hero-compact .hero-grid:has(.seg-art-mesh) {
  max-width: none;
}
@media (min-width: 1024px) {
  .hero.hero-compact .hero-grid:has(.seg-art-mesh) {
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
  }
}

/* ─── Hero — Cofre 3D + mesh gradient ─── */
.seg-art-mesh {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  isolation: isolate;
}
.seg-art-mesh::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(0,217,126,0.30), transparent 70%),
    radial-gradient(ellipse 45% 40% at 75% 60%, rgba(99,102,241,0.25), transparent 70%),
    radial-gradient(ellipse 40% 30% at 55% 85%, rgba(20,184,166,0.22), transparent 70%);
  filter: blur(36px);
  animation: meshFloat 18s ease-in-out infinite;
}
.seg-mesh-vault {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 78%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(99, 102, 241, 0.30));
  animation: revealUp 0.9s 0.2s both ease-out;
}
.seg-mesh-coin {
  position: absolute;
  z-index: 1;
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--accent);
  background: #fff;
  width: 2.6em;
  height: 2.6em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10), inset 0 0 0 1px var(--border);
  animation: revealUp 0.8s ease-out both;
}
.seg-mesh-coin--btc { top: 6%;  left: 4%;   color: #f7931a; animation-delay: 0.45s; }
.seg-mesh-coin--eth { top: 18%; right: 4%;  color: #6366f1; animation-delay: 0.6s;  font-size: clamp(1.4rem, 2.6vw, 2rem); }
.seg-mesh-coin--usd { bottom:8%; left: 12%; color: #14b8a6; animation-delay: 0.75s; font-size: clamp(1.4rem, 2.6vw, 2rem); }
@media (max-width: 600px) {
  .seg-art-mesh { min-height: 280px; }
  .seg-mesh-coin--eth { right: 8%; top: 8%; }
}

/* Banner: caso real do megavazamento */
.seg-leak-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #fff7f1 100%);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
@media (min-width: 900px) {
  .seg-leak-banner { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
}
.seg-leak-img img {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* Galeria "Veja por dentro do curso" */
.seg-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 720px)  { .seg-gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .seg-gallery { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

/* ── Founder section (foto + citação do criador) ───────── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 720px) {
  .founder-grid { grid-template-columns: 320px 1fr; gap: 3rem; }
}

.seg-gallery-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.seg-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.seg-gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0a0a;
}
.seg-gallery-card figcaption {
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.seg-gallery-card figcaption strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.seg-gallery-card figcaption span {
  font-size: 0.88rem;
  color: var(--fg-soft);
  line-height: 1.5;
}

/* Área de membros — texto + 2 prints empilhados */
.seg-members {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .seg-members { grid-template-columns: 1fr 1.05fr; gap: 4rem; }
}
.seg-members-shots {
  position: relative;
  min-height: 320px;
}
.seg-members-shot {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.seg-members-shot--top {
  position: relative;
  z-index: 2;
}
.seg-members-shot--bottom {
  display: none;
}
@media (min-width: 720px) {
  .seg-members-shots { min-height: 420px; }
  .seg-members-shot--top {
    width: 88%;
    margin-left: auto;
  }
  .seg-members-shot--bottom {
    display: block;
    position: absolute;
    z-index: 1;
    width: 70%;
    bottom: -6%;
    left: 0;
    transform: rotate(-3deg);
    opacity: 0.95;
  }
}
