/* Team Martins — Design Tokens */
:root{
  /* Cores */
  --linen:#F5F5F2;
  --bone:#DAD6CE;
  --graphite:#6B6862;
  --iron:#2C2A26;
  --obsidian:#15130F;
  --crimson:#7A1612;

  /* Tipografia */
  --font-ui:'Inter',-apple-system,BlinkMacSystemFont,system-ui,sans-serif;
  --font-ed:'Spectral',Georgia,'Times New Roman',serif;

  /* Escala modular 1.250 (Major Third) */
  --t-h0:76px;
  --t-h1:61px;
  --t-h2:49px;
  --t-h3:39px;
  --t-h4:31px;
  --t-h5:16px;
  --t-body:16px;
  --t-ed:18px;
  --t-ed-lg:20px;
  --t-cap:13px;
  --t-label:14px;

  /* Line-height */
  --lh-tight:1.1;
  --lh-snug:1.25;
  --lh-body:1.55;
  --lh-ed:1.65;

  /* Tracking */
  --tr-caps:0.12em;
  --tr-cap:0.02em;
  --tr-label:0.01em;

  /* Pesos */
  --w-regular:400;
  --w-medium:500;
  --w-semibold:600;
  --w-bold:700;
  --w-extrabold:800;

  /* Spacing — múltiplos de 8 */
  --s-1:8px;
  --s-2:16px;
  --s-3:24px;
  --s-4:32px;
  --s-5:48px;
  --s-6:64px;
  --s-7:96px;
  --s-8:128px;
  --s-9:160px;

  /* Forma e borda */
  --r-btn:2px;
  --bw:1px;

  /* Motion */
  --ease:cubic-bezier(0.65,0,0.35,1);
  --dur:320ms;
  --dur-reveal:400ms;

  /* Layout */
  --content-max:1280px;
  --content-read:680px;
  --margin-lat:96px;
}

@media (max-width:1024px){
  :root{
    --t-h0:61px;
    --t-h1:49px;
    --t-h2:39px;
    --t-h3:31px;
    --t-h4:25px;
    --margin-lat:32px;
  }
}

@media (max-width:640px){
  :root{
    --t-h0:42px;
    --t-h1:36px;
    --t-h2:30px;
    --t-h3:24px;
    --t-h4:20px;
    --t-ed-lg:18px;
    --margin-lat:24px;
  }
}
