/* ==========================================================================
   METSUR PROSPECT — ENTERPRISE CRM & METROLOGICAL COMMERCIAL INTELLIGENCE
   Estilo Corporativo Ejecutivo de Alto Nivel
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  /* Paleta Corporativa Ejecutiva */
  --bg-app: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-hover: #f8fafc;
  
  --border-color: #e2e8f0;
  --border-subtle: #edf2f7;
  --border-focus: #1e40af;
  
  --text-main: #0f172a;        /* Midnight slate */
  --text-secondary: #475569;   /* Slate */
  --text-muted: #94a3b8;       /* Light slate */
  --text-white: #ffffff;
  
  --brand-navy: #0f172a;
  --brand-blue: #1e40af;       /* Azul institucional metrología */
  --brand-blue-hover: #1d4ed8;
  --brand-blue-subtle: #eff6ff;
  
  --status-success-bg: #ecfdf5;
  --status-success-text: #047857;
  --status-success-border: #a7f3d0;
  
  --status-warning-bg: #fffbeb;
  --status-warning-text: #b45309;
  --status-warning-border: #fde68a;
  
  --status-danger-bg: #fef2f2;
  --status-danger-text: #b91c1c;
  --status-danger-border: #fecaca;
  
  --status-info-bg: #f0fdf4;
  --status-info-text: #15803d;
  --status-info-border: #bbf7d0;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --sidebar-w: 260px;
  --header-h: 68px;
}

/* Reset y Normalización */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-app);
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbars limpios para toda la app (oculta la barra gris tosca del navegador) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Layout Shell */
.app-shell {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* ==========================================================================
   SIDEBAR (CORREGIDO: Sin scrollbars cortados, alineación ejecutiva)
   ========================================================================== */
.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--sidebar-w);
  background-color: var(--bg-surface);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  z-index: 50;
  user-select: none;
}

/* Header del Sidebar con marca oficial */
.sidebar-header {
  height: var(--header-h);
  padding: 0 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: #ffffff;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25);
}

.brand-meta {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  line-height: 1.2;
}

.brand-name span {
  color: var(--brand-blue);
}

.brand-sub {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* Contenido del Sidebar con scroll suave sin romper interfaz */
.sidebar-content {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.sidebar-content:hover {
  scrollbar-color: #e2e8f0 transparent;
}

.sidebar-label {
  padding: 12px 10px 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease;
  position: relative;
}

.nav-item:hover {
  background-color: var(--bg-subtle);
  color: var(--text-main);
}

.nav-item.nav-active {
  background-color: var(--brand-blue-subtle);
  color: var(--brand-blue);
  font-weight: 700;
}

.nav-item.nav-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background-color: var(--brand-blue);
  border-radius: 0 4px 4px 0;
}

.nav-item svg {
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.15s ease;
}

.nav-item:hover svg,
.nav-item.nav-active svg {
  opacity: 1;
}

.nav-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background-color: #f1f5f9;
  color: #475569;
}

.nav-item.nav-active .nav-badge {
  background-color: #dbeafe;
  color: #1e40af;
}

/* Footer del Sidebar: Acreditaciones EMA & Usuario */
.sidebar-footer {
  padding: 14px 14px 16px;
  border-top: 1px solid var(--border-color);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accreditation-badge-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

.accreditation-badge-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.accreditation-badge-header svg {
  color: var(--brand-blue);
}

.accreditation-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.accreditation-desc {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.accreditation-pills {
  margin-top: 6px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.acc-pill {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: #e2e8f0;
  color: #334155;
}

.acc-pill.highlight {
  background: #dbeafe;
  color: #1e40af;
}

.user-profile-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: var(--radius-md);
  background: transparent;
  transition: background 0.15s ease;
  cursor: pointer;
}

.user-profile-row:hover {
  background: var(--bg-subtle);
}

.user-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--brand-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================================================
   MAIN LAYOUT & TOP HEADER
   ========================================================================== */
.main-layout {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bg-app);
}

.top-header {
  height: var(--header-h);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-title-wrap {
  display: flex;
  flex-direction: column;
}

.header-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.header-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Botones Corporativos */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
  box-shadow: 0 1px 2px rgba(30, 64, 175, 0.15);
}
.btn-primary:hover {
  background-color: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-secondary);
  border-color: var(--border-color);
}
.btn-secondary:hover {
  background-color: var(--bg-subtle);
  color: var(--text-main);
  border-color: #cbd5e1;
}

.btn-danger {
  background-color: var(--status-danger-bg);
  color: var(--status-danger-text);
  border-color: var(--status-danger-border);
}
.btn-danger:hover {
  background-color: #fee2e2;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 11.5px;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   PAGE CONTAINER & VIEWS
   ========================================================================== */
.page-container {
  padding: 24px 28px 40px;
  flex: 1;
}

.app-view {
  display: none;
  animation: fadeIn 0.15s ease-in-out;
}
.app-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Secciones ejecutivas */
.hero-executive {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.hero-executive-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
}

.hero-executive-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Tarjetas ejecutivas */
.card-executive {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.card-header-clean {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.card-title-clean {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
}

.card-subtitle-clean {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Banner de Automatización Semanal (Sobrio y Corporativo) */
.weekly-pipeline-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

.pipeline-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #93c5fd;
  margin-bottom: 4px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.pipeline-metrics-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.metric-pill-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 8px 16px;
  text-align: center;
  min-width: 90px;
}

.metric-pill-val {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.metric-pill-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

/* Grilla de Métricas Principales (Stats Grid) */
.stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-metric-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.stat-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.stat-icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-big-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-meta-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ==========================================================================
   TABLAS CORPORATIVAS DE ALTA DENSIDAD
   ========================================================================== */
.table-executive-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.table-executive {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.table-executive th {
  background-color: var(--bg-subtle);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.table-executive td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-main);
  vertical-align: middle;
}

.table-executive tr:last-child td {
  border-bottom: none;
}

.table-executive tr:hover td {
  background-color: var(--bg-hover);
}

/* Badges y Pastillas de Estado */
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.badge-status.nuevo { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.badge-status.contactar { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.badge-status.contactado { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; }
.badge-status.interesado { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.badge-status.cotizado { background: #f3e8ff; color: #6b21a8; border: 1px solid #d8b4fe; }
.badge-status.cliente { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.badge-status.nocontactar { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* Inferencia vs Verificado */
.tag-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tag-inferred {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   MÓDULO DE PROSPECCIÓN (Buscador y Tarjetas Territoriales)
   ========================================================================== */
.prospecting-toolbar {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.nlp-search-group {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  transition: border-color 0.2s ease;
}

.nlp-search-group:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.nlp-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-main);
}

.filter-row-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  outline: none;
  cursor: pointer;
}
.filter-select:focus {
  border-color: var(--brand-blue);
}

/* Tarjetas de Prospectos */
.prospects-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 16px;
}

.prospect-card-executive {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.prospect-card-executive:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.card-corp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.company-title-bold {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.3;
}

.company-sector-sub {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 2px;
}

.company-location-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.metrology-services-box {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin: 12px 0;
}

.metrology-box-title {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
  margin-bottom: 6px;
}

.metrology-pill-item {
  font-size: 11.5px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.metrology-pill-item:last-child {
  margin-bottom: 0;
}

.card-corp-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

/* Botón Google Maps Ejecutivo */
.btn-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #1e3a8a;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 5px 10px;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn-gmaps:hover {
  background: #dbeafe;
}

/* ==========================================================================
   COTIZADOR OFICIAL (MEMBRETADO FORMAL & IMPRESIÓN)
   ========================================================================== */
.quote-sheet {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}

.quote-letterhead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--brand-navy);
  margin-bottom: 24px;
}

.letterhead-brand h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-navy);
}

.letterhead-brand p {
  font-size: 11px;
  color: var(--text-secondary);
}

.letterhead-folio {
  text-align: right;
}

.folio-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-blue);
}

.quote-financials-table {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-top: 20px;
  border-collapse: collapse;
}

.quote-financials-table td {
  padding: 6px 12px;
  font-size: 13px;
}

.quote-financials-table .total-row td {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-navy);
  border-top: 2px solid var(--border-color);
}

/* Modales */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

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

.modal-body {
  padding: 24px;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  background: var(--bg-subtle);
}

/* Formularios */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease;
}

.form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Estilos de Impresión */
@media print {
  body { background: #ffffff; }
  .sidebar, .top-header, .header-actions, .btn-no-print { display: none !important; }
  .main-layout { margin-left: 0 !important; width: 100% !important; }
  .page-container { padding: 0 !important; }
  .quote-sheet { border: none !important; box-shadow: none !important; width: 100% !important; max-width: 100% !important; padding: 0 !important; }
}
