/* ==========================================================================
   MenuGo — Design System & Custom Stylesheet (Power BI & Commercial Redesign)
   ========================================================================== */

:root {
  --bg-dark: #0B0F17;
  --bg-card: #151C28;
  --bg-card-hover: #1E293B;
  --bg-input: #111827;
  --border-color: #27354A;
  --border-focus: #3B82F6;
  
  --text-main: #F9FAFB;
  --text-muted: #9CA3AF;
  --text-dark: #1F2937;

  --brand: #F59E0B;
  --brand-hover: #D97706;
  --accent: #10B981;
  --danger: #EF4444;
  --info: #3B82F6;
  --purple: #8B5CF6;
  --anon-color: #EC4899;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.15);
  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ================= TOP SAAS NAV BAR ================= */
.saas-nav {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
}

.saas-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.saas-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
}

.saas-logo-text { font-family: 'Archivo Black', sans-serif; }
.saas-logo-text .highlight { color: var(--brand); }

.saas-tag {
  font-size: 11px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--brand);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.saas-view-switcher {
  display: flex;
  background: var(--bg-input);
  padding: 4px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  gap: 4px;
}

.nav-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-btn:hover { color: var(--text-main); }

.nav-btn.active {
  background: var(--brand);
  color: #000;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.saas-user-cloud-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cloud-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

.cloud-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseCloud 1.5s infinite;
}

@keyframes pulseCloud {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.store-select {
  background: var(--bg-input);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  outline: none;
  cursor: pointer;
}

.pwa-banner {
  background: var(--brand);
  color: #000;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 12px;
}

/* ================= MAIN CONTAINER & VIEWS ================= */
.saas-main { min-height: calc(100vh - 65px); }
.view-section { display: none; padding: 24px; }
.view-section.active { display: block; }

/* ================= VIEW 1: CLIENT MENU ================= */
.client-stage { display: flex; justify-content: center; padding: 20px 10px; }
.device-frame { width: 100%; max-width: 480px; background: #000; border: 10px solid #1E293B; border-radius: 36px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8); position: relative; overflow: hidden; min-height: 840px; }
@media (min-width: 900px) { .device-frame { max-width: 600px; } }
.device-notch { width: 140px; height: 24px; background: #1E293B; position: absolute; top: 0; left: 50%; transform: translateX(-50%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; z-index: 50; }
.client-app { background: var(--bg-dark); color: var(--text-main); min-height: 800px; padding-bottom: 90px; }
.hero { position: relative; height: 180px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(11,15,23,1) 100%); }
.hero-top-actions { position: absolute; top: 35px; right: 16px; display: flex; gap: 8px; z-index: 10; }
.hero-icon-btn { background: rgba(0, 0, 0, 0.6); color: white; border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.hero-icon-btn:hover { background: var(--brand); color: #000; }

.id-card { padding: 0 20px; margin-top: -40px; position: relative; z-index: 10; text-align: center; }
.id-card .logo { width: 70px; height: 70px; background: var(--brand); color: #000; font-family: 'Archivo Black', sans-serif; font-size: 24px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-lg); margin: 0 auto 12px; border: 4px solid var(--bg-dark); box-shadow: var(--shadow-card); }
.biz-name { font-size: 22px; font-weight: 800; }
.biz-tag { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.cashback-badge-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(16, 185, 129, 0.15); color: var(--accent); border: 1px solid rgba(16, 185, 129, 0.3); padding: 4px 12px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; }

.biz-meta { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px; font-size: 13px; }
.stars { color: #F59E0B; }
.rating-num { font-weight: 700; }
.rating-count { color: var(--text-muted); font-size: 12px; }

.status-pill { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; }
.status-pill.open { background: rgba(16, 185, 129, 0.15); color: var(--accent); border: 1px solid rgba(16, 185, 129, 0.3); }
.status-pill.closed { background: rgba(239, 68, 68, 0.15); color: var(--danger); border: 1px solid rgba(239, 68, 68, 0.3); }

.anon-feedback-trigger-wrap { margin-top: 12px; }
.btn-anon-feedback { background: rgba(236, 72, 153, 0.12); color: var(--anon-color); border: 1px dashed var(--anon-color); padding: 8px 16px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.btn-anon-feedback:hover { background: var(--anon-color); color: #fff; }

.info-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin: 16px; background: var(--bg-card); padding: 12px; border-radius: var(--radius-md); border: 1px solid var(--border-color); text-align: center; }
.info-cell .info-label { font-size: 11px; color: var(--text-muted); }
.info-cell .info-value { font-size: 13px; font-weight: 700; margin-top: 2px; }

.flash-coupons-section { padding: 0 16px; margin-bottom: 20px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; padding: 0 4px; }
.section-title { font-size: 16px; font-weight: 800; }
.section-hint { font-size: 12px; color: var(--brand); font-weight: 700; }

.flash-coupons-list { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.flash-coupon-card { min-width: 220px; background: linear-gradient(135deg, #1E1B4B 0%, #312E81 100%); border: 1px solid #6366F1; border-radius: var(--radius-md); padding: 12px; position: relative; flex-shrink: 0; box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2); }
.coupon-tag { background: #F59E0B; color: #000; font-weight: 900; font-size: 11px; padding: 2px 8px; border-radius: 4px; display: inline-block; font-family: 'JetBrains Mono', monospace; }
.coupon-val { font-size: 18px; font-weight: 800; margin: 6px 0 2px; color: #fff; }
.coupon-stock { font-size: 11px; color: #A5B4FC; display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.coupon-progress-bar { width: 100%; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-top: 6px; overflow: hidden; }
.coupon-progress-fill { height: 100%; background: var(--brand); border-radius: 2px; }

.promo-carousel { display: flex; gap: 12px; overflow-x: auto; padding: 0 16px 16px; scrollbar-width: none; }
.promo-item { min-width: 260px; height: 110px; border-radius: var(--radius-md); overflow: hidden; position: relative; flex-shrink: 0; }
.promo-item img { width: 100%; height: 100%; object-fit: cover; }
.promo-info { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%); padding: 12px; display: flex; flex-direction: column; justify-content: flex-end; }
.promo-title { font-size: 14px; font-weight: 700; color: white; }
.promo-sub { font-size: 12px; color: var(--brand); font-weight: 600; }

.search-bar-wrap { padding: 0 16px; margin-bottom: 16px; position: relative; }
.search-bar-wrap input { width: 100%; background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-main); padding: 12px 16px 12px 42px; border-radius: var(--radius-md); font-size: 14px; outline: none; }
.search-bar-wrap .search-icon { position: absolute; left: 30px; top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 18px; height: 18px; }

.cat-tabs-wrap { position: sticky; top: 0; background: rgba(11, 15, 23, 0.95); backdrop-filter: blur(8px); z-index: 20; padding: 8px 16px; border-bottom: 1px solid var(--border-color); }
.cat-tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.cat-tab-btn { background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-muted); padding: 8px 16px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600; white-space: nowrap; cursor: pointer; }
.cat-tab-btn.active { background: var(--brand); color: #000; font-weight: 800; border-color: var(--brand); }

.products-wrapper { padding: 16px; }
.cat-section-title { font-size: 16px; font-weight: 800; margin: 16px 0 12px; display: flex; align-items: center; gap: 8px; }
.product-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 12px; margin-bottom: 12px; display: flex; gap: 12px; cursor: pointer; transition: var(--transition); position: relative; }
.product-card:hover { border-color: var(--brand); transform: translateY(-2px); }

.fav-btn-heart { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.5); color: #fff; border: none; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; }
.fav-btn-heart.active { color: var(--danger); background: rgba(239, 68, 68, 0.2); }

.p-thumb { width: 90px; height: 90px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.p-details { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.p-name { font-size: 14px; font-weight: 700; line-height: 1.3; }
.p-desc { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.p-price { font-size: 15px; font-weight: 800; color: var(--brand); }
.p-old-price { font-size: 12px; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }
.p-badge { font-size: 10px; background: rgba(239, 68, 68, 0.2); color: var(--danger); padding: 2px 6px; border-radius: 4px; font-weight: 700; }

.floating-cart { position: absolute; bottom: 20px; left: 20px; right: 20px; background: var(--brand); color: #000; padding: 14px 20px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between; box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4); cursor: pointer; z-index: 40; font-weight: 800; }
.cart-left { display: flex; align-items: center; gap: 12px; }
.cart-badge-count { background: #000; color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* REFORMULATED HOURS CARD — agrupado por período, com status Ao Vivo (sem locais de entrega) */
.hours-card-modern {
  margin: 16px;
  background: linear-gradient(180deg, var(--bg-card) 0%, #0F172A 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hours-header-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(245,158,11,0.12) 0%, rgba(15,23,42,0) 100%);
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.hours-title {
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
}
.hours-title i { color: var(--brand); }

.hours-status-block {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.live-pill.open {
  background: rgba(16, 185, 129, 0.18);
  color: var(--accent);
  border: 1px solid rgba(16, 185, 129, 0.4);
}
.live-pill.closed {
  background: rgba(239, 68, 68, 0.16);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.4);
}
.live-pill.soon {
  background: rgba(245, 158, 11, 0.16);
  color: var(--brand);
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulseCloud 1.4s infinite;
}
.hours-next-change {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.hours-weekdays-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-color);
}
.hours-weekdays-group:last-child { border-bottom: none; }

.hours-grp-block {
  padding: 14px 16px;
  position: relative;
}
.hours-weekdays-group .hours-grp-block + .hours-grp-block {
  border-left: 1px solid var(--border-color);
}

.h-grp-label {
  font-size: 10px;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.h-grp-label i { width: 12px; height: 12px; }
.h-grp-time {
  font-size: 18px;
  font-weight: 900;
  color: var(--text-main);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.4px;
}

.h-grp-mini-row {
  display: flex;
  gap: 5px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.h-grp-mini-row .day-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

@media (max-width: 480px) {
  .hours-weekdays-group { grid-template-columns: 1fr; }
  .hours-weekdays-group .hours-grp-block + .hours-grp-block { border-left: none; border-top: 1px solid var(--border-color); }
  .h-grp-time { font-size: 16px; }
}

/* ================= VIEW 2: PAINEL DO LOJISTA (POWER BI DASHBOARD ESTILO EXECUTIVE) ================= */
.merchant-layout { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 24px; min-height: 800px; }
@media (max-width: 900px) { .merchant-layout { grid-template-columns: 1fr; } }
.merchant-sidebar { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.merchant-profile { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color); margin-bottom: 16px; }
.merchant-avatar { width: 44px; height: 44px; background: var(--brand); color: #000; font-weight: 800; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-family: 'Archivo Black', sans-serif; }
.merchant-info h4 { font-size: 15px; font-weight: 700; }
.plan-badge { font-size: 11px; background: rgba(59, 130, 246, 0.15); color: var(--info); padding: 2px 8px; border-radius: var(--radius-full); font-weight: 700; display: inline-block; margin-top: 2px; }
.merchant-menu { display: flex; flex-direction: column; gap: 8px; }
.m-tab-btn { background: transparent; border: none; color: var(--text-muted); padding: 12px 14px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: var(--transition); }
.m-tab-btn span { display: flex; align-items: center; gap: 10px; }
.m-tab-btn:hover { background: rgba(255,255,255,0.05); color: var(--text-main); }
.m-tab-btn.active { background: var(--brand); color: #000; font-weight: 800; }
.count-badge { background: rgba(255,255,255,0.2); color: inherit; padding: 2px 8px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; }
.count-badge.green { background: var(--accent); color: #000; }
.count-badge.badge-anon { background: var(--anon-color); color: #fff; }

.merchant-content { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; }
.m-tab-content { display: none; }
.m-tab-content.active { display: block; }
.m-tab-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.m-tab-header h2 { font-size: 20px; font-weight: 800; }

/* POWER BI STYLE DASHBOARD COMPONENTS */
.powerbi-container {
  background: linear-gradient(180deg, #0F172A 0%, #111827 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
}
.powerbi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.powerbi-title {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}
.powerbi-title .pbi-badge {
  font-size: 10px;
  background: rgba(245,158,11,0.18);
  color: var(--brand);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.powerbi-title .pbi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  animation: pulseCloud 1.6s infinite;
}
.powerbi-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* BI-style filter bar */
.pbi-filter-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bg-card);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 18px;
}
.pbi-filter-bar .pbi-tag {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pbi-filter-bar .pbi-pill {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.pbi-filter-bar .pbi-pill:hover { border-color: var(--brand); }
.pbi-filter-bar .pbi-pill.active {
  background: var(--brand);
  color: #000;
  border-color: var(--brand);
}
.pbi-date {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}

.kpi-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

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

.kpi-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, #0F172A 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 18px 14px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.kpi-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.6); border-color: rgba(245,158,11,0.5); }

.kpi-card .kpi-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
}
.kpi-card.green .kpi-accent { background: var(--accent); }
.kpi-card.blue .kpi-accent { background: var(--info); }
.kpi-card.purple .kpi-accent { background: var(--purple); }

.kpi-label { font-size: 11px; color: var(--text-muted); font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; display: flex; justify-content: space-between; align-items: center; }
.kpi-value { font-size: 28px; font-weight: 900; margin: 8px 0 6px; color: #fff; font-family: 'Archivo Black', sans-serif; letter-spacing: -0.5px; }
.kpi-trend { font-size: 11px; color: var(--accent); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.kpi-trend.down { color: var(--danger); }
.kpi-trend .trend-up { color: var(--accent); }
.kpi-spark {
  position: absolute;
  bottom: 8px;
  right: 10px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  opacity: 0.85;
}
.kpi-spark span {
  width: 4px;
  border-radius: 2px 2px 0 0;
  background: var(--brand);
}
.kpi-card.green .kpi-spark span { background: var(--accent); }
.kpi-card.blue .kpi-spark span { background: var(--info); }
.kpi-card.purple .kpi-spark span { background: var(--purple); }

.charts-row-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.charts-row-grid.three-col { grid-template-columns: 1.4fr 1fr 1fr; }

@media (max-width: 1100px) {
  .charts-row-grid.three-col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .charts-row-grid, .charts-row-grid.three-col { grid-template-columns: 1fr; }
}

.chart-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, #0F172A 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
}
.chart-card h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.chart-card h4 .chart-meta {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Simulated Bar Chart (Power BI style) */
.bar-chart-visual {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 170px;
  padding-top: 18px;
  gap: 6px;
  position: relative;
}
.bar-chart-visual::before {
  content: '';
  position: absolute;
  top: 18px; left: 0; right: 0; bottom: 26px;
  background-image: linear-gradient(transparent 25%, rgba(255,255,255,0.04) 25%);
  background-size: 100% 25%;
  pointer-events: none;
}

.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  position: relative;
}
.bar-col .bar-tip {
  position: absolute;
  top: 0;
  font-size: 10px;
  color: var(--brand);
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}

.bar-pill {
  width: 100%;
  max-width: 36px;
  background: linear-gradient(180deg, var(--brand) 0%, #B45309 100%);
  border-radius: 6px 6px 0 0;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}
.bar-pill:hover { transform: scaleY(1.05); filter: brightness(1.18); }
.bar-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, transparent 50%);
  border-radius: 6px 6px 0 0;
}

.bar-col-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Top Sales Progress List */
.top-sales-list { display: flex; flex-direction: column; gap: 12px; }
.top-sales-item { font-size: 12px; }
.top-sales-info { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 4px; gap: 10px; }
.top-sales-info .name { color: var(--text-main); }
.top-sales-info .qty { color: var(--brand); font-family: 'JetBrains Mono', monospace; }
.top-sales-progress { width: 100%; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; position: relative; }
.top-sales-fill { height: 100%; background: linear-gradient(90deg, var(--accent) 0%, #34D399 100%); border-radius: 4px; transition: width 0.6s; }

/* Donut/Pie chart for category mix */
.donut-wrap { display: flex; align-items: center; gap: 18px; }
.donut-wrap svg { flex-shrink: 0; }
.donut-center { text-anchor: middle; }
.donut-center .d-val { fill: #fff; font-weight: 900; font-size: 22px; font-family: 'Archivo Black', sans-serif; }
.donut-center .d-lbl { fill: var(--text-muted); font-size: 11px; font-weight: 700; }
.donut-legend { flex: 1; display: flex; flex-direction: column; gap: 8px; font-size: 12px; }
.donut-legend .leg-row { display: flex; align-items: center; gap: 10px; }
.donut-legend .leg-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.donut-legend .leg-name { flex: 1; color: var(--text-main); font-weight: 700; }
.donut-legend .leg-pct { color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }

/* KDS KANBAN */
.kds-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1100px) { .kds-board { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .kds-board { grid-template-columns: 1fr; } }
.kds-col { background: var(--bg-input); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 12px; min-height: 550px; }
.kds-col-head { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 800; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); margin-bottom: 12px; }
.kds-badge { background: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: var(--radius-full); font-size: 11px; }
.kds-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 14px; margin-bottom: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
.kds-card-head { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 800; margin-bottom: 8px; }
.order-num { color: var(--brand); font-family: 'JetBrains Mono', monospace; }
.kds-card-items { font-size: 13px; color: var(--text-main); margin: 10px 0; padding: 8px 0; border-top: 1px dashed var(--border-color); border-bottom: 1px dashed var(--border-color); }
.kds-item-line { display: flex; justify-content: space-between; margin-bottom: 4px; }
.kds-card-footer { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }

/* ================= VIEW 4: LANDING PAGE ULTRA-ATRAENTE — ALTA CONVERSÃO ================= */
.landing-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.landing-hero {
  text-align: center;
  margin-bottom: 36px;
  padding: 50px 24px;
  background: radial-gradient(ellipse at center top, rgba(245,158,11,0.10) 0%, transparent 60%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.landing-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.18);
  color: var(--brand);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  letter-spacing: 0.4px;
}

.landing-hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 50px;
  line-height: 1.05;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) { .landing-hero h1 { font-size: 30px; } }
.landing-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 30px;
}

.landing-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 6px;
}
.trust-badges .tb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}
.trust-badges .tb i { color: var(--accent); }

.social-proof-bar {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border-color);
}
.sp-item { text-align: center; }
.sp-item .sp-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--brand);
  font-family: 'Archivo Black', sans-serif;
  display: block;
  line-height: 1.1;
}
.sp-item .sp-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* 3-STEP QUICK ONBOARDING */
.quick-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
@media (max-width: 768px) { .quick-steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow-glow); }
.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: rgba(245,158,11,0.14);
  color: var(--brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-muted); }
.step-num {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  background: var(--brand);
  color: #000;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: 'Archivo Black', sans-serif;
}

/* COMPARISON TABLE iFood vs MenuGo */
.compare-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 40px;
}
.compare-section h2 { text-align: center; font-family: 'Archivo Black', sans-serif; font-size: 26px; margin-bottom: 6px; }
.compare-section .compare-sub { text-align: center; color: var(--text-muted); margin-bottom: 22px; font-size: 14px; }

.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th { padding: 14px 12px; text-align: left; font-weight: 800; }
.compare-table th:first-child { background: transparent; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.4px; }
.compare-table th.menugo-col { background: rgba(245,158,11,0.14); color: var(--brand); text-align: center; font-family: 'Archivo Black', sans-serif; font-size: 15px; }
.compare-table th.ifood-col { background: rgba(239, 68, 68, 0.1); color: var(--danger); text-align: center; font-size: 14px; }
.compare-table td { padding: 14px 12px; border-top: 1px solid var(--border-color); font-size: 13px; }
.compare-table td:first-child { color: var(--text-main); font-weight: 600; }
.compare-table td.menugo-cell { background: rgba(245,158,11,0.04); text-align: center; color: var(--accent); font-weight: 800; }
.compare-table td.ifood-cell { text-align: center; color: var(--danger); font-weight: 700; }
.compare-table .row-zebra td { background: rgba(255,255,255,0.02); }
.compare-table tr:hover td { background: rgba(245,158,11,0.06); }

/* ROI CALCULATOR */
.roi-calc-card {
  background: linear-gradient(135deg, #1E1B4B 0%, #151C28 100%);
  border: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: var(--shadow-glow);
}
.roi-calc-card h2 { font-family: 'Archivo Black', sans-serif; font-size: 28px; margin-bottom: 6px; }

.roi-input-row {
  max-width: 480px;
  margin: 18px auto 8px;
  text-align: left;
}
.roi-input-row label {
  font-size: 12px;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.roi-input-row input[type="number"], .roi-input-row input[type="range"] {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--brand);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  outline: none;
  font-family: 'JetBrains Mono', monospace;
}
.roi-slider-row { max-width: 480px; margin: 8px auto 12px; text-align: left; }
.roi-slider-row input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  outline: none;
}
.roi-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  cursor: pointer;
  border: 3px solid #000;
}
.roi-slider-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  cursor: pointer;
  border: 3px solid #000;
}
.roi-slider-row .tick-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
}

.roi-result-text { font-size: 18px; color: var(--text-muted); margin: 18px 0; line-height: 1.5; }
.roi-result-text .saved-amt {
  font-family: 'Archivo Black', sans-serif;
  font-size: 38px;
  color: var(--accent);
  display: block;
  margin: 6px 0;
  letter-spacing: -0.5px;
}
.roi-calc-card .btn { margin-top: 8px; }

/* FAQ */
.faq-section { margin-bottom: 40px; }
.faq-section h2 { text-align: center; font-family: 'Archivo Black', sans-serif; font-size: 26px; margin-bottom: 6px; }
.faq-section .faq-sub { text-align: center; color: var(--text-muted); margin-bottom: 22px; font-size: 14px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--brand); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  gap: 12px;
}
.faq-a {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 260px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--brand); }
.faq-icon { transition: transform 0.25s ease; color: var(--text-muted); flex-shrink: 0; }

/* Final CTA */
.final-cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
  color: #000;
  padding: 36px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px -10px rgba(245,158,11,0.45);
  position: relative;
  overflow: hidden;
}
.final-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
  border-radius: 50%;
}
.final-cta-banner h2 { font-family: 'Archivo Black', sans-serif; font-size: 30px; margin-bottom: 8px; position: relative; }
.final-cta-banner p { font-size: 15px; margin-bottom: 22px; opacity: 0.85; position: relative; }
.final-cta-banner .btn { position: relative; }
.final-cta-banner .cta-row {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
}

.landing-pricing-section { margin-bottom: 40px; }
.landing-pricing-section h2 { text-align: center; font-family: 'Archivo Black', sans-serif; font-size: 32px; margin-bottom: 6px; }
.pricing-sub { text-align: center; color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }

.landing-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  transition: var(--transition);
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--brand); }
.plan-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, rgba(245,158,11,0.07) 0%, var(--bg-card) 65%);
}
.plan-card-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.plan-name { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.plan-desc { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.plan-price {
  font-family: 'Archivo Black', sans-serif;
  font-size: 30px;
  color: var(--brand);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.plan-price small { font-size: 12px; color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 600; }
.plan-features-list { list-style: none; margin-bottom: 18px; flex: 1; }
.plan-features-list li {
  font-size: 12px;
  padding: 5px 0;
  color: var(--text-main);
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.plan-features-list li:last-child { border-bottom: none; }

/* SUPER ADMIN GRID */
.admin-container { max-width: 1400px; margin: 0 auto; width: 100%; display: block; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; width: 100%; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; width: 100%; }
@media (max-width: 1100px) { .metrics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .metrics-grid { grid-template-columns: 1fr; } }

.metric-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; display: flex; align-items: center; gap: 16px; width: 100%; min-height: 100px; }
.metric-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.metric-content { flex: 1; min-width: 0; }

.m-mrr { background: rgba(16, 185, 129, 0.15); color: var(--accent); }
.m-stores { background: rgba(59, 130, 246, 0.15); color: var(--info); }
.m-active { background: rgba(245, 158, 11, 0.15); color: var(--brand); }
.m-blocked { background: rgba(239, 68, 68, 0.15); color: var(--danger); }

.m-label { font-size: 12px; color: var(--text-muted); font-weight: 600; display: block; }
.m-value { font-size: 22px; font-weight: 800; margin: 4px 0; color: #fff; }
.m-trend { font-size: 11px; font-weight: 700; display: block; }
.m-trend.positive { color: var(--accent); }
.m-trend.warning { color: var(--danger); }

.plan-price-editor-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; padding: 16px 0; width: 100%; }
@media (max-width: 1100px) { .plan-price-editor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .plan-price-editor-grid { grid-template-columns: 1fr; } }

.price-edit-box { background: var(--bg-input); border: 1px solid var(--border-color); padding: 16px; border-radius: var(--radius-md); }
.price-edit-box label { font-size: 12px; font-weight: 700; color: var(--text-muted); display: block; margin-bottom: 8px; }
.price-edit-input-group { display: flex; gap: 8px; align-items: center; }
.price-edit-input-group input { width: 100%; background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-main); padding: 8px 10px; border-radius: var(--radius-sm); font-weight: 700; }

.admin-secondary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
@media (max-width: 900px) { .admin-secondary-grid { grid-template-columns: 1fr; } }
.admin-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; }

.admin-table-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 30px; width: 100%; }
.card-head-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 12px; }
.table-responsive { overflow-x: auto; width: 100%; }
.data-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 14px; }
.data-table th { background: var(--bg-input); padding: 12px 16px; color: var(--text-muted); font-size: 12px; text-transform: uppercase; font-weight: 700; }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-color); }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 200; padding: 20px; }
.modal-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); width: 100%; max-width: 540px; padding: 24px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; background: transparent; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; }
.modal-header h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.form-control { width: 100%; background: var(--bg-input); border: 1px solid var(--border-color); color: var(--text-main); padding: 10px 14px; border-radius: var(--radius-md); font-size: 14px; outline: none; }
.form-control:focus { border-color: var(--brand); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn { border: none; padding: 10px 18px; border-radius: var(--radius-md); font-size: 14px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); }
.btn-primary { background: var(--brand); color: #000; }
.btn-primary:hover { background: var(--brand-hover); }
.btn-secondary { background: var(--bg-input); color: var(--text-main); border: 1px solid var(--border-color); }
.btn-secondary:hover { background: var(--border-color); }
.btn-outline-white { background: transparent; color: white; border: 1px solid var(--border-color); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-success { background: var(--accent); color: #000; }
.btn-danger { background: var(--danger); color: white; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1EBE5D; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.auth-tabs { ... }

.auth-tab-btn { ... }

.auth-tab-btn.active { ... }

.auth-panel { ... }

.auth-panel.active { ... }
