/* Preparo Jurídico — Base element styles & helpers.
   Lightweight resets + brand-correct element defaults. */

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--text-body);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-extrabold);
  color: var(--text-strong);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-display);
  margin: 0 0 0.4em;
}

h1 { font-size: var(--text-h1); line-height: var(--leading-tight); }
h2 { font-size: var(--text-h2); line-height: var(--leading-snug); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); letter-spacing: var(--tracking-tight); }

p { margin: 0 0 1em; }

a {
  color: var(--link);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--link-hover); }

small { font-size: var(--text-sm); line-height: var(--leading-body); }

::selection { background: var(--gold-tint-20); color: var(--text-strong); }

/* ---- Helpers used across cards & kits ---- */

/* Uppercase gold eyebrow that opens every homepage section */
.pj-eyebrow {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xs);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--gold-dark);
}
.pj-eyebrow--on-dark { color: var(--gold-bright); }

.pj-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--pad-desktop);
}

/* Second half of a headline, set in gold: "Nossos Cursos em Destaque" */
.pj-gold-text { color: var(--gold-imperial); }

.pj-divider-gold {
  width: 56px;
  height: 3px;
  border: 0;
  background: var(--grad-gold);
  border-radius: var(--radius-full);
}

/* Dark authority section wrapper */
.pj-section-dark {
  background: var(--grad-section-dark);
  color: var(--text-on-dark);
}
.pj-section-dark h1, .pj-section-dark h2,
.pj-section-dark h3, .pj-section-dark h4 { color: var(--pure-white); }

/* The signature gold quarter-arc that fills a card's bottom-right corner */
.pj-arc-gold {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 50%;
  background: var(--grad-gold-cta);
  border-radius: 100% 0 0 0;
  pointer-events: none;
}
