/* ═══════════════════════════════════════════════
   DASHCORTEX — Electric Blue Design System
   Primary #2B6EFF · Cyan #00D4FF · Orange #FF9A3C
   Fonts: Bricolage Grotesque + DM Sans
   ═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 128px; font-size: 16px; }
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; }
.lenis.lenis-smooth iframe.lenis-enabled { pointer-events: auto; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { font-family: inherit; }

/* ── TOKENS ── */
:root {
  /* Backgrounds */
  --bg:        #08090F;
  --bg2:       #0E1117;
  --surface:   #121620;
  --card:      rgba(255,255,255,.04);
  --card-hi:   rgba(255,255,255,.07);

  /* Primary — Electric Blue */
  --blue:       #2B6EFF;
  --blue-dim:   rgba(43,110,255,.12);
  --blue-glow:  rgba(43,110,255,.28);

  /* Support 1 — Cyan (accent, use sparingly) */
  --cyan:       #00D4FF;
  --cyan-dim:   rgba(0,212,255,.1);
  --cyan-glow:  rgba(0,212,255,.22);

  /* Support 2 — Orange (accent, use sparingly) */
  --orange:     #FF9A3C;
  --orange-dim: rgba(255,154,60,.1);
  --orange-glow:rgba(255,154,60,.22);

  /* Utility */
  --green:     #22C78B;
  --red:       #F06060;
  --amber:     #FF9A3C;   /* alias → orange for badge compatibility */

  /* Text */
  --text:      #F0F4FF;
  --text-2:    #8A93B0;
  --muted:     #4E566E;

  /* Borders */
  --border:    rgba(255,255,255,.07);
  --border-hi: rgba(43,110,255,.38);

  /* Gradient shorthands — blue family only, no purple */
  --g-primary: linear-gradient(135deg, #1A5FFF 0%, #2B8FFF 100%);
  --g-text:    linear-gradient(135deg, #2B6EFF 0%, #38B8FF 100%);

  /* Typography */
  --ff-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  /* Scale */
  --text-xs:   0.6875rem;
  --text-sm:   0.8125rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.5rem;
  --text-6xl:  4.5rem;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0,0,0,.5), 0 8px 40px rgba(0,0,0,.35);
  --shadow-glow: 0 0 40px var(--blue-glow), 0 0 80px rgba(43,110,255,.12);
}

/* ── BASE ── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: var(--text-base);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grid background texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(43,110,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,110,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-5);
  position: relative;
  z-index: 1;
}

.section { padding: var(--space-32) 0; }

.section-alt {
  background: var(--bg2);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

/* Section pill badge above titles */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(43,110,255,.1);
  border: 1px solid rgba(43,110,255,.3);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: var(--space-5);
  box-shadow: 0 0 16px rgba(43,110,255,.15);
}

.section-heading {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.75;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* Gradient text highlight */
.highlight,
.g-text {
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-amber { color: var(--amber); }

.num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ── GRADIENT ANIMATED BG ── */
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s;
  touch-action: manipulation;
  white-space: nowrap;
  min-height: 44px;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0);    }

/* Primary — gradient + pulsing glow */
.btn-primary {
  background: var(--g-primary);
  color: #fff;
  padding: 15px 30px;
  border-radius: 0.5em;
  font-size: var(--text-base);
  letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(43,110,255,.35), 0 0 0 0 rgba(43,110,255,.4);
  animation: glowPulse 2.8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(43,110,255,.38), 0 0 0 0 rgba(43,110,255,.2); }
  50%       { box-shadow: 0 6px 36px rgba(43,110,255,.55), 0 0 28px 4px rgba(43,110,255,.22); }
}

.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(43,110,255,.6), 0 0 48px rgba(43,110,255,.2);
  animation: none;
}

.btn-primary-lg {
  padding: 18px 40px;
  font-size: var(--text-lg);
  border-radius: 0.5em;
}

/* Ghost — glass border */
.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text-2);
  padding: 14px 24px;
  border-radius: 0.5em;
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--border-hi);
  color: var(--text);
  background: rgba(43,110,255,.08);
  box-shadow: 0 0 20px rgba(43,110,255,.15);
}

/* Outline — mesmos tokens do btn-donate, versão ghost */
.btn-outline-cyan {
  background-size: 280% auto;
  background-image: linear-gradient(
    325deg,
    rgba(19, 95, 216, 0.18)  0%,
    rgba(71, 184, 255, 0.14) 55%,
    rgba(19, 95, 216, 0.18)  90%
  );
  color: #a8d8ff;
  border: 1px solid rgba(71,184,255,.35);
  padding: 13px 26px;
  border-radius: 0.5em;
  backdrop-filter: blur(8px);
  transition: 0.8s;
  box-shadow:
    0px 0px 14px rgba(71,184,255,.2),
    inset 2px 2px 6px rgba(175,230,255,.15),
    inset -2px -2px 6px rgba(19,95,216,.2);
}

.btn-outline-cyan:hover {
  background-position: right top;
  color: #fff;
  border-color: rgba(71,184,255,.55);
  box-shadow:
    0px 0px 22px rgba(71,184,255,.35),
    inset 2px 2px 6px rgba(175,230,255,.2),
    inset -2px -2px 6px rgba(19,95,216,.25);
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(43,110,255,.1);
  color: var(--blue);
  border: 1px solid rgba(43,110,255,.3);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(43,110,255,.15);
}

.badge-amber {
  background: rgba(255,154,60,.1);
  color: var(--orange);
  border-color: rgba(255,154,60,.3);
  box-shadow: 0 0 12px rgba(255,154,60,.15);
}

/* ── GLASS CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Top shimmer line */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(43,110,255,.4) 50%, transparent 100%);
}

.card-hover {
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}

.card-hover:hover {
  border-color: rgba(43,110,255,.3);
  background: var(--card-hi);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 32px rgba(43,110,255,.12);
}

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-primary { animation: none; }
  @keyframes glowPulse {}
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: #05070C;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .01em;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 0;
  flex-wrap: wrap;
  text-align: center;
}
.announcement-flash {
  font-size: 16px;
  animation: announcement-pulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255,210,80,.8));
}
@keyframes announcement-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18) rotate(-6deg); }
}
.announcement-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.announcement-text strong {
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12.5px;
}
.announcement-price { display: inline-flex; align-items: baseline; gap: 6px; }
.price-old {
  text-decoration: line-through;
  text-decoration-color: #FF4D4D;
  text-decoration-thickness: 2px;
  color: #FF6B6B;
  font-weight: 500;
}
.price-new {
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 0 12px rgba(255,255,255,.4);
}
.announcement-badge {
  background: rgba(255,154,60,.14);
  border: 1px solid rgba(255,154,60,.45);
  color: #FFB877;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.announcement-divider { opacity: .55; }
.announcement-ends { font-weight: 500; opacity: .92; }
.announcement-timer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.timer-block {
  background: rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.18);
  padding: 3px 8px;
  border-radius: 6px;
  min-width: 38px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-size: 13.5px;
}
.timer-label {
  font-size: 10px;
  font-weight: 600;
  opacity: .7;
  margin-left: 1px;
}
.timer-sep { opacity: .65; font-weight: 700; }

@media (max-width: 640px) {
  /* Tudo escala fluidamente com a largura da tela */
  .announcement-bar { font-size: clamp(8px, 2.4vw, 12px); }
  .announcement-inner { gap: clamp(3px, 1vw, 6px); padding: 5px clamp(6px, 1.5vw, 12px); flex-wrap: nowrap; align-items: center; }
  .announcement-divider { display: none; }
  .announcement-flash { font-size: clamp(9px, 2.5vw, 13px); }
  .announcement-text { gap: clamp(3px, 1vw, 6px); flex-wrap: nowrap; white-space: nowrap; }
  .announcement-text strong { font-size: clamp(8px, 2.3vw, 11px); letter-spacing: .04em; }
  .price-old { display: inline; font-size: clamp(9px, 2.4vw, 12px); }
  .price-new { display: none; }
  .announcement-badge { font-size: clamp(7px, 2vw, 10px); padding: 1px clamp(3px, 1vw, 6px); white-space: nowrap; }
  .announcement-timer { white-space: nowrap; }
  .timer-block { min-width: unset; padding: 1px clamp(3px, 1vw, 5px); font-size: clamp(8px, 2.4vw, 11px); }
  .timer-sep { font-size: clamp(8px, 2.2vw, 10px); }
  .timer-block-seconds, .timer-sep-seconds { display: inline-flex; }
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .35s, border-color .35s, padding .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8,9,15,.88);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-color: var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--ff-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--g-primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(43,110,255,.4);
}

.logo-mark svg { stroke: #fff; }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color .2s;
}

.nav-link:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px;
  color: var(--text);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  padding: 152px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Animated radial gradient behind MacBook */
.hero::before {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(43,110,255,.24) 0%,
    rgba(43,110,255,.08) 40%,
    transparent 70%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: .9; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1; transform: translateX(-50%) scaleX(1.08); }
}

/* Top soft glow */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 0%, rgba(43,110,255,.1), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.hero-eyebrow { margin-bottom: var(--space-5); }

.hero-headline {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
  max-width: 860px;
}

.hero-sub {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group { display: flex; flex-direction: column; gap: var(--space-5); align-items: center; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: center;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--muted);
}

.hero-guarantee svg { color: var(--green); flex-shrink: 0; }

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.hero-proof-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero-avatars { display: flex; align-items: center; }

.hero-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  overflow: hidden;
  margin-left: -10px;
  background: var(--g-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.hero-avatar:first-child { margin-left: 0; }
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; }

.hero-proof-text { font-size: var(--text-sm); color: var(--muted); line-height: 1.5; }
.hero-proof-text strong { color: var(--text); }

.hero-proof-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-proof-stars span:first-child {
  color: #F59E0B;
  font-size: var(--text-base);
  letter-spacing: 1px;
  line-height: 1;
}

.hero-proof-rating {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}

/* ── MACBOOK MOCKUP ── */
.hero-visual {
  width: 100%;
  max-width: 920px;
  position: relative;
  perspective: 1000px;
  perspective-origin: center center;
}

.macbook-wrap {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s ease-out;
}

/* Glow intensifica no hover do mockup */
.macbook-wrap:hover .macbook-glow-bg {
  opacity: 1.4;
  filter: blur(32px);
}

/* ── Ambient glow — behind the device, big spread ── */
.macbook-glow-bg {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  height: 90px;
  background: radial-gradient(
    ellipse at center,
    rgba(43,110,255,.65)  0%,
    rgba(43,110,255,.28) 40%,
    rgba(0,212,255,.06)  65%,
    transparent          80%
  );
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

/* ── LID — the entire screen half ── */
.macbook-lid {
  /* Gunmetal aluminum — very dark, slight warm tint */
  background:
    linear-gradient(180deg,
      #1d2230 0%,      /* top edge — slightly lighter */
      #161b26 35%,
      #121620 100%);   /* bottom edge — deepest */
  /* Hair-thin outer border — simulates the machined edge */
  border: 1px solid rgba(255,255,255,.13);
  border-bottom: none;
  border-radius: 14px 14px 3px 3px;
  /* Precise bezel: top=12px (camera area), sides=8px, no bottom (chin below) */
  padding: 12px 8px 0;
  position: relative;
  /* Realistic shadow for the lid on a surface */
  box-shadow:
    inset 0  1px 0 rgba(255,255,255,.09),   /* top inner highlight */
    inset 0 -1px 0 rgba(0,0,0,.25),          /* bottom inner shadow */
    0 2px 4px rgba(0,0,0,.5);               /* underneath shadow at hinge */
}

/* Top-edge metallic highlight — one-pixel shimmer */
.macbook-lid::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent          0%,
    rgba(43,110,255,.5) 30%,
    rgba(0,212,255,.45) 55%,
    rgba(43,110,255,.3) 75%,
    transparent         100%
  );
  border-radius: 14px 14px 0 0;
  pointer-events: none;
}

/* Bottom chin inside the lid (below screen) */
.macbook-lid::after {
  content: '';
  display: block;
  height: 9px;
  margin: 0 -8px; /* extend to lid edges */
  background: inherit;
  border-top: 1px solid rgba(0,0,0,.2);
}

/* ── Camera — absolute, perfectly centered in the top bezel ── */
.macbook-camera {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  /* Dark circle with slight luminance to suggest a lens */
  background: radial-gradient(circle at 35% 35%, #2a2a3a, #0a0a10);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.07),
    inset 0 0 3px rgba(0,212,255,.12);
  z-index: 2;
}

/* ── Screen area — fills the content area between the bezels ── */
.macbook-screen-inner {
  background: #050508;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
  /* Exact ratio of the dashboard image (860×540) */
  aspect-ratio: 16 / 9;
  position: relative;
  /* Screen edge shadow for depth */
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.6),
    inset 0 2px 8px rgba(0,0,0,.5);
}

/* Glass reflection — simulates a glossy screen surface */
.macbook-screen-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      140deg,
      rgba(255,255,255,.055) 0%,
      rgba(255,255,255,.01)  25%,
      transparent            45%,
      transparent            70%,
      rgba(0,0,0,.04)        100%
    );
  pointer-events: none;
  z-index: 10;
}

.macbook-screen-img {
  width: 100%;
  height: 100%;
  object-fit: fill;   /* no cropping — image fills exactly */
  display: block;
}

/* ── Hinge — ultra-thin connecting bar ── */
.macbook-hinge {
  height: 4px;
  background: linear-gradient(180deg,
    #1a2030 0%,
    #101520 50%,
    #0c1018 100%);
  border-left:  1px solid rgba(255,255,255,.07);
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}

/* Hinge center highlight — the machined groove */
.macbook-hinge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent    0%,
    rgba(255,255,255,.04) 30%,
    rgba(255,255,255,.06) 50%,
    rgba(255,255,255,.04) 70%,
    transparent    100%);
}

/* ── Base / keyboard deck ── */
.macbook-base {
  background: linear-gradient(180deg,
    #1a2030 0%,
    #161c28 50%,
    #111620 100%);
  border: 1px solid rgba(255,255,255,.09);
  border-top: none;
  border-radius: 0 0 10px 10px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 -1px 0 rgba(0,0,0,.5),
    /* Realistic shadow cast on the "desk" */
    0 20px 60px rgba(0,0,0,.9),
    0  8px 24px rgba(0,0,0,.7),
    0  2px  8px rgba(0,0,0,.6);
}

/* Subtle speaker grille suggestion on the sides */
.macbook-base::before,
.macbook-base::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 32px; height: 2px;
  border-radius: 1px;
  background: rgba(255,255,255,.04);
}
.macbook-base::before { left: 20px; }
.macbook-base::after  { right: 20px; }

.macbook-trackpad {
  width: 56px;
  height: 11px;
  border-radius: 4px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.4);
}

/* ── Float animation for the whole device ── */
@keyframes macFloat {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-10px); }
}

/* ── HERO PRIMARY CTA ── */
.btn-donate {
  --btn-bg-1: hsla(194, 100%, 52%, 1);
  --btn-bg-2: hsla(217, 100%, 42%, 1);
  --btn-bg-color: hsla(360, 100%, 100%, 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 0.9em 1.4em;
  min-width: 120px;
  min-height: 44px;
  font-size: var(--size, 1rem);
  font-weight: 500;
  transition: 0.8s;
  background-size: 280% auto;
  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 55%,
    var(--btn-bg-2) 90%
  );
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow:
    0px 0px 12px rgba(71, 184, 255, 0.2),
    0px 5px 5px -1px rgba(58, 125, 233, 0.12),
    inset 4px 4px 8px rgba(175, 230, 255, 0.18),
    inset -4px -4px 8px rgba(19, 95, 216, 0.18);
  /* Reset inherited .btn-primary overrides */
  animation: none;
}

.btn-donate:hover {
  background-position: right top;
  transform: translateY(-2px);
}

.btn-donate:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
}

@media (prefers-reduced-motion: reduce) {
  .btn-donate { transition: linear; }
}

/* ── Floating stat card — rides with the laptop ── */
/* ── Hero floating badges ── */
.hero-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 4px 24px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(10px);
  animation: badgeFadeIn .6s ease forwards, badgeFloat 4s ease-in-out infinite;
}

.hero-badge--tl { top: 10%;  left: -10%; animation-delay: .2s, .8s; }
.hero-badge--tr { top: 10%;  right: -10%; animation-delay: .35s, 1.2s; }
.hero-badge--bl { bottom: 22%; left: -10%; animation-delay: .5s, 1s; }
.hero-badge--br { bottom: 22%; right: -10%; animation-delay: .65s, 1.4s; }

@keyframes badgeFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.hero-badge-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  letter-spacing: .01em;
}

/* Badges no mobile — menores e reposicionados */
@media (max-width: 768px) {
  .hero-badge {
    padding: 5px 10px 5px 6px;
    gap: 5px;
  }

  .hero-badge-icon {
    width: 18px;
    height: 18px;
  }

  .hero-badge-icon svg { width: 10px; height: 10px; }

  .hero-badge-label { font-size: 10px; }

  .hero-badge--tl { top: 6%;  left: -4%; }
  .hero-badge--tr { top: 6%;  right: -4%; }
  .hero-badge--bl { bottom: 18%; left: -4%; }
  .hero-badge--br { bottom: 18%; right: -4%; }
}

/* Respeita reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-badge { animation: none; opacity: 1; transform: none; }
}

/* Legacy keyframe kept for compatibility */
@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .macbook-wrap     { animation: none; }
  .hero-float-card  { animation: none; }
  @keyframes macFloat {}
  @keyframes heroGlow {}
}

.float-label { font-size: var(--text-xs); color: var(--muted); margin-bottom: 4px; }

.float-val {
  font-family: var(--ff-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text);
}

.float-change {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--green);
  margin-top: 2px;
}

/* ── MARQUEE ── */
.marquee-strip {
  padding: 16px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before { left: 0;  background: linear-gradient(to right, var(--bg2), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left,  var(--bg2), transparent); }

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: fit-content;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0 var(--space-8);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--g-primary);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--blue);
}

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

/* ── PAIN SECTION ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-16);
}

.pain-card {
  padding: var(--space-8);
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.pain-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #F87171, #FBA94C);
}

.pain-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(248,113,113,.1);
  border: 1px solid rgba(248,113,113,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F87171;
  margin-bottom: var(--space-5);
  box-shadow: 0 0 16px rgba(248,113,113,.15);
}

.pain-card h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-3); }
.pain-card p  { font-size: var(--text-sm); color: var(--text-2); line-height: 1.7; }

/* ── HOW IT WORKS ── */

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-16);
  position: relative;
}

/* Connector spans — observed by IntersectionObserver via .reveal */
.step-connector {
  position: absolute;
  top: 35px;
  height: 2px;
  pointer-events: none;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent           0%,
    rgba(77,142,255,.18) 18%,
    rgba(77,142,255,.75) 50%,
    rgba(77,142,255,.18) 82%,
    transparent          100%
  );
  filter: drop-shadow(0 0 5px rgba(77,142,255,.55));
  /* override .reveal's translateY with scaleX */
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.step-connector.visible {
  transform: scaleX(1);
}

.step-connector-1 {
  left:  calc(100% / 6 + 50px);
  right: calc(50% + 50px);
}
.step-connector-2 {
  left:  calc(50% + 50px);
  right: calc(100% / 6 + 50px);
}

.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue-dim);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid var(--blue-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 0 6px var(--bg2),
    0 0 0 7px var(--blue-glow),
    0 0 28px rgba(43,110,255,.25),
    0 4px 20px rgba(0,0,0,.35);
  transition: box-shadow .3s ease, transform .3s ease;
}

.step:hover .step-num {
  transform: scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 0 0 6px rgba(var(--bg2-rgb, 18,18,30), 0.85),
    0 0 0 7px rgba(43,110,255,.35),
    0 0 40px rgba(43,110,255,.45),
    0 4px 24px rgba(0,0,0,.40);
}

.step h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-2); }
.step p   { font-size: var(--text-sm); color: var(--text-2); line-height: 1.7; max-width: 260px; margin: 0 auto; }

/* ── DEMO VIDEO ── */
.demo-wrap {
  margin-top: var(--space-16);
}

.demo-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-hi);
  box-shadow:
    0 0 0 1px rgba(77,142,255,.08),
    0 8px 40px rgba(0,0,0,.55),
    0 0 60px rgba(43,110,255,.10);
  background: var(--surface);
  position: relative;
}

.demo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(77,142,255,.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}


/* ── DEMO LANGUAGES ── */
.demo-title {
  text-align: center;
  font-family: var(--ff-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.demo-title-sub {
  display: inline-block;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.demo-langs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-5);
}

.demo-langs-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-langs-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.demo-langs-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-2);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 5px 14px;
}

.demo-langs-list li + li::before {
  display: none;
}

.lang-flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.demo-langs-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border-radius: var(--r-pill);
  padding: 2px 7px;
  margin-left: 2px;
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
}

.feat {
  padding: var(--space-6);
  border-radius: var(--r-lg);
}

.feat-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--blue-dim);
  border: 1px solid rgba(43,110,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(43,110,255,.2);
  transition: box-shadow .25s, background .25s;
}

.feat:hover .feat-icon {
  background: rgba(43,110,255,.2);
  box-shadow: 0 0 28px rgba(43,110,255,.35);
}

.feat h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); }
.feat p  { font-size: var(--text-sm); color: var(--text-2); line-height: 1.65; }

/* ── DASHBOARD SHOWCASE ── */
.dash-tabs {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.dash-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .25s;
  min-height: 44px;
}

.dash-tab svg { flex-shrink: 0; opacity: .5; transition: opacity .25s; }

.dash-tab.active svg,
.dash-tab:hover svg { opacity: 1; }

.dash-tab.active,
.dash-tab:hover {
  background: rgba(43,110,255,.1);
  color: var(--text);
  border-color: rgba(43,110,255,.35);
  box-shadow: 0 0 16px rgba(43,110,255,.12);
}

.dash-showcase-wrap {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(43,110,255,.08);
  backdrop-filter: blur(12px);
}

/* Progress bar */

/* Panel fade transition */
.dash-panel {
  display: none;
  opacity: 0;
}

.dash-panel.active {
  display: block;
  opacity: 1;
  transition: opacity .45s ease;
}

.dash-showcase-bar {
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
}


.dash-showcase-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  pointer-events: none;
}

.dash-showcase-center .dash-view-switch { pointer-events: auto; }

.dash-showcase-label {
  font-size: var(--text-xs);
  color: var(--muted);
  white-space: nowrap;
}

/* Switch Overview / Details */
.dash-view-switch {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px;
  gap: 2px;
  flex-shrink: 0;
}

.dash-view-btn {
  padding: 4px 12px;
  border-radius: var(--r-pill);
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.dash-view-btn.active {
  background: rgba(43,110,255,.2);
  color: var(--blue);
}

.dash-view-btn.locked {
  opacity: .35;
  cursor: not-allowed;
}

/* Reuse dots styles */
.dash-dots { display: flex; gap: 5px; }
.dash-dot  { width: 10px; height: 10px; border-radius: 50%; }
.dot-red   { background: #FF5F57; }
.dot-yellow{ background: #FEBC2E; }
.dot-green { background: #28C840; }

.dash-panel { display: none; }
.dash-panel.active { display: block; }
.dash-panel img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; }

/* Details — scroll vertical, imagem em tamanho natural */
.dash-details-scroll {
  max-height: 580px;
  overflow-y: scroll; /* scroll em vez de auto — reserva espaço da barra */
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.4) transparent;
  /* Força scrollbar visível no WebKit mobile */
  -webkit-overflow-scrolling: touch;
}

/* Gradiente inferior indicando mais conteúdo */
.dash-details-scroll::after {
  content: '';
  position: sticky;
  bottom: 0;
  display: block;
  height: 40px;
  background: linear-gradient(to top, rgba(10,13,20,.8), transparent);
  pointer-events: none;
}

.dash-details-scroll::-webkit-scrollbar { width: 6px; }
.dash-details-scroll::-webkit-scrollbar-track { background: transparent; }
.dash-details-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.35); border-radius: 99px; }

.dash-details-scroll img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: unset;
}

/* ── COMPARISON TABLE ── */
.compare-wrap {
  margin-top: var(--space-16);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--border);
}

.compare-col-h {
  padding: 20px 28px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-align: center;
}

.compare-col-h.cx      { color: var(--orange); }
.compare-col-h.other   { color: var(--muted); }
.compare-col-h.feature { text-align: left; color: var(--muted); }

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(43,110,255,.04); }

.compare-cell {
  padding: 16px 28px;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-2);
}

.compare-cell.feat-label { justify-content: flex-start; color: var(--text-2); font-weight: 500; }
.compare-cell.good { color: var(--orange); }
.compare-cell.bad  { color: var(--muted); }

/* ── PERSONAS ── */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
}

/* Card base */
.persona {
  position: relative;
  padding: var(--space-6);
  text-align: center;
  border-radius: 1.5em;
  background: linear-gradient(135deg,
    rgba(43,110,255,.09) 0%,
    rgba(0,212,255,.03) 100%);
  border: 2px solid rgba(43,110,255,.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: default;
}

/* Hover: lift + glow */
.persona:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(43,110,255,.14), 0 6px 24px rgba(0,0,0,.45);
  border-color: rgba(43,110,255,.24);
}

/* ::before — overlay gradient (opacity 0 → 1 on hover) */
.persona::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(43,110,255,.12) 0%,
    rgba(0,212,255,.05) 60%,
    transparent 100%);
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}
.persona:hover::before { opacity: 1; }

/* ::after — radial gradient central (pulsa no hover) */
.persona::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(43,110,255,.11) 0%, transparent 68%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 0;
}
.persona:hover::after {
  opacity: 1;
  animation: persona-radial-pulse 2.2s ease-in-out infinite;
}

@keyframes persona-radial-pulse {
  0%, 100% { opacity: 1;   transform: translate(-50%, -50%) scale(1);    }
  50%       { opacity: .4;  transform: translate(-50%, -50%) scale(1.22); }
}

/* 3 dots decorativos — canto superior direito */
.persona-dots {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 5px;
  z-index: 2;
}
.persona-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.persona-dot:nth-child(1) { opacity: .55; }
.persona-dot:nth-child(2) { opacity: .28; }
.persona-dot:nth-child(3) { opacity: .12; }

/* Blur orb decorativo — canto inferior esquerdo */
.persona-orb {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(43,110,255,.14);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
  transition: opacity .4s ease;
}
.persona:hover .persona-orb {
  animation: persona-orb-pulse 2.2s ease-in-out infinite;
}

@keyframes persona-orb-pulse {
  0%, 100% { opacity: 1;  }
  50%       { opacity: .3; }
}

/* Conteúdo interno — sobe levemente no hover */
.persona-content {
  position: relative;
  z-index: 1;
  transition: transform .3s ease;
}
.persona:hover .persona-content { transform: translateY(-2px); }

/* Ícone */
.persona-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-lg);
  background: rgba(43,110,255,.08);
  border: 1px solid rgba(43,110,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 0 16px rgba(43,110,255,.1);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.persona:hover .persona-icon {
  box-shadow: 0 0 24px rgba(43,110,255,.2);
  border-color: rgba(43,110,255,.32);
}
.persona-icon svg { stroke: var(--blue); }

/* Título com gradient text — tons da família --blue do projeto */
.persona h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
  background: linear-gradient(90deg, var(--text) 0%, #c8dcff 60%, #9ec0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.persona p { font-size: var(--text-sm); color: var(--text-2); line-height: 1.65; }

/* ── FEATURE DEEP DIVE ── */
.feature-deep-rows { margin-top: var(--space-16); display: flex; flex-direction: column; gap: var(--space-12); }

.feature-deep-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.feature-deep-row.reverse { direction: rtl; }
.feature-deep-row.reverse > * { direction: ltr; }

.feature-visual-box {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  backdrop-filter: blur(12px);
}

.feature-content .eyebrow { display: inline-flex; }

.feature-content h3 {
  font-size: clamp(var(--text-2xl), 2.5vw, var(--text-3xl));
  font-weight: 700;
  margin-bottom: var(--space-4);
  margin-top: var(--space-3);
}

.feature-content p { font-size: var(--text-base); color: var(--text-2); line-height: 1.75; margin-bottom: var(--space-6); }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.feature-list li {
  font-size: var(--text-sm);
  color: var(--text-2);
  padding-left: var(--space-5);
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px 1px rgba(255,154,60,.7);
}

/* Funnel vis */
.funnel-vis {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.funnel-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  width: 100%;
}

/* Creative vis */
.creative-vis { display: flex; flex-direction: column; gap: 8px; }

.creative-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.creative-thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.creative-name { font-size: var(--text-xs); color: var(--text-2); flex: 1; }
.creative-roas { font-size: var(--text-sm); font-weight: 700; }

/* Budget vis */
.budget-vis { display: flex; flex-direction: column; gap: var(--space-4); }

.budget-row { display: flex; flex-direction: column; gap: var(--space-2); }

.budget-row-head {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  font-weight: 600;
}

.budget-bar-bg {
  height: 6px;
  background: rgba(255,255,255,.06);
  border-radius: 99px;
  overflow: hidden;
}

.budget-bar {
  height: 100%;
  border-radius: 99px;
  box-shadow: 0 0 8px rgba(43,110,255,.4);
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-16);
}

.testi-card {
  padding: var(--space-8);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.testi-stars {
  color: var(--amber);
  font-size: var(--text-base);
  letter-spacing: 2px;
}

.testi-attachment {
  margin-top: var(--space-4);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.testi-attachment img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 160px;
  border-radius: var(--r-md);
}

.testi-quote {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: auto;
}

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(43,110,255,.3);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(43,110,255,.2);
}

.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: var(--text-sm); font-weight: 700; color: var(--text); }
.testi-role { font-size: var(--text-xs); color: var(--muted); }

/* ── PRICING ── */
.pricing-card {
  max-width: 680px;
  margin: var(--space-16) auto 0;
  border-radius: var(--r-2xl);
  border-color: rgba(43,110,255,.32);
  box-shadow: 0 0 0 1px rgba(43,110,255,.12), var(--shadow-card), 0 0 100px rgba(43,110,255,.14);
  overflow: hidden;
}

.pricing-top {
  padding: var(--space-8) var(--space-8) var(--space-8);
  text-align: center;
  background: linear-gradient(180deg, rgba(43,110,255,.1) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

/* Badge popular animado */
.pricing-badge { margin-bottom: var(--space-6); }

.badge-popular {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43,110,255,.12);
  color: var(--blue);
  border: 1.5px solid rgba(43,110,255,.4);
  border-radius: var(--r-pill);
  padding: 7px 18px;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 0 16px rgba(43,110,255,.18);
}

.badge-popular-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: popDot 1.8s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(43,110,255,.6);
}

@keyframes popDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.pricing-name {
  font-family: var(--ff-display);
  font-size: clamp(var(--text-2xl), 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
  color: var(--text);
}

.pricing-tagline {
  color: var(--text-2);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Ancoragem — preço riscado maior e mais visível */
.price-original {
  color: var(--red);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  text-decoration: line-through;
  text-decoration-color: rgba(240,96,96,.6);
  text-decoration-thickness: 2px;
  opacity: .85;
  text-transform: capitalize;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: var(--space-5);
  filter: drop-shadow(0 0 8px rgba(43,110,255,.25)) drop-shadow(0 0 16px rgba(0,212,255,.1));
}

.price-amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

/* Preço dominante */
.price-dollar,
.price-num,
.price-cents {
  font-family: 'Inter', sans-serif;
  line-height: 1;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.price-num {
  font-size: 128px;
  font-weight: 700;
}

.price-dollar {
  font-size: 44px;
  font-weight: 800;
  margin-top: 14px;
  align-self: flex-start;
}

.price-cents {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 14px;
  margin-left: -8px;
  align-self: flex-end;
}

.price-period {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-lg);
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: capitalize;
  font-weight: 700;
  margin-top: -4px;
}

/* Bloco de economia destacado — fundo verde escuro */
.price-save-block {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(34,199,139,.08);
  border: 1px solid rgba(34,199,139,.25);
  border-radius: var(--r-md);
  padding: 6px 14px;
  color: var(--green);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: 0 0 12px rgba(34,199,139,.08);
}

.price-save-block strong { font-size: var(--text-base); }
.price-save-block svg { flex-shrink: 0; stroke: var(--green); width: 14px; height: 14px; }

/* ── Body ── */
.pricing-body { padding: var(--space-8) var(--space-8); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  line-height: 1.5;
}

/* Feature: nome bold maior + descrição menor e suave */
.pricing-features li > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-features li strong {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
}

.pricing-features li em {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--muted);
}

/* Check com borda colorida refinada */
.pf-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(34,199,139,.08);
  border: 1.5px solid rgba(34,199,139,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 12px rgba(34,199,139,.18);
}

.pricing-cta-full {
  display: block;
  width: 100%;
  padding: 20px;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
}

.pricing-sub { text-align: center; font-size: var(--text-xs); color: var(--muted); margin-top: var(--space-3); }

.pricing-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--text-2);
  font-weight: 600;
}

.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── SECURITY ── */
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.security-copy > p {
  font-weight: 400;
  color: var(--text-2);
}

.security-checks {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.security-check {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-2);
  font-weight: 500;
}

.security-check svg { color: var(--orange); flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(255,154,60,.7)); }

.sec-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.sec-badge {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
}

.sec-badge-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--blue-dim);
  border: 1px solid rgba(43,110,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(43,110,255,.2);
}

.sec-badge-text { font-size: var(--text-sm); font-weight: 700; color: var(--text); }
.sec-badge-sub  { font-size: var(--text-xs); color: var(--muted); }

/* ── GUARANTEE ── */
.guarantee-inner {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--space-12);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(43,110,255,.06);
}

.guarantee-seal {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  display: block;
}

.guarantee-copy h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.guarantee-copy p { font-size: var(--text-base); color: var(--text-2); line-height: 1.75; margin-bottom: var(--space-6); }

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-photo-wrap {
  aspect-ratio: 4 / 5;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
}

.about-photo-caption {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: rgba(8,8,15,.85);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-4);
  backdrop-filter: blur(12px);
}

.about-photo-name { font-weight: 700; font-size: var(--text-base); }
.about-photo-role { font-size: var(--text-xs); color: var(--muted); }

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.about-stat {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
}

.about-stat-val {
  font-family: var(--ff-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  background: var(--g-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label { font-size: var(--text-xs); color: var(--muted); margin-top: 2px; }
.about-copy p { color: var(--text-2); line-height: 1.8; margin-bottom: var(--space-4); }

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: var(--space-16) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: border-color .2s;
}

.faq-item.open { border-color: rgba(43,110,255,.3); }

.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--space-4);
  min-height: 44px;
}

.faq-icon-wrap {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(43,110,255,.1);
  border: 1px solid rgba(43,110,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background .2s, transform .3s;
}

.faq-item.open .faq-icon-wrap {
  background: rgba(43,110,255,.2);
  transform: rotate(45deg);
}

.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-body { max-height: 300px; }

.faq-body-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.75;
}

/* ── FINAL CTA ── */
.final-cta-section {
  padding: 0 0 var(--space-32);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(43,110,255,.16) 0%,
    rgba(43,110,255,.05) 40%,
    transparent 70%);
  pointer-events: none;
}

.final-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43,110,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,110,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.final-cta-section .container { position: relative; z-index: 1; }

.final-cta-section h2 {
  font-size: clamp(var(--text-3xl), 5vw, 60px);
  font-weight: 700;
  margin-bottom: var(--space-5);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-section p {
  font-size: var(--text-lg);
  color: var(--text-2);
  margin-bottom: var(--space-10);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.final-cta-microcopy {
  margin-top: var(--space-4) !important;
  margin-bottom: 0 !important;
  font-size: var(--text-sm);
  color: var(--muted);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); }

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col { display: flex; flex-direction: column; gap: var(--space-3); }

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--muted);
  transition: color .2s;
}

.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--muted);
}

.footer-legal { display: flex; gap: var(--space-5); }
.footer-legal a { color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--blue); }

/* ─── MOBILE MENU ─── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(8,8,15,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-5);
  z-index: 99;
}

.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: var(--space-3) 0; font-size: var(--text-base); color: var(--text); }
.mobile-nav .btn { width: 100%; text-align: center; }

/* ─── DASH FRAME (kept for non-MacBook use in showcase) ─── */
.dash-frame {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.dash-titlebar {
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.dash-title-label {
  flex: 1;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--muted);
}

.dash-img { width: 100%; display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .personas-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: var(--space-20) 0; }
  .section-alt { padding: var(--space-20) 0; }

  .demo-langs { flex-direction: column; gap: var(--space-2); }
  .demo-langs-list { gap: var(--space-2); }
  .demo-langs-list li {
    font-size: var(--text-xs);
    padding: 4px 10px;
    gap: 4px;
  }
  .lang-flag { width: 14px; height: 10px; }

  .site-nav { display: none; }
  .header-actions .btn-donate { display: none; }
  .header-actions .btn-ghost  { display: flex; }
  .menu-toggle { display: flex; }

  /* Quando menu aberto, container static → absolute do menu referencia .site-header */
  .site-header.nav-open .container { position: static; }

  /* Menu mobile aberto */
  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8,9,15,.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: var(--space-4) var(--space-6);
    gap: var(--space-2);
    align-items: stretch;
    z-index: 90;
    animation: nav-slide-down .25s ease-out;
  }
  .site-header.nav-open .site-nav .nav-link {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    font-size: var(--text-base);
  }
  .site-header.nav-open .site-nav .nav-link:last-child { border-bottom: none; }

  /* Ícone hamburger → X quando aberto */
  .site-header.nav-open .menu-toggle svg { display: none; }
  .site-header.nav-open .menu-toggle::before {
    content: '';
    width: 16px;
    height: 16px;
    background:
      linear-gradient(45deg, transparent 46%, currentColor 46%, currentColor 54%, transparent 54%),
      linear-gradient(-45deg, transparent 46%, currentColor 46%, currentColor 54%, transparent 54%);
  }

  /* Dashboard tabs — caber na mesma linha */
  .dash-tabs { gap: var(--space-1); margin-bottom: var(--space-6); }
  .dash-tab  { padding: 7px 12px; font-size: var(--text-xs); gap: 5px; min-height: 36px; }
  .dash-tab img { width: 14px; height: 14px; }

  /* Dashboard showcase — proporcao 16:9 responsiva */
  .dash-showcase-wrap { overflow: hidden; }
  .dash-panel         { width: 100%; min-width: unset; }
  .dash-panel img     { width: 100%; height: auto; max-width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }

  .hero { padding: 120px 0 60px; text-align: center; }
  .hero-inner { gap: var(--space-10); }
  .hero-headline { font-size: clamp(36px, 8vw, 52px); }

  .macbook-base { height: 20px; border-radius: 0 0 7px 7px; }
  .macbook-lid  { border-radius: 10px 10px 3px 3px; padding: 10px 6px 0; }

  .pain-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .step-connector { display: none; }

  /* Vertical connector lines between stacked steps */
  .step { position: relative; }
  .step:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: var(--space-8);
    margin: var(--space-3) auto 0;
    border-radius: 2px;
    background: linear-gradient(
      180deg,
      rgba(77,142,255,.18)  0%,
      rgba(77,142,255,.75) 50%,
      rgba(77,142,255,.18) 100%
    );
    filter: drop-shadow(0 0 5px rgba(77,142,255,.55));
  }

  .feature-deep-row,
  .feature-deep-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-deep-row.reverse > * { direction: ltr; }

  .testi-grid { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .security-inner { grid-template-columns: 1fr; }

  .compare-head, .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-col-h.feature, .compare-cell.feat-label { display: none; }

  .guarantee-inner { flex-direction: column; text-align: center; padding: var(--space-8); }

  .pricing-card { border-radius: var(--r-xl); }
  .pricing-top, .pricing-body { padding: var(--space-6); }

  .footer-top { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }

}

@keyframes nav-slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: column; width: 100%; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .sec-badges { grid-template-columns: 1fr; }
}
