/* ============================================================
   Trilha do Ecommerce — bio page (versão com ícones)
   Mesma estrutura HTML original, sistema visual da marca
   ============================================================ */

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/space-grotesk-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/jetbrains-mono-latin-700-normal.woff2") format("woff2");
}

:root {
  --navy-deep: #0a0828;
  --navy-ink: #15123f;
  --orange-burn: #d85d1e;
  --orange-glow: #f0934d;
  --paper: #f5f1e8;
  --kraft: #c9a878;
  --on-dark-soft: rgba(245, 241, 232, 0.55);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono:
    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --font-body:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
}

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

body {
  font-family: var(--font-body);
  background: var(--navy-ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--orange-glow);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: 420px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--paper);
  border: 3px solid var(--orange-burn);
  object-fit: cover;
}

.name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
  text-align: center;
}

.canal {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange-glow);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tagline {
  font-size: 14px;
  color: var(--on-dark-soft);
  text-align: center;
  line-height: 1.6;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: rgba(245, 241, 232, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px 4px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: rgba(245, 241, 232, 0.06);
  border: 1.5px solid rgba(245, 241, 232, 0.16);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}
.btn:hover {
  background: rgba(245, 241, 232, 0.11);
  border-color: var(--orange-glow);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn.site {
  background: transparent;
  border: 1.5px dashed var(--kraft);
}
.btn.site:hover {
  background: rgba(216, 93, 30, 0.08);
  border-color: var(--orange-glow);
}

.btn.featured {
  background: var(--orange-burn);
  border-color: var(--orange-burn);
  box-shadow: 0 10px 24px rgba(216, 93, 30, 0.35);
}
.btn.featured:hover {
  background: var(--orange-glow);
  border-color: var(--orange-glow);
}
.btn.featured .icon-wrap {
  background: rgba(245, 241, 232, 0.2);
}
.btn.featured .label span {
  font-weight: 700;
}
.btn.featured .label small {
  color: rgba(245, 241, 232, 0.85);
}
.btn.featured .arrow {
  color: rgba(245, 241, 232, 0.75);
}

.icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(245, 241, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn.site .icon-wrap {
  background: rgba(216, 93, 30, 0.14);
}
.icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: var(--paper);
}

.label {
  flex: 1;
}
.label span {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
}
.label small {
  display: block;
  font-size: 12px;
  color: var(--on-dark-soft);
  margin-top: 1px;
}

.arrow {
  color: rgba(245, 241, 232, 0.4);
  font-size: 18px;
  line-height: 1;
}

.footer {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(245, 241, 232, 0.25);
  margin-top: 1rem;
}
