/* ==========================================================================
   home.css — Estilos específicos da página inicial
   © @JottaCyber
   ========================================================================== */

/* ---- Hero ---- */
.hero { padding-block: clamp(56px, 10vw, 110px) clamp(40px, 7vw, 72px); }
.hero-avatar {
  width: 92px; height: 92px; border-radius: 50%; object-fit: cover; margin-bottom: 20px;
  border: 2px solid var(--accent); box-shadow: var(--shadow);
  outline: 4px solid color-mix(in srgb, var(--accent) 22%, transparent); outline-offset: 3px;
}
.hero .eyebrow { margin-bottom: 14px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-terminal {
  margin-top: 40px; background: var(--card-back); color: var(--card-back-ink);
  border: 1px solid var(--card-back-line); border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 13px; line-height: 1.7; overflow: hidden; box-shadow: var(--shadow);
}
.hero-terminal .bar { display: flex; gap: 7px; padding: 12px 15px; border-bottom: 1px solid var(--card-back-line); }
.hero-terminal .bar span { width: 11px; height: 11px; border-radius: 50%; background: #35495c; }
.hero-terminal .bar span:nth-child(1){ background:#f0616c; } .hero-terminal .bar span:nth-child(2){ background:#eca93f; } .hero-terminal .bar span:nth-child(3){ background:#4fca82; }
.hero-terminal .body { padding: 16px 18px; overflow-x: auto; }
.hero-terminal .prompt { color: #34c3d4; } .hero-terminal .cmt { color: #6f8598; } .hero-terminal .out { color: #cfe8ef; }

/* ---- Focos ---- */
.focus-card .ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 12px; font-family: var(--font-mono); font-weight: 700; }
.focus-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }

/* ---- Destaque do Deck ---- */
.feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 4vw, 40px); box-shadow: var(--shadow);
}
.feature .stat-row { display: flex; gap: 22px; margin-top: 18px; flex-wrap: wrap; }
.feature .stat .n { font-size: 1.9rem; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; line-height: 1; }
.feature .stat .l { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-top: 5px; }
.feature-visual {
  background: var(--card-back); border: 1px solid var(--card-back-line); border-radius: 12px;
  padding: 22px; color: var(--card-back-ink); font-family: var(--font-mono); font-size: 13px;
}
.feature-visual .lvl-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--card-back-line); }
.feature-visual .lvl-row:last-child { border-bottom: none; }
.feature-visual .lvl-row .tag { padding: 2px 9px; border-radius: 6px; font-size: 11px; }
.feature-visual .e{ color:#7ee0a4; } .feature-visual .m{ color:#f1c980; } .feature-visual .h{ color:#ff9aa2; }

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