/* ============================================================
   PsicoSys - Sistema de Gestão em Psicologia
   Folha de Estilos Principal
   ============================================================ */

:root {
  --primary:       #d53369;
  --primary-dark:  #daae51;
  --primary-light: #c4854a;
  --accent:        #e1bb34;
  --success:       #28a745;
  --warning:       #ffc107;
  --danger:        #dc3545;
  --info:          #17a2b8;
  --light:         #f4f7fb;
  --dark:          #1a2b3c;
  --text:          #2d3748;
  --text-muted:    #718096;
  --border:        #e2e8f0;
  --white:         #ffffff;
  --sidebar-w:     260px;
  --header-h:      64px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.1);
  --shadow-md:     0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 24px rgba(0,0,0,0.15);
  --radius:        10px;
  --radius-sm:     6px;
  --transition:    all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 14px; scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
  /*background: var(--light);*/
  background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================================
   LOGIN PAGE
   ============================================================ */
.login-page {
  min-height: 100vh;
  /*background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);*/
  background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  background: var(--white);
  border-radius: 18px;
  padding: 48px 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.5s ease;
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo .logo-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(44,95,138,0.35);
}

.login-logo .logo-icon svg { width: 36px; height: 36px; fill: #fff; }

.login-logo h1 { font-size: 24px; font-weight: 700; color: var(--primary); }
.login-logo p  { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.login-card h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}

/* ============================================================
   LAYOUT PRINCIPAL
   ============================================================ */
.app-layout {
  display: flex;
  min-height: 100vh;
}

/* ---- SIDEBAR ---- */
.sidebar {
  width: var(--sidebar-w);
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: var(--transition);
  box-shadow: 3px 0 15px rgba(0,0,0,0.15);
}

.sidebar-brand {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-brand .brand-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.sidebar-brand .brand-icon svg { width: 22px; height: 22px; fill: #fff; }
.sidebar-brand .brand-name { font-size: 18px; font-weight: 700; letter-spacing: 0.5px; }
.sidebar-brand .brand-sub  { font-size: 10px; opacity: 0.7; margin-top: 1px; }

.sidebar-nav { flex: 1; padding: 16px 0; overflow-y: auto; }

.nav-section-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: 0.55;
  padding: 12px 20px 6px;
  font-weight: 600;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
}

.nav-item:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav-item.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #fff;
  border-radius: 0 3px 3px 0;
}

.nav-item svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.9; }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

.user-details { flex: 1; min-width: 0; }
.user-name { font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { font-size: 11px; opacity: 0.65; }

.btn-logout {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7);
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
  display: flex; align-items: center;
}
.btn-logout:hover { color: #fff; background: rgba(255,255,255,0.1); }
.btn-logout svg { width: 16px; height: 16px; }

/* ---- MAIN CONTENT ---- */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-header {
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.page-title { font-size: 18px; font-weight: 700; color: var(--primary); }
.page-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-date {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--light);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.content-area {
  flex: 1;
  padding: 28px;
  overflow-y: auto;
}

/* ============================================================
   CARDS E STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.stat-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg { width: 26px; height: 26px; }
.stat-icon.blue   { background: #dbeafe; color: var(--primary); }
.stat-icon.green  { background: #d1fae5; color: var(--success); }
.stat-icon.yellow { background: #fef3c7; color: #d97706; }
.stat-icon.purple { background: #ede9fe; color: #7c3aed; }

.stat-info { flex: 1; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--text); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   CARDS GENÉRICOS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
}

.card-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}

.card-title { font-size: 15px; font-weight: 600; color: var(--text); }
.card-body  { padding: 22px; }

/* ============================================================
   TABELAS
   ============================================================ */
.table-wrapper { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

thead th {
  background: var(--light);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #f8fafc; }

/* ============================================================
   FORMULÁRIOS
   ============================================================ */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,95,138,0.1);
}

.form-control::placeholder { color: #a0aec0; }

textarea.form-control { resize: vertical; min-height: 100px; }

select.form-control { cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.form-hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary   { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 3px 10px rgba(44,95,138,0.35); }

.btn-success   { background: var(--success); color: #fff; }
.btn-success:hover { background: #218838; }

.btn-danger    { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c82333; }

.btn-warning   { background: var(--warning); color: #212529; }
.btn-warning:hover { background: #e0a800; }

.btn-info      { background: var(--info); color: #fff; }
.btn-info:hover { background: #138496; }

.btn-secondary { background: #6c757d; color: #fff; }
.btn-secondary:hover { background: #5a6268; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 12px 24px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================================
   BADGES / STATUS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.badge-success  { background: #d1fae5; color: #065f46; }
.badge-warning  { background: #fef3c7; color: #92400e; }
.badge-danger   { background: #fee2e2; color: #991b1b; }
.badge-info     { background: #dbeafe; color: #1e40af; }
.badge-secondary{ background: #f3f4f6; color: #374151; }
.badge-primary  { background: #dbeafe; color: var(--primary); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}

.modal-lg { max-width: 800px; }

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.modal-title { font-size: 16px; font-weight: 700; color: var(--text); }

.modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
  display: flex; align-items: center;
}
.modal-close:hover { color: var(--danger); background: #fee2e2; }
.modal-close svg { width: 20px; height: 20px; }

.modal-body   { padding: 24px; }
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ============================================================
   ALERTAS / TOASTS
   ============================================================ */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: slideInRight 0.3s ease;
}

.toast.success { border-color: var(--success); }
.toast.error   { border-color: var(--danger); }
.toast.warning { border-color: var(--warning); }

.toast-icon svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.toast.success .toast-icon { color: var(--success); }
.toast.error   .toast-icon { color: var(--danger); }
.toast.warning .toast-icon { color: var(--warning); }

.toast-msg { font-size: 13px; color: var(--text); flex: 1; }

/* ============================================================
   BUSCA / FILTROS
   ============================================================ */
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-input-wrap svg {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--text-muted);
}

.search-input-wrap input {
  padding-left: 38px;
}

/* ============================================================
   CALENDÁRIO / AGENDAMENTO
   ============================================================ */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-header-day {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 0;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 80px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.calendar-day:hover { background: #f0f7ff; border-color: var(--accent); }
.calendar-day.today { background: #eff6ff; border-color: var(--primary); }
.calendar-day.other-month { opacity: 0.4; }
.calendar-day.has-appointments { border-color: var(--accent); }

.day-number {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.calendar-day.today .day-number {
  background: var(--primary);
  color: #fff;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.appt-dot {
  font-size: 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 3px;
  padding: 1px 5px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.appt-dot.completed { background: var(--success); }
.appt-dot.cancelled { background: #9ca3af; text-decoration: line-through; }

/* ============================================================
   TIMELINE DE DIAGNÓSTICOS
   ============================================================ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item { position: relative; margin-bottom: 24px; }

.timeline-dot {
  position: absolute;
  left: -24px; top: 4px;
  width: 14px; height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-card:hover { box-shadow: var(--shadow-md); }

.timeline-date { font-size: 11px; color: var(--text-muted); font-weight: 600; margin-bottom: 6px; }
.timeline-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.timeline-text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
}

.empty-state svg { width: 56px; height: 56px; opacity: 0.35; margin-bottom: 14px; }
.empty-state h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.empty-state p  { font-size: 13px; }

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeIn      { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp    { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp     { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight{ from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes spin        { to { transform: rotate(360deg); } }

.fade-in    { animation: fadeIn 0.3s ease; }
.fade-in-up { animation: fadeInUp 0.4s ease; }

/* ============================================================
   LOADING
   ============================================================ */
.loading-spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.loading-overlay .spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.d-flex    { display: flex; }
.d-grid    { display: grid; }
.d-none    { display: none !important; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2  { gap: 8px; }
.gap-3  { gap: 12px; }
.gap-4  { gap: 16px; }
.mt-1   { margin-top: 4px; }
.mt-2   { margin-top: 8px; }
.mt-3   { margin-top: 16px; }
.mt-4   { margin-top: 24px; }
.mb-3   { margin-bottom: 16px; }
.mb-4   { margin-bottom: 24px; }
.text-muted   { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger); }
.text-center  { text-align: center; }
.fw-bold { font-weight: 700; }
.fs-sm  { font-size: 12px; }
.w-100  { width: 100%; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 768px) {
  :root { --sidebar-w: 0px; }
  .sidebar { transform: translateX(-260px); width: 260px; }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .content-area { padding: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: repeat(7, 1fr); }
  .calendar-day { min-height: 50px; }
}
/* ============================================================
   MOBILE MELHORADO (SEM ALTERAR DESKTOP)
   ============================================================ */
@media (max-width: 768px) {

  :root { --sidebar-w: 0px; }

  /* SIDEBAR */
  .sidebar {
    transform: translateX(-260px);
    width: 260px;
    position: fixed;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  /* MAIN */
  .main-content {
    margin-left: 0;
  }

  .content-area {
    padding: 14px;
  }

  /* HEADER */
  .top-header {
    padding: 0 14px;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 6px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  /* STATS */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-value {
    font-size: 22px;
  }

  /* GRID DASHBOARD */
  #dashGrid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* GRAFICO + DIAGNOSTICO */
  main .content-area > div:last-child {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* CARDS */
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .card-body {
    padding: 16px;
  }

  /* LISTAS */
  #todayList div,
  #upcomingList div {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  /* BOTÕES */
  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-sm {
    width: auto;
  }

  /* TEXTO */
  .page-title {
    font-size: 16px;
  }

  .page-subtitle {
    font-size: 11px;
  }

  /* CALENDÁRIO */
  .calendar-day {
    min-height: 45px;
    padding: 4px;
  }

  /* TOAST */
  .toast-container {
    right: 10px;
    left: 10px;
  }

  .toast {
    min-width: unset;
    width: 100%;
  }
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--primary);
}

/* Mostrar só no mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

.appointments-layout{
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* MOBILE */
@media (max-width: 900px){

  .appointments-layout{
    grid-template-columns: 1fr;
  }

}