/* ==========================================================================
   PADRÃO FORENSE — DESIGN SYSTEM & STYLESHEET
   Crafted for Legal Tech & AI Standardized Documents
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;1,6..72,400&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Core Colors */
  --bg-dark: #0f1318;
  --bg-slate: #14191f;
  --bg-slate-card: #1b2129;
  --bg-slate-card-hover: #222a34;
  --bg-light: #fbfaf8;
  --bg-light-card: #ffffff;
  --bg-light-subtle: #f4f2ee;

  /* Accent Colors */
  --emerald-primary: #17705c;
  --emerald-hover: #135d4c;
  --emerald-light: #248a73;
  --emerald-glow: rgba(23, 112, 92, 0.25);
  --mint-accent: #3aa588;
  --mint-glow: rgba(58, 165, 136, 0.3);
  --cyber-teal: #2dd4bf;
  --cyber-glow: rgba(45, 212, 191, 0.2);

  /* Status & Warning */
  --danger-red: #ef4444;
  --danger-bg: rgba(239, 68, 68, 0.08);
  --danger-border: rgba(239, 68, 68, 0.25);
  --danger-glow: rgba(239, 68, 68, 0.2);
  --success-green: #10b981;
  --success-bg: rgba(16, 185, 129, 0.08);
  --success-border: rgba(16, 185, 129, 0.25);

  /* Text Colors */
  --text-pure-white: #ffffff;
  --text-white: #fbfaf8;
  --text-light-muted: #c9cdd3;
  --text-dim: #8a93a0;
  --text-dark: #14191f;
  --text-dark-muted: #5b646f;
  --text-dark-subtle: #8a93a0;

  /* Borders & Dividers */
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-hover: rgba(58, 165, 136, 0.35);
  --border-light: #e3e0db;
  --border-light-hover: #c9cdd3;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow-emerald: 0 0 35px rgba(23, 112, 92, 0.35);
  --shadow-glow-mint: 0 0 25px rgba(58, 165, 136, 0.25);
  --shadow-glow-danger: 0 0 25px rgba(239, 68, 68, 0.2);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --trans-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-base: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Resets & Global Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-dark);
  color: var(--text-white);
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(23, 112, 92, 0.18), transparent 70%),
    radial-gradient(circle at 100% 30%, rgba(58, 165, 136, 0.05), transparent 40%),
    radial-gradient(circle at 0% 70%, rgba(23, 112, 92, 0.06), transparent 50%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

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

button, input {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* --- Container & Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 960px;
}

.container-tight {
  max-width: 800px;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

/* --- Section Dividers --- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
  margin: 0;
}

/* --- Navigation Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 19, 24, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: transform var(--trans-base), background var(--trans-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--trans-fast);
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
  transition: transform var(--trans-fast), filter var(--trans-fast);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 16px rgba(58, 165, 136, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-light-muted);
  transition: color var(--trans-fast);
}

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

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background-color: var(--emerald-primary);
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-xs);
  transition: all var(--trans-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(23, 112, 92, 0.3);
}

.header-cta-btn:hover {
  background-color: var(--emerald-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(23, 112, 92, 0.45);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .header-inner {
    height: 74px;
  }
  .brand-logo-img {
    height: 44px;
  }
}

/* --- Badges & Micro Tags --- */
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(23, 112, 92, 0.15);
  border: 1px solid rgba(58, 165, 136, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mint-accent);
}

.badge-tag-icon {
  width: 14px;
  height: 14px;
  stroke: var(--mint-accent);
}

/* ==========================================================================
   DOBRA 1 — HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 130px;
  padding-bottom: 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 940px;
  margin: 0 auto 3.5rem auto;
}

.hero-headline {
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.hero-headline span.highlight-ai {
  color: var(--mint-accent);
  position: relative;
  display: inline-block;
}

.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-light-muted);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.15rem;
  }
  .hero-subheadline {
    font-size: 1.05rem;
  }
}

/* --- Hero Narrative Insertion (A Tese que Não Foi Enfrentada) — High Impact Upgrade --- */
.hero-narrative-box {
  max-width: 860px;
  margin: 3.5rem auto 3.5rem auto;
  text-align: left;
  background: linear-gradient(180deg, rgba(23, 112, 92, 0.12) 0%, rgba(17, 23, 30, 0.98) 100%);
  border: 1.5px solid rgba(58, 165, 136, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.25rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(23, 112, 92, 0.15);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-narrative-box {
    padding: 2rem 1.5rem;
    margin: 2.5rem auto;
  }
}

.narrative-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mint-accent);
  background: rgba(23, 112, 92, 0.25);
  border: 1px solid rgba(58, 165, 136, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-xs);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-narrative-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 1.75rem;
}

.hero-narrative-title span.text-highlight-danger {
  color: #f87171;
  text-decoration: underline;
  text-decoration-color: rgba(239, 68, 68, 0.4);
  text-underline-offset: 4px;
}

@media (max-width: 768px) {
  .hero-narrative-title {
    font-size: 1.5rem;
  }
}

.hero-narrative-p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
}

.hero-narrative-p strong {
  color: var(--text-white);
}

/* 3 Diagnostic Cards */
.narrative-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .narrative-breakdown-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.narrative-breakdown-card {
  background: rgba(15, 19, 24, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  transition: all var(--trans-base);
}

.narrative-breakdown-card:hover {
  border-color: rgba(239, 68, 68, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
}

.breakdown-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: #f87171;
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.breakdown-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.breakdown-card-result {
  font-size: 0.825rem;
  color: #94a3b8;
  line-height: 1.45;
}

.breakdown-card-result strong {
  color: #fca5a5;
}

/* Punchline Callout */
.hero-narrative-punchline {
  background: rgba(23, 112, 92, 0.18);
  border: 1px solid var(--mint-accent);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 25px rgba(58, 165, 136, 0.15);
}

.hero-narrative-punchline .punchline-icon {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--mint-accent);
  line-height: 1;
}

.hero-narrative-punchline .punchline-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hero-narrative-punchline .punchline-text span {
  color: var(--mint-accent);
}

@media (max-width: 640px) {
  .hero-narrative-punchline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hero-narrative-punchline .punchline-text {
    font-size: 1.05rem;
  }
}

/* Forensic Test Callout Box */
.hero-test-callout {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 15, 20, 0.98) 100%);
  border: 1.5px solid rgba(58, 165, 136, 0.4);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero-test-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(58, 165, 136, 0.2);
}

.hero-test-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mint-accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}

.hero-test-timer-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
}

.hero-test-instruction {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 0.85rem;
}

.hero-test-verdict {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mint-accent);
  background: rgba(23, 112, 92, 0.15);
  border-left: 3px solid var(--mint-accent);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  line-height: 1.4;
}

/* --- Hero Visual: Dual AI Scanner Simulator --- */
.hero-visual-wrapper {
  margin: 0 auto 3.5rem auto;
  max-width: 1140px;
  background: var(--bg-slate);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.hero-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.visual-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.visual-system-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.visual-interactive-hint {
  font-size: 0.8125rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Grid Dual Comparison */
.hero-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  position: relative;
}

@media (max-width: 860px) {
  .hero-dual-grid {
    grid-template-columns: 1fr;
  }
}

/* Card Column Styling */
.dual-card {
  background: #0d1115;
  border-radius: var(--radius-md);
  border: 1px solid;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--trans-base), box-shadow var(--trans-base);
}

.dual-card-bad {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: inset 0 0 20px rgba(239, 68, 68, 0.04);
}

.dual-card-good {
  border-color: rgba(23, 112, 92, 0.45);
  box-shadow: inset 0 0 20px rgba(23, 112, 92, 0.08);
}

.dual-card-banner {
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid;
}

.dual-card-bad .dual-card-banner {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.dual-card-good .dual-card-banner {
  background: rgba(23, 112, 92, 0.2);
  border-color: rgba(23, 112, 92, 0.35);
  color: #6ee7b7;
}

/* Document Simulated Preview */
.doc-mockup-body {
  padding: 1.5rem;
  flex: 1;
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  text-align: left;
  user-select: none;
}

/* Laser Scanner Simulation */
.scanner-laser {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 10;
  pointer-events: none;
  animation: scanLaser 4.5s ease-in-out infinite alternate;
}

.dual-card-bad .scanner-laser {
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.8), transparent);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.dual-card-good .scanner-laser {
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.85), transparent);
  box-shadow: 0 0 8px rgba(45, 212, 191, 0.4);
}

@keyframes scanLaser {
  0% { top: 6%; opacity: 0.7; }
  50% { opacity: 1; }
  100% { top: 88%; opacity: 0.7; }
}

/* Broken Doc Elements (Left side) */
.doc-bad-header {
  border: 1px dashed #d1d5db;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  background: #f3f4f6;
  color: #6b7280;
}

.doc-bad-textbox {
  border: 1.5px dashed #ef4444;
  background: #fef2f2;
  padding: 0.6rem;
  margin-bottom: 0.75rem;
  border-radius: 4px;
  position: relative;
}

.doc-bad-textbox::after {
  content: '[Caixa Flutuante: Ilegível pelo OCR]';
  position: absolute;
  top: -9px;
  right: 8px;
  background: #ef4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  font-family: var(--font-mono);
}

.doc-bad-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
  font-size: 0.75rem;
}

.doc-bad-table td {
  border: 1px solid #d1d5db;
  padding: 4px 6px;
  background: #f9fafb;
}

.corrupted-line {
  height: 8px;
  background: #d1d5db;
  border-radius: 4px;
  margin-bottom: 6px;
  opacity: 0.7;
}

.corrupted-line.w-80 { width: 80%; }
.corrupted-line.w-60 { width: 60%; }
.corrupted-line.w-95 { width: 95%; }

/* Fictitious Law Firm Brand & Letterhead System */
.firm-brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1.5px solid var(--emerald-primary);
}

.firm-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.firm-logo-svg {
  flex-shrink: 0;
}

.firm-brand-text {
  display: flex;
  flex-direction: column;
}

.firm-name {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #14191F;
  line-height: 1.2;
}

.firm-subtitle {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--emerald-primary);
  text-transform: uppercase;
  margin-top: 2px;
}

.firm-contact-meta {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: 0.6rem;
  color: #64748B;
  line-height: 1.35;
}

/* Bad Version Firm Header (Amateur/Desalinhado) */
.bad-firm-header {
  border: 1px dashed #ef4444;
  background: #FFF5F5;
  padding: 6px 10px;
  margin-bottom: 12px;
  text-align: center;
  border-radius: 2px;
}

.bad-firm-logo-box {
  font-family: monospace;
  font-size: 0.65rem;
  color: #DC2626;
  font-weight: bold;
  margin-bottom: 2px;
}

.bad-firm-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.8125rem;
  font-weight: bold;
  color: #1E3A8A;
}

.bad-firm-sub {
  font-size: 0.65rem;
  color: #64748B;
  display: block;
}

/* Clean Doc Elements (Right side) */
.doc-good-container {
  font-family: var(--font-serif);
  color: #1a202c;
  line-height: 1.65;
}

.doc-good-header {
  font-family: var(--font-sans);
  text-align: center;
  font-weight: 800;
  font-size: 0.825rem;
  letter-spacing: 0.06em;
  color: #1e293b;
  margin-bottom: 1rem;
}

.doc-good-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0.75rem 0 0.5rem 0;
  color: #0f172a;
}

.doc-good-p {
  font-size: 0.825rem;
  text-indent: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: justify;
}

.doc-good-thesis-highlight {
  background: rgba(23, 112, 92, 0.08);
  border-left: 3px solid var(--emerald-primary);
  padding: 0.5rem 0.75rem;
  margin: 0.75rem 0;
  font-size: 0.8125rem;
  font-style: italic;
}

/* AI Terminal Extraction Output Box */
.ai-output-box {
  background: #090c10;
  padding: 1rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  border-top: 1px solid;
  text-align: left;
}

.dual-card-bad .ai-output-box {
  border-color: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.dual-card-good .ai-output-box {
  border-color: rgba(23, 112, 92, 0.3);
  color: #34d399;
}

.ai-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.ai-output-stream {
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.45;
}

.token-error {
  background: rgba(239, 68, 68, 0.2);
  padding: 1px 4px;
  border-radius: 2px;
  color: #fca5a5;
  font-weight: 700;
}

.token-valid {
  color: #a7f3d0;
}

/* --- Hero CTA Area --- */
.hero-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.primary-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.75rem;
  background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-light));
  color: var(--text-white);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(23, 112, 92, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  transition: all var(--trans-smooth);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.primary-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.primary-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(23, 112, 92, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  background: linear-gradient(135deg, var(--emerald-light), var(--mint-accent));
}

.primary-cta-btn:hover::before {
  left: 100%;
}

.primary-cta-btn:active {
  transform: translateY(0) scale(0.99);
}

.cta-subtext {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-subtext .dot-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
}

/* ==========================================================================
   DOBRA 2 — A DOR (THE LAWYER'S REALITY)
   ========================================================================== */
.pain-section {
  background-color: var(--bg-slate);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.pain-content-col {
  text-align: left;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-headline {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 1.75rem;
}

.pain-story-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light-muted);
  margin-bottom: 1.25rem;
}

.pain-highlight-box {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: rgba(239, 68, 68, 0.08);
  border-left: 4px solid var(--danger-red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pain-highlight-quote {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fca5a5;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.pain-highlight-author {
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* Pain Interactive Cards Stack */
.pain-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pain-frustration-card {
  background: var(--bg-slate-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
  transition: transform var(--trans-fast), border-color var(--trans-fast);
}

.pain-frustration-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-dark-hover);
}

.frustration-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
}

.forensic-numeral {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--mint-accent);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  background: rgba(23, 112, 92, 0.15);
  border: 1px solid rgba(58, 165, 136, 0.3);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.forensic-tag-symbol {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mint-accent);
  line-height: 1;
}

.frustration-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
}

.frustration-desc {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ==========================================================================
   DOBRA 3 — A VIRADA (3-STEP METHODOLOGY)
   ========================================================================== */
.turnaround-section {
  text-align: center;
  position: relative;
}

.turnaround-header {
  max-width: 840px;
  margin: 0 auto 4rem auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.step-card {
  background: var(--bg-slate-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all var(--trans-base);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint-accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), var(--shadow-glow-mint);
}

.step-number-watermark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
  font-family: var(--font-mono);
}

.step-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(23, 112, 92, 0.25);
  border: 1px solid rgba(58, 165, 136, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--mint-accent);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

/* Document Tags Cloud */
.doc-coverage-box {
  background: var(--bg-slate);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.doc-coverage-title {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}

.doc-tags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.doc-tag-pill {
  padding: 0.5rem 1.15rem;
  background: var(--bg-slate-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-white);
  transition: all var(--trans-fast);
}

.doc-tag-pill:hover {
  border-color: var(--mint-accent);
  color: var(--mint-accent);
  background: rgba(23, 112, 92, 0.15);
}

.doc-coverage-punchline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mint-accent);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   DOBRA 4 — PROVA VISUAL (INTERACTIVE BEFORE/AFTER SLIDER)
   ========================================================================== */
.proof-section {
  background-color: var(--bg-slate);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}

.proof-header {
  max-width: 780px;
  margin: 0 auto 3rem auto;
}

.doc-type-tabs {
  display: inline-flex;
  background: var(--bg-dark);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  margin-bottom: 2.5rem;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.doc-tab-btn {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-xs);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: all var(--trans-fast);
}

.doc-tab-btn.active {
  background: var(--emerald-primary);
  color: var(--text-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.doc-tab-btn:hover:not(.active) {
  color: var(--text-white);
}

/* Interactive Split Comparison Slider Component */
.compare-container {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto 1.5rem auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
  user-select: none;
  background: #ffffff;
  min-height: 540px;
}

.compare-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.compare-layer-before {
  z-index: 1;
  background: #fdfcfb;
}

.compare-layer-after {
  z-index: 2;
  width: 50%; /* controlled by JS slider */
  background: #ffffff;
  border-right: 2px solid var(--mint-accent);
}

.compare-doc-content {
  width: 1020px;
  min-width: 1020px;
  height: 100%;
  padding: 3rem 4rem;
  text-align: left;
  font-size: 0.95rem;
  box-sizing: border-box;
}

@media (max-width: 1040px) {
  .compare-container {
    min-height: 600px;
  }
  .compare-doc-content {
    width: 860px;
    min-width: 860px;
    padding: 2rem;
  }
}

/* Bad Version Document Styling */
.doc-sample-bad {
  font-family: Arial, Helvetica, sans-serif;
  color: #333333;
}

.bad-court-header {
  font-size: 0.85rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  border: 2px dashed #e5e7eb;
  padding: 0.75rem;
  background: #f9fafb;
}

.bad-floating-box {
  float: right;
  width: 260px;
  border: 1.5px solid #d1d5db;
  padding: 0.75rem;
  margin: 0 0 1rem 1rem;
  background: #fefce8;
  font-size: 0.8rem;
  border-radius: 4px;
}

.bad-heading {
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: underline;
  margin: 1.25rem 0 0.5rem 0;
  color: #111827;
}

.bad-paragraph {
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

/* Good Version Document Styling */
.doc-sample-good {
  font-family: var(--font-serif);
  color: #1a202c;
  line-height: 1.75;
}

.good-court-header {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--emerald-primary);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--emerald-primary);
}

.good-heading {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 1.5rem 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.good-heading::before {
  content: '¶';
  color: var(--emerald-primary);
  font-weight: 800;
}

.good-paragraph {
  font-size: 0.9375rem;
  text-indent: 2rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.good-highlight-quote {
  font-size: 0.9rem;
  margin: 1.25rem 0;
  padding: 0.85rem 1.25rem;
  background: rgba(23, 112, 92, 0.06);
  border-left: 3px solid var(--emerald-primary);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-style: italic;
}

/* Slider Drag Handle */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--mint-accent);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--mint-glow);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--bg-slate);
  border: 2px solid var(--mint-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 15px var(--mint-glow);
  font-size: 1.1rem;
  pointer-events: none;
}

/* Before / After Floating Badges */
.layer-badge {
  position: absolute;
  top: 1rem;
  z-index: 5;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.badge-layer-before {
  right: 1.5rem;
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.badge-layer-after {
  left: 1.5rem;
  background: var(--emerald-primary);
  color: white;
}

.proof-caption {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 1.5rem;
}

.proof-caption span {
  color: var(--mint-accent);
}

/* ==========================================================================
   DOBRA 5 — POR QUE ISSO IMPORTA AGORA (OCR & IA MECHANICS)
   ========================================================================== */
.why-section {
  position: relative;
}

.why-header {
  max-width: 860px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.why-lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light-muted);
}

.villains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.villain-card {
  background: var(--bg-slate-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: left;
  transition: all var(--trans-base);
  position: relative;
}

.villain-card:hover {
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(239, 68, 68, 0.1);
}

.villain-forensic-label {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--danger-red);
  margin-bottom: 0.85rem;
  display: inline-block;
  letter-spacing: 0.02em;
}

.villain-card-highlight {
  border-color: rgba(23, 112, 92, 0.45);
  background: var(--bg-slate);
}

.villain-card-highlight:hover {
  border-color: var(--mint-accent);
  box-shadow: var(--shadow-md), 0 0 25px var(--mint-glow);
}

.villain-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.villain-desc {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.why-warning-box {
  background: linear-gradient(135deg, rgba(23, 112, 92, 0.15), rgba(15, 19, 24, 0.95));
  border: 1px solid var(--mint-accent);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 30px var(--mint-glow);
}

.warning-punchline {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.4;
}

.warning-punchline span {
  color: var(--mint-accent);
}

/* ==========================================================================
   DOBRA 6 — O QUE VOCÊ RECEBE (OFFER & VALUE STACK)
   ========================================================================== */
.offer-section {
  background-color: var(--bg-slate);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}

.offer-header {
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 980px;
  margin: 0 auto 3.5rem auto;
  text-align: left;
}

@media (max-width: 768px) {
  .deliverables-grid {
    grid-template-columns: 1fr;
  }
}

.deliverable-card {
  background: var(--bg-slate-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--trans-base);
}

.deliverable-card:hover {
  border-color: var(--mint-accent);
  transform: translateY(-2px);
}

.deliverable-num-badge {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-xs);
  background: rgba(23, 112, 92, 0.18);
  border: 1px solid rgba(58, 165, 136, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-accent);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
}

.deliverable-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.deliverable-content p {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* Pricing Card Box */
.pricing-card-main {
  background: linear-gradient(180deg, #182029 0%, #10151b 100%);
  border: 2px solid var(--emerald-primary);
  border-radius: var(--radius-lg);
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow-emerald);
  position: relative;
  overflow: hidden;
}

.pricing-badge-popular {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: var(--emerald-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.price-display-wrapper {
  margin-bottom: 1.75rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mint-accent);
  vertical-align: top;
  margin-right: 4px;
}

.price-amount {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1;
}

.price-frequency {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--mint-accent);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-guarantees-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  font-weight: 500;
}

@media (max-width: 600px) {
  .pricing-guarantees-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ==========================================================================
   DOBRA 7 — QUEBRA DE OBJEÇÃO (FAQ ACCORDION)
   ========================================================================== */
.faq-section {
  text-align: center;
  position: relative;
}

.faq-header {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.faq-accordion-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.faq-item {
  background: var(--bg-slate-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--trans-fast), background var(--trans-fast);
}

.faq-item.active {
  border-color: var(--mint-accent);
  background: var(--bg-slate-card-hover);
}

.faq-question-btn {
  width: 100%;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  background: none;
  cursor: pointer;
  gap: 1rem;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--trans-base), background var(--trans-base);
  color: var(--mint-accent);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  background: var(--emerald-primary);
  color: white;
}

.faq-answer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--text-light-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer-body {
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   DOBRA 8 — FECHAMENTO (FINAL CONVERSION BANNER)
   ========================================================================== */
.closing-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0d11 100%);
  border-top: 1px solid var(--border-dark);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.closing-pilcrow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.closing-content-box {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.closing-headline {
  font-size: 3.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.closing-subtext {
  font-size: 1.25rem;
  color: var(--text-light-muted);
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .closing-headline {
    font-size: 2.25rem;
  }
  .closing-subtext {
    font-size: 1.05rem;
  }
}

/* --- Floating Sticky Conversion Bar --- */
.floating-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 90;
  width: calc(100% - 3rem);
  max-width: 780px;
  background: rgba(20, 25, 31, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--mint-accent);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), var(--shadow-glow-mint);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.floating-bar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-bar-logo {
  height: 28px;
  width: auto;
}

.floating-bar-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-white);
}

.floating-bar-price {
  color: var(--mint-accent);
  font-family: var(--font-mono);
}

.floating-bar-btn {
  padding: 0.65rem 1.35rem;
  background: var(--emerald-primary);
  color: white;
  font-size: 0.875rem;
  font-weight: 800;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all var(--trans-fast);
}

.floating-bar-btn:hover {
  background: var(--emerald-light);
}

@media (max-width: 640px) {
  .floating-bar {
    padding: 0.75rem 1rem;
  }
  .floating-bar-info {
    font-size: 0.8rem;
  }
  .floating-bar-logo {
    display: none;
  }
}

/* --- Footer --- */
.site-footer {
  background: #080a0d;
  border-top: 1px solid var(--border-dark);
  padding: 3.5rem 0 2rem 0;
  color: var(--text-dim);
  font-size: 0.875rem;
}

.footer-top-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand-col {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.footer-copyright {
  text-align: center;
  font-size: 0.8125rem;
}
