/* ============================================
   LILIMED — Design Premium Médico
   Black + Forest Green · Confiança e Autoridade
   ============================================ */

:root {
  /* Backgrounds */
  --bg-base:    #06100d;
  --bg-1:       #0a1810;
  --bg-2:       #0f2118;
  --bg-card:    rgba(12, 28, 22, 0.75);
  --bg-card-hi: rgba(14, 34, 26, 0.85);

  /* Borders */
  --border:     rgba(34, 197, 94, 0.12);
  --border-md:  rgba(34, 197, 94, 0.22);
  --border-hi:  rgba(34, 197, 94, 0.38);

  /* Brand greens */
  --green-900: #052e16;
  --green-800: #14532d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-300: #86efac;
  --teal-400:  #2dd4bf;

  /* Text */
  --text:      #edfff5;
  --text-dim:  #9ec9b2;
  --text-mute: #5a8570;

  /* Accent gradient — refined, not neon */
  --grad:      linear-gradient(135deg, #4ade80 0%, #22c55e 60%, #16a34a 100%);
  --grad-glow: 0 0 32px rgba(34, 197, 94, 0.30);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --ease:      cubic-bezier(.22, 1, .36, 1);

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
}

/* ─── Reset & base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(34, 197, 94, 0.35); color: var(--text); }

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

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

/* ─── Canvas bg ────────────────────────────── */
#bg-canvas {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .6;
}

/* ─── Container ────────────────────────────── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 780px;  margin: 0 auto; padding: 0 28px; }

/* ─── Typography ───────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.text-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 16px;
}

.section-head {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 620px;
}
.section-head h2 {
  margin-bottom: 14px;
  text-wrap: balance;
}
.section-head p  { color: var(--text-dim); font-size: 1.1rem; }

/* ─── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .25s var(--ease),
              border-color .25s var(--ease),
              box-shadow .25s var(--ease),
              transform .2s var(--ease);
  padding: 11px 20px;
}
.btn-sm  { padding: 9px 16px; font-size: 0.875rem; }
.btn-lg  { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad);
  color: #032210;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.55);
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-md);
}
.btn-outline:hover {
  border-color: var(--border-hi);
  background: rgba(34, 197, 94, 0.06);
  transform: translateY(-1px);
}

.btn-link {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 4px;
  transition: color .2s;
}
.btn-link:hover { color: var(--text); }

/* ─── Focus ────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--green-400);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ─── Reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

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

/* ══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  transition: background .35s, border-color .35s, padding .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 16, 13, 0.92);
  border-bottom-color: var(--border);
  padding: 12px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--green-400);
  transition: width .25s var(--ease);
}
.nav-links a:hover       { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 7px;
  cursor: pointer;
  color: var(--text);
  transition: border-color .2s;
}
.burger:hover { border-color: var(--border-hi); }

/* ══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 130px 0 90px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left col */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 24px;
  padding: 7px 14px;
  border: 1px solid var(--border-md);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.06);
}
.dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .7);
  animation: live-pulse 2.4s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(74,222,128,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(74,222,128,0);  }
  100% { box-shadow: 0 0 0 0   rgba(74,222,128,0);  }
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 22px;
  color: var(--text);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-mute);
}
.hero-trust svg { color: var(--green-600); flex-shrink: 0; }

/* Right col — dashboard */
.hero-visual { position: relative; }

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(74,222,128,.06);
}

.dash-main {
  padding: 24px;
  animation: dash-float 7s ease-in-out infinite;
}
@keyframes dash-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.dash-dots {
  display: flex; gap: 6px;
}
.dash-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(34,197,94,.25);
}
.dash-dots span:first-child { background: rgba(34,197,94,.6); }
.dash-title {
  font-size: 0.8rem;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.dash-metric {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.dm-value {
  display: block;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.dm-green { color: var(--green-400); }
.dm-label {
  font-size: 0.73rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-chart-wrap { margin-bottom: 22px; }
.dash-chart-label {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-bottom: 10px;
  display: block;
}
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
}
.dc-bar {
  flex: 1;
  height: var(--h);
  background: rgba(34,197,94,.18);
  border-radius: 4px 4px 2px 2px;
  position: relative;
  transition: background .3s;
  animation: dc-rise .9s var(--ease) backwards;
}
.dc-bar:nth-child(1){animation-delay:.05s}
.dc-bar:nth-child(2){animation-delay:.10s}
.dc-bar:nth-child(3){animation-delay:.15s}
.dc-bar:nth-child(4){animation-delay:.20s}
.dc-bar:nth-child(5){animation-delay:.25s}
.dc-bar:nth-child(6){animation-delay:.30s}
@keyframes dc-rise { from { height: 0; opacity: 0; } }
.dc-bar-active { background: var(--green-600); }
.dc-tip {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  color: var(--green-300);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
}
.dc-bar:hover .dc-tip { opacity: 1; }
.dc-bar-active .dc-tip { opacity: 1; }

.dash-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.dash-upcoming { display: flex; flex-direction: column; gap: 8px; }

.dash-appt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.appt-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-300);
  flex-shrink: 0;
}
.appt-info { flex: 1; min-width: 0; }
.appt-info strong { display: block; font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.appt-info span   { font-size: 0.75rem; color: var(--text-mute); }
.appt-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.appt-badge.confirmed { background: rgba(34,197,94,.15); color: var(--green-400); border: 1px solid rgba(34,197,94,.25); }
.appt-badge.pending   { background: rgba(250,204,21,.1);  color: #fbbf24;          border: 1px solid rgba(250,204,21,.2); }

/* Floating mini cards */
.dash-mini {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card-hi);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  min-width: 210px;
}
.dash-mini-1 {
  bottom: -20px; left: -40px;
  animation: dash-float 8s 1s ease-in-out infinite;
}
.dash-mini-2 {
  top: 40px; right: -44px;
  animation: dash-float 9s 2s ease-in-out infinite;
}

.mini-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(34,197,94,.15);
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
  flex-shrink: 0;
}
.mini-icon-blue { background: rgba(45,212,191,.12); border-color: rgba(45,212,191,.2); color: var(--teal-400); }
.mini-text strong { display: block; font-size: 0.83rem; font-weight: 600; }
.mini-text span   { font-size: 0.73rem; color: var(--text-mute); }

/* ── Hero com imagem real ── */
.hero-screen-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.7));
  animation: dash-float 7s ease-in-out infinite;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: #0e211a;
  border: 1px solid var(--border-md);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
}
.bb-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(34,197,94,.25);
}
.bb-dot:first-child { background: rgba(239,68,68,.5); }
.bb-dot:nth-child(2) { background: rgba(234,179,8,.4); }
.bb-dot:nth-child(3) { background: rgba(34,197,94,.5); }
.bb-url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: .04em;
}

.hero-screen-img {
  display: block;
  width: 100%;
  border: 1px solid var(--border-md);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  object-fit: cover;
}

/* Badges flutuantes sobre a imagem */
.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(8,24,18,.92);
  border: 1px solid var(--border-md);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
  white-space: nowrap;
}
.hbf-1 {
  bottom: -16px; left: -24px;
  animation: dash-float 8s 1s ease-in-out infinite;
}
.hbf-2 {
  top: 60px; right: -24px;
  animation: dash-float 9s 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(12,28,22,.4);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 8px 28px;
}
.trust-item svg { color: var(--green-500); flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 22px;
  background: var(--border-md);
}

/* ══════════════════════════════════════════════
   VALUE PROPS
═══════════════════════════════════════════════ */
.value-props { padding: 100px 0 80px; }
.vp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.vp-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .3s, transform .3s var(--ease);
}
.vp-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.vp-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(34,197,94,.1);
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
  margin-bottom: 22px;
}
.vp-card h3 { margin-bottom: 10px; }
.vp-card p  { color: var(--text-dim); font-size: 0.95rem; line-height: 1.65; }

/* ══════════════════════════════════════════════
   MODULES
═══════════════════════════════════════════════ */
.modules { padding: 100px 0; }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.module-card {
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s;
  overflow: hidden;
}
.module-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px at var(--mx,50%) var(--my,0%), rgba(34,197,94,.08), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.module-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.module-card:hover::after { opacity: 1; }

.mc-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(34,197,94,.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
  margin-bottom: 18px;
  transition: background .3s, border-color .3s;
}
.module-card:hover .mc-icon-wrap { background: rgba(34,197,94,.14); border-color: var(--border-md); }

/* Cabeçalho compacto: ícone + título na mesma linha */
.mc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.mc-header .mc-icon-wrap { margin-bottom: 0; flex-shrink: 0; }
.mc-header h3 { margin: 0; font-size: 1rem; }

.module-card > p { color: var(--text-dim); font-size: 0.88rem; margin-bottom: 14px; line-height: 1.55; }

/* Tags compactas */
.mc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mc-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-400);
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.18);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.module-card:hover .mc-tags span {
  background: rgba(34,197,94,.13);
  border-color: rgba(34,197,94,.30);
}

.mc-list { list-style: none; }
.mc-list li {
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 7px 0 7px 28px;
  position: relative;
  border-bottom: 1px solid rgba(34,197,94,.06);
  transition: color .2s;
}
.mc-list li:last-child { border-bottom: none; }
.mc-list li:hover { color: var(--text); }
.mc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><circle cx='10' cy='10' r='10' fill='%2316a34a' opacity='0.25'/><circle cx='10' cy='10' r='7' fill='none' stroke='%2322c55e' stroke-width='1.2'/><path d='M6.5 10.2l2.5 2.5 4.5-5' stroke='%234ade80' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ══════════════════════════════════════════════
   SHOWCASE — blocos alternados texto + imagem
═══════════════════════════════════════════════ */
.showcase {
  padding: 60px 0 100px;
}
.showcase .container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
/* alternância feita via ordem no DOM — sem direction trick */

/* Texto */
.fs-text .section-label { margin-bottom: 12px; }
.fs-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 18px;
}
.fs-text > p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 28px;
}
.fs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dim);
  padding: 12px 16px;
  background: rgba(34,197,94,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .25s, background .25s, color .25s;
}
.fs-list li:hover {
  border-color: var(--border-md);
  background: rgba(34,197,94,.08);
  color: var(--text);
}
.fs-list li svg {
  flex-shrink: 0;
  color: var(--green-400);
}

/* Frame de tela */
.fs-visual { position: relative; }
.screen-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-md);
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(34,197,94,.06),
    inset 0 1px 0 rgba(255,255,255,.04);
  transition: transform .4s var(--ease), box-shadow .4s;
  position: relative;
}
.screen-frame:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 40px 90px rgba(0,0,0,.6),
    0 0 40px rgba(34,197,94,.14),
    0 0 0 1px rgba(34,197,94,.14);
}

/* Glow aura atrás do frame */
.fs-visual::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(34,197,94,.12), transparent 70%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.sf-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: #0c1e16;
  border-bottom: 1px solid var(--border);
}
.sf-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.sf-bar span:nth-child(1) { background: rgba(239,68,68,.5); }
.sf-bar span:nth-child(2) { background: rgba(234,179,8,.4); }
.sf-bar span:nth-child(3) { background: rgba(34,197,94,.5); }
.sf-url {
  width: auto !important; height: auto !important;
  border-radius: 0 !important;
  background: none !important;
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: .04em;
}
.screen-frame img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.screen-frame:hover img { transform: scale(1.02); }

/* ══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(12,28,22,.4), transparent);
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-num {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.step h4 { margin-bottom: 10px; }
.step p  { color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; }
.step-arrow {
  color: var(--text-mute);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   SPECIALTIES
═══════════════════════════════════════════════ */
.specialties { padding: 100px 0; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.spec-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .3s, transform .3s var(--ease);
}
.spec-card:hover { border-color: var(--border-md); transform: translateY(-4px); }
.spec-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(34,197,94,.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
  margin-bottom: 18px;
}
.spec-card h4 { margin-bottom: 8px; }
.spec-card p  { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; }

/* ══════════════════════════════════════════════
   IMPACT / MÉTRICAS
═══════════════════════════════════════════════ */
.impact { padding: 100px 0; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.impact-card {
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color .3s, transform .3s var(--ease);
}
.impact-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.impact-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.impact-card h4 { margin-bottom: 8px; }
.impact-card p  { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testimonials { padding: 100px 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.testi-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .3s, transform .3s var(--ease);
}
.testi-card:hover { border-color: var(--border-md); transform: translateY(-4px); }

.testi-stars { display: flex; gap: 4px; }

.testi-card blockquote {
  font-size: 0.97rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-style: normal;
  flex: 1;
  position: relative;
  padding-left: 18px;
}
.testi-card blockquote::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 3px;
  background: var(--grad);
  border-radius: 2px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border-md);
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span   { display: block; font-size: 0.78rem; color: var(--text-mute); margin-top: 2px; }

/* ══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing { padding: 100px 0; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.plan-card {
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color .3s, transform .3s var(--ease);
}
.plan-card:hover { border-color: var(--border-md); transform: translateY(-4px); }

.plan-card.plan-featured {
  border-color: var(--border-hi);
  background: linear-gradient(160deg, rgba(14,40,28,.95), rgba(10,24,18,.95));
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(34,197,94,.18);
}
.plan-card.plan-featured:hover { transform: translateY(-6px); }

.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #032210;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(34,197,94,.4);
}

.plan-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.plan-desc    { font-size: 0.88rem; color: var(--text-mute); margin-bottom: 22px; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.pp-cur { font-size: 1rem; color: var(--text-dim); font-weight: 500; }
.pp-val {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pp-per { font-size: 0.9rem; color: var(--text-mute); }

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.plan-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.plan-feats li::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--green-600);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* ══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq { padding: 100px 0; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  user-select: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-300); }

.faq-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
  flex-shrink: 0;
  transition: background .25s, transform .3s;
}
.faq-item[open] .faq-icon {
  background: rgba(34,197,94,.1);
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 4px 22px;
  color: var(--text-dim);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 680px;
}

/* ══════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════ */
.cta-section { padding: 80px 0 120px; }
.cta-box {
  background: linear-gradient(160deg, rgba(14,40,28,.9), rgba(8,22,16,.9));
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(34,197,94,.18), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content .section-label { margin-bottom: 14px; }
.cta-content h2 { margin-bottom: 16px; }
.cta-content > p { color: var(--text-dim); margin-bottom: 32px; font-size: 1.05rem; }

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  background: rgba(4,20,14,.7);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.cta-form input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.cta-form input::placeholder { color: var(--text-mute); }

.cta-reassurance {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--text-mute);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-reassurance svg { color: var(--green-600); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  padding: 72px 0 36px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.65;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-mute);
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text-dim); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout      { grid-template-columns: 1fr; gap: 60px; }
  .hero-content     { text-align: center; }
  .hero-description { max-width: 560px; margin: 0 auto 36px; }
  .hero-ctas        { justify-content: center; }
  .hero-trust       { justify-content: center; }
  .hbf-1            { left: 0; bottom: -30px; }
  .hbf-2            { right: 0; top: 40px; }
  .plans-grid       { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-top       { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav       { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-actions .btn-primary { display: none; }
  .burger     { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(6,16,13,.97);
    border-bottom: 1px solid var(--border);
    padding: 20px 28px;
    gap: 18px;
    backdrop-filter: blur(16px);
  }
  .vp-grid          { grid-template-columns: 1fr; }
  .trust-inner      { gap: 0; justify-content: flex-start; overflow-x: auto; }
  .trust-item       { padding: 8px 20px; white-space: nowrap; }
  .steps-grid       { flex-direction: column; align-items: stretch; }
  .step-arrow       { display: none; }
  .cta-box          { padding: 50px 28px; }
  .footer-nav       { grid-template-columns: 1fr 1fr; }

  /* Showcase responsivo */
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .hbf-1, .hbf-2 { display: none; }
  .showcase .container { gap: 64px; }
}

@media (max-width: 540px) {
  .hero-stats       { grid-template-columns: 1fr 1fr; }
  .footer-nav       { grid-template-columns: 1fr; }
  .dash-mini-1, .dash-mini-2 { display: none; }
}
