@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 {
  --color-bg-deep: #060907;
  --color-bg-card: #0d120f;
  --color-bg-card-hover: #141c18;
  --color-primary: #39ff14; /* Neon green */
  --color-primary-rgb: 57, 255, 20;
  --color-secondary: #00f0ff; /* Tech cyan */
  --color-secondary-rgb: 0, 240, 255;
  --color-accent: #059669; /* Eco green */
  --color-text-main: #f8fafc;
  --color-text-muted: #8e9fa5;
  --color-border: rgba(57, 255, 20, 0.12);
  --color-border-hover: rgba(57, 255, 20, 0.35);
  
  --shadow-glow: 0 0 15px rgba(57, 255, 20, 0.25);
  --shadow-glow-strong: 0 0 25px rgba(57, 255, 20, 0.5);
  --shadow-glow-cyan: 0 0 15px rgba(0, 240, 255, 0.25);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Seções e Inputs Dinâmicos (Tema Escuro Padrão) */
  --color-bg-section-alt: rgba(13, 18, 15, 0.4);
  --color-bg-partner: linear-gradient(to bottom, rgba(6, 10, 8, 0.95), rgba(13, 18, 15, 0.9));
  --color-bg-header: rgba(6, 10, 8, 0.8);
  --color-bg-header-scrolled: rgba(6, 10, 8, 0.95);
  --color-bg-footer: #040605;
  --color-input-bg: rgba(6, 10, 8, 0.6);
  --color-input-text: #ffffff;
  --color-bg-floating: rgba(13, 18, 15, 0.85);
  
  /* Gradientes e Botões Dinâmicos */
  --color-gradient-start: #ffffff;
  --color-btn-primary-bg: #0f172a;
  --color-btn-primary-text: #22c55e;
  --color-btn-primary-border: #22c55e;
  --color-btn-primary-hover-bg: #22c55e;
  --color-btn-primary-hover-text: #ffffff;
}

:root[data-theme="light"] {
  --color-bg-deep: #f8fafc;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #f1f5f9;
  --color-primary: #16a34a; /* Verde mais escuro e legível para texto/botões */
  --color-primary-rgb: 22, 163, 74;
  --color-secondary: #0891b2; /* Azul ciano com maior contraste */
  --color-secondary-rgb: 8, 145, 178;
  --color-accent: #15803d;
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-border: rgba(22, 163, 74, 0.15);
  --color-border-hover: rgba(22, 163, 74, 0.35);
  
  --shadow-glow: 0 4px 15px rgba(22, 163, 74, 0.1);
  --shadow-glow-strong: 0 10px 25px rgba(22, 163, 74, 0.2);
  --shadow-glow-cyan: 0 4px 15px rgba(8, 145, 178, 0.1);
  
  --color-bg-section-alt: rgba(241, 245, 249, 0.8);
  --color-bg-partner: linear-gradient(to bottom, #ffffff, #f8fafc);
  --color-bg-header: rgba(255, 255, 255, 0.75);
  --color-bg-header-scrolled: rgba(255, 255, 255, 0.95);
  --color-bg-footer: #f1f5f9;
  --color-input-bg: #ffffff;
  --color-input-text: #0f172a;
  --color-bg-floating: rgba(255, 255, 255, 0.85);
  
  /* Gradientes e Botões Dinâmicos */
  --color-gradient-start: var(--color-text-main);
  --color-btn-primary-bg: #16a34a;
  --color-btn-primary-text: #ffffff;
  --color-btn-primary-border: #16a34a;
  --color-btn-primary-hover-bg: #15803d;
  --color-btn-primary-hover-text: #ffffff;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(57, 255, 20, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

/* Typography Utility */
.text-neon {
  color: var(--color-primary);
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
}

.text-cyan {
  color: var(--color-secondary);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-text-main) 30%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-neon-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* Background elements */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

.radial-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px; /* Mais fino e elegante */
  background: var(--color-bg-header);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(22, 163, 74, 0.1);
  z-index: 2000;
  transition: all var(--transition-normal);
}

header.scrolled {
  height: 60px;
  background: var(--color-bg-header-scrolled);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1300px; /* Evita quebras de linha em telas médias */
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-main);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.logo img {
  height: 30px;
  object-fit: contain;
}

.logo-text span {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 12px; /* Espaçamento mais compacto */
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 8px; /* Menor preenchimento lateral */
  border-radius: 6px;
  transition: all var(--transition-fast);
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap; /* Garante que os links nunca quebrem linha */
}

.nav-links a i {
  margin-right: 6px;
  font-size: 14px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-primary);
  background: rgba(22, 163, 74, 0.05);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
  transition: width var(--transition-normal);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Alternador de Tema */
.btn-theme-toggle {
  background: rgba(var(--color-primary-rgb), 0.08);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 16px;
  outline: none;
}

.btn-theme-toggle:hover {
  background: var(--color-primary);
  color: var(--color-bg-deep);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 24px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text) !important;
  border: 1.5px solid var(--color-btn-primary-border);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--color-btn-primary-hover-bg);
  color: var(--color-btn-primary-hover-text) !important;
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-main);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(22, 163, 74, 0.05);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-outline-neon {
  background: rgba(22, 163, 74, 0.05);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.btn-outline-neon:hover {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

.btn-admin {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.btn-admin:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  background: rgba(8, 145, 178, 0.05);
  box-shadow: var(--shadow-glow-cyan);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  z-index: 10;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.05);
}

.hero-badge i {
  animation: pulse-glow 2s infinite;
}

.hero-title {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-main);
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Scooter Frame and Glowing elements */
.scooter-showcase {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scooter-bg-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.15) 0%, transparent 65%);
  animation: float-slow 6s ease-in-out infinite alternate;
}

.scooter-img {
  width: 100%;
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7));
  animation: hover-scooter 4s ease-in-out infinite alternate;
}

/* Floating eco points indicators */
.floating-tag {
  position: absolute;
  background: var(--color-bg-floating);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  z-index: 10;
  animation: float-tag 5s ease-in-out infinite;
}

.floating-tag.tag-1 {
  top: 15%;
  right: -5%;
  animation-delay: 0s;
}

.floating-tag.tag-2 {
  bottom: 25%;
  left: -5%;
  animation-delay: 1.5s;
}

.floating-tag i {
  width: 32px;
  height: 32px;
  background: rgba(57, 255, 20, 0.15);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.floating-tag div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.floating-tag div p {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-main);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-badge {
  display: inline-block;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--color-text-muted);
}

/* About / Info Cards */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 32px;
  border-radius: 16px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-primary);
  transition: var(--transition-normal);
}

.feature-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(57, 255, 20, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: var(--color-bg-deep);
  box-shadow: var(--shadow-glow);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.eco-pulse-box {
  background: linear-gradient(135deg, rgba(13, 18, 15, 0.9) 0%, rgba(6, 10, 8, 0.95) 100%);
  border: 1px solid var(--color-border);
  padding: 40px;
  border-radius: 24px;
  position: relative;
  box-shadow: var(--shadow-glow);
}

.eco-pulse-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pulse-indicator {
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative;
}

.pulse-indicator::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse-ring 2s infinite;
}

/* Chargers Grid */
.chargers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.charger-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-normal);
}

.charger-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow);
}

.charger-img-container {
  position: relative;
  height: 240px;
  background: linear-gradient(to bottom, rgba(57, 255, 20, 0.02), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.charger-img-container img {
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
  transition: var(--transition-normal);
}

.charger-card:hover .charger-img-container img {
  transform: scale(1.05) rotate(1deg);
}

.charger-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(6, 10, 8, 0.8);
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.charger-content {
  padding: 28px;
}

.charger-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.charger-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.charger-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  margin-bottom: 24px;
}

.spec-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.spec-line i {
  color: var(--color-primary);
}

.charger-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.charger-price {
  font-family: 'Outfit', sans-serif;
}

.charger-price span {
  font-size: 11px;
  color: var(--color-text-muted);
  display: block;
}

.charger-price p {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
}

/* EcoPonto Simulator Section */
.partner-section {
  position: relative;
  overflow: hidden;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.partner-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.business-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.business-type-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.business-type-card.active, .business-type-card:hover {
  background: rgba(57, 255, 20, 0.05);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.business-type-card i {
  font-size: 20px;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.business-type-card.active i, .business-type-card:hover i {
  color: var(--color-primary);
  text-shadow: 0 0 5px var(--color-primary);
}

.business-type-card p {
  font-size: 14px;
  font-weight: 600;
}

/* Profit Calculator */
.calculator-box {
  background: var(--color-bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-glow);
  padding: 40px;
  border-radius: 24px;
  transition: var(--transition-normal);
}

.calculator-box:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-glow-strong);
}

.calc-title {
  font-size: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-title i {
  color: var(--color-primary);
}

.calc-group {
  margin-bottom: 28px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

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

.calc-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(var(--color-primary-rgb), 0.15); /* Trilho dinâmico e visível em ambos os temas */
  border-radius: 3px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px var(--color-primary);
  transition: transform 0.1s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.results-container {
  background: rgba(57, 255, 20, 0.03);
  border: 1px dashed rgba(57, 255, 20, 0.3);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.results-label {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.results-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--color-text-muted);
  text-align: center;
}

/* Multi-step EcoPonto Application Form */
.form-section {
  background: linear-gradient(to bottom, var(--color-bg-deep), var(--color-bg-card));
}

.multistep-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.step-bar {
  position: absolute;
  top: 15px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  box-shadow: var(--shadow-glow);
  z-index: 2;
  transition: var(--transition-normal);
}

.step-dot {
  width: 32px;
  height: 32px;
  background: var(--color-bg-card);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-muted);
  z-index: 3;
  transition: var(--transition-normal);
}

.step-dot.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  background: var(--color-bg-deep);
}

.step-dot.completed {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg-deep);
  box-shadow: var(--shadow-glow);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fade-in 0.4s ease;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-main);
}

.form-input {
  width: 100%;
  background: var(--color-input-bg);
  border: 1.5px solid var(--color-border);
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--color-input-text);
  font-size: 14px;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  background: var(--color-input-bg);
}

select.form-input {
  cursor: pointer;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

/* Success State Screen */
.success-screen {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(57, 255, 20, 0.1);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px auto;
  box-shadow: var(--shadow-glow-strong);
  animation: success-pulse 1.5s infinite;
}

.success-screen h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--color-text-muted);
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto;
}

/* Charger simulator section */
.simulator-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at bottom right, rgba(0, 240, 255, 0.03) 0%, transparent 60%);
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Device mockup styling */
.device-mockup {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 640px;
  background: #000;
  border: 10px solid #1a1a1a;
  border-radius: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
  margin: 0 auto;
  overflow: hidden;
  z-index: 5;
}

/* Screen bezel details */
.device-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 25px;
  background: #1a1a1a;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 100;
}

.screen {
  width: 100%;
  height: 100%;
  background: #060907;
  padding: 35px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.screen-title {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

.screen-title i {
  color: var(--color-primary);
}

.screen-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Screen state contents */
.sim-state {
  display: none;
  flex-grow: 1;
  flex-direction: column;
  justify-content: space-between;
  animation: fade-in 0.3s ease;
}

.sim-state.active {
  display: flex;
}

/* State 1: Scan QR */
.scan-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
}

.qr-box {
  width: 160px;
  height: 160px;
  border: 2.5px solid var(--color-primary);
  border-radius: 16px;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 255, 20, 0.02);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

.qr-box::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  background-image: 
    linear-gradient(rgba(57, 255, 20, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.8) 1px, transparent 1px);
  background-size: 15px 15px;
}

.laser-line {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  box-shadow: 0 0 10px var(--color-primary);
  animation: scan-move 2.5s linear infinite alternate;
}

/* State 2: Select Details */
.charger-input-group {
  margin-bottom: 14px;
}

.charger-input-group label {
  font-size: 11px;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 6px;
}

.phone-select {
  width: 100%;
  background: var(--color-input-bg);
  border: 1px solid var(--color-border);
  color: var(--color-input-text);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
}

.phone-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* State 3: Charging screen */
.charge-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.battery-mock {
  width: 75px;
  height: 140px;
  border: 4px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  position: relative;
  padding: 4px;
  margin-bottom: 16px;
}

.battery-mock::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 8px;
  background: rgba(255,255,255,0.15);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.battery-fill {
  width: 100%;
  height: 20%;
  background: var(--color-primary);
  box-shadow: var(--shadow-glow);
  border-radius: 6px;
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  width: calc(100% - 8px);
  transition: height 0.5s ease;
  animation: charging-pulse 1.5s infinite alternate;
}

.percentage-text {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--color-text-main);
}

.charging-stats {
  background: var(--color-bg-card);
  border-radius: 12px;
  padding: 14px;
  margin: 10px 0;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
}

.stat-row:last-child {
  margin-bottom: 0;
}

.stat-row span {
  color: var(--color-text-muted);
}

.stat-row p {
  font-weight: 600;
}

/* State 4: Receipt screen */
.receipt-box {
  background: var(--color-bg-card);
  border: 1px dashed var(--color-border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.receipt-icon {
  width: 44px;
  height: 44px;
  background: rgba(57, 255, 20, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  font-size: 18px;
}

.receipt-details {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 14px;
  margin-top: 14px;
  text-align: left;
}

/* Footer Section */
footer {
  background: #040605;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin: 16px 0 24px 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: rgba(57, 255, 20, 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.footer-contact i {
  color: var(--color-primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* Dashboard-specific styling */
.admin-body {
  background-color: #030605;
}

.admin-header {
  background: rgba(13, 18, 15, 0.95);
  border-bottom: 1.5px solid var(--color-secondary);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  z-index: 100;
}

.admin-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.admin-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding-top: 110px;
  padding-bottom: 60px;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 110px;
  height: fit-content;
}

.admin-menu {
  list-style: none;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-menu-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.admin-menu-item button:hover, .admin-menu-item.active button {
  color: var(--color-secondary);
  background: rgba(0, 240, 255, 0.05);
}

.admin-panel {
  display: none;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  animation: fade-in 0.3s ease;
}

.admin-panel.active {
  display: block;
}

.admin-panel h2 {
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
  color: #fff;
}

/* Image preview box in dashboard */
.image-preview-container {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
}

.image-preview {
  width: 120px;
  height: 80px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.file-input-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.file-input-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0f1c16;
  border: 1.5px solid var(--color-primary);
  box-shadow: var(--shadow-glow-strong);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  color: var(--color-primary);
  font-size: 20px;
}

.toast-message {
  font-size: 14px;
  font-weight: 500;
}

/* Keyframe Animations */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-slow {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-15px) scale(1.02); }
}

@keyframes hover-scooter {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes float-tag {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); text-shadow: 0 0 10px var(--color-primary); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0.2; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes scan-move {
  0% { top: 10px; }
  100% { top: 145px; }
}

@keyframes charging-pulse {
  0% { opacity: 0.8; }
  100% { opacity: 1; filter: brightness(1.2); }
}

@keyframes success-pulse {
  0% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(57, 255, 20, 0); }
  100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

/* ==========================================
   Responsiveness & Mobile Refinements
   ========================================== */

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
  .about-grid, .partner-grid, .simulator-grid {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 40px;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
    width: 100%;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .scooter-showcase {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .simulator-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .simulator-text {
    order: -1; /* Coloca o texto explicativo no topo no tablet/mobile */
    text-align: center;
  }
  
  .simulator-text .section-title {
    text-align: center;
  }
  
  .simulator-text .section-desc {
    text-align: center;
  }
  
  .admin-container {
    grid-template-columns: 1fr;
  }
  
  .admin-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
  
  .admin-menu {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    gap: 12px;
  }
  
  .admin-menu-item button {
    padding: 10px 16px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 15px;
  }
}

/* Header & Mobile Navbar */
@media (max-width: 1150px) {
  header {
    height: 70px;
  }
  header.scrolled {
    height: 70px;
  }

  .menu-btn {
    display: block;
    z-index: 2100; /* Acima do menu lateral drawer */
    margin-left: 10px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -300px; /* Escondido à direita */
    left: auto;
    width: 280px;
    height: 100vh;
    background: rgba(10, 15, 12, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: flex-start; /* Alinhado à esquerda para visual de gaveta */
    justify-content: flex-start;
    gap: 16px;
    overflow-y: auto;
    transition: right var(--transition-normal);
    z-index: 2000; /* Acima do cabeçalho */
    border-left: 1px solid var(--color-border);
    border-bottom: none;
    padding: 100px 24px 40px 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  }

  .nav-links.active {
    right: 0;
    left: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-sizing: border-box;
  }
  
  .nav-links a::after {
    display: none; /* Remove barra horizontal de hover */
  }

  .btn-admin {
    padding: 8px 12px;
  }
}

@media (max-width: 768px) {
  /* Hero adjustments */
  .hero-title {
    font-size: 38px;
    margin-bottom: 16px;
  }
  
  .hero-badge {
    padding: 5px 12px;
    font-size: 11px;
    margin-bottom: 16px;
  }
  
  .hero-description {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .hero-cta {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 20px;
    padding-top: 24px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .stat-val {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }

  /* Scooter tags resizing for small screens */
  .floating-tag {
    padding: 8px 12px;
    border-radius: 8px;
  }
  .floating-tag.tag-1 {
    top: 5%;
    right: 0%;
  }
  .floating-tag.tag-2 {
    bottom: 15%;
    left: 0%;
  }
  .floating-tag i {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .floating-tag div p {
    font-size: 11px;
  }
  .floating-tag div span {
    font-size: 8px;
  }

  /* About Features */
  .about-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .eco-pulse-box {
    padding: 24px;
    border-radius: 16px;
  }

  /* Chargers */
  .chargers-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  /* EcoPonto calculator */
  .calculator-box {
    padding: 24px;
    border-radius: 16px;
  }

  .results-amount {
    font-size: 28px;
  }

  .business-types {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .business-type-card {
    padding: 12px 16px;
    gap: 8px;
  }

  /* Multistep Form (contato.html) */
  .multistep-container {
    padding: 24px;
    border-radius: 16px;
  }
  
  .step-indicator {
    margin-bottom: 24px;
  }
  
  .step-dot {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .form-navigation {
    margin-top: 24px;
    padding-top: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-badge {
    text-align: center;
  }
  
  .scooter-showcase {
    max-width: 300px;
  }

  .floating-tag {
    display: none; /* Esconde tags flutuantes em telas ultra-pequenas para evitar poluição visual */
  }

  .business-types {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Lockscreen Admin responsive size */
  #admin-lockscreen .calculator-box {
    max-width: 90%;
    padding: 24px;
  }
}

/* Ajustes de responsividade do menu do cabeçalho em celulares */
@media (max-width: 1150px) {
  .nav-actions .btn-admin,
  .nav-actions .btn-primary {
    display: none !important;
  }
  
  .nav-links .mobile-action-item {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  
  .nav-links .mobile-action-item .btn {
    display: inline-flex !important;
    width: 80%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
    box-shadow: var(--shadow-glow);
  }
}

@media (min-width: 1151px) {
  .nav-links .mobile-action-item {
    display: none !important;
  }
}

/* Contact Grid Responsiveness */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Custom Scrollbar for Transactions History */
#transactions-container::-webkit-scrollbar {
  width: 6px;
}
#transactions-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 8px;
}
#transactions-container::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 8px;
}
#transactions-container::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}
