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

:root {
  --nr1-ink: #16324a;
  --nr1-ink-soft: #2d4b63;
  --nr1-muted: #6f8091;
  --nr1-line: #dbe5ee;
  --nr1-line-strong: #c6d5e2;
  --nr1-surface: #ffffff;
  --nr1-surface-soft: #f7fafc;
  --nr1-surface-deep: #eef4f9;
  --nr1-primary: #1f5f93;
  --nr1-primary-deep: #12324f;
  --nr1-primary-soft: #edf5fc;
  --nr1-success-soft: #eef9f3;
  --nr1-warning-soft: #fff7e6;
  --nr1-danger-soft: #fff0f1;
  --nr1-shadow: 0 20px 40px rgba(12, 39, 62, 0.08);
  --nr1-shadow-soft: 0 14px 28px rgba(12, 39, 62, 0.06);
  --nr1-radius-xl: 28px;
  --nr1-radius-lg: 22px;
  --nr1-radius-md: 18px;
  --nr1-radius-sm: 14px;
  --nr1-shell-max: 1320px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(79, 149, 207, 0.12), transparent 24%),
    linear-gradient(180deg, #f5f8fb 0%, #eef3f8 100%);
  font-family: 'Manrope', 'Segoe UI', Roboto, sans-serif;
  color: var(--nr1-ink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--nr1-primary-deep);
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  color: var(--nr1-primary);
}

a:hover {
  color: #184b75;
}

.container,
.container-fluid {
  --bs-gutter-x: clamp(1rem, 2.2vw, 1.5rem);
}

.container.mt-4,
.container.mt-5,
.container-fluid.mt-3,
.container-fluid.mt-4,
.container-fluid.mt-5,
main.container,
main.container-fluid {
  margin-top: 1.7rem !important;
}

.card,
.nr1-panel,
.nr1-empty-card {
  border: 1px solid var(--nr1-line);
  border-radius: var(--nr1-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: var(--nr1-shadow-soft);
  overflow: hidden;
}

.card {
  margin-bottom: 1.4rem;
}

.card-body {
  padding: 1.35rem;
}

.card-header {
  padding: 1rem 1.35rem;
  border-bottom: 1px solid var(--nr1-line);
  background: linear-gradient(180deg, #f7fafc 0%, #f1f6fb 100%);
  color: var(--nr1-primary-deep);
}

.card-header.text-white,
.card-header .text-white {
  color: var(--nr1-primary-deep) !important;
}

.alert {
  border: 1px solid transparent;
  border-radius: var(--nr1-radius-md);
  box-shadow: 0 12px 24px rgba(12, 39, 62, 0.05);
}

.alert-info,
.alert-light {
  border-color: #d6e4f0;
  background: linear-gradient(180deg, #f9fcff 0%, #f2f7fb 100%);
  color: var(--nr1-ink);
}

.alert-success {
  border-color: #cfe8da;
  background: linear-gradient(180deg, #f7fcf9 0%, #eef9f3 100%);
  color: #1f5a3a;
}

.alert-warning {
  border-color: #f1db9f;
  background: linear-gradient(180deg, #fffdf5 0%, #fff7e6 100%);
  color: #7a5a14;
}

.alert-danger {
  border-color: #efc7cb;
  background: linear-gradient(180deg, #fff9f9 0%, #fff0f1 100%);
  color: #8d2733;
}

.badge {
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.text-bg-primary {
  background-color: #edf5fc !important;
  color: var(--nr1-primary) !important;
}

.text-bg-success {
  background-color: var(--nr1-success-soft) !important;
  color: #1c6a45 !important;
}

.text-bg-secondary,
.bg-secondary {
  background-color: #eef2f6 !important;
  color: #506070 !important;
}

.btn {
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-success {
  border-color: transparent;
  background: linear-gradient(135deg, #143353 0%, #1f5f93 100%);
  box-shadow: 0 12px 24px rgba(20, 51, 83, 0.18);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-success:hover,
.btn-success:focus {
  border-color: transparent;
  background: linear-gradient(135deg, #163c61 0%, #246ca7 100%);
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-warning,
.btn-outline-danger,
.btn-secondary,
.btn-light {
  border-color: var(--nr1-line-strong);
  background: #fff;
  color: var(--nr1-ink);
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover,
.btn-outline-success:hover,
.btn-outline-warning:hover,
.btn-outline-danger:hover,
.btn-secondary:hover,
.btn-light:hover {
  border-color: #b8cede;
  background: #f6faff;
  color: var(--nr1-primary-deep);
}

.form-label {
  margin-bottom: 0.45rem;
  color: var(--nr1-ink-soft);
  font-weight: 700;
}

.form-control,
.form-select,
.input-group-text,
textarea.form-control {
  min-height: 50px;
  border: 1px solid var(--nr1-line);
  border-radius: 16px;
  background: #f7fafc;
  color: var(--nr1-ink);
  box-shadow: none;
}

textarea.form-control {
  min-height: auto;
}

.form-control:focus,
.form-select:focus {
  border-color: #97bad9;
  background: #fff;
  box-shadow: 0 0 0 0.22rem rgba(31, 95, 147, 0.12);
}

.form-check-input {
  border-color: #b9cddd;
}

.form-check-input:checked {
  background-color: var(--nr1-primary);
  border-color: var(--nr1-primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 95, 147, 0.14);
}

.input-group > .btn {
  border-radius: 16px;
}

.input-group > .form-control:not(:last-child),
.input-group > .form-select:not(:last-child) {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.input-group > .btn:not(:first-child) {
  margin-left: 0.5rem;
}

.invalid-feedback {
  display: block;
  margin-top: 0.35rem;
  color: #bb3445;
  font-size: 0.88rem;
}

.table-responsive {
  border-radius: 20px;
}

.table {
  margin-bottom: 0;
  --bs-table-bg: transparent;
}

.table thead th {
  border: 0;
  padding: 0.95rem 1rem;
  color: #6b7e91;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f3f7fb;
}

.table thead th:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.table thead th:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.table tbody tr {
  border-bottom: 1px solid #edf2f7;
}

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

.table td,
.table th {
  vertical-align: middle;
}

.table tbody td {
  padding: 1rem;
  border: 0;
  color: var(--nr1-ink);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  --bs-table-bg: #eef5fb !important;
}

.modal-content {
  border: 1px solid var(--nr1-line);
  border-radius: 22px;
  box-shadow: var(--nr1-shadow);
}

.modal-header,
.modal-footer {
  border-color: #edf2f7;
}

.modal-header {
  background: linear-gradient(180deg, #f8fbfd 0%, #f1f6fb 100%);
}

.upload-box {
  min-height: 180px;
  border: 1.5px dashed #c6d7e5;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(79, 149, 207, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.upload-box:hover {
  border-color: #9db8cf;
  transform: translateY(-1px);
}

.upload-box img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.upload-box span {
  max-width: 280px;
  color: var(--nr1-muted);
  font-weight: 700;
}

.nr1-page-shell {
  max-width: var(--nr1-shell-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 2.2vw, 1.5rem);
  padding-right: clamp(1rem, 2.2vw, 1.5rem);
}

.nr1-hero {
  border: 1px solid var(--nr1-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(79, 149, 207, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: var(--nr1-shadow-soft);
  padding: 1.2rem 1.3rem;
}

.nr1-hero-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

.nr1-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d7e5f1;
  background: #f4f9fd;
  color: var(--nr1-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nr1-page-title {
  margin: 0.45rem 0 0.15rem;
  color: var(--nr1-ink);
  font-size: clamp(1.34rem, 2vw, 1.86rem);
  line-height: 1.06;
  font-weight: 800;
}

.nr1-page-description {
  max-width: 760px;
  margin: 0;
  color: var(--nr1-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.nr1-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.nr1-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.nr1-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--nr1-line);
  border-radius: 999px;
  background: #fff;
  color: var(--nr1-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.nr1-meta-chip i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #edf4fa;
  color: var(--nr1-primary);
  font-size: 0.8rem;
}

.nr1-stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 1.25rem;
}

.nr1-stat-card {
  border: 1px solid var(--nr1-line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  box-shadow: 0 14px 28px rgba(12, 39, 62, 0.05);
  padding: 1rem 1.1rem;
}

.nr1-stat-label {
  margin: 0;
  color: var(--nr1-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nr1-stat-value {
  margin: 0.35rem 0 0;
  color: var(--nr1-ink);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
}

.nr1-stat-text {
  margin-top: 0.22rem;
  color: var(--nr1-muted);
  font-size: 0.85rem;
}

.nr1-section-stack > * + * {
  margin-top: 1.25rem;
}

.nr1-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.25rem 0;
}

.nr1-panel-title {
  margin: 0;
  color: var(--nr1-ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.nr1-panel-description {
  margin: 0.22rem 0 0;
  color: var(--nr1-muted);
  font-size: 0.9rem;
}

.nr1-panel-body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.nr1-empty-state {
  padding: 3.2rem 1.5rem;
  text-align: center;
}

.nr1-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1rem;
  border-radius: 22px;
  background: #eef5fb;
  color: var(--nr1-primary);
  font-size: 1.6rem;
}

.nr1-empty-title {
  color: var(--nr1-ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.nr1-empty-text {
  max-width: 560px;
  margin: 0.6rem auto 0;
  color: var(--nr1-muted);
  line-height: 1.65;
}

body.nr1-app-shell {
  padding-top: 78px;
}

body.nr1-app-shell .navbar.fixed-top {
  z-index: 1080;
}

body.nr1-app-shell .navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 224, 234, 0.92) !important;
}

body.nr1-app-shell .navbar .dropdown-menu {
  z-index: 1085;
  border: 1px solid var(--nr1-line);
  border-radius: 18px;
  box-shadow: var(--nr1-shadow-soft);
  padding: 0.45rem;
}

body.nr1-app-shell .navbar .dropdown-item {
  border-radius: 12px;
  padding: 0.62rem 0.8rem;
}

body.nr1-app-shell .navbar .dropdown-item.active,
body.nr1-app-shell .navbar .dropdown-item:active {
  background: linear-gradient(135deg, #143353 0%, #1f5f93 100%);
  color: #fff;
}

body.nr1-app-shell .navbar-expand-lg .navbar-nav {
  align-items: center;
  gap: 0.08rem;
}

body.nr1-app-shell .navbar-expand-lg .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

body.nr1-app-shell .navbar-light .navbar-nav .nav-link {
  color: var(--nr1-ink);
  transition: background-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
  padding: 0.58rem 0.82rem;
  border-radius: 12px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  line-height: 1;
}

body.nr1-app-shell .navbar-light .navbar-nav .nav-link:hover,
body.nr1-app-shell .navbar-light .navbar-nav .nav-link:focus {
  background-color: #eef5fb;
  color: var(--nr1-primary);
}

body.nr1-app-shell .navbar-light .navbar-nav .nav-link.active {
  background: linear-gradient(135deg, #143353 0%, #1f5f93 100%);
  color: #fff;
  box-shadow: 0 10px 18px rgba(20, 51, 83, 0.16);
}

body.nr1-app-shell .consultor-brand-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #d7e5f1;
  background: #f4f8fc;
  color: #36516d;
  font-size: 1rem;
}

body.nr1-app-shell .consultor-client-switcher {
  min-width: auto;
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.3rem;
  text-align: left;
  padding-left: 0.82rem !important;
  padding-right: 0.82rem !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 12px;
}

body.nr1-app-shell .consultor-client-switcher-value {
  display: inline-block;
  max-width: 100%;
  font-size: 0.94rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.nr1-app-shell .navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

body.nr1-app-shell .navbar-brand-title {
  font-weight: 800;
  color: var(--nr1-ink);
}

body.nr1-app-shell .navbar-brand-subtitle {
  font-size: 0.74rem;
  color: var(--nr1-muted);
}

body.nr1-app-shell .consultor-client-strip {
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.92) 0%, rgba(248, 250, 252, 0.96) 100%);
  border-bottom: 1px solid #dde6ef;
  padding: 0.35rem 0 0.65rem;
}

body.nr1-app-shell .consultor-subnav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border: 1px solid #dbe4ee;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--nr1-shadow-soft);
}

body.nr1-app-shell .consultor-subnav-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

body.nr1-app-shell .consultor-subnav-head-copy {
  min-width: 0;
}

body.nr1-app-shell .consultor-client-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #edf3f8 100%);
  border: 1px solid #d7e1eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.nr1-app-shell .consultor-client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

body.nr1-app-shell .consultor-client-logo-fallback {
  font-size: 1rem;
  color: var(--nr1-primary);
}

body.nr1-app-shell .consultor-subnav-kicker {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f8093;
}

body.nr1-app-shell .consultor-subnav-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--nr1-ink);
}

body.nr1-app-shell .consultor-subnav-caption {
  margin: 0.22rem 0 0;
  color: #6d8092;
  font-size: 0.84rem;
  line-height: 1.42;
}

body.nr1-app-shell .consultor-subnav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-top: 1px solid #e5edf4;
  padding-top: 0.72rem;
}

body.nr1-app-shell .consultor-subnav-menu-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #6a7d90;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.nr1-app-shell .consultor-subnav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

body.nr1-app-shell .consultor-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  border: 1px solid #d6e0ea;
  background: #fff;
  color: #30485f;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

body.nr1-app-shell .consultor-subnav-link:hover {
  color: var(--nr1-primary-deep);
  border-color: #bdd2e7;
  background: #f6faff;
  transform: translateY(-1px);
}

body.nr1-app-shell .consultor-subnav-link.is-active {
  color: #fff;
  border-color: #1d5c92;
  background: linear-gradient(135deg, #143353 0%, #1e639b 100%);
  box-shadow: 0 10px 18px rgba(20, 51, 83, 0.16);
}

body.nr1-app-shell .consultor-subnav-link.is-disabled {
  pointer-events: none;
  color: #9aa7b7;
  border-color: #e0e7ee;
  background: #f3f6f9;
  box-shadow: none;
}

body.nr1-app-shell .consultor-subnav-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 0.9rem;
}

body.nr1-app-shell .consultor-subnav-empty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

body.nr1-app-shell .nav-link.disabled-nav {
  color: #9aa4af;
  cursor: not-allowed;
}

footer.nr1-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(214, 224, 234, 0.9);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
}

.colab-header-card,
.colab-toolbar,
.colab-table-card,
.colab-empty-card {
  border: 1px solid var(--nr1-line);
  border-radius: 24px;
  background: var(--nr1-surface);
  box-shadow: 0 18px 36px rgba(12, 39, 62, 0.06);
}

.colab-header-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(79, 149, 207, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.colab-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.colab-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d7e5f1;
  background: #f4f9fd;
  color: var(--nr1-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.colab-page-title {
  margin: 0.45rem 0 0.15rem;
  color: var(--nr1-ink);
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  line-height: 1.08;
  font-weight: 800;
}

.colab-page-description {
  max-width: 680px;
  margin: 0;
  color: var(--nr1-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.colab-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
}

.colab-btn-primary {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.68rem 0.95rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #143353 0%, #1f5f93 100%);
  box-shadow: 0 12px 24px rgba(20, 51, 83, 0.18);
}

.colab-btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, #163c61 0%, #246ca7 100%);
}

.colab-btn-secondary {
  border: 1px solid #d4e0ea;
  border-radius: 12px;
  padding: 0.68rem 0.95rem;
  font-weight: 700;
  color: var(--nr1-ink);
  background: #fff;
}

.colab-btn-secondary:hover {
  color: var(--nr1-ink);
  background: #f5f9fc;
}

.colab-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.colab-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--nr1-line);
  border-radius: 999px;
  background: #fff;
  color: var(--nr1-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.colab-meta-chip i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #edf4fa;
  color: var(--nr1-primary);
  font-size: 0.78rem;
}

.colab-toolbar,
.colab-table-card,
.colab-empty-card {
  margin-top: 1.25rem;
}

.colab-toolbar {
  padding: 1.2rem;
}

.colab-toolbar-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 0.8fr);
  align-items: center;
}

.colab-toolbar-filters {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.colab-search {
  position: relative;
}

.colab-search i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: #7a8b9a;
  font-size: 0.95rem;
}

.colab-search input,
.colab-toolbar select {
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--nr1-line);
  background: #f7fafc;
}

.colab-search input {
  padding-left: 2.8rem;
}

.colab-search input:focus,
.colab-toolbar select:focus {
  border-color: #97bad9;
  box-shadow: 0 0 0 0.2rem rgba(31, 95, 147, 0.12);
}

.colab-toolbar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  color: var(--nr1-muted);
  font-size: 0.92rem;
}

.colab-toolbar-meta strong {
  color: var(--nr1-ink);
  font-weight: 800;
}

.colab-table-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.2rem 0;
}

.colab-table-card-header h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--nr1-ink);
}

.colab-table-card-header p {
  margin: 0.18rem 0 0;
  color: var(--nr1-muted);
  font-size: 0.92rem;
}

.colab-table-wrap {
  padding: 1rem 1.2rem 1.2rem;
}

.colab-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #edf2f7;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.colab-pagination-summary {
  color: var(--nr1-muted);
  font-size: 0.88rem;
}

.colab-pagination-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.colab-page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 0.8rem;
  border: 1px solid #d6e2ed;
  border-radius: 12px;
  background: #fff;
  color: var(--nr1-ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.colab-page-btn:hover:not(:disabled) {
  border-color: #a8c3db;
  background: #f5f9fc;
}

.colab-page-btn.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #143353 0%, #1f5f93 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(20, 51, 83, 0.14);
}

.colab-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.colab-table {
  margin: 0;
  --bs-table-bg: transparent;
}

.colab-table tbody td {
  padding: 1rem;
}

.colab-person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.colab-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e7f0f8 0%, #d5e6f5 100%);
  color: var(--nr1-primary-deep);
  font-size: 0.92rem;
  font-weight: 800;
  flex-shrink: 0;
}

.colab-name {
  margin: 0;
  color: var(--nr1-ink);
  font-size: 1rem;
  font-weight: 800;
}

.colab-meta,
.colab-inline-meta {
  margin-top: 0.18rem;
  color: var(--nr1-muted);
  font-size: 0.85rem;
}

.colab-stack-title {
  color: #3c5367;
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.colab-stack-value {
  margin-top: 0.28rem;
  color: var(--nr1-ink);
  font-weight: 700;
}

.colab-panel[data-colab-panel="anonimos"] .colab-stack-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.colab-panel[data-colab-panel="anonimos"] .colab-stack-value {
  margin-top: 0.22rem;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 500;
  color: #365068;
}

.colab-stack-subtle {
  margin-top: 0.18rem;
  color: var(--nr1-muted);
  font-size: 0.84rem;
}

.nr1-link-progress-cell {
  min-width: 90px;
}

.nr1-link-progress-cell strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--nr1-primary-deep);
}

.nr1-link-progress-track {
  width: 100%;
  height: 7px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: #e8eff6;
  overflow: hidden;
}

.nr1-link-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f7dd1 0%, #4ea3ff 100%);
}

body.nr1-app-shell .modal-backdrop.show {
  z-index: 1090;
}

body.nr1-app-shell .modal.show {
  z-index: 1100;
}

.nr1-detail-modal {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(23, 45, 74, 0.22);
}

.nr1-detail-modal .modal-header {
  align-items: flex-start;
  padding: 1.15rem 1.35rem 1rem;
  border-bottom: 1px solid #e8eef5;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}

.nr1-detail-modal-subtitle {
  color: var(--nr1-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.nr1-detail-modal-content {
  min-height: 80px;
}

.nr1-detail-sheet {
  display: grid;
  gap: 1.1rem;
}

.nr1-detail-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid #edf2f7;
}

.nr1-detail-summary h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.nr1-detail-summary p,
.nr1-detail-context {
  margin: 0.32rem 0 0;
  color: var(--nr1-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.nr1-detail-summary-metrics {
  text-align: right;
}

.nr1-detail-summary-metrics strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--nr1-primary-deep);
}

.nr1-detail-summary-metrics span {
  color: var(--nr1-muted);
  font-size: 0.84rem;
}

.nr1-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

.nr1-detail-field {
  display: grid;
  gap: 0.28rem;
  align-content: start;
}

.nr1-detail-label {
  display: block;
  color: #688094;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nr1-detail-value {
  display: block;
  color: var(--nr1-ink);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.5;
}

.nr1-detail-responses {
  border-top: 1px solid #edf2f7;
  padding-top: 1rem;
}

.nr1-detail-responses-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.nr1-detail-responses-header h4 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
}

.nr1-detail-responses-header span {
  color: var(--nr1-muted);
  font-size: 0.82rem;
}

.nr1-detail-response-list {
  display: grid;
  gap: 0;
}

.nr1-detail-scale {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
}

.nr1-detail-scale:first-of-type {
  margin-top: 0;
}

.nr1-detail-scale-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3f8fd 0%, #fbfdff 100%);
  border: 1px solid #e4edf6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  margin-bottom: 0.15rem;
}

.nr1-detail-scale-eyebrow {
  display: inline-block;
  margin-bottom: 0.18rem;
  color: #688094;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nr1-detail-scale-header h5 {
  margin: 0;
  color: var(--nr1-primary-deep);
  font-size: 0.98rem;
  font-weight: 800;
}

.nr1-detail-scale-header span:last-child {
  color: var(--nr1-muted);
  font-size: 0.8rem;
  white-space: nowrap;
}

.nr1-detail-response-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #edf2f7;
  border-radius: 16px;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nr1-detail-response-row:last-child {
  border-bottom: 0;
}

.nr1-detail-response-row:hover {
  background: linear-gradient(90deg, rgba(238, 245, 251, 0.82) 0%, rgba(247, 250, 253, 0.96) 100%);
  box-shadow: inset 0 0 0 1px rgba(201, 217, 233, 0.7);
  transform: translateY(-1px);
}

.nr1-detail-response-row.is-pending {
  border-bottom-style: dashed;
  border-bottom-color: rgba(220, 38, 38, 0.18);
}

.nr1-detail-response-row.is-pending:hover {
  background: linear-gradient(90deg, rgba(255, 245, 245, 0.88) 0%, rgba(255, 250, 250, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(248, 180, 180, 0.7);
}

.nr1-detail-response-question {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--nr1-ink);
  font-size: 0.91rem;
  line-height: 1.5;
}

.nr1-detail-response-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  color: var(--nr1-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.nr1-detail-response-answer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: #eef5fb;
  color: #244a6b;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.nr1-detail-response-answer.is-pending {
  background: rgba(254, 226, 226, 0.82);
  color: #b42318;
}

.colab-sector-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #eef5fb;
  color: #244a6b;
  font-size: 0.84rem;
  font-weight: 800;
}

.colab-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.colab-actions .btn {
  min-width: 94px;
}

.colab-empty-state {
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.colab-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1rem;
  border-radius: 22px;
  background: #eef5fb;
  color: var(--nr1-primary);
  font-size: 1.6rem;
}

.colab-empty-title {
  color: var(--nr1-ink);
  font-size: 1.25rem;
  font-weight: 800;
}

.colab-empty-text {
  max-width: 520px;
  margin: 0.6rem auto 0;
  color: var(--nr1-muted);
  line-height: 1.6;
}

#blocoSetores {
  background: linear-gradient(180deg, #f8fbfd 0%, #f2f7fb 100%) !important;
  border: 1px solid var(--nr1-line);
  border-radius: 24px !important;
}

#labelSetores {
  display: block;
  width: 100% !important;
  height: auto !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  background: transparent !important;
  color: var(--nr1-ink) !important;
  border-radius: 0 !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
}

#formCadastroEmpresa .form-check.border.rounded.p-3.flex-fill,
#blocoSetores .border.rounded {
  border-color: var(--nr1-line-strong) !important;
  border-radius: 18px !important;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-acao {
  min-width: 110px;
  padding: 0.4rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 12px;
  white-space: nowrap;
}

.nr1-cycle-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nr1-cycle-actions .btn-acao {
  min-width: 0;
  padding: 0.38rem 0.62rem;
  font-size: 0.74rem;
}

.badge-status {
  min-width: 88px;
}

.nr1-cycles-table td,
.nr1-cycles-table th {
  vertical-align: middle;
}

.nr1-cycles-table {
  table-layout: auto;
  min-width: 1180px;
}

.nr1-cycles-table .nr1-cycle-col-title {
  min-width: 210px;
  white-space: nowrap !important;
}

.nr1-cycles-table .nr1-cycle-col-period {
  min-width: 210px;
  white-space: nowrap !important;
}

.nr1-cycles-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pagination {
  gap: 0.45rem;
}

.page-item .page-link {
  min-width: 42px;
  height: 42px;
  padding: 0 0.9rem;
  border: 1px solid #d6e2ed;
  border-radius: 12px;
  background: #fff;
  color: var(--nr1-ink);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-item .page-link:hover {
  border-color: #a8c3db;
  background: #f5f9fc;
  color: var(--nr1-primary-deep);
}

.page-item.active .page-link {
  border-color: transparent;
  background: linear-gradient(135deg, #143353 0%, #1f5f93 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(20, 51, 83, 0.14);
}

.page-item.disabled .page-link {
  opacity: 0.45;
  color: var(--nr1-muted);
  background: #fff;
  border-color: #d6e2ed;
}

@media (max-width: 1199.98px) {
  .colab-table thead {
    display: none;
  }

  .colab-table,
  .colab-table tbody,
  .colab-table tr,
  .colab-table td {
    display: block;
    width: 100%;
  }

  .colab-table tbody tr {
    padding: 1rem 0;
  }

  .colab-table tbody td {
    padding: 0.55rem 0;
  }
}

.report-gerencial-page .card {
  margin-bottom: 0;
}

.report-gerencial-toolbar {
  align-items: flex-end;
}

.report-gerencial-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.report-gerencial-filter-field {
  display: grid;
  gap: 0.45rem;
}

.report-gerencial-filter-actions {
  display: flex;
  align-items: end;
  gap: 0.75rem;
}

.report-gerencial-filter-actions .btn {
  min-height: 50px;
  white-space: nowrap;
}

.report-gerencial-filter-note {
  display: grid;
  gap: 0.18rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4f8fc 0%, #ffffff 100%);
  border: 1px solid #e4edf6;
}

.report-gerencial-filter-note--full {
  grid-column: 1 / -1;
}

.report-gerencial-filter-note-label,
.report-gerencial-card-kicker,
.report-gerencial-cover-kicker,
.report-gerencial-single-sector-kicker,
.report-gerencial-compliance-item span {
  color: #688094;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-gerencial-filter-note strong {
  color: var(--nr1-primary-deep);
  font-size: 1rem;
  font-weight: 800;
}

.report-gerencial-filter-note small {
  color: var(--nr1-muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.report-gerencial-cover {
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(18, 50, 79, 0.08);
  background:
    radial-gradient(circle at top right, rgba(63, 128, 202, 0.14), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #f7fafc 100%);
}

.report-gerencial-cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 1.4rem;
  align-items: start;
}

.report-gerencial-cover-main h2 {
  margin: 0.25rem 0 0.75rem;
  color: var(--nr1-primary-deep);
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.report-gerencial-cover-main p {
  margin: 0;
  color: #445a6d;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 62ch;
}

.report-gerencial-cover-side {
  display: grid;
  gap: 0.8rem;
}

.report-gerencial-cover-side-item {
  display: grid;
  gap: 0.18rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 50, 79, 0.08);
}

.report-gerencial-cover-side-item strong {
  color: var(--nr1-primary-deep);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.report-gerencial-stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.report-gerencial-narrative-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.report-gerencial-narrative-card {
  padding: 1.35rem 1.35rem 1.45rem;
  border: 1px solid rgba(18, 50, 79, 0.08);
}

.report-gerencial-narrative-card h2 {
  margin: 0.35rem 0 0.75rem;
  color: var(--nr1-primary-deep);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
}

.report-gerencial-narrative-card p {
  margin: 0;
  color: #445a6d;
  font-size: 0.95rem;
  line-height: 1.7;
}

.report-gerencial-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.report-gerencial-compliance-item {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  border: 1px solid #e4edf6;
}

.report-gerencial-compliance-item strong {
  color: var(--nr1-primary-deep);
  font-size: 1.02rem;
  font-weight: 800;
}

.report-gerencial-compliance-item p {
  margin: 0;
  color: #5a6f82;
  font-size: 0.9rem;
  line-height: 1.6;
}

.report-gerencial-static-bar-svg svg {
  display: block;
  width: 100%;
  height: auto;
}

.report-gerencial-static-bar-image-file {
  display: block;
  width: 100%;
  height: auto;
}

.report-gerencial-fiscal-note {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbfe 0%, #f2f7fb 100%);
  border: 1px solid #dfe8f1;
}

.report-gerencial-fiscal-note strong {
  color: var(--nr1-primary-deep);
  font-size: 1rem;
  font-weight: 800;
}

.report-gerencial-fiscal-note p {
  margin: 0;
  color: #516678;
  font-size: 0.92rem;
  line-height: 1.72;
}

.report-gerencial-fiscal-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 980px;
}

.report-gerencial-fiscal-table thead th {
  padding: 0.9rem 0.95rem;
  background: #edf4fa;
  color: #647b90;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid #dbe6f0;
}

.report-gerencial-fiscal-table thead th:first-child {
  border-top-left-radius: 16px;
}

.report-gerencial-fiscal-table thead th:last-child {
  border-top-right-radius: 16px;
}

.report-gerencial-fiscal-table tbody td {
  padding: 1rem 0.95rem;
  vertical-align: top;
  color: #445a6d;
  font-size: 0.92rem;
  line-height: 1.62;
  border-bottom: 1px solid #e6eef5;
  background: #ffffff;
}

.report-gerencial-fiscal-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}

.report-gerencial-fiscal-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

.report-gerencial-fiscal-table strong {
  color: var(--nr1-primary-deep);
  font-size: 0.97rem;
  font-weight: 800;
}

.report-gerencial-fiscal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.report-gerencial-fiscal-badge--atendido {
  background: rgba(65, 165, 116, 0.14);
  color: #1d6f49;
  border: 1px solid rgba(65, 165, 116, 0.24);
}

.report-gerencial-fiscal-badge--parcial {
  background: rgba(219, 162, 58, 0.16);
  color: #8d6212;
  border: 1px solid rgba(219, 162, 58, 0.24);
}

.report-gerencial-fiscal-badge--atencao {
  background: rgba(210, 85, 99, 0.12);
  color: #a53a4c;
  border: 1px solid rgba(210, 85, 99, 0.24);
}

.report-gerencial-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.report-gerencial-chart-grid--primary {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
}

.report-gerencial-chart-grid--comparison {
  grid-template-columns: 1fr;
}

.report-gerencial-chart {
  min-height: 320px;
}

.report-gerencial-chart-lg {
  min-height: 360px;
}

.report-gerencial-chart-donut {
  min-height: 320px;
}

.report-gerencial-chart-bar {
  min-height: 360px;
}

.report-gerencial-single-sector {
  display: grid;
  gap: 0.45rem;
  align-content: center;
  min-height: 320px;
  padding: 1rem 0;
}

.report-gerencial-single-sector strong {
  color: var(--nr1-primary-deep);
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.report-gerencial-single-sector p {
  margin: 0;
  color: #506477;
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 42ch;
}

.report-gerencial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.report-gerencial-badge-low {
  background: rgba(65, 165, 116, 0.12);
  color: #2f7a53;
}

.report-gerencial-badge-medium {
  background: rgba(219, 162, 58, 0.14);
  color: #9d6a0e;
}

.report-gerencial-badge-high {
  background: rgba(210, 85, 99, 0.14);
  color: #a33946;
}

.report-gerencial-notes {
  display: grid;
  gap: 0.9rem;
}

.report-gerencial-note {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: #fbfdff;
  border: 1px solid #e8eef5;
}

.report-gerencial-note span {
  color: #688094;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-gerencial-note p {
  margin: 0;
  color: #445a6d;
  font-size: 0.94rem;
  line-height: 1.7;
}

.report-gerencial-comparison-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.report-gerencial-comparison-card {
  display: grid;
  gap: 0.38rem;
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #e4edf6;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.report-gerencial-comparison-card span {
  color: #688094;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.report-gerencial-comparison-card strong {
  color: var(--nr1-primary-deep);
  font-size: 1rem;
  font-weight: 800;
}

.report-gerencial-comparison-card p {
  margin: 0;
  color: #5a6f82;
  font-size: 0.88rem;
  line-height: 1.6;
}

.report-gerencial-comparison-card.positive {
  border-color: rgba(65, 165, 116, 0.2);
  background: linear-gradient(180deg, rgba(65, 165, 116, 0.08) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.report-gerencial-comparison-card.negative {
  border-color: rgba(210, 85, 99, 0.18);
  background: linear-gradient(180deg, rgba(210, 85, 99, 0.08) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.report-gerencial-comparison-card.neutral {
  border-color: rgba(129, 150, 171, 0.18);
}

.report-gerencial-embedded-panel {
  border: 1px solid rgba(18, 50, 79, 0.08);
}

.report-gerencial-comparison-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.report-gerencial-comparison-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  border: 1px solid #d8e3ed;
  background: #f8fbfe;
  color: #4f6578;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.report-gerencial-comparison-legend-item strong {
  color: var(--nr1-primary-deep);
  font-weight: 800;
}

.report-gerencial-comparison-legend-item i {
  width: 0.72rem;
  height: 0.72rem;
  display: inline-block;
  border-radius: 999px;
  flex: 0 0 auto;
}

.report-gerencial-comparison-legend-item--old i {
  background: #bfd0df;
}

.report-gerencial-comparison-legend-item--new i {
  background: #12324f;
}

.report-gerencial-scale-legend {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.95rem 1rem 0;
  border-top: 1px solid #e5edf5;
}

.report-gerencial-scale-legend--compact {
  margin-top: 0.9rem;
  margin-bottom: 0;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid #e1eaf3;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.report-gerencial-scale-legend-title {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b8195;
  margin-bottom: 0.15rem;
}

.report-gerencial-scale-legend-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  color: #4f6578;
  font-size: 0.88rem;
  line-height: 1.45;
}

.report-gerencial-scale-legend-item strong {
  color: var(--nr1-primary-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.2rem;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: #eef4fa;
  border: 1px solid #d7e3ee;
}

.report-gerencial-recommendation-list {
  display: grid;
  gap: 0.9rem;
}

.report-gerencial-recommendation-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  border: 1px solid #e4edf6;
}

.report-gerencial-recommendation-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(18, 50, 79, 0.1);
  color: var(--nr1-primary-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.report-gerencial-recommendation-item p {
  margin: 0;
  color: #445a6d;
  font-size: 0.95rem;
  line-height: 1.7;
}

.report-gerencial-web-chart {
  display: block;
}

.report-gerencial-pdf-chart {
  display: none;
}

.report-gerencial-static-empty {
  margin: 0;
  color: #6d8192;
  font-size: 0.93rem;
  line-height: 1.6;
}

.report-gerencial-static-donut {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.report-gerencial-static-donut-svg {
  width: min(100%, 220px);
  height: auto;
}

.report-gerencial-static-donut-value {
  fill: var(--nr1-primary-deep);
  font-size: 1.55rem;
  font-weight: 800;
}

.report-gerencial-static-donut-label {
  fill: #6b7f92;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.report-gerencial-static-legend {
  display: grid;
  gap: 0.55rem;
  width: 100%;
}

.report-gerencial-static-legend-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.72rem 0.8rem;
  border-radius: 16px;
  background: #f9fbfd;
  border: 1px solid #e7eef5;
}

.report-gerencial-static-swatch {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  display: inline-block;
}

.report-gerencial-static-legend-text {
  color: #506477;
  font-size: 0.9rem;
  font-weight: 600;
}

.report-gerencial-static-legend-item strong {
  color: var(--nr1-primary-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.report-gerencial-static-series-chart,
.report-gerencial-static-history {
  display: grid;
  gap: 0.9rem;
}

.report-gerencial-static-series-row,
.report-gerencial-static-history-row {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: #fbfdff;
  border: 1px solid #e7eef5;
}

.report-gerencial-static-series-head,
.report-gerencial-static-history-title {
  display: grid;
  gap: 0.18rem;
}

.report-gerencial-static-series-title,
.report-gerencial-static-history-title {
  color: var(--nr1-primary-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.report-gerencial-static-series-head small {
  color: #70849a;
  font-size: 0.8rem;
  line-height: 1.45;
}

.report-gerencial-static-series-list,
.report-gerencial-static-history-metrics {
  display: grid;
  gap: 0.55rem;
}

.report-gerencial-static-series-item,
.report-gerencial-static-history-metric {
  display: grid;
  grid-template-columns: minmax(120px, 1.1fr) minmax(0, 2fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.report-gerencial-static-series-name,
.report-gerencial-static-history-metric span {
  color: #506477;
  font-size: 0.87rem;
  font-weight: 600;
}

.report-gerencial-static-track {
  position: relative;
  overflow: hidden;
  height: 0.58rem;
  border-radius: 999px;
  background: #e6edf5;
}

.report-gerencial-static-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: inherit;
}

.report-gerencial-static-series-item strong,
.report-gerencial-static-history-metric strong {
  color: var(--nr1-primary-deep);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.report-gerencial-concepts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.report-gerencial-concept-item {
  display: grid;
  gap: 0.45rem;
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  border: 1px solid #e4edf6;
}

.report-gerencial-concept-item h3 {
  margin: 0;
  color: var(--nr1-primary-deep);
  font-size: 1rem;
  font-weight: 800;
}

.report-gerencial-concept-item p {
  margin: 0;
  color: #53687b;
  font-size: 0.92rem;
  line-height: 1.65;
}

.report-gerencial-signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.report-gerencial-signature-card {
  display: grid;
  gap: 0.45rem;
  min-height: 210px;
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
  border: 1px solid #e4edf6;
}

.report-gerencial-signature-card strong {
  color: var(--nr1-primary-deep);
  font-size: 1.03rem;
  font-weight: 800;
}

.report-gerencial-signature-card p,
.report-gerencial-signature-card small {
  margin: 0;
  color: #5a6f82;
  line-height: 1.6;
}

.report-gerencial-signature-line {
  width: 100%;
  height: 1px;
  margin: 2.25rem 0 0.3rem;
  background: linear-gradient(90deg, rgba(18, 50, 79, 0.18), rgba(18, 50, 79, 0.48), rgba(18, 50, 79, 0.18));
}

[data-render-mode="pdf"] .report-gerencial-web-chart {
  display: none !important;
}

[data-render-mode="pdf"] .report-gerencial-pdf-chart {
  display: block !important;
}

@media print {
  body.nr1-app-shell .navbar,
  body.nr1-app-shell .consultor-client-strip,
  .nr1-footer,
  [data-print-hidden="true"] {
    display: none !important;
  }

  body.nr1-app-shell {
    padding-top: 0 !important;
    background: #ffffff !important;
  }

  .nr1-page-shell,
  .report-gerencial-page {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .card,
  .report-gerencial-cover,
  .report-gerencial-narrative-card,
  .report-gerencial-comparison-card,
  .report-gerencial-compliance-item,
  .report-gerencial-recommendation-item {
    box-shadow: none !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .report-gerencial-chart-grid,
  .report-gerencial-narrative-grid,
  .report-gerencial-compliance-grid,
  .report-gerencial-comparison-kpis,
  .report-gerencial-concepts-grid,
  .report-gerencial-signature-grid {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

@media (max-width: 991.98px) {
  .report-gerencial-cover-grid,
  .report-gerencial-chart-grid,
  .report-gerencial-chart-grid--primary,
  .report-gerencial-narrative-grid,
  .report-gerencial-compliance-grid,
  .report-gerencial-comparison-kpis,
  .report-gerencial-concepts-grid,
  .report-gerencial-signature-grid,
  .report-gerencial-filter {
    grid-template-columns: 1fr;
  }

  .report-gerencial-filter-actions {
    justify-content: flex-start;
  }

  .nr1-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nr1-hero-main {
    flex-direction: column;
  }

  .nr1-hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .report-gerencial-cover,
  .report-gerencial-narrative-card,
  .report-gerencial-comparison-card,
  .report-gerencial-compliance-item,
  .report-gerencial-recommendation-item {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .report-gerencial-cover-main h2 {
    font-size: 1.75rem;
  }

  .report-gerencial-recommendation-item {
    grid-template-columns: 1fr;
  }

  .nr1-detail-summary {
    flex-direction: column;
  }

  .nr1-detail-summary-metrics {
    text-align: left;
  }

  .nr1-detail-grid {
    grid-template-columns: 1fr;
  }

  .nr1-detail-scale-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nr1-detail-response-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .nr1-detail-response-question {
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .nr1-detail-response-answer {
    white-space: normal;
  }

  body.nr1-app-shell .consultor-subnav {
    padding: 0.72rem 0.82rem;
  }

  body.nr1-app-shell .consultor-subnav-empty,
  .nr1-meta-row,
  .colab-toolbar-meta,
  .colab-header-main,
  .colab-header-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  body.nr1-app-shell .consultor-subnav-empty {
    gap: 0.8rem;
  }

  body.nr1-app-shell .consultor-client-switcher {
    min-width: 100%;
  }

  body.nr1-app-shell .consultor-client-switcher-value {
    white-space: normal;
  }

  .colaboradores-page,
  .nr1-page-shell {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .colab-header-card,
  .colab-toolbar,
  .colab-table-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .colab-toolbar-grid {
    grid-template-columns: 1fr;
  }

  .colab-toolbar-filters {
    grid-template-columns: 1fr;
  }

  .table thead {
    display: none;
  }

  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }

  .table tbody tr {
    padding: 1rem 0;
  }

  .table tbody td {
    padding: 0.55rem 0;
  }
}
