/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0a0806;
  --dark1:  #111009;
  --dark2:  #1c1710;
  --dark3:  #272018;
  --dark4:  #312820;
  --gold:   #c49a2a;
  --gold2:  #d4ae46;
  --gold3:  #edd98a;
  --cream:  #ede8df;
  --cream2: #b8b0a0;
  --muted:  #6e6558;
  --serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold2); }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
header {
  background: rgba(10, 8, 6, 0.97);
  border-bottom: 1px solid rgba(196,154,42,.35);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.logo img {
  height: 72px;
  width: 72px;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(196,154,42,.25), 0 0 0 4px rgba(196,154,42,.08);
  background: var(--black);
  transition: transform .3s ease, box-shadow .3s ease;
}

.logo:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(196,154,42,.45), 0 0 0 5px rgba(196,154,42,.15);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }

.logo-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.logo-name span { color: var(--gold); }

.logo-tagline {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .9;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .logo img { height: 56px; width: 56px; }
  .logo-name { font-size: .95rem; }
  .logo-tagline { font-size: .58rem; }
}

nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

nav a {
  color: var(--cream2);
  font-size: .82rem;
  font-weight: 500;
  padding: .45rem .75rem;
  border-radius: 4px;
  letter-spacing: .02em;
  transition: color .2s, background .2s;
}
nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(196,154,42,.08);
}

.nav-yt {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: #cc0000;
  color: #fff !important;
  padding: .42rem .9rem !important;
  border-radius: 4px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .03em;
  margin-left: .5rem;
  transition: background .2s !important;
}
.nav-yt:hover { background: #aa0000 !important; color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: .3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8,6,4,.92) 0%,
    rgba(8,6,4,.80) 45%,
    rgba(8,6,4,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
  max-width: 660px;
  padding-left: 2rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.4rem;
  letter-spacing: -.01em;
}
.hero h1 span { color: var(--gold); }

.hero-desc {
  font-size: 1rem;
  color: var(--cream2);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .2s;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: var(--sans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); color: var(--black); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(237,232,223,.4);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

/* ===== CATEGORIES STRIP ===== */
.cats {
  background: var(--dark1);
  border-top: 1px solid rgba(196,154,42,.12);
  border-bottom: 1px solid rgba(196,154,42,.12);
}
.cats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}
.cats-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: .5rem;
  white-space: nowrap;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  border: 1px solid rgba(196,154,42,.25);
  color: var(--cream2);
  padding: .32rem .85rem;
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all .2s;
}
.cat-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,154,42,.06); }
.cat-pill i { font-size: .65rem; color: var(--gold); }

/* ===== SECTION BASE ===== */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--dark2); }
.wrap { max-width: 1280px; margin: 0 auto; }

.sec-head { margin-bottom: 3rem; }
.sec-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.sec-label i { font-size: .75rem; }

.sec-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.sec-title span { color: var(--gold); }

.sec-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: .9rem;
}

.sec-sub {
  color: var(--muted);
  font-size: .9rem;
  max-width: 560px;
}

/* ===== VIDEO GRID ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.vcard {
  background: var(--dark2);
  border: 1px solid rgba(196,154,42,.1);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.vcard:hover {
  border-color: rgba(196,154,42,.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}

.vcard-thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: var(--dark3);
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.vcard-thumb-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark4) 100%);
}
.vcard-thumb-bg i {
  font-size: 2.5rem;
  color: rgba(196,154,42,.15);
}
.vcard-thumb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vcard-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(196,154,42,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: .85rem;
  transition: transform .2s, background .2s;
}
.vcard:hover .vcard-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
}

.vcard-body { padding: 1.25rem; }
.vcard-cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.vcard-title {
  font-family: var(--serif);
  font-size: .97rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: .65rem;
}
.vcard-desc { font-size: .82rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.vcard-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}
.vcard-link:hover { color: var(--gold2); }
.vcard-link i { font-size: .6rem; }

.section-cta { text-align: center; margin-top: 2.5rem; }

/* ===== ARTICLE CARDS ===== */
.acard {
  background: var(--dark2);
  border: 1px solid rgba(196,154,42,.1);
  border-radius: 4px;
  padding: 1.75rem;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.acard:hover { border-color: rgba(196,154,42,.4); transform: translateY(-3px); }

.acard-cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.acard-cat i { font-size: .7rem; }

.acard h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: .65rem;
}
.acard p {
  font-size: .85rem;
  color: var(--cream2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}
.acard-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}
.acard-link i { font-size: .6rem; }
.acard-link:hover { color: var(--gold2); }

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-label {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-label i { font-size: .75rem; }

.about-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.about-title span { color: var(--gold); }
.about-rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 1.25rem; }
.about-text p {
  color: var(--cream2);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: .9rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196,154,42,.15);
}
.stat-block { }
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: .35rem;
}

.about-panel {
  background: var(--dark2);
  border: 1px solid rgba(196,154,42,.18);
  border-radius: 6px;
  overflow: hidden;
}
.about-panel-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.about-panel-img-placeholder {
  width: 100%;
  height: 220px;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-panel-img-placeholder i { font-size: 4rem; color: rgba(196,154,42,.2); }

.about-panel-logo {
  position: relative;
  height: 260px;
  background:
    radial-gradient(ellipse at center, rgba(196,154,42,.18) 0%, rgba(196,154,42,.04) 45%, transparent 75%),
    linear-gradient(180deg, var(--dark3) 0%, var(--dark2) 100%);
  overflow: hidden;
}
.about-panel-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(237,217,138,.5) 0, transparent 1.5px),
    radial-gradient(circle at 80% 20%, rgba(237,217,138,.45) 0, transparent 1.5px),
    radial-gradient(circle at 70% 80%, rgba(237,217,138,.5) 0, transparent 1.5px),
    radial-gradient(circle at 30% 75%, rgba(237,217,138,.4) 0, transparent 1.3px);
  animation: particles-float 14s ease-in-out infinite;
  pointer-events: none;
}
.about-panel-logo img {
  position: relative;
  z-index: 2;
  height: 150px;
  width: 150px;
  object-fit: contain;
  border-radius: 14px;
  border: 2px solid var(--gold);
  background: var(--black);
  box-shadow:
    0 0 0 6px rgba(196,154,42,.08),
    0 12px 36px rgba(196,154,42,.35),
    0 22px 60px rgba(0,0,0,.55);
  animation: logo-glow 4s ease-in-out infinite;
}
@keyframes logo-glow {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(196,154,42,.08),
      0 12px 36px rgba(196,154,42,.35),
      0 22px 60px rgba(0,0,0,.55);
  }
  50% {
    box-shadow:
      0 0 0 10px rgba(196,154,42,.12),
      0 14px 46px rgba(196,154,42,.55),
      0 24px 70px rgba(0,0,0,.65);
  }
}
.about-panel-body { padding: 1.75rem; text-align: center; }
.about-panel-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .6rem;
}
.about-panel-body p { font-size: .87rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--dark1);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(196,154,42,.12);
  text-align: center;
}
.newsletter-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: .6rem;
}
.newsletter h2 span { color: var(--gold); }
.newsletter p { color: var(--cream2); margin-bottom: 1.8rem; font-size: .92rem; }

.nl-form {
  display: flex;
  gap: .75rem;
  max-width: 460px;
  margin: 0 auto;
}
.nl-input {
  flex: 1;
  background: var(--dark3);
  border: 1px solid rgba(196,154,42,.25);
  color: var(--cream);
  padding: .8rem 1.1rem;
  border-radius: 3px;
  font-size: .88rem;
  font-family: var(--sans);
  transition: border-color .2s;
}
.nl-input::placeholder { color: var(--muted); }
.nl-input:focus { outline: none; border-color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: #060402;
  border-top: 1px solid rgba(196,154,42,.25);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-about p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h5 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  color: var(--muted);
  font-size: .85rem;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-col ul li a i { font-size: .7rem; color: rgba(196,154,42,.4); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a:hover i { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-contact-item i { color: var(--gold); font-size: .9rem; margin-top: .15rem; flex-shrink: 0; }
.footer-contact-item span { color: var(--muted); font-size: .83rem; line-height: 1.6; }

.footer-bottom {
  max-width: 1280px;
  margin: 1.75rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: var(--muted); font-size: .78rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--muted); font-size: .78rem; transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ===== INNER PAGES ===== */
.page-banner {
  background: var(--dark2);
  border-bottom: 1px solid rgba(196,154,42,.2);
  padding: 4rem 2rem;
}
.page-banner-inner { max-width: 860px; }
.page-banner-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-banner-label i { font-size: .7rem; }
.page-banner h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
}
.page-banner h1 span { color: var(--gold); }
.page-banner p { color: var(--cream2); margin-top: .75rem; font-size: .95rem; }

.page-body {
  max-width: 860px;
  margin: 4rem auto;
  padding: 0 2rem;
}
.page-body h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin: 2.5rem 0 .8rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.page-body h2 i { font-size: 1rem; }
.page-body p { color: var(--cream2); margin-bottom: 1rem; line-height: 1.85; font-size: .93rem; }
.page-body ul { color: var(--cream2); padding-left: 1.4rem; margin-bottom: 1rem; }
.page-body ul li { margin-bottom: .5rem; line-height: 1.75; font-size: .93rem; }
.page-body strong { color: var(--cream); }
.page-body a:not(.btn) { color: var(--gold); }
.page-body .btn-primary { color: var(--black); }
.page-body .btn-ghost { color: var(--cream); }
.page-body .btn-outline-gold { color: var(--gold); }

/* ===== CONTACT ===== */
.contact-wrap {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}
.contact-aside h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: .6rem;
}
.contact-aside h2 span { color: var(--gold); }
.contact-aside > p { color: var(--cream2); font-size: .9rem; line-height: 1.75; margin-bottom: 2rem; }

.cinfo { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.cinfo-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,154,42,.1);
  border: 1px solid rgba(196,154,42,.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}
.cinfo-text strong { display: block; font-size: .85rem; color: var(--cream); margin-bottom: .15rem; }
.cinfo-text span { font-size: .82rem; color: var(--muted); }

.cf { display: flex; flex-direction: column; gap: 1rem; }
.cf-group { display: flex; flex-direction: column; gap: .4rem; }
.cf-group label { font-size: .75rem; font-weight: 600; color: var(--cream2); letter-spacing: .04em; text-transform: uppercase; }
.cf-group input,
.cf-group textarea,
.cf-group select {
  background: var(--dark2);
  border: 1px solid rgba(196,154,42,.2);
  color: var(--cream);
  padding: .8rem 1rem;
  border-radius: 3px;
  font-size: .9rem;
  font-family: var(--sans);
  transition: border-color .2s;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color: var(--muted); }
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus { outline: none; border-color: var(--gold); }
.cf-group textarea { min-height: 140px; resize: vertical; }
.cf-group select option { background: var(--dark2); }

/* ===== ORIENTAÇÕES JURADOS ===== */
.orient-intro {
  font-size: .95rem;
  color: var(--cream2);
  line-height: 1.75;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 2.5rem;
}

.orient-item {
  background: var(--dark2);
  border: 1px solid rgba(196,154,42,.15);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color .25s;
}
.orient-item[open] {
  border-color: rgba(196,154,42,.4);
}
.orient-item[open] .orient-summary {
  border-bottom: 1px solid rgba(196,154,42,.15);
}

.orient-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .2s;
}
.orient-summary::-webkit-details-marker { display: none; }
.orient-summary:hover { background: rgba(196,154,42,.05); }

.orient-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(196,154,42,.25);
  line-height: 1;
  min-width: 2rem;
}
.orient-item[open] .orient-num { color: var(--gold); }

.orient-title-text {
  flex: 1;
  font-size: .9rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.orient-title-text i { color: var(--gold); font-size: .85rem; }

.orient-chevron {
  color: var(--gold);
  font-size: .75rem;
  transition: transform .3s;
  flex-shrink: 0;
}

.orient-content {
  padding: 1.75rem 1.5rem 1.5rem;
}
.orient-content h3 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  margin: 1.5rem 0 .6rem;
}
.orient-content h3:first-child { margin-top: 0; }
.orient-content p {
  font-size: .88rem;
  color: var(--cream2);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.orient-content ul,
.orient-content ol {
  margin: .5rem 0 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.orient-content li {
  font-size: .88rem;
  color: var(--cream2);
  line-height: 1.7;
}
.orient-content li::marker { color: var(--gold); }

.orient-tip {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: rgba(196,154,42,.07);
  border: 1px solid rgba(196,154,42,.2);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: .83rem;
  color: var(--cream2);
  line-height: 1.65;
}
.orient-tip i { color: var(--gold); margin-top: .15rem; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .nl-form { flex-direction: column; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,8,6,.98);
    padding: 2rem;
    gap: .5rem;
    z-index: 199;
    overflow-y: auto;
  }
  nav.open { display: flex; }
  nav a { font-size: .95rem; padding: .75rem 1rem; border-radius: 3px; }
  .nav-yt { margin-left: 0; margin-top: .5rem; justify-content: center; }
  .hamburger { display: flex; }

  .hero { min-height: auto; }
  .hero-content { padding: 4rem 1.25rem; }
  .section { padding: 3.5rem 1.25rem; }
  .page-banner { padding: 3rem 1.25rem; }
  .page-body { padding: 0 1.25rem; }
  .contact-wrap { padding: 0 1.25rem; margin: 2.5rem auto; }
  footer { padding: 3rem 1.25rem 1.5rem; }
}

/* ============================================
   PREMIUM REFINEMENTS — atmosfera, profundidade
   ============================================ */

/* Grain texture sutil em todo o site — dá textura artesanal */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.92  0 0 0 0 0.87  0 0 0 0 0.77  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Hero — atmosfera de luz dourada vinda do canto */
.hero { isolation: isolate; }
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 65%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(196,154,42,.14) 0%, rgba(196,154,42,.04) 35%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  filter: blur(20px);
}

.hero-overlay {
  background:
    radial-gradient(ellipse at left center, rgba(8,6,4,.95) 20%, rgba(8,6,4,.7) 55%, rgba(8,6,4,.35) 100%),
    linear-gradient(180deg, rgba(8,6,4,.3) 0%, rgba(8,6,4,.6) 100%);
}

/* Eyebrow do hero com glow sutil */
.hero-eyebrow {
  text-shadow: 0 0 24px rgba(196,154,42,.4);
}

/* Título do hero — refinamento tipográfico */
.hero h1 {
  text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.hero h1 span {
  background: linear-gradient(135deg, #edd98a 0%, #c49a2a 60%, #a87f1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(196,154,42,.35));
}

/* Header — vidro sofisticado */
header {
  background: linear-gradient(180deg, rgba(10,8,6,.92) 0%, rgba(10,8,6,.85) 100%);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(196,154,42,.18), 0 8px 32px rgba(0,0,0,.4);
  border-bottom: 1px solid rgba(196,154,42,.22);
}

/* Botões — profundidade real */
.btn {
  position: relative;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  letter-spacing: .08em;
}
.btn-primary {
  background: linear-gradient(135deg, #d4ae46 0%, #c49a2a 50%, #a87f1d 100%);
  border-color: #c49a2a;
  box-shadow:
    0 1px 0 rgba(255,235,180,.4) inset,
    0 -1px 0 rgba(0,0,0,.25) inset,
    0 6px 18px -4px rgba(196,154,42,.45),
    0 2px 6px rgba(0,0,0,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,235,180,.5) inset,
    0 -1px 0 rgba(0,0,0,.25) inset,
    0 12px 28px -6px rgba(196,154,42,.65),
    0 4px 10px rgba(0,0,0,.45);
}
.btn-primary:active { transform: translateY(0); transition: all .1s; }

.btn-outline-gold {
  background: rgba(196,154,42,.04);
  backdrop-filter: blur(8px);
}
.btn-outline-gold:hover {
  background: linear-gradient(135deg, #d4ae46 0%, #c49a2a 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(196,154,42,.5);
}

.btn-ghost {
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(196,154,42,.08);
  transform: translateY(-2px);
}

/* Cards de vídeo — depth premium */
.vcard {
  position: relative;
  background: linear-gradient(180deg, var(--dark3) 0%, var(--dark2) 100%);
  border: 1px solid rgba(196,154,42,.12);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.03) inset,
    0 2px 8px rgba(0,0,0,.3),
    0 12px 30px -10px rgba(0,0,0,.5);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1), border-color .3s;
}
.vcard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(196,154,42,.4) 0%, transparent 40%, transparent 60%, rgba(196,154,42,.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.vcard:hover {
  transform: translateY(-6px);
  border-color: rgba(196,154,42,.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 4px 12px rgba(0,0,0,.4),
    0 24px 50px -12px rgba(0,0,0,.7),
    0 0 0 1px rgba(196,154,42,.15);
}
.vcard:hover::before { opacity: 1; }

.vcard-thumb-bg img {
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.vcard:hover .vcard-thumb-bg img {
  transform: scale(1.08);
}

.vcard-play {
  background: linear-gradient(135deg, #d4ae46 0%, #c49a2a 100%);
  box-shadow: 0 8px 24px rgba(196,154,42,.5), 0 0 0 4px rgba(196,154,42,.15);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.vcard:hover .vcard-play {
  transform: translate(-50%,-50%) scale(1.12);
  box-shadow: 0 12px 32px rgba(196,154,42,.7), 0 0 0 6px rgba(196,154,42,.2);
}

/* Cards de artigo — refinamento */
.acard {
  position: relative;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark1) 100%);
  border: 1px solid rgba(196,154,42,.12);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.03) inset,
    0 2px 8px rgba(0,0,0,.3),
    0 12px 30px -10px rgba(0,0,0,.5);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1), border-color .3s;
}
.acard::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  transform: scaleX(0);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  transform-origin: center;
}
.acard:hover {
  transform: translateY(-6px);
  border-color: rgba(196,154,42,.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 4px 12px rgba(0,0,0,.4),
    0 24px 50px -12px rgba(0,0,0,.7);
}
.acard:hover::after { transform: scaleX(1); }

/* Títulos de seção — refinamento */
.sec-label {
  text-shadow: 0 0 16px rgba(196,154,42,.25);
}
.sec-rule {
  background: linear-gradient(90deg, var(--gold) 0%, rgba(196,154,42,.2) 100%);
  height: 2px;
  border-radius: 2px;
}

/* Page banner */
.page-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark1) 60%, var(--black) 100%);
  border-bottom: 1px solid rgba(196,154,42,.15);
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(196,154,42,.12) 0%, transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.page-banner h1 span {
  background: linear-gradient(135deg, #edd98a 0%, #c49a2a 60%, #a87f1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav — pill refinada */
nav a {
  position: relative;
  transition: color .25s ease, background .25s ease;
}
nav a:not(.nav-yt)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .35s cubic-bezier(.2,.8,.2,1);
  border-radius: 2px;
}
nav a:not(.nav-yt):hover::after,
nav a:not(.nav-yt).active::after { width: calc(100% - 1.5rem); }

.nav-yt {
  background: linear-gradient(135deg, #ff1a1a 0%, #cc0000 100%) !important;
  box-shadow: 0 4px 14px rgba(204,0,0,.35), 0 1px 0 rgba(255,255,255,.15) inset;
  transition: all .3s cubic-bezier(.2,.8,.2,1) !important;
}
.nav-yt:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(204,0,0,.5), 0 1px 0 rgba(255,255,255,.2) inset !important;
  background: linear-gradient(135deg, #ff3333 0%, #dd0000 100%) !important;
}

/* Pills de categoria */
.cat-pill {
  background: rgba(196,154,42,.04);
  backdrop-filter: blur(8px);
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.cat-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196,154,42,.15);
}

/* Stats — refinamento */
.stat-num {
  background: linear-gradient(135deg, #edd98a 0%, #c49a2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(196,154,42,.3));
}

/* Footer — sutileza */
footer {
  position: relative;
  background: linear-gradient(180deg, var(--dark1) 0%, var(--black) 100%);
  border-top: 1px solid rgba(196,154,42,.15);
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,154,42,.4) 50%, transparent 100%);
}

/* Page body — links elegantes */
.page-body h2 {
  position: relative;
  padding-bottom: .6rem;
}
.page-body h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  border-radius: 2px;
}

/* Section dividers sutis entre as seções */
.section + .section,
.section + .section-alt,
.section-alt + .section {
  position: relative;
}
.section + .section::before,
.section + .section-alt::before,
.section-alt + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,154,42,.25) 50%, transparent 100%);
}

/* Selection elegante */
::selection { background: rgba(196,154,42,.35); color: var(--cream); }

/* Scrollbar refinada */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold) 0%, #8a6d1a 100%);
  border-radius: 5px;
  border: 2px solid var(--black);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold2) 0%, var(--gold) 100%);
}

/* Animação de entrada para elementos do hero */
@keyframes premium-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: premium-fade-up .8s cubic-bezier(.2,.8,.2,1) both; }
.hero h1 { animation: premium-fade-up .8s cubic-bezier(.2,.8,.2,1) .15s both; }
.hero-desc { animation: premium-fade-up .8s cubic-bezier(.2,.8,.2,1) .3s both; }
.hero-actions { animation: premium-fade-up .8s cubic-bezier(.2,.8,.2,1) .45s both; }

/* ============================================
   SCROLL REVEAL — elementos surgem no scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   PARALLAX HERO
   ============================================ */
.hero-bg {
  will-change: transform;
  transition: transform .1s linear;
}

/* ============================================
   PARTÍCULAS DOURADAS no hero — atmosfera
   ============================================ */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(237,217,138,.6) 0, transparent 1.5px),
    radial-gradient(circle at 78% 32%, rgba(237,217,138,.5) 0, transparent 2px),
    radial-gradient(circle at 24% 72%, rgba(237,217,138,.55) 0, transparent 1.8px),
    radial-gradient(circle at 88% 84%, rgba(237,217,138,.4) 0, transparent 1.2px),
    radial-gradient(circle at 45% 90%, rgba(237,217,138,.5) 0, transparent 1.5px),
    radial-gradient(circle at 62% 12%, rgba(237,217,138,.6) 0, transparent 1.8px),
    radial-gradient(circle at 8% 55%, rgba(237,217,138,.45) 0, transparent 1.3px),
    radial-gradient(circle at 95% 50%, rgba(237,217,138,.5) 0, transparent 1.5px);
  background-size: 100% 100%;
  animation: particles-float 18s ease-in-out infinite;
  opacity: .85;
  filter: blur(.4px);
}
@keyframes particles-float {
  0%, 100% { transform: translate(0, 0); opacity: .85; }
  25% { transform: translate(12px, -18px); opacity: 1; }
  50% { transform: translate(-8px, -28px); opacity: .7; }
  75% { transform: translate(-14px, -12px); opacity: .95; }
}

/* ============================================
   SPOTLIGHT que segue o cursor nos cards
   ============================================ */
.vcard, .acard {
  --mx: 50%;
  --my: 50%;
}
.vcard::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(196,154,42,.14), transparent 45%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}
.vcard:hover::after { opacity: 1; }

.acard {
  isolation: isolate;
}
.acard > * { position: relative; z-index: 2; }
.acard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(196,154,42,.12), transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}
.acard:hover::before { opacity: 1; }

/* ============================================
   Header — refinamento ao rolar
   ============================================ */
header {
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
header.scrolled {
  background: linear-gradient(180deg, rgba(8,6,4,.97) 0%, rgba(8,6,4,.93) 100%);
  box-shadow: 0 2px 0 rgba(196,154,42,.22), 0 16px 40px rgba(0,0,0,.55);
  border-bottom-color: rgba(196,154,42,.32);
}

/* ============================================
   Linha dourada animada decorativa entre seções
   ============================================ */
.section-alt::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: line-pulse 3s ease-in-out infinite;
}
@keyframes line-pulse {
  0%, 100% { width: 60px; opacity: .6; }
  50% { width: 120px; opacity: 1; }
}
.section-alt { position: relative; }

/* ============================================
   GLOSSÁRIO JURÍDICO
   ============================================ */
.gloss-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.gloss-search-wrap i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: .7;
  pointer-events: none;
}
#gloss-search {
  width: 100%;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark1) 100%);
  border: 1.5px solid rgba(196,154,42,.18);
  border-radius: 8px;
  padding: .95rem 1.1rem .95rem 2.8rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: .95rem;
  letter-spacing: .01em;
  outline: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.3), 0 1px 0 rgba(255,255,255,.03) inset;
  transition: border-color .25s, box-shadow .25s;
}
#gloss-search::placeholder { color: var(--muted); }
#gloss-search:focus {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(196,154,42,.2), 0 0 0 3px rgba(196,154,42,.1), 0 1px 0 rgba(255,255,255,.04) inset;
}

.gloss-alphabet {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
  padding: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 720px;
  background: linear-gradient(180deg, rgba(196,154,42,.05) 0%, rgba(196,154,42,.02) 100%);
  border: 1px solid rgba(196,154,42,.12);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}
.gloss-alphabet a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: var(--cream2);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(196,154,42,.15);
  background: rgba(10,8,6,.4);
  transition: all .25s cubic-bezier(.2,.8,.2,1);
}
.gloss-alphabet a:hover {
  color: var(--black);
  background: linear-gradient(135deg, #d4ae46, #c49a2a);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(196,154,42,.4);
}

.gloss-section {
  margin: 3rem 0 2.5rem;
  scroll-margin-top: 100px;
}
.gloss-letter {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #edd98a 0%, #c49a2a 60%, #a87f1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid rgba(196,154,42,.25);
  padding-bottom: .5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 12px rgba(196,154,42,.25));
}

.gloss-term {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark1) 100%);
  border: 1px solid rgba(196,154,42,.1);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .25s;
}
.gloss-term:hover {
  transform: translateX(4px);
  border-left-color: var(--gold2);
  box-shadow: 0 6px 22px rgba(0,0,0,.4), -4px 0 14px rgba(196,154,42,.12);
}
.gloss-term h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .5rem;
  letter-spacing: -.005em;
}
.gloss-term p {
  color: var(--cream2);
  font-size: .94rem;
  line-height: 1.75;
  margin-bottom: 0;
}
.gloss-term p em { color: var(--gold3); font-style: italic; }

.gloss-cta {
  margin-top: 3rem;
  padding: 1.75rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(196,154,42,.08) 0%, rgba(196,154,42,.02) 100%);
  border: 1px solid rgba(196,154,42,.18);
  border-radius: 10px;
}
.gloss-cta p { color: var(--cream2); font-size: .95rem; margin: 0; }
.gloss-cta a { color: var(--gold); font-weight: 600; }

@media (max-width: 768px) {
  .gloss-letter { font-size: 2.5rem; }
  .gloss-alphabet a { width: 34px; height: 34px; font-size: .95rem; }
  .gloss-term { padding: 1.1rem 1.2rem; }
}

