/* ==========================================================================
   DESIGN MEDCAR PREMIUM - APP DE ESTOQUE E PREPARAÇÃO DE VEÍCULOS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Cores MedCar - Chumbo Metálico e Vermelho Esportivo */
  --bg-primary: #07080a;
  --bg-secondary: #0f1118;
  --bg-card: rgba(18, 20, 29, 0.82);
  --border-color: rgba(255, 255, 255, 0.05);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  /* Destaques */
  --medcar-red: #e11d48; /* Vermelho vibrante da marca */
  --medcar-red-glow: rgba(225, 29, 72, 0.15);
  --medcar-red-dark: #9f1239;

  --accent-profit: #10b981; /* Verde esmeralda para lucros */
  --accent-profit-glow: rgba(16, 185, 129, 0.15);
  
  --blue-info: #0284c7;
  --blue-info-glow: rgba(2, 132, 199, 0.12);
  
  --warning: #f59e0b;
  --warning-glow: rgba(245, 158, 11, 0.12);

  /* Bordas e Sombras */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 9999px;
  
  --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --border-premium: 1px solid rgba(255, 255, 255, 0.06);

  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-tactile: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  --safe-bottom: env(safe-area-inset-bottom, 16px);
  --safe-top: env(safe-area-inset-top, 0px);
}

/* ==========================================================================
   RESET & FUNDOS AURORA (GLOW BLOBS)
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  padding-bottom: calc(85px + var(--safe-bottom));
}

/* Glow Blobs Decorativos estilo Apple */
.aurora-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-blob {
  position: absolute;
  border-radius: var(--radius-pill);
  filter: blur(120px);
  opacity: 0.08;
  mix-blend-mode: screen;
}

.blob-red {
  top: -10%;
  right: -10%;
  width: 350px;
  height: 350px;
  background-color: var(--medcar-red);
}

.blob-green {
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background-color: var(--accent-profit);
}

/* ==========================================================================
   CABECALHO PREMIUM (LOGO MEDCAR INTEGRADA)
   ========================================================================== */

header {
  /* padding-top respeita o entalhe/Dynamic Island do iPhone */
  padding: 12px 20px;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
  background: rgba(7, 8, 10, 0.85);
  border-bottom: 1px solid rgba(225, 29, 72, 0.2);
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.header-left-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-frame {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--medcar-red);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(225, 29, 72, 0.45);
  flex-shrink: 0;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-subname {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 800;
  color: var(--medcar-red);
  letter-spacing: 0.28em;
  line-height: 1.1;
  margin-top: 2px;
  text-transform: uppercase;
}

.header-icon-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.header-icon-btn:active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--medcar-red);
}


/* ==========================================================================
   METRICAS E BARRA DE META DE LUCRO
   ========================================================================== */

.metrics-container {
  background: rgba(7, 8, 10, 0.5);
  border: 1px solid rgba(225, 29, 72, 0.5);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(225, 29, 72, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.goal-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
}

.goal-edit-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.goal-edit-btn:hover {
  opacity: 1;
  color: var(--medcar-red);
}

.goal-main-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 4px;
  margin-bottom: 10px;
}

.goal-target-val {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

.goal-percent-val {
  font-size: 13px;
  font-weight: 800;
  color: #10b981;
}

.goal-progress-bg {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.goal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #e11d48 0%, #10b981 100%);
  border-radius: var(--radius-pill);
  transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.35);
}

.goal-realized-sub {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* Grade de Métricas */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  border-top: none;
  padding-top: 0;
}

.metric-mini-card {
  background: rgba(7, 8, 10, 0.5);
  border: 1px solid rgba(225, 29, 72, 0.4);
  border-radius: var(--radius-md);
  padding: 10px 4px;
  box-shadow: 0 0 8px rgba(225, 29, 72, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric-mini-label {
  font-size: 8px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.metric-mini-val {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
}

.metric-mini-val.red { color: var(--medcar-red); }
.metric-mini-val.green { color: var(--accent-profit); }
.metric-mini-val.blue { color: var(--blue-info); }

/* ==========================================================================
   LISTA DE VEÍCULOS & CARDS COM SELO ROI
   ========================================================================== */

.vehicle-card {
  background: var(--bg-card);
  border: var(--border-premium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  height: 115px;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vehicle-card:active {
  transform: scale(0.97);
  border-color: var(--medcar-red);
}

.vehicle-card-img {
  width: 115px;
  height: 115px;
  background-color: #0e1017;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-right: 1px solid var(--border-color);
}

.vehicle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roi-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(16, 185, 129, 0.95);
  color: #000;
  padding: 3px 6px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 2px;
}

.roi-badge.high-roi {
  background: #f59e0b; /* Cor dourada para alto ROI */
  color: #000;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.vehicle-card-info {
  flex-grow: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.vehicle-card-title {
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-title);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vehicle-card-subtitle {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.vehicle-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.vehicle-card-price-label {
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.vehicle-card-price {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 1px;
}

/* ==========================================================================
   RELATÓRIO MENSAL (ACORDEON / SANFONA)
   ========================================================================== */

.report-section {
  margin-top: 24px;
  margin-bottom: 16px;
}

.monthly-reports-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-accordion {
  background: var(--bg-card);
  border: var(--border-premium);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.report-accordion-header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(255,255,255,0.01);
}

.report-accordion-header:active {
  background: rgba(255,255,255,0.03);
}

.report-month-title {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-arrow {
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.report-accordion.active .report-arrow {
  transform: rotate(180deg);
  color: var(--medcar-red);
}

.report-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 16px;
}

.report-accordion.active .report-accordion-content {
  max-height: 500px;
  padding: 0 16px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.report-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.report-stat-box {
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.01);
}

.report-stat-label {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.report-stat-value {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.report-stat-value.profit {
  color: var(--accent-profit);
}

/* ==========================================================================
   CHECKLIST DE PREPARAÇÃO OPERACIONAL
   ========================================================================== */

.checklist-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.checklist-input-row {
  display: flex;
  gap: 8px;
}

.checklist-input-row input {
  flex-grow: 1;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
}

.checklist-input-row button {
  background: var(--medcar-red);
  color: white;
  border: none;
  padding: 0 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

.checklist-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checklist-item {
  display: flex;
  align-items: center;
  justify-content: justify;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  transition: var(--transition-tactile);
}

.checklist-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  cursor: pointer;
}

.checklist-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-tactile);
}

.checklist-item.completed .checklist-checkbox {
  background-color: var(--accent-profit);
  border-color: var(--accent-profit);
}

.checklist-checkbox svg {
  display: none;
  color: #000;
}

.checklist-item.completed .checklist-checkbox svg {
  display: block;
}

.checklist-text {
  font-size: 13px;
  transition: var(--transition-tactile);
}

.checklist-item.completed .checklist-text {
  text-decoration: line-through;
  color: var(--text-muted);
}

.delete-task-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.delete-task-btn:hover {
  color: var(--medcar-red);
}

/* ==========================================================================
   SIMULADOR DE FINANCIAMENTO
   ========================================================================== */

.fin-tabs-container {
  margin-top: 14px;
}

.fin-calc-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
}

.fin-calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.fin-calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.fin-result-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
}

.fin-result-installments {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
}

.fin-result-val {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--medcar-red);
  margin-top: 2px;
}

/* ==========================================================================
   COMPARTILHAR ESTOQUE (SHOWROOM DIGITAL)
   ========================================================================== */

.catalog-share-box {
  background: var(--bg-card);
  border: var(--border-premium);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-premium);
}

.catalog-info {
  display: flex;
  flex-direction: column;
}

.catalog-title {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
}

.catalog-desc {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.btn-catalog {
  background: var(--medcar-red);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px var(--medcar-red-glow);
}

/* ==========================================================================
   BOTOES E INTERACAO
   ========================================================================== */

.btn {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--medcar-red);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--medcar-red-glow);
}

.btn-primary:active {
  background: var(--medcar-red-dark);
}

.btn-accent {
  background: var(--accent-profit);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--accent-profit-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-danger {
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.2);
  color: var(--medcar-red);
}

.btn-share {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  margin-top: 14px;
}

.btn-group {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   NAVEGACAO INFERIOR GLASSMORPHISM VERMELHO
   ========================================================================== */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 13, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: var(--safe-bottom);
  z-index: 99;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  flex-grow: 1;
  transition: color 0.2s ease;
  padding: 4px 0;
}

.nav-item svg {
  width: 22px;
  height: 22px;
  transition: transform 0.15s ease;
}

.nav-item.active {
  color: var(--medcar-red);
}

.nav-item.active svg {
  color: var(--medcar-red);
  transform: scale(1.12);
}

/* Modais estilo iOS Bottom Sheet */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-sheet {
  background: #0f1118;
  border-top: 1px solid var(--border-color);
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 24px 20px calc(24px + var(--safe-bottom)) 20px;
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.32, 0.94, 0.6, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.modal-backdrop.active .modal-sheet {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
}

.close-modal-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================================================
   ADIÇÕES PREMIUM MEDCAR V2.0
   ========================================================================== */

/* Toast de Notificação */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15, 17, 24, 0.95);
  border: 1px solid var(--medcar-red);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.2);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Stale Badge (Aviso de estoque parado) */
.stale-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(225, 29, 72, 0.95);
  color: white;
  padding: 3px 6px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Comparação de Meses */
.comparison-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.comparison-card {
  background: var(--bg-card);
  border: var(--border-premium);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.comparison-card-title {
  font-size: 10px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.comparison-card-value {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  margin-top: 4px;
}

.comparison-card-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Indicador de Celebração na Bottom Nav */
.nav-item {
  position: relative;
}

.nav-dot {
  position: absolute;
  top: 4px;
  right: 25%;
  width: 8px;
  height: 8px;
  background-color: #f59e0b;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 8px #f59e0b;
  animation: pulseGoldDot 1.5s infinite;
}

@keyframes pulseGoldDot {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

/* Detalhe de ROI */
.roi-detail {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.roi-detail.golden {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  animation: pulseGold 2s infinite;
}

.roi-detail.positive {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-profit);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.roi-detail.negative {
  background: rgba(225, 29, 72, 0.15);
  color: var(--medcar-red);
  border: 1px solid rgba(225, 29, 72, 0.3);
}

/* Galeria de Fotos no Detalhe */
.photo-gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  margin-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.photo-gallery::-webkit-scrollbar {
  height: 4px;
}

.photo-gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.photo-gallery-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  flex-shrink: 0;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.2s ease;
  background: rgba(0, 0, 0, 0.3);
}

.photo-gallery-thumb.active {
  border-color: var(--medcar-red);
}

.photo-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Comprador Section */
.buyer-section {
  margin-top: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.buyer-section-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.buyer-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Input de Meta */
.goal-input-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.goal-input-row input {
  flex-grow: 1;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
}

.goal-input-row button {
  background: var(--medcar-red);
  color: white;
  border: none;
  padding: 0 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--medcar-red-glow);
}

/* Formulário: Upload Multi-Fotos */
.multi-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.multi-photo-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.3);
}

.multi-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.multi-photo-item.cover::after {
  content: 'Capa';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(16, 185, 129, 0.85);
  color: #000;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
  padding: 2px 0;
  text-transform: uppercase;
}

.remove-photo-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Modal de Venda */
.sale-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

.sale-modal-card {
  background: #0f1118;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: scaleUp 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sale-modal-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-profit);
  margin-bottom: 16px;
  text-align: center;
  text-transform: uppercase;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Validação do formulário */
.invalid {
  border-color: var(--medcar-red) !important;
  box-shadow: 0 0 0 2px var(--medcar-red-glow) !important;
}

/* =========================================
   MULTI-USUÁRIO: TELA DE SELEÇÃO DE USUÁRIO
   ========================================= */

.auth-screen {
  position: fixed;
  inset: 0;
  background: #07080a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Adiciona 20px extras acima do entalhe do iPhone */
  padding: calc(env(safe-area-inset-top, 0px) + 20px) 20px 40px;
  overflow-y: auto;
  z-index: 9999;
}

.auth-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 36px;
  gap: 12px;
}

.auth-logo-frame {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2.5px solid var(--medcar-red);
  box-shadow: 0 0 18px rgba(225, 29, 72, 0.5), 0 0 35px rgba(225, 29, 72, 0.15);
  overflow: hidden;
  flex-shrink: 0;
}

.auth-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-align: center;
}

.auth-title span {
  color: var(--medcar-red);
}

.auth-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
}

/* Grid de usuários */
.users-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

.user-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.user-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
}

.user-card:hover::before,
.user-card:active::before {
  opacity: 1;
}

.user-card:active {
  transform: scale(0.98);
}

.user-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.user-card-info {
  flex: 1;
  min-width: 0;
}

.user-card-name {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.user-card-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Botão Adicionar Usuário */
.btn-add-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 400px;
  padding: 14px;
  background: transparent;
  border: 1.5px dashed rgba(225, 29, 72, 0.4);
  border-radius: var(--radius-lg);
  color: var(--medcar-red);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.btn-add-user:hover {
  background: rgba(225, 29, 72, 0.08);
  border-color: var(--medcar-red);
}

/* =========================================
   TELA DE CRIAÇÃO DE USUÁRIO
   ========================================= */

.create-user-form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 8px;
  align-self: flex-start;
}

.avatar-preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 8px;
  transition: all 0.3s ease;
}

/* =========================================
   TELA DE PIN
   ========================================= */

.pin-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 340px;
  gap: 0;
}

.pin-user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.pin-user-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.pin-user-name {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.pin-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pin-dots {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
}

.pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  transition: all 0.15s ease;
}

.pin-dot.filled {
  background: var(--medcar-red);
  border-color: var(--medcar-red);
  box-shadow: 0 0 8px rgba(225, 29, 72, 0.5);
}

.pin-error-msg {
  font-size: 12px;
  color: var(--medcar-red);
  min-height: 18px;
  margin-bottom: 12px;
  text-align: center;
}

.pin-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.pin-key {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.pin-key:active,
.pin-key.pressed {
  background: rgba(225, 29, 72, 0.2);
  border-color: rgba(225, 29, 72, 0.4);
  transform: scale(0.94);
}

.pin-key.empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
  pointer-events: none;
}

.pin-key.delete {
  font-size: 18px;
}

.pin-lock-msg {
  font-size: 13px;
  color: var(--medcar-red);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
}

.pin-back-btn {
  margin-top: 24px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  padding: 8px;
}

/* =========================================
   HEADER COM USUÁRIO E MODO PRIVADO
   ========================================= */

.header-user-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-user-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.private-mode-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.private-mode-btn.active {
  background: rgba(225, 29, 72, 0.2);
  border-color: rgba(225, 29, 72, 0.4);
}

.private-mode-btn svg {
  color: var(--text-muted);
  transition: color 0.2s;
}

.private-mode-btn.active svg {
  color: var(--medcar-red);
}

/* Valor mascarado — modo privado */
.masked-value {
  color: var(--text-muted);
  letter-spacing: 3px;
  font-size: 0.9em;
}

/* ==========================================================================
   NAV BADGE (contador de notificações nas abas)
   ========================================================================== */

.nav-badge {
  position: absolute;
  top: 4px;
  right: 8px;
  background: var(--medcar-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 0 6px rgba(225,29,72,0.6);
}

/* Bottom nav com 5 abas */
.bottom-nav {
  display: flex;
  justify-content: space-around;
}

.bottom-nav .nav-item {
  flex: 1;
  min-width: 0;
}

.bottom-nav .nav-item span {
  font-size: 9px;
}

/* ==========================================================================
   ABA FINANCEIRO — KPI CARDS
   ========================================================================== */

.fin-month-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  background: var(--bg-card);
  border: var(--border-premium);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.fin-month-selector label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fin-month-selector select {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 8px 10px;
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
}

.fin-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.fin-kpi-card {
  background: var(--bg-card);
  border: var(--border-premium);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.2s;
}

.fin-kpi-card.kpi-highlight {
  border-color: rgba(16,185,129,0.4);
  box-shadow: 0 0 12px rgba(16,185,129,0.08);
}

.fin-kpi-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.fin-kpi-body {
  flex: 1;
  min-width: 0;
}

.fin-kpi-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.fin-kpi-value {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  word-break: break-word;
}

.fin-kpi-value.green { color: #22c55e; }
.fin-kpi-value.red   { color: #ef4444; }

.fin-kpi-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ==========================================================================
   ABA FINANCEIRO — SEÇÕES E TÍTULOS
   ========================================================================== */

.fin-section {
  margin-bottom: 24px;
}

.fin-section-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   ABA FINANCEIRO — TABELA DE LUCRATIVIDADE
   ========================================================================== */

.fin-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: var(--border-premium);
  background: var(--bg-card);
}

.fin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 640px;
}

.fin-table thead tr {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.fin-table th {
  padding: 10px 12px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.fin-table-row {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer;
  transition: background 0.15s;
}

.fin-table-row:hover {
  background: rgba(255,255,255,0.03);
}

.fin-table-row:last-child {
  border-bottom: none;
}

.fin-table td {
  padding: 10px 12px;
  vertical-align: middle;
  color: var(--text-primary);
  white-space: nowrap;
}

.fin-veiculo-nome {
  font-weight: 600;
  font-size: 13px;
}

.fin-veiculo-sub {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.fin-table tfoot .fin-table-total {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.fin-table-total td {
  padding: 12px;
  font-size: 12px;
}

/* Badges de margem/ROI */
.fin-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.badge-green  { background: rgba(34,197,94,0.15);  color: #4ade80; }
.badge-yellow { background: rgba(251,191,36,0.15);  color: #fbbf24; }
.badge-red    { background: rgba(239,68,68,0.15);   color: #f87171; }

/* ==========================================================================
   ABA FINANCEIRO — GRÁFICO DE BARRAS POR CATEGORIA
   ========================================================================== */

.fin-cat-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-card);
  border: var(--border-premium);
  border-radius: var(--radius-md);
  padding: 16px;
}

.fin-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fin-cat-label {
  width: 110px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fin-cat-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 9999px;
  overflow: hidden;
}

.fin-cat-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--medcar-red), #f97316);
  border-radius: 9999px;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  min-width: 4px;
}

.fin-cat-val {
  width: 80px;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   ABA TROCAS — PROPOSTAS DE TROCA
   ========================================================================== */

.trocas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.trocas-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.troca-card {
  background: var(--bg-card);
  border: var(--border-premium);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: border-color 0.2s;
}

.troca-card.troca-nova {
  border-color: rgba(225,29,72,0.4);
  box-shadow: 0 0 10px rgba(225,29,72,0.1);
}

.troca-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.troca-nome {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.troca-data {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.troca-veiculo {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.troca-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.troca-details span {
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.06);
}

.troca-obs {
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
  width: 100%;
  background: rgba(255,255,255,0.02);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--medcar-red);
}

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

.btn-troca-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,0.15);
  color: #25d366;
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-troca-wa:hover {
  background: rgba(37,211,102,0.25);
}

.btn-troca-del {
  background: transparent;
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: auto;
}

.btn-troca-del:hover {
  background: rgba(239,68,68,0.1);
}

.site-link-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: var(--text-muted);
  text-decoration: none;
}
.site-link-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-main);
}
.site-link-btn svg {
  color: inherit;
}

