/* ============================================================
   AURA EXPERT — Site (estrutura inspirada em clinia.io)
   ============================================================ */

@font-face { font-family: "Manrope"; src: url("../fonts/Manrope-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/Manrope-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/Manrope-SemiBold.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/Manrope-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/Manrope-ExtraBold.ttf") format("truetype"); font-weight: 800; font-display: swap; }

:root {
  /* === Brand · Aura tokens === */
  --navy:        #1A2152;            /* aura-text-primary — títulos, nomes */
  --navy-90:     #232B68;
  --navy-70:     rgba(26, 33, 82, 0.72);
  --navy-50:     rgba(26, 33, 82, 0.50);
  --navy-35:     rgba(26, 33, 82, 0.34);
  --navy-15:     rgba(26, 33, 82, 0.14);
  --ink:         #14110F;            /* aura-navy-60 — mineral black, assinatura */

  --primary:     #2447E8;            /* aura-blue-70 — azul forte, CTA */
  --primary-600: #1A38D1;
  --primary-50:  #E8EDFE;            /* aura-blue-10 — azul pastel */
  --primary-10:  #F1F4FF;

  --lavender:    #C8C0F2;            /* legado, agora só em acentos sutis */
  --pink:        #F4C0D4;
  --mint:        #421D24;
  --peach:       #F5D4A8;
  --green:       #421D24;
  --success-bg:  #E3F5EE;

  /* === Surfaces (mineral warm) === */
  --bg:          #FFFFFF;            /* aura-surface-canvas — branco */
  --bg-soft:     #F4F1ED;
  --bg-cream:    #EFEBE5;
  --surface:     #FFFFFF;            /* aura-white — cards */
  --border:      #E2E8F5;            /* aura-border-subtle */
  --border-2:    #C8D2E8;
  --divider:     #ECEFF7;

  /* === Text === */
  --fg:          #1A2152;            /* primary */
  --fg-2:        #64748B;            /* secondary — labels, sub-info */
  --fg-3:        #94A3B8;            /* tertiary — placeholders, meta */
  --fg-4:        #B8C2D1;

  --serif:       "Instrument Serif", "Times New Roman", serif;
  --sans:        "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  --shadow-xs:   0 1px 2px rgba(20, 17, 15, 0.04);
  --shadow-sm:   0 2px 8px rgba(20, 17, 15, 0.05);
  --shadow-md:   0 8px 28px rgba(20, 17, 15, 0.07), 0 2px 6px rgba(20, 17, 15, 0.04);
  --shadow-lg:   0 24px 60px -16px rgba(20, 17, 15, 0.16), 0 8px 24px -12px rgba(20, 17, 15, 0.08);

  --ease:        cubic-bezier(.22, .61, .36, 1);
  --ease-out:    cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--lavender); color: var(--navy); }

/* ============== LAYOUT ============== */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }
.wrap-tight { max-width: 1080px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) { .wrap-tight { padding: 0 24px; } }

section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { section { padding: 80px 0; } }

/* ============== TYPOGRAPHY ============== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--primary);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-50);
}
.eyebrow.muted { color: var(--fg-3); }
.eyebrow.muted .dot { background: var(--fg-3); box-shadow: 0 0 0 4px var(--border); }

h1.display, .display {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02; letter-spacing: -0.035em;
  color: var(--navy); margin: 0;
  text-wrap: balance;
}
h2.section-title, .section-title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05; letter-spacing: -0.03em;
  color: var(--navy); margin: 0 0 20px;
  text-wrap: balance;
  max-width: 920px;
}
.section-title .accent { color: var(--primary); }
.section-lead {
  font-size: 18px; line-height: 1.55;
  color: var(--fg-2);
  max-width: 620px;
  margin: 0;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 22px;
  font-family: inherit; font-size: 14.5px; font-weight: 700;
  letter-spacing: 0.01em;
  border: 0; border-radius: var(--radius-pill);
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s, box-shadow .2s;
}
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 6px 14px -4px rgba(20, 17, 15, 0.30);
}
.btn-primary:hover { background: #25201D; transform: translateY(-1px); box-shadow: 0 10px 22px -6px rgba(20, 17, 15, 0.40); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #25201D; transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--navy);
  border: 1px solid var(--border-2);
}
.btn-outline:hover { background: var(--bg-soft); border-color: var(--navy-50); }

.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--bg-soft); }

.btn-lg { height: 52px; padding: 0 28px; font-size: 15.5px; }

/* ============== TOPBAR ============== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  background: rgba(250, 248, 246, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.topbar.scrolled { border-bottom-color: var(--border); background: rgba(250, 248, 246, 0.92); }
.topbar .row {
  display: flex; align-items: center; gap: 24px;
  height: 72px;
}
.topbar .logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -0.02em; font-size: 18px;
  color: var(--navy);
}
.topbar .logo img { width: 28px; height: 28px; }
.topbar .logo span small { font-weight: 500; opacity: 0.55; margin-left: 4px; }

.topbar nav { display: flex; gap: 4px; margin-left: 16px; }
.topbar nav a {
  font-size: 14px; font-weight: 600; color: var(--fg-2);
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.topbar nav a:hover { color: var(--navy); background: var(--bg-soft); }
.topbar .spacer { flex: 1; }
.topbar .actions { display: flex; gap: 8px; align-items: center; }
.topbar .login {
  font-size: 14px; font-weight: 600; color: var(--navy);
  padding: 8px 14px;
}

@media (max-width: 900px) {
  .topbar nav, .topbar .login { display: none; }
}

/* ============== HERO (aura streaks card) ============== */
.hero {
  padding: 20px;
  background: var(--bg-soft);
  position: relative;
}
.hero-card-shell {
  background: #fff;
  border-radius: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -40px rgba(20,17,15,0.18);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
}

/* Nav */
.hero-nav {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 30px clamp(24px, 4vw, 56px);
}
.hero-nav .brand {
  display: inline-flex; align-items: center; gap: 11px;
  justify-self: start;
}
.hero-nav .brand .spark { width: 30px; height: 30px; flex: none; }
.hero-nav .brand img.wordmark { width: 250px; height: auto; display: block; }
@media (max-width: 768px) { .hero-nav .brand img.wordmark { width: min(180px, 45vw); } }
.hero-nav .links {
  display: flex; gap: 38px; align-items: center;
  justify-self: center;
}
.hero-nav .links a {
  font-size: 15px; font-weight: 500; color: var(--ink);
  transition: opacity .15s;
}
.hero-nav .links a:hover { opacity: 0.55; }
.hero-nav .nav-cta {
  justify-self: end;
  font-size: 15px; font-weight: 500; color: var(--ink);
  transition: opacity .15s;
}
.hero-nav .nav-cta:hover { opacity: 0.55; }
@media (max-width: 900px) {
  .hero-nav { grid-template-columns: auto auto; }
  .hero-nav .links { display: none; }
}
@media (max-width: 560px) {
  .hero-nav .nav-cta { display: none; }
}

/* Content */
.hero-body {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(30px, 6vh, 70px) clamp(24px, 5vw, 64px) clamp(40px, 6vh, 80px);
}
.hero-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(42px, 7.4vw, 102px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-desc {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 0 clamp(60px, 9vh, 96px);
  text-wrap: balance;
}

/* Streaks layer — anchored to and centered on the button (the hub) */
.join-hub {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.streaks {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150vw;
  height: 620px;
  z-index: 1;
  pointer-events: none;
}
.streaks svg {
  width: 100%; height: 100%; display: block;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform, opacity;
  /* Fluxo 100% na GPU: um único elemento anima transform/opacity (composited),
     imune ao jank de scroll/hover que travava o stroke-dashoffset. */
  animation: auraBreathe 11s ease-in-out infinite;
}
.streak {
  fill: none;
  stroke-linecap: round;
  opacity: var(--o, .6);                   /* raios sólidos, brilho por-fio fixo */
}
@keyframes auraBreathe {
  0%   { transform: translateZ(0) scale(1)     rotate(-0.5deg); opacity: .9; }
  50%  { transform: translateZ(0) scale(1.035) rotate(0.5deg);  opacity: 1; }
  100% { transform: translateZ(0) scale(1)     rotate(-0.5deg); opacity: .9; }
}
@media (prefers-reduced-motion: reduce) {
  .streaks svg { animation: none; }
}

/* Center button — above streaks */
.hero-cta-zone {
  position: relative; z-index: 4;
  display: flex; flex-direction: column; align-items: center;
  margin-top: clamp(16px, 4vh, 48px);
}
.hero-join {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff;
  font-size: clamp(16px, 1.5vw, 19px); font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: clamp(20px, 2.4vw, 28px) clamp(48px, 6vw, 88px);
  box-shadow: 0 18px 40px -14px rgba(20,17,15,0.45), 0 4px 12px -4px rgba(20,17,15,0.30);
  transition: transform .2s var(--ease-out), box-shadow .2s;
  white-space: nowrap;
}
.hero-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 54px -16px rgba(20,17,15,0.50), 0 6px 16px -6px rgba(20,17,15,0.35);
}

.hero-backed {
  font-size: 14px; line-height: 1.5; color: var(--fg-3);
  max-width: 340px;
  margin: 28px auto 0;
}

/* VC logos */
.hero-vcs {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-vcs .vc {
  color: #C2C2C8;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 9px;
  letter-spacing: -0.01em;
}
.hero-vcs .vc.coinbase { font-size: 26px; letter-spacing: -0.04em; }
.hero-vcs .vc.solana { font-size: 17px; letter-spacing: 0.12em; font-weight: 800; }
.hero-vcs .vc.solana svg { width: 26px; height: 26px; }
.hero-vcs .vc.a16z { font-size: 20px; line-height: 0.95; font-weight: 800; letter-spacing: -0.02em; text-align: left; }
.hero-vcs .vc.a16z small { display: block; font-size: 20px; }

@media (max-width: 560px) {
  .hero-vcs { gap: 24px; }
  .hero-vcs .vc.coinbase { font-size: 20px; }
  .hero-vcs .vc.solana { font-size: 13px; }
  .hero-vcs .vc.a16z { font-size: 16px; }
  .hero-vcs .vc.a16z small { font-size: 16px; }
}

/* ============== MARQUEE ============== */
.marquee-section {
  padding: 56px 0 56px;
  background: #fff;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.marquee-label {
  text-align: center;
  font-size: 13px; font-weight: 600; color: var(--fg-3);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 64px; align-items: center;
  animation: marquee 38s linear infinite;
  padding-right: 64px;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.brand-logo {
  flex: none;
  font-family: var(--sans);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  opacity: 0.6;
  white-space: nowrap;
  transition: opacity .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.brand-logo:hover { opacity: 1; }
.brand-logo .glyph {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 26px;
}
.brand-logo.cap { letter-spacing: 0.18em; font-size: 14px; font-weight: 800; text-transform: uppercase; }

/* ============== ABOUT ============== */
.about {
  background: var(--bg-soft);
  padding: 120px 0;
}
.about-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px; align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 56px; } }

.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 75% 55% at 30% 20%, rgba(36, 71, 232, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 88%, rgba(36, 71, 232, 0.08) 0%, transparent 62%),
    var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-visual .glyph {
  font-size: 240px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.08em;
  opacity: 0.96;
  line-height: 0.9;
}
.about-visual .glyph i {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--primary);
}
.about-visual .mark {
  width: 42%;
  max-width: 220px;
  height: auto;
  display: block;
}
.about-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 17, 15, 0.05) 100%);
  pointer-events: none;
}

.about-content h2 {
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 700;
  margin: 16px 0 24px; color: var(--navy);
}
.about-content h2 .accent { color: var(--primary); }
.about-content p.lead {
  font-size: 17px; line-height: 1.6; color: var(--fg-2);
  margin: 0 0 28px;
}
.about-content .with-aura {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); margin: 0 0 18px;
}
.about-list { list-style: none; padding: 0; margin: 0 0 32px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  font-size: 17px; font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
.about-list li:last-child { border-bottom: 1px solid var(--border); }
.about-list .check {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.about-content .outro {
  font-size: 16px; line-height: 1.5; color: var(--fg-2);
}
.about-content .outro b { color: var(--navy); font-weight: 700; }

/* ============== FEATURES ALT ROWS ============== */
.features-alt { padding: 140px 0; }
.features-alt .head {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 760px;
}
.features-alt .head .eyebrow { justify-content: center; }
.features-alt .head h2 { margin: 16px auto 0; }

.feat-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px; align-items: center;
  padding: 56px 0;
}
.feat-row + .feat-row { border-top: 1px solid var(--divider); }
@media (max-width: 900px) {
  .feat-row { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .feat-row.reverse .feat-visual { order: -1; }
}
.feat-row.reverse .feat-copy { order: 2; }
.feat-row.reverse .feat-visual { order: 1; }
@media (max-width: 900px) {
  .feat-row.reverse .feat-copy { order: 1; }
}

.feat-copy .num {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--primary); font-weight: 400;
  margin-bottom: 12px; display: inline-block;
}
.feat-copy h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.1; letter-spacing: -0.025em; font-weight: 700;
  color: var(--navy);
  margin: 0 0 18px;
  text-wrap: balance;
}
.feat-copy h3 em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, var(--primary-50) 62%);
  padding: 0 4px;
}
.feat-copy p {
  font-size: 17px; line-height: 1.6; color: var(--fg-2);
  margin: 0 0 24px; max-width: 460px;
}
.feat-bullets { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.feat-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--fg);
}
.feat-bullets .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.feat-copy .feat-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.feat-copy .feat-link:hover { border-bottom-color: var(--primary); }

/* Visual mockups */
.feat-visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 32px;
}
.feat-visual .ttl {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-3); margin-bottom: 16px;
}

/* Mockup: AI chat (suite assistente) */
.mock-chat .msg {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 14px;
  font-size: 13.5px; color: var(--fg);
  margin-bottom: 10px; max-width: 88%;
  box-shadow: var(--shadow-xs);
  line-height: 1.45;
}
.mock-chat .msg.me {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
  border-radius: 16px 16px 4px 16px;
  margin-left: auto;
}
.mock-chat .pill-row { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; }
.mock-chat .pill {
  background: #fff; border: 1px solid var(--border);
  font-size: 11px; padding: 5px 10px; border-radius: 999px;
  color: var(--navy); font-weight: 700;
}
.mock-chat .typing {
  display: inline-flex; gap: 3px; align-items: center;
  background: #fff; border: 1px solid var(--border);
  padding: 10px 14px; border-radius: 16px 16px 16px 4px;
  width: fit-content;
}
.mock-chat .typing span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--fg-3);
  animation: typing 1.2s ease-in-out infinite;
}
.mock-chat .typing span:nth-child(2) { animation-delay: 0.2s; }
.mock-chat .typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-3px); opacity: 1; }
}

/* Mockup: schedule */
.mock-cal {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
  margin-bottom: 12px;
}
.mock-cal .d {
  aspect-ratio: 1; border-radius: 8px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--fg-2);
}
.mock-cal .d.dim { color: var(--fg-4); background: transparent; border-color: transparent; }
.mock-cal .d.on { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 4px 10px -2px rgba(91,75,255,0.4); }
.mock-cal .d.dot { position: relative; }
.mock-cal .d.dot::after {
  content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--green);
}
.mock-slot {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.mock-slot .time { font-family: var(--sans); font-weight: 700; color: var(--primary); width: 56px; flex: none; }
.mock-slot .nm { flex: 1; }
.mock-slot .av {
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 9px; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* Mockup: financial */
.mock-fin .row { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-bottom: 14px; }
.mock-fin .big { font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.mock-fin .lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 6px; }
.mock-fin .delta { font-size: 12px; font-weight: 700; color: var(--green); }
.mock-fin .bars { display: grid; grid-template-columns: repeat(12, 1fr); gap: 6px; height: 120px; align-items: end; margin: 16px 0 12px; }
.mock-fin .bars .bar {
  background: var(--primary-50); border-radius: 4px 4px 0 0;
  position: relative;
  min-height: 8px;
}
.mock-fin .bars .bar.on { background: var(--primary); }
.mock-fin .bars .bar.muted { background: var(--border-2); }
.mock-fin .legend { display: flex; gap: 14px; font-size: 11px; color: var(--fg-3); font-weight: 600; }
.mock-fin .legend .sw { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 4px; vertical-align: -1px; }

/* Mockup: pipeline kanban */
.mock-kanban { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mock-kanban .col {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 10px;
  min-height: 220px;
}
.mock-kanban .col .h {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-3); margin-bottom: 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.mock-kanban .col .h .cnt {
  background: var(--bg-soft); color: var(--navy); font-weight: 800;
  font-size: 10px; padding: 2px 7px; border-radius: 999px;
  letter-spacing: 0;
}
.mock-kanban .card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 10px;
  margin-bottom: 6px;
  font-size: 11px; font-weight: 700; color: var(--navy);
}
.mock-kanban .card .v { font-size: 12px; color: var(--primary); margin-top: 2px; }
.mock-kanban .card.win { background: var(--success-bg); border-color: rgba(66, 29, 36,0.25); }
.mock-kanban .card.win .v { color: var(--green); }

/* Mockup: prontuário */
.mock-rec .ttl {
  font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 4px;
}
.mock-rec .meta {
  font-size: 11px; color: var(--fg-3); font-weight: 600;
  margin-bottom: 14px;
}
.mock-rec .block {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 8px;
}
.mock-rec .block .lab { font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 4px; }
.mock-rec .block .ln { height: 7px; background: var(--bg-soft); border-radius: 4px; margin-bottom: 4px; }
.mock-rec .block .ln.w70 { width: 70%; }
.mock-rec .block .ln.w50 { width: 50%; }
.mock-rec .block .ln.w90 { width: 90%; }

/* ============== TESTIMONIALS ============== */
.tlist {
  background: var(--bg-soft);
  padding: 120px 0;
}
.tlist .wrap { position: relative; }
.tlist-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
  gap: 32px;
}
@media (max-width: 768px) { .tlist-head { flex-direction: column; align-items: flex-start; } }
.tlist-head .arrows { display: flex; gap: 8px; }
.tlist-head .arrow {
  width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--border-2);
  background: #fff; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.tlist-head .arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.tlist-head .arrow:disabled { opacity: 0.35; cursor: not-allowed; }

.tcarousel {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.tcarousel::-webkit-scrollbar { display: none; }
.tcard {
  flex: none;
  scroll-snap-align: start;
  width: min(560px, 88vw);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.tcard .stars { display: flex; gap: 2px; margin-bottom: 16px; color: var(--primary); }
.tcard blockquote {
  margin: 0 0 28px; padding: 0;
  font-size: 18px; line-height: 1.55;
  color: var(--navy); font-weight: 500;
  flex: 1;
}
.tcard blockquote::before { content: "\201C"; font-family: var(--serif); font-size: 64px; line-height: 0.4; color: var(--primary); display: block; margin-bottom: 8px; }
.tcard .who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--divider);
}
.tcard .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
  flex: none;
}
.tcard .nm { font-size: 14.5px; font-weight: 800; color: var(--navy); }
.tcard .ro { font-size: 13px; color: var(--fg-3); font-weight: 500; margin-top: 2px; }

/* ============== FEATURES GRID ============== */
.fgrid-section { padding: 120px 0; }
.fgrid-head { margin-bottom: 64px; }
.fgrid-head .eyebrow { margin-bottom: 16px; }
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 900px) { .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fgrid { grid-template-columns: 1fr; } }

.fcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative;
  overflow: hidden;
}
.fcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-2);
}
.fcard .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.fcard.alt .ic { background: var(--success-bg); color: var(--green); }
.fcard h4 {
  font-size: 19px; font-weight: 700; letter-spacing: -0.015em;
  color: var(--navy); margin: 0 0 10px;
}
.fcard p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--fg-2); margin: 0;
}
.fcard .lab {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--success-bg); color: var(--green);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px;
}

/* ============== STATS / CASES ============== */
.cases {
  background: var(--ink);
  color: #fff;
  padding: 140px 0;
  position: relative; overflow: hidden;
}
.cases::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 12% 10%, rgba(36, 71, 232, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 45% 32% at 92% 92%, rgba(36, 71, 232, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cases .wrap { position: relative; z-index: 1; }
.cases .eyebrow { color: #8EA5FF; }
.cases .eyebrow .dot { background: #8EA5FF; box-shadow: 0 0 0 4px rgba(142, 165, 255, 0.20); }
.cases h2 { color: #fff; }
.cases .lead { color: rgba(255,255,255,0.7); max-width: 620px; }

.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
@media (max-width: 900px) { .cases-grid { grid-template-columns: 1fr; } }
.case-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.case-stat .v {
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 800; letter-spacing: -0.045em;
  color: #fff; line-height: 0.95;
  margin-bottom: 16px;
}
.case-stat .v small { font-size: 0.46em; vertical-align: 0.6em; font-weight: 700; color: #8EA5FF; letter-spacing: 0; margin-left: 4px; }
.case-stat .l { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,0.72); max-width: 280px; }
.case-stat .tag {
  position: absolute; top: 28px; right: 28px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #8EA5FF;
}

/* ============== INTEGRATIONS ============== */
.integ {
  padding: 120px 0;
  background: var(--bg-soft);
}
.integ-head {
  text-align: center; margin-bottom: 56px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.integ-head .eyebrow { justify-content: center; }
.integ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto 40px;
}
@media (max-width: 900px) { .integ-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .integ-grid { grid-template-columns: repeat(2, 1fr); } }

.integ-tile {
  aspect-ratio: 16/9;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; letter-spacing: -0.02em; font-size: 16px;
  color: var(--navy);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.integ-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--border-2); }
.integ-tile .glyph { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 22px; letter-spacing: 0; }
.integ-tile.dim { color: var(--fg-3); }
.integ-tile .row { display: inline-flex; align-items: center; gap: 6px; }
.integ-tile .dot {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
}

.integ-foot {
  text-align: center;
  font-size: 15px; color: var(--fg-2);
  margin-top: 32px;
}
.integ-foot a {
  color: var(--primary); font-weight: 700;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: border-color .2s;
}
.integ-foot a:hover { border-bottom-color: var(--primary); }

/* ============== FINAL CTA ============== */
.cta-final {
  padding: 160px 0;
  background:
    radial-gradient(ellipse 60% 45% at 20% 20%, rgba(36, 71, 232, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 55% 42% at 85% 28%, rgba(36, 71, 232, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 78% 88%, rgba(26, 33, 82, 0.08) 0%, transparent 62%),
    var(--bg-soft);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-final .eyebrow { justify-content: center; margin-bottom: 22px; }
.cta-final h2 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0; letter-spacing: -0.04em; font-weight: 700;
  margin: 0 auto 28px; max-width: 900px;
  color: var(--navy);
  text-wrap: balance;
}
.cta-final h2 em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--primary);
}
.cta-final h2 .accent { color: var(--primary); }
.cta-final p.lead {
  font-size: 18px; line-height: 1.55;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-final .row {
  display: inline-flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer .brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 14px;
}
.footer .brand img { width: 30px; height: 30px; filter: brightness(0) invert(1); }
.footer .blurb { font-size: 14px; line-height: 1.55; max-width: 320px; margin-bottom: 24px; }
.footer h5 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .15s; }
.footer ul a:hover { color: #fff; }

.footer .social { display: flex; gap: 10px; }
.footer .social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.footer .social a:hover { background: var(--primary); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 13px; flex-wrap: wrap;
}
.footer-bottom a:hover { color: #fff; }

/* ============== REVEAL ANIMATIONS ============== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

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