/* UI Kit base (nao sobrescreve classes legadas de Bootstrap) */

.wk-page {
  background: #ffffff;
  color: var(--wk-color-text);
}

.navbar {
  margin-bottom: 0;
}

.wk-layout-content {
  padding-top: 12px;
}

.wk-section {
  margin-bottom: var(--wk-space-5);
}

.wk-section-title {
  margin: 0 0 var(--wk-space-3);
  font-size: 18px;
  font-weight: 700;
  color: var(--wk-color-text);
}

.wk-card {
  background: #ffffff;
  border: 1px solid var(--wk-color-border);
  border-radius: var(--wk-radius-md);
  box-shadow: var(--wk-shadow-sm);
  padding: var(--wk-space-4);
}

.wk-card-title {
  margin: 0 0 var(--wk-space-3);
  font-size: 16px;
  font-weight: 700;
}

.wk-toolbar {
  display: flex;
  gap: var(--wk-space-2);
  flex-wrap: wrap;
  margin-bottom: var(--wk-space-3);
}

.wk-table-wrap {
  background: var(--wk-color-surface);
  border: 1px solid var(--wk-color-border);
  border-radius: var(--wk-radius-sm);
  padding: var(--wk-space-2);
}

.wk-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.wk-badge-primary {
  background: #e8f2fb;
  color: var(--wk-color-primary);
}

.wk-badge-success {
  background: #e8f6ed;
  color: var(--wk-color-success);
}

.wk-badge-warning {
  background: #fff3e3;
  color: var(--wk-color-warning);
}

.wk-badge-danger {
  background: #fde9e9;
  color: var(--wk-color-danger);
}

.wk-text-muted {
  color: var(--wk-color-muted);
}

.wk-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wk-space-4);
}

@media (max-width: 991px) {
  .wk-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Home Index (piloto de migracao) */

/* Padrao global: fundo azul claro somente no body do card principal */
.wk-detail-view > .panel.panel-default > .panel-body {
  background: #f4f8ff;
}

.wk-detail-view > .panel.panel-default > .panel-heading,
.wk-detail-view .wk-card,
.wk-detail-view .wk-subcard {
  background: #ffffff;
}

.wk-home-index .hero {
  background-color: #2ba6cb;
  padding: 0 90px;
}

.wk-home-index .blink {
  animation: wk-blink 1s infinite;
}

@keyframes wk-blink {
  0% { opacity: 1; }
  75% { opacity: 1; }
  76% { opacity: 0; }
  100% { opacity: 0; }
}

.wk-home-index .home-modern-panels {
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
}

.wk-home-index .home-side-callout {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.05);
}

.wk-home-index .home-side-callout + .home-side-callout {
  margin-top: 12px;
}

.wk-home-index .home-modern-calendar {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 8px;
}

.wk-home-index .home-calendar-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.wk-home-index .home-calendar-legend-title {
  margin-right: 2px;
}

.wk-home-index .home-calendar-legend-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #334155;
  border: 1px solid #dbe3ef;
  padding: 4px 10px;
}

.wk-home-index .home-calendar-legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 10px;
}

.wk-home-calendar-modal-dialog,
.wk-agenda-atividade-modal-dialog {
  width: min(920px, calc(100% - 30px));
}

.wk-home-calendar-modal,
.wk-agenda-atividade-modal {
  border: 1px solid #dbe5f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
}

.wk-home-calendar-modal .modal-header,
.wk-agenda-atividade-modal .modal-header {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border-bottom: 1px solid #dbe5f0;
  padding: 18px 22px 16px;
}

.wk-home-calendar-modal .modal-body,
.wk-agenda-atividade-modal .modal-body {
  background: #f7faff;
  padding: 18px 22px;
}

.wk-home-calendar-modal .modal-footer,
.wk-agenda-atividade-modal .modal-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 14px 22px 18px;
}

.wk-home-calendar-modal-heading,
.wk-agenda-atividade-modal-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-right: 28px;
}

.wk-home-calendar-modal-icon,
.wk-agenda-atividade-modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 18px;
  flex: 0 0 40px;
  padding-top: 11px;
}

.wk-home-calendar-modal .modal-title,
.wk-agenda-atividade-modal .modal-title {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
}

.wk-home-calendar-modal-subtitle,
.wk-agenda-atividade-modal-subtitle {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.wk-home-calendar-modal-section-title,
.wk-agenda-atividade-modal-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
}

.wk-home-calendar-modal-section-title .glyphicon,
.wk-agenda-atividade-modal-section-title .glyphicon {
  color: #2563eb;
  font-size: 15px;
  top: 0;
  position: relative;
}

.wk-home-calendar-modal-helper + .wk-home-calendar-form-grid,
.wk-agenda-atividade-modal-helper + .wk-agenda-atividade-form-grid {
  padding-top: 4px;
  margin-bottom: 8px;
}

.wk-home-calendar-modal-helper,
.wk-agenda-atividade-modal-helper {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.wk-home-calendar-form-grid,
.wk-agenda-atividade-form-grid {
  margin-left: -8px;
  margin-right: -8px;
}

.wk-home-calendar-field,
.wk-agenda-atividade-field {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 14px;
}

.wk-home-calendar-field label,
.wk-agenda-atividade-field label {
  display: block;
  margin: 0 0 6px;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.wk-home-calendar-field .form-control,
.wk-agenda-atividade-field .form-control {
  height: 42px;
  border-color: #d6deea;
  box-shadow: none;
}

.wk-home-calendar-field textarea.form-control,
.wk-agenda-atividade-field textarea.form-control {
  height: auto;
  min-height: 108px;
  resize: vertical;
  padding-top: 10px;
  padding-bottom: 10px;
}

.wk-home-calendar-field .form-control:focus,
.wk-agenda-atividade-field .form-control:focus {
  border-color: #7aa7e7;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.wk-home-calendar-modal-footer,
.wk-agenda-atividade-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.wk-home-calendar-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wk-home-calendar-detail-item,
.wk-home-calendar-detail-note-block {
  border: 1px solid #dbe5f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 14px;
}

.wk-home-calendar-detail-note-block {
  margin-top: 12px;
}

.wk-home-calendar-detail-label {
  display: block;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wk-home-calendar-detail-value {
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.wk-home-calendar-detail-note-value {
  color: #334155;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-line;
}

.wk-home-index .home-panel-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wk-home-index .home-modern-panels .list-group {
  margin-bottom: 0;
}

.wk-home-index .home-modern-panels .list-group > a.list-group-item[data-toggle="collapse"] {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #111827;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05);
  margin-bottom: 8px;
}

.wk-home-index .home-modern-panels .list-group > a.list-group-item.list-group-item-danger[data-toggle="collapse"] {
  border-left: 4px solid #d9534f;
}

.wk-home-index .home-modern-panels .list-group > a.list-group-item.list-group-item-warning[data-toggle="collapse"] {
  border-left: 4px solid #f0ad4e;
}

.wk-home-index .home-modern-panels .list-group > a.list-group-item.list-group-item-info[data-toggle="collapse"] {
  border-left: 4px solid #5bc0de;
}

.wk-home-index .home-modern-panels .list-group > .collapse {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  margin-top: -2px;
  margin-bottom: 12px;
  overflow: hidden;
}

.wk-home-index .home-modern-panels .list-group > .collapse > .list-group,
.wk-home-index .home-modern-panels .list-group > .collapse .list-group {
  margin-bottom: 0;
}

.wk-home-index .home-modern-panels .list-group .collapse .list-group-item {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #dbe5f0;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #fff;
}

.wk-home-index .home-modern-panels .list-group .collapse .list-group-item:nth-child(odd) {
  background: #edf4ff;
}

.wk-home-index .home-modern-panels .list-group .collapse .list-group-item:nth-child(even) {
  background: #ffffff;
}

.wk-home-index .home-modern-panels .list-group .collapse .list-group-item:last-child {
  border-bottom: 0;
}

.wk-home-index .home-modern-panels .list-group .collapse .list-group-item:hover {
  background: #e2ecfb;
}

.wk-home-index .home-modern-panels .list-group .label {
  border-radius: 999px;
  padding: 5px 9px;
  font-weight: 700;
}

.wk-home-index .home-modern-panels .btn.btn-xs.btn-primary {
  border-radius: 999px;
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
}

.wk-home-index .home-modern-panels .glyphicon {
  margin-right: 4px;
}

.wk-home-index .home-modern-panels + .home-modern-panels {
  margin-top: 12px;
}

.wk-home-index .home-modern-panels .licenca-mov-item {
  line-height: 1.25;
}

.wk-home-index .home-modern-panels .licenca-mov-titulo {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.wk-home-index .home-modern-panels .licenca-mov-meta {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.wk-home-index .home-modern-panels .licenca-num-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  background: #e2e8f0;
  color: #334155;
  vertical-align: middle;
}

.wk-home-index .home-modern-panels .licenca-num-badge-success {
  background: #dcfce7;
  color: #166534;
}

.wk-home-index .home-modern-panels .licenca-num-badge-danger {
  background: #fee2e2;
  color: #991b1b;
}

.wk-home-index .home-modern-panels .licenca-num-badge-muted {
  background: #e2e8f0;
  color: #475569;
}

.wk-shared-calendar {
  width: 100%;
}

.wk-shared-calendar-table-wrap {
  width: 100%;
}

.wk-shared-calendar .home-calendar-nav {
  border-bottom: 0;
  margin-bottom: 0;
}

.wk-shared-calendar .home-calendar-nav > li {
  float: none;
  display: inline-block;
}

.wk-shared-calendar .home-calendar-nav > li > .btn {
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #334155;
  padding: 4px 10px;
  font-size: 12px;
}

.wk-shared-calendar .home-calendar-nav > li > .btn:hover,
.wk-shared-calendar .home-calendar-nav > li > .btn:focus {
  background: #eef4ff;
}

.wk-btn-calendar-action {
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #334155;
}

.wk-btn-calendar-action:hover,
.wk-btn-calendar-action:focus {
  background: #eef4ff;
  color: #1f2937;
}

.wk-btn-calendar-action-sm {
  padding: 4px 10px;
  font-size: 12px;
}

.wk-btn-danger-action {
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #fecaca;
  background: #fee2e2;
  color: #991b1b;
}

.wk-btn-danger-action:hover,
.wk-btn-danger-action:focus {
  background: #fecaca;
  color: #7f1d1d;
}

.wk-btn-calendar-action-warning {
  border-color: #f6d39a;
  background: #fff4de;
  color: #8a5a00;
}

.wk-btn-calendar-action-warning:hover,
.wk-btn-calendar-action-warning:focus {
  background: #ffe8b8;
  color: #6f4700;
}

.wk-btn-calendar-action-success {
  border-color: #b7e3c5;
  background: #e9f7ef;
  color: #216e39;
}

.wk-btn-calendar-action-success:hover,
.wk-btn-calendar-action-success:focus {
  background: #d6efdf;
  color: #18552c;
}

.wk-home-index .home-modern-calendar > .home-calendar-nav {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0;
}

.wk-home-index .home-modern-calendar > .home-calendar-sync-financeiro {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  margin: 0;
}

.wk-shared-calendar .calendar-month-header {
  position: relative;
  text-align: center !important;
}

.wk-shared-calendar .calendar-month-header .home-calendar-nav {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 2;
}

.wk-shared-calendar .calendar-month-header .home-calendar-sync-financeiro {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 2;
}

.wk-shared-calendar .calendar-month-label {
  display: block;
  text-align: center;
  width: 100%;
}

.wk-shared-calendar-table-wrap,
.wk-home-index .home-calendar-table-wrap,
.wk-leads-calendar-page .wk-leads-calendar-table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.wk-home-index .home-calendar-detail-card {
  margin-top: 12px;
}

.wk-home-index .home-calendar-detail-event {
  color: #0f172a;
  font-weight: 600;
}

.wk-home-index .home-calendar-detail-note {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-line;
}

.wk-agenda-usuario-page .panel-heading {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border-bottom: 1px solid #dbe5f0;
  padding: 18px 22px 16px;
}

.wk-agenda-usuario-page .panel-body {
  padding: 18px 22px 22px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wk-agenda-usuario-page .wk-agenda-usuario-heading-badge {
  margin-bottom: 8px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-heading-copy,
.wk-agenda-usuario-page .wk-agenda-usuario-section-copy {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  max-width: 760px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-calendar-card {
  margin-bottom: 16px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-calendar-intro,
.wk-agenda-usuario-page .wk-agenda-usuario-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wk-agenda-usuario-page .wk-agenda-usuario-calendar-intro {
  margin-bottom: 12px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-calendar-metrics {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wk-agenda-usuario-page .home-calendar-nav {
  border-bottom: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wk-agenda-usuario-page .home-calendar-nav > li {
  float: none;
  display: block;
  margin: 0;
}

.wk-agenda-usuario-page .home-calendar-nav > li > .btn {
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #334155;
  padding: 6px 12px;
  font-size: 12px;
}

.wk-agenda-usuario-page .home-calendar-nav > li > .btn:hover,
.wk-agenda-usuario-page .home-calendar-nav > li > .btn:focus {
  background: #eef4ff;
}

.wk-agenda-usuario-page .wk-agenda-usuario-inline-alert {
  margin-bottom: 12px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-detail-card {
  margin-top: 12px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-detail-head {
  margin-bottom: 12px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-detail-head h4 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
}

.wk-agenda-usuario-page .wk-agenda-usuario-table {
  margin-bottom: 0;
}

.wk-agenda-usuario-page .wk-agenda-usuario-table > thead > tr > th {
  border-top: 0;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-table > tbody > tr > td {
  vertical-align: top;
}

.wk-agenda-usuario-page .wk-agenda-usuario-table > tbody > tr.warning > td {
  background: #fff9e8;
}

.wk-agenda-usuario-page .wk-event-title {
  color: #0f172a;
  font-weight: 600;
}

.wk-agenda-usuario-page .wk-event-meta {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 4px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-link-group,
.wk-agenda-usuario-page .wk-agenda-usuario-status-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-status-stack {
  flex-direction: column;
  align-items: flex-start;
}

.wk-agenda-usuario-page .wk-agenda-usuario-status-badge {
  border: 1px solid #dbe3ef;
  background: #ffffff;
  color: #334155;
}

.wk-agenda-usuario-page .wk-agenda-usuario-status-badge-dark {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}

.wk-agenda-usuario-page .wk-checkbox-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 10px 12px;
  border: 1px solid #dbe5f0;
  border-radius: 12px;
  background: #ffffff;
}

.wk-agenda-usuario-page .wk-checkbox-list .checkbox {
  margin-top: 0;
  margin-bottom: 10px;
}

.wk-agenda-usuario-page .wk-checkbox-list .checkbox:last-child {
  margin-bottom: 0;
}

.wk-agenda-usuario-page .wk-checkbox-list .checkbox label {
  display: block;
  font-weight: 400;
  color: #0f172a;
}

.wk-agenda-usuario-page .wk-checkbox-email {
  display: block;
  color: #6b7280;
  font-size: 12px;
  margin-top: 2px;
}

.wk-agenda-usuario-page .wk-help-text {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.5;
}

.wk-agenda-usuario-page .wk-agenda-usuario-google-toggle {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-top: 30px;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}

.wk-agenda-usuario-page .wk-agenda-usuario-google-toggle input {
  margin-top: 0;
}

.wk-home-index .home-evento-dia-item {
  white-space: normal;
}

.wk-home-index .home-evento-dia-titulo {
  display: block;
  color: #0f172a;
  font-weight: 600;
}

.wk-home-index .home-evento-dia-observacao {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-line;
}

.wk-leads-calendar-page .panel-heading h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.wk-leads-calendar-page .wk-leads-calendar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wk-leads-calendar-page .wk-leads-propostas-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: wk-leads-propostas-pulse 1.8s ease-in-out infinite;
}

.wk-leads-calendar-page .wk-leads-propostas-toggle.ativo {
  background: #334155;
  color: #fff;
  border-color: #334155;
  animation: none;
}

.wk-leads-calendar-page .wk-leads-propostas-toggle.ativo .badge {
  background: #fff;
  color: #334155;
}

@keyframes wk-leads-propostas-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(47, 111, 192, 0);
    border-color: #cbd5e1;
  }

  50% {
    box-shadow: 0 0 0 6px rgba(47, 111, 192, 0.18);
    border-color: #2f6fc0;
  }
}

.wk-leads-calendar-page .calendario-container {
  margin-top: 0;
}

.wk-leads-calendar-page .wk-leads-calendar-shell {
  padding-right: 8px;
}

.wk-leads-calendar-page .wk-leads-calendar-body {
  margin-top: 10px;
}

.wk-leads-calendar-page .wk-leads-side-card {
  margin-bottom: 0;
}

.wk-leads-calendar-page .wk-leads-side-scroll {
  max-height: 900px;
  overflow-y: auto;
}

.wk-leads-calendar-page .wk-leads-summary-card,
.wk-leads-calendar-page .wk-leads-actions-card,
.wk-leads-calendar-page .wk-leads-content-card,
.wk-leads-calendar-page .wk-leads-propostas-list-card {
  margin-bottom: 12px;
}

.wk-leads-calendar-page .wk-leads-summary-card-ready {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-box {
  overflow: hidden;
  border: 1px solid #b7e3c5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 13px rgba(33, 110, 57, .1);
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: #216e39;
  color: #fff;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-head > .glyphicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .17);
  font-size: 16px;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-head strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-head div > span {
  display: block;
  margin-top: 2px;
  color: #d6efdf;
  font-size: 11px;
  line-height: 1.2;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-body {
  padding: 12px;
  background: #f8fbff;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-label,
.wk-leads-calendar-page .wk-leads-cliente-proposta-section label {
  display: block;
  margin-bottom: 5px;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-copy,
.wk-leads-calendar-page .wk-leads-cliente-oficial-drive {
  min-height: 42px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #f2c879;
  background: #fff3dc;
  color: #8a5a00;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-copy:hover,
.wk-leads-calendar-page .wk-leads-cliente-oficial-copy:focus {
  border-color: #e6b653;
  background: #ffe7b7;
  color: #704700;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-drive {
  border: 1px solid #c4b5fd;
  background: #f2edff;
  color: #5b21b6;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-drive:hover,
.wk-leads-calendar-page .wk-leads-cliente-oficial-drive:focus {
  border-color: #a78bfa;
  background: #e7ddff;
  color: #4c1d95;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-copy.disabled {
  border-color: #dbe3ef;
  background: #e8edf4;
  color: #94a3b8;
  opacity: 1;
}

.wk-leads-calendar-page .wk-leads-cliente-copy-content {
  display: block;
  line-height: 1.25;
}

.wk-leads-calendar-page .wk-leads-cliente-copy-content > span,
.wk-leads-calendar-page .wk-leads-cliente-copy-content small {
  display: block;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-copy small {
  color: #a66c00;
  font-size: 11px;
  font-weight: 500;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-copy.disabled small {
  color: #94a3b8;
}

.wk-leads-calendar-page .wk-leads-cliente-oficial-divider {
  margin: 12px 0;
  border-top: 1px solid #d8e2ef;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-section h5 {
  margin: 0 0 10px;
  color: #245ea8;
  font-size: 13px;
  font-weight: 700;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-section h5 .glyphicon {
  margin-right: 4px;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-select {
  margin-bottom: 10px;
  border-color: #bfd7fb;
  background: #fff;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-download,
.wk-leads-calendar-page .wk-leads-cliente-proposta-aceite {
  min-height: 42px;
  margin-top: 8px;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-download {
  border: 1px solid #b7e3c5;
  background: #e9f7ef;
  color: #216e39;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-download:hover,
.wk-leads-calendar-page .wk-leads-cliente-proposta-download:focus {
  border-color: #86cf9f;
  background: #d6efdf;
  color: #18552c;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-aceite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #245ea8;
  background: #245ea8;
  color: #fff;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-aceite:hover,
.wk-leads-calendar-page .wk-leads-cliente-proposta-aceite:focus {
  border-color: #184d90;
  background: #184d90;
  color: #fff;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-aceite small {
  display: block;
  color: #dbeafe;
  font-size: 11px;
  font-weight: 500;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-download.disabled,
.wk-leads-calendar-page .wk-leads-cliente-proposta-aceite.disabled {
  border-color: #dbe3ef;
  background: #e8edf4;
  color: #94a3b8;
  opacity: 1;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-aceite.disabled small {
  color: #94a3b8;
}

.wk-leads-calendar-page .wk-leads-cliente-proposta-note {
  margin-top: 9px;
  color: #5f6b7a;
  font-size: 12px;
  line-height: 1.4;
}

.wk-leads-calendar-page .wk-leads-proposta-detail {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.wk-leads-calendar-page .wk-leads-proposta-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.wk-leads-calendar-page .wk-leads-proposta-head h3 {
  margin: 8px 0 0;
  color: #0f172a;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.wk-leads-calendar-page .wk-leads-proposta-field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}

.wk-leads-calendar-page .wk-leads-proposta-field-head label {
  margin-bottom: 0;
}

.wk-leads-calendar-page .wk-leads-proposta-versoes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.wk-leads-calendar-page .wk-leads-proposta-versao-btn {
  min-width: 34px;
  height: 28px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #ffffff;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.wk-leads-calendar-page .wk-leads-proposta-versao-btn:hover,
.wk-leads-calendar-page .wk-leads-proposta-versao-btn:focus {
  border-color: #2563eb;
  color: #1d4ed8;
  outline: none;
}

.wk-leads-calendar-page .wk-leads-proposta-versao-btn.ativo {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
}

.wk-leads-calendar-page .wk-leads-proposta-feedback {
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid #facc15;
  border-radius: 6px;
  background: #fffbeb;
  color: #713f12;
}

.wk-leads-calendar-page .wk-leads-proposta-feedback-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.wk-leads-calendar-page .wk-leads-proposta-feedback-text {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.wk-leads-calendar-page .wk-leads-proposta-feedback-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #92400e;
}

.wk-leads-calendar-page .wk-leads-proposta-date {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef2f7;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.wk-leads-calendar-page .wk-leads-proposta-itens {
  margin-top: 12px;
}

.wk-leads-calendar-page .wk-leads-proposta-readonly {
  min-height: 88px;
  padding: 10px 12px;
  border: 1px solid #dbe3ef;
  border-radius: 6px;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-line;
}

.wk-leads-calendar-page .wk-leads-proposta-email-body {
  min-height: 430px;
  resize: vertical;
  line-height: 1.5;
}

.wk-leads-calendar-page .wk-leads-proposta-itens-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.wk-leads-calendar-page .wk-leads-proposta-itens-head h4 {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
}

.wk-leads-calendar-page .wk-leads-proposta-table {
  margin-bottom: 0;
}

.wk-leads-calendar-page .wk-leads-proposta-table th {
  color: #64748b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-top: 0;
}

.wk-leads-calendar-page .wk-leads-proposta-table td {
  vertical-align: middle;
}

.wk-leads-calendar-page .wk-leads-proposta-qtd {
  width: 86px;
}

.wk-leads-calendar-page .wk-leads-proposta-valor,
.wk-leads-calendar-page .wk-leads-proposta-subtotal {
  width: 130px;
}

.wk-leads-calendar-page .proposta-item-subtotal {
  color: #0f172a;
  font-weight: 700;
  white-space: nowrap;
}

.wk-leads-calendar-page .wk-leads-proposta-item-descricao {
  display: block;
  color: #334155;
  font-size: 13px;
  line-height: 1.35;
}

.wk-leads-calendar-page .wk-leads-proposta-numero {
  color: #334155;
  font-weight: 600;
  white-space: nowrap;
}

.wk-leads-calendar-page .wk-leads-proposta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.wk-leads-calendar-page .wk-leads-propostas-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 820px;
  overflow-y: auto;
}

.wk-leads-calendar-page .wk-leads-proposta-list-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #fff;
  color: #0f172a;
  text-align: left;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wk-leads-calendar-page .wk-leads-proposta-list-item:hover,
.wk-leads-calendar-page .wk-leads-proposta-list-item:focus {
  background: #f8fbff;
  border-color: #94a3b8;
  outline: 0;
}

.wk-leads-calendar-page .wk-leads-proposta-list-item.ativo {
  border-color: #2f6fc0;
  background: #edf5ff;
  box-shadow: inset 4px 0 0 #2f6fc0;
}

.wk-leads-calendar-page .wk-leads-proposta-list-item strong {
  min-width: 0;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.3;
}

.wk-leads-calendar-page .wk-leads-proposta-list-item span {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.wk-leads-calendar-page .wk-leads-proposta-empty {
  padding: 12px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  text-align: center;
}

.wk-leads-calendar-page .wk-leads-last-contact,
.wk-atendimento-raiox-page .wk-leads-last-contact {
  position: relative;
  margin-top: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
  padding: 14px 14px 14px 18px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.wk-leads-calendar-page .wk-leads-last-contact:before,
.wk-atendimento-raiox-page .wk-leads-last-contact:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: #94a3b8;
}

.wk-leads-calendar-page .wk-leads-last-contact-head,
.wk-atendimento-raiox-page .wk-leads-last-contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.wk-leads-calendar-page .wk-leads-last-contact-label,
.wk-atendimento-raiox-page .wk-leads-last-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.wk-leads-calendar-page .wk-leads-last-contact-status,
.wk-atendimento-raiox-page .wk-leads-last-contact-status {
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(148, 163, 184, 0.14);
}

.wk-leads-calendar-page .wk-leads-last-contact-main,
.wk-atendimento-raiox-page .wk-leads-last-contact-main {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.wk-leads-calendar-page .wk-leads-last-contact-message,
.wk-atendimento-raiox-page .wk-leads-last-contact-message {
  font-size: 14px;
  line-height: 1.5;
  color: #1e293b;
  margin-bottom: 8px;
}

.wk-leads-calendar-page .wk-leads-last-contact-meta,
.wk-leads-calendar-page .wk-leads-last-contact-motivo,
.wk-atendimento-raiox-page .wk-leads-last-contact-meta,
.wk-atendimento-raiox-page .wk-leads-last-contact-motivo {
  font-size: 13px;
  color: #334155;
  line-height: 1.45;
}

.wk-leads-calendar-page .wk-leads-last-contact-motivo,
.wk-atendimento-raiox-page .wk-leads-last-contact-motivo {
  margin-top: 8px;
  font-weight: 600;
}

.wk-leads-calendar-page .wk-leads-last-contact-success,
.wk-atendimento-raiox-page .wk-leads-last-contact-success {
  background: linear-gradient(180deg, #ecfdf5 0%, #dff7ea 100%);
  border-color: #86efac;
}

.wk-leads-calendar-page .wk-leads-last-contact-success:before,
.wk-atendimento-raiox-page .wk-leads-last-contact-success:before {
  background: #16a34a;
}

.wk-leads-calendar-page .wk-leads-last-contact-success .wk-leads-last-contact-status,
.wk-atendimento-raiox-page .wk-leads-last-contact-success .wk-leads-last-contact-status {
  color: #166534;
  background: rgba(22, 163, 74, 0.14);
}

.wk-leads-calendar-page .wk-leads-last-contact-danger,
.wk-atendimento-raiox-page .wk-leads-last-contact-danger {
  background: linear-gradient(180deg, #fef2f2 0%, #fde5e5 100%);
  border-color: #fca5a5;
}

.wk-leads-calendar-page .wk-leads-last-contact-danger:before,
.wk-atendimento-raiox-page .wk-leads-last-contact-danger:before {
  background: #dc2626;
}

.wk-leads-calendar-page .wk-leads-last-contact-danger .wk-leads-last-contact-status,
.wk-atendimento-raiox-page .wk-leads-last-contact-danger .wk-leads-last-contact-status {
  color: #b91c1c;
  background: rgba(220, 38, 38, 0.12);
}

.wk-leads-calendar-page .wk-leads-last-contact-muted,
.wk-atendimento-raiox-page .wk-leads-last-contact-muted {
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-color: #dbe3ef;
}

.wk-leads-calendar-page .wk-leads-last-contact-muted .wk-leads-last-contact-status,
.wk-atendimento-raiox-page .wk-leads-last-contact-muted .wk-leads-last-contact-status {
  color: #64748b;
}

.wk-leads-calendar-page .wk-leads-visit-status {
  position: relative;
  margin: 12px 0;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px 12px 12px 16px;
  overflow: hidden;
}

.wk-leads-calendar-page .wk-leads-visit-status:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #94a3b8;
}

.wk-leads-calendar-page .wk-leads-visit-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.wk-leads-calendar-page .wk-leads-visit-status-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
}

.wk-leads-calendar-page .wk-leads-visit-status-badge {
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(148, 163, 184, 0.14);
}

.wk-leads-calendar-page .wk-leads-visit-status-main {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.wk-leads-calendar-page .wk-leads-visit-status-meta,
.wk-leads-calendar-page .wk-leads-visit-status-message {
  font-size: 13px;
  color: #334155;
  line-height: 1.45;
}

.wk-leads-calendar-page .wk-leads-visit-status-message {
  margin-top: 6px;
  font-weight: 600;
}

.wk-leads-calendar-page .wk-leads-visit-status-success {
  background: #ecfdf5;
  border-color: #86efac;
}

.wk-leads-calendar-page .wk-leads-visit-status-success:before {
  background: #16a34a;
}

.wk-leads-calendar-page .wk-leads-visit-status-success .wk-leads-visit-status-badge {
  color: #166534;
  background: rgba(22, 163, 74, 0.14);
}

.wk-leads-calendar-page .wk-leads-visit-status-danger {
  background: #fef2f2;
  border-color: #fca5a5;
}

.wk-leads-calendar-page .wk-leads-visit-status-danger:before {
  background: #991b1b;
}

.wk-leads-calendar-page .wk-leads-visit-status-danger .wk-leads-visit-status-badge {
  color: #991b1b;
  background: rgba(153, 27, 27, 0.12);
}


.wk-leads-calendar-page .wk-leads-card-footer {
  margin-top: 10px;
  font-size: 12px;
  color: #64748b;
}

.wk-leads-calendar-page .wk-leads-modal-card,
.wk-leads-calendar-page .wk-leads-log-item {
  margin-bottom: 12px;
}

.wk-leads-calendar-page .calendario-titulo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.wk-leads-calendar-page .calendario-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.wk-leads-calendar-page .calendario-envio-topo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wk-leads-calendar-page .toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: 600;
}

.wk-leads-calendar-page .toggle-label input {
  margin: 0;
}

.wk-leads-calendar-page .wk-leads-calendar-table-wrap {
  width: 100%;
}

.wk-shared-calendar .calendar,
.wk-home-index .calendar,
.wk-leads-calendar-page .calendar {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.wk-shared-calendar .calendar th,
.wk-shared-calendar .calendar td,
.wk-leads-calendar-page .calendario-grid th,
.wk-leads-calendar-page .calendario-grid td {
  border-right: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
  font-size: 12px;
}

.wk-shared-calendar .calendar th:last-child,
.wk-shared-calendar .calendar td:last-child,
.wk-leads-calendar-page .calendario-grid th:last-child,
.wk-leads-calendar-page .calendario-grid td:last-child {
  border-right: 0;
}

.wk-shared-calendar .calendar tbody tr:last-child td,
.wk-leads-calendar-page .calendario-grid tbody tr:last-child td {
  border-bottom: 0;
}

.wk-shared-calendar .calendar thead tr:first-child th[colspan="7"],
.wk-home-index .calendar tbody tr:first-child th,
.wk-leads-calendar-page .calendar thead tr:first-child th[colspan="7"] {
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #f8fafc;
}

.wk-shared-calendar .day_header,
.wk-home-index .day_header,
.wk-leads-calendar-page .day_header {
  background: #ffffff;
  text-align: center;
  font-weight: 700;
  color: #64748b;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 10px 6px;
  border-bottom: 1px solid #e5e7eb;
}

.wk-shared-calendar .calendar td,
.wk-home-index .calendar td,
.wk-leads-calendar-page .calendar td {
  background: #ffffff;
  width: 14%;
  min-height: 96px;
  height: 96px;
  padding: 4px 6px;
  transition: background-color .2s ease;
}

.wk-shared-calendar .calendar td:hover,
.wk-home-index .calendar td:hover,
.wk-leads-calendar-page .calendar td:hover {
  background: #f8fbff;
}

.wk-shared-calendar .day_listing,
.wk-home-index .day_listing,
.wk-leads-calendar-page .calendario-dia {
  display: block;
  font-weight: 700;
  color: #475569;
  text-align: right;
  font-size: 13px;
  padding: 2px 2px 6px 0;
}

.wk-shared-calendar .today,
.wk-home-index div.today,
.wk-leads-calendar-page .today {
  background: #e8f1ff;
  border-radius: 8px;
  height: 100%;
  padding: 0 2px 2px;
}

.wk-home-index .calendar td {
  min-height: 108px;
  height: 108px;
}

.wk-home-index .home-calendario-evento {
  display: block;
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.25;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.wk-home-index .home-calendario-evento:hover,
.wk-home-index .home-calendario-evento:focus {
  filter: brightness(0.95);
  color: #fff;
  text-decoration: none;
}

.wk-home-index .home-calendario-evento--static {
  cursor: default;
}

.wk-home-index .home-calendario-evento--static:hover,
.wk-home-index .home-calendario-evento--static:focus {
  filter: none;
}

.wk-home-index .home-calendario-evento small {
  opacity: 0.9;
  font-weight: 700;
}

.wk-home-index .home-calendario-evento-status-icon {
  margin-right: 4px;
}

.wk-home-index .home-calendario-evento .home-calendario-evento-texto {
  display: inline;
}

.wk-home-index .home-calendario-evento--financeiro {
  background: #1f8f55;
}

.wk-home-index .home-calendario-evento--reuniao {
  background: #2f6fc0;
}

.wk-home-index .home-calendario-evento--feriado {
  background: #c54b45;
}

.wk-home-index .home-calendario-evento--ferias {
  background: #177e89;
}

.wk-home-index .home-calendario-evento--desenvolvimento {
  background: #5b6472;
}

.wk-home-index .home-calendario-evento--aniversario {
  background: #d48b1f;
}

.wk-home-index .home-calendario-evento--atividade {
  background: #7a5c2e;
}

.wk-home-index .home-calendario-evento--neutro {
  background: #64748b;
}

.wk-home-index .home-calendario-evento--nao-ocorreu {
  background: #111827;
}

.wk-leads-calendar-page .calendario-evento {
  display: block;
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1.25;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.wk-leads-calendar-page .calendario-evento small {
  opacity: 0.85;
}

.wk-leads-calendar-page .calendario-evento .wk-leads-event-status-icon {
  margin-right: 4px;
}

.wk-leads-calendar-page .calendario-evento--visita-nao_ocorreu {
  background: #111827;
}

.wk-leads-calendar-page .calendario-evento--visita-realizada .wk-leads-event-status-icon {
  color: #dcfce7;
}

.wk-leads-calendar-page .calendario-evento.selecionado {
  filter: brightness(0.9);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7), 0 2px 6px rgba(15, 23, 42, 0.18);
  animation: wk-leads-evento-selecionado-piscar 1.05s ease-in-out infinite;
}

@keyframes wk-leads-evento-selecionado-piscar {
  0%,
  100% {
    filter: brightness(0.82);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.95), 0 2px 6px rgba(15, 23, 42, 0.18);
  }

  50% {
    filter: brightness(1.18);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1), 0 0 0 4px rgba(250, 204, 21, 0.58), 0 6px 16px rgba(15, 23, 42, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wk-leads-calendar-page .calendario-evento.selecionado {
    animation: none;
  }
}

@media (max-width: 991px) {
  .wk-leads-calendar-page .wk-leads-calendar-heading {
    align-items: stretch;
  }

  .wk-leads-calendar-page .wk-leads-propostas-toggle {
    width: 100%;
    justify-content: center;
  }

  .wk-leads-calendar-page .wk-leads-proposta-head,
  .wk-leads-calendar-page .wk-leads-proposta-itens-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wk-leads-calendar-page .wk-leads-proposta-field-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wk-leads-calendar-page .wk-leads-proposta-versoes {
    justify-content: flex-start;
  }

  .wk-shared-calendar .calendar-month-header .home-calendar-nav,
  .wk-leads-calendar-page .calendar-month-header .home-calendar-nav,
  .wk-shared-calendar .calendar-month-header .home-calendar-sync-financeiro {
    position: static;
    transform: none;
    justify-content: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }

  .wk-shared-calendar .calendar-month-header .home-calendar-sync-financeiro {
    display: block;
  }
}

.wk-leads-calendar-page .painel-acoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wk-leads-calendar-page .acoes-linha {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wk-leads-calendar-page .acoes-videos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wk-leads-calendar-page .acoes-videos .video-item {
  width: calc(50% - 3px);
}

.wk-leads-calendar-page .acoes-videos .btn {
  text-align: left;
}

.wk-leads-calendar-page .acoes-videos-wrap {
  display: none;
}

.wk-leads-calendar-page .acoes-videos-wrap.aberto {
  display: block;
}

.wk-leads-calendar-page .confirmacao-icone-alerta {
  font-size: 56px;
  line-height: 1;
  color: #f0ad4e;
  margin-bottom: 10px;
  display: block;
  animation: alerta-piscar 1s ease-in-out infinite;
}

.wk-home-index .calendar td p {
  margin: 0;
  line-height: 1.25;
}

.wk-home-index .calendar td p b {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
}

@media (max-width: 991px) {
  .wk-agenda-usuario-page .panel-heading,
  .wk-agenda-usuario-page .panel-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wk-agenda-usuario-page .wk-agenda-usuario-calendar-intro,
  .wk-agenda-usuario-page .wk-agenda-usuario-detail-head {
    align-items: stretch;
    flex-direction: column;
  }

  .wk-agenda-usuario-page .wk-agenda-usuario-google-toggle {
    margin-top: 0;
  }

  .wk-home-index .home-calendar-table-wrap {
    width: 100%;
    overflow-x: auto;
  }

  .wk-home-calendar-modal-dialog,
  .wk-agenda-atividade-modal-dialog {
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .wk-home-calendar-modal .modal-header,
  .wk-home-calendar-modal .modal-body,
  .wk-home-calendar-modal .modal-footer,
  .wk-agenda-atividade-modal .modal-header,
  .wk-agenda-atividade-modal .modal-body,
  .wk-agenda-atividade-modal .modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wk-home-calendar-modal-heading,
  .wk-agenda-atividade-modal-heading {
    padding-right: 22px;
  }

  .wk-home-calendar-detail-grid {
    grid-template-columns: 1fr;
  }

  .wk-home-calendar-modal-footer,
  .wk-agenda-atividade-modal-footer {
    flex-wrap: wrap;
  }

  .wk-home-calendar-modal-footer .btn,
  .wk-agenda-atividade-modal-footer .btn {
    width: 100%;
  }

  .wk-home-index .calendar {
    min-width: 760px;
  }
}

.wk-pagamento-view {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-bottom: 16px;
}

.wk-pagamento-view:before,
.wk-pagamento-view:after {
  content: " ";
  display: table;
}

.wk-pagamento-view:after {
  clear: both;
}

.wk-detail-view .panel.panel-default,
.wk-detail-view .payment-main-panel {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.05);
}

.wk-detail-view .panel-heading {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.wk-detail-view .panel-heading h2 {
  margin: 0;
  color: #1f2937;
  font-weight: 700;
}

.wk-detail-view .panel-body {
  padding: 15px;
  background: #f4f7fb;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.wk-detail-view .bs-callout,
.wk-pagamento-view .payment-card,
.wk-pagamento-view .payment-upload-callout {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.05);
}

.wk-detail-view .bs-callout h4,
.wk-pagamento-view .payment-card h4,
.wk-pagamento-view .payment-upload-callout h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #111827;
  font-weight: 700;
}

.wk-detail-view .bs-callout .row,
.wk-pagamento-view .payment-card .row {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 3px;
}

.wk-detail-view .bs-callout .row:last-child {
  margin-bottom: 0;
}

.wk-detail-view .input-group {
  width: 100%;
  margin-bottom: 0;
}

.wk-detail-view .input-group-addon {
  min-width: 44px;
  text-align: left;
  background: #eef2f7;
  border-color: #d9dee7;
  color: #374151;
  font-weight: 600;
}

.wk-detail-view .input-group-addon .glyphicon:only-child {
  display: block;
  text-align: center;
}

.wk-detail-view .form-control:not(.btn) {
  border-color: #d9dee7;
  background: #ffffff;
  color: #111827;
  height: 40px;
}

.wk-detail-view .upload-row {
  margin-top: 10px;
}

.wk-detail-view .upload-actions {
  margin-top: 12px;
}

.wk-detail-view .table {
  margin-bottom: 0;
}

.wk-detail-view .table thead tr th {
  background: #f8fafc;
  color: #334155;
  font-weight: 700;
  white-space: nowrap;
}

.wk-pagamento-view .payment-subtitle {
  margin: 8px 0 0 0;
  color: #6b7280;
  font-size: 14px;
}

.wk-pagamento-view .payment-status-badge {
  font-size: 12px;
  vertical-align: middle;
  margin-left: 8px;
}

.wk-pagamento-view .payment-card {
  padding: 14px;
}

.wk-pagamento-view .payment-card .well {
  background: #f9fafb;
  border-color: #d9dee7;
}

.wk-pagamento-view .payment-actions-row {
  padding-top: 0;
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 8px;
  margin-top: 6px;
}

.wk-pagamento-view .payment-actions-row .row {
  margin-left: -10px;
  margin-right: -10px;
}

.wk-pagamento-view .payment-actions-row .col-md-2,
.wk-pagamento-view .payment-actions-row .col-md-3 {
  padding-left: 6px;
  padding-right: 6px;
  margin-bottom: 10px;
}

.wk-pagamento-view .payment-actions-row .btn {
  font-weight: 700;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.wk-pagamento-view .payment-upload-panel {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.05);
  margin-top: 10px;
}

.wk-pagamento-view .payment-upload-panel .panel-body {
  padding-top: 18px;
}

.wk-pagamento-view .payment-upload-callout {
  margin-top: 10px;
}

.wk-pagamento-view .payment-upload-grid .col-md-6 {
  margin-bottom: 8px;
}

.wk-pagamento-view .payment-file-title {
  font-weight: 700;
  margin-bottom: 8px;
  color: #374151;
}

.wk-pagamento-view .payment-inline-action {
  margin-left: 6px;
  border-radius: 999px;
  font-weight: 700;
}

.wk-pagamento-view .payment-upload-submit {
  margin-top: 8px;
  height: 42px;
  border-radius: 10px;
  font-weight: 700;
}

.wk-pagamento-view .payment-pdf-preview {
  display: none;
  margin-top: 15px;
  background: #f8fafc;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  padding: 12px;
}

.wk-pagamento-view .payment-pdf-preview hr {
  margin-top: 0;
}

.wk-pagamento-view .payment-pdf-preview-title {
  margin-top: 0;
  margin-bottom: 6px;
  color: #0f172a;
  font-weight: 700;
}

.wk-pagamento-view .payment-pdf-preview-text {
  color: #475569;
  margin-bottom: 10px;
}

.wk-pagamento-view .payment-pdf-preview-actions {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wk-pagamento-view .payment-pdf-preview-file {
  margin-left: 10px;
  color: #334155;
  font-weight: 600;
}

.wk-pagamento-view .payment-pdf-preview-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wk-pagamento-view .payment-pdf-page-card {
  display: inline-block;
  margin: 0;
  text-align: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 6px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.wk-pagamento-view .payment-pdf-page-checkbox {
  margin-right: 6px;
}

.wk-pagamento-view .payment-pdf-page-label {
  margin-top: 6px;
  font-size: 12px;
  color: #334155;
  font-weight: 600;
}

.wk-pagamento-view .payment-pdf-page-canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

.wk-pagamento-view .payment-pdf-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
}

.wk-pagamento-view .payment-pdf-card object {
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.wk-pagamento-view .assinatura-celula {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 100px;
}

.wk-pagamento-view .payment-main-panel .panel-body:before,
.wk-pagamento-view .payment-main-panel .panel-body:after {
  content: " ";
  display: table;
}

.wk-pagamento-view .payment-main-panel .panel-body:after {
  clear: both;
}

.blinking {
  animation: blinkingText 0.5s infinite;
}

@keyframes blinkingText {
  0% {
    color: black;
  }
  50% {
    color: transparent;
  }
  100% {
    color: black;
  }
}

.wk-cobranca-view {
  padding-top: 8px;
}

.wk-cobranca-view .visual-subtitle {
  color: #6b7280;
  margin: 8px 0 0 0;
  font-size: 14px;
}

.wk-cobranca-view .btn-group .btn {
  border-radius: 10px;
  font-weight: 700;
}

.wk-cobranca-view .input-group-btn .btn {
  height: 40px;
  line-height: 1.2;
}

.wk-fornecedor-form .fornecedor-status-toggle {
  margin-bottom: 10px;
}

.wk-fornecedor-form .fornecedor-actions {
  margin-top: 12px;
}

.wk-fornecedor-form .fornecedor-contatos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-fornecedor-form .fornecedor-contatos-header h4 {
  margin-bottom: 0;
}

.wk-fornecedor-list .fornecedor-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-fornecedor-list .fornecedor-list-header h4 {
  margin-bottom: 0;
}

.wk-fornecedor-list .fornecedor-list-search label {
  display: block;
}

.wk-fornecedor-list .fornecedor-status-badge,
.wk-fornecedor-form .fornecedor-status-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-fornecedor-list .fornecedor-status-ativo,
.wk-fornecedor-form .fornecedor-status-ativo {
  background: #dcfce7;
  color: #166534;
}

.wk-fornecedor-list .fornecedor-status-inativo,
.wk-fornecedor-form .fornecedor-status-inativo {
  background: #fee2e2;
  color: #991b1b;
}

.wk-googleagenda-form .googleagenda-status-toggle {
  margin-bottom: 10px;
}

.wk-googleagenda-form .googleagenda-default-check {
  margin-top: 4px;
  margin-bottom: 0;
}

.wk-googleagenda-form .googleagenda-actions {
  margin-top: 12px;
}

.wk-googleagenda-form .googleagenda-help-list {
  margin-bottom: 8px;
  padding-left: 20px;
}

.wk-googleagenda-form .googleagenda-help-list li {
  margin-bottom: 5px;
}

.wk-googleagenda-form .googleagenda-help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.wk-googleagenda-form .googleagenda-help-header h4 {
  margin-bottom: 0;
}

.wk-googleagenda-form .googleagenda-help-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.wk-googleagenda-form .googleagenda-help-collapse {
  border-top: 1px solid #e2e8f0;
  margin-top: 8px;
  padding-top: 8px;
}

.wk-googleagenda-form .googleagenda-help-collapse h5 {
  font-weight: 700;
  margin-top: 0;
}

.wk-googleagenda-form .googleagenda-help-service-account {
  margin-bottom: 0;
  margin-top: 8px;
  color: #64748b;
}

.wk-googleagenda-form .googleagenda-help-service-account code {
  white-space: normal;
  word-break: break-word;
}

.wk-googleagenda-list .googleagenda-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-googleagenda-list .googleagenda-list-header h4 {
  margin-bottom: 0;
}

.wk-googleagenda-list .googleagenda-list-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.wk-googleagenda-list .googleagenda-sync-form {
  margin: 0;
}

.wk-googleagenda-list .googleagenda-list-search label {
  display: block;
}

.wk-googleagenda-list .googleagenda-descricao-main {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wk-googleagenda-list .googleagenda-descricao-meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}

.wk-googleagenda-list .googleagenda-descricao-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-googleagenda-list .googleagenda-test-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.wk-googleagenda-list .googleagenda-test-btn {
  margin-top: 0;
}

.wk-googleagenda-list .googleagenda-test-date {
  color: #64748b;
}

.wk-googleagenda-list .googleagenda-status-badge,
.wk-googleagenda-form .googleagenda-status-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-googleagenda-list .googleagenda-status-ativo,
.wk-googleagenda-form .googleagenda-status-ativo {
  background: #dcfce7;
  color: #166534;
}

.wk-googleagenda-list .googleagenda-status-inativo,
.wk-googleagenda-form .googleagenda-status-inativo {
  background: #fee2e2;
  color: #991b1b;
}

.wk-googleagenda-list .googleagenda-status-padrao,
.wk-googleagenda-form .googleagenda-status-padrao {
  background: #dbeafe;
  color: #1e40af;
}

.wk-googleagenda-list .googleagenda-status-neutro,
.wk-googleagenda-form .googleagenda-status-neutro {
  background: #e2e8f0;
  color: #334155;
}

.wk-home-calendar-google-box {
  border-top: 1px solid #e2e8f0;
  margin-top: 14px;
  padding-top: 14px;
}

.wk-home-calendar-google-toggle,
.wk-home-calendar-google-meet-check {
  font-weight: 700;
  color: #0f172a;
}

.wk-home-calendar-google-toggle input,
.wk-home-calendar-google-meet-check input {
  margin-right: 6px;
}

.wk-usuario-list .usuario-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-usuario-list .usuario-list-header h4 {
  margin-bottom: 0;
}

.wk-usuario-list .usuario-list-search label {
  display: block;
}

.wk-usuario-list .usuario-status-badge,
.wk-usuario-edit .usuario-status-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-usuario-list .usuario-status-ativo,
.wk-usuario-edit .usuario-status-ativo {
  background: #dcfce7;
  color: #166534;
}

.wk-usuario-list .usuario-status-inativo,
.wk-usuario-edit .usuario-status-inativo {
  background: #fee2e2;
  color: #991b1b;
}

.wk-usuario-edit .usuario-status-neutro {
  background: #e2e8f0;
  color: #334155;
}

.wk-usuario-list .usuario-descricao-main {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wk-usuario-list .usuario-descricao-meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}

.wk-usuario-list .usuario-descricao-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-usuario-list .usuario-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.wk-usuario-list .table-responsive {
  overflow-x: auto;
}

.wk-usuario-list .table > thead > tr > th:last-child,
.wk-usuario-list .table > tbody > tr > td:last-child {
  text-align: right;
}

.wk-usuario-edit .usuario-edit-status-row {
  margin-bottom: 10px;
}

.wk-usuario-edit .usuario-edit-password-action label {
  display: block;
}

.wk-usuario-edit .usuario-edit-actions {
  margin-top: 12px;
  clear: both;
}

.wk-usuario-edit .usuario-edit-empresas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-usuario-edit .usuario-edit-empresas-header h4 {
  margin: 0;
}

.wk-usuario-edit .usuario-edit-empresas-table th {
  white-space: nowrap;
}

.wk-usuario-edit .usuario-edit-empresa-main {
  font-weight: 700;
  color: #0f172a;
}

.wk-usuario-edit .usuario-edit-empresa-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.wk-usuario-edit .table > thead > tr > th:last-child,
.wk-usuario-edit .table > tbody > tr > td:last-child {
  text-align: right;
}

.wk-usuario-edit .bs-callout:before,
.wk-usuario-edit .bs-callout:after {
  content: " ";
  display: table;
}

.wk-usuario-edit .bs-callout:after {
	clear: both;
}

.wk-usuario-edit .usuario-disponibilidade-table > tbody > tr > td {
	vertical-align: top;
}

.wk-usuario-edit .usuario-disponibilidade-dia {
	width: 130px;
	font-weight: 700;
	color: #111827;
}

.wk-usuario-edit .usuario-disponibilidade-faixas {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wk-usuario-edit .usuario-disponibilidade-faixa {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 390px;
}

.wk-usuario-edit .usuario-disponibilidade-faixa .form-control {
	width: 118px;
	min-width: 118px;
}

.wk-usuario-edit .usuario-disponibilidade-separador {
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.wk-usuario-edit .usuario-disponibilidade-faixa {
		flex-wrap: wrap;
	}
}

.wk-funcionario-list .funcionario-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-funcionario-list .funcionario-list-header h4 {
  margin-bottom: 0;
}

.wk-funcionario-list .funcionario-list-search label {
  display: block;
}

.wk-funcionario-list .funcionario-avatar {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.wk-funcionario-list .funcionario-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #e2e8f0;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wk-funcionario-list .funcionario-status-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-funcionario-list .funcionario-status-ativo {
  background: #dcfce7;
  color: #166534;
}

.wk-funcionario-list .funcionario-status-inativo {
  background: #fee2e2;
  color: #991b1b;
}

.wk-funcionario-list .funcionario-cargo-badge {
  background: #e0f2fe;
  color: #075985;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 5px;
  display: inline-flex;
}

.wk-funcionario-list .funcionario-descricao-main {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wk-funcionario-list .funcionario-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.wk-funcionario-list .table-responsive {
  overflow-x: auto;
}

.wk-funcionario-list .table > thead > tr > th:last-child,
.wk-funcionario-list .table > tbody > tr > td:last-child {
  text-align: right;
}

.wk-funcionario-form .funcionario-form-status-row {
  margin-bottom: 10px;
}

.wk-funcionario-form .funcionario-form-actions {
  margin-top: 12px;
  clear: both;
}

.wk-funcionario-form .bs-callout:before,
.wk-funcionario-form .bs-callout:after {
  content: " ";
  display: table;
}

.wk-funcionario-form .bs-callout:after {
  clear: both;
}

.wk-atividade-list .atividade-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.wk-atividade-list .atividade-list-header h4 {
  margin-bottom: 0;
}

.wk-atividade-list .atividade-list-subtitle {
  margin: 4px 0 0;
}

.wk-atividade-list .atividade-list-search label {
  display: block;
}

.wk-atividade-list .atividade-list-filter-actions {
  justify-content: flex-end;
}

.wk-atividade-list .atividade-status-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-atividade-list .atividade-status-neutro {
  background: #e2e8f0;
  color: #334155;
}

.wk-atividade-list .atividade-status-aberta {
  background: #dbeafe;
  color: #1d4ed8;
}

.wk-atividade-list .atividade-status-finalizada {
  background: #dcfce7;
  color: #166534;
}

.wk-atividade-list .atividade-status-rotativa {
  background: #ede9fe;
  color: #6d28d9;
}

.wk-atividade-list .atividade-status-unica {
  background: #fef3c7;
  color: #92400e;
}

.wk-atividade-list .atividade-descricao-main {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.wk-atividade-list .atividade-descricao-meta {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  white-space: pre-line;
}

.wk-atividade-list .atividade-observacao-actions {
  margin-top: 6px;
}

.wk-atividade-list .atividade-observacao-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.wk-atividade-list .atividade-observacao-toggle:hover,
.wk-atividade-list .atividade-observacao-toggle:focus {
  color: #1d4ed8;
  text-decoration: none;
}

.wk-atividade-list .atividade-observacao-toggle .caret {
  transition: transform .2s ease;
}

.wk-atividade-list .atividade-observacao-toggle:not(.collapsed) .caret {
  transform: rotate(180deg);
}

.wk-atividade-list .atividade-observacao-collapse {
  margin-top: 6px;
}

.wk-atividade-list .atividade-observacao-content {
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-line;
  border-left: 3px solid #dbeafe;
  padding-left: 10px;
}

.wk-atividade-list .atividade-cell-title {
  font-weight: 700;
  color: #0f172a;
}

.wk-atividade-list .atividade-cell-subtitle {
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
}

.wk-atividade-list .atividade-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.wk-atividade-list .table-responsive {
  margin-top: 10px;
}

.wk-atividade-list .table > thead > tr > th:last-child,
.wk-atividade-list .table > tbody > tr > td:last-child {
  text-align: right;
}

.wk-cliente-list .cliente-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-cliente-list .cliente-list-header h4 {
  margin-bottom: 0;
}

.wk-cliente-list .cliente-list-search label {
  display: block;
}

.wk-cliente-list .cliente-status-badge,
.wk-cliente-edit .cliente-status-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-cliente-list .cliente-status-ativo,
.wk-cliente-edit .cliente-status-ativo {
  background: #dcfce7;
  color: #166534;
}

.wk-cliente-list .cliente-status-inativo,
.wk-cliente-edit .cliente-status-inativo {
  background: #fee2e2;
  color: #991b1b;
}

.wk-cliente-list .cliente-status-bloqueado {
  background: #fef3c7;
  color: #92400e;
}

.wk-cliente-list .cliente-status-congelado,
.wk-cliente-edit .cliente-status-congelado {
  background: #dbeafe;
  color: #1e40af;
}

.wk-cliente-list .cliente-status-neutro,
.wk-cliente-edit .cliente-status-neutro {
  background: #e2e8f0;
  color: #334155;
}

.wk-cliente-list .cliente-status-badge-inline,
.wk-cliente-edit .cliente-status-badge-inline {
  font-size: 10px;
  padding: 2px 8px;
  margin-left: 4px;
}

.wk-cliente-list .cliente-descricao-main {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wk-cliente-list .cliente-descricao-meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}

.wk-cliente-list .cliente-descricao-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-servico-list .servico-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-servico-list .servico-list-header h4 {
  margin-bottom: 0;
}

.wk-servico-list .servico-list-search label {
  display: block;
}

.wk-servico-list .servico-list-filter-row + .servico-list-filter-row {
  margin-top: 10px;
}

.wk-servico-list .servico-list-summary {
  font-size: 13px;
  color: #475569;
}

.wk-servico-list .servico-status-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-servico-list .servico-status-ativo {
  background: #dcfce7;
  color: #166534;
}

.wk-servico-list .servico-status-inativo {
  background: #fee2e2;
  color: #991b1b;
}

.wk-servico-list .servico-descricao-main {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wk-servico-list .servico-descricao-meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}

.wk-servico-list .servico-descricao-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-servico-list .servico-cell-title {
  font-weight: 700;
  color: #0f172a;
}

.wk-servico-list .servico-cell-subtitle {
  margin-top: 3px;
  font-size: 12px;
  color: #64748b;
}

.wk-servico-list .servico-actions {
  display: flex;
  justify-content: flex-end;
}

.wk-servico-list .table-responsive {
  overflow-x: auto;
}

.wk-servico-list .table > thead > tr > th:last-child,
.wk-servico-list .table > tbody > tr > td:last-child {
  text-align: right;
}

.wk-lancamento-list .lancamento-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-lancamento-list .lancamento-list-header h4 {
  margin-bottom: 0;
}

.wk-lancamento-list .lancamento-list-filter-row + .lancamento-list-filter-row {
  margin-top: 10px;
}

.wk-lancamento-list .lancamento-date-filter .form-control {
  font-weight: 600;
  letter-spacing: 0;
}

.wk-lancamento-list .lancamento-list-search label {
  display: block;
}

.wk-lancamento-list .lancamento-list-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.wk-lancamento-list .lancamento-list-summary {
  font-size: 13px;
  color: #475569;
}

.wk-lancamento-list .lancamento-status-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-lancamento-list .lancamento-status-ativo {
  background: #dcfce7;
  color: #166534;
}

.wk-lancamento-list .lancamento-status-inativo {
  background: #fee2e2;
  color: #991b1b;
}

.wk-lancamento-list .lancamento-status-congelado {
  background: #dbeafe;
  color: #1e40af;
}

.wk-lancamento-list .lancamento-descricao-main {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wk-lancamento-list .lancamento-descricao-meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}

.wk-lancamento-list .lancamento-descricao-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-lancamento-list .lancamento-cell-title {
  font-weight: 700;
  color: #0f172a;
}

.wk-lancamento-list .lancamento-cell-subtitle {
  margin-top: 3px;
  font-size: 12px;
  color: #64748b;
}

.wk-lancamento-list .lancamento-actions {
  display: flex;
  justify-content: flex-end;
}

.wk-lancamento-list .table-responsive {
  overflow-x: auto;
}

.wk-lancamento-list .table > thead > tr > th:last-child,
.wk-lancamento-list .table > tbody > tr > td:last-child {
  text-align: right;
}

.wk-proposta-list .proposta-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-proposta-list .proposta-list-header h4 {
  margin-bottom: 0;
}

.wk-proposta-list .proposta-list-subtitle {
  margin: 4px 0 0;
  font-size: 12px;
}

.wk-proposta-list .proposta-list-search label {
  display: block;
}

.wk-proposta-list .proposta-status-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-proposta-list .proposta-status-aberto {
  background: #dbeafe;
  color: #1d4ed8;
}

.wk-proposta-list .proposta-status-aceita {
  background: #dcfce7;
  color: #166534;
}

.wk-proposta-list .proposta-status-cancelada {
  background: #fee2e2;
  color: #991b1b;
}

.wk-proposta-list .proposta-status-warning {
  background: #fef3c7;
  color: #92400e;
}

.wk-proposta-list .proposta-status-info {
  background: #e0f2fe;
  color: #075985;
}

.wk-proposta-list .proposta-status-neutro {
  background: #e2e8f0;
  color: #334155;
}

.wk-proposta-list .proposta-descricao-main {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wk-proposta-list .proposta-resumo-wrap {
  margin-top: 8px;
}

.wk-proposta-list .proposta-resumo-toggle {
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.wk-proposta-list .proposta-resumo-toggle:hover,
.wk-proposta-list .proposta-resumo-toggle:focus {
  color: #1d4ed8;
  text-decoration: none;
}

.wk-proposta-list .proposta-resumo-toggle .caret {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.wk-proposta-list .proposta-resumo-toggle:not(.collapsed) .caret {
  transform: rotate(180deg);
}

.wk-proposta-list .proposta-resumo-collapse {
  margin-top: 6px;
}

.wk-proposta-list .proposta-resumo-texto {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #334155;
  white-space: normal;
  word-break: break-word;
}

.wk-proposta-list .proposta-descricao-meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}

.wk-proposta-list .proposta-descricao-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-proposta-list .proposta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.wk-proposta-list .table-responsive {
  overflow-x: auto;
  overflow-y: visible;
}

.wk-proposta-list .table > thead > tr > th:last-child,
.wk-proposta-list .table > tbody > tr > td:last-child {
  width: 1%;
  min-width: 140px;
  white-space: nowrap;
}

.wk-proposta-list .proposta-cell-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wk-proposta-list .proposta-cell-title {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.wk-proposta-list .proposta-cell-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #64748b;
}

.wk-proposta-list .proposta-cell-divider {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  margin: 2px 0;
}

.wk-proposta-list .proposta-aceite-meta {
  margin-top: 6px;
}

.wk-proposta-list .proposta-action-menu .dropdown-menu {
  min-width: 220px;
  z-index: 1060;
}

.wk-proposta-list .proposta-action-menu .dropdown-menu > li > a.disabled,
.wk-proposta-list .proposta-action-menu .dropdown-menu > li > a.disabled:hover,
.wk-proposta-list .proposta-action-menu .dropdown-menu > li > a.disabled:focus {
  color: #9ca3af;
  cursor: not-allowed;
  pointer-events: none;
  background: transparent;
}

.wk-proposta-list .proposta-pagination-summary {
  margin-bottom: 10px;
}

.wk-extrato-cartao-page .panel-heading h2,
.wk-extrato-consolidado-page .panel-heading h2,
.wk-extrato-pagamentos-page .panel-heading h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wk-extrato-cartao-page .wk-extrato-cartao-heading {
  margin-bottom: 0;
}

.wk-extrato-cartao-page .wk-extrato-cartao-filter-row > [class*="col-"] {
  margin-bottom: 10px;
}

.wk-extrato-cartao-page .wk-extrato-cartao-filter-actions label {
  display: block;
}

.wk-extrato-cartao-page .wk-extrato-cartao-filter-actions .wk-filter-form-actions {
  justify-content: flex-start;
}

.wk-extrato-cartao-page .bootstrap-select,
.wk-extrato-consolidado-page .bootstrap-select {
  width: 100% !important;
}

.wk-extrato-cartao-page .bootstrap-select > .dropdown-toggle,
.wk-extrato-consolidado-page .bootstrap-select > .dropdown-toggle {
  height: 40px;
  border-color: #d9dee7;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: none;
}

.wk-extrato-cartao-page .bootstrap-select.btn-group .dropdown-toggle .filter-option,
.wk-extrato-consolidado-page .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  color: #111827;
}

.wk-extrato-cartao-page .wk-extrato-cartao-summary {
  margin-top: 6px;
}

.wk-extrato-cartao-page .wk-extrato-cartao-table tbody tr th,
.wk-extrato-cartao-page .wk-extrato-cartao-table tbody tr td {
  vertical-align: middle;
}

.wk-extrato-cartao-page .wk-extrato-cartao-value {
  white-space: nowrap;
  font-weight: 700;
  color: #0f172a;
}

.wk-extrato-cartao-page .wk-extrato-cartao-payment-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wk-extrato-cartao-page .wk-extrato-cartao-status {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-extrato-cartao-page .wk-extrato-cartao-status-open {
  background: #fff7ed;
  color: #9a3412;
}

.wk-extrato-cartao-page .wk-extrato-cartao-status-identified {
  background: #dcfce7;
  color: #166534;
}

.wk-extrato-cartao-modal-callout {
  margin-bottom: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fbff;
  padding: 16px;
}

.wk-extrato-cartao-modal-callout h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #111827;
  font-weight: 700;
}

.wk-extrato-cartao-modal-helper {
  margin: 0 0 12px 0;
  color: #64748b;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-heading {
  margin-bottom: 0;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-filter-row > [class*="col-"] {
  margin-bottom: 10px;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-filter-actions label {
  display: block;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-filter-actions .wk-filter-form-actions {
  justify-content: flex-start;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-summary {
  margin-top: 6px;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-table tbody tr th,
.wk-extrato-pagamentos-page .wk-extrato-pagamentos-table tbody tr td,
.wk-extrato-pagamentos-page .wk-extrato-pagamentos-table tfoot tr th,
.wk-extrato-pagamentos-page .wk-extrato-pagamentos-table tfoot tr td {
  vertical-align: middle;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-detail-cell {
  min-width: 280px;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-detail-main {
  font-weight: 700;
  color: #0f172a;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-detail-note {
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-date-cell {
  min-width: 220px;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-date-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #475569;
  font-size: 12px;
  line-height: 1.5;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-value {
  white-space: nowrap;
  font-weight: 700;
  color: #991b1b;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-status-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-status {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-status-open {
  background: #fff7ed;
  color: #9a3412;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-status-paid {
  background: #dcfce7;
  color: #166534;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-status-negotiated {
  background: #dbeafe;
  color: #1d4ed8;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-status-inactive,
.wk-extrato-pagamentos-page .wk-extrato-pagamentos-status-neutral {
  background: #f1f5f9;
  color: #475569;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-status-note {
  color: #b45309;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-row-overdue > th:first-child {
  box-shadow: inset 4px 0 0 #f59e0b;
}

.wk-extrato-pagamentos-page .wk-extrato-pagamentos-table tfoot tr th,
.wk-extrato-pagamentos-page .wk-extrato-pagamentos-table tfoot tr td {
  background: #f8fafc;
  font-weight: 600;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-heading {
  margin-bottom: 0;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-filter-row > [class*="col-"] {
  margin-bottom: 10px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-filter-actions label {
  display: block;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-filter-actions .wk-filter-form-actions {
  justify-content: flex-start;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-summary {
  margin-top: 6px;
  justify-content: flex-end;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-summary .wk-atendimento-localizar-summary-text {
  margin-left: auto;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-card {
  appearance: none;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: left;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f8fafc;
  color: #334155;
  padding: 6px 12px;
  box-shadow: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-card:hover,
.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-card:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  outline: none;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-card.is-active {
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-card-neutral {
  background: #f8fafc;
  border-color: #d1d5db;
  color: #334155;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-card-success {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e3a8a;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-card-payment {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-card-charge {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-card-pending {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #475569;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: inherit;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-value {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: inherit;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-helper {
  margin-top: 10px;
  color: #64748b;
  font-size: 12px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-results-info {
  margin-top: 8px;
  color: #475569;
  font-size: 13px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-table tbody tr th,
.wk-extrato-consolidado-page .wk-extrato-consolidado-table tbody tr td {
  vertical-align: middle;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-row-negative > th:first-child {
  box-shadow: inset 3px 0 0 #fca5a5;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-row-positive > th:first-child {
  box-shadow: inset 3px 0 0 #86efac;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-bank {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  color: #475569;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-operation-cell {
  min-width: 150px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-operation-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-operation-badge {
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-value {
  white-space: nowrap;
  font-weight: 700;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-value-positive {
  color: #166534;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-value-negative {
  color: #991b1b;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-description {
  color: #475569;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-detail-cell {
  min-width: 280px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-detail-main {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-detail-meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-detail-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-detail-description {
  margin-top: 6px;
  color: #475569;
  font-size: 12px;
  line-height: 1.5;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-card {
  min-width: 220px;
  border-radius: 12px;
  border: 1px solid #dbe3ef;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.05);
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-text {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: #475569;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-payment {
  background: linear-gradient(180deg, #fee2e2 0%, #fef2f2 100%);
  border-color: #fca5a5;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-payment .wk-extrato-consolidado-match-title {
  color: #991b1b;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-charge {
  background: linear-gradient(180deg, #dcfce7 0%, #f0fdf4 100%);
  border-color: #86efac;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-charge .wk-extrato-consolidado-match-title {
  color: #166534;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-both {
  background: linear-gradient(180deg, #f5f3ff 0%, #eef2ff 100%);
  border-color: #c4b5fd;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-both .wk-extrato-consolidado-match-title {
  color: #5b21b6;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-pending {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-color: #cbd5e1;
}

.wk-extrato-consolidado-page .wk-extrato-consolidado-match-pending .wk-extrato-consolidado-match-title {
  color: #475569;
}

.wk-extrato-consolidado-modal-callout {
  margin-bottom: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fbff;
  padding: 16px;
}

.wk-extrato-consolidado-modal-callout h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #111827;
  font-weight: 700;
}

.wk-extrato-consolidado-modal-helper {
  margin: 0 0 12px 0;
  color: #64748b;
}

.wk-extrato-consolidado-field-helper {
  margin: 8px 0 12px 0;
  color: #64748b;
  font-size: 12px;
}

.wk-cliente-edit .cliente-edit-contatos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.wk-cliente-edit .cliente-edit-contatos-header h4 {
  margin: 0;
}

.wk-cliente-edit .cliente-edit-upload-action {
  margin-top: 10px;
}

.wk-cliente-edit .cliente-edit-contatos-table th {
  white-space: nowrap;
}

.wk-cliente-edit .cliente-edit-contato-main {
  font-weight: 700;
  color: #0f172a;
}

.wk-cliente-edit .cliente-edit-contato-meta-item {
  font-size: 12px;
  color: #64748b;
  line-height: 1.35;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wk-cliente-edit .cliente-edit-observacao {
  color: #334155;
}

.wk-cliente-edit textarea.cliente-edit-textarea-lg.form-control {
  height: auto;
  min-height: 240px;
  line-height: 1.5;
  resize: vertical;
}

.wk-cliente-edit .cliente-edit-actions {
  margin-top: 12px;
  clear: both;
}

.wk-cliente-edit .bs-callout:before,
.wk-cliente-edit .bs-callout:after {
  content: " ";
  display: table;
}

.wk-cliente-edit .bs-callout:after {
  clear: both;
}

.wk-cobranca-wizard .wizard-shell {
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 18px 18px 18px;
}

.wk-cobranca-wizard .wizard-heading {
  margin: 0 0 18px 0;
  color: #1f2937;
  font-weight: 700;
}

.wk-cobranca-wizard .wizard-subtitle {
  color: #6b7280;
  margin: 8px 0 20px 0;
  font-size: 14px;
}

.wk-cobranca-wizard .wizard-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  min-height: 250px;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
  margin-bottom: 16px;
}

.wk-cobranca-wizard .wizard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
}

.wk-cobranca-wizard .wizard-chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wk-cobranca-wizard .wizard-chip-primary {
  background: #dbeafe;
  color: #1d4ed8;
}

.wk-cobranca-wizard .wizard-chip-warning {
  background: #fef3c7;
  color: #b45309;
}

.wk-cobranca-wizard .wizard-chip-success {
  background: #d1fae5;
  color: #047857;
}

.wk-cobranca-wizard .wizard-title {
  margin: 0;
  color: #1f2937;
  font-size: 20px;
  font-weight: 700;
}

.wk-cobranca-wizard .wizard-desc {
  color: #6b7280;
  margin: 8px 0 0 0;
  min-height: 40px;
}

.wk-cobranca-wizard .wizard-total {
  margin: 18px 0 14px 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: #1f2937;
}

.wk-cobranca-wizard .wizard-total small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #6b7280;
  margin-bottom: 8px;
}

.wk-cobranca-wizard .wizard-btn {
  width: 100%;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px;
}

.wk-cobranca-wizard .wizard-btn[disabled] {
  cursor: not-allowed;
  opacity: .65;
}

.wk-cobranca-wizard .wizard-debt-shell {
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 16px 16px 16px;
}

.wk-cobranca-wizard .wizard-debt-title {
  margin: 0 0 8px 0;
  color: #1f2937;
  font-weight: 700;
}

.wk-cobranca-wizard .wizard-debt-subtitle {
  color: #6b7280;
  margin-bottom: 18px;
}

.wk-cobranca-wizard .wizard-action-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.05);
}

.wk-cobranca-wizard .wizard-action-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.wk-cobranca-wizard .wizard-action-card p {
  color: #6b7280;
  margin-bottom: 14px;
  min-height: 36px;
}

.wk-cobranca-wizard .wizard-action-card .btn {
  width: 100%;
  font-weight: 700;
  border-radius: 8px;
}

.wk-cobranca-wizard .wizard-table-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  margin-top: 4px;
}

.wk-cobranca-wizard .wizard-table-card h6 {
  margin: 4px 0 12px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #6b7280;
}

.wk-cobranca-wizard .wizard-table-card .table {
  margin-bottom: 0;
}

.wk-cobranca-wizard .wizard-table-card .table > thead > tr > th {
  border-bottom: 1px solid #d1d5db;
  color: #374151;
}

.wk-cobranca-wizard .wizard-sc-shell,
.wk-cobranca-wizard .wizard-nf-shell,
.wk-cobranca-wizard .wizard-conf-shell,
.wk-cobranca-wizard .wizard-boleto-shell {
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 16px 16px 16px;
}

.wk-cobranca-wizard .wizard-sc-title,
.wk-cobranca-wizard .wizard-nf-title,
.wk-cobranca-wizard .wizard-conf-title,
.wk-cobranca-wizard .wizard-boleto-title {
  margin: 0 0 8px 0;
  color: #1f2937;
  font-weight: 700;
}

.wk-cobranca-wizard .wizard-sc-subtitle,
.wk-cobranca-wizard .wizard-nf-subtitle,
.wk-cobranca-wizard .wizard-conf-subtitle,
.wk-cobranca-wizard .wizard-boleto-subtitle {
  color: #6b7280;
  margin-bottom: 16px;
}

.wk-cobranca-wizard .wizard-sc-subtitle {
  margin-bottom: 18px;
}

.wk-cobranca-wizard .wizard-sc-card,
.wk-cobranca-wizard .wizard-nf-card,
.wk-cobranca-wizard .wizard-conf-card,
.wk-cobranca-wizard .wizard-boleto-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.05);
}

.wk-cobranca-wizard .wizard-sc-card h4,
.wk-cobranca-wizard .wizard-nf-card h4,
.wk-cobranca-wizard .wizard-conf-card h4,
.wk-cobranca-wizard .wizard-boleto-card h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 700;
  color: #111827;
}

.wk-cobranca-wizard .wizard-sc-card .btn {
  width: 100%;
  font-weight: 700;
  border-radius: 8px;
}

.wk-cobranca-wizard .wizard-nf-card .btn,
.wk-cobranca-wizard .wizard-boleto-card .btn {
  border-radius: 8px;
}

.wk-cobranca-wizard .wizard-sc-well,
.wk-cobranca-wizard .wizard-conf-well {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  min-height: 82px;
  color: #374151;
}

.wk-cobranca-wizard .wizard-nf-card .input-group,
.wk-cobranca-wizard .wizard-boleto-card .input-group {
  width: 100%;
  margin-bottom: 0;
}

.wk-cobranca-wizard .wizard-nf-card .input-group + .input-group {
  margin-top: 3px;
}

.wk-cobranca-wizard .wizard-boleto-card .input-group + .input-group {
  margin-top: 3px;
}

.wk-cobranca-wizard .wizard-nf-card .input-group-addon {
  min-width: 170px;
  text-align: left;
  background: #eef2f7;
  border-color: #d9dee7;
  color: #374151;
  font-weight: 600;
}

.wk-cobranca-wizard .wizard-boleto-card .input-group-addon {
  min-width: 170px;
  text-align: left;
  background: #eef2f7;
  border-color: #d9dee7;
  color: #374151;
  font-weight: 600;
}

.wk-cobranca-wizard .wizard-nf-card .form-control:not(.btn) {
  border-color: #d9dee7;
  background: #ffffff;
  color: #111827;
  height: 40px;
}

.wk-cobranca-wizard .wizard-boleto-card .form-control:not(.btn) {
  border-color: #d9dee7;
  background: #ffffff;
  color: #111827;
  height: 40px;
}

.wk-cobranca-wizard .wizard-nf-card .input-group-btn .btn {
  height: 40px;
  line-height: 1.2;
  font-weight: 600;
  border-radius: 0 4px 4px 0;
}

.wk-cobranca-wizard .wizard-boleto-card .input-group-btn .btn {
  height: 40px;
  line-height: 1.2;
  font-weight: 600;
  border-radius: 0 4px 4px 0;
}

.wk-cobranca-wizard .wizard-sc-mail-btn {
  margin-top: 10px;
}

.wk-cobranca-wizard .wizard-sc-modal .modal-header {
  background: #f8fbff;
  border-bottom: 1px solid #e5e7eb;
}

.wk-cobranca-wizard .wizard-sc-modal .modal-title {
  font-weight: 700;
  color: #1f2937;
}

.wk-cobranca-wizard .wizard-sc-modal .help-block {
  margin-bottom: 0;
}

.wk-cobranca-wizard .wizard-sc-log-table th,
.wk-cobranca-wizard .wizard-sc-log-table td {
  vertical-align: middle !important;
  font-size: 12px;
}

.wk-cobranca-wizard .wizard-sc-alert-note {
  margin-bottom: 10px;
}

.wk-cobranca-wizard .wizard-sc-alert-empty {
  margin-bottom: 0;
}

.wk-cobranca-wizard .wizard-sc-field-spacer {
  margin-top: 10px;
}

.wk-cobranca-wizard .wizard-nf-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.wk-cobranca-wizard .wizard-nf-actions .btn {
  margin-left: 8px;
}

.wk-cobranca-wizard .wizard-nf-upload .btn-success,
.wk-cobranca-wizard .wizard-boleto-upload .btn-success {
  font-weight: 700;
}

.wk-cobranca-wizard .wizard-nf-upload .btn-success {
  padding: 10px 16px;
}

.wk-cobranca-wizard .wizard-upload-actions {
  margin-top: 14px;
}

.wk-cobranca-wizard .wizard-pdf-wrap object {
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.wk-cobranca-wizard .nf-checkpoint {
  border: 2px solid #f0ad4e;
  background: #fff9e6;
  padding: 14px 12px;
  border-radius: 6px;
  margin: 12px 0 14px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.wk-cobranca-wizard .nf-checkpoint--success {
  border-color: #5cb85c;
  background: #e9f7ea;
}

.wk-cobranca-wizard .nf-checkpoint--danger {
  border-color: #d9534f;
  background: #fdecea;
}

.wk-cobranca-wizard .nf-checkpoint__title {
  font-size: 16px;
  font-weight: 700;
  color: #8a6d3b;
  margin: 0 0 6px 0;
}

.wk-cobranca-wizard .nf-checkpoint--success .nf-checkpoint__title {
  color: #3c763d;
}

.wk-cobranca-wizard .nf-checkpoint--danger .nf-checkpoint__title {
  color: #a94442;
}

.wk-cobranca-wizard .nf-checkpoint__helper {
  color: #6b6b6b;
  font-size: 12px;
  margin: 0 0 10px 0;
}

.wk-cobranca-wizard .nf-checkpoint .btn-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.wk-cobranca-wizard .nf-checkpoint .btn-group .btn {
  flex: 1;
  text-align: center;
  font-weight: 600;
}

.wk-cobranca-wizard .nf-checkpoint .btn-group .btn + .btn {
  margin-left: 8px;
}

.wk-cobranca-wizard .wizard-boleto-deposito-alert {
  margin-bottom: 12px;
}

.wk-cobranca-wizard .wizard-boleto-deposito-link {
  margin-left: 8px;
}

.atendimento-v2-localizar-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.atendimento-v2-localizar-input {
  min-width: 320px;
}

.atendimento-v2-localizar-input .form-control {
  width: 100%;
}

.atendimento-v2-resumo-row {
  margin-top: 8px;
}

.wk-atendimento-guide {
  max-width: 1220px;
}

.wk-atendimento-layout {
  display: flex;
  align-items: flex-start;
}

.wk-atendimento-sidebar {
  border: 1px solid #d7dee8;
  border-radius: 6px;
  overflow: hidden;
  background: #2f2d31;
  color: #e2e8f0;
}

.wk-atendimento-sidebar-top {
  background: #c44d24;
  padding: 12px;
}

.wk-atendimento-sidebar-search .form-control {
  border-radius: 999px;
  height: 34px;
}

.wk-atendimento-sidebar-nav {
  padding: 10px 0 0 0;
}

.wk-atendimento-sidebar-nav h4 {
  margin: 0;
  padding: 8px 14px;
  font-size: 20px;
  font-weight: 700;
  background: #f1f5f9;
  color: #334155;
}

.wk-atendimento-sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wk-atendimento-sidebar-nav li {
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  color: #d1d5db;
}

.wk-atendimento-sidebar-nav li.active {
  background: #b9bcc2;
  color: #1f2937;
  font-weight: 700;
}

.wk-atendimento-guide-breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #5f6f85;
  font-size: 13px;
}

.wk-atendimento-guide-breadcrumb li + li:before {
  content: ">";
  margin-right: 8px;
  color: #94a3b8;
}

.wk-atendimento-guide-doc {
  background: #ffffff;
  border: 1px solid #dce3ef;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  padding: 18px 22px 22px 22px;
}

.wk-atendimento-guide-doc h1 {
  margin: 0 0 10px 0;
  font-size: 30px;
  color: #2b3f63;
}

.wk-atendimento-guide-doc h2 {
  margin: 18px 0 12px 0;
  font-size: 22px;
  color: #2b3f63;
}

.wk-atendimento-guide-intro {
  color: #51627b;
  font-size: 15px;
}

.wk-atendimento-guide-table thead th {
  background: #f6f9ff;
}

.wk-atendimento-guide-summary {
  border: 1px solid #dce3ef;
  border-radius: 6px;
  padding: 12px;
  background: #fbfdff;
}

.wk-atendimento-localizar-page .panel-heading h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wk-section-header,
.wk-atendimento-localizar-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.wk-section-header p,
.wk-atendimento-localizar-card-header p {
  margin: 6px 0 0 0;
  max-width: 720px;
}

.wk-atendimento-google-search-wrap,
.wk-atendimento-google-search-wrap-top {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.wk-filter-form-grid,
.wk-atendimento-localizar-form-grid {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.wk-filter-form-main,
.wk-atendimento-localizar-form-main {
  flex: 1 1 auto;
}

.wk-filter-form-actions,
.wk-atendimento-localizar-form-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.wk-filter-form-actions .btn,
.wk-atendimento-localizar-form-actions .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.wk-atendimento-google-search-input {
  height: 44px;
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid #d7dee8;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.wk-atendimento-google-search-input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.wk-atendimento-localizar-summary-bar {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wk-atendimento-google-keywords {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wk-filter-chip,
.wk-atendimento-google-keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: all .2s ease;
}

.wk-filter-chip.is-active,
.wk-atendimento-google-keyword-chip.is-active {
  border-color: #93c5fd;
  background: #dbeafe;
  color: #1e3a8a;
}

.wk-atendimento-localizar-summary-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.wk-atendimento-google-results-info {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  text-align: right;
}

.wk-atendimento-google-filter-info {
  min-height: 18px;
}

.wk-atendimento-localizar-guide-grid {
  margin-top: 6px;
}

.wk-atendimento-localizar-guide-item {
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 14px;
}

.wk-atendimento-localizar-guide-item h5 {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.wk-atendimento-localizar-guide-item p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.wk-atendimento-google-results {
  margin-bottom: 0;
}

.wk-result-card,
.wk-atendimento-google-result-item {
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 16px;
  box-shadow: 0 3px 12px rgba(17, 24, 39, 0.05);
}

.wk-result-card:last-child,
.wk-atendimento-google-result-item:last-child {
  margin-bottom: 0;
}

.wk-result-card-head,
.wk-atendimento-localizar-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.wk-result-card-url,
.wk-atendimento-google-result-url {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wk-result-status-pill,
.wk-atendimento-localizar-status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

.wk-result-card-title,
.wk-atendimento-google-result-title {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 700;
}

.wk-result-card-title a,
.wk-atendimento-google-result-title a {
  color: #1f2937;
  text-decoration: none;
}

.wk-result-card-title a:hover,
.wk-atendimento-google-result-title a:hover {
  color: #1d4ed8;
  text-decoration: none;
}

.wk-result-card-tags,
.wk-atendimento-localizar-result-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.wk-result-card-tag,
.wk-atendimento-localizar-match-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid #c7d7fe;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
}

.wk-result-card-text,
.wk-atendimento-google-result-snippet {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 14px;
}

.wk-info-block,
.wk-atendimento-localizar-reason-card {
  margin-top: 12px;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  background: #f8fbff;
  padding: 12px;
}

.wk-info-block-title,
.wk-atendimento-localizar-reason-title {
  margin-bottom: 6px;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.wk-card-actions-row,
.wk-atendimento-localizar-result-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.wk-atendimento-localizar-results-card .alert {
  margin-bottom: 0;
}

.wk-atendimento-raiox-page .panel-heading h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wk-atendimento-raiox-panel-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wk-atendimento-raiox-back-btn {
  flex: 0 0 auto;
}

.wk-atendimento-raiox-card {
  margin-bottom: 12px;
}

.wk-atendimento-raiox-selector {
  position: relative;
}

.wk-atendimento-raiox-sugestoes {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  margin-top: 4px;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  max-height: 280px;
  overflow-y: auto;
}

.wk-atendimento-raiox-sugestao-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #eef2f7;
  background: #fff;
  padding: 10px 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wk-atendimento-raiox-sugestao-item:last-child {
  border-bottom: 0;
}

.wk-atendimento-raiox-sugestao-item:hover {
  background: #f8fbff;
}

.wk-atendimento-raiox-sugestao-item span {
  font-size: 12px;
  color: #64748b;
}

.wk-atendimento-raiox-sugestoes-info {
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
}

.wk-atendimento-raiox-status {
  margin-top: 8px;
}

.wk-atendimento-raiox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.wk-atendimento-raiox-header h4 {
  margin-bottom: 0;
}

.wk-atendimento-raiox-header .wk-atendimento-raiox-status {
  margin-top: 0;
}

.wk-atendimento-raiox-status-badge {
  display: inline-block;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
}

.wk-atendimento-raiox-line {
  margin-bottom: 8px;
}

.wk-atendimento-raiox-tenure-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.wk-atendimento-raiox-tenure-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border: 1px solid #fcd34d;
  border-radius: 999px;
  background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
}

.wk-atendimento-raiox-tenure-label {
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.wk-atendimento-raiox-tenure-value {
  color: #78350f;
  font-size: 14px;
  font-weight: 700;
}

.wk-atendimento-raiox-tenure-meta {
  color: #92400e;
  font-size: 12px;
}

.wk-atendimento-raiox-simple-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.wk-atendimento-raiox-simple-card .wk-atendimento-raiox-line:last-child {
  margin-bottom: 0;
}

.wk-atendimento-raiox-equal-row {
  display: flex;
  flex-wrap: wrap;
}

.wk-atendimento-raiox-equal-row > [class*="col-"] {
  display: flex;
}

.wk-atendimento-raiox-card-equal {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 572px;
}

.wk-atendimento-raiox-card-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
}

.wk-atendimento-raiox-contact-scroll {
  margin-top: 4px;
}

.wk-atendimento-raiox-data-block {
  position: relative;
  margin-top: 12px;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding: 14px 14px 14px 18px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.wk-atendimento-raiox-data-block:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: #94a3b8;
}

.wk-atendimento-raiox-data-block-title {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.wk-atendimento-raiox-data-block-value {
  color: #1e293b;
  line-height: 1.5;
  font-size: 14px;
}

.wk-atendimento-raiox-kpi {
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  background: #fff;
}

.wk-atendimento-raiox-kpi-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 2px;
}

.wk-atendimento-raiox-kpi-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.wk-atendimento-raiox-alert-item {
  margin-bottom: 8px;
}

.wk-atendimento-raiox-uso-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 220px;
  padding: 12px 8px 6px;
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  background: #fff;
}

.wk-atendimento-raiox-uso-col {
  flex: 1 1 0;
  min-width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.wk-atendimento-raiox-uso-bar {
  width: 100%;
  min-height: 4px;
  background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
  border-radius: 8px 8px 0 0;
}

.wk-atendimento-raiox-uso-value {
  font-size: 12px;
  color: #1e3a8a;
  font-weight: 700;
}

.wk-atendimento-raiox-uso-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
}

.wk-atendimento-raiox-contato-item,
.wk-atendimento-raiox-servico-item {
  border: 1px solid #d6e0ea;
  border-radius: 10px;
  background: #fff;
  border-left: 4px solid #93c5fd;
  padding: 10px 12px;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05);
}

.wk-atendimento-raiox-servico-meta {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

.wk-atendimento-raiox-servico-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.wk-atendimento-raiox-servico-badge {
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
}

.wk-atendimento-raiox-servico-meta-secondary {
  color: #475569;
}

.wk-atendimento-raiox-contact-list-shell {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f5f9 100%);
  overflow: hidden;
}

.wk-atendimento-raiox-contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #dbe3ef;
  background: rgba(255, 255, 255, 0.85);
}

.wk-atendimento-raiox-contact-title {
  flex: 1 1 auto;
  min-width: 120px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
}

.wk-atendimento-raiox-contact-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 1 auto;
}

.wk-atendimento-raiox-contact-filter-input {
  width: 170px;
  min-width: 130px;
  height: 28px;
  border-color: #cbd5e1;
  border-radius: 999px;
  box-shadow: none;
  font-size: 12px;
}

.wk-atendimento-raiox-contact-filter-input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 2px rgba(147, 197, 253, 0.2);
}

.wk-atendimento-raiox-contact-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.wk-atendimento-raiox-contact-list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow-y: auto;
  padding: 10px;
}

.wk-atendimento-raiox-cobranca-badge {
  margin-left: 6px;
  vertical-align: middle;
}

.wk-atendimento-raiox-saude-item {
  border: 1px solid #dbe3ef;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  background: #fff;
}

.wk-atendimento-raiox-saude-label {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.wk-atendimento-raiox-saude-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.wk-atendimento-raiox-ticket-summary {
  margin-top: 6px;
}

.wk-atendimento-raiox-ticket-list-shell {
  margin-top: 12px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f5f9 100%);
  overflow: hidden;
}

.wk-atendimento-raiox-ticket-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #dbe3ef;
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.wk-atendimento-raiox-ticket-list-title {
  flex: 1 1 auto;
  min-width: 160px;
}

.wk-atendimento-raiox-ticket-list-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 1 auto;
}

.wk-atendimento-raiox-ticket-filter-input {
  width: 180px;
  min-width: 140px;
  height: 28px;
  border-color: #cbd5e1;
  border-radius: 999px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
}

.wk-atendimento-raiox-ticket-filter-input:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 2px rgba(147, 197, 253, 0.2);
}

.wk-atendimento-raiox-ticket-list-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
}

.wk-atendimento-raiox-ticket-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 10px 0;
  background: rgba(255, 255, 255, 0.55);
}

.wk-atendimento-raiox-ticket-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px 8px 0 0;
  background: #f8fafc;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.wk-atendimento-raiox-ticket-tab:hover,
.wk-atendimento-raiox-ticket-tab:focus {
  border-color: #93c5fd;
  color: #1d4ed8;
  outline: none;
}

.wk-atendimento-raiox-ticket-tab.active {
  border-color: #93c5fd;
  border-bottom-color: #fff;
  background: #fff;
  color: #1d4ed8;
}

.wk-atendimento-raiox-ticket-tab span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 11px;
}

.wk-atendimento-raiox-ticket-tab.active span {
  background: #dbeafe;
  color: #1d4ed8;
}

.wk-atendimento-raiox-ticket-tab-concluidos {
  border-color: #bbf7d0;
  color: #166534;
}

.wk-atendimento-raiox-ticket-tab-concluidos:hover,
.wk-atendimento-raiox-ticket-tab-concluidos:focus,
.wk-atendimento-raiox-ticket-tab-concluidos.active {
  border-color: #86efac;
  color: #166534;
}

.wk-atendimento-raiox-ticket-tab-concluidos.active {
  border-bottom-color: #fff;
}

.wk-atendimento-raiox-ticket-tab-concluidos span,
.wk-atendimento-raiox-ticket-tab-concluidos.active span {
  background: #dcfce7;
  color: #166534;
}

.wk-atendimento-raiox-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 360px;
  overflow-y: auto;
  padding: 10px;
}

.wk-atendimento-raiox-ticket-pane {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.wk-atendimento-raiox-ticket-pane.active {
  display: flex;
}

.wk-atendimento-raiox-ticket-item {
  border: 1px solid #d6e0ea;
  border-radius: 10px;
  background: #fff;
  border-left: 4px solid #93c5fd;
  padding: 12px;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05);
}

.wk-atendimento-raiox-ticket-item-success {
  border-color: #bbf7d0;
  border-left-color: #22c55e;
  background: #f0fdf4;
}

.wk-atendimento-raiox-ticket-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.wk-atendimento-raiox-ticket-link {
  color: #1d4ed8;
  font-weight: 700;
}

.wk-atendimento-raiox-ticket-link:hover,
.wk-atendimento-raiox-ticket-link:focus {
  color: #1e40af;
  text-decoration: underline;
}

.wk-atendimento-raiox-ticket-status {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  padding: 4px 8px;
  white-space: nowrap;
}

.wk-atendimento-raiox-ticket-status-open {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1d4ed8;
}

.wk-atendimento-raiox-ticket-status-success {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}

.wk-atendimento-raiox-ticket-status-warning {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}

.wk-atendimento-raiox-ticket-status-neutral {
  background: #e5e7eb;
  border-color: #cbd5e1;
  color: #475569;
}

.wk-atendimento-raiox-ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}

.wk-atendimento-raiox-ticket-source {
  margin-top: 6px;
  font-size: 12px;
  color: #334155;
}

.wk-atendimento-raiox-ticket-highlight {
  margin-top: 8px;
  border: 1px solid #bfdbfe;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  background: #eff6ff;
  padding: 10px 12px;
}

.wk-atendimento-raiox-ticket-highlight-label {
  display: block;
  margin-bottom: 4px;
  color: #1e3a8a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.wk-atendimento-raiox-ticket-highlight-text {
  color: #1e293b;
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.wk-atendimento-raiox-ticket-empty {
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: #64748b;
  padding: 10px 12px;
}

.wk-atendimento-raiox-page .wk-mock-block {
  border-color: #fca5a5;
  background: #fff5f5;
}

.wk-atendimento-raiox-page .wk-mock-block h4,
.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-line,
.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-kpi-label,
.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-kpi-value,
.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-uso-value,
.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-uso-label,
.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-saude-label,
.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-saude-value {
  color: #b91c1c;
}

.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-kpi,
.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-uso-chart,
.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-saude-item {
  border-color: #fecaca;
  background: #fff;
}

.wk-atendimento-raiox-page .wk-mock-block .wk-atendimento-raiox-uso-bar {
  background: linear-gradient(180deg, #fb7185 0%, #dc2626 100%);
}

.wk-atendimento-raiox-page .wk-mock-block .alert {
  border-color: #fecaca;
  color: #991b1b;
}

.wk-status-positive {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.wk-status-negative {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

@media (max-width: 991px) {
  .wk-filter-form-grid,
  .wk-atendimento-localizar-form-grid {
    flex-direction: column;
  }

  .wk-filter-form-actions,
  .wk-atendimento-localizar-form-actions {
    width: 100%;
  }

  .wk-filter-form-actions .btn,
  .wk-atendimento-localizar-form-actions .btn {
    width: 100%;
  }

  .wk-extrato-cartao-page .wk-extrato-cartao-filter-actions .wk-filter-form-actions {
    width: 100%;
  }

  .wk-extrato-pagamentos-page .wk-extrato-pagamentos-filter-actions .wk-filter-form-actions {
    width: 100%;
  }

  .wk-extrato-consolidado-page .wk-extrato-consolidado-filter-actions .wk-filter-form-actions {
    width: 100%;
  }

  .wk-atividade-list .atividade-list-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .wk-atividade-list .atividade-actions {
    justify-content: flex-start;
  }

  .wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wk-atendimento-localizar-summary-text {
    width: 100%;
    align-items: flex-start;
  }

  .wk-atendimento-google-results-info {
    text-align: left;
  }

  .wk-card-actions-row,
  .wk-atendimento-localizar-result-actions {
    justify-content: flex-start;
  }

  .wk-atendimento-layout {
    display: block;
  }

  .wk-atendimento-sidebar {
    margin-bottom: 12px;
  }

  .wk-atendimento-raiox-equal-row {
    display: block;
  }

  .wk-atendimento-raiox-equal-row > [class*="col-"] {
    display: block;
  }

  .wk-atendimento-raiox-card-equal {
    display: block;
    height: auto;
  }

  .wk-atendimento-raiox-card-scroll {
    overflow: visible;
    padding-right: 0;
  }

  .wk-atendimento-raiox-ticket-head {
    flex-direction: column;
  }

  .wk-atendimento-raiox-ticket-list-header {
    flex-wrap: wrap;
  }

  .wk-atendimento-raiox-ticket-list-tools {
    width: 100%;
    justify-content: space-between;
  }

  .wk-atendimento-raiox-ticket-tabs {
    flex-wrap: wrap;
  }

  .wk-atendimento-raiox-ticket-tab {
    flex: 1 1 130px;
  }

  .wk-atendimento-raiox-ticket-filter-input {
    width: 100%;
  }

  .wk-atendimento-raiox-contact-header {
    flex-wrap: wrap;
  }

  .wk-atendimento-raiox-contact-tools {
    width: 100%;
    justify-content: space-between;
  }

  .wk-atendimento-raiox-contact-filter-input {
    width: 100%;
  }

  .wk-atendimento-raiox-back-btn {
    width: 100%;
    justify-content: center;
  }

  .wk-atendimento-raiox-ticket-status {
    white-space: normal;
  }

  .wk-atendimento-raiox-uso-col {
    min-width: 34px;
  }
}

@media (max-width: 767px) {
  .wk-section-header,
  .wk-atendimento-localizar-card-header {
    margin-bottom: 14px;
  }

  .wk-section-header .btn,
  .wk-atendimento-localizar-card-header .btn {
    width: 100%;
  }

  .wk-result-card-head,
  .wk-atendimento-localizar-result-head {
    align-items: flex-start;
  }

  .wk-result-card-title,
  .wk-atendimento-google-result-title {
    font-size: 19px;
  }

  .wk-extrato-cartao-page .wk-extrato-cartao-payment-cell {
    justify-content: flex-start;
  }

  .wk-extrato-pagamentos-page .wk-extrato-pagamentos-status-cell {
    justify-content: flex-start;
  }

  .wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wk-extrato-consolidado-page .wk-extrato-consolidado-match-card {
    min-width: 180px;
  }
}

@media (max-width: 540px) {
  .wk-extrato-consolidado-page .wk-extrato-consolidado-kpi-grid {
    grid-template-columns: 1fr;
  }
}

.wk-layout-content-fluid {
  max-width: none;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.wk-novos-clientes-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wk-novos-clientes-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wk-novos-clientes-toolbar h2 {
  margin: 0 0 6px;
}

.wk-novos-clientes-toolbar p {
  margin: 0;
  color: #5b6674;
}

.wk-novos-clientes-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wk-novos-clientes-alert {
  margin-bottom: 0;
}

.wk-novos-clientes-import-panel {
  margin-bottom: 0;
}

.wk-novos-clientes-import-submit {
  padding-top: 25px;
}

.wk-novos-clientes-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.wk-novos-clientes-summary-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #dfe6ee;
  box-shadow: 0 8px 22px rgba(25, 42, 70, 0.05);
}

.wk-novos-clientes-summary-label {
  color: #6b7785;
  font-size: 12px;
  line-height: 1.3;
  min-height: 30px;
}

.wk-novos-clientes-summary-value {
  font-size: 28px;
  font-weight: 700;
  color: #12263f;
}

.wk-novos-clientes-board {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.wk-novos-clientes-column {
  min-width: 320px;
  width: 320px;
  background: #eef3f8;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 260px);
}

.wk-novos-clientes-column-header {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 16px;
  border-top: 5px solid #3c8dbc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 18px rgba(25, 42, 70, 0.06);
}

.wk-novos-clientes-column-header h3 {
  margin: 0;
  font-size: 16px;
}

.wk-novos-clientes-column-body {
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wk-novos-clientes-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #dfe6ee;
  box-shadow: 0 12px 24px rgba(25, 42, 70, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wk-novos-clientes-card-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.wk-novos-clientes-card-title h4 {
  margin: 0 0 3px;
  font-size: 17px;
}

.wk-novos-clientes-card-meta {
  color: #6b7785;
  font-size: 12px;
}

.wk-novos-clientes-stage-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.wk-novos-clientes-card-block {
  border-top: 1px solid #edf1f5;
  padding-top: 10px;
  color: #344054;
  font-size: 13px;
}

.wk-novos-clientes-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.wk-novos-clientes-kpis div {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid #e6edf5;
}

.wk-novos-clientes-kpis strong {
  display: block;
  font-size: 19px;
  color: #12263f;
}

.wk-novos-clientes-kpis span {
  display: block;
  font-size: 11px;
  color: #6b7785;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.wk-novos-clientes-label {
  display: inline-block;
  margin-top: 6px;
}

.wk-novos-clientes-history {
  margin: 8px 0 0;
  padding-left: 18px;
}

.wk-novos-clientes-history li + li {
  margin-top: 8px;
}

.wk-novos-clientes-empty,
.wk-novos-clientes-empty-small {
  color: #6b7785;
  font-size: 13px;
}

@media (max-width: 1199px) {
  .wk-novos-clientes-summary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .wk-layout-content-fluid {
    padding-left: 8px;
    padding-right: 8px;
  }

  .wk-novos-clientes-toolbar {
    flex-direction: column;
  }

  .wk-novos-clientes-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wk-novos-clientes-column {
    min-width: 88vw;
    width: 88vw;
  }
}

.wk-feedback-shell {
  min-height: calc(100vh - 52px);
  padding: 18px 22px 30px;
  background: linear-gradient(135deg, #f2f6ff 0%, #dfe9fb 100%);
  color: #0f3057;
  pointer-events: auto;
}

.wk-feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  pointer-events: auto;
}

.wk-feedback-heading {
  flex: 1 1 auto;
  min-width: 0;
}

.wk-feedback-heading h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  color: #163468;
}

.wk-feedback-heading p {
  margin: 6px 0 0;
  font-size: 16px;
  color: rgba(22, 52, 104, 0.72);
}

.wk-feedback-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.wk-feedback-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(22, 52, 104, 0.10);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 10px 20px rgba(15, 48, 87, 0.08);
  color: #163468;
  font-size: 13px;
}

.wk-feedback-focus-actions {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  white-space: nowrap;
}

.wk-feedback-round-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(15, 48, 87, 0.14);
}

.wk-feedback-migrate-button {
  box-shadow: 0 10px 20px rgba(15, 48, 87, 0.14);
}

.wk-feedback-inline-alerts .alert {
  margin: 0 0 14px;
  pointer-events: auto;
}

.wk-feedback-import-card {
  background: rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  box-shadow: 0 20px 36px rgba(15, 48, 87, 0.10);
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  transition: all 220ms ease;
  border: 1px solid rgba(22, 52, 104, 0.08);
  pointer-events: auto;
}

.wk-feedback-import-card.is-open {
  max-height: 280px;
  padding-top: 18px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  overflow: visible;
}

.wk-feedback-import-card .bootstrap-select.open {
  z-index: 1060;
}

.wk-feedback-import-title {
  font-size: 18px;
  font-weight: 700;
  color: #163468;
  margin-bottom: 14px;
}

.wk-feedback-import-submit {
  margin-top: 24px;
}

.wk-feedback-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  min-height: calc(100vh - 220px);
  pointer-events: auto;
}

.wk-feedback-client-strip {
  background: rgba(22, 52, 104, 0.06);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(22, 52, 104, 0.08), 0 16px 32px rgba(15, 48, 87, 0.08);
  padding: 16px 12px;
  overflow-y: auto;
  pointer-events: auto;
}

.wk-feedback-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #163468;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px 14px;
}

.wk-feedback-client-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wk-feedback-client-item,
.wk-feedback-client-empty {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(15, 48, 87, 0.08);
  padding: 14px 14px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  border: 2px solid transparent;
}

.wk-feedback-client-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(15, 48, 87, 0.14);
}

.wk-feedback-client-item.is-active {
  border-color: rgba(60, 141, 188, 0.42);
  background: linear-gradient(135deg, rgba(233, 242, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.wk-feedback-client-item.is-aligned-today {
  box-shadow: 0 0 0 2px rgba(25, 135, 84, 0.16), 0 8px 18px rgba(15, 48, 87, 0.12);
}

.wk-feedback-client-item.is-missing-note-today {
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.98), rgba(255, 255, 255, 0.96));
  border-left-color: #dc2626;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.18), 0 8px 18px rgba(15, 48, 87, 0.10);
}

.wk-feedback-client-name {
  font-size: 17px;
  font-weight: 700;
  color: #163468;
  line-height: 1.15;
}

.wk-feedback-client-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.wk-feedback-client-main {
  min-width: 0;
  flex: 1 1 auto;
}

.wk-feedback-client-stage {
  margin-top: 6px;
  color: rgba(22, 52, 104, 0.70);
  font-size: 13px;
}

.wk-feedback-client-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.wk-feedback-client-action {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(22, 52, 104, 0.78);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(22, 52, 104, 0.10);
  text-decoration: none;
}

.wk-feedback-client-action:hover,
.wk-feedback-client-action:focus {
  color: #163468;
  background: #fff;
  text-decoration: none;
}

.wk-feedback-client-empty {
  cursor: default;
  color: rgba(22, 52, 104, 0.70);
}

.wk-feedback-cards-area {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 28px;
  pointer-events: auto;
}

.wk-feedback-cards-shell {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 18px;
  box-sizing: border-box;
  pointer-events: auto;
}

.wk-feedback-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 28px rgba(15, 48, 87, 0.12);
  color: #163468;
  font-size: 18px;
  pointer-events: auto;
}

.wk-feedback-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.wk-feedback-track {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  overflow: hidden;
  pointer-events: auto;
}

.wk-feedback-card {
  width: 390px;
  min-height: 740px;
  padding: 20px 20px 16px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.86));
  box-shadow: 0 24px 46px rgba(15, 48, 87, 0.14);
  opacity: 0.56;
  transform: scale(0.88);
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
  position: relative;
  will-change: transform, opacity;
  pointer-events: auto;
  z-index: 1;
}

.wk-feedback-card[data-variant="left"],
.wk-feedback-card[data-variant="right"] {
  cursor: pointer;
  z-index: 2;
}

.wk-feedback-track.is-flip-animating .feedback-card {
  visibility: hidden;
}

.wk-feedback-client-item {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.wk-feedback-client-item.is-active {
  animation: wkFeedbackClientPulse 360ms ease;
}

@keyframes wkFeedbackClientPulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 rgba(15, 48, 87, 0);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 14px 24px rgba(15, 48, 87, 0.18);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 12px 22px rgba(15, 48, 87, 0.14);
  }
}

.wk-feedback-ghost-card {
  box-sizing: border-box;
}

.wk-feedback-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 7px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--wk-stage-color, #3c8dbc), rgba(255,255,255,0));
}

.wk-feedback-card.is-active {
  width: 520px;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 32px 62px rgba(15, 48, 87, 0.22);
  z-index: 3;
}

.wk-feedback-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wk-feedback-card-empty {
  font-size: 18px;
  color: rgba(22, 52, 104, 0.60);
  text-align: center;
  line-height: 1.5;
}

.wk-feedback-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.wk-feedback-stage-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wk-feedback-mini-nav {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(22, 52, 104, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #163468;
}

.wk-feedback-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--wk-stage-color, #3c8dbc);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.wk-feedback-age-label {
  color: rgba(22, 52, 104, 0.60);
  font-size: 13px;
  font-weight: 600;
}

.wk-feedback-card-title {
  margin-top: 18px;
}

.wk-feedback-card-title h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 700;
  color: #163468;
}

.wk-feedback-contact-line {
  font-size: 13px;
  color: rgba(22, 52, 104, 0.66);
  margin-bottom: 4px;
}

.wk-feedback-card-section {
  margin-top: 14px;
  padding: 14px 16px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(22, 52, 104, 0.08);
}

.wk-feedback-people-section {
  padding-top: 12px;
}

.wk-feedback-contact-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wk-feedback-contact-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4c6ef5;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(76, 110, 245, 0.22);
}

.wk-feedback-contact-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wk-feedback-contact-meta strong {
  font-size: 15px;
  line-height: 1.2;
  color: #163468;
}

.wk-feedback-contact-meta span {
  color: rgba(22, 52, 104, 0.62);
  font-size: 12px;
  line-height: 1.25;
  word-break: break-word;
}

.wk-feedback-section-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(22, 52, 104, 0.48);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.wk-feedback-section-value {
  font-size: 16px;
  font-weight: 700;
  color: #163468;
}

.wk-feedback-section-note {
  margin-top: 4px;
  color: rgba(22, 52, 104, 0.60);
  font-size: 12px;
  line-height: 1.4;
}

.wk-feedback-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wk-feedback-kpis > div {
  text-align: center;
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(239, 245, 255, 0.96);
  border: 1px solid rgba(22, 52, 104, 0.08);
}

.wk-feedback-kpis strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  color: #163468;
}

.wk-feedback-kpis span {
  display: block;
  margin-top: 6px;
  color: rgba(22, 52, 104, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 700;
}

.wk-feedback-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wk-feedback-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  border-radius: 8px;
  padding: 7px 10px;
  background: #ffffff;
  border: 1px solid rgba(22, 52, 104, 0.16);
  font-size: 12px;
  color: rgba(22, 52, 104, 0.70);
}

.wk-feedback-action-row {
  margin-top: 10px;
}

.wk-feedback-pill-success {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(25, 135, 84, 0.16);
  color: #0f5132;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wk-feedback-history-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wk-feedback-history-list li {
  margin-bottom: 8px;
  color: rgba(22, 52, 104, 0.72);
  font-size: 12px;
}

.wk-feedback-history-list li strong {
  display: block;
  color: #163468;
  font-size: 13px;
  margin-bottom: 2px;
}

.wk-feedback-history-list li small {
  display: block;
  margin-top: 4px;
  color: rgba(22, 52, 104, 0.52);
}

.wk-feedback-empty-note {
  color: rgba(22, 52, 104, 0.52);
  font-size: 13px;
}

.wk-feedback-card-footer {
  margin-top: 12px;
}

.wk-feedback-card-footer .btn-link {
  padding-left: 0;
  color: #2b73af;
  font-weight: 700;
}

@media (max-width: 1400px) {
  .wk-feedback-track {
    gap: 18px;
  }

  .wk-feedback-card {
    width: 340px;
  }

  .wk-feedback-card.is-active {
    width: 440px;
  }
}

@media (max-width: 1200px) {
  .wk-feedback-content {
    grid-template-columns: 230px 1fr;
    gap: 18px;
  }

  .wk-feedback-cards-shell {
    grid-template-columns: 44px 1fr 44px;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .wk-feedback-header {
    flex-direction: column;
  }

  .wk-feedback-topbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .wk-feedback-focus-actions {
    flex-wrap: wrap;
    white-space: normal;
  }

  .wk-feedback-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wk-feedback-client-strip {
    max-height: 240px;
  }

  .wk-feedback-track {
    flex-direction: column;
    align-items: center;
  }

  .wk-feedback-card,
  .wk-feedback-card.is-active {
    width: 100%;
    max-width: 560px;
    opacity: 1;
    transform: none;
  }

  .wk-feedback-cards-shell {
    grid-template-columns: 1fr;
  }

  .wk-feedback-nav {
    display: none;
  }
}

.feedback-card {
  flex: 0 0 clamp(340px, 34vw, 420px);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.75));
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(15, 48, 87, 0.18);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: clamp(520px, 70vh, 640px);
  opacity: 0.55;
  transform: scale(0.88);
  transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  position: relative;
}

.feedback-card[data-variant='left'],
.feedback-card[data-variant='right'] {
  transform: scale(0.92);
}

.feedback-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, rgba(17, 43, 92, 0.2), rgba(17, 43, 92, 0));
  opacity: 0.6;
}

.feedback-card.is-active {
  flex-basis: clamp(340px, 34vw, 420px);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 32px 62px rgba(15, 48, 87, 0.24);
  filter: saturate(1.1);
  z-index: 2;
}

.feedback-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.feedback-card header .stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #1f77b4;
}

.feedback-card header .age-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(17, 43, 92, 0.65);
}

.feedback-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: #071d49;
}

.feedback-card .contact-line {
  font-size: 13px;
  color: rgba(7, 29, 73, 0.7);
  margin-top: -12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.feedback-card .contact-line a {
  color: rgba(7, 29, 73, 0.7);
  margin-right: 2px;
}

.feedback-card .contact-line .contact-line-name {
  font-weight: 600;
  color: #071d49;
}

.wk-feedback-ticket-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.wk-feedback-support-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.wk-feedback-support-item {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-left: 4px solid rgba(15, 76, 129, 0.64);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(7, 29, 73, 0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 10px 10px 10px 12px;
}

.wk-feedback-support-link,
.wk-feedback-support-standalone-link {
  color: #071d49;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
  min-width: 0;
  text-decoration: none;
}

.wk-feedback-support-card-head {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  min-width: 0;
}

.wk-feedback-support-card-head strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.wk-feedback-support-head-actions {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
}

.wk-feedback-support-team-badges {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  min-width: 0;
}

.wk-feedback-support-team-badge {
  align-items: center;
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  height: 21px;
  justify-content: center;
  line-height: 1;
  max-width: 62px;
  overflow: hidden;
  padding: 0 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wk-feedback-support-team-badge.is-more {
  background: #64748b;
  min-width: 26px;
}

.wk-feedback-support-card-head em {
  background: rgba(15, 76, 129, 0.09);
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: 999px;
  color: rgba(15, 76, 129, 0.84);
  flex: 0 0 auto;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  padding: 3px 7px;
}

.wk-feedback-support-link:hover,
.wk-feedback-support-standalone-link:hover {
  color: #0f4c81;
  text-decoration: none;
}

.wk-feedback-support-link strong,
.wk-feedback-support-standalone-link strong {
  font-size: 13px;
  line-height: 1.2;
}

.wk-feedback-support-title,
.wk-feedback-support-standalone-link span {
  color: rgba(7, 29, 73, 0.72);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.wk-feedback-support-meta {
  color: rgba(7, 29, 73, 0.58);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.25;
  min-width: 0;
}

.wk-feedback-support-meta span {
  overflow-wrap: anywhere;
}

.wk-feedback-support-task-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.wk-feedback-support-task-chip {
  background: rgba(15, 76, 129, 0.09);
  border: 1px solid rgba(15, 76, 129, 0.18);
  border-radius: 999px;
  color: #0f4c81;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 100%;
  padding: 4px 8px;
  text-decoration: none;
}

.wk-feedback-support-task-chip:hover {
  background: rgba(15, 76, 129, 0.14);
  color: #0f4c81;
  text-decoration: none;
}

.wk-feedback-support-standalone {
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(17, 43, 92, 0.16);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
  padding: 10px;
  min-width: 0;
}

.wk-feedback-support-subtitle {
  color: rgba(7, 29, 73, 0.55);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-section {
  background: rgba(255,255,255,0.55);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: inset 0 0 0 1px rgba(17, 43, 92, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-section .section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(7, 29, 73, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-section .section-value {
  font-weight: 600;
  font-size: 16px;
  color: #071d49;
}

.card-section .section-note {
  font-size: 13px;
  color: rgba(7, 29, 73, 0.6);
  line-height: 1.4;
}

.alignment-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alignment-history-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alignment-history {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
}

.alignment-chip {
  white-space: nowrap;
  min-width: 110px;
  text-align: center;
}

.alignment-note-card {
  appearance: none;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 43, 92, 0.1);
  border-radius: 8px;
  color: #071d49;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 92px;
  min-width: 0;
  padding: 10px;
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  width: 100%;
}

.alignment-note-card:hover,
.alignment-note-card:focus {
  border-color: rgba(15, 76, 129, 0.35);
  box-shadow: 0 8px 18px rgba(17, 43, 92, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.alignment-note-head {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: space-between;
  min-width: 0;
}

.alignment-note-head strong {
  color: #0f4c81;
  font-size: 13px;
  line-height: 1.2;
}

.alignment-note-head em {
  background: rgba(25, 135, 84, 0.13);
  border-radius: 999px;
  color: #0a3622;
  flex: 0 0 auto;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  padding: 3px 7px;
  text-transform: uppercase;
}

.alignment-note-author {
  color: rgba(7, 29, 73, 0.55);
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alignment-note-preview {
  color: rgba(7, 29, 73, 0.74);
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.35;
  max-height: 49px;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.alignment-empty {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(7, 29, 73, 0.6);
}

.alignment-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.alignment-confirm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: normal;
}

.alignment-confirm-btn.is-complete {
  background: #198754;
  border-color: #198754;
  color: #ffffff;
}

.alignment-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(25, 135, 84, 0.18);
  color: #0a3622;
  border-radius: 999px;
  padding: 4px 10px;
}

.wk-feedback-note-modal {
  border-radius: 8px;
  overflow: hidden;
}

.wk-feedback-note-modal .modal-header {
  border-bottom-color: rgba(17, 43, 92, 0.1);
}

.wk-feedback-note-modal .modal-title {
  color: #071d49;
  font-weight: 700;
}

.wk-feedback-note-textarea {
  min-height: 150px;
  resize: vertical;
}

.wk-feedback-note-read-meta {
  color: rgba(7, 29, 73, 0.58);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.wk-feedback-note-read-content {
  background: rgba(15, 76, 129, 0.05);
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: 8px;
  color: #071d49;
  line-height: 1.5;
  min-height: 110px;
  overflow-wrap: anywhere;
  padding: 14px;
  white-space: pre-wrap;
}

.participant-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 38px;
  max-width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: all 220ms ease;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.participant-chip .initial {
  font-size: 16px;
  transition: all 160ms ease;
}

.participant-chip .name {
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: all 160ms ease;
}

.participant-chip.is-hover {
  max-width: 150px;
  border-radius: 999px;
  padding: 0 16px;
  gap: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  justify-content: flex-start;
}

.participant-chip.is-hover .name {
  opacity: 1;
  max-width: 110px;
}

.participant-chip.is-hover .initial {
  opacity: 0;
  width: 0;
}

.wk-feedback-move-row {
  margin-top: 8px;
  color: rgba(7, 29, 73, 0.7);
  font-size: 13px;
}

.wk-feedback-move-row strong {
  display: block;
  color: #071d49;
}

.wk-feedback-move-row small {
  display: block;
  margin-top: 3px;
  color: rgba(7, 29, 73, 0.55);
}

.refresh-card-btn {
  margin-left: auto;
}

.wk-teste-page .panel {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.wk-teste-page .panel-heading {
  padding: 12px 16px;
}

.wk-teste-page .panel-body {
  padding: 16px;
}

.wk-teste-page .panel-footer {
  background: #f8fafc;
}

.wk-teste-page .wk-teste-card-footer {
  padding: 14px 16px;
  border-top: 1px solid #e5e7eb;
}

.wk-teste-page .wk-teste-card-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 14px 0;
}

.wk-teste-page .wk-teste-card-docs .btn {
  border-radius: 4px;
}

.wk-teste-page .wk-teste-card-collapse {
  margin-top: 10px;
}

.wk-teste-page .wk-teste-card-collapse .bs-callout {
  margin-bottom: 0;
}

.wk-teste-page .wk-teste-card-collapse pre {
  margin-bottom: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.wk-teste-page .wk-teste-card-body-action {
  margin-top: 10px;
}

.wk-teste-page .wk-teste-pagamentos-toggle {
  margin-top: -2px;
}

.wk-teste-page .wk-teste-pagamentos-panel {
  margin-bottom: 0;
}
