/* ══════════════════════════════════════════════════════════════════════
  BID FARM V2 - VERSAO 2 EDITORIAL FINANCEIRO
  Design System: Dark Theme, Serif Headlines, Mono Data, Orange Accents
══════════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────────────── 
   RESET & BASE
────────────────────────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Cores Base */
  --black: #262626;
  --black-soft: #2E2E2E;
  --black-card: #323232;
  --border: #2A2A2A;
  --border-bright: #3A3A3A;
  
  /* Cor Principal - Laranja/Dourado */
  --orange: #F4C430;
  --orange-dim: #DAA520;
  --orange-glow: rgba(244, 196, 48, 0.12);
  
  /* Textos */
  --white: #F5F3EE;
  --white-dim: #B8B4AE;
  --white-faint: #6A6660;
  
  /* Status */
  --green-tick: #2ECC8A;
  --red-tick: #E84040;
  
  /* Fontes */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  min-height: 100vh;
  /* overflow-x removido: quebra posicionamento fixed do Vuetify overlay */
}

/* ────────────────────────────────────────────────────────────────────── 
   TICKER DE COTAÇÕES
────────────────────────────────────────────────────────────────────── */
.ticker-wrap {
  background: #272727;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker-label {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  align-items: center;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}

.ticker-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.06em;
}

.ticker-val {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
}

.ticker-chg {
  font-family: var(--font-mono);
  font-size: 10px;
}

.ticker-chg.up {
  color: var(--green-tick);
}

.ticker-chg.dn {
  color: var(--red-tick);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ────────────────────────────────────────────────────────────────────── 
   NAVEGAÇÃO
────────────────────────────────────────────────────────────────────── */
.nav {
  background: var(--black-soft);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

.logo-bid {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-farm {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--orange);
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--white-faint);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 0;
}

.nav-link {
  padding: 0 16px;
  height: 58px;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white-faint);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Nav Dropdown ───────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
  height: 58px;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
  height: 58px;
}

.nav-dropdown-trigger .nav-chevron {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 300;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 13px 18px;
  color: var(--white-dim);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.nav-dropdown-item:last-child {
  border-bottom: none;
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.04);
  color: var(--white);
  padding-left: 22px;
}

.nav-dropdown-item.active-item {
  color: var(--orange);
}

.nav-dropdown-item small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--white-faint);
  margin-top: 3px;
  font-weight: 400;
}

.btn-nav-ghost {
  padding: 7px 16px;
  border: 1px solid var(--border-bright);
  background: none;
  color: var(--white-dim);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-nav-ghost:hover {
  border-color: var(--orange);
  color: var(--white);
}

.btn-nav-primary {
  padding: 7px 18px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.btn-nav-primary:hover {
  background: var(--orange-dim);
  color: #fff;
}

/* Hamburger Menu Button */
.nav-hamburger {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: none;
  color: var(--white-dim);
  cursor: pointer;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.nav-hamburger:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .logo-sub {
    display: none;
  }
  
  .nav-hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 58px;
    left: -100%;
    width: 100%;
    background: var(--black-soft);
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s;
    border-bottom: 1px solid var(--border);
    z-index: 199;
  }
  
  .nav-links.show {
    left: 0;
  }
  
  .nav-link {
    width: 100%;
    height: auto;
    padding: 12px 16px;
    border-bottom: none;
    border-left: 2px solid transparent;
  }
  
  .nav-link.active {
    border-left-color: var(--orange);
    border-bottom-color: transparent;
  }

  /* Dropdown no mobile: sempre visível, indentado */
  .nav-dropdown {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    height: auto;
    padding: 12px 16px;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-top: none;
    border-left: 2px solid var(--border);
    box-shadow: none;
    background: transparent;
    min-width: auto;
    width: 100%;
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-item {
    padding: 10px 16px 10px 24px;
    border-bottom: none;
    border-left: none;
    text-transform: uppercase;
    font-size: 11px;
  }

  .nav-dropdown-item:hover {
    padding-left: 28px;
  }

  .nav-right {
    gap: 8px;
  }
  
  .btn-nav-ghost,
  .btn-nav-primary {
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* ────────────────────────────────────────────────────────────────────── 
   UTILITIES & COMPONENTS
────────────────────────────────────────────────────────────────────── */

/* Badges de Status */
.badge-v {
  background: rgba(232, 64, 64, 0.1);
  color: #E84040;
  border: 1px solid rgba(232, 64, 64, 0.2);
}

.badge-c {
  background: rgba(46, 204, 138, 0.1);
  color: var(--green-tick);
  border: 1px solid rgba(46, 204, 138, 0.2);
}

/* Botões Padrão */
.btn-cta {
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta.primary {
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
}

.btn-cta.primary:hover {
  background: var(--orange-dim);
}

.btn-cta.ghost {
  background: none;
  color: var(--white-dim);
  border: 1px solid var(--border-bright);
}

.btn-cta.ghost:hover {
  border-color: var(--white-dim);
  color: var(--white);
}

/* Cards */
.card-v2 {
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 24px;
}

/* Títulos Editoriais */
.ed-title-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}

.ed-section-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.ed-section-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Forms */
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fg label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3f2f1;
}

.fg input,
.fg select,
.fg textarea {
  background: var(--black-soft);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.15s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--orange);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--white-faint);
}

.fg select option {
  background: var(--black-card);
}

.fg textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.fg input[readonly] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--white-faint);
  letter-spacing: 0.06em;
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
}

@media (max-width: 767px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
}

/* ──────────────────────────────────────────────────────────────────────
   MAIN CONTENT AREA
────────────────────────────────────────────────────────────────────── */
.main-content {
  min-height: calc(100vh - 58px - 96px); /* nav height - footer height */
  display: flex;
  flex-direction: column;
}

/* ──────────────────────────────────────────────────────────────────────
  V2 PAGE COMPONENTS - versao 2 Dark Theme
────────────────────────────────────────────────────────────────────── */

/* Breadcrumb */
.v2-breadcrumb,
.cn-breadcrumb {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.v2-breadcrumb a,
.cn-breadcrumb a {
  color: var(--white-faint);
  text-decoration: none;
  transition: color .15s;
}
.v2-breadcrumb a:hover,
.cn-breadcrumb a:hover { color: var(--orange); }
.v2-breadcrumb span,
.cn-breadcrumb span { color: var(--white-dim); }

/* Page Titles */
.v2-h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.v2-sub {
  font-size: 13px;
  color: #9A9592;
  margin-top: 8px;
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* Progress Step Indicator */
.v2-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 30px 0;
  padding: 0 40px;
}
.v2-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}
.v2-step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--black-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white-faint);
  transition: all .2s;
  z-index: 2;
}
.v2-step.active .v2-step-circle {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}
.v2-step-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9A9592;
  text-align: center;
}
.v2-step.active .v2-step-label { color: var(--white); font-weight: 600; }
.v2-step-line {
  position: absolute;
  top: 25px; left: 50%;
  width: 100%; height: 2px;
  background: var(--border);
  z-index: 1;
}
.v2-step.active .v2-step-line { background: var(--orange); }
.v2-step:last-child .v2-step-line { display: none; }

/* Detail Layout */
.v2-detail-header {
  background: var(--black);
  border-bottom: 3px solid var(--orange);
  padding: 30px 40px;
}
.v2-detail-body {
  padding: 30px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.v2-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

/* Info Blocks */
.v2-info-block {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.v2-info-head {
  padding: 16px 20px;
  background: var(--black);
  border-bottom: 2px solid var(--orange);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2-info-head i { color: var(--orange); font-size: 14px; }
.v2-info-content { padding: 20px; }

/* Field Display Components */
.v2-field-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.v2-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v2-field-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9A9592;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v2-field-value {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  padding: 10px 14px;
  background: rgba(0,0,0,.2);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.v2-field-value.price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--orange);
}

/* Badges */
.v2-badge-type {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.v2-badge-type.venda  { background: rgba(232,64,64,.1);  color: #E84040;           border: 1px solid rgba(232,64,64,.2); }
.v2-badge-type.compra { background: rgba(46,204,138,.1); color: var(--green-tick); border: 1px solid rgba(46,204,138,.2); }
.v2-badge-type.troca  { background: rgba(244,196,48,.1); color: var(--orange);     border: 1px solid rgba(244,196,48,.2); }

.v2-badge-count {
  position: absolute;
  top: -6px; right: -6px;
  background: #E84040;
  color: white;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 10px;
  font-family: var(--font-mono);
}

/* Alert Box */
.v2-alert-box {
  background: rgba(33,150,243,.1);
  border-left: 4px solid #2196F3;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-alert-box i    { font-size: 20px; color: #2196F3; }
.v2-alert-box strong { color: var(--white); display: block; margin-bottom: 4px; }
.v2-alert-box span { color: var(--white-dim); font-size: 13px; }
.v2-alert-box a    { color: #2196F3; font-weight: 600; }

/* Action Bar */
.v2-action-bar {
  background: var(--black-card);
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: sticky;
  bottom: 0;
  z-index: 100;
}
.v2-btn {
  flex: 1;
  min-width: 180px;
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.v2-btn i { font-size: 14px; }
.v2-btn:disabled { opacity: .4; cursor: not-allowed; }
.v2-btn-back     { background: none; border: 1px solid var(--border); color: var(--white-dim); }
.v2-btn-back:hover { border-color: var(--white-dim); color: var(--white); }
.v2-btn-negotiate { background: rgba(33,150,243,.1); border: 1px solid #2196F3; color: #2196F3; }
.v2-btn-negotiate:hover { background: #2196F3; color: var(--white); }
.v2-btn-close    { background: var(--orange); border: 1px solid var(--orange); color: var(--black); }
.v2-btn-close:hover { background: #e0b02e; color: var(--black); }
.v2-btn-chat     { background: none; border: 1px solid var(--border); color: var(--white-dim); position: relative; }
.v2-btn-chat:hover { border-color: var(--orange); color: var(--orange); }
.v2-btn-proposal { background: rgba(46,204,138,.1); border: 1px solid var(--green-tick); color: var(--green-tick); }
.v2-btn-proposal:hover { background: var(--green-tick); color: var(--black); }

/* Sidebar */
.v2-sidebar { position: sticky; top: 20px; }
.v2-sidebar .v2-info-block { margin-bottom: 16px; }

/* ──────────────────────────────────────────────────────────────────────
   CHAT BOX
────────────────────────────────────────────────────────────────────── */
#chatBox {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 380px;
  max-height: 520px;
  display: none;
  z-index: 9999;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  flex-direction: column;
}
#chatBox.show { display: flex; }
.chat-header {
  background: var(--orange);
  color: var(--black);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px 8px 0 0;
  gap: 10px;
}
.chat-header h6 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.chat-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  max-height: 350px;
  background: rgba(0,0,0,.2);
}
.chat-msg { margin-bottom: 12px; display: flex; flex-direction: column; }
.chat-msg.sent     { align-items: flex-end; }
.chat-msg.received { align-items: flex-start; }
.chat-bubble {
  padding: 9px 13px;
  border-radius: 8px;
  max-width: 78%;
  font-size: 12px;
  color: var(--white);
  position: relative;
}
.chat-msg.sent .chat-bubble     { background: var(--orange); color: var(--black); }
.chat-msg.received .chat-bubble { background: rgba(255,255,255,.08); border: 1px solid var(--border); }
.chat-bubble-deleted { font-style: italic; opacity: .6; font-size: 11px; }
.chat-time  { font-family: var(--font-mono); font-size: 9px; color: var(--white-faint); margin-top: 3px; }
.chat-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--white-faint); margin-bottom: 3px; }
.chat-footer {
  padding: 10px 14px;
  background: var(--black);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.chat-footer input,
.chat-footer textarea {
  flex: 1;
  padding: 8px 10px;
  background: var(--black-soft);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 12px;
  outline: none;
  border-radius: 4px;
  resize: none;
  line-height: 1.4;
}
.chat-footer input:focus,
.chat-footer textarea:focus { border-color: var(--orange); }
.chat-footer button {
  padding: 8px 14px;
  background: var(--orange);
  border: none;
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  align-self: flex-end;
}
#chatStatus { font-family: var(--font-mono); font-size: 9px; color: var(--white-faint); padding: 2px 14px; min-height: 16px; }
.chat-empty { text-align: center; padding: 40px 20px; color: var(--white-faint); }
.chat-empty i { font-size: 2.5rem; opacity: .3; display: block; margin-bottom: 8px; }
.chat-del-btn {
  background: none; border: none; color: var(--red-tick); cursor: pointer;
  font-size: 11px; padding: 2px 4px; position: absolute; top: -8px; right: -8px;
  opacity: 0; transition: opacity .15s;
}
.chat-bubble:hover .chat-del-btn { opacity: 1; }

/* ──────────────────────────────────────────────────────────────────────
  VUETIFY 3 - VERSAO 2 DARK OVERRIDES
  Apenas tema (cores/fontes/borda). Altura gerenciada pelo density="comfortable".
────────────────────────────────────────────────────────────────────── */
.v-field {
  background: var(--black-soft) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  min-height: 46px !important;
}
.v-field:hover,
.v-field--hover { background: var(--black-soft) !important; }
.v-field--focused { border-color: var(--orange) !important; box-shadow: none !important; }
.v-field__input {
  align-items: center !important;
  color: var(--white) !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  min-height: 46px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
}
.v-field__input > input {
  color: var(--white) !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
}
.v-field__field {
  min-height: 46px !important;
}
.v-field__input::placeholder,
.v-field__input > input::placeholder { color: var(--white-faint) !important; }
.v-select__selection-text,
.v-autocomplete__selection-text {
  color: var(--white) !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
}
.v-field--disabled { opacity: .5 !important; }
.v-field__outline { display: none !important; }
.v-messages__message {
  font-family: var(--font-mono) !important;
  font-size: 9px !important;
  letter-spacing: .06em !important;
  color: #ff6b6b !important;
  margin-top: 4px !important;
}

/* Vuetify dropdown overlay - versao 2 dark (attach: 'body') */
.v-overlay__content .v-list {
  background: var(--black-card) !important;
  border: 1px solid var(--border-bright) !important;
  border-radius: 0 !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.7) !important;
}
.v-overlay__content .v-list-item {
  color: var(--white) !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  min-height: 36px !important;
}
.v-overlay__content .v-list-item:hover,
.v-overlay__content .v-list-item--active {
  background: var(--black-soft) !important;
  color: var(--orange) !important;
}

/* ──────────────────────────────────────────────────────────────────────
   RESPONSIVE — V2 COMPONENTS
────────────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .v2-detail-grid { grid-template-columns: 1fr; }
  .v2-sidebar { position: static; }
}
@media (max-width: 767px) {
  .v2-detail-header,
  .v2-detail-body,
  .v2-action-bar { padding-left: 20px; padding-right: 20px; }
  .v2-h1 { font-size: 24px; }
  .v2-progress { padding: 0 20px; gap: 8px; }
  .v2-step-circle { width: 40px; height: 40px; font-size: 16px; }
  .v2-step-label { font-size: 8px; }
  .v2-action-bar { flex-direction: column; }
  .v2-btn { width: 100%; min-width: auto; }
  #chatBox { width: calc(100% - 40px); left: 20px; right: 20px; }
}
