@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@300;400;500&family=Playfair+Display:wght@500;600;700&display=swap');

/* ==========================================================================
   TOKENS — Light (padrão)
   ========================================================================== */
:root {
  /* Paleta da marca */
  --bordo: #6E1423;
  --bordo-dark: #4A0D18;
  --bordo-light: #8B1E2D;
  --cobre: #6E1423;
  --dourado: #C9A84C;
  --creme: #F5F0E8;
  --musgo: #3F7A5A;

  /* Paleta light */
  --bg-base: #F4F7F6;
  --bg-surface: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.80);
  --bg-hover: rgba(0, 0, 0, 0.04);
  --bg-dot: rgba(110, 20, 35, 0.12);

  --text-primary: #2C3A35;
  --text-secondary: #4A5C54;
  --text-muted: #7A9488;
  --text-faint: #B0C8BE;

  --accent: var(--bordo);
  --accent-light: rgba(110, 20, 35, 0.10);
  --accent-glow: rgba(110, 20, 35, 0.18);
  --accent-hover: var(--bordo-dark);

  --border: rgba(110, 20, 35, 0.14);
  --border-light: rgba(110, 20, 35, 0.07);

  --shadow-sm: 0 2px 8px rgba(44, 58, 53, 0.06);
  --shadow-md: 0 8px 28px rgba(44, 58, 53, 0.08);
  --shadow-lg: 0 20px 60px rgba(44, 58, 53, 0.10);

  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;

  --sidebar-width: 204px;
  --topbar-height: 64px;

  --font-sans: 'Inter', sans-serif !important;
  --font-mono: 'Inter', sans-serif !important;
  --font-serif: 'Playfair Display', serif;

  /* Status */
  --green: #3F7A5A;
  --amber: #B87333;
  --red: #8B1E2D;
}

/* ==========================================================================
   TOKENS — Dark (grafite-chumbo)
   ========================================================================== */
[data-theme="dark"] {
  --bg-base: #1A1A1E;
  --bg-surface: #242428;
  --bg-glass: rgba(28, 28, 33, 0.92);
  --bg-hover: rgba(255, 255, 255, 0.055);
  --bg-dot: rgba(255, 255, 255, 0.04);

  --text-primary: #EAEAEA;
  --text-secondary: #A0A0A8;
  --text-muted: #66666E;
  --text-faint: #38383E;

  --accent: var(--dourado);
  --accent-light: rgba(201, 168, 76, 0.10);
  --accent-glow: rgba(201, 168, 76, 0.16);
  --accent-hover: #E0C46E;

  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.04);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.40);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.50);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.60);

  --green: #4ade80;
  --amber: #d9985a;
  --red: #e0566a;

}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}

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

button {
  font-family: inherit;
}

/* ==========================================================================
   Background mesh
   ========================================================================== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.bg-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--bg-dot) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  transition: opacity 0.25s;
}

.bg-gradient-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 18% 20%, rgba(110, 20, 35, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(201, 168, 76, 0.10) 0%, transparent 70%),
    var(--bg-base);
  transition: background 0.25s;
}

[data-theme="dark"] .bg-gradient-mesh {
  background: var(--bg-base);
}

/* ==========================================================================
   App Shell
   ========================================================================== */
.app-shell {
  display: flex;
  min-height: 100vh;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bordo) 0%, var(--bordo-dark) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-right: 1px solid var(--bordo-dark);
  padding: 1.25rem 1rem;
  gap: 1.5rem;
  z-index: 40;
  color: var(--creme);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s;
}

/* Toggle btn */
.sidebar-toggle-btn {
  position: absolute;
  right: -12px;
  top: 32px;
  z-index: 101;
}

.sidebar-toggle-btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.sidebar-toggle-btn button:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

/* ==========================================================================
   Brand — avatar circular com foco no rosto
   ========================================================================== */
.sidebar-brand {
  padding: 20px 4px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 4px;
  transition: all 0.3s;
}

.sidebar-brand-icon {
  width: 60px;
  /* era 46px */
  height: 60px;
  /* era 46px */
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--dourado);
  box-shadow:
    0 0 0 3px rgba(201, 168, 76, 0.25),
    var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.sidebar-brand-icon:hover {
  border-color: var(--dourado);
  box-shadow:
    0 0 0 3px rgba(201, 168, 76, 0.40),
    var(--shadow-md);
}

.sidebar-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Sobe o enquadramento para focar no rosto, não na cintura */
  object-position: center 8%;
  display: block;
  border-radius: 50%;
}

.sidebar-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-brand-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--creme);
  white-space: nowrap;
}

.sidebar-brand-sub {
  display: block;
  font-size: 0.72rem;
  line-height: 1.2;
  color: rgba(245, 240, 232, 0.62);
  font-style: italic;
  font-weight: 300;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  overflow-y: auto;
}

.nav-section {
  margin-bottom: 8px;
}

.sidebar-section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.55);
  text-transform: uppercase;
  margin-bottom: 2px;
  user-select: none;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.sidebar-section-label:hover {
  background: rgba(255, 255, 255, 0.06);
}

.chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-section.collapsed .chevron {
  transform: rotate(-90deg);
}

.nav-section-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  max-height: 500px;
  opacity: 1;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease;
}

.nav-section.collapsed .nav-section-content {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  color: rgba(245, 240, 232, 0.80);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 150ms ease;
  cursor: pointer;
  position: relative;
}

.nav-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke-width: 2;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--creme);
}

.nav-item.active {
  background: rgba(201, 168, 76, 0.16);
  color: var(--dourado);
  border: 1px solid rgba(201, 168, 76, 0.30);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 2px;
  background: var(--dourado);
}

.nav-item.active svg {
  color: var(--dourado);
}

/* Badge */
.nav-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--dourado);
  color: var(--bordo-dark);
  font-size: 10px;
  font-weight: 700;
  border-radius: 20px;
  margin-left: auto;
  line-height: 1;
}

.nav-badge.visible {
  display: flex;
}

/* ==========================================================================
   Sidebar Footer
   ========================================================================== */
.sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 150ms;
}

.sidebar-user:hover {
  background: rgba(255, 255, 255, 0.07);
}

.sidebar-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.18);
  color: var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.sidebar-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  overflow: hidden;
}

.sidebar-user-name {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--creme);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-role {
  display: block;
  font-size: 10.5px;
  color: rgba(245, 240, 232, 0.55);
}

/* Logout */
.btn-logout {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza o ícone e o texto juntos no meio do botão */
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  background: rgba(139, 30, 45, 0.25);
  color: #F2B3BB;
  border: 1px solid rgba(139, 30, 45, 0.45);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-logout:hover {
  background: rgba(139, 30, 45, 0.40);
  border-color: rgba(139, 30, 45, 0.60);
}

/* ==========================================================================
   Collapsed sidebar
   ========================================================================== */
.sidebar.collapsed {
  width: 72px !important;
}

.sidebar.collapsed .sidebar-brand-text,
.sidebar.collapsed .sidebar-section-label span,
.sidebar.collapsed .nav-item span:not(.nav-badge),
.sidebar.collapsed .sidebar-user-info,
.sidebar.collapsed .btn-logout span {
  display: none;
}

.sidebar.collapsed .sidebar-brand {
  padding: 20px 0 16px;
  justify-content: center;
}

.sidebar.collapsed .nav-item {
  justify-content: center;
  padding: 10px;
}

.sidebar.collapsed .sidebar-toggle-btn button svg {
  transform: rotate(180deg);
}

.sidebar.collapsed .nav-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  margin-left: 0;
  min-width: 16px;
  height: 16px;
  font-size: 9px;
}

.sidebar.collapsed .nav-item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-primary);
  color: var(--bg-surface);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
  z-index: 1000;
}

.sidebar.collapsed .nav-item:hover::after {
  opacity: 1;
  left: calc(100% + 18px);
}

/* ==========================================================================
   Main Column
   ========================================================================== */
.main-col {
  flex: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: all 0.3s ease;
}

/* ==========================================================================
   Topbar
   ========================================================================== */
.topbar {
  height: var(--topbar-height);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}

.topbar-title {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.topbar-title h1 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
}

.topbar-title span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Search */
.topbar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 7px 12px;
  color: var(--bordo);
  font-size: 12.5px;
  min-width: 220px;
  position: relative;
  transition: all 150ms ease;
}

.topbar-search:hover,
.topbar-search:focus-within {
  border-color: var(--bordo);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.topbar-search svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.topbar-search input {
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-primary);
  width: 100%;
}

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

/* Icon buttons */
.topbar-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 150ms ease;
  position: relative;
}

.topbar-icon-btn svg {
  width: 17px;
  height: 17px;
}

.topbar-icon-btn:hover {
  background: var(--accent-light);
  /* fundo suave */
  color: var(--accent);
  /* ícone azul */
  border-color: var(--accent);
}

/* Botão Dark/Light */
.btn-theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 150ms ease;
  flex-shrink: 0;
}

.btn-theme-toggle:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-theme-toggle svg {
  width: 17px;
  height: 17px;
  transition: transform 0.4s ease, opacity 0.2s;
}

.icon-sun {
  display: none;
}

.icon-moon {
  display: block;
}

[data-theme="dark"] .icon-sun {
  display: block;
}

[data-theme="dark"] .icon-moon {
  display: none;
}

/* Primary button */
.btn-primary {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bordo);
  color: var(--creme);
  border: none;
  border-radius: var(--radius-md);
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--accent-glow);
  transition: all 150ms ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--bordo-dark);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary svg {
  width: 15px;
  height: 15px;
}

/* Secondary button (Ver agenda, Agendar, Voltar) */
.btn-secondary {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  color: var(--bordo);
  border: 1px solid #DDD6CB;
  border-radius: var(--radius-md);
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--accent-light);
  border-color: var(--bordo);
}

/* Notif badge no sino */
.notif-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  border-radius: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid var(--bg-surface);
  pointer-events: none;
}

.notif-count.visible {
  display: flex;
}

/* ==========================================================================
   Page Content
   ========================================================================== */
.page-content {
  flex: 1;
  padding: 1.5rem;
  padding-bottom: 100px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* ==========================================================================
   Form inputs (genérico) — foco cobre
   ========================================================================== */
.f-group input,
.f-group select,
.f-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 9px 12px;
  width: 100%;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-color: var(--cobre);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.18);
}

/* ==========================================================================
   Barra de progresso — cobre → dourado
   ========================================================================== */
.progress-track {
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: var(--border-light);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cobre) 0%, var(--dourado) 100%);
  transition: width 0.3s ease;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 1.25rem;
  transition: background 0.25s, border-color 0.25s;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* ==========================================================================
   Stat grid
   ========================================================================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1100px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-top: 3px solid var(--bordo);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.25s;
}

.stat-card.is-attention {
  border-top-color: var(--cobre);
}

.stat-card.is-critical {
  border-top-color: var(--bordo-light);
}

.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
}

.stat-icon svg {
  width: 16px;
  height: 16px;
}

.stat-trend {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 99px;
}

.stat-trend.up {
  background: rgba(63, 122, 90, 0.14);
  color: var(--musgo);
}

.stat-trend.down {
  background: rgba(139, 30, 45, 0.12);
  color: var(--bordo-light);
}

.stat-value {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   Dashboard grid
   ========================================================================== */
.dash-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

@media (max-width: 1100px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   List items
   ========================================================================== */
.list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background 150ms ease;
}

.list-item:hover {
  background: var(--bg-hover);
}

.list-item+.list-item {
  border-top: 1px solid var(--border-light);
}

.list-item-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 4px 7px;
  flex-shrink: 0;
  font-weight: 500;
}

.list-item-info {
  flex: 1;
  min-width: 0;
}

.list-item-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.list-item-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}

.tag.green {
  background: rgba(63, 122, 90, 0.14);
  color: var(--musgo);
}

.tag.amber {
  background: rgba(184, 115, 51, 0.14);
  color: var(--cobre);
}

.tag.blue {
  background: var(--accent-light);
  color: var(--bordo);
}

.tag.red {
  background: rgba(139, 30, 45, 0.12);
  color: var(--bordo-light);
}
/* ==========================================================================
   Busca global
   ========================================================================== */
#global-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: 8px;
  z-index: 1000;
  max-height: 350px;
  overflow-y: auto;
  display: none;
  border: 1px solid var(--border);
}

.search-item-global {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}

.search-item-global:hover {
  background: var(--accent-light);
}

.search-item-global:last-child {
  border-bottom: none;
}

.search-avatar-global {
  width: 30px;
  height: 30px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}

.search-info-global {
  display: flex;
  flex-direction: column;
}

.search-name-global {
  font-size: 13px;
  font-weight: 600;
}

.search-meta-global {
  font-size: 10px;
  color: var(--text-muted);
}

.search-no-results {
  padding: 15px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* ==========================================================================
   Dropdown de notificações
   ========================================================================== */
.topbar-notif-wrapper {
  position: relative;
}

.notif-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 340px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 9999;
  overflow: hidden;
  animation: notifSlideIn .18s cubic-bezier(.22, 1, .36, 1);
  transition: background 0.25s;
}

@keyframes notifSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notif-dropdown.open {
  display: block;
}

.notif-dd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border-light);
}

.notif-dd-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.notif-dd-clear {
  font-size: 11px;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  background: none;
  border: none;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}

.notif-dd-clear:hover {
  background: var(--accent-light);
}

.notif-dd-body {
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: none;
}

.notif-dd-body::-webkit-scrollbar {
  width: 0;
}

.notif-dd-empty {
  padding: 32px 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

.notif-dd-empty svg {
  display: block;
  margin: 0 auto 10px;
  color: var(--text-faint);
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: background .15s;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.notif-item:last-child {
  border-bottom: none;
}

.notif-item:hover {
  background: var(--bg-hover);
}

.notif-item.is-new {
  background: var(--accent-light);
}

.notif-item.is-new:hover {
  background: var(--accent-glow);
}

.notif-item.is-new::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
}

.notif-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  background: var(--accent-light);
}

.notif-item-text {
  flex: 1;
  min-width: 0;
}

.notif-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 2px;
}

.notif-item.is-new .notif-item-title {
  color: var(--accent);
}

.notif-item-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

.notif-badge-new {
  font-size: 9px;
  font-weight: 800;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 20px;
  padding: 2px 7px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ==========================================================================
   Scroll moderno
   ========================================================================== */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.modern-scroll {
  overflow-y: auto;
  scrollbar-width: none;
}

.modern-scroll::-webkit-scrollbar {
  width: 5px;
}

.modern-scroll::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  transition: background 0.3s;
}

.modern-scroll:hover::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.25);
}

/* ==========================================================================
   Flash messages
   ========================================================================== */
.flash-alert {
  padding: 11px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flash-success {
  background: rgba(5, 150, 105, 0.10);
  color: var(--green);
  border: 1px solid rgba(5, 150, 105, 0.20);
}

.flash-error {
  background: rgba(220, 38, 38, 0.10);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.20);
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 900px) {
  .sidebar {
    position: fixed;
    left: 0;
    transform: translateX(-100%);
    transition: transform 200ms ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .topbar-search {
    display: none;
  }
}

/* ==========================================================================
   Dark — superfícies sólidas
   ========================================================================== */
[data-theme="dark"] .sidebar {
  border-right-color: var(--bordo-dark);
}

[data-theme="dark"] .topbar {
  background: rgba(26, 26, 30, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .sidebar-toggle-btn button {
  background: #2A2A2F;
  border-color: rgba(255, 255, 255, 0.10);
}

[data-theme="dark"] .mini-cal,
[data-theme="dark"] .stat-item,
[data-theme="dark"] .ag-item,
[data-theme="dark"] .modal-box,
[data-theme="dark"] .notif-dropdown,
[data-theme="dark"] #global-search-dropdown {
  background: #242428;
  border-color: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .f-group input,
[data-theme="dark"] .f-group select {
  background: #2A2A2F;
  border-color: rgba(255, 255, 255, 0.10);
  color: #EAEAEA;
}

[data-theme="dark"] .topbar-search {
  background: #242428;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .topbar-icon-btn,
[data-theme="dark"] .btn-theme-toggle {
  background: #242428;
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .btn-cancel-modal,
[data-theme="dark"] .btn-delete-modal {
  background: #2A2A2F;
  border-color: rgba(255, 255, 255, 0.10);
}

[data-theme="dark"] .modal-foot {
  background: #1E1E22;
}

[data-theme="dark"] .nav-item.active {
  background: rgba(201, 168, 76, 0.16);
  color: var(--dourado);
  border-color: rgba(201, 168, 76, 0.30);
}

[data-theme="dark"] .nav-item.active svg {
  color: var(--dourado);
}

[data-theme="dark"] .nav-item:hover {
  color: #EAEAEA;
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .btn-novo-ag {
  background: #2E2E34;
  color: #EAEAEA;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

[data-theme="dark"] .btn-novo-ag:hover {
  background: #38383E;
  box-shadow: none;
}

[data-theme="dark"] .ag-item.item-confirmado {
  background: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(74, 222, 128, 0.35);
}

[data-theme="dark"] .ag-item.item-agendado {
  background: rgba(255, 255, 255, 0.02);
  border-left-color: rgba(248, 113, 113, 0.35);
}

[data-theme="dark"] .ag-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .ag-time {
  background: rgba(255, 255, 255, 0.07);
  color: #C8D0DA;
}

[data-theme="dark"] .status-confirmado {
  background: rgba(63, 122, 90, 0.18);
  color: #6FBF95;
}

[data-theme="dark"] .status-agendado {
  background: rgba(184, 115, 51, 0.18);
  color: #D99B5F;
}

[data-theme="dark"] .status-realizado {
  background: rgba(255, 255, 255, 0.05);
  color: #66666E;
}

[data-theme="dark"] .status-cancelado {
  background: rgba(139, 30, 45, 0.18);
  color: #E0566A;
}

[data-theme="dark"] .mini-cal-day.today {
  background: #3A3A42;
  color: #EAEAEA;
}

[data-theme="dark"] .mini-cal-day.selected {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #EAEAEA;
}

[data-theme="dark"] .mini-cal-day.today.selected {
  background: #3A3A42;
  color: #EAEAEA;
}

[data-theme="dark"] .mini-cal-day:hover {
  background: rgba(255, 255, 255, 0.07);
}

[data-theme="dark"] .mini-cal-day.has-events::after {
  background: #A0A0A8;
}

[data-theme="dark"] .btn-primary {
  background: #3A3A42;
  box-shadow: none;
  color: #EAEAEA;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

[data-theme="dark"] .btn-primary:hover {
  background: #46464F;
  box-shadow: none;
}

[data-theme="dark"] .btn-save-modal {
  background: #3A3A42;
  color: #EAEAEA;
}

[data-theme="dark"] .btn-save-modal:hover {
  background: #46464F;
}

[data-theme="dark"] .ag-search input {
  background: #2A2A2F;
  border-color: rgba(255, 255, 255, 0.08);
  color: #EAEAEA;
}

[data-theme="dark"] .ag-search input:focus {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .ag-day-header {
  border-bottom-color: rgba(255, 255, 255, 0.07);
  color: #66666E;
}

[data-theme="dark"] .mini-cal-btn {
  background: #2A2A2F;
  border-color: rgba(255, 255, 255, 0.08);
  color: #A0A0A8;
}

[data-theme="dark"] .mini-cal-btn:hover {
  background: #3A3A42;
  border-color: rgba(255, 255, 255, 0.18);
  color: #EAEAEA;
}

[data-theme="dark"] .notif-item.is-new {
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .notif-item.is-new::before {
  background: #A0A0A8;
}

[data-theme="dark"] .notif-item.is-new .notif-item-title {
  color: #EAEAEA;
}

[data-theme="dark"] .notif-badge-new {
  background: rgba(255, 255, 255, 0.10);
  color: #A0A0A8;
}

[data-theme="dark"] .notif-dd-clear {
  color: #A0A0A8;
}

[data-theme="dark"] .notif-item-icon {
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .stat-value {
  color: #EAEAEA;
}

[data-theme="dark"] #statConfirmados {
  color: #6FBF95 !important;
}

/* ==========================================================================
   Nav item locked
   ========================================================================== */
.nav-item-locked {
  pointer-events: auto !important;
  cursor: pointer;
  opacity: 0.5;
}

.nav-lock-icon {
  margin-left: auto;
  color: #E8A2AB;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .sidebar {
    position: fixed;
    left: 0;
    transform: translateX(-100%);
    transition: transform 200ms ease;
    z-index: 50;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .topbar-search {
    display: none;
  }

  .topbar {
    padding: 0 1rem;
  }

  .page-content {
    padding: 14px;
    padding-bottom: 96px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

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

@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .topbar-title h1 {
    font-size: 15px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .topbar-icon-btn {
    width: 32px;
    height: 32px;
  }
}

/* Botão hambúrguer: escondido no desktop, aparece só no mobile */
.btn-mobile-menu {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 150ms ease;
}

.btn-mobile-menu svg {
  width: 18px;
  height: 18px;
}

.btn-mobile-menu:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}

/* Overlay escuro atrás da sidebar mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 45;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sidebar-overlay.visible {
  display: block;
  opacity: 1;
}

@media (max-width: 900px) {
  .btn-mobile-menu {
    display: flex;
  }

  .sidebar {
    width: 240px !important;
    max-width: 72vw;
    z-index: 50;
    box-shadow: var(--shadow-lg);
  }

  .sidebar.collapsed {
    width: 240px !important;
  }

  .sidebar.collapsed {
    width: 280px !important;
  }

  .sidebar.collapsed .sidebar-brand-text,
  .sidebar.collapsed .sidebar-section-label span,
  .sidebar.collapsed .nav-item span:not(.nav-badge),
  .sidebar.collapsed .sidebar-user-info,
  .sidebar.collapsed .btn-logout span {
    display: revert;
  }

  .sidebar.collapsed .nav-item {
    justify-content: flex-start;
    padding: 9px 12px;
  }

  .sidebar.collapsed .nav-item::after {
    content: none;
  }

  .sidebar-toggle-btn {
    display: none;
  }

  .app-shell {
    display: block;
  }

  .main-col {
    height: auto;
    min-height: 100vh;
  }

  .topbar {
    flex-wrap: nowrap;
    height: auto;
    min-height: var(--topbar-height);
    padding: 10px 14px;
    gap: 8px;
  }

  .topbar-title h1 {
    font-size: 15px;
  }

  .topbar-title span {
    font-size: 9px;
  }

  .topbar-actions {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .topbar-icon-btn,
  .btn-theme-toggle {
    width: 34px;
    height: 34px;
  }

  .btn-primary {
    padding: 8px 12px;
    font-size: 12px;
  }

  .btn-primary span,
  .btn-primary {
    white-space: nowrap;
  }

  .notif-dropdown {
    width: calc(100vw - 24px);
    max-width: 360px;
    right: -8px;
  }

  #global-search-dropdown {
    width: calc(100vw - 24px);
    left: 50%;
    transform: translateX(-50%);
  }

  .page-content {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .topbar-title h1 {
    font-size: 14px;
  }

  .btn-primary svg {
    width: 14px;
    height: 14px;
  }

  .btn-primary {
    padding: 7px 10px;
    font-size: 11.5px;
  }

  .notif-dropdown {
    right: -14px;
  }

  .sidebar {
    width: 78vw !important;
    max-width: 200px;
  }

  .page-content {
    padding-bottom: 88px;
  }
}

/* Botão fechar menu (mobile) */
.sidebar-close-btn {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background .2s;
  z-index: 120;
}

.sidebar-close-btn:hover {
  background: var(--bg-hover);
}

.sidebar-close-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {

  .sidebar-close-btn {
    display: flex;
  }

  .sidebar-toggle-btn {
    display: none;
  }

}

@media (max-width: 900px) {
  .topbar {
    align-items: center;
    flex-wrap: nowrap;
  }

  .btn-mobile-menu {
    order: 1;
  }

  .topbar-title {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
    align-items: flex-start;
  }

  .topbar-title h1,
  .topbar-title span {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .topbar-actions {
    order: 3;
    flex-shrink: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

@media (max-width: 900px) {
  .btn-primary {
    display: none;
  }
}


.donna-msg-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 88%;
}

.donna-msg-wrapper.user {
  align-self: flex-end;
  align-items: flex-end;
}

.donna-msg-wrapper:not(.user) {
  align-self: flex-start;
  align-items: flex-start;
}

.donna-msg-time {
  font-size: 10.5px;
  color: var(--text-muted, #9aa0a6);
  opacity: 0.75;
  margin-top: 3px;
  padding: 0 4px;
}

.nav-item-group {
  display: flex;
  flex-direction: column;
}

.nav-item-parent-row {
  display: flex;
  align-items: stretch;
}

.nav-item-parent-row .nav-item {
  flex: 1;
}

.nav-item-chevron-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  color: inherit;
  opacity: 0.65;
  flex-shrink: 0;
}

.nav-item-chevron-btn:hover {
  opacity: 1;
}

.nav-item-chevron {
  transition: transform 0.2s ease;
}

.nav-item-group.open .nav-item-chevron {
  transform: rotate(180deg);
}

.nav-submenu {
  display: none;
  flex-direction: column;
  padding-left: 8px;
}

.nav-item-group.open .nav-submenu {
  display: flex;
}

.nav-subitem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 22px;
  font-size: 13px;
  border-radius: var(--radius-sm, 8px);
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  position: relative;
}

.nav-subitem::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: currentColor;
  opacity: 0.2;
}

.nav-subitem svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.nav-subitem:hover {
  opacity: 1;
  background: var(--accent-light);
}

.nav-subitem.active {
  opacity: 1;
  background: var(--accent-light);
  font-weight: 600;
}

.nav-subitem.nav-item-locked {
  opacity: 0.4;
  cursor: not-allowed;
}

.sidebar.collapsed .nav-submenu,
.sidebar.collapsed .nav-item-chevron-btn {
  display: none !important;
}

.donna-tooltip {
  position: absolute;
  bottom: 58px;
  right: 0;
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--bordo);
  border-radius: 12px 12px 4px 12px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.donna-tooltip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.donna-tooltip button {
  background: none;
  border: none;
  color: rgba(245, 240, 232, 0.75);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.donna-tooltip button:hover {
  color: var(--creme);
}

.donna-tooltip button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.sidebar-nav {
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 240, 232, 0.30) transparent;
  margin-right: -1rem;
  padding-right: 1rem;
}

.sidebar-nav::-webkit-scrollbar {
  width: 3px;
}

.sidebar-nav::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  background: rgba(245, 240, 232, 0.30);
  border-radius: 10px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(245, 240, 232, 0.50);
}

.suporte-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 10, 0.55);
    backdrop-filter: blur(3px);
    z-index: 10100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.suporte-modal-box {
    width: 100%;
    max-width: 420px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: donnaModalPop 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.suporte-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-light);
}

.suporte-modal-header h3 {
    margin: 0;
    font-size: 15px;
    color: var(--text-primary);
}

.suporte-modal-header button {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}

.suporte-modal-options {
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 6px;
}

.suporte-opcao {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-primary);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s, color 0.15s;
}

.suporte-opcao:hover {
    background: var(--bordo);
    color: var(--creme);
}

.suporte-opcao:hover .suporte-opcao-text span {
    color: var(--creme);
    opacity: 0.75;
}

.suporte-opcao:hover .suporte-icon-email {
    background: var(--creme);
    color: var(--bordo);
}

.suporte-opcao-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: background 0.15s, color 0.15s;
}

.suporte-opcao-icon svg {
    width: 20px;
    height: 20px;
}

.suporte-icon-whats {
    background: #25D366;
    color: #fff;
}

.suporte-icon-email {
    background: var(--bordo);
    color: var(--creme);
}

.suporte-icon-bot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8%;
}

.suporte-opcao-text {
    display: flex;
    flex-direction: column;
}

.suporte-opcao-text strong {
    font-size: 13.5px;
}

.suporte-opcao-text span {
    font-size: 12px;
    color: var(--text-muted);
}