/* PEFAZ Marketing - Global Stylesheet
   Single source of truth for all pages.
   Imported via /partials/head.php in every page. */

:root {
  /* === Backgrounds (paleta enterprise SaaS dark — zinc/slate) === */
  --bg: #0F172A;          /* Fundo principal dark */
  --bg2: #111827;         /* Sidebar + topbar (zinc-900) */
  --bg-card: #1E293B;     /* Cards (slate-800) */
  --bg-el: #334155;       /* Elementos elevados (slate-700) */

  /* === Acento azul === */
  --blue: #2563EB;
  --blue-b: #3B82F6;
  --blue-l: #60A5FA;
  --blue-rgb: 37, 99, 235;
  --blue-rgb-l: 96, 165, 250;
  --blue-g: rgba(var(--blue-rgb),0.15);

  /* === Acentos === */
  --gold: #D4A853;
  --gold-l: #E8C476;
  --gold-d: rgba(212,168,83,0.12);
  --green: #10B981;
  --green-l: #34D399;
  --green-d: rgba(16,185,129,0.10);

  /* === Tipografia === */
  --t1: #F3F4F6;          /* Texto principal */
  --t2: #94A3B8;          /* Texto secundário */
  --t3: #64748B;          /* Texto sutil */
  --td: #475569;          /* Disabled */

  /* === Bordas (mais sutis, profundidade > linha) === */
  --brd: rgba(255,255,255,0.06);
  --brd-h: rgba(var(--blue-rgb),0.30);

  /* === Radius padrão === */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 10px;          /* Inputs, botões pequenos */
  --r-lg: 12px;          /* Botões primários, cards pequenos */
  --r-xl: 14px;          /* Cards padrão */
  --r-2xl: 16px;         /* Cards grandes */

  /* === Espaçamento === */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;

  /* === Sombras (profundidade suave) === */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.20);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.35);

  /* === Tipografia === */
  --fd: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fb: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === LIGHT THEME (toggle via [data-theme="light"] no <html>) ===
   Estratégia híbrida: header escuro (logo branco aparece bem) + corpo claro.
   Textos mais escuros que o default pra contraste em fundo branco. */
html[data-theme="light"] {
  /* Área central — fundo claro suave (gray-50) */
  --bg: #F9FAFB;          /* fundo principal */
  --bg-card: #FFFFFF;     /* cards brancos puros */
  --bg-el: #F3F4F6;       /* elementos elevados (gray-100) */

  /* Tipografia escura sobre fundo claro */
  --t1: #111827;          /* gray-900 */
  --t2: #4B5563;          /* gray-600 */
  --t3: #6B7280;          /* gray-500 */
  --td: #9CA3AF;          /* gray-400 */

  /* Bordas sutis */
  --brd: rgba(17,24,39,0.08);
  --brd-h: rgba(var(--blue-rgb),0.30);

  /* IMPORTANTE: --bg2 permanece DARK em light mode (sidebar híbrido estilo Linear/Attio) */
  --bg2: #111827;
}
html[data-theme="light"] body { background: var(--bg); color: var(--t1); }

/* =========================================================
   LIGHT MODE HÍBRIDO — Sidebar e Topbar SEMPRE dark
   (mesmo estilo Linear / Attio / Stripe Dashboard)
   ========================================================= */
html[data-theme="light"] .admin-hdr {
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #F3F4F6;
}
html[data-theme="light"] .admin-nav-link { color: #94A3B8; }
html[data-theme="light"] .admin-nav-link:hover { color: #F3F4F6; background: rgba(255,255,255,0.04); }
html[data-theme="light"] .admin-nav-link.is-active {
  background: rgba(var(--blue-rgb),0.18);
  color: var(--blue-l);
}
html[data-theme="light"] .admin-brand .tenant-wordmark { color: #F3F4F6 !important; }
html[data-theme="light"] .admin-user { color: #94A3B8; }
html[data-theme="light"] .admin-user a { color: #94A3B8; }
html[data-theme="light"] .admin-user a:hover { color: #F3F4F6; }
html[data-theme="light"] .global-search-trigger {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: #94A3B8;
}
html[data-theme="light"] .global-search-trigger:hover { background: rgba(255,255,255,0.10); color: #F3F4F6; }
html[data-theme="light"] .global-search-trigger .gs-kbd {
  background: rgba(255,255,255,0.08); color: #94A3B8; border-color: rgba(255,255,255,0.10);
}

/* === Sidebars laterais — DARK no light mode === */
html[data-theme="light"] .crm-side,
html[data-theme="light"] .tasks-side,
html[data-theme="light"] .tasks-side-nav,
html[data-theme="light"] .tasks-side-section,
html[data-theme="light"] .crm-layout > .crm-side,
html[data-theme="light"] .tasks-layout > .tasks-side {
  background: #111827 !important;
  border-color: rgba(255,255,255,0.06);
  color: #9CA3AF;
}
html[data-theme="light"] .crm-side-brand-txt,
html[data-theme="light"] .tasks-side-title { color: #F3F4F6; }
html[data-theme="light"] .crm-side-section-lbl { color: #94A3B8; }
html[data-theme="light"] .csn-item,
html[data-theme="light"] .tsn-item { color: #94A3B8; }
html[data-theme="light"] .csn-item:hover,
html[data-theme="light"] .tsn-item:hover { background: rgba(255,255,255,0.06); color: #F3F4F6; }
html[data-theme="light"] .csn-item.is-active,
html[data-theme="light"] .tsn-item.is-active {
  background: rgba(var(--blue-rgb),0.18);
  color: var(--blue-l);
}
html[data-theme="light"] .csn-badge,
html[data-theme="light"] .tsn-badge { background: rgba(255,255,255,0.08); color: #94A3B8; }
html[data-theme="light"] .csn-item.is-active .csn-badge,
html[data-theme="light"] .tsn-item.is-active .tsn-badge { background: rgba(var(--blue-rgb),0.25); color: var(--blue-l); }
html[data-theme="light"] .crm-side-divider { background: rgba(255,255,255,0.06); }
html[data-theme="light"] .crm-side-goal {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
html[data-theme="light"] .crm-goal-lbl { color: #94A3B8; }
html[data-theme="light"] .crm-goal-n { color: #F3F4F6; }
html[data-theme="light"] .crm-goal-sub { color: #64748B; }

/* Tasks sidebar — submenu de Projetos */
html[data-theme="light"] .tsn-submenu { border-left-color: rgba(255,255,255,0.10); }
html[data-theme="light"] .tsn-subitem { color: #64748B; }
html[data-theme="light"] .tsn-subitem:hover { background: rgba(255,255,255,0.04); color: #F3F4F6; }
html[data-theme="light"] .tsn-subitem.is-active { background: rgba(var(--blue-rgb),0.18); color: var(--blue-l); }
html[data-theme="light"] .tsn-proj-item { color: #94A3B8; }
html[data-theme="light"] .tsn-proj-item:hover { background: rgba(255,255,255,0.06); color: #F3F4F6; }
html[data-theme="light"] .tsn-proj-item.is-active { background: rgba(var(--blue-rgb),0.18); color: var(--blue-l); }

/* Cards e tabelas — branco com sombra sutil */
html[data-theme="light"] .admin-table {
  background: #FFFFFF;
  border-color: var(--brd);
  box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
html[data-theme="light"] .admin-table thead { background: #F8FAFC; }
html[data-theme="light"] .admin-table th { color: var(--t3); border-color: var(--brd); }
html[data-theme="light"] .admin-table td { border-color: var(--brd); color: var(--t1); }
html[data-theme="light"] .admin-table tbody tr:hover { background: #F8FAFC; }

/* Header permanece escuro pra logo branco e nav ficarem nítidos */
html[data-theme="light"] .admin-hdr {
  background: #0F172A;
  border-bottom-color: rgba(255,255,255,0.08);
}
html[data-theme="light"] .admin-nav-link { color: rgba(255,255,255,0.7); }
html[data-theme="light"] .admin-nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
html[data-theme="light"] .admin-nav-link.is-active { color: #fff; background: rgba(255,255,255,0.16); }
html[data-theme="light"] .admin-brand span { color: rgba(255,255,255,0.7); border-left-color: rgba(255,255,255,0.15); }
html[data-theme="light"] .admin-user-name { color: rgba(255,255,255,0.85); }
html[data-theme="light"] .admin-user-role { color: rgba(255,255,255,0.6); }
html[data-theme="light"] .admin-user-logout { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }
html[data-theme="light"] .notif-bell,
html[data-theme="light"] .tenant-switcher-btn { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); }

/* Inputs / cards / código sobre fundo claro */
html[data-theme="light"] .lead-input,
html[data-theme="light"] .lead-select,
html[data-theme="light"] .lead-textarea {
  background: #fff; color: var(--t1); border-color: var(--brd);
}
html[data-theme="light"] .lead-input:focus,
html[data-theme="light"] .lead-select:focus,
html[data-theme="light"] .lead-textarea:focus { border-color: var(--brand); }
html[data-theme="light"] code { background: #EEF2F7; color: #0F172A; }

/* Stats cards (números 9, 1, 0...) — label fica visível */
html[data-theme="light"] .stat,
html[data-theme="light"] .crm-card,
html[data-theme="light"] .crm-stat,
html[data-theme="light"] .crm-funnel-card { box-shadow: 0 1px 3px rgba(15,23,42,.06); }

/* Kanban — colunas no light precisam de mais contraste */
html[data-theme="light"] .kanban-col,
html[data-theme="light"] .board-list { background: #fff; border-color: var(--brd); box-shadow: 0 1px 2px rgba(15,23,42,.04); }
html[data-theme="light"] .kanban-col-head h3,
html[data-theme="light"] .board-list-head h3,
html[data-theme="light"] .board-list-name { color: var(--t1); }
html[data-theme="light"] .kanban-card,
html[data-theme="light"] .task-card { background: #fff; border-color: var(--brd); }

/* Sidebar do CRM */
html[data-theme="light"] .crm-sidebar,
html[data-theme="light"] .crm-sidebar-item { color: var(--t1); }
html[data-theme="light"] .crm-sidebar-item.is-active { background: rgba(var(--brand-rgb,37 99 235),0.1); color: var(--brand); }

/* Texto branco hardcoded em badges/headings de cor sólida fica ok (mantém contraste) */
/* Notificações painel */
html[data-theme="light"] .notif-panel { background: #fff; border-color: var(--brd); }
html[data-theme="light"] .notif-panel-head { border-bottom-color: var(--brd); }
html[data-theme="light"] .notif-item { border-bottom-color: var(--brd); color: var(--t1); }
html[data-theme="light"] .notif-item:hover { background: var(--bg-el); }

/* Tenant switcher dropdown */
html[data-theme="light"] .tenant-switcher-menu { background: #fff; border-color: var(--brd); color: var(--t1); }
html[data-theme="light"] .tenant-switcher-item { color: var(--t1); }
html[data-theme="light"] .tenant-switcher-item:hover { background: var(--bg-el); }

/* Dialogs / modais */
html[data-theme="light"] dialog { background: #fff; color: var(--t1); border-color: var(--brd); }
html[data-theme="light"] dialog::backdrop { background: rgba(15,23,42,0.5); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--fb); background: var(--bg); color: var(--t1); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; position: relative; max-width: 100vw; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all .3s var(--ease); }
ul { list-style: none; }
.ctn { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: all .4s var(--ease); }
.hdr.sc { background: rgba(8,11,18,.92); backdrop-filter: blur(24px); padding: 12px 0; border-bottom: 1px solid var(--brd); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; }
nav ul { display: flex; gap: 28px; align-items: center; }
nav a { font-size: .85rem; font-weight: 500; color: var(--t2); position: relative; }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); border-radius: 1px; transition: width .3s var(--ease); }
nav a:hover { color: var(--t1); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--t1); }
nav a.active::after { width: 100%; background: var(--gold); }
.ncta { background: var(--blue) !important; color: #fff !important; padding: 10px 22px !important; border-radius: 8px; font-weight: 600 !important; }
.ncta::after { display: none !important; }
.ncta:hover { background: var(--blue-b) !important; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(var(--blue-rgb),.3); }
.mt { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.mt span { display: block; width: 100%; height: 2px; background: var(--t1); transition: all .3s; position: absolute; left: 0; }
.mt span:nth-child(1) { top: 0; }
.mt span:nth-child(2) { top: 9px; }
.mt span:nth-child(3) { top: 18px; }
.mt.active span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.mt.active span:nth-child(2) { opacity: 0; }
.mt.active span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 150px 0 100px; background: var(--bg); }
#hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; width: 100%; height: 100%; }
.hero::before { content: ''; position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--blue-rgb),0.10) 0%, transparent 60%); top: -250px; right: -250px; animation: dr 12s ease-in-out infinite; z-index: 0; pointer-events: none; }
.hero::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 60%); bottom: -150px; left: -200px; animation: dr 15s ease-in-out infinite reverse; z-index: 0; pointer-events: none; }
.hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, var(--bg), transparent); pointer-events: none; z-index: 0; }
@keyframes dr { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(20px, -30px); } }
.hero-c { position: relative; z-index: 5; max-width: 800px; text-align: center; margin: 0 auto; }
.tb { display: inline-flex; align-items: center; gap: 10px; background: var(--gold-d); border: 1px solid rgba(212,168,83,.18); border-radius: 8px; padding: 8px 18px; font-size: .76rem; font-weight: 600; color: var(--gold-l); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 28px; animation: fu .7s var(--ease) both; }
.tb .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pu 2.5s ease-in-out infinite; }
@keyframes pu { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { font-family: var(--fd); font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -.04em; margin-bottom: 20px; animation: fu .7s .1s var(--ease) both; color: #fff; }
.hero h1 em { font-style: normal; color: #fff; }
.hero-sub { font-size: 1.1rem; color: var(--t2); max-width: 500px; margin: 0 auto 32px; line-height: 1.6; animation: fu .7s .2s var(--ease) both; }
.hero-sub strong { color: var(--t1); font-weight: 600; }
@keyframes fu { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* Stats row (in diagnostic section) */
.diag-stats { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(148,163,184,0.1); }
.hs-item { text-align: center; }
.hs-num { font-family: var(--fd); font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -.02em; display: block; }
.hs-num span { color: var(--gold); }
.hs-lbl { font-size: .65rem; color: var(--t2); text-transform: uppercase; letter-spacing: .06em; font-weight: 500; display: block; margin-top: 2px; }
.hs-sep { width: 1px; height: 32px; background: rgba(148,163,184,0.12); }

/* Buttons */
.br { display: flex; gap: 14px; flex-wrap: wrap; animation: fu .7s .3s var(--ease) both; justify-content: center; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fb); font-size: .9rem; font-weight: 600; padding: 14px 26px; border-radius: 10px; border: none; cursor: pointer; transition: all .35s var(--ease); }
.bp { background: var(--blue); color: #fff; }
.bp:hover { background: var(--blue-b); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(var(--blue-rgb),.3); }
.bo { background: transparent; color: var(--t1); border: 1.5px solid var(--brd); }
.bo:hover { border-color: var(--blue); color: var(--blue-l); }

/* Diagnostic CTA section - 2 column */
.diag { background: var(--bg2); position: relative; overflow: hidden; border-top: 1px solid var(--brd); }
.diag::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--blue-rgb),0.2), transparent); }
.diag-grid { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.diag-txt .sd { max-width: 720px; margin: 0 auto 28px; }
.diag-txt .sl { justify-content: center; }
.diag-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; margin: 0 auto 8px; max-width: 640px; justify-items: start; }
.diag-list li { font-size: .88rem; color: var(--t1); line-height: 1.6; }
.diag .btn { display: inline-flex; }
#dashboard-img {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  object-fit: cover; object-position: center center;
  opacity: 0.55;
}
/* Overlay escuro uniforme com vinheta nas bordas — texto legível, imagem visível */
.diag::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8,11,18,0.60) 0%, rgba(8,11,18,0.82) 100%);
  z-index: 1; pointer-events: none;
}

/* Proof bar */
.prf { padding: 56px 0; border-top: 1px solid var(--brd); border-bottom: 1px solid var(--brd); background: var(--bg2); position: relative; overflow: hidden; z-index: 1; }
.prf::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--blue-rgb),0.06) 0%, transparent 70%); top: -100px; left: -100px; pointer-events: none; }
.prf::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,83,0.05) 0%, transparent 70%); bottom: -100px; right: -100px; pointer-events: none; }
.prf-in { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; text-align: center; }
.prf-i { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.prf-n { font-family: var(--fd); font-size: 1.4rem; font-weight: 700; }
.prf-n span { color: var(--gold); }
.prf-l { font-size: .72rem; color: var(--t3); text-transform: uppercase; letter-spacing: .06em; }
.prf-d { width: 1px; height: 44px; background: var(--brd); }

/* Sections */
section { padding: 110px 0; position: relative; z-index: 1; }
.sl { display: inline-flex; align-items: center; gap: 10px; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-l); margin-bottom: 14px; }
.sl::before { content: ''; width: 20px; height: 1.5px; background: var(--blue); }
.st { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 14px; }
.sd { font-size: .95rem; color: var(--t2); max-width: 500px; line-height: 1.7; }
.sh { margin-bottom: 52px; }

/* Specialties */
.specs { background: var(--bg2); position: relative; }
.specs::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--blue-rgb),0.2), transparent); }
.specs::after { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--blue-rgb),0.05) 0%, transparent 70%); pointer-events: none; }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.spec-card { background: var(--bg-card); border: 1px solid var(--brd); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all .5s var(--ease); position: relative; overflow: hidden; }
.spec-card::before { content: ''; position: absolute; inset: -1px; border-radius: 17px; background: linear-gradient(135deg, rgba(212,168,83,0.4), rgba(var(--blue-rgb),0.3), rgba(212,168,83,0.2)); opacity: 0; transition: opacity .5s var(--ease); z-index: 0; }
.spec-card::after { content: ''; position: absolute; inset: 1px; border-radius: 15px; background: var(--bg-card); z-index: 0; }
.spec-card > * { position: relative; z-index: 1; }
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(212,168,83,.08), 0 8px 24px rgba(0,0,0,.3); }
.spec-card:hover::before { opacity: 1; }
.spec-ico { font-size: 2rem; margin-bottom: 14px; display: block; }
.spec-card h3 { font-family: var(--fd); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.spec-card p { font-size: .82rem; color: var(--t2); line-height: 1.6; }

/* Method */
.method { background: var(--bg); position: relative; overflow: hidden; }
.method::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,168,83,0.15), transparent); }
.method::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,83,0.05) 0%, transparent 70%); bottom: -200px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.method-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { background: var(--bg-card); border: 1px solid var(--brd); border-radius: 16px; padding: 32px 20px; text-align: center; transition: all .5s var(--ease); position: relative; overflow: hidden; }
.step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform .5s var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(212,168,83,.06), 0 6px 20px rgba(0,0,0,.25); }
.step:hover::before { transform: scaleX(1); }
.step-num { font-family: var(--fd); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-l); margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.step-num::before { content: ''; width: 16px; height: 1.5px; background: var(--blue); }
.step h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--gold-l); }
.step p { font-size: .82rem; color: var(--t2); line-height: 1.6; }

/* Services */
.services { background: var(--bg2); position: relative; overflow: hidden; }
.services::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--blue-rgb),0.2), transparent); }
.services::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--blue-rgb),0.06) 0%, transparent 70%); top: -200px; right: -200px; pointer-events: none; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc { background: var(--bg-card); border: 1px solid var(--brd); border-radius: 16px; padding: 32px 24px; transition: all .5s var(--ease); position: relative; overflow: hidden; }
.svc::before { content: ''; position: absolute; inset: -1px; border-radius: 17px; background: linear-gradient(135deg, rgba(var(--blue-rgb),0.3), rgba(var(--blue-rgb-l),0.2), rgba(var(--blue-rgb),0.1)); opacity: 0; transition: opacity .5s var(--ease); z-index: 0; }
.svc::after { content: ''; position: absolute; inset: 1px; border-radius: 15px; background: var(--bg-card); z-index: 0; }
.svc > * { position: relative; z-index: 1; }
.svc:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(var(--blue-rgb),.08), 0 8px 24px rgba(0,0,0,.3); }
.svc:hover::before { opacity: 1; }
.svc-ico { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.2rem; background: var(--blue-g); }
.svc h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.svc p { font-size: .85rem; color: var(--t2); line-height: 1.6; }

/* Results */
.results { background: var(--bg); position: relative; overflow: hidden; }
.results::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(16,185,129,0.15), transparent); }
.results::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%); bottom: -200px; left: -150px; pointer-events: none; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.res-card { background: var(--bg-card); border: 1px solid var(--brd); border-radius: 16px; padding: 36px 24px; text-align: center; position: relative; overflow: hidden; transition: all .5s var(--ease); }
.res-card::before { content: ''; position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%); pointer-events: none; }
.res-card::after { content: ''; position: absolute; inset: -1px; border-radius: 17px; background: linear-gradient(160deg, rgba(16,185,129,0.3), rgba(212,168,83,0.2), transparent); opacity: 0; transition: opacity .5s var(--ease); z-index: 0; }
.res-card > * { position: relative; z-index: 1; }
.res-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(16,185,129,.1), 0 8px 24px rgba(0,0,0,.3); }
.res-card:hover::after { opacity: 1; }
.res-n { font-family: var(--fd); font-size: 2.2rem; font-weight: 800; color: var(--green-l); margin-bottom: 4px; }
.res-d { font-size: .85rem; color: var(--t2); line-height: 1.5; }
.res-c { font-size: .72rem; color: var(--td); margin-top: 10px; text-transform: uppercase; letter-spacing: .06em; }

/* What We Do — Bento grid (Tecnologia + Marketing) */
.wwd { background: var(--bg2); position: relative; overflow: hidden; }
.wwd::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--blue-rgb),0.2), rgba(212,168,83,0.2), transparent); }
.wwd::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--blue-rgb),0.05) 0%, transparent 70%); top: -200px; left: -200px; pointer-events: none; }

/* Top row: featured pitch (2 cols) + stat differentiator (1 col) */
.wwd-bento { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; margin-bottom: 18px; position: relative; }

.wwd-feat { background: linear-gradient(135deg, rgba(var(--blue-rgb),0.10), rgba(212,168,83,0.06)); border: 1px solid var(--brd); border-radius: 20px; padding: 48px 44px; position: relative; overflow: hidden; }
.wwd-feat::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(var(--blue-rgb),0.18) 0%, transparent 50%), radial-gradient(circle at 15% 85%, rgba(212,168,83,0.10) 0%, transparent 50%); pointer-events: none; }
.wwd-feat::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--blue-rgb-l),0.4), rgba(232,196,118,0.4), transparent); }
.wwd-feat > * { position: relative; z-index: 1; }
.wwd-feat-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(148,163,184,0.10); color: var(--t1); margin-bottom: 22px; }
.wwd-feat-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-l), var(--gold)); }
.wwd-feat h3 { font-family: var(--fd); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 18px; color: #fff; }
.wwd-feat h3 em { font-style: normal; background: linear-gradient(135deg, var(--blue-l), var(--gold-l)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }
.wwd-feat p { font-size: 1rem; color: var(--t2); line-height: 1.7; max-width: 600px; }
.wwd-feat p strong { color: var(--t1); font-weight: 600; }

.wwd-stat { background: var(--bg-card); border: 1px solid var(--brd); border-radius: 20px; padding: 40px 32px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; overflow: hidden; }
.wwd-stat::before { content: ''; position: absolute; inset: -1px; border-radius: 21px; background: linear-gradient(160deg, rgba(var(--blue-rgb),0.35), rgba(212,168,83,0.25), transparent 60%); opacity: .8; z-index: 0; }
.wwd-stat::after { content: ''; position: absolute; inset: 1px; border-radius: 19px; background: var(--bg-card); z-index: 0; }
.wwd-stat > * { position: relative; z-index: 1; }
.wwd-stat-ico { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, rgba(var(--blue-rgb),0.18), rgba(212,168,83,0.12)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 1px solid rgba(148,163,184,0.10); }
.wwd-stat-ico svg { width: 28px; height: 28px; color: var(--blue-l); }
.wwd-stat-ttl { font-family: var(--fd); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.wwd-stat-sub { font-size: .82rem; color: var(--t2); line-height: 1.6; max-width: 220px; }

/* Capability cards: 2 rows of 3 (TECH + MARKETING) */
.wwd-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wwd-row + .wwd-row { margin-top: 18px; }

.wwd-card { background: var(--bg-card); border: 1px solid var(--brd); border-radius: 16px; padding: 30px 26px; transition: all .5s var(--ease); position: relative; overflow: hidden; }
.wwd-card::before { content: ''; position: absolute; inset: -1px; border-radius: 17px; opacity: 0; transition: opacity .5s var(--ease); z-index: 0; }
.wwd-card.tech::before { background: linear-gradient(135deg, rgba(var(--blue-rgb),0.4), rgba(var(--blue-rgb-l),0.2), rgba(var(--blue-rgb),0.1)); }
.wwd-card.mkt::before { background: linear-gradient(135deg, rgba(212,168,83,0.4), rgba(232,196,118,0.2), rgba(212,168,83,0.1)); }
.wwd-card::after { content: ''; position: absolute; inset: 1px; border-radius: 15px; background: var(--bg-card); z-index: 0; }
.wwd-card > * { position: relative; z-index: 1; }
.wwd-card:hover { transform: translateY(-5px); }
.wwd-card.tech:hover { box-shadow: 0 20px 50px rgba(var(--blue-rgb),.10), 0 8px 24px rgba(0,0,0,.3); }
.wwd-card.mkt:hover { box-shadow: 0 20px 50px rgba(212,168,83,.10), 0 8px 24px rgba(0,0,0,.3); }
.wwd-card:hover::before { opacity: 1; }

.wwd-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; margin-bottom: 18px; }
.wwd-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; }
.wwd-card.tech .wwd-tag { background: rgba(var(--blue-rgb),0.10); color: var(--blue-l); border: 1px solid rgba(var(--blue-rgb),0.18); }
.wwd-card.tech .wwd-tag::before { background: var(--blue-l); }
.wwd-card.mkt .wwd-tag { background: rgba(212,168,83,0.10); color: var(--gold-l); border: 1px solid rgba(212,168,83,0.18); }
.wwd-card.mkt .wwd-tag::before { background: var(--gold-l); }

.wwd-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all .4s var(--ease); }
.wwd-card.tech .wwd-icon { background: rgba(var(--blue-rgb),0.12); color: var(--blue-l); }
.wwd-card.mkt .wwd-icon { background: rgba(212,168,83,0.12); color: var(--gold-l); }
.wwd-icon svg { width: 22px; height: 22px; }
.wwd-card:hover .wwd-icon { transform: scale(1.05); }

.wwd-card h3 { font-family: var(--fd); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--t1); }
.wwd-card p { font-size: .87rem; color: var(--t2); line-height: 1.65; }

@media (max-width: 1024px) {
  .wwd-bento { grid-template-columns: 1fr; }
  .wwd-row { grid-template-columns: repeat(2, 1fr); }
  .wwd-feat { padding: 36px 28px; }
}
@media (max-width: 768px) {
  .wwd-row { grid-template-columns: 1fr; }
  .wwd-feat { padding: 32px 24px; }
  .wwd-stat { padding: 32px 24px; }
}

/* Founder */
.fdr { background: var(--bg2); border-top: 1px solid var(--brd); position: relative; overflow: hidden; }
.fdr::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(212,168,83,0.05) 0%, transparent 70%); top: -150px; right: -100px; pointer-events: none; }
.fdr-in { display: flex; align-items: center; gap: 56px; }
.fdr-img { width: 220px; height: 280px; border-radius: 16px; flex-shrink: 0; overflow: hidden; border: 2px solid var(--brd); }
.fdr-img img { width: 100%; height: 100%; object-fit: cover; }
.fdr-txt blockquote { font-size: 1.05rem; font-style: italic; color: var(--t2); line-height: 1.8; margin-bottom: 20px; border-left: 3px solid var(--gold); padding-left: 20px; }
.fdr-name { font-family: var(--fd); font-weight: 700; font-size: 1.05rem; }
.fdr-role { font-size: .82rem; color: var(--t3); }

/* CTA */
.cta-s { text-align: center; background: var(--bg); position: relative; overflow: hidden; }
.cta-s::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--blue-rgb),0.08) 0%, transparent 60%); top: -200px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.cta-box { background: var(--bg-card); border: 1px solid var(--brd); border-radius: 20px; padding: 64px 44px; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, var(--blue-g) 0%, transparent 70%); top: -150px; left: 50%; transform: translateX(-50%); }
.cta-box .st, .cta-box .sd, .cta-box .br { position: relative; }
.cta-box .st { max-width: 560px; margin: 0 auto 14px; }
.cta-box .sd { max-width: 460px; margin: 0 auto 32px; text-align: center; }
.cta-box .br { justify-content: center; }
.contact-form { margin-top: 40px; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.contact-form input, .contact-form textarea { width: 100%; background: var(--bg-el); border: 1px solid var(--brd); border-radius: 10px; padding: 14px 18px; color: var(--t1); font-family: var(--fb); font-size: .9rem; margin-bottom: 12px; outline: none; transition: border .3s var(--ease); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form textarea { resize: vertical; min-height: 100px; }

/* Footer */
.ftr { background: var(--bg); padding: 0; position: relative; overflow: hidden; z-index: 1; }
.ftr-glow { position: relative; padding: 64px 0 24px; }
.ftr-glow::before { content: ''; position: absolute; width: 800px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse, rgba(var(--blue-rgb),0.08) 0%, transparent 70%); top: -200px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.ftr-glow::after { content: ''; position: absolute; width: 500px; height: 300px; border-radius: 50%; background: radial-gradient(ellipse, rgba(212,168,83,0.05) 0%, transparent 70%); bottom: -100px; right: -100px; pointer-events: none; }
.ftr-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; position: relative; }
.ftr-brand p { font-size: .85rem; color: var(--t2); line-height: 1.7; max-width: 300px; margin-top: 12px; }
.ftr-col h4 { font-family: var(--fd); font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; color: var(--t1); }
.ftr-col li { margin-bottom: 10px; }

/* Allaser-style hover effect on footer links */
.ftr-col a { font-size: .85rem; color: var(--t2); display: inline-flex; align-items: center; gap: 6px; position: relative; padding-left: 0; transition: all .3s var(--ease); }
.ftr-col a::before { content: ''; position: absolute; left: 0; top: 50%; width: 0; height: 1.5px; background: var(--blue-l); transform: translateY(-50%); transition: width .3s var(--ease); }
.ftr-col a:hover { color: var(--t1); padding-left: 20px; }
.ftr-col a:hover::before { width: 14px; }

.ftr-col .ftr-icon { width: 16px; height: 16px; opacity: .5; }
.ftr-bot { border-top: 1px solid var(--brd); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; position: relative; }
.ftr-bot::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 120px; height: 2px; background: linear-gradient(90deg, transparent, rgba(var(--blue-rgb),0.3), transparent); }
.ftr-bot p { font-size: .75rem; color: var(--td); }
.soc { display: flex; gap: 10px; }
.soc a { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--brd); display: flex; align-items: center; justify-content: center; color: var(--t2); transition: all .3s var(--ease); }
.soc a::before { display: none; }
.soc a:hover { background: var(--blue); border-color: var(--blue); color: #fff; padding-left: 0; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(var(--blue-rgb),0.3); }

/* Scroll reveal - simple and subtle */
.sr { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.sr.vis { opacity: 1; transform: translateY(0); }

/* Inner page header (for non-home pages: blog, etc.) */
.page-hd { padding: 180px 0 80px; background: var(--bg2); position: relative; overflow: hidden; border-bottom: 1px solid var(--brd); }
.page-hd::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--blue-rgb),0.2), transparent); }
.page-hd::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--blue-rgb),0.06) 0%, transparent 70%); top: -300px; right: -200px; pointer-events: none; }
.page-hd .ctn { position: relative; z-index: 2; }
.page-hd h1 { font-family: var(--fd); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; color: #fff; }
.page-hd p { font-size: 1rem; color: var(--t2); max-width: 600px; line-height: 1.7; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--t3); margin-bottom: 18px; }
.crumbs a { color: var(--t2); }
.crumbs a:hover { color: var(--blue-l); }
.crumbs span { color: var(--td); }

/* Responsive */
@media (max-width: 1024px) {
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .res-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .mt { display: block; }
  nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px; height: 100vh; background: var(--bg2); border-left: 1px solid var(--brd); padding: 100px 32px 32px; transition: right .4s var(--ease); z-index: 999; }
  nav.open { right: 0; }
  nav ul { flex-direction: column; gap: 20px; }
  .hero h1 { font-size: 2rem; }
  .hero { min-height: 100vh; min-height: 100dvh; padding: 100px 0 60px; }
  .hero-c { display: flex; flex-direction: column; justify-content: center; min-height: calc(100vh - 160px); min-height: calc(100dvh - 160px); }
  .hero-stats { gap: 20px; }
  .hs-num { font-size: 1.2rem; }

  /* Lighter backgrounds on mobile for effects visibility */
  .hero { background: rgba(8,11,18,0.85); }
  .diag { background: rgba(13,17,23,0.85); }

  /* Dashboard image as dimmed background on mobile */
  #dashboard-img { width: 100%; left: 0; right: 0; opacity: 0.30; object-fit: cover; }

  /* Dark scrim between canvas (z=0) and text (z=2) — guarantees readability */
  .diag::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,17,23,0.65) 0%, rgba(8,11,18,0.85) 50%, rgba(8,11,18,0.95) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* Diagnostic section mobile */
  .diag-list { grid-template-columns: 1fr; }
  .diag-stats { flex-wrap: wrap; justify-content: center; }

  /* Proof bar: grid 2x2 centralizado */
  .prf-in { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; justify-items: center; }
  .prf-d { display: none; }
  .prf-n { font-size: 1.1rem; white-space: nowrap; }

  /* Grids em 1 coluna */
  .specs-grid, .method-steps, .svc-grid, .res-grid { grid-template-columns: 1fr; }

  /* Especialidades: 2 colunas no mobile */
  .specs-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .ftr-grid { grid-template-columns: 1fr; gap: 32px; }
  .ftr-brand { text-align: center; }
  .ftr-brand p { margin-left: auto; margin-right: auto; }
  .ftr-brand .soc { justify-content: center; }
  .ftr-bot { flex-direction: column; gap: 12px; text-align: center; }

  /* Founder */
  .fdr-in { flex-direction: column; text-align: center; gap: 28px; }
  .fdr-txt blockquote { border-left: none; padding-left: 0; border-top: 3px solid var(--gold); padding-top: 16px; }

  /* CTA */
  .cta-box { padding: 44px 20px; }

  /* Inner pages */
  .page-hd { padding: 130px 0 60px; }
}

/* Extra small phones */
@media (max-width: 480px) {
  .specs-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 80px; }
  .hero h1 { font-size: 1.75rem; }
}

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

/* Multi-step form modal */
.fm-ov{display:none;position:fixed;inset:0;z-index:10000;background:rgba(0,0,0,.75);backdrop-filter:blur(8px);align-items:center;justify-content:center;padding:20px}
.fm-ov.open{display:flex}
.fm-bx{background:#111820;border:1px solid rgba(148,163,184,.1);border-radius:16px;max-width:520px;width:100%;max-height:90vh;overflow-y:auto;padding:36px 32px;position:relative;color:#F1F5F9;animation:fmA .3s ease}
@keyframes fmA{from{opacity:0;transform:scale(.95) translateY(10px)}to{opacity:1;transform:scale(1) translateY(0)}}
.fm-x{position:absolute;top:12px;right:12px;width:34px;height:34px;border-radius:50%;border:1px solid rgba(148,163,184,.15);background:rgba(148,163,184,.05);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:20px;color:#94A3B8;transition:all .2s;z-index:2}
.fm-x:hover{background:rgba(148,163,184,.1);color:#fff}
.fm-pg{display:flex;gap:4px;margin-bottom:6px;margin-top:32px}
.fm-br{flex:1;height:3px;border-radius:2px;background:rgba(148,163,184,.15);transition:background .3s}
.fm-br.on{background:var(--blue)}
.fm-sl{font-size:.72rem;color:#64748B;margin-bottom:24px;font-weight:500;letter-spacing:.04em}
.fm-ic{width:40px;height:40px;border-radius:10px;background:rgba(var(--blue-rgb),.15);display:flex;align-items:center;justify-content:center;font-size:18px;margin-bottom:16px}
.fm-tt{font-size:1.3rem;font-weight:700;color:#fff;margin-bottom:6px}
.fm-sb{font-size:.88rem;color:#94A3B8;margin-bottom:24px;line-height:1.5}
.fm-lb{font-size:.82rem;font-weight:600;color:#CBD5E1;margin-bottom:6px;display:block}
.fm-in{width:100%;padding:12px 14px;border:1.5px solid rgba(148,163,184,.15);border-radius:10px;font-size:.9rem;font-family:inherit;color:#fff;outline:none;transition:border .2s;margin-bottom:14px;background:rgba(148,163,184,.05)}
.fm-in:focus{border-color:var(--blue)}
.fm-in::placeholder{color:#475569}
.fm-os{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:20px}
.fm-op{padding:10px 16px;border:1.5px solid rgba(148,163,184,.15);border-radius:10px;font-size:.85rem;cursor:pointer;transition:all .2s;background:rgba(148,163,184,.05);color:#CBD5E1;font-family:inherit;display:inline-flex;align-items:center;gap:6px}
.fm-op:hover{border-color:rgba(var(--blue-rgb),.4);background:rgba(var(--blue-rgb),.08)}
.fm-op.sel{border-color:var(--blue);background:rgba(var(--blue-rgb),.15);color:var(--blue-l);font-weight:600}
.fm-q{font-size:.88rem;font-weight:600;color:#CBD5E1;margin-bottom:10px}
.fm-bs{display:flex;gap:10px;margin-top:24px}
.fm-bk{padding:12px 20px;border:1.5px solid rgba(148,163,184,.15);border-radius:10px;background:none;font-size:.88rem;cursor:pointer;color:#94A3B8;font-family:inherit;font-weight:500;transition:all .2s}
.fm-bk:hover{background:rgba(148,163,184,.08);border-color:rgba(148,163,184,.25)}
.fm-nx{flex:1;padding:14px 24px;border:none;border-radius:10px;background:var(--blue);color:#fff;font-size:.92rem;font-weight:600;cursor:pointer;font-family:inherit;transition:all .2s}
.fm-nx:hover{background:#1d4ed8}
.fm-si{width:56px;height:56px;border-radius:50%;background:var(--blue);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.fm-si svg{width:28px;height:28px}
.fm-wa{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:14px;border-radius:10px;background:var(--blue);color:#fff;font-size:.92rem;font-weight:600;border:none;cursor:pointer;font-family:inherit;margin-top:16px;transition:all .2s;text-decoration:none}
.fm-wa:hover{background:#1d4ed8}
.fm-sc{display:flex;align-items:center;justify-content:center;width:100%;padding:12px;border-radius:10px;border:1.5px solid rgba(148,163,184,.15);background:none;color:#94A3B8;font-size:.88rem;cursor:pointer;font-family:inherit;margin-top:8px;transition:all .2s;text-decoration:none}
.fm-sc:hover{background:rgba(148,163,184,.08)}
@media(max-width:768px){.fm-bx{padding:28px 20px}.fm-os{gap:6px}.fm-op{padding:8px 12px;font-size:.8rem}}
