@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --font-family: 'Outfit', sans-serif;
  
  /* Cores e Tons Pastel */
  --bg-gradient: linear-gradient(135deg, #f3f6f9 0%, #e8edf5 50%, #f0ebf7 100%);
  --primary: #5850ec; /* Indigo moderno */
  --primary-hover: #4b45d6;
  --primary-light: rgba(88, 80, 236, 0.08);
  
  --success: #10b981; /* Verde esmeralda */
  --success-light: rgba(16, 185, 129, 0.1);
  --warning: #f59e0b; /* Amarelo âmbar */
  --warning-light: rgba(245, 158, 11, 0.1);
  --danger: #ef4444; /* Vermelho rubi */
  --danger-light: rgba(239, 68, 68, 0.1);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
  --glass-blur: blur(16px);
  
  /* Textos */
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --text-light: #ffffff;
  
  /* Medidas */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --sidebar-width: 260px;
}

/* Reset Geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  background: var(--bg-gradient);
  min-height: 100vh;
  color: var(--text-dark);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Scrollbar Elegante */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Efeito Glassmorphism base */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
}

/* Botões Modernos */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(88, 80, 236, 0.2);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(88, 80, 236, 0.3);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  border: 1px solid var(--glass-border);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}
.btn-danger {
  background: var(--danger);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}
.btn-danger:hover {
  background: #dc2626;
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

/* Inputs Elegant */
.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(88, 80, 236, 0.1);
}

/* Layout SPA */
#app-layout {
  display: flex;
  min-height: 100vh;
  width: 100vw;
}

/* Sidebar Estilo Glass */
.sidebar {
  width: var(--sidebar-width);
  min-height: 100vh;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--glass-border);
  position: fixed;
  z-index: 100;
  flex-shrink: 0;
}

.sidebar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  gap: 12px;
}

.menu-item:hover:not(.disabled) {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateX(4px);
}

.menu-item.active {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(88, 80, 236, 0.15);
}

.menu-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sidebar-footer {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa 0%, #c084fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.user-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Área de Conteúdo */
.content-wrapper {
  margin-left: var(--sidebar-width);
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: calc(100vw - var(--sidebar-width));
}

/* Tela de Login */
.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  padding: 1.5rem;
  background: var(--bg-gradient);
}

.login-card {
  width: 100%;
  max-width: 420px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.login-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Alertas/Toasts */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  color: white;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 300px;
}

.toast-success {
  background: var(--success);
}

.toast-danger {
  background: var(--danger);
}

/* Tela de Planejamento */
.header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-title h1 {
  font-size: 1.75rem;
  font-weight: 700;
}

.page-title p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Filtros de Planejamento */
.filters-panel {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  align-items: flex-end;
}

/* Seção de Abas/Períodos */
.periods-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.periods-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 8px;
  overflow-x: auto;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-dark);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(88, 80, 236, 0.15);
}

/* Cartões de Disciplinas */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.offer-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.08);
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 10px;
}

.offer-code {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 8px;
  border-radius: 4px;
}

.offer-score {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.score-high {
  background: var(--success-light);
  color: var(--success);
}

.score-medium {
  background: var(--warning-light);
  color: var(--warning);
}

.score-low {
  background: var(--danger-light);
  color: var(--danger);
}

.offer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.offer-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.offer-detail-row {
  display: flex;
  justify-content: space-between;
}

.offer-detail-value {
  font-weight: 600;
  color: var(--text-dark);
}

.offer-factors-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.factor-dot {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.factor-dot.active-factor {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(88, 80, 236, 0.15);
  font-weight: 600;
}

.offer-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.offer-actions button {
  flex: 1;
  padding: 8px;
  font-size: 0.8rem;
  border-radius: 6px;
}

/* Modais Glassmorphism */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.modal-container {
  width: 100%;
  max-width: 550px;
  padding: 2rem;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-body {
  margin-bottom: 2rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Configuração de Pesos Lateral ou Flutuante */
.weights-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  z-index: 500;
  padding: 2.5rem 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.05);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.weights-drawer.active {
  right: 0;
}

.weights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.weights-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-grow: 1;
}

.slider-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
}

.slider-label {
  color: var(--text-dark);
}

.slider-value {
  color: var(--primary);
  font-weight: 700;
}

.slider-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.slider-input {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(0,0,0,0.05);
  outline: none;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(88, 80, 236, 0.3);
}

.slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Alertas de Conflito */
.conflict-badge {
  background: var(--danger-light);
  color: var(--danger);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.junction-badge {
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

/* Animações */
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsividade */
@media (max-width: 992px) {
  :root {
    --sidebar-width: 80px;
  }

  .sidebar-logo {
    justify-content: center;
    margin-bottom: 2rem;
  }
  .sidebar-logo span {
    display: none;
  }
  
  .menu-item {
    justify-content: center;
    padding: 12px;
  }
  
  .menu-item span {
    display: none;
  }
  
  .user-info {
    display: none;
  }
  
  .sidebar-footer {
    display: flex;
    justify-content: center;
  }
  
  .content-wrapper {
    margin-left: var(--sidebar-width);
    width: calc(100vw - var(--sidebar-width));
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  #app-layout {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100vw;
    min-height: auto;
    height: 60px;
    padding: 0 1rem;
    flex-direction: row;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
  }
  
  .sidebar-logo {
    margin-bottom: 0;
  }
  
  .sidebar-menu {
    flex-direction: row;
    gap: 4px;
    align-items: center;
  }
  
  .sidebar-footer {
    display: none;
  }
  
  .content-wrapper {
    margin-left: 0;
    width: 100vw;
    padding-top: 80px;
  }
  
  .weights-drawer {
    width: 100vw;
    right: -100vw;
  }
}

/* --- Estilos para Slots e Salas --- */
.slots-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  max-height: 250px;
  overflow-y: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  margin-top: 5px;
}

.slot-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  transition: var(--transition);
}

.slot-checkbox-label:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.slot-checkbox-label input {
  cursor: pointer;
}

/* Sub-tabs para a View de Salas */
.sub-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 8px;
}

.sub-tab-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.sub-tab-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text-dark);
}

.sub-tab-btn.active {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(88, 80, 236, 0.15);
}

/* Tabelas e Formulários para Salas */
.salas-table-container {
  overflow-x: auto;
  margin-top: 1rem;
}

.salas-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.salas-table th, .salas-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.salas-table th {
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.salas-table tr:hover td {
  background: rgba(255, 255, 255, 0.3);
}

/* CSV Import Area */
.csv-import-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.4);
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.csv-textarea {
  font-family: monospace;
  font-size: 0.85rem;
  min-height: 120px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.8);
}

/* Ensalamento visual grid */
.ensalamento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.ensalamento-card {
  padding: 1.25rem;
  border-left: 4px solid var(--primary);
}

.ensalamento-card.has-conflict {
  border-left-color: var(--danger);
  background: rgba(239, 68, 68, 0.03);
}

.ensalamento-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* --- Estilos para a Trilha de Planejamento --- */
.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 8px;
}

.step-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

/* Estilos de Status de Steps */
.step-item.active .step-number {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(88, 80, 236, 0.2);
}

.step-item.active .step-label {
  color: var(--primary);
  font-weight: 700;
}

.step-item.completed .step-number {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

.step-item.completed .step-label {
  color: var(--success);
}

.step-item.locked {
  opacity: 0.6;
}

.step-item.locked .step-number {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.05);
}

/* Linha de Conexão dos Passos */
.step-line-bg {
  position: absolute;
  top: 33px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.step-line-progress {
  position: absolute;
  top: 33px;
  left: 10%;
  height: 2px;
  background: var(--primary);
  z-index: 1;
  transition: width 0.4s ease;
  width: 0%;
}

/* Ícone de Ajuda Contextual */
.help-icon-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  transition: var(--transition);
  margin-left: 8px;
  vertical-align: middle;
}

.help-icon-btn:hover {
  color: var(--primary);
  background: var(--primary-light);
  transform: scale(1.15);
}

/* Drawer Lateral de Ajuda */
.help-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  z-index: 1500;
  padding: 2.5rem 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.08);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.help-drawer.active {
  right: 0;
}

.help-drawer h2, .help-drawer h3 {
  font-weight: 700;
  color: var(--text-dark);
}

.help-drawer h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--primary);
  padding-left: 8px;
}

.help-drawer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.help-drawer ul {
  padding-left: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.help-drawer li {
  margin-bottom: 0.5rem;
}

/* Footer de Navegação da Trilha */
.wizard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.wizard-footer .btn {
  min-width: 140px;
  height: 46px;
}


