/* ============================================
   TIPOGRAFIA — ÔXI COZINHA NORDESTINA
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Caveat:wght@400;600;700&display=swap');

/* ── HEADINGS ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cor-preto);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-md); }
h6 { font-size: var(--text-base); }

/* ── BODY ── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--cor-preto);
  background-color: var(--cor-areia);
}

p {
  line-height: 1.8;
  font-weight: 300;
  color: var(--cor-preto);
}

/* ── CLASSES UTILITÁRIAS DE TIPOGRAFIA ── */
.font-display  { font-family: var(--font-display); }
.font-script   { font-family: var(--font-script); }
.font-body     { font-family: var(--font-body); }
.font-chalk    { font-family: var(--font-chalk); }

.text-hero     { font-size: var(--text-hero); line-height: 0.92; letter-spacing: -0.02em; }
.text-4xl      { font-size: var(--text-4xl); line-height: 0.95; }
.text-3xl      { font-size: var(--text-3xl); }
.text-2xl      { font-size: var(--text-2xl); }
.text-xl       { font-size: var(--text-xl); }
.text-lg       { font-size: var(--text-lg); }
.text-md       { font-size: var(--text-md); }
.text-base     { font-size: var(--text-base); }
.text-sm       { font-size: var(--text-sm); }
.text-xs       { font-size: var(--text-xs); }

.italic        { font-style: italic; }
.weight-light  { font-weight: 300; }
.weight-normal { font-weight: 400; }
.weight-semi   { font-weight: 600; }
.weight-bold   { font-weight: 700; }

.tracking-wide  { letter-spacing: 0.1em; }
.tracking-wider { letter-spacing: 0.2em; }
.tracking-hero  { letter-spacing: 0.4em; }

.uppercase     { text-transform: uppercase; }
.small-caps    { font-variant: small-caps; letter-spacing: 0.12em; }

/* ── OVERLINE ── */
.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cor-ferrugem);
}

/* ── SCRIPT ACCENT ── */
.script-accent {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  color: inherit;
}

/* ── BG TEXT DECORATIVO (estilo Fuga) ── */
.bg-text {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 20rem);
  font-weight: 700;
  color: var(--cor-areia-escura);
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
  line-height: 1;
  overflow: hidden;
}

.bg-text--dark {
  color: rgba(245, 237, 214, 0.06);
}