/* ============================================================
   Z EMPÓRIO — links.css
   Estilo da página de links. Os tokens de cor/tipografia vêm de
   colors_and_type.css (design system) — não redefina cores aqui.

   ⚠ EDIÇÃO MANUAL: para adicionar/alterar BOTÕES você normalmente
   só edita o index.html. Mexa neste arquivo apenas para ajustes
   visuais globais. As classes .link / .link-icon / .link-text já
   cobrem os dois formatos de botão (com e sem subtítulo).
   ============================================================ */

* { box-sizing: border-box; }

:root {
  --ink: #3C3C3B;
  --ink-soft: rgba(60, 60, 59, 0.62);
  --ink-mute: rgba(60, 60, 59, 0.42);
  --hairline: rgba(60, 60, 59, 0.12);
  --hairline-strong: rgba(60, 60, 59, 0.18);
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--bg-page);
  font-family: var(--font-sans);
  color: var(--ink);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.stage {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

/* ====== Logo ====== */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.logo {
  height: 132px;
  width: auto;
  display: block;
}

.brand-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin: 0;
  text-align: center;
}

.brand-meta .sep {
  display: inline-block;
  margin: 0 8px;
  color: rgba(60, 60, 59, 0.28);
}

/* ====== Link stack ====== */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 99px;
  background: transparent;
  text-decoration: none;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-sans);
  border: 1.5px solid var(--hairline-strong);
  min-height: 60px;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
  .link:hover {
    background: rgba(60, 60, 59, 0.04);
    border-color: rgba(60, 60, 59, 0.28);
  }
}

.link:active {
  transform: scale(0.985);
  background: rgba(60, 60, 59, 0.06);
}

.link:focus-visible {
  outline: 2px solid var(--ze-dourado);
  outline-offset: 2px;
}

.link-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.9;
}

.link-icon.fill {
  fill: currentColor;
  stroke: none;
  opacity: 0.85;
}

.link-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 4px;
  text-align: left;
}

.link-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink);
}

.link-channel {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}

/* Single-line variant (no channel meta) */
.link.single .link-text {
  gap: 0;
}

@media (min-width: 481px) {
  .stage {
    max-width: 440px;
    gap: 64px;
  }
  .logo {
    height: 148px;
  }
}
