:root {
  --bg: #F3F5F8;
  --primary: #12366D;
  --primary-hover: #0F2C59;
  --sidebar-bg: #FAFBFC;
  --content-bg: #F8FAFC;
  --surface: #ffffff;
  --border: #E5E7EB;
  --text: #374151;
  --text-muted: #6B7280;
  --radius: 8px;
  --radius-card: 8px;
  --radius-button: 6px;
  --shadow-soft: 0 16px 32px rgba(55, 65, 81, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
}

button,
input,
select,
textarea {
  font: inherit;
  font-size: 14px;
}

/* Visual de bloqueado para readonly sem quebrar submit/edicao dos demais campos. */
input[readonly],
textarea[readonly],
.form-control[readonly],
.form-select[readonly] {
  background-color: #f3f5f8;
  border-color: #d7dee7;
  color: var(--text);
  opacity: 1;
  cursor: default;
}

input[readonly]:focus,
textarea[readonly]:focus,
.form-control[readonly]:focus,
.form-select[readonly]:focus {
  box-shadow: none;
  border-color: #d7dee7;
}

.form-select {
  font-size: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.app-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 70px;
  background: var(--surface);
  border-bottom: 1px solid rgba(18, 54, 109, 0.08);
  z-index: 1100;
  display: flex;
  align-items: center;
  width: 100%;
  box-shadow: 0 1px 6px rgba(55, 65, 81, 0.06);
}

.app-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0 24px;
}

.app-header-left,
.app-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-header-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 14px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.app-header-burger-line {
  position: absolute;
  left: 50%;
  width: 90%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.22s ease;
}

.app-header-burger-line:nth-child(1) {
  transform: translate(-50%, -6px);
}

.app-header-burger-line:nth-child(2) {
  transform: translate(-50%, 0);
}

.app-header-burger-line:nth-child(3) {
  transform: translate(-50%, 6px);
}

.app-header-burger.is-active .app-header-burger-line:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.app-header-burger.is-active .app-header-burger-line:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, 0) scaleX(0.2);
}

.app-header-burger.is-active .app-header-burger-line:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.app-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.app-brand img {
  display: block;
  /* height: 28px; */
  width: auto;
}

.app-header-search {
  flex: 0 1 640px;
  min-width: 0;
  width: min(640px, calc(100vw - 360px));
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.app-header-actions {
  flex: 0 0 auto;
  position: relative;
  z-index: 1060;
}

.app-header-help {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f5;
  border: 1px solid #e7ebf0;
  color: #4b5563;
  font-size: 1.05rem;
  transform: rotate(0deg);
  transition: transform 0.45s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.app-header-help:hover,
.app-header-help:focus {
  background: #eef1f4;
  border-color: #d7dee9;
  color: var(--primary);
  transform: rotate(-8deg);
}

.search-field {
  position: relative;
  width: 100%;
}

.global-search-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  max-height: min(72vh, 620px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(13, 36, 72, 0.16);
  z-index: 1120;
}

.global-search-loading,
.global-search-empty,
.global-search-error {
  padding: 12px 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.global-search-group {
  padding: 8px 0;
}

.global-search-group + .global-search-group {
  border-top: 1px solid var(--border);
}

.global-search-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 14px 6px;
}

.global-search-group-title {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.global-search-see-all {
  font-size: 0.76rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.global-search-see-all:hover {
  text-decoration: underline;
}

.global-search-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 8px 14px;
}

.global-search-item:hover,
.global-search-item:focus {
  background: var(--surface-soft);
}

.global-search-item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.global-search-item-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 46px;
  padding: 12px 18px 12px 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(18, 54, 109, 0.08);
}

.user-button {
  position: relative;
  z-index: 1060;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 4px 6px;
  min-height: 44px;
}

.user-button:hover,
.user-button:focus {
  background: var(--surface-soft);
}

.avatar-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.avatar-circle-image {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  padding: 0;
}

.avatar-circle-image img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.user-name {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
}

.user-dropdown .dropdown-menu {
  border-radius: 16px;
  border: 1px solid rgba(18, 54, 109, 0.08);
  box-shadow: 0 18px 35px rgba(18, 54, 109, 0.08);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform-origin: top right;
}

.user-dropdown .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
}

.user-dropdown .dropdown-item {
  border-radius: 10px;
  transition: background 0.2s ease;
}

.user-dropdown .dropdown-item:hover {
  background: rgba(18, 54, 109, 0.06);
}

.app-shell {
  display: flex;
  padding-top: 60px;
}

.app-sidebar {
  width: 240px;
  min-width: 240px;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  height: calc(100vh - 70px);
  position: fixed;
  top: 70px;
  left: 0;
  overflow-y: auto;
  z-index: 1055;
  transition: width 0.2s ease, transform 0.2s ease, padding 0.2s ease;
  padding: 24px 18px;
}

.sidebar-precollapsed .app-sidebar {
  width: 80px;
  min-width: 80px;
  padding: 24px 10px;
}

.sidebar-precollapsed .app-sidebar .sidebar-item {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.sidebar-precollapsed .app-sidebar .sidebar-item-label,
.sidebar-precollapsed .app-sidebar .sidebar-section-title,
.sidebar-precollapsed .app-sidebar .sidebar-subdivider,
.sidebar-precollapsed .app-sidebar .bi-chevron-down,
.sidebar-precollapsed .app-sidebar .submenu-list,
.sidebar-precollapsed .app-sidebar .collapse {
  display: none !important;
}

.sidebar-precollapsed .app-sidebar .sidebar-item .sidebar-item-icon {
  margin: 0;
}

.app-sidebar.collapsed {
  width: 80px;
  min-width: 80px;
  padding: 24px 10px;
}

.app-sidebar.collapsed .sidebar-item {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.app-sidebar.collapsed .sidebar-item-label,
.app-sidebar.collapsed .sidebar-section-title,
.app-sidebar.collapsed .sidebar-subdivider,
.app-sidebar.collapsed .bi-chevron-down,
.app-sidebar.collapsed .submenu-list {
  display: none !important;
}

.app-sidebar.collapsed .collapse {
  display: none !important;
}

.app-sidebar.collapsed .sidebar-item .sidebar-item-icon {
  margin: 0;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: rgba(15, 23, 42, 0.32);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Keep Bootstrap modals above fixed header/sidebar layers. */
.modal-backdrop.show {
  z-index: 2000 !important;
}

.modal {
  z-index: 2010 !important;
}

.sidebar-brand {
    font-size: 0.6rem;
    font-weight: 300;
    color: var(--primary);
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sidebar-toggle {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  cursor: pointer;
}

.sidebar-toggle:hover {
  background: var(--surface-soft);
}

.sidebar-hamburger {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.sidebar-hamburger::before,
.sidebar-hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.sidebar-hamburger::before {
  top: -6px;
}

.sidebar-hamburger::after {
  top: 6px;
}

.sidebar-section {
  margin-bottom: 28px;
}

.sidebar-section-title {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-section.active .sidebar-section-title {
  color: var(--primary);
  font-weight: 600;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border-radius: 6px;
  color: var(--text);
  margin-bottom: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 14px;
}

.sidebar-item:hover {
  background: rgba(18, 54, 109, 0.08);
  color: var(--primary);
}

.sidebar-item.active {
  position: relative;
  background: rgba(151, 151, 151, 0.12);
  color: var(--primary);
  /* font-weight: 600; */
}

.sidebar-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 0 8px 8px 0;
  background: var(--primary);
}

.sidebar-item-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: inherit;
}

.sidebar-subitem {
  margin-bottom: 4px;
  padding-left: 14px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 13px;
  background: transparent;
  box-shadow: none;
}

.sidebar-subitem .sidebar-item-label {
  margin-left: 0.75rem;
}

.sidebar-subitem.active {
  /* background: rgba(18, 54, 109, 0.1); */
  color: var(--primary);
  font-weight: 600;
}

.sidebar-subitem.active::before {
  display: block;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 3px;
}

.submenu-list {
  margin-top: 4px;
  padding-left: 8px;
}

.sidebar-subdivider {
  margin: 10px 8px 10px 22px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-subdivider::after {
  content: '';
  height: 1px;
  background: var(--border);
  flex: 1;
}

.app-main {
  flex: 1;
  margin-left: 240px;
  transition: margin-left 0.25s ease;
  min-height: calc(100vh - 70px);
}

.sidebar-precollapsed .app-sidebar ~ .app-main {
  margin-left: 80px;
}

.app-sidebar.collapsed ~ .app-main {
  margin-left: 80px;
}

.app-main-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px;
}

.page-header {
  padding-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.page-header-content {
  flex: 1;
  min-width: 280px;
}

.page-breadcrumb {
  display: inline-block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
  font-size: 12px;
}

.page-breadcrumb-separator {
  font-size: 0.72rem;
  opacity: 0.7;
  margin: 0 6px;
  vertical-align: middle;
}

.page-header-title {
  margin: 0;
  font-size: clamp(2rem, 1.2vw, 2.4rem);
  font-weight: 500;
}

.page-description {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 300;
}

.page-actions {
  min-width: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.page-actions .page-actions-placeholder {
  width: 100%;
  min-height: 46px;
}

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

.dashboard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dashboard-kpi-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dashboard-kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(55, 65, 81, 0.1);
  border-color: #d7dee9;
}

.dashboard-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.dashboard-card-head-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dashboard-card-analysis-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.dashboard-card-analysis-link:hover,
.dashboard-card-analysis-link:focus {
  color: var(--primary);
}

.dashboard-card-label {
  display: block;
  color: #353535;
  font-size: 0.95rem;
  font-weight: 600;
}

.dashboard-card-label-with-alert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dashboard-pending-alert-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #dc3545;
  box-shadow: 0 0 0 rgba(220, 53, 69, 0.6);
  animation: dashboardPendingPulse 1.2s ease-in-out infinite;
}

.dashboard-pending-alert-dot.is-hidden {
  display: none;
}

@keyframes dashboardPendingPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.55);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

.dashboard-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f5;
  border: 1px solid #e7ebf0;
  color: #4b5563;
  font-size: 1.05rem;
  transform: rotate(0deg);
  transition: transform 0.45s ease;
}

.dashboard-kpi-card:hover .dashboard-card-icon {
  transform: rotate(-8deg);
}

.dashboard-card h2 {
  margin: 18px 0 0;
  font-size: 2.7rem;
  font-weight: 500;
}

.dashboard-card-text {
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.dashboard-evolution-entry-card {
  min-height: 170px;
  background: radial-gradient(circle at 12% 0%, rgba(18, 54, 109, 0.12), transparent 48%),
              linear-gradient(120deg, #ffffff 0%, #f4f8ff 100%);
}

.dashboard-evolution-entry-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-evolution-entry-content .dashboard-card-text {
  margin-top: 10px;
  margin-bottom: 0;
}

.dashboard-evolution-entry-content .btn {
  white-space: nowrap;
}
.indicators-last-update {
  min-width: 190px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: right;
  background: #ffffff;
}
.indicators-last-update-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.indicators-last-update-value {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}
.indicators-toolbar-card {
  min-height: auto;
}
.indicators-toolbar .btn {
  min-width: 96px;
}
.indicators-section-card {
  min-height: auto;
}
.indicators-section-head h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
}
.indicators-grid {
  display: grid;
  gap: 16px;
}
.indicators-grid-operation {
  grid-template-columns: 1.6fr 1fr;
}

.indicators-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.indicators-kpi-card {
  min-height: 150px;
  padding: 18px;
}

.indicators-kpi-card h2 {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 2.1rem;
}

.indicators-comparison-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 74px;
}

.indicators-comparison-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.indicators-comparison-value {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.indicators-comparison-value.is-positive {
  color: #0f766e;
}

.indicators-comparison-value.is-negative {
  color: #b91c1c;
}

.indicators-chart-head h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.indicators-chart-wrap {
  width: 100%;
  height: 260px;
  position: relative;
}

.indicators-chart-wrap-donut {
  height: 280px;
}

.indicators-chart-wrap-horizontal-scroll {
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
}

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

.indicators-grid-productivity {
  grid-template-columns: 1fr;
}

.indicators-client-volume-list {
  display: grid;
  gap: 8px;
}

.indicators-client-volume-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
}

.indicators-client-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.indicators-client-link:hover {
  text-decoration: underline;
}

.indicators-client-link.is-muted {
  color: var(--text-muted);
  font-weight: 500;
}

.indicators-client-count {
  font-size: 0.82rem;
  color: #0b4f67;
  border-radius: 999px;
  border: 1px solid rgba(14, 116, 144, 0.25);
  background: rgba(14, 116, 144, 0.08);
  padding: 3px 10px;
  white-space: nowrap;
}

.indicators-client-summary {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 14px;
}

.indicators-client-summary-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.indicators-client-summary-list {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.indicators-insights-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 14px;
}

.indicators-insights-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.indicators-insights-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.evolution-page {
  background: radial-gradient(circle at 0% 0%, rgba(14, 116, 144, 0.08), transparent 28%),
              radial-gradient(circle at 100% 20%, rgba(18, 54, 109, 0.07), transparent 25%);
}

.evolution-hero-card {
  min-height: 280px;
  border: 1px solid #d8e3f2;
  background: linear-gradient(135deg, #0f2c59 0%, #1f4b8f 56%, #2f6ac2 100%);
  color: #f6f8ff;
  position: relative;
  overflow: hidden;
}

.evolution-hero-card::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  right: -90px;
  top: -100px;
  background: rgba(255, 255, 255, 0.12);
}

.evolution-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.evolution-hero-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.evolution-hero-content h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
  font-weight: 600;
}

.evolution-hero-content p {
  margin: 14px 0 0;
  max-width: 740px;
  color: rgba(248, 251, 255, 0.92);
  font-size: 1rem;
  line-height: 1.75;
}

.evolution-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evolution-kpi-card {
  min-height: 168px;
  justify-content: center;
  gap: 10px;
}

.evolution-kpi-value {
  margin: 0;
  font-size: clamp(2.1rem, 3.1vw, 3rem);
  line-height: 1;
  font-weight: 700;
  color: #122b56;
}

.evolution-kpi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.evolution-assets-card {
  min-height: auto;
  gap: 0;
}

.evolution-assets-intro {
  font-size: 1.02rem;
  color: #24344d;
}

.evolution-assets-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.evolution-asset-mini-card {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  color: #3c4d63;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.evolution-asset-mini-card:hover {
  transform: translateY(-2px);
  border-color: #c9d7ef;
  box-shadow: 0 12px 24px rgba(15, 44, 89, 0.1);
}

.evolution-asset-mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(18, 54, 109, 0.09);
  color: #0f2c59;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.evolution-asset-mini-card strong {
  color: #0f2c59;
  font-size: 1.5rem;
  line-height: 1;
}

.evolution-asset-mini-card small {
  color: var(--text-muted);
  font-size: 0.86rem;
}

.evolution-assets-footer {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.evolution-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.evolution-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, #cad8ed 0%, #e8eef8 100%);
}

.evolution-timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}

.evolution-timeline-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #c9d8f2;
  background: #f2f7ff;
  color: #16417f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  z-index: 1;
}

.evolution-timeline-content {
  padding-top: 2px;
  display: grid;
  gap: 5px;
}

.evolution-timeline-date {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #d4deef;
  background: #f8fbff;
  color: #4a5c77;
  padding: 2px 9px;
  font-size: 0.75rem;
}

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

.evolution-achievement-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  padding: 14px;
  min-height: 182px;
  box-shadow: 0 8px 18px rgba(15, 44, 89, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.evolution-achievement-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 44, 89, 0.1);
}

.evolution-achievement-card.is-unlocked {
  border-color: #83c7ac;
  background: linear-gradient(180deg, #ffffff 0%, #f1fbf4 100%);
}

.evolution-achievement-card.is-progress {
  border-color: #b8d3f8;
}

.evolution-achievement-card.is-locked {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%);
}

.evolution-achievement-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.evolution-achievement-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 54, 109, 0.1);
  color: #12366d;
}

.evolution-achievement-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.evolution-achievement-badge {
  font-size: 0.74rem;
  border-radius: 999px;
  border: 1px solid #8fceaf;
  color: #166534;
  background: #eefaf2;
  padding: 2px 8px;
}

.evolution-achievement-progress-pct,
.evolution-achievement-lock {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.evolution-achievement-progress-text {
  font-size: 0.82rem;
  color: #45556e;
  margin-bottom: 6px;
}

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

.evolution-practice-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  padding: 14px;
  min-height: 236px;
  box-shadow: 0 8px 18px rgba(15, 44, 89, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: grid;
  align-content: start;
  gap: 8px;
}

.evolution-practice-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 44, 89, 0.1);
}

.evolution-practice-card.is-achieved {
  border-color: #83c7ac;
  background: linear-gradient(180deg, #ffffff 0%, #f1fbf4 100%);
}

.evolution-practice-card.is-evolving {
  border-color: #e7c97c;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.evolution-practice-card.is-not-started {
  border-color: #d9e0ec;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.evolution-practice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.evolution-practice-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 54, 109, 0.1);
  color: #12366d;
}

.evolution-practice-status {
  font-size: 0.74rem;
  border-radius: 999px;
  padding: 3px 8px;
  border: 1px solid transparent;
}

.evolution-practice-status.status-achieved {
  border-color: #8fceaf;
  color: #166534;
  background: #eefaf2;
}

.evolution-practice-status.status-evolving {
  border-color: #ebd08a;
  color: #8a5a06;
  background: #fff8e7;
}

.evolution-practice-status.status-not-started {
  border-color: #d6dce8;
  color: #5f6f86;
  background: #f4f6fa;
}

.evolution-practice-value {
  margin-top: 2px;
  color: #12366d;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.evolution-practice-progress-text {
  font-size: 0.81rem;
  color: #4a5b75;
  line-height: 1.45;
}

.evolution-practice-next-objective {
  margin-top: 2px;
  font-size: 0.8rem;
  color: #3b4d67;
  padding-top: 8px;
  border-top: 1px dashed #d9e3f3;
}

.evolution-progress-track {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: #e7edf7;
  overflow: hidden;
}

.evolution-progress-track-lg {
  height: 12px;
}

.evolution-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1f4b8f 0%, #3f86d3 100%);
  transition: width 0.9s ease;
}

.evolution-next-milestone-card {
  min-height: auto;
  border: 1px solid #c6d8f3;
  background: linear-gradient(145deg, #ffffff 0%, #f4f9ff 100%);
}

.evolution-next-milestone-text {
  color: #324762;
  font-size: 1rem;
}

.evolution-next-milestone-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.evolution-growth-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.evolution-growth-insights {
  min-height: 340px;
}

.evolution-growth-chart {
  height: 340px;
}

.evolution-impact-card {
  border: 1px solid #d9e5f8;
  background: linear-gradient(140deg, #ffffff 0%, #f3f8ff 100%);
  min-height: auto;
}

.evolution-impact-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.evolution-impact-big-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.evolution-impact-big-card {
  border: 1px solid #dce6f6;
  border-radius: 12px;
  background: #ffffff;
  padding: 13px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.evolution-impact-big-card:hover {
  transform: translateY(-2px);
  border-color: #bdd1ee;
  box-shadow: 0 10px 22px rgba(15, 44, 89, 0.1);
}

.evolution-impact-big-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  color: #12366d;
}

.evolution-impact-big-card p {
  margin: 8px 0 0;
  color: #4a5b75;
  font-size: 0.86rem;
  line-height: 1.45;
}

.evolution-impact-item {
  border: 1px solid #dce6f6;
  border-radius: 10px;
  padding: 11px 12px;
  color: #3a4b63;
  background: #ffffff;
}

.evolution-impact-item strong {
  color: #12366d;
}

@keyframes evolutionReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.evolution-page section,
.evolution-page .dashboard-evolution-entry-card {
  animation: evolutionReveal 0.45s ease both;
}
.indicators-slot {
  min-height: 220px;
  border: 1px dashed #d7dee9;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.indicators-slot-large {
  min-height: 300px;
}
.indicators-slot-medium {
  min-height: 300px;
}
.indicators-slot-placeholder {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}
.profile-avatar-preview-wrap {
  width: 132px;
  height: 132px;
}

.profile-avatar-preview,
.profile-avatar-placeholder {
  width: 132px;
  height: 132px;
  border-radius: 50%;
}

.profile-avatar-preview {
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 44, 89, 0.08);
}

.profile-avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
}

.security-card {
  max-width: 760px;
}

.security-toggle-button {
  border-radius: 12px;
  font-weight: 600;
}

.security-strength {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

.security-strength-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.security-strength-dot.is-weak {
  background: #dc3545;
}

.security-strength-dot.is-medium {
  background: #f0ad4e;
}

.security-strength-dot.is-strong {
  background: #198754;
}

.security-hints {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfcfe;
  padding: 12px 14px;
}

.security-hints p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.security-hints-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.security-hints-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.security-hints-list li.is-ok {
  color: #198754;
  font-weight: 600;
}

.security-hint-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.app-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.app-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.badge {
  padding: 6px 6px 4px 6px;
}

.btn {
  font-size: 14px;
}

.app-main .btn {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.app-main .btn:not(.btn-sm):not(.btn-lg):not(.btn-link):not(.btn-close):not(.btn-back) {
  min-height: 46px;
  border-radius: 12px;
  font-weight: 600;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-main .btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(18, 54, 109, 0.1);
}

.btn-back {
  border-radius: 500px;
  height: 40px;
  width: 40px;
  background-color: #f2f2f2;
  border: #afafaf solid 1px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: var(--radius-button);
  box-shadow: none;
  font-size:14px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0f315f;
  border-color: #0f315f;
}

.app-main .btn-primary {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(18, 54, 109, 0.14);
}

.app-main .btn-primary:hover,
.app-main .btn-primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 54, 109, 0.18);
}

.app-main .btn-outline-secondary,
.app-main .btn-secondary {
  border-color: #dbe1ea;
}

.app-main .btn-outline-secondary {
  color: #4b5563;
}

.app-main .btn-outline-secondary:hover,
.app-main .btn-outline-secondary:focus,
.app-main .btn-secondary:hover,
.app-main .btn-secondary:focus {
  transform: translateY(-1px);
}

.form-control,
.form-select,
.search-input {
  border-radius: 12px;
  border: 1px solid #dbe1ea;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:not(textarea),
.form-select,
.search-input {
  height: 46px;
}

.form-control:focus,
.form-select:focus,
.search-input:focus {
  border-color: #12366d;
  box-shadow: 0 0 0 4px rgba(18, 54, 109, 0.1);
}

.app-main .input-group-text {
  border-color: #dbe1ea;
  background: #ffffff;
  color: #4b5563;
}

.app-main .input-group > .btn.btn-outline-secondary,
.app-main .security-toggle-button {
  min-height: 46px;
  border-color: #dbe1ea;
  color: #4b5563;
  font-weight: 600;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.app-main .input-group > .btn.btn-outline-secondary {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.app-main .input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.app-main .input-group:focus-within > .btn.btn-outline-secondary,
.app-main .security-toggle-button:focus,
.app-main .security-toggle-button:active {
  border-color: #12366d;
  box-shadow: 0 0 0 4px rgba(18, 54, 109, 0.1);
}

.app-main .input-group > .btn.btn-outline-secondary:hover,
.app-main .security-toggle-button:hover {
  background: #f8fafc;
  color: #12366d;
  border-color: #12366d;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.table thead {
  background: #fbfcfe;
}

.table thead th {
  padding: 16px 18px;
  border-bottom: none;
  color: var(--text-muted);
  font-weight: 600;
  text-align: left;
  font-size: 14px;
}

.table tbody tr {
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.table > tbody > tr:nth-child(odd) > * {
  background-color: #ffffff;
}

.table > tbody > tr:nth-child(even) > * {
  background-color: #f7f8fa;
}

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

.table tbody td {
  padding: 16px 18px;
  color: var(--text);
}

.table tbody tr:hover {
  background: rgba(18, 54, 109, 0.04);
}

@media (max-width: 1199px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.login-screen {
  background: radial-gradient(circle at top left, rgba(45, 112, 255, 0.22), transparent 22%),
              radial-gradient(circle at 90% 20%, rgba(139, 96, 255, 0.18), transparent 24%),
              linear-gradient(180deg, #050912 0%, #050b16 28%, #0f1630 100%);
  min-height: calc(100vh - 70px);
  padding: 24px 16px;
}

.login-card {
  width: min(480px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 13, 30, 0.92);
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(3, 9, 26, 0.45);
  overflow: hidden;
  position: relative;
}

.login-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(88, 163, 255, 0.16), transparent 28%),
              radial-gradient(circle at bottom right, rgba(128, 80, 255, 0.12), transparent 22%);
  pointer-events: none;
}

.login-card .card-body {
  position: relative;
  z-index: 1;
  background: rgba(6, 13, 28, 0.95);
  border-radius: 28px;
  padding: 2.4rem;
}

.logo-badge {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #61a3ff 0%, #8360ff 100%);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(97, 163, 255, 0.22);
}

.login-card h1,
.login-card p {
  color: #f5f8ff;
}

.login-card p {
  color: rgba(235, 244, 255, 0.72);
}

.login-card .form-label {
  color: rgba(220, 233, 255, 0.85);
  font-weight: 600;
}

.login-card .form-control {
  background: rgba(14, 23, 47, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7faff;
  border-radius: 14px;
  padding: 1rem 1rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.04);
}

.login-card .form-control::placeholder {
  color: rgba(208, 221, 255, 0.38);
}

.login-card .form-control:focus {
  background: rgba(12, 19, 40, 0.96);
  border-color: rgba(97, 163, 255, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(97, 163, 255, 0.14);
  color: #f7faff;
}

.login-card .btn-primary {
  background: linear-gradient(135deg, #5f8eff 0%, #7f5dff 100%);
  border: none;
  border-radius: 18px;
  padding: 0.95rem 1.2rem;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(95, 142, 255, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.login-card .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(95, 142, 255, 0.3);
}

.login-card .alert {
  border-radius: 16px;
  background: rgba(209, 72, 54, 0.12);
  border: 1px solid rgba(209, 72, 54, 0.18);
  color: #ffdad4;
}

.login-card .form-text {
  color: rgba(189, 206, 255, 0.67);
}

.login-card .text-center.mb-4 {
  z-index: 1;
  position: relative;
}

.login-header {
  width: min(480px, 100%);
  margin-bottom: 2rem;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(18, 54, 109, 0.95), rgba(18, 54, 109, 0.78));
  box-shadow: 0 28px 70px rgba(4, 10, 31, 0.35);
}

.login-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(18, 54, 109, 0.35), transparent 30%),
              radial-gradient(circle at bottom right, rgba(18, 122, 255, 0.16), transparent 25%);
  pointer-events: none;
}

.login-header-inner {
  position: relative;
  z-index: 1;
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.login-header-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.login-header-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.16em;
}

.login-header h1 {
  margin: 0;
  font-size: 1.45rem;
  color: #f8fbff;
}

.login-header p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.login-header-chip {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.login-screen {
  background: radial-gradient(circle at top left, rgba(18, 54, 109, 0.24), transparent 20%),
              radial-gradient(circle at bottom right, rgba(18, 122, 255, 0.16), transparent 18%),
              linear-gradient(180deg, #050912 0%, #050b16 28%, #0f1630 100%);
  min-height: calc(100vh - 70px);
  padding: 32px 18px;
}

.login-body .app-header {
  display: none;
}

@media (max-width: 576px) {
  .login-card {
    border-radius: 24px;
  }

  .login-card .card-body {
    padding: 1.8rem;
  }
}

@media (max-width: 991px) {
  .sidebar-precollapsed .app-sidebar {
    width: 250px;
    min-width: 250px;
    padding: 24px 18px;
    transform: translateX(-100%);
  }

  .sidebar-precollapsed .app-sidebar ~ .app-main {
    margin-left: 0;
  }

  .app-sidebar {
    transform: translateX(-100%);
    width: 250px;
  }

  .app-sidebar.collapsed {
    width: 250px;
  }

  .app-sidebar.open {
    display: block;
    transform: translateX(0) !important;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .app-main {
    margin-left: 0;
  }

  .app-main-inner {
    padding: 24px 22px 32px;
  }

  .page-header {
    align-items: stretch;
  }

  .page-actions {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    margin-top: 16px;
  }

  .indicators-grid-operation,
  .indicators-grid-two,
  .indicators-grid-productivity {
    grid-template-columns: 1fr;
  }

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

  .indicators-slot,
  .indicators-slot-large,
  .indicators-slot-medium {
    min-height: 220px;
  }

  .evolution-assets-list,
  .evolution-impact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .evolution-growth-grid {
    grid-template-columns: 1fr;
  }

  .evolution-impact-big-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .app-header {
    height: 70px;
    overflow: visible;
  }

  .app-header-inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .app-header-search {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 120px);
    margin-right: 0.75rem;
  }

  .app-header-actions {
    flex: 0 0 auto;
    min-width: 0;
  }

  .search-field {
    width: 100%;
  }

  .global-search-panel {
    right: 0;
    left: 0;
    max-height: 68vh;
  }

  .user-button {
    white-space: nowrap;
  }

  .page-header-content {
    min-width: 0;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-evolution-entry-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .indicators-summary-grid {
    grid-template-columns: 1fr;
  }

  .evolution-summary-grid {
    grid-template-columns: 1fr;
  }

  .indicators-chart-wrap,
  .indicators-chart-wrap-donut {
    height: 240px;
  }

  .evolution-achievements-grid {
    grid-template-columns: 1fr;
  }

  .evolution-practices-grid {
    grid-template-columns: 1fr;
  }

  .evolution-hero-card {
    min-height: 240px;
  }

  .evolution-impact-big-grid {
    grid-template-columns: 1fr;
  }
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder,
.search-input::placeholder {
  color: #b8b8b8 !important;
  opacity: 1;
}
