/* ==========================================================================
   GOMES & PHILYP ADVOCACIA — PORTAL DE TRANSPARÊNCIA PROCESSUAL
   ESTILO EXECUTIVO DE ALTO PADRÃO: OURO POLIDO DE LUXO & BORDAS RETAS (2px)
   TIPOGRAFIA: CAMBRIA MATH (TÍTULOS/CABEÇALHOS) & APTOS DISPLAY (GERAL)
   BARRA SUPERIOR DE ALTA SOFISTICAÇÃO COM EFEITOS LUMINOSOS DE HOVER
   ========================================================================== */

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

:root {
  /* ========================================================================
     SISTEMA TIPOGRÁFICO INSTITUCIONAL
     ======================================================================== */
  --font-title: 'Cambria Math', 'Cambria', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Aptos Display', 'Aptos', 'Segoe UI Variable Display', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ========================================================================
     PALETA DE CORES: OURO POLIDO DE LUXO (POLISHED SPECULAR GOLD)
     ======================================================================== */
  --gold-polished: #D4AF37;                 /* Ouro Polido Nobre */
  --gold-polished-bright: #FDF1B8;          /* Ponto de Brilho Especular Reflexivo */
  --gold-polished-core: #E5C158;            /* Ouro Polido Vibrante */
  --gold-polished-dark: #AA7F1E;            /* Ouro Profundo de Contorno */
  --gold-polished-light: #F4E8C1;           /* Creme Dourado Suave */
  --gold-polished-subtle: #FFFDF8;          /* Fundo Champagne com Brilho */
  --gold-glow: rgba(212, 175, 55, 0.40);    /* Halo Luminoso Delicado */
  --gold-glow-strong: rgba(212, 175, 55, 0.60); /* Halo Luminoso Alto */
  
  /* Gradiente Nobre de Ouro Polido Uniforme (Sem Ponto Branco Excessivo) */
  --gold-gradient: linear-gradient(180deg, #D9B33E 0%, #C69B24 100%);
  --gold-rim-sheen: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.35) 20%, #FDF1B8 50%, rgba(212, 175, 55, 0.35) 80%, transparent 100%);

  /* Mantém compatibilidade de referência interna com valor polido */
  --gold-brushed: var(--gold-polished);
  --gold-brushed-dark: var(--gold-polished-dark);
  --gold-brushed-light: var(--gold-polished-light);
  --gold-brushed-subtle: var(--gold-polished-subtle);

  /* ========================================================================
     SUPERFÍCIES & CONTRASTES EXECUTIVOS
     ======================================================================== */
  --bg-canvas: #EBF0F5;                     /* Fundo Platinum Slate (Elimina o branco puro excessivo) */
  --bg-surface: #FFFFFF;                    /* Superfície Branca Elevada */
  --bg-surface-subtle: #F1F5F9;             /* Sub-painel Ardósia Suave */
  --bg-surface-contrast: #E2E8F0;          /* Painel de Contraste Médio */
  
  --text-main: #0B132B;                     /* Marinho Profundo Quase Preto */
  --text-secondary: #1E293B;                /* Ardósia Escura para Leitura */
  --text-muted: #475569;                    /* Texto Secundário */
  --text-light: #64748B;                    /* Metadados e Legendas */
  
  --primary-navy: #0A1128;                  /* Azul Marinho Presidencial */
  --primary-navy-hover: #172554;            /* Azul Marinho Real no Hover */

  /* Linhas de Contorno: FIXAS EM OURO POLIDO (NÃO MAIS CINZAS) */
  --border-light: #D4AF37;
  --border-medium: #D4AF37;
  --border-gold: #D4AF37;
  
  /* Padrão Estrito: Bordas Retas / Curvatura Mínima de 2px */
  --radius-sharp: 2px;
  --radius-micro: 3px;
}

/* ==========================================================================
   LINHAS FIXAS EM OURO POLIDO EM TODO O SISTEMA (SUBSTITUINDO TOTALMENTE O CINZA)
   ========================================================================== */
.border-slate-100,
.border-slate-200,
.border-slate-300,
.border-slate-400,
[class*="border-slate-"],
[class*="border-gray-"],
[class*="border-zinc-"] {
  border-color: var(--gold-polished) !important;
}

.divide-slate-100 > :not([hidden]) ~ :not([hidden]),
.divide-slate-200 > :not([hidden]) ~ :not([hidden]),
.divide-slate-300 > :not([hidden]) ~ :not([hidden]),
[class*="divide-slate-"] > :not([hidden]) ~ :not([hidden]),
[class*="divide-gray-"] > :not([hidden]) ~ :not([hidden]) {
  border-color: var(--gold-polished) !important;
}

[class*="hover:border-slate-"]:hover,
[class*="hover:border-gray-"]:hover {
  border-color: var(--gold-polished-bright) !important;
  box-shadow: 0 0 12px var(--gold-glow);
}

.h-px.bg-slate-200,
.h-px.bg-slate-300,
.w-px.bg-slate-300,
.h-px[class*="bg-slate-"],
.w-px[class*="bg-slate-"] {
  background-color: var(--gold-polished) !important;
}

body {
  background-color: var(--bg-canvas);
  color: var(--text-secondary);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   TIPOGRAFIA INSTITUCIONAL (CAMBRIA MATH & APTOS DISPLAY)
   ========================================================================== */
h1, h2, h3, h4, h5, h6,
.font-prestige,
.brand-title,
.title-card-heading {
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}

.font-process-num,
.font-mono-num {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   BARRA SUPERIOR EXECUTIVA DE ALTO PADRÃO (PRESTIGE TOPBAR)
   LUXUOSA, LIMPA E COM EFEITOS LUMINOSOS DE HOVER
   ========================================================================== */
.prestige-topbar {
  background-color: #0A1128;
  background: linear-gradient(180deg, #172554 0%, #0A1128 100%);
  border-bottom: 1px solid var(--gold-polished);
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 4px 22px -2px rgba(10, 17, 40, 0.5), 0 2px 8px rgba(10, 17, 40, 0.25);
}

/* Fio de luz dourada reflexiva no topo da barra */
.prestige-topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #997A15 0%, #D4AF37 25%, #FFF2A8 50%, #D4AF37 75%, #997A15 100%);
  pointer-events: none;
}

.brand-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.brand-subtitle {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-polished-bright);
  text-transform: uppercase;
}

/* Cápsula de Perfil do Advogado / Usuário (Alto Contraste em Preto Grafite) */
.user-profile-capsule {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-sharp);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.user-profile-capsule:hover {
  border-color: var(--gold-polished-bright);
  background-color: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 18px var(--gold-glow), 0 3px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.user-avatar-square {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sharp);
  background-color: #0A1128;
  background: linear-gradient(135deg, #172554 0%, #0A1128 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-polished);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
  position: relative;
  letter-spacing: 0.05em;
}

.user-online-beacon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background-color: #10B981;
  border: 1.5px solid #0A1128;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.7);
}

.btn-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background-color: rgba(239, 68, 68, 0.18);
  color: #FECACA;
  border: 1px solid #EF4444;
  border-radius: var(--radius-sharp);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-logout:hover {
  background-color: rgba(239, 68, 68, 0.28);
  border-color: #FF4D4D;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.75), 0 0 8px rgba(239, 68, 68, 0.5);
  transform: translateY(-1px);
}

.btn-logout:active {
  transform: translateY(0);
  background-color: rgba(239, 68, 68, 0.35);
}

/* ==========================================================================
   BARRA DE COMANDO & SUBNAVEGAÇÃO (DESTAQUE PARA ABA SELECIONADA EM PRETO GRANULADO)
   ========================================================================== */
.command-subnav {
  background-color: #FFFFFF;
  border-bottom: 2px solid var(--border-light);
  height: 56px;
  position: sticky;
  top: 74px;
  z-index: 30;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tab-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #475569;
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.tab-nav-button:hover:not(.active) {
  color: #0A1128;
  background-color: #F8FAFC;
  box-shadow: inset 0 -2px 0 var(--border-light);
}

.tab-nav-button:hover:not(.active) svg {
  color: #0A1128;
}

/* Aba Selecionada (Ativa): Mesma cor executiva dos botões principais (#172554 a #0A1128) */
.tab-nav-button.active {
  background-color: #0A1128;
  background: linear-gradient(180deg, #172554 0%, #0A1128 100%);
  color: #FFFFFF;
  font-weight: 700;
  border-bottom: 3px solid var(--gold-polished);
  box-shadow: 0 4px 14px rgba(10, 17, 40, 0.35);
}

.tab-nav-button.active svg {
  color: var(--gold-polished-bright) !important;
}

.tab-nav-badge {
  background-color: var(--bg-surface-subtle);
  color: #334155;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sharp);
  transition: all 0.2s ease;
}

.tab-nav-button.active .tab-nav-badge {
  background-color: var(--gold-polished);
  color: #0A1128;
  font-weight: 800;
  border-color: var(--gold-polished-bright);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   SISTEMA DE BOTÕES EXECUTIVOS (BRILHO LUSTROSO & CONTORNO LUMINOSO)
   ========================================================================== */
.btn-executive-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #172554 0%, #0A1128 100%);
  color: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-sharp);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(10, 17, 40, 0.20);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
}

.btn-executive-primary:hover {
  border-color: var(--gold-polished);
  box-shadow: 0 0 18px var(--gold-glow), 0 4px 12px rgba(10, 17, 40, 0.35);
  transform: translateY(-1px);
}

.btn-executive-primary:active {
  transform: translateY(0);
}

/* Botão Ouro Polido Uniforme de Luxo (Sem Brilhos Brancos Excessivos no Canto) */
.btn-executive-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #D9B33E 0%, #C69B24 100%);
  color: #FFFFFF;
  border: 1px solid #B08821;
  border-radius: var(--radius-sharp);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.015em;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(170, 127, 30, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(10, 17, 40, 0.30);
}

.btn-executive-gold:hover {
  background: linear-gradient(180deg, #E0BC48 0%, #D0A52B 100%);
  border-color: #C69B24;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35), 0 3px 10px rgba(170, 127, 30, 0.30);
  transform: translateY(-1px);
}

.btn-executive-gold:active {
  transform: translateY(0);
  background: linear-gradient(180deg, #C69B24 0%, #B58B1E 100%);
}

/* Botão Visualizar Processo — Linhas e Efeitos em Azul Royal com Fundo Transparente */
.btn-executive-royal-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent !important;
  color: #1D4ED8 !important;
  border: 1.5px solid #1D4ED8 !important;
  border-radius: var(--radius-sharp);
  padding: 7px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-executive-royal-outline:hover {
  background-color: rgba(29, 78, 216, 0.08) !important;
  border-color: #2563EB !important;
  color: #1E40AF !important;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.35), 0 2px 8px rgba(29, 78, 216, 0.15);
  transform: translateY(-1px);
}

.btn-executive-royal-outline:active {
  transform: translateY(0);
  background-color: rgba(29, 78, 216, 0.14) !important;
}

/* Variante Penal / Criminal correspondente (fundo transparente, linhas e efeitos carmesim) */
.btn-executive-crimson-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent !important;
  color: #DC2626 !important;
  border: 1.5px solid #DC2626 !important;
  border-radius: var(--radius-sharp);
  padding: 7px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-executive-crimson-outline:hover {
  background-color: rgba(220, 38, 38, 0.08) !important;
  border-color: #EF4444 !important;
  color: #991B1B !important;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.35), 0 2px 8px rgba(220, 38, 38, 0.15);
  transform: translateY(-1px);
}

.btn-executive-crimson-outline:active {
  transform: translateY(0);
  background-color: rgba(220, 38, 38, 0.14) !important;
}

.btn-executive-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: #FFFFFF;
  color: #1E293B;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sharp);
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-executive-secondary:hover {
  background-color: var(--gold-polished-subtle);
  border-color: var(--gold-polished);
  color: var(--primary-navy);
  box-shadow: 0 0 16px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-executive-crimson {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #9F1239 0%, #881337 100%);
  color: #FFFFFF;
  border: 1px solid rgba(254, 202, 202, 0.6);
  border-radius: var(--radius-sharp);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(136, 19, 55, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-executive-crimson:hover {
  border-color: #F87171;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.40), 0 4px 10px rgba(136, 19, 55, 0.35);
  transform: translateY(-1px);
}

/* Botões Executivos Compactos para Edição e Exclusão do Andamento Mais Recente */
.btn-update-action-edit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  border-radius: var(--radius-sharp);
  background-color: #FFFFFF;
  color: #1E293B;
  border: 1px solid var(--border-light);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-update-action-edit:hover {
  background-color: var(--gold-polished-subtle);
  border-color: var(--gold-polished);
  color: var(--primary-navy);
  box-shadow: 0 0 12px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-update-action-edit:active {
  transform: translateY(0);
}

.btn-update-action-delete {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  border-radius: var(--radius-sharp);
  background-color: #FFF5F5;
  color: #DC2626;
  border: 1px solid #FECACA;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(220, 38, 38, 0.05);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-update-action-delete:hover {
  background-color: #FEE2E2;
  border-color: #EF4444;
  color: #991B1B;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.30);
  transform: translateY(-1px);
}

.btn-update-action-delete:active {
  transform: translateY(0);
}

/* ==========================================================================
   CARDS DE INFORMAÇÃO / RESUMO EXECUTIVO (BARRA LATERAL AZUL & EFEITO LUMINOSO)
   ========================================================================== */
.card-kpi-neutral {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-left: 3px solid #172554 !important;
  border-radius: var(--radius-sharp);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card-kpi-neutral:hover {
  border-width: 1px;
  border-color: #0066FF !important;
  border-left: 3px solid #0066FF !important;
  background-color: #F8FAFC;
  background-image: linear-gradient(90deg, rgba(0, 102, 255, 0.20) 0%, rgba(0, 102, 255, 0.06) 20%, transparent 45%);
  box-shadow: none !important;
}

.kpi-neutral-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.kpi-neutral-num {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 800;
  color: #B8860B;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.kpi-neutral-icon-box {
  width: 48px;
  height: 48px;
  background-color: #0A1128;
  background: linear-gradient(135deg, #172554 0%, #0A1128 100%);
  border: 1.5px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-polished-bright);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.25), inset 0 0 6px rgba(212, 175, 55, 0.15);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Compatibilidade retroativa para classes navy */
.card-kpi-navy {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-left: 3px solid #172554 !important;
  border-radius: var(--radius-sharp);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card-kpi-navy:hover {
  border-width: 1px;
  border-color: #0066FF !important;
  border-left: 3px solid #0066FF !important;
  background-color: #F8FAFC;
  background-image: linear-gradient(90deg, rgba(0, 102, 255, 0.20) 0%, rgba(0, 102, 255, 0.06) 20%, transparent 45%);
  box-shadow: none !important;
}

.kpi-navy-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.kpi-navy-num {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 800;
  color: #B8860B;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.kpi-navy-icon-box {
  width: 48px;
  height: 48px;
  background-color: #0A1128;
  background: linear-gradient(135deg, #172554 0%, #0A1128 100%);
  border: 1.5px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-polished-bright);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.25), inset 0 0 6px rgba(212, 175, 55, 0.15);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   CARTÕES & SURFACES EXECUTIVAS
   ========================================================================== */
.card-clean {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.card-clean:hover {
  border-color: var(--gold-polished);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.18);
}

/* Cartão em Linha Horizontal do Cliente */
.client-case-row-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-left: 5px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  padding: 20px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.client-case-row-card:hover {
  border-color: var(--gold-polished);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}

/* Cartão do Âmbito Criminal */
.card-criminal {
  background-color: #FFF8F8 !important;
  border: 1px solid #FECACA !important;
  border-left: 5px solid #991B1B !important;
  border-radius: var(--radius-sharp) !important;
}

.card-criminal:hover {
  border-color: #EF4444 !important;
  box-shadow: 0 6px 20px rgba(153, 27, 27, 0.16) !important;
}

/* ==========================================================================
   CARTÃO DE TÍTULO EXECUTIVO (ANTES DOS 3 QUADROS INFORMATIVOS)
   ========================================================================== */
.info-section-title-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  padding: 12px 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.info-section-title-card.crimson {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F8 100%) !important;
  border-color: #FECACA !important;
  border-left: 4px solid #991B1B !important;
}

.title-card-heading {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}

.title-card-subheading {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ==========================================================================
   FAIXA DE METADADOS COM DIVISÓRIAS NÍTIDAS (OS 3 QUADROS INFORMATIVOS)
   ========================================================================== */
.meta-ribbon-divided {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #F8FAFC;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.meta-ribbon-divided.crimson {
  background-color: #FFF8F8 !important;
  border: 1px solid #FECACA !important;
  border-left: 4px solid #991B1B !important;
}

@media (min-width: 768px) {
  .meta-ribbon-divided {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.meta-ribbon-cell {
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

@media (min-width: 768px) {
  .meta-ribbon-cell:not(:last-child) {
    border-right: 1px solid var(--border-light);
  }
  .meta-ribbon-divided.crimson .meta-ribbon-cell:not(:last-child) {
    border-right: 1px solid #FECACA;
  }
}

@media (max-width: 767px) {
  .meta-ribbon-cell:not(:last-child) {
    border-bottom: 1px solid var(--border-light);
  }
  .meta-ribbon-divided.crimson .meta-ribbon-cell:not(:last-child) {
    border-bottom: 1px solid #FECACA;
  }
}

/* Caixas de contraste clássicas */
.meta-box-contrast {
  background-color: #F1F5F9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sharp);
  padding: 8px 12px;
}

.meta-box-crimson {
  background-color: #FFF0F0;
  border: 1px solid #FECACA;
  border-radius: var(--radius-sharp);
  padding: 8px 12px;
}

/* ==========================================================================
   BADGES & ETIQUETAS RETAS (SEM FORMAS ARREDONDADAS)
   ========================================================================== */
.tag-executive {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  padding: 3.5px 9px;
  border-radius: var(--radius-sharp);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

/* 1. Dourado Institucional Geral */
.tag-rite-gold {
  background-color: #FEF9C3;
  color: #854D0E;
  border: 1px solid #FDE047;
}

/* 2. Cartório & Notarial (Cinza Grafite / Ardósia) */
.tag-rite-slate {
  background-color: #F1F5F9;
  color: #334155;
  border: 1px solid #CBD5E1;
}

/* 3. Tribunal do Júri (Rubi / Vinho Profundo) */
.tag-rite-crimson {
  background-color: #FFE4E6;
  color: #9F1239;
  border: 1px solid #FDA4AF;
}

/* 4. Cível Comum (Azul Royal Clássico) */
.tag-rite-blue {
  background-color: #DBEAFE;
  color: #1E40AF;
  border: 1px solid #93C5FD;
}

/* 5. Trabalhista CLT (Verde Petróleo / Teal) */
.tag-rite-teal {
  background-color: #CCFBF1;
  color: #115E59;
  border: 1px solid #5EEAD4;
}

/* 6. Família & Sucessões (Roxo / Púrpura Nobre) */
.tag-rite-purple {
  background-color: #F3E8FF;
  color: #6B21A8;
  border: 1px solid #D8B4FE;
}

/* 7. Execução de Título & Cobrança (Âmbar / Dourado Quente) */
.tag-rite-amber {
  background-color: #FEF3C7;
  color: #92400E;
  border: 1px solid #FCD34D;
}

/* 8. Societário & Quotas JUCEMAT (Verde Esmeralda) */
.tag-rite-emerald {
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}

/* 9. Conflito Empresarial & Mediação (Laranja Terracota) */
.tag-rite-orange {
  background-color: #FFEDD5;
  color: #9A3412;
  border: 1px solid #FDBA74;
}

/* 10. Contratos & Consultoria Preventiva (Índigo Executivo) */
.tag-rite-indigo {
  background-color: #E0E7FF;
  color: #3730A3;
  border: 1px solid #A5B4FC;
}

/* 11. Juizado Especial Cível JEC (Azul Celeste / Sky) */
.tag-rite-sky {
  background-color: #E0F2FE;
  color: #075985;
  border: 1px solid #7DD3FC;
}

/* 12. Penal Comum / Criminal Geral (Vermelho Escarlate) */
.tag-rite-red {
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.tag-stage-gold {
  background-color: var(--gold-polished-subtle);
  color: #855B05;
  border: 1px solid var(--gold-polished-core);
}

.tag-stage-crimson {
  background-color: #FFF0F0;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.tag-stage-emerald {
  background-color: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

/* ==========================================================================
   FORMULÁRIOS & ENTRADAS (BORDAS RETAS)
   ========================================================================== */
.input-clean {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sharp);
  color: var(--text-main);
  padding: 9px 13px;
  font-family: var(--font-body);
  font-size: 13px;
  width: 100%;
  outline: none;
  transition: all 0.2s ease;
}

.input-clean:focus {
  border-color: var(--gold-polished);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22);
}

select.input-clean {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}

/* ==========================================================================
   MARCHA PROCESSUAL — RÉGUA LINEAR CONTÍNUA (BORDAS RETAS / 2px)
   ========================================================================== */
.modern-stepper-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
  width: 100%;
  padding: 14px 4px 8px 4px;
}

.modern-step-node {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modern-step-line {
  position: absolute;
  top: 13px;
  left: 50%;
  right: -50%;
  height: 2px;
  background-color: var(--border-light);
  z-index: 0;
}

.modern-step-node:last-child .modern-step-line {
  display: none;
}

.modern-step-node.completed .modern-step-line {
  background-color: #047857;
}

.modern-step-circle {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sharp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  z-index: 1;
  position: relative;
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-light);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.modern-step-node.completed .modern-step-circle {
  background-color: #047857;
  border-color: #047857;
  color: #FFFFFF;
  box-shadow: 0 0 10px rgba(4, 120, 87, 0.35);
}

.modern-step-node.active .modern-step-circle {
  background-color: #0B192C;
  border-color: var(--gold-polished);
  color: var(--gold-polished-bright);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.35);
}

.modern-step-node.pending .modern-step-circle {
  background-color: #F8FAFC;
  border-color: var(--border-light);
  color: var(--text-light);
}

.modern-step-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.3;
  padding: 0 4px;
}

.modern-step-node.active .modern-step-label {
  color: #0B192C;
  font-weight: 800;
}

/* ==========================================================================
   BARRAS DE PROGRESSO DE ALTO CONTRASTE (AZUL-MARINHO PROFUNDO #0B192C)
   ========================================================================== */
.progress-bar-navy {
  background-color: #0A1128;
  background: linear-gradient(90deg, #172554 0%, #0A1128 100%) !important;
  box-shadow: 0 1px 4px rgba(10, 17, 40, 0.35);
}

.progress-bar-crimson {
  background: linear-gradient(90deg, #991B1B 0%, #B91C1C 100%) !important;
  box-shadow: 0 1px 4px rgba(153, 27, 27, 0.4);
}

.modern-step-status {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modern-step-node.completed .modern-step-status {
  color: #047857;
}

.modern-step-node.active .modern-step-status {
  color: var(--gold-polished-dark);
}

.modern-step-node.pending .modern-step-status {
  color: var(--text-light);
}

/* ==========================================================================
   LINHA DO TEMPO DOS ANDAMENTOS (CLEAN & RETO)
   ========================================================================== */
.clean-timeline {
  position: relative;
  padding-left: 18px;
}

.clean-timeline-item {
  position: relative;
  padding-left: 24px;
  padding-bottom: 22px;
}

.clean-timeline-item:last-child {
  padding-bottom: 0;
}

.clean-timeline-line {
  position: absolute;
  left: 5px;
  top: 10px;
  bottom: -4px;
  width: 2px;
  background-color: var(--border-light);
}

.clean-timeline-item:last-child .clean-timeline-line {
  display: none;
}

.clean-timeline-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-sharp);
  background-color: #FFFFFF;
  border: 2px solid var(--border-medium);
  z-index: 1;
}

.clean-timeline-dot.active {
  background-color: var(--primary-navy);
  border-color: var(--gold-polished);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}

.clean-timeline-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sharp);
  padding: 16px;
}

.clean-timeline-card h4 {
  font-family: var(--font-title);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   POP-UPS / MODAIS ELEGANTES & CABEÇALHOS PRESTÍGIO EM CARTÃO
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(10, 17, 40, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-micro);
  box-shadow: 0 25px 50px -12px rgba(10, 17, 40, 0.45), 0 0 35px rgba(212, 175, 55, 0.25);
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Cabeçalho Executivo em Cartão de Prestígio (Azul Marinho Executivo & Ouro Polido) */
.modal-prestige-header {
  position: relative;
  background-color: #0A1128;
  background: linear-gradient(180deg, #172554 0%, #0A1128 100%);
  border-bottom: 2px solid var(--gold-polished);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(10, 17, 40, 0.5), inset 0 -1px 0 rgba(212, 175, 55, 0.4);
  overflow: hidden;
}

/* Faixa superior de ouro polido brilhante */
.modal-prestige-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #997A15 0%, #D4AF37 25%, #FFF2A8 50%, #D4AF37 75%, #997A15 100%);
  z-index: 2;
}

/* Aura de luz dourada suave no canto superior direito */
.modal-prestige-header::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Container do ícone executivo do cabeçalho */
.modal-prestige-icon-capsule {
  width: 48px;
  height: 48px;
  background-color: #0A1128;
  background: linear-gradient(135deg, #172554 0%, #0A1128 100%);
  border: 1.5px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-polished-bright);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.28), inset 0 0 8px rgba(212, 175, 55, 0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* Título em Cambria Math */
.modal-prestige-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.25;
}

/* Subtítulo em Aptos Display */
.modal-prestige-sub {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #CBD5E1;
  font-weight: 500;
  margin-top: 3px;
  line-height: 1.35;
}

/* Botão de Fechar Elegante */
.modal-prestige-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sharp);
  color: #E2E8F0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.modal-prestige-close-btn:hover {
  background-color: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-polished-bright);
  color: #FFFFFF;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
  transform: scale(1.05);
}

.modal-prestige-close-btn:active {
  transform: scale(0.96);
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: var(--font-title);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  flex: 1;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  background-color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* ==========================================================================
   SISTEMA DE CHAT LIMPO
   ========================================================================== */
.chat-messages-container {
  overflow-y: auto;
  padding: 18px;
  background-color: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble-lawyer {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  padding: 12px 16px;
  max-width: 80%;
  margin-right: auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.chat-bubble-client {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  border: 1px solid #1E293B;
  border-radius: var(--radius-sharp);
  padding: 12px 16px;
  max-width: 80%;
  margin-left: auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.chat-bubble-client p {
  color: #F1F5F9 !important;
}

.chat-bubble-client .chat-meta {
  color: #94A3B8 !important;
}

/* Barra de Rolagem Executiva */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-canvas);
}
::-webkit-scrollbar-thumb {
  background: var(--border-medium);
  border-radius: var(--radius-sharp);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ==========================================================================
   BOTÕES DE FILTRO DE NATUREZA (JUDICIAL & EXTRAJUDICIAL)
   ========================================================================== */
.btn-nature-filter {
  background-color: #FFFFFF;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sharp);
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-nature-filter:hover {
  background-color: var(--gold-polished-subtle);
  border-color: var(--gold-polished);
  color: var(--primary-navy);
}

.btn-nature-filter.active {
  background-color: #0A1128;
  background: linear-gradient(180deg, #172554 0%, #0A1128 100%);
  color: #FFFFFF;
  border-color: var(--gold-polished);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35), 0 2px 6px rgba(10, 17, 40, 0.3);
}

.btn-nature-filter.active span {
  color: var(--gold-polished-bright) !important;
}

/* ==========================================================================
   BOTÕES DE SELEÇÃO DE NATUREZA DO MODAL (ESTÁTICOS, SEM MOVIMENTO)
   MESMA COR DOS BOTÕES EXECUTIVOS (#172554 A #0A1128)
   ========================================================================== */
.btn-nature-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700 !important;
  border-radius: var(--radius-sharp);
  border: 1px solid var(--gold-polished);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-nature-tab.active,
.btn-nature-tab.tab-nature-grain-active,
.btn-nature-tab.tab-nature-navy-active,
.tab-nature-grain-active,
.tab-nature-navy-active {
  background-color: #0A1128 !important;
  background-image: none !important;
  background: linear-gradient(180deg, #172554 0%, #0A1128 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid var(--gold-polished) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25) !important;
  font-weight: 700 !important;
}

.btn-nature-tab.inactive,
.btn-nature-tab.tab-nature-grain-inactive,
.btn-nature-tab.tab-nature-navy-inactive,
.tab-nature-grain-inactive,
.tab-nature-navy-inactive {
  background-color: #FFFFFF !important;
  background-image: none !important;
  color: #334155 !important;
  border: 1px solid var(--gold-polished) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

.btn-nature-tab.inactive:hover,
.btn-nature-tab.tab-nature-grain-inactive:hover,
.tab-nature-grain-inactive:hover {
  background-color: #F8FAFC !important;
  color: #0A1128 !important;
  border-color: var(--gold-polished-bright) !important;
}

.title-card-icon-navy {
  background: linear-gradient(135deg, #172554 0%, #0A1128 100%) !important;
  color: var(--gold-polished-bright) !important;
  border-color: rgba(212, 175, 55, 0.5) !important;
}

/* ==========================================================================
   TELA DE LOGIN INSTITUCIONAL DARK NAVY (RÉPLICA 100% FIEL DA OPÇÃO 2)
   ========================================================================== */
.login-view-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #030712;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.32) 0%, rgba(180, 130, 20, 0.14) 28%, rgba(3, 7, 18, 0) 65%),
    radial-gradient(ellipse at 50% 50%, #0B1733 0%, #060D20 50%, #030712 100%);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

/* Moldura Dupla de Alto Padrão no Cartão Central */
.login-card-executive {
  background: #FFFFFF;
  border: 1.5px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  padding: 8px; /* Margem exata da moldura dupla de luxo */
  box-shadow: 
    0 0 50px rgba(212, 175, 55, 0.35),
    0 25px 70px rgba(0, 0, 0, 0.85);
  position: relative;
  z-index: 10;
}

.login-card-inner-frame {
  border: 1px solid rgba(212, 175, 55, 0.65);
  padding: 32px 34px;
  background: #FFFFFF;
  border-radius: 1px;
  position: relative;
}

.login-input-gold {
  width: 100%;
  height: 42px;
  background-color: #FFFFFF;
  border: 1px solid var(--gold-polished) !important;
  border-radius: var(--radius-sharp);
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #0A1128;
  outline: none;
  transition: all 0.2s ease;
}

.login-input-gold:focus {
  border-color: #AA7F1E !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.45);
}

/* Botão Transparente com Contorno e Efeitos em Ouro Polido */
.btn-login-gold-outline {
  width: 100%;
  height: 44px;
  background-color: transparent !important;
  color: #0A1128;
  border: 1.5px solid var(--gold-polished);
  border-radius: var(--radius-sharp);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.20), inset 0 0 10px rgba(212, 175, 55, 0.06);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-login-gold-outline::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.30) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.btn-login-gold-outline:hover {
  background-color: rgba(212, 175, 55, 0.08) !important;
  color: #0A1128;
  border-color: #B8860B;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.55), inset 0 0 14px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
}

.btn-login-gold-outline:hover::after {
  left: 100%;
}

.btn-login-gold-outline:active {
  transform: translateY(0);
  background-color: rgba(212, 175, 55, 0.16) !important;
}

.login-topbar {
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  position: relative;
  z-index: 20;
}

.login-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  position: relative;
  z-index: 20;
}
