body {
    font-family: var(--font-sans);
    margin: 20px;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f5 100%);
    min-height: 100vh;
  }
  
  .card-cliente {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(124, 48, 252, 0.08);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
  }
  
  .card-cliente:hover {
    box-shadow: 0 4px 16px rgba(124, 48, 252, 0.15);
    transform: translateY(-2px);
  }
  
  .card-processo {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  
  .card-processo:hover {
    box-shadow: 0 6px 20px rgba(124, 48, 252, 0.12);
    transform: translateY(-3px);
    border-color: var(--color-primary);
  }
  
  .card-processo .mb-1 {
    font-size: 13px;
    color: #6c757d;
  }
  
  .botoes {
    background-color: var(--color-primary);
    border: none !important;
    border-radius: var(--border-radius);
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(124, 48, 252, 0.2);
    width: 100%;
  }
  
  .botoes:active {
    transform: scale(0.96);
    background-color: var(--color-primary-hover);
    color: white;
  }
  
  .botoes:hover {
    background-color: var(--color-primary-hover);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 48, 252, 0.3);
    transform: translateY(-2px);
  }
  
  .badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 12px;
  }
  
  .badge-primary {
    background-color: var(--color-primary);
    color: white;
  }
  
  h1 {
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  hr {
    border-color: rgba(124, 48, 252, 1);
    margin: 1.5rem 0;
  }

