/* SL Consultoria Financeira — static stylesheet
   Compiled equivalent of the Tailwind utilities used in index-v5.html.
   Replaces the Tailwind CDN: no runtime compiler, no external script. */

/* ---------- Preflight (minimal reset) ---------- */
*, *::before, *::after { box-sizing: border-box; border: 0 solid #E4DCD0; }
html { -webkit-text-size-adjust: 100%; line-height: 1.5; scroll-behavior: smooth; }
body { margin: 0; font-family: inherit; line-height: inherit; -webkit-font-smoothing: antialiased; }
h1, h2, h3, p, figure { margin: 0; font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; padding: 0; cursor: pointer; }
p { text-wrap: pretty; }

/* ---------- Design tokens ---------- */
:root {
  --gold: #A97A4E;
  --gold-dark: #8A6039;
  --gold-soft: #B79A75;
  --cream: #FAF8F4;
  --beige: #F2ECE3;
  --line: #E4DCD0;
  --hair: #D6CBBA;
  --ink: #2A241E;
  --ink-soft: #5C5347;
  --ink-mute: #6B6257;
  --ink-faint: #8A8073;
  --night: #241F1A;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-quote: 'Cormorant Garamond', serif;
}

/* ---------- Colours ---------- */
.bg-cream { background-color: var(--cream); }
.bg-cream\/95 { background-color: rgba(250, 248, 244, .95); }
.bg-beige { background-color: var(--beige); }
.bg-night { background-color: var(--night); }
.bg-line { background-color: var(--line); }
.bg-current { background-color: currentColor; }
.text-ink { color: var(--ink); }
.text-ink-soft { color: var(--ink-soft); }
.text-ink-mute { color: var(--ink-mute); }
.text-ink-faint { color: var(--ink-faint); }
.text-gold { color: var(--gold); }
.text-gold-soft { color: var(--gold-soft); }
.text-\[\#F5EFE5\] { color: #F5EFE5; }
.hover\:text-gold:hover { color: var(--gold); }
.transition-colors { transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.backdrop-blur { backdrop-filter: blur(8px); }

/* ---------- Borders ---------- */
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-line { border-color: var(--line); }
.border-hair { border-color: var(--hair); }

/* ---------- Typography ---------- */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-quote { font-family: var(--font-quote); }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.break-all { word-break: break-all; }

.text-xs   { font-size: .75rem; line-height: 1rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem; line-height: 2rem; }
.text-\[0\.55em\]  { font-size: .55em; }
.text-\[11\.5px\]  { font-size: 11.5px; }
.text-\[12\.5px\]  { font-size: 12.5px; }
.text-\[13px\]     { font-size: 13px; }
.text-\[15\.5px\]  { font-size: 15.5px; }
.text-\[22px\]     { font-size: 22px; }
.text-\[26px\]     { font-size: 26px; }
.text-\[30px\]     { font-size: 30px; }
.text-\[34px\]     { font-size: 34px; }

.leading-tight    { line-height: 1.25; }
.leading-relaxed  { line-height: 1.625; }
.leading-\[1\.1\]  { line-height: 1.1; }
.leading-\[1\.65\] { line-height: 1.65; }
.leading-\[1\.7\]  { line-height: 1.7; }

.tracking-tight          { letter-spacing: -.025em; }
.tracking-\[-0\.01em\]   { letter-spacing: -.01em; }
.tracking-\[-0\.02em\]   { letter-spacing: -.02em; }
.tracking-\[-0\.025em\]  { letter-spacing: -.025em; }
.tracking-\[0\.1em\]     { letter-spacing: .1em; }
.tracking-\[0\.14em\]    { letter-spacing: .14em; }
.tracking-\[0\.2em\]     { letter-spacing: .2em; }
.tracking-\[0\.22em\]    { letter-spacing: .22em; }

/* ---------- Layout ---------- */
.block { display: block; }
.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-baseline { align-items: baseline; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.inset-x-0 { left: 0; right: 0; }
.z-50 { z-index: 50; }
.mx-auto { margin-left: auto; margin-right: auto; }
.-mr-2 { margin-right: -.5rem; }
.mb-8 { margin-bottom: 2rem; }
.scroll-mt-24 { scroll-margin-top: 6rem; }

.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-14 { padding-bottom: 3.5rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-16 { padding-top: 4rem; }
.pt-\[73px\] { padding-top: 73px; }

.h-px { height: 1px; }
.h-11 { height: 2.75rem; }
.h-\[10px\] { height: 10px; }
.w-6 { width: 1.5rem; }
.w-11 { width: 2.75rem; }
.max-w-\[1180px\] { max-width: 1180px; }
.max-w-\[18ch\] { max-width: 18ch; }
.max-w-\[40ch\] { max-width: 40ch; }
.max-w-\[48ch\] { max-width: 48ch; }
.max-w-\[56ch\] { max-width: 56ch; }

/* ---------- ≥ 640px ---------- */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:pt-24 { padding-top: 6rem; }
  .sm\:pb-20 { padding-bottom: 5rem; }
  .sm\:mb-12 { margin-bottom: 3rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-\[17px\] { font-size: 17px; }
  .sm\:text-\[26px\] { font-size: 26px; }
  .sm\:text-\[32px\] { font-size: 32px; }
}

/* ---------- ≥ 768px ---------- */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
}

/* ---------- ≥ 1024px ---------- */
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:items-center { align-items: center; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:gap-x-12 { column-gap: 3rem; }
  .lg\:gap-y-12 { row-gap: 3rem; }
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:py-\[104px\] { padding-top: 104px; padding-bottom: 104px; }
  .lg\:pt-7 { padding-top: 1.75rem; }
  .lg\:pt-32 { padding-top: 8rem; }
  .lg\:pb-28 { padding-bottom: 7rem; }
  .lg\:mb-14 { margin-bottom: 3.5rem; }
  .lg\:text-lg  { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-\[17\.5px\] { font-size: 17.5px; }
  .lg\:text-\[21px\] { font-size: 21px; }
  .lg\:text-\[38px\] { font-size: 38px; }
  .lg\:text-\[58px\] { font-size: 58px; }
}
