/* ASCONSEGT PSICOSSOCIAL - Tema Saúde/Wellness v2.0 */
:root {
  --primary: #10b981;
  --primary-light: #34d399;
  --primary-dark: #059669;
  --secondary: #06b6d4;
  --secondary-light: #22d3ee;
  --bg: #f0fdf4;
  --surface: #ffffff;
  --surface-2: #f8fafb;
  --surface-3: #f0f9ff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
  --shadow-hover: 0 12px 35px rgba(16, 185, 129, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --danger: #dc2626;
  --warning: #f59e0b;
  --success: #10b981;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 50%, #f5f3ff 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* HEADER */
header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  color: #ffffff;
  padding: 40px 20px 35px;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

header::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
}

header h1 {
  position: relative;
  margin: 0;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  z-index: 1;
}

header p {
  position: relative;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 28px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.topnav {
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  z-index: 1;
}

main {
  max-width: 1280px;
  margin: 32px auto;
  padding: 0 16px 40px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--border);
}

.card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.card-subtitle {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.section-title h2 {
  margin: 0;
}

.notice {
  border-left: 4px solid var(--secondary);
  background: linear-gradient(135deg, #ecfdf5 0%, #f0f9ff 100%);
  padding: 16px 18px;
  border-radius: 12px;
  color: var(--primary-dark);
  font-size: 14px;
  margin-bottom: 16px;
}

.ok {
  border-left: 4px solid var(--success);
  background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
  padding: 16px 18px;
  border-radius: 12px;
  color: #166534;
  font-weight: 500;
  margin: 16px 0;
}

.err {
  border-left: 4px solid var(--danger);
  background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
  padding: 16px 18px;
  border-radius: 12px;
  color: #991b1b;
  font-weight: 500;
  margin: 16px 0;
}

label {
  display: block;
  font-weight: 600;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-top: 8px;
  font-size: 15px;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
  background: var(--surface-3);
}

input[readonly] {
  background: var(--surface-2);
  color: var(--text-muted);
  cursor: not-allowed;
}

input[type='checkbox'], input[type='radio'] {
  width: auto;
  margin-right: 8px;
  accent-color: var(--primary);
  cursor: pointer;
}

button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  margin-top: 12px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

button:active, .btn:active {
  transform: translateY(0);
}

.btn2 {
  background: var(--surface);
  color: var(--primary-dark);
  border: 1.5px solid var(--border);
  box-shadow: none;
}

.btn2:hover {
  background: var(--surface-3);
  border-color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.btn-muted {
  background: var(--surface-2);
  color: var(--text-muted);
  box-shadow: none;
  border: 1px solid var(--border);
}

.btn-muted:hover {
  background: var(--surface-3);
  border-color: var(--primary-light);
  color: var(--primary-dark);
}

.btn-success {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

.btn-success:hover {
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
}

.btn-danger {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.btn-danger:hover {
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.btn-compact {
  padding: 8px 12px;
  margin-top: 0;
  font-size: 12px;
  border-radius: 10px;
}

.full {
  width: 100%;
  text-align: center;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.kpi {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 140px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kpi:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.kpi::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  right: -40px;
  bottom: -40px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
  z-index: 0;
}

.kpi-icon {
  font-size: 28px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.kpi strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.kpi .kpi-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--surface);
}

th {
  background: linear-gradient(135deg, #f8fafb 0%, #f0f9ff 100%);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border);
  padding: 14px 12px;
  text-align: left;
}

td {
  border-bottom: 1px solid var(--border-light);
  padding: 14px 12px;
  color: var(--text);
}

tbody tr {
  transition: all 0.2s ease;
}

tbody tr:hover {
  background: linear-gradient(90deg, transparent 0%, var(--surface-3) 50%, transparent 100%);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.excelente, .baixo {
  background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
  color: #047857;
  border: 1px solid #a7f3d0;
}

.moderado {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #b45309;
  border: 1px solid #fcd34d;
}

.alto {
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  color: #b45309;
  border: 1px solid #fb923c;
}

.critico {
  background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
  color: #991b1b;
  border: 1px solid #f87171;
}

.secao {
  position: sticky;
  top: 8px;
  z-index: 10;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
  font-weight: 700;
  font-size: 14px;
}

.questao {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin: 16px 0;
  background: var(--surface-3);
  transition: all 0.3s ease;
}

.questao:hover {
  border-color: var(--primary-light);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
  background: var(--surface);
}

.questao p {
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 15px;
}

.opcoes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.opcoes label {
  position: relative;
  font-weight: 700;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 10px 8px;
  margin: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
}

.opcoes label:hover {
  border-color: var(--primary-light);
  background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.opcoes input {
  width: auto;
  margin: 0 4px 0 0;
  accent-color: var(--primary);
}

.login-shell {
  max-width: 480px;
  margin: 60px auto;
}

.login-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: -60px auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.25);
  font-size: 36px;
}

.login-links {
  text-align: center;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
}

.login-links a {
  color: var(--primary-dark);
  font-weight: 600;
}

.progress-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.progress-value {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: width 0.3s ease;
}

.progress-label {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 600;
}

.small {
  font-size: 13px;
  color: var(--text-muted);
}

.footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin: 32px 0;
  font-weight: 500;
}

.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.box {
  background: var(--surface-2);
  border-left: 4px solid var(--primary);
  padding: 16px;
  border-radius: 12px;
  white-space: pre-wrap;
  font-size: 13px;
  color: var(--text);
  font-family: 'Monaco', 'Courier New', monospace;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-action {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, var(--surface-3) 0%, var(--surface) 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--primary-dark);
  transition: all 0.3s ease;
  text-align: center;
}

.quick-action:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
  background: var(--surface);
}

.quick-action > div {
  font-size: 32px;
  margin-bottom: 12px;
}

.quick-action strong {
  display: block;
  margin: 10px 0 4px;
  font-weight: 700;
}

.quick-action span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
}

.company-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
  gap: 12px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 460px);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0 14px;
  background: var(--surface);
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.search-box input {
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.search-box input:focus {
  box-shadow: none;
}

.company-table td {
  min-width: 130px;
}

.company-table td:nth-child(1) {
  min-width: 200px;
}

.company-table td:nth-child(3) {
  min-width: 300px;
}

.link-actions, .row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.password-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: end;
}

.password-row .btn {
  margin-top: 8px;
}

.option-panel {
  background: linear-gradient(135deg, var(--surface-3) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 12px;
}

.option-panel > label:first-child {
  margin-top: 0;
}

.check-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.check-option {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  margin: 0 !important;
  padding: 12px 14px;
  border-radius: 11px;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--surface);
  border: 1px solid var(--border);
}

.check-option:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #f0f9ff 100%);
  border-color: var(--primary-light);
}

.check-option input {
  width: auto;
  margin: 4px 0 0;
  accent-color: var(--primary);
  flex: 0 0 auto;
}

.check-option span {
  display: block;
}

.check-option small {
  display: block;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

.bar {
  height: 8px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  min-width: 150px;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 999px;
  transition: width 0.4s ease;
}

@media (max-width: 1024px) {
  .kpis, .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  main {
    padding: 0 12px 32px;
    margin-top: 20px;
  }
  .card {
    padding: 20px;
    border-radius: 14px;
  }
  .grid, .grid3, .kpis, .quick-actions {
    grid-template-columns: 1fr;
  }
  .opcoes {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  .opcoes label {
    padding: 8px 4px;
    font-size: 11px;
  }
  .topnav {
    grid-template-columns: 1fr 1fr;
  }
  .topnav .btn {
    margin-top: 0;
  }
  header {
    padding: 32px 16px 28px;
  }
  header h1 {
    font-size: 24px;
  }
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .brand {
    align-items: flex-start;
  }
  .brand-mark {
    width: 48px;
    height: 48px;
  }
  .table-wrap {
    overflow-x: auto;
  }
  .table-wrap table {
    min-width: 800px;
  }
  .company-toolbar {
    flex-direction: column;
  }
  .search-box {
    width: 100%;
  }
  .login-shell {
    margin: 40px auto;
  }
  .kpi {
    min-height: 120px;
    padding: 18px;
  }
  .kpi strong {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  main {
    padding: 0 10px 24px;
    margin-top: 16px;
  }
  .card {
    padding: 14px;
    margin-bottom: 16px;
  }
  .card h2 {
    font-size: 18px;
  }
  header {
    padding: 24px 12px 20px;
  }
  header h1 {
    font-size: 18px;
  }
  header p {
    font-size: 12px;
  }
  .brand {
    flex-direction: column;
    align-items: center;
  }
  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .opcoes {
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
  }
  .opcoes label {
    padding: 6px 2px;
    font-size: 10px;
    border-radius: 8px;
  }
  .grid {
    gap: 12px;
  }
  .form-actions {
    flex-direction: column;
  }
  .form-actions button, .form-actions .btn {
    width: 100%;
  }
  .kpi {
    padding: 14px;
    min-height: 100px;
  }
  .kpi strong {
    font-size: 24px;
  }
  .kpi-icon {
    font-size: 24px;
  }
  .quick-actions {
    gap: 8px;
  }
  .quick-action {
    padding: 12px;
  }
  .quick-action > div {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .quick-action strong {
    font-size: 12px;
  }
  .quick-action span {
    font-size: 11px;
  }
  .password-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .password-row .btn {
    width: 100%;
  }
  .link-actions, .row-actions {
    flex-direction: column;
  }
  .link-actions .btn, .row-actions button {
    width: 100%;
  }
  .login-shell {
    margin: 30px auto;
    padding: 0 12px;
  }
}

@media print {
  header, .topnav, .btn, button, .progress-wrap, .login-links {
    display: none !important;
  }
  body {
    background: #fff;
  }
  .card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  main {
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .table-wrap {
    overflow: visible;
  }
}/* Canal de Denúncias - classe específica */
.adminlink {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}
.adminlink:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* === RESTAURAÇÃO - Cards de acesso rápido e barras === */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.quick-action {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  color: #059669;
  transition: all 0.3s ease;
  text-align: center;
}
.quick-action:hover {
  transform: translateY(-4px);
  border-color: #34d399;
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.15);
  background: #ffffff;
}
.quick-action > div {
  font-size: 32px;
  margin-bottom: 12px;
}
.quick-action strong {
  display: block;
  margin: 10px 0 4px;
  font-weight: 700;
}
.quick-action span {
  font-size: 12px;
  color: #64748b;
  display: block;
}
.bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  min-width: 150px;
}
.fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #06b6d4 100%);
  border-radius: 999px;
  transition: width 0.4s ease;
}
@media (max-width: 1024px) {
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .quick-actions { grid-template-columns: 1fr; }
}

.quick-actions{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.quick-action{display:block;text-decoration:none;background:#f0f9ff;border:1.5px solid #e2e8f0;border-radius:16px;padding:20px;color:#059669;transition:all .3s ease;text-align:center}
.quick-action:hover{transform:translateY(-4px);border-color:#34d399;box-shadow:0 12px 35px rgba(16,185,129,.15);background:#fff}
.quick-action>div{font-size:32px;margin-bottom:12px}
.quick-action strong{display:block;margin:10px 0 4px;font-weight:700}
.quick-action span{font-size:12px;color:#64748b;display:block}
.bar{height:8px;background:#e2e8f0;border-radius:999px;overflow:hidden;min-width:150px}
.fill{height:100%;background:linear-gradient(90deg,#10b981,#06b6d4);border-radius:999px}
@media(max-width:1024px){.quick-actions{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){.quick-actions{grid-template-columns:1fr}}
