:root {
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Outfit', sans-serif;

  --color-bg:           #0f0e0b;
  --color-bg-card:      #111009;
  --color-bg-sidebar:   #0d0c0a;
  --color-bg-footer:    #0a0908;

  --color-text:         #e8dfc8;
  --color-text-muted:   rgba(232, 223, 200, 0.65);
  --color-text-faint:   rgba(232, 223, 200, 0.45);

  --color-gold:         #c9a84c;
  --color-gold-muted:   rgba(201, 168, 76, 0.65);
  --color-gold-faint:   rgba(201, 168, 76, 0.22);
  --color-green:        #7ab87a;

  --color-border:        rgba(180, 155, 90, 0.12);
  --color-border-mid:    rgba(180, 155, 90, 0.20);
  --color-border-strong: rgba(180, 155, 90, 0.35);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;

  --shadow-card: 0 2px 24px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 0 1px rgba(201,168,76,0.12);

  --transition: 0.2s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utilitários ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { to { background-position: -200% 0; } }
