/* ============================================================
   METADAX — Cloudflare Access Block Pages
   Estilos derivados do Design System METADAX (v.2026)
   Tokens: Preto METADAX #1E1E1E · Branco Gelo #FFFFFF · Azul METADAX #0056B3
   ============================================================ */

:root {
  --metadax-black: #1E1E1E;
  --metadax-pure-black: #000000;
  --metadax-white: #FFFFFF;
  --metadax-blue: #0056B3;
  --hairline: rgba(0, 0, 0, 0.08);
  --ink-80: rgba(0, 0, 0, 0.8);
  --ink-48: rgba(0, 0, 0, 0.48);
  --shadow-product: rgba(0, 0, 0, 0.22) 3px 5px 30px 0;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--metadax-white);
  color: var(--metadax-black);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: "ss03";
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--metadax-blue);
}

.block-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 48px;
}

.block-page__logo {
  width: 156px;
  height: auto;
  margin-bottom: 48px;
}

.block-page__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.block-page__badge svg {
  width: 26px;
  height: 26px;
}

.block-page__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.224px;
  color: var(--metadax-blue);
  text-transform: uppercase;
  margin: 0 0 16px;
  text-align: center;
}

.block-page__title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.10;
  letter-spacing: -0.28px;
  color: var(--metadax-black);
  text-align: center;
  max-width: 560px;
  margin: 0 0 20px;
}

.block-page__lead {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.33;
  color: var(--ink-80);
  text-align: center;
  max-width: 520px;
  margin: 0 0 40px;
}

.block-page__card {
  width: 100%;
  max-width: 520px;
  background: var(--metadax-white);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.block-page__card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}

.block-page__card-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.block-page__card-row:first-child {
  padding-top: 0;
}

.block-page__card-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.224px;
  color: var(--ink-48);
  white-space: nowrap;
}

.block-page__card-value {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.374px;
  color: var(--metadax-black);
  text-align: right;
  word-break: break-word;
}

.block-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.0;
  border-radius: 980px;
  padding: 11px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: transform 0.1s ease;
}

.btn:active {
  transform: scale(0.95);
}

.btn:focus-visible {
  outline: 2px solid var(--metadax-blue);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--metadax-blue);
  color: var(--metadax-white);
}

.btn--ghost {
  background: transparent;
  color: var(--metadax-blue);
  border: 1px solid var(--metadax-blue);
}

.block-page__help {
  font-size: 14px;
  line-height: 1.43;
  color: var(--ink-48);
  text-align: center;
  max-width: 440px;
}

.block-page__help a {
  color: var(--ink-80);
  text-decoration: underline;
}

.legal-strip {
  background: var(--metadax-black);
  padding: 24px;
}

.legal-strip__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.legal-strip__text {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}

.legal-strip__text a {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
  .block-page__title {
    font-size: 32px;
  }
  .block-page__lead {
    font-size: 20px;
  }
  .block-page__card-row {
    flex-direction: column;
    gap: 4px;
  }
  .block-page__card-value {
    text-align: left;
  }
  .legal-strip__inner {
    flex-direction: column;
    text-align: center;
  }
}
