/* =========================================================
   Case Hanna Zayt — Agência no Bolso
   Sistema visual: Dark Mode Neon (MANUAL_MARCA.md v1.0)
   70% Void Black + 20% gray + 10% Cyan/Purple
   ========================================================= */

:root {
  --void: #0A0A0F;
  --card: #13131A;
  --card-2: #16161F;
  --line: #23232E;
  --cyan: #00D4FF;
  --purple: #A855F7;
  --smoke: #E5E5E5;
  --muted: #9CA3AF;
  --muted-dim: #8A93A3;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1120px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  background: var(--void);
  color: var(--smoke);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- decorative background ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
}
.bg-glow {
  position: fixed; z-index: -1; pointer-events: none;
  border-radius: 50%; filter: blur(120px); opacity: 0.18;
}
.bg-glow-1 { width: 520px; height: 520px; background: var(--cyan); top: -180px; right: -120px; }
.bg-glow-2 { width: 460px; height: 460px; background: var(--purple); top: 380px; left: -160px; opacity: 0.12; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: #fff; }
.mono { font-family: 'IBM Plex Mono', monospace; font-weight: 500; }
.accent { color: var(--cyan); }
strong { color: #fff; font-weight: 600; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,15,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand-logo { height: 30px; width: auto; display: block; }
.header-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px; padding: 5px 14px;
}

/* ---------- hero ---------- */
.hero { padding: 72px 0 56px; }
.hero-inner { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 13px;
  color: var(--cyan); letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid rgba(0,212,255,0.3); border-radius: 100px; padding: 6px 16px; margin-bottom: 22px;
}
.hero-copy h1 { font-size: clamp(38px, 6vw, 60px); margin-bottom: 22px; }
.hero-sub { font-size: 19px; color: var(--muted); max-width: 540px; margin-bottom: 36px; }
.hero-sub strong { color: var(--smoke); }

.hero-metrics { display: flex; gap: 14px; flex-wrap: wrap; }
.metric {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; min-width: 150px; flex: 1;
}
.metric-num {
  display: block; font-family: 'IBM Plex Mono', monospace; font-weight: 600;
  font-size: 28px; color: var(--cyan); line-height: 1.1;
}
.metric-label { display: block; font-size: 13.5px; color: var(--muted); margin-top: 6px; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 18%;
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.08), 0 30px 80px -30px rgba(0,212,255,0.25);
}
.photo-badge {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--smoke);
  background: rgba(10,10,15,0.82); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px;
}

/* ---------- toc / sub-nav ---------- */
.toc {
  position: sticky; top: 68px; z-index: 40;
  background: rgba(10,10,15,0.82); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.toc ul { list-style: none; display: flex; gap: 4px; overflow-x: auto; padding: 10px 0; scrollbar-width: none; }
.toc ul::-webkit-scrollbar { display: none; }
.toc a {
  display: block; white-space: nowrap; font-size: 14px; color: var(--muted);
  text-decoration: none; padding: 7px 14px; border-radius: 100px; transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.toc a:hover { color: #fff; background: var(--card); }

/* ---------- blocks ---------- */
.block { padding: 64px 0; border-bottom: 1px solid var(--line); }
.block-head { margin-bottom: 36px; max-width: 760px; }
.kicker {
  display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 13px;
  color: var(--purple); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px;
}
.block-head h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 16px; }
.lede { font-size: 18px; color: var(--muted); }
.lede strong { color: var(--smoke); }
.sub-h { font-size: 21px; margin: 44px 0 22px; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 20px; margin-bottom: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-pos { grid-template-columns: 0.85fr 1.3fr; gap: 40px; align-items: start; }

/* ---------- cards (single level, never nested) ---------- */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 26px;
}
.card-soft { background: var(--card-2); }
.card h3 { font-size: 19px; margin-bottom: 16px; }
.card h4 { font-size: 16px; margin-bottom: 14px; color: #fff; }
.card-highlight { border-color: rgba(0,212,255,0.35); box-shadow: 0 0 0 1px rgba(0,212,255,0.06); }

/* ---------- lists ---------- */
.list { list-style: none; }
.list li {
  position: relative; padding-left: 22px; margin-bottom: 11px; color: var(--muted); font-size: 15.5px;
}
.list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--cyan);
}
.list.compact li { margin-bottom: 9px; }
.list strong { color: var(--smoke); }

.note { color: var(--muted-dim); font-size: 14px; margin-top: 16px; line-height: 1.55; }
.note.center { text-align: center; margin: 6px 0 0; }

/* ---------- posicionamento ---------- */
.pos-photo img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 20%;
  border-radius: 18px; border: 1px solid var(--line);
}
.pos-copy .lede { margin-bottom: 28px; }
.pos-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.pos-row h4 { font-size: 16px; margin-bottom: 8px; }
.pos-row p { font-size: 15px; color: var(--muted); }

.quote-cards { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.quote {
  position: relative; flex: 1; min-width: 220px; padding: 18px 22px 18px 44px;
  border-radius: var(--radius-sm); background: var(--card); border: 1px solid var(--line);
  font-size: 16px; font-weight: 600; color: #fff; font-style: italic;
}
.quote::before {
  content: "\201C"; position: absolute; left: 16px; top: 8px;
  font-family: Georgia, serif; font-size: 32px; line-height: 1; color: var(--cyan); font-style: normal;
}
.bio-box {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px;
}
.bio-label {
  display: block; font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px;
}
.bio-box p { color: var(--smoke); font-size: 15.5px; line-height: 1.8; }

/* ---------- product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.prod-card { display: flex; flex-direction: column; }
.prod-card-hi { border-color: rgba(0,212,255,0.35); box-shadow: 0 0 0 1px rgba(0,212,255,0.06); }
.prod-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.prod-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
  border: 1px solid var(--line); border-radius: 100px; padding: 4px 12px;
}
.prod-tag-hi { color: var(--cyan); border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.06); }
.prod-price { font-size: 24px; font-weight: 600; color: #fff; white-space: nowrap; }
.prod-price-tbd { font-size: 14px; color: var(--muted); font-style: italic; }
.prod-card h3 { font-size: 20px; margin-bottom: 8px; }
.prod-desc { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }

/* ---------- compliance ---------- */
.compliance-card h3 { font-size: 18px; }
.compliance-never { border-color: rgba(168,85,247,0.3); }
.compliance-never h3 { color: #fff; }
.compliance-never .list li::before { background: var(--purple); border-radius: 50%; }
.compliance-always { border-color: rgba(0,212,255,0.28); }
.compliance-always .list li::before { background: var(--cyan); }

/* ---------- pilares ---------- */
.pilares { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pilar {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pilar:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); }
.pilar-num {
  font-family: 'IBM Plex Mono', monospace; font-size: 30px; font-weight: 600;
  color: var(--cyan); line-height: 1;
}
.pilar h3 { font-size: 17px; }
.pilar p { font-size: 14px; color: var(--muted); flex: 1; }
.pilar .tag {
  display: inline-block; margin-top: 8px; font-size: 12.5px;
  color: var(--smoke); background: rgba(255,255,255,0.04);
  border: 1px solid var(--line); border-radius: 6px; padding: 3px 9px;
}
.pilar-goal {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--purple);
  letter-spacing: 0.03em; text-transform: uppercase;
}

/* ---------- stat cards ---------- */
.stat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; text-align: center;
}
.stat-num {
  display: block; font-family: 'IBM Plex Mono', monospace; font-weight: 600;
  font-size: 44px; color: var(--cyan); line-height: 1;
}
.stat-label { display: block; font-size: 16px; color: #fff; font-weight: 600; margin: 10px 0 6px; }
.stat-card p { font-size: 14px; color: var(--muted); }

/* ---------- timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.phase {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; position: relative;
}
.phase-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.phase-num {
  display: block; font-family: 'IBM Plex Mono', monospace; font-weight: 600;
  font-size: 30px; color: #fff; margin: 8px 0 10px;
}
.phase p { font-size: 14px; color: var(--muted); }
.phase-final { border-color: rgba(0,212,255,0.4); }
.phase-final .phase-num { color: var(--cyan); }

/* ---------- callouts ---------- */
.callout {
  background: rgba(0,212,255,0.05); border: 1px solid rgba(0,212,255,0.22);
  border-radius: var(--radius-sm); padding: 20px 24px; font-size: 15.5px; color: var(--muted);
  margin: 8px 0 0;
}
.callout strong { color: #fff; }
.callout-warn { background: rgba(168,85,247,0.06); border-color: rgba(168,85,247,0.26); margin-bottom: 8px; }

/* ---------- hashtags ---------- */
.hashtags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.hashtags span {
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--cyan);
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.18);
  border-radius: 6px; padding: 4px 10px;
}

/* ---------- meta table ---------- */
.meta-table {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 22px;
}
.meta-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.meta-row:last-child { border-bottom: none; }
.meta-head { background: var(--card-2); font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.meta-row span:first-child { color: var(--smoke); }
.meta-row-active { background: rgba(0,212,255,0.06); }
.meta-row-active span:first-child { color: #fff; font-weight: 600; }
.meta-row-active .mono { color: var(--cyan); }

/* ---------- flow ---------- */
.flow { font-size: 15.5px; color: var(--muted); line-height: 2; }
.flow .arrow { color: var(--cyan); margin: 0 4px; font-weight: 700; }

/* ---------- sdr ---------- */
.sdr-card { position: relative; }
.sdr-tag {
  display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  color: var(--purple); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px;
}

/* ---------- tracking ---------- */
.track-tier {
  display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px;
}
.track-money { color: var(--cyan); }

/* ---------- pendências ---------- */
.pend-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pend {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
}
.pend-block { border-color: rgba(168,85,247,0.32); }
.pend-n {
  flex-shrink: 0; font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 20px;
  color: var(--cyan); width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px; background: var(--void);
}
.pend h4 { font-size: 16px; margin-bottom: 6px; }
.pend p { font-size: 14.5px; color: var(--muted); }
.pend-flag {
  display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 500;
  color: var(--purple); text-transform: uppercase; letter-spacing: 0.03em;
  background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.3);
  border-radius: 5px; padding: 2px 8px; margin-left: 8px; vertical-align: middle;
}
.pend-flag-ok {
  color: #34D399; background: rgba(52,211,153,0.1); border-color: rgba(52,211,153,0.35);
}
.pend-done { border-color: rgba(52,211,153,0.28); }
.pend-done .pend-n { color: #34D399; border-color: rgba(52,211,153,0.3); }

/* ---------- resumo ---------- */
.resumo { border-bottom: none; }
.resumo-inner {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 40px 44px; position: relative; overflow: hidden;
}
.resumo-inner::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0,212,255,0.14), transparent 70%); pointer-events: none;
}
.resumo-inner p { font-size: 18px; color: var(--smoke); line-height: 1.7; position: relative; }
.resumo-inner strong { color: var(--cyan); }

/* ---------- footer ---------- */
.site-footer { padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { height: 26px; width: auto; opacity: 0.85; }
.footer-meta { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--muted-dim); text-align: right; line-height: 1.7; }

/* ===================== responsive ===================== */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { max-width: 380px; }
  .grid-pos { grid-template-columns: 1fr; gap: 28px; }
  .pos-photo { max-width: 360px; }
  .pilares { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .prod-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .header-tag { display: none; }
  .hero { padding: 48px 0 40px; }
  .grid-2, .pos-row, .pend-list, .timeline, .prod-grid { grid-template-columns: 1fr; }
  .pilares { grid-template-columns: 1fr; }
  .hero-metrics { gap: 10px; }
  .metric { min-width: 100%; }
  .block { padding: 48px 0; }
  .meta-row { grid-template-columns: 1.4fr 0.8fr 0.9fr; padding: 14px 16px; font-size: 13.5px; gap: 6px; }
  .resumo-inner { padding: 28px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
