/* ═══════════════════════════════════════════════════════════════
   SHIFA — Design System Central
   Bootstrap 5.3.3 Vanilla + Custom Properties + Componentes
   ═══════════════════════════════════════════════════════════════ */

/* ─── [1] DESIGN TOKENS ─── */

:root {
  /* Cores Shifa */
  --shifa-teal:        #1A7A5A;
  --shifa-teal-dark:   #145c44;
  --shifa-gold:        #D4AF37;
  --shifa-navy:        #1A1A2E;
  --shifa-off-white:   #F8F9FA;
  --shifa-gray-dark:   #4A4A4A;
  --shifa-gray-medium: #6c757d;
  --shifa-gray-light:  #E6E6E6;

  /* Status */
  --shifa-pago-bg:     #e6f7f5;
  --shifa-pago-text:   #1a8a7a;
  --shifa-pendente-bg: #fff3e0;
  --shifa-pendente-text:#cc7a00;

  /* Segmentos */
  --shifa-seg-psi:     #9B72CF;
  --shifa-seg-med:     #2B7BE4;
  --shifa-seg-nut:     #2EC4B6;
  --shifa-seg-edu:     #FF6B35;
  --shifa-seg-ter:     #40E0D0;
  --shifa-seg-gen:     #1A7A5A;

  /* Bordas e sombras */
  --shifa-radius-sm:   8px;
  --shifa-radius-md:   12px;
  --shifa-radius-lg:   16px;
  --shifa-radius-xl:   20px;
  --shifa-shadow-sm:   0 2px 12px rgba(0,0,0,0.04);
  --shifa-shadow-md:   0 4px 30px rgba(0,0,0,0.08);
  --shifa-shadow-hover:0 8px 24px rgba(0,0,0,0.08);

  /* Bootstrap token overrides */
  --bs-body-font-size: 0.875rem;
  --bs-primary:        #1A7A5A;
  --bs-primary-rgb:    26, 122, 90;
  --bs-secondary:      #6c757d;
  --bs-secondary-rgb:  108, 117, 125;
  --bs-success:        #1f8258;
  --bs-success-rgb:    31, 130, 88;
  --bs-danger:         #f5365c;
  --bs-danger-rgb:     245, 54, 92;
  --bs-warning:        #FF6B35;
  --bs-warning-rgb:    251, 99, 64;
  --bs-info:           #11cdef;
  --bs-info-rgb:       17, 205, 239;
  --bs-dark:           #1A1A2E;
  --bs-dark-rgb:       26, 26, 46;
  --bs-link-color:     #1A7A5A;
  --bs-link-hover-color:#145c44;
  --bs-font-sans-serif:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bs-body-color:     #4A4A4A;
  --bs-heading-color:  #1A1A2E;
  --bs-body-bg:        #F8F9FA;
  --bs-border-radius:  12px;
  --bs-border-radius-sm: 8px;
  --bs-border-radius-lg: 16px;
  --bs-border-radius-xl: 20px;
  --bs-card-border-radius: 12px;
  --bs-card-box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  --bs-btn-border-radius: 10px;
  --bs-btn-font-weight: 600;
  --bs-btn-box-shadow: none;
  --bs-btn-bg: #1A7A5A;
  --bs-btn-border-color: #1A7A5A;
  --bs-btn-hover-bg: #145c44;
  --bs-btn-hover-border-color: #145c44;
  --bs-btn-active-bg: #104a38;
  --bs-btn-active-border-color: #104a38;
  --bs-focus-ring-color: rgba(26,122,90,0.25);
  --bs-dropdown-border-color: var(--shifa-gray-light);
  --bs-dropdown-border-radius: var(--shifa-radius-md);
  --bs-dropdown-box-shadow: var(--shifa-shadow-md);
  --bs-modal-content-border-radius: var(--shifa-radius-xl);
  --bs-modal-content-border-color: transparent;
  --bs-modal-content-box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* ─── [2] BASE ─── */

body {
  font-family: var(--bs-font-sans-serif);
  color: var(--bs-body-color);
  background: #f2f4f5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--bs-heading-color);
  font-weight: 700;
}

a { color: var(--bs-link-color); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bs-link-hover-color); }

::placeholder {
  color: #adb5bd !important;
  opacity: 1 !important;
}
::-webkit-input-placeholder { color: #adb5bd !important; opacity: 1 !important; }
:-ms-input-placeholder { color: #adb5bd !important; opacity: 1 !important; }
::-ms-input-placeholder { color: #adb5bd !important; opacity: 1 !important; }

::selection {
  background: var(--shifa-teal);
  color: #fff;
}

/* ─── [3] COMPONENTES ─── */

/* --- Logo --- */
.shifa-logo-h {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.shifa-logo-h img { height: 32px; }

.shifa-logo-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.shifa-logo-v img { height: 48px; }

/* --- Header (topbar profissional + minimal) --- */
.shifa-header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
  height: 64px;
}
.shifa-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}
.shifa-header-nav {
  display: flex;
  gap: 24px;
}
.shifa-header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--shifa-gray-dark);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.shifa-header-nav a:hover,
.shifa-header-nav a.active {
  color: var(--shifa-teal);
  font-weight: 600;
}
.shifa-header-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Sidebar --- */
.shifa-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #fff;
  z-index: 1040;
  overflow-y: auto;
  transition: transform 0.3s ease;
  box-shadow: 2px 0 12px rgba(0,0,0,0.05);
}
.shifa-menu-toggle {
	display: none;
	position: fixed;
	top: 16px;
	left: -2px;
	z-index: 1035;
	width: 40px;
	height: 48px;
	border: none;
	background: #fff;
	border-radius: 5px;
	color: var(--shifa-navy);
	font-size: 1.125rem;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.shifa-sidebar-header {
  padding: 20px 16px;
  border-bottom: 1px solid var(--shifa-gray-light);
}
.shifa-sidebar-header img { height: 26px; }
.shifa-sidebar-close {
  position: absolute;
  top: 16px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  background: #fff;
  color: var(--shifa-gray-medium);
  font-size: 1.125rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.shifa-sidebar-close:hover { background: var(--shifa-off-white); }
.shifa-sidebar-nav { padding: 12px 0; }
.shifa-nav-section {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8898aa;
  font-weight: 600;
  padding: 16px 20px 6px;
}
.shifa-nav-item { list-style: none; }
.shifa-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--shifa-gray-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  margin: 2px 12px;
  transition: all 0.2s;
  min-height: 44px;
}
.shifa-nav-link:hover {
  background: rgba(26,122,90,0.08);
  color: var(--shifa-teal);
}
.shifa-nav-link.active {
  background: var(--shifa-teal);
  color: #fff;
  font-weight: 600;
}
.shifa-nav-link i { width: 20px; text-align: center; font-size: 1rem; }
.shifa-nav-link.disabled,
.shifa-nav-link[aria-disabled="true"] {
  opacity: 0.4;
  pointer-events: none;
}
.shifa-nav-separator {
  border: none;
  border-top: 1px solid var(--shifa-gray-light);
  margin: 8px 20px;
}

/* --- Client Header + Tabs --- */
.shifa-client-header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.shifa-client-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
}
.shifa-client-nav {
  background: #fff;
  border-bottom: 1px solid var(--shifa-gray-light);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shifa-client-nav::-webkit-scrollbar { display: none; }
.shifa-client-nav-inner {
  display: flex;
  gap: 0;
  padding: 0 20px;
}
.shifa-client-nav-link {
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--shifa-gray-dark);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 46px;
}
.shifa-client-nav-link:hover { color: var(--shifa-teal); }
.shifa-client-nav-link.active {
  color: var(--shifa-teal);
  font-weight: 600;
  border-bottom-color: var(--shifa-teal);
}

/* --- Landing Navbar (reusa .shifa-header) --- */
.shifa-landing-nav .nav-link {
  color: var(--shifa-gray-dark) !important;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.shifa-landing-nav .nav-link:hover,
.shifa-landing-nav .nav-link.active { color: var(--shifa-teal) !important; }

/* --- Badge --- */
.shifa-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.5;
}
.shifa-badge-pago       { background: var(--shifa-pago-bg); color: var(--shifa-pago-text); }
.shifa-badge-pendente    { background: var(--shifa-pendente-bg); color: var(--shifa-pendente-text); }
.shifa-badge-confirmado  { background: #eaecfb; color: #5e72e4; }
.shifa-badge-realizado   { background: #e6f7f5; color: #1f8258; }
.shifa-badge-ausente     { background: #fff3e0; color: #cc7a00; }
.shifa-badge-cancelado   { background: #fde8ea; color: #f5365c; }

/* --- Card --- */
.shifa-card {
  background: #fff;
  border-radius: var(--shifa-radius-md);
  box-shadow: var(--shifa-shadow-sm);
  transition: box-shadow 0.2s;
  border: none;
}
.shifa-card:hover { box-shadow: var(--shifa-shadow-hover); }
.shifa-card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--shifa-gray-light);
}
.shifa-card-body { padding: 1.5rem; }
.shifa-card-footer {
  padding: 1rem 1.5rem;
  background: transparent;
  border-top: 1px solid var(--shifa-gray-light);
}

.shifa-stat-card {
  background: #f5f7fa;
  border-radius: var(--shifa-radius-md);
  padding: 1.125rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.shifa-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shifa-shadow-md);
}
.shifa-stat-card .stat-value {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--shifa-navy);
  line-height: 1.2;
}
.shifa-stat-card .stat-label {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
  margin-top: 4px;
}

.card-header h6 {
	line-height: 1.7rem;
}

/* --- Avatar --- */
.shifa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: linear-gradient(135deg, var(--shifa-teal), var(--shifa-gold));
  flex-shrink: 0;
}
.shifa-avatar-sm { width: 28px; height: 28px; font-size: 0.75rem; }
.shifa-avatar-lg { width: 48px; height: 48px; font-size: 1.125rem; }

/* --- Footer --- */
.shifa-footer {
  background: var(--shifa-navy);
  color: rgba(255,255,255,0.7);
  padding: 1.25rem 0;
}
.shifa-footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.shifa-footer a:hover { color: #fff; }

.shifa-footer-minimal {
  background: #fff;
  border-top: 1px solid var(--shifa-gray-light);
  padding: 1.25rem 0;
  margin-top: 2rem;
}


/* --- Empty State --- */
.shifa-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--shifa-gray-medium);
}
.shifa-empty-state i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}
.shifa-empty-state p {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* --- Hero Section --- */
.shifa-hero {
  background: var(--shifa-navy);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.shifa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(26,122,90,0.15), transparent 60%);
}
.shifa-hero h1 {
  color: #fff;
  font-weight: 800;
}

/* ─── [4] LAYOUTS ─── */

/* Dashboard: sidebar + main */
.shifa-layout-dashboard {
  display: flex;
  min-height: 100vh;
}
.shifa-layout-dashboard .shifa-main {
  flex: 1;
  margin-left: 260px;
  padding: 24px;
  min-width: 0;
}

/* Client: header + tabs + main */
.shifa-layout-client {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bs-body-bg);
}
.shifa-layout-client .shifa-main {
  flex: 1;
  padding: 24px;
}

.badge {
	border-radius:20px;
}

.text-xs span,
.text-xs {
	font-size: 0.8rem;
}

.text-sm span,
.text-sm {
	font-size: 0.95rem;
}

/* ─── [5] RESPONSIVE ─── */

/* Sidebar toggle on mobile */
@media (max-width: 991.98px) {

#navMenu {
	background-color: #fff !important;
	padding: 1rem;
}

.navbar-toggler {
	border: none;
}

  .shifa-menu-toggle { display: flex; }

  .shifa-sidebar {
    transform: translateX(-100%);
    z-index: 1060;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
  }
  .shifa-sidebar.show { transform: translateX(0); }
  .shifa-sidebar-close { display: flex; }
  .shifa-layout-dashboard .shifa-main { margin-left: 0; padding: 16px; padding-top: 60px; }

  /* Overlay */
  .shifa-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1055;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .shifa-sidebar.show ~ .shifa-sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Client nav scroll on mobile */
@media (max-width: 767.98px) {
  .shifa-client-nav-inner { padding: 0 12px; }
  .shifa-client-nav-link { padding: 10px 14px; font-size: 0.8125rem; }
  .shifa-client-header-inner { padding: 0 12px; }
}

/* Header responsive */
@media (max-width: 767.98px) {
  .shifa-header-inner { padding: 0 12px; }
  .shifa-header-nav { gap: 12px; }
  .shifa-header-nav a { font-size: 0.8125rem; }
  .shifa-layout-dashboard .shifa-main { padding: 16px; }
}

/* Landing nav mobile */
@media (max-width: 991.98px) {
  .shifa-landing-nav {
    position: relative;
  }
  .shifa-landing-nav .container {
    position: static;
  }
  .shifa-landing-nav .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 12px;
    left: auto;
    width: 280px;
    max-width: calc(100vw - 24px);
    background: #fff;
    border-radius: var(--shifa-radius-lg);
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--shifa-gray-light);
    z-index: 1050;
  }
  .shifa-landing-nav .navbar-collapse .nav-link {
    color: var(--shifa-navy) !important;
    padding: 0.6rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
  }
  .shifa-landing-nav .navbar-collapse .nav-link:hover {
    background: var(--shifa-off-white);
    color: var(--shifa-teal) !important;
  }
  .shifa-landing-nav .navbar-collapse .navbar-nav { gap: 2px; }
  .shifa-landing-nav .navbar-collapse .d-flex {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--shifa-gray-light);
  }
  .shifa-landing-nav .navbar-collapse .btn { width: 100%; }
}

/* Card header link arrow */
.shifa-card-header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--shifa-gray-medium);
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
    align-self: baseline;
}
.shifa-card-header-link:hover {
  background: var(--shifa-off-white);
  color: var(--shifa-teal);
}

/* Acoes carousel grid */
.acoes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 991.98px) {
  .acoes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .acoes-grid { grid-template-columns: 1fr; }
}

.shifa-breadcrumb {
  background: #fff;
  padding: 10px 8px;
  margin: 0 12px;
  border-radius: 8px;
}
.shifa-breadcrumb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.shifa-breadcrumb-path {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.shifa-breadcrumb .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
}
.shifa-breadcrumb .breadcrumb-item a {
  color: var(--shifa-teal);
  text-decoration: none;
}
.shifa-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
.shifa-breadcrumb .breadcrumb-item.active {
  color: var(--shifa-gray-dark);
  font-weight: 500;
}
.shifa-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--shifa-gray-light);
}
.shifa-breadcrumb-user {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.shifa-breadcrumb-user:hover {
  background: var(--shifa-off-white);
  text-decoration: none;
  color: inherit;
}
.shifa-breadcrumb-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--shifa-gray-medium);
  text-decoration: none;
  transition: all 0.2s;
}
.shifa-breadcrumb-link:hover {
  background: var(--shifa-off-white);
  color: var(--shifa-danger, #f5365c);
}
.shifa-breadcrumb-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shifa-gray-medium);
  font-size: 0.875rem;
}
.shifa-breadcrumb-username {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--shifa-gray-dark);
}
@media (max-width: 767.98px) {
  .shifa-breadcrumb 
  { 
    padding: 10px 2px; 
  }
  .shifa-bc-desktop { display: none !important; }
  .shifa-breadcrumb .breadcrumb-item + .breadcrumb-item::before { display: none; }
  .shifa-breadcrumb-username { display: none; }
  .shifa-breadcrumb-current {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--shifa-navy);
  }
}

/* Filtro período padronizado */
.filtro-periodo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.filtro-periodo-label {
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}
.filtro-periodo-sep {
  font-size: 0.8125rem;
}
.filtro-periodo-input {
  width: 140px;
  min-width: 120px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .filtro-periodo { gap: 6px; }
  .filtro-periodo-input { width: 120px; min-width: 100px; font-size: 0.8125rem; }
}

/* ─── [6] UTILITIES ─── */

/* Touch target minimum */
.shifa-touch-target {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Text truncation */
.shifa-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card view para tabelas mobile */
@media (max-width: 767.98px) {
  .shifa-table-mobile thead { display: none; }
  .shifa-table-mobile tbody tr {
    display: block;
    margin-bottom: 0.75rem;
    background: #fff;
    border-radius: var(--shifa-radius-md);
    box-shadow: var(--shifa-shadow-sm);
    padding: 12px;
  }
  .shifa-table-mobile tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--shifa-gray-light);
    text-align: right;
    font-size: 0.875rem;
  }
  .shifa-table-mobile tbody td:last-child { border-bottom: none; }
  .shifa-table-mobile tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--shifa-gray-medium);
    text-align: left;
    margin-right: auto;
    padding-right: 12px;
  }
}

/* Skip navigation (a11y) */
.shifa-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--shifa-teal);
  color: #fff;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.shifa-skip-link:focus { top: 0; }

/* ─── [7] ARGON COMPAT UTILITIES ─── */
/* Compat classes for Argon patterns still in templates */

/* Opacity (Argon non-standard values) */
.opacity-5 { opacity: 0.05; }
.opacity-7 { opacity: 0.07; }
.opacity-10 { opacity: 0.1; }

/* Border radius (Argon) */
.border-radius-lg { border-radius: 0.75rem; }
.border-radius-md { border-radius: 0.5rem; }
.border-radius-xl { border-radius: 1rem; }

/* Section icon (profile page) */
.section-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  flex-shrink: 0;
}

/* Shadow utilities (Argon) */
.shadow-primary { box-shadow: 0 4px 20px rgba(26,122,90,0.14); }
.shadow-dark { box-shadow: 0 4px 20px rgba(26,26,46,0.14); }

/* Badge sizes (Argon) */
.badge-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.6875rem;
}

/* Table header style (Argon pattern) */
.text-xxs { font-size: 0.6875rem; }

/* Mask (Argon) */
.mask {
  position: absolute;
  inset: 0;
  background-size: cover;
}

/* Form switch (Argon) */
.form-switch .form-check-input {
  width: 2.5em;
  height: 1.25em;
}

/* Gradient utilities (for dynamic Django template usage) */
.bg-gradient-primary { background: var(--shifa-teal) !important; }
.bg-gradient-secondary { background: var(--shifa-gray-medium) !important; }
.bg-gradient-success { background: var(--shifa-success, #1f8258) !important; }
.bg-gradient-danger { background: var(--shifa-danger, #f5365c) !important; }
.bg-gradient-warning { background: var(--shifa-warning, #fb6340) !important; }
.bg-gradient-info { background: var(--shifa-info, #11cdef) !important; }
.bg-gradient-dark { background: var(--shifa-navy) !important; }

/* Shadow-info (for dashboard insight circles) */
.shadow-info { box-shadow: 0 4px 20px rgba(17,205,239,0.14); }

/* Avatar Argon pattern */
.avatar-sm { width: 32px; height: 32px; font-size: 0.75rem; }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 600; color: #fff; }

/* Icon Argon pattern (stat cards in admin) */
.icon.bg-gradient-primary { background: var(--shifa-teal) !important; color: #fff; }
.icon.bg-gradient-success { background: var(--shifa-success, #1f8258) !important; color: #fff; }
.icon.bg-gradient-danger { background: var(--shifa-danger, #f5365c) !important; color: #fff; }
.icon.bg-gradient-warning { background: var(--shifa-warning, #fb6340) !important; color: #fff; }
.icon.bg-gradient-info { background: var(--shifa-info, #11cdef) !important; color: #fff; }
.icon.bg-gradient-dark { background: var(--shifa-navy) !important; color: #fff; }

/* ─── [8] MOBILE GLOBAL FIXES ─── */

/* Minimum touch targets for all interactive elements */
a.btn,
button.btn,
.nav-link,
.tab-link,
[role="button"] {
	min-height: 36px;
	align-content: center;
}

/* Form inputs: prevent iOS zoom */
@media (max-width: 767.98px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  select.form-control,
  textarea.form-control {
    font-size: 16px !important;
  }
}

/* Tables: horizontal scroll */
.table-responsive {
  border-radius: var(--shifa-radius-md);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal overflow on body */
@media (max-width: 767.98px) {
  body { overflow-x: hidden; }
  .container { padding-left: 12px; padding-right: 12px; }
}

/* ─── [9] BOOTSTRAP PRIMARY OVERRIDES ─── */
/* Bootstrap btn-primary hardcodes #0d6efd — override with Shifa green */
.btn-primary {
  --bs-btn-bg: #1A7A5A !important;
  --bs-btn-border-color: #1A7A5A !important;
  --bs-btn-hover-bg: #145c44 !important;
  --bs-btn-hover-border-color: #145c44 !important;
  --bs-btn-active-bg: #104a38 !important;
  --bs-btn-active-border-color: #104a38 !important;
  --bs-btn-focus-shadow-rgb: 26,122,90 !important;
}
.btn-outline-primary {
  --bs-btn-color: #1A7A5A !important;
  --bs-btn-border-color: #1A7A5A !important;
  --bs-btn-hover-bg: #1A7A5A !important;
  --bs-btn-hover-border-color: #1A7A5A !important;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-active-bg: #145c44 !important;
  --bs-btn-active-border-color: #145c44 !important;
  --bs-btn-focus-shadow-rgb: 26,122,90 !important;
}
.form-check-input:checked {
  background-color: #1A7A5A !important;
  border-color: #1A7A5A !important;
}
.form-check-input:focus {
  border-color: #1A7A5A !important;
  box-shadow: 0 0 0 0.25rem rgba(26,122,90,0.25) !important;
}
.page-link {
  --bs-link-color: #1A7A5A;
}
.page-link:hover {
  --bs-link-hover-color: #145c44;
}

/* ─── [10] UTILITY CLASSES (substituem inline styles) ─── */

/* Font sizes */
.fs-xxs { font-size: 0.5rem; }
.fs-3xs { font-size: 0.55rem; }
.fs-2xs { font-size: 0.6rem; }
.fs-xs  { font-size: 0.65rem; }

/* Dot icon (onboarding bullets) */
.dot-icon {
  font-size: 6px;
  vertical-align: middle;
}

/* Avatar sizes */
.avatar-18 { width: 18px; height: 18px; border-radius: 50%; font-size: 0.5rem; display: inline-flex; align-items: center; justify-content: center; }
.avatar-36 { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.avatar-40 { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.avatar-48 { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.avatar-80 { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }

/* Width helpers */
.w-0   { width: 0%; }
.w-8p  { width: 8%; }
.w-10p { width: 10%; }
.w-12p { width: 12%; }
.w-14p { width: 14%; }
.w-15p { width: 15%; }
.w-16p { width: 16%; }
.w-17p { width: 17%; }
.w-22p { width: 22%; }
.w-44p { width: 44%; }
.w-60  { width: 60px; }
.w-140 { width: 140px; }

/* Cover images */
.cover-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--shifa-radius-md);
}

/* Section colors */
.text-primary-shifa { color: var(--shifa-teal) !important; }
.text-navy { color: var(--shifa-navy) !important; }
.text-gray-dark { color: var(--shifa-gray-dark) !important; }

/* Badge with border (filter chips) */
.filter-chip {
  border: 1px solid var(--shifa-gray-light);
  border-radius: 0.5rem;
  font-size: 0.78rem;
  color: var(--shifa-gray-dark);
  background: #fafbfe;
  padding: 0.25rem 0.5rem;
  display: inline-flex;
  align-items: center;
}

/* Width helpers */
.w-44p { width: 44%; }
.w-16p { width: 16%; }

/* Hide/show */
.d-none { display: none !important; }
.visibility-hidden { visibility: hidden; }

/* Position */
.position-fixed-top { position: fixed; top: 0; left: 0; right: 0; }

/* Object fit */
.object-fit-cover { object-fit: cover; }

/* Line height */
.lh-tight { line-height: 1.3; }

/* Min width */
.min-w-0 { min-width: 0; }

/* Gap */
.gap-2px { gap: 2px; }

/* Padding */
.pe-45 { padding-right: 45px; }

/* Display */
.d-inline { display: inline !important; }

/* Text colors */
.text-warning-dark { color: #92400e !important; }
.text-amber-dark { color: #78350f !important; }
.text-teal { color: var(--shifa-teal) !important; }
.text-navy { color: var(--shifa-navy) !important; }

/* Background colors */
.bg-primary-shifa { background-color: var(--shifa-teal) !important; }
.bg-shifa-off-white { background-color: var(--shifa-off-white) !important; }

/* Border radius */
.rounded-lg { border-radius: 0.75rem; }
.rounded-top-lg { border-radius: 1rem 1rem 0 0; }
.border-top-custom { border-top: 1px solid var(--shifa-gray-light); }

/* intl-tel-input overrides */
.iti { width: 100%; position: relative; }
.iti__tel-input { width: 100% !important; }
.iti .iti__country-container { right: auto; }
.form-control.iti__tel-input {
  padding-left: 0.75rem;
  padding-right: 80px;
}

/* Auth pages */
.auth-main { 
  padding: 50px 0 ; 
}
.auth-subtitle { font-size: 0.875rem; }
.auth-link { font-size: 0.8125rem; color: var(--shifa-teal); }
.auth-link:hover { color: var(--shifa-teal-dark); }
.auth-footer-text { font-size: 0.875rem; }

/* Word break */
.word-break { word-break: break-all; }

/* Progress bar dynamic width */
.progress-bar-width { width: var(--bar-width); }

/* Progress bar with label */
.progress-bar-label { border-radius: 6px; font-size: 0.8rem; font-weight: 600; }

/* Week table header day */
.week-th-day { font-weight: 700; color: var(--shifa-teal); padding: 8px 6px; }
.week-th-day.week-th-active { background: #f8f9fe; }

/* Action card (dashboard) */
.action-card { height: 160px; background: linear-gradient(135deg, var(--action-color), #a8b8f0); color: #fff; }

/* Text gradient verde */
.text-green-gradient {
  background: linear-gradient(135deg, #1A7A5A, #2EC4B6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container widths */
.max-w-280 { max-width: 280px; }
.max-w-600 { max-width: 600px; }

/* Avatar with initials (gradient background) */
.avatar-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--shifa-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.avatar-initials-navy {
  background: var(--shifa-navy);
}

/* Progress bar color */
.progress-bar {
  background-color: var(--shifa-teal);
}

/* Step number circle */
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.step-circle-teal { background: var(--shifa-teal); color: #fff; }
.step-circle-navy { background: var(--shifa-navy); color: #fff; }

/* ─── [11] INLINE STYLE REPLACEMENTS ─── */


.shifa-nav-list { 
  list-style: none; padding: 0; margin: 0; 
}


.card {
	background-color: #fff;
	border: var(--bs-card-border-width) solid var(--shifa-off-white);
	border-radius: var(--bs-card-border-radius);
  padding-bottom: 16px;
}

.card-header {
	padding: 1.2rem !important;
	background-color: #fff;
	border: none;
}

/* Layout: main with top padding */
.main-padding-64 { padding-top: 64px; min-height: 100vh; }
.main-padding-76 { padding-top: 76px; }
.main-padding-88 { padding-top: 88px; }
.auth-section { min-height: calc(100vh - 64px); }
.body-flex-col { display: flex; flex-direction: column; min-height: 100vh; }

/* Auth decorative panel */
.auth-panel {
  border-radius: var(--shifa-radius-xl);
  background: linear-gradient(135deg, var(--shifa-teal), #24a89c);
}
.auth-panel-overlay {
  background: linear-gradient(135deg, var(--shifa-teal), #24a89c);
  opacity: 0.9;
}
.auth-icons {
  font-size: 2.2rem;
  color: rgba(255,255,255,0.25);
}
.auth-title {
  font-size: 1.5rem;
}
.auth-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
}

/* Footer minimal text */
.footer-text-sm {
  font-size: 0.8125rem;
  color: var(--shifa-gray-medium);
}
.footer-text-base {
  font-size: 0.875rem;
}
.footer-copy {
  font-size: 0.875rem;
}

/* Timeline */
.timeline-wrapper {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.tl-time-slot {
  min-width: 60px;
  font-size: 0.85rem;
  line-height: 2;
}
.tl-time-slot.tl-slot-active {
  font-weight: 700;
  color: #5e72e4;
}
.tl-time-slot.tl-slot-livre {
  font-weight: 600;
  color: #8898aa;
}

/* Week table */
.week-table-scroll {
  overflow-x: auto;
}
.week-table {
  min-width: 380px;
  font-size: 0.9rem;
}
.week-th {
  width: 50px;
  color: #8898aa;
  font-weight: 700;
  padding: 8px 6px;
}
.week-th.week-th-active {
  font-weight: 700;
  color: #5e72e4;
  padding: 8px 6px;
  background: #f8f9fe;
}
.week-td {
  padding: 6px 4px;
}
.week-td-hour {
  color: #5e72e4;
  width: 50px;
  padding: 8px 4px;
}
.week-td-active {
  padding: 6px 4px;
}
.week-pill-confirmado {
  background: #d4edda;
  color: #155724;
  line-height: 2;
  font-size: 0.75rem;
}
.week-pill-agendado {
  background: #fff3cd;
  color: #856404;
  line-height: 2;
  font-size: 0.75rem;
}

/* Week legend dots */
.dot-confirmado { width: 12px; height: 12px; background: #d4edda; vertical-align: middle; }
.dot-pendente { width: 12px; height: 12px; background: #fff3cd; vertical-align: middle; }
.dot-livre { width: 12px; height: 12px; background: #f8f9fa; border: 1px solid #dee2e6; vertical-align: middle; }

/* Progress bar thin */
.progress-thin { height: 6px; }
.progress-thin-sm { height: 4px; }
.progress-thin-md { height: 8px; }

/* Insight circle */
.insight-icon { width: 28px; height: 28px; }

/* Action carousel */
.acao-carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.acao-carousel-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}
.acao-card-inner {
  border-radius: 12px;
  overflow: hidden;
}
.acao-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #e9ecef;
  flex-shrink: 0;
  border: 2px solid #e9ecef;
}
.acao-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.acao-avatar-initials {
  background: linear-gradient(135deg, #5e72e4, #825ee4);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}
.acao-preview {
  height: 160px;
  color: #fff;
}

/* Calendar nav button */
.cal-nav-btn {
  font-size: 1.2rem;
  color: #5e72e4;
  text-decoration: none;
}

/* Calendar legend dots */
.cal-dot-selecionado {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #5e72e4;
  vertical-align: middle;
}
.cal-dot-disponivel {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #f8f9fe;
  border: 1px solid #dee2e6;
  vertical-align: middle;
}
.cal-dot-indisponivel {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #f5f5f5;
  vertical-align: middle;
}

/* Compromissos card (floating) */
.compromissos-card {
  display: none;
  position: fixed;
  top: 50%;
  right: 1rem;
  z-index: 9999;
  border-radius: 0.75rem;
  max-width: 300px;
  width: 100%;
  transform: translateY(-50%);
}

/* Calendar column */
.cal-col {
  width: 440px;
  max-width: 100%;
}
.cal-col-times {
  min-width: 180px;
}
.data-display {
  color: #5e72e4;
  min-height: 1.5rem;
}

/* Small circle dot */
.dot-circle-sm {
  font-size: 0.35rem;
}
.dot-circle-primario {
  font-size: 0.35rem;
  color: #5e72e4;
}
.dot-circle-aviso {
  font-size: 0.35rem;
  color: #fbcf33;
}

/* Time grid loading/error states */
.timegrid-loading,
.timegrid-empty,
.timegrid-error {
  grid-column: span 2;
  text-align: center;
  padding: 0.8rem 0;
}
.timegrid-empty { color: #8898aa; }
.timegrid-error { color: #f5365c; }

/* Profile page */
.avatar-placeholder-header {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-placeholder-header .icon-gradient {
  font-size: 2.4rem;
  background: linear-gradient(135deg, #5e72e4, #825ee4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.avatar-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}
.file-input-hidden {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -9999;
  width: 1px;
  height: 1px;
}

/* Pix info box */
.pix-info-box {
  background: #f8f9fe;
  border-radius: 8px;
  padding: 12px 16px;
  border-left: 4px solid #2dce89;
}
.pix-info-line {
  line-height: 1.6;
}
.pix-info-sub {
  line-height: 1.6;
  padding-left: 1.4rem;
}

/* Section icon color variants */
.section-icon-gray { background: var(--shifa-gray-medium, #6c757d); color: #fff; }
.section-icon-warning { background: var(--shifa-warning, #fb6340); color: #fff; }

/* Profile action bar */
.profile-action-bar {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.75rem;
  padding: 12px 16px;
  margin-top: 1rem;
}
.profile-action-bar-inner {
  max-width: 1400px;
}

/* Hidden elements (JS toggling) */
.d-none { display: none !important; }

/* Table scroll */
.table-scroll-600 { max-height: 600px; overflow-y: auto; }
.table-scroll-400 { max-height: 400px; overflow-y: auto; }
.table-scroll-260 { max-height: 260px; overflow-y: auto; }

/* Table col widths */
.col-w-90 { width: 90px; }
.col-w-120 { width: 120px; }
.col-w-80 { width: 80px; }
.col-w-50p { width: 50%; }

/* Date input compact */
.date-input-compact {
  max-width: 130px;
  min-width: 100px;
}

/* Separator line */
.separator-vertical {
  width: 1px;
  height: 18px;
  border-left: 1px solid #dee2e6;
}

/* Home page */
.hero-particle-lg {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}
.hero-particle-md {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 10%;
  animation-delay: -5s;
}
.hero-particle-sm {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 20%;
  animation-delay: -10s;
}
.benefit-icon-teal {
  width: 56px;
  height: 56px;
  background: rgba(46,196,182,0.1);
  color: var(--shifa-teal);
}
.benefit-icon-navy {
  width: 56px;
  height: 56px;
  background: rgba(26,26,46,0.08);
  color: var(--shifa-navy);
}
.section-label {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}
.card-navy {
  background: var(--shifa-navy);
  border-radius: var(--shifa-radius-lg);
}
.section-teal {
  background: var(--shifa-teal);
}
.footer-divider {
  border-color: rgba(255,255,255,.1);
}

/* Profile view */
.profile-container {
  max-width: 960px;
}
.svc-category-header {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--fc-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.35rem 1rem 0.15rem;
  background: #fafbfe;
  border-bottom: 1px solid #f4f5f9;
}
.svc-category-icon {
  margin-right: 0.3rem;
}
.contact-bar {
  background: #fff;
  border: 1px solid var(--fc-border);
  border-radius: var(--fc-card-radius);
}
.contact-icon {
  font-size: 1rem;
}
.rating-big { text-align: center; }
.rating-big-bars { flex: 1; min-width: 140px; }
.star-gray { font-size: 2rem; filter: grayscale(1); opacity: 0.4; }
.rating-cta-text { max-width: 400px; margin-left: auto; margin-right: auto; }

/* Prontuario */
.prontuario-scroll {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 4px;
}
.prontuario-paper {
  background: #fff;
  border: 1px solid #d2d6da;
  border-top: 3px solid #5e72e4;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.prontuario-header {
  background: #f8f9fe;
  border-bottom: 1px solid #e9ecef;
}
.prontuario-footer {
  background: #f8f9fe;
  border-top: 1px solid #e9ecef;
}
.prontuario-foto {
  width: 36px;
  height: 36px;
  object-fit: cover;
}
.prontuario-tipo-icon {
  width: 28px;
  height: 28px;
  font-size: 0.65rem;
}
.prontuario-pre {
  white-space: pre-wrap;
}

/* Modal prontuario */
.modal-prontuario-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  overflow-y: auto;
}
.modal-prontuario-content {
  position: relative;
  width: 80%;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.modal-prontuario-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #e9ecef;
}
.modal-prontuario-title {
  margin: 0;
  font-size: 0.9rem;
}
.modal-prontuario-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}
.modal-prontuario-body {
  padding: 16px 20px;
  min-height: 200px;
}

/* Sugestoes ocupacao */
.sugestao-icon { width: 32px; height: 32px; }
.chart-periodo-wrap { position: relative; height: 65px; }
.ocupacao-dia-label { min-width: 80px; }
.ocupacao-dia-bar {
  height: 24px;
  border-radius: 6px;
  background: #e9ecef;
}
.ocupacao-dia-bar-inner {
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Blog */
.blog-cover-lg { min-height: 250px; }
.blog-cover-md { height: 200px; }

/* Filter pills */
.filter-pills { margin-top: 0.25rem; }

/* Sign-in toggle */
.toggle-senha {
  position: absolute;
  right: 15px;
  cursor: pointer;
  color: #8898aa;
  font-size: 1.1rem;
}
.toggle-senha-center {
  position: absolute;
  right: 15px;
  top: 50px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #8898aa;
  font-size: 1.1rem;
}

/* Blog post images */
.blog-img-thumb { height: 60px; border-radius: 0.375rem; }
.blog-avatar-sm { width: 40px; height: 40px; }
.blog-avatar-lg { width: 60px; height: 60px; font-size: 1.5rem; }
.blog-recent-img { height: 120px; object-fit: cover; }

/* Client detail */
.cliente-header-avatar { width: 28px; height: 28px; font-size: 0.65rem; }

/* Booking sucesso */
.booking-avatar-lg {
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}
.booking-price-lg {
  font-size: 1.3rem;
}
.booking-pix-key {
  font-family: monospace;
  font-size: 1.2rem;
  word-break: break-all;
  max-width: 100%;
}

/* Billing */
.billing-card-bg {
  background-image: url('https://raw.githubusercontent.com/creativetimofficial/public-assets/master/argon-dashboard-pro/assets/img/card-visa.jpg');
}

/* Empty states */
.empty-icon-lg {
  font-size: 3.5rem;
  opacity: 0.7;
}
.empty-icon-xl {
  font-size: 3.5rem;
  opacity: 0.4;
}

/* Dependentes */
.dep-header-title { color: #1e293b; font-weight: 700; }
.dep-prof-name { min-width: 140px; }
.dep-prof-esp { margin-top: 2px; font-size: 12px; color: #94a3b8; }

/* Professional list search */
.search-form-pro { position: relative; z-index: 2; max-width: 950px; margin: 2rem auto 0; }
.search-col-filters { padding-left: 0; }
.search-col-results { padding-right: 0; }
.search-loading { display: none; }
.nome-search-row { display: flex; gap: 4px; }
.nome-search-input { flex: 1; }
.nome-search-btn { white-space: nowrap; display: flex; align-items: center; gap: 4px; }

/* Cliente dados */
.foto-section-hidden { display: none; }

/* Avaliacao */
.avaliacao-icon {
  background: #5e72e4;
  color: #fff;
  font-size: 2rem;
}

/* Prontuario form */
.template-radio-hidden { display: none; }

/* Admin specialty tree */
.tree-row-bg { background-color: #f0f2f5; }
.tree-td-indent { padding-left: 5.5rem; }

/* Admin users */
.admin-card-scroll { max-height: 500px; }
.admin-search-input { width: 200px; }

/* Agendamentos */
.agendamento-divider {
  width: 1px;
  height: 18px;
  border-left: 1px solid #dee2e6;
}
.agendamento-actions { vertical-align: middle; }

/* Servico form autocomplete */
.autocomplete-list {
  width: 100%;
  max-height: 280px;
  overflow-y: auto;
  display: none;
}

/* Blog pagamentos */
.pix-status-hidden { display: none; }

/* Onboarding */
.onboarding-sticky { position: sticky; top: 1.5rem; }
.onboarding-icon-circle {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-disabled { pointer-events: none; }

/* Registro documental */
.pre-wrap { white-space: pre-wrap; }

/* Blog meus posts col widths */
.col-w-30 { width: 30px; }
.col-w-40p { width: 40%; }
.col-w-170 { width: 170px; }
.col-w-40 { width: 40px; }
.col-w-50p { width: 50%; }
.width-auto { width: auto; }
.w-60 { width: 60%; }
.w-100 { width: 100%; }

/* Tables page */
.tables-progress-bar { background: var(--shifa-info, #11cdef); }
.tables-progress-bar-success { background: var(--shifa-success, #1f8258); }

/* Client prontuarios header */
.cp-icon { font-size: 24px; color: var(--fc-primary); }
.cp-title { color: var(--fc-heading); }

/* Endereco delete icon */
.endereco-delete-icon {
  font-size: 3.5rem;
  opacity: 0.7;
}

/* Enderecos icon */
.endereco-icon-lg {
  font-size: 3.5rem;
  opacity: 0.4;
}

/* Password reset email */
.email-center { text-align: center; }
.email-hr {
  border: 0;
  border-top: 1px solid #e9ecef;
  margin: 20px 0;
}
.email-login-link {
  color: #5e72e4;
  font-weight: 600;
}

/* Navbar icon */
.navbar-icon {
  font-size: 1.25rem;
  color: var(--shifa-navy);
}

/* Client dependente header */
.dep-name-title {
  color: #1e293b;
  font-weight: 700;
}
