/* ── WARE JURÍDICO — shared.css ─────────────────────────────
   Tokens, reset, nav, footer, cursor, botões, eyebrow
   Importado por todas as páginas
──────────────────────────────────────────────────────────── */

:root {
  --navy:      #0e1b2c;
  --blue:      #1e5ba8;
  --blue-10:   rgba(30,91,168,.10);
  --blue-20:   rgba(30,91,168,.20);
  --off:       #f5f3ef;
  --white:     #ffffff;
  --muted:     #7a8694;
  --muted-lt:  #a8b2bc;
  --border:    rgba(14,27,44,.08);
  --border-md: rgba(14,27,44,.14);
  --fd:        'Cormorant Garamond', Georgia, serif;
  --fb:        'Plus Jakarta Sans', system-ui, sans-serif;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --ease-out:  cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--fb); background: var(--off); color: var(--navy); overflow-x: hidden; cursor: none; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* CURSOR */
#cur { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
#c-dot { width: 5px; height: 5px; background: var(--navy); border-radius: 50%; position: absolute; transform: translate(-50%,-50%); }
#c-ring { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(14,27,44,.3); position: absolute; transform: translate(-50%,-50%); transition: width .35s var(--ease), height .35s var(--ease), opacity .35s, border-color .35s; opacity: .3; }
.ch #c-ring { width: 44px; height: 44px; opacity: .5; border-color: var(--blue); }

/* LAYOUT */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); }
section { padding: clamp(5rem,9vw,8rem) 0; }

/* EYEBROW */
.eyebrow { font-family: var(--fb); font-size: .63rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: .6rem; }
.eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--fb); font-size: .8rem; font-weight: 600; letter-spacing: .02em; padding: .8rem 1.75rem; border-radius: 100px; border: none; cursor: none; white-space: nowrap; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.btn svg { flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translate(3px,-3px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(14,27,44,.18); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--border-md); }
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-light { background: var(--off); color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.5rem 0; transition: padding .4s var(--ease), background .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.stuck { background: rgba(245,243,239,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-color: var(--border); padding: 1rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-icon { width: 30px; height: auto; flex-shrink: 0; }
.logo-name { font-family: var(--fb); font-size: .85rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); }
.logo-name span { font-weight: 300; opacity: .3; margin: 0 3px; }
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: .78rem; font-weight: 500; color: var(--muted); letter-spacing: .01em; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.nav-toggle span { display: block; width: 20px; height: 1px; background: var(--navy); border-radius: 1px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(3.5px,3.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(3.5px,-3.5px); }
.nav-mob { position: fixed; inset: 0; background: var(--navy); z-index: 99; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: .5rem; padding: 0 clamp(2rem,8vw,6rem); opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s; }
.nav-mob.open { opacity: 1; visibility: visible; }
.nav-mob a { font-family: var(--fd); font-size: clamp(2.4rem,7vw,5rem); font-weight: 500; font-style: italic; color: rgba(245,243,239,.85); line-height: 1.2; transition: color .2s, transform .25s var(--ease); }
.nav-mob a:hover { color: rgba(245,243,239,.3); transform: translateX(10px); }
.nav-mob-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: rgba(245,243,239,.4); font-size: 1.1rem; cursor: none; font-family: var(--fb); font-weight: 400; transition: color .2s; }
.nav-mob-close:hover { color: var(--off); }

/* CTA RINGS */
.cta-rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-rings span { display: block; border-radius: 50%; border: 1px solid rgba(245,243,239,.045); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.cta-rings span:nth-child(1) { width: 280px; height: 280px; }
.cta-rings span:nth-child(2) { width: 480px; height: 480px; }
.cta-rings span:nth-child(3) { width: 680px; height: 680px; }
.cta-rings span:nth-child(4) { width: 900px; height: 900px; }

/* FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(245,243,239,.06); padding: 3.5rem 0 2rem; }
.ft-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(245,243,239,.07); }
.ft-tagline { font-size: .78rem; color: rgba(245,243,239,.32); margin-top: .75rem; max-width: 200px; line-height: 1.65; }
.ft-nav { display: flex; gap: 4rem; flex-wrap: wrap; }
.ft-col h5 { font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,243,239,.25); margin-bottom: 1.25rem; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.ft-col a { font-size: .8rem; color: rgba(245,243,239,.5); transition: color .2s; }
.ft-col a:hover { color: var(--off); }
.ft-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; }
.ft-copy { font-size: .7rem; color: rgba(245,243,239,.25); }
.ft-policy { font-size: .7rem; color: rgba(245,243,239,.3); transition: color .2s; }
.ft-policy:hover { color: var(--off); }

/* RESPONSIVE */
@media (max-width: 768px) {
  body { cursor: auto; }
  #cur { display: none; }
  .nav-links, .btn.nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .ft-top { flex-direction: column; }
  .ft-nav { gap: 2rem; }
}
