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

:root {
  --laranja: #F07820;
  --teal: #00BCD4;
  --azul: #0057FF;
  --preto: #111111;
  --grafite: #1A1A1A;
  --grafite-medio: #222222;
  --grafite-claro: #2C2C2C;
  --texto-claro: #F5F5F5;
  --texto-secundario: #999999;
  --borda: #2C2C2C;
  --pad: clamp(24px, 5vw, 64px);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--preto);
  color: var(--texto-claro);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--texto-secundario);
  text-transform: uppercase;
}

.barras {
  display: flex;
  gap: 6px;
  align-items: center;
}

.barra {
  border-radius: 2px;
  transform: skewX(-15deg);
}

.barra--sm { width: 5px;  height: 28px; }
.barra--md { width: 8px;  height: 48px; }
.barra--lg { width: 10px; height: 56px; }

.bg-laranja { background: var(--laranja); }
.bg-teal    { background: var(--teal); }
.bg-azul    { background: var(--azul); }
