/* ==========================================================================
   🎨 HOXO BRAND DESIGN SYSTEM & GLOBAL STYLES
   ========================================================================== */

/* 1. Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* 2. Variables */
:root {
  /* Brand Palette */
  --primary: #7c3aed;
  --primary-rgb: 124, 58, 237;
  --primary-dark: #5115b5;
  --primary-light: #a78bfa;
  
  --secondary: #5115b5;
  --secondary-rgb: 81, 21, 181;
  --dark-bg: #0f172a;
  --dark-slate: #0b0f19;
  
  /* Brand Gradients (Hoxo Original) */
  --primary-gradient: linear-gradient(135deg, #5115b5 0%, #7c3aed 100%);
  --purple-gradient: linear-gradient(135deg, #5115b5 0%, #7c3aed 100%);
  
  --accent-orange: #ed5d0f;
  --accent-red: #f97316;
  --accent-gradient: linear-gradient(135deg, #ed5d0f 0%, #f97316 100%);
  
  --brand-gradient: linear-gradient(135deg, #5115b5 0%, #7c3aed 100%);
  --card-gradient: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  
  /* Neutral Colors */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --border-light: #e2e8f0;
  
  /* Layout & Animations */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px -15px rgba(124, 58, 237, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--neutral-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c7d2fe;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* ==========================================================================
   ⚡ LAYOUT UTILITIES & CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 20px;
  }
}

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

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

.bg-light {
  background-color: var(--bg-light);
}

/* ==========================================================================
   ✨ PREMIUM VISUAL COMPONENTS
   ========================================================================== */

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}

.badge-accent {
  background: var(--accent-gradient);
  color: white;
  border: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.975rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(237, 93, 15, 0.4);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(237, 93, 15, 0.6);
  opacity: 0.95;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
}

.btn-outline:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: var(--secondary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background-color: var(--bg-light);
  border-color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Glowing Neon Background Orbs */
.glow-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.15;
}

.orb-primary {
  width: 400px;
  height: 400px;
  background-color: var(--primary);
  top: 10%;
  right: -100px;
}

.orb-accent {
  width: 350px;
  height: 350px;
  background-color: var(--accent-red);
  bottom: 20%;
  left: -150px;
}

/* Typography Helpers */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px auto;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #3b4252 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   🧭 STICKY HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled,
.header.scrolled-dark {
  padding: 16px 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  height: 32px;
}

.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.logo-dark {
  display: none !important;
}

.logo-light {
  display: block !important;
}

.header.scrolled .logo-light,
.header.scrolled-dark .logo-light {
  display: none !important;
}

.header.scrolled .logo-dark,
.header.scrolled-dark .logo-dark {
  display: block !important;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #ffffff;
}

/* Active Nav Link State */
.nav-link.active {
  color: #ffffff;
  font-weight: 700;
}
.nav-link.active::after {
  width: 100%;
}

/* Dynamic State Scrolled */
.header.scrolled .nav-link,
.header.scrolled-dark .nav-link {
  color: var(--text-main);
}
.header.scrolled .nav-link:hover,
.header.scrolled-dark .nav-link:hover {
  color: var(--primary);
}
.header.scrolled .nav-link.active,
.header.scrolled-dark .nav-link.active {
  color: var(--primary);
}
.header.scrolled .logo,
.header.scrolled-dark .logo {
  color: #0f172a;
}

.header.scrolled .btn-secondary,
.header.scrolled-dark .btn-secondary {
  background-color: var(--bg-light);
  color: var(--text-main);
  border-color: var(--border-light);
}
.header.scrolled .btn-secondary:hover,
.header.scrolled-dark .btn-secondary:hover {
  background-color: var(--border-light);
}

/* Action Buttons Header */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
  background-color: #0f172a;
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #0f172a;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 28px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: #ffffff;
    font-size: 1.1rem;
    width: 100%;
    padding: 8px 0;
  }
  
  .nav-actions {
    width: 100%;
    flex-direction: column;
    margin-top: 16px;
    gap: 12px;
  }
  
  .nav-actions .btn {
    width: 100%;
  }

  /* Hamburger Active Animation */
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .mobile-toggle.active span {
    background-color: #ffffff !important;
  }
}

/* ==========================================================================
   🌌 HERO SECTION (DARK MODE GLASSMORPHISM)
   ========================================================================== */
.hero {
  position: relative;
  background: var(--brand-gradient);
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

/* Glow Background Effects */
.hero-glow-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(0,0,0,0) 70%);
  filter: blur(60px);
}

.hero-glow-2 {
  bottom: 10%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 42, 133, 0.15) 0%, rgba(0,0,0,0) 70%);
  filter: blur(60px);
}

.hero .grid-2 {
  align-items: center;
  gap: 48px;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-content h1 span {
  background: linear-gradient(135deg, #a5b4fc 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 540px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.trust-item svg {
  color: var(--primary-light);
  width: 16px;
  height: 16px;
}

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .hero .grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* Aceleradoras Subpage Hero Styling */
.hero-aceleradoras {
  text-align: center;
  padding-top: 180px;
  padding-bottom: 120px;
}

.hero-aceleradoras h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff !important;
  margin-top: 20px;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-aceleradoras h1 span {
  background: linear-gradient(135deg, #a5b4fc 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-aceleradoras p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8) !important;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .hero-aceleradoras h1 {
    font-size: 3rem;
  }
  .hero-aceleradoras p {
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .hero-aceleradoras h1 {
    font-size: 2.25rem;
  }
}

/* ==========================================================================
   💻 INTERACTIVE HIGH-FIDELITY DASHBOARD MOCKUP
   ========================================================================== */
.hero-visual {
  position: relative;
  z-index: 5;
}

.dashboard-card {
  width: 100%;
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

/* Mock Sidebar */
.mock-sidebar {
  width: 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0,0,0,0.1);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sidebar-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.sidebar-icon.active, .sidebar-icon:hover {
  background-color: rgba(99, 102, 241, 0.15);
  color: var(--primary-light);
}

.sidebar-icon svg {
  width: 18px;
  height: 18px;
}

/* Mock Main Panel */
.mock-panel {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Mock Metrics */
.mock-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.metric-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 14px;
  transition: var(--transition);
}

.metric-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  background-color: rgba(255, 255, 255, 0.04);
}

.metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.metric-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.metric-trend {
  font-size: 0.7rem;
  color: #10b981;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.metric-trend.negative {
  color: #ef4444;
}

/* Mock Chart Graphic */
.mock-chart-container {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.chart-title {
  font-size: 0.8rem;
  font-weight: 600;
}

.chart-legend {
  display: flex;
  gap: 12px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
}

.dot-primary { background-color: var(--primary); }
.dot-accent { background-color: var(--accent-orange); }

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  padding: 10px 0;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: calc(100% / 7);
}

.bar-stack {
  position: relative;
  width: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
  height: 80px;
}

.bar-fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--purple-gradient);
  border-radius: var(--radius-full);
  transition: height 1s ease-in-out;
  height: 0%;
}

.chart-bar-group:nth-child(1) .bar-fill { height: 40%; }
.chart-bar-group:nth-child(2) .bar-fill { height: 65%; }
.chart-bar-group:nth-child(3) .bar-fill { height: 50%; }
.chart-bar-group:nth-child(4) .bar-fill { height: 85%; }
.chart-bar-group:nth-child(5) .bar-fill { height: 70%; }
.chart-bar-group:nth-child(6) .bar-fill { height: 95%; }
.chart-bar-group:nth-child(7) .bar-fill { height: 90%; }

.chart-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Floating Card decoration */
.floating-card {
  position: absolute;
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  animation: float-offset 5s ease-in-out infinite;
}

.card-top-left {
  top: 15%;
  left: -40px;
}

.card-bottom-right {
  bottom: -55px;
  right: -60px;
}

.floating-card.bg-purple {
  background-color: #5115b5;
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.floating-card.bg-purple .floating-card-title {
  color: rgba(255, 255, 255, 0.7);
}

.floating-card.bg-purple .floating-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.floating-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.15);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card-icon.accent {
  background: rgba(255, 94, 58, 0.15);
  color: var(--accent-orange);
}

.floating-card-content {
  display: flex;
  flex-direction: column;
}

.floating-card-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.floating-card-val {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .floating-card {
    display: none;
  }
}

/* ==========================================================================
   🤝 SOCIAL PROOF / CLIENTS SECTION
   ========================================================================== */
.clients {
  padding: 48px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.clients-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.client-logo {
  max-width: 140px;
  height: 40px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity var(--transition-fast), transform var(--transition-fast), filter var(--transition-fast);
}

.client-logo:hover {
  opacity: 0.9;
  transform: scale(1.05);
  filter: grayscale(0);
}

@media (max-width: 600px) {
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ==========================================================================
   📊 NUMERICAL STATS SECTION
   ========================================================================== */
.stats {
  background-color: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 102, 241, 0.2);
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.25;
  padding-bottom: 8px;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  background: var(--purple-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-number-long {
  font-size: 2.1rem;
}

.stat-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    padding: 24px 16px;
  }
}

/* ==========================================================================
   ⚡ CORE FEATURES GRID SECTION (#recursos)
   ========================================================================== */
.features {
  background-color: #ffffff;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: #e2e8f0;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 94, 58, 0.2);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

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

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.feature-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.feature-bullet-item svg {
  color: #10b981;
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 28px;
  }
}

/* ==========================================================================
   📈 RESULTS AND METRICS SECTION
   ========================================================================== */
.results {
  background-color: var(--bg-light);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.results-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  transition: var(--transition);
}

.results-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 102, 241, 0.15);
}

.results-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.results-icon.blue-box { background-color: rgba(37, 99, 235, 0.1); color: #2563eb; }
.results-icon.green-box { background-color: rgba(16, 185, 129, 0.1); color: #10b981; }
.results-icon.dark-purple-box { background-color: rgba(99, 102, 241, 0.1); color: var(--primary); }
.results-icon.light-purple-box { background-color: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

.results-icon svg {
  width: 22px;
  height: 22px;
}

.results-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.results-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.results-footer-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

@media (max-width: 576px) {
  .results-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
}

/* ==========================================================================
   🚀 SPECIAL STARTUPS & ACELERADORAS SECTION (#beneficios)
   ========================================================================== */
.startups {
  background-color: #ffffff;
}

.startups .grid-2 {
  align-items: center;
  gap: 64px;
}

.startups-info {
  position: relative;
  z-index: 2;
}

.startups-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.startup-benefit-card {
  display: flex;
  gap: 16px;
}

.startup-benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.startup-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.startup-benefit-content h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.startup-benefit-content p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* Form Action Box (Right side) */
.startups-form-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-box-header {
  margin-bottom: 28px;
  text-align: center;
}

.form-box-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-box-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.startups-actions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.startups-actions-list .btn {
  width: 100%;
}

.form-box-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 24px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .startups .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .startups-form-box {
    padding: 24px;
  }
}

/* ==========================================================================
   💬 TESTIMONIALS SECTION (#depoimentos)
   ========================================================================== */
.testimonials {
  background-color: var(--bg-light);
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 102, 241, 0.2);
}

.stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.stars svg {
  width: 16px;
  height: 16px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
  background-color: #e2e8f0;
  border: 2px solid var(--primary-light);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.user-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 24px;
  }
}

/* ==========================================================================
   📢 FINAL CALL TO ACTION BANNER (VIBRANT PURPLE GRADIENT)
   ========================================================================== */
.cta-banner {
  background-color: #0f172a;
  position: relative;
  overflow: hidden;
}

.cta-banner-wrapper {
  background: var(--purple-gradient);
  border-radius: var(--radius-lg);
  padding: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(59, 14, 133, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.25) 0%, rgba(0,0,0,0) 70%);
  filter: blur(60px);
}

.cta-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-banner-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 32px;
}

.cta-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cta-bullet-item svg {
  color: #10b981;
  width: 18px;
  height: 18px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-subtext {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

@media (max-width: 991px) {
  .cta-banner-wrapper {
    padding: 48px;
  }
  .cta-banner-content h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 576px) {
  .cta-banner-wrapper {
    padding: 32px 16px;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .cta-bullets {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================================================
   🏛️ FOOTER SECTION (#contato)
   ========================================================================== */
.footer {
  background-color: var(--dark-slate);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (min-width: 577px) {
  .footer-nav-col.align-right {
    justify-self: end;
    text-align: left;
  }
  .footer-nav-col.align-right .footer-nav-link:hover {
    transform: translateX(4px);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-nav-col h4 {
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-link {
  font-size: 0.9rem;
}

.footer-nav-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: var(--primary-light);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Legal Credits Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-link:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ==========================================================================
   🛡️ COMPENSATIONS & EXTRA STYLES SPECIFIC TO /ACELERADORAS
   ========================================================================== */

/* Split Comparison Section */
.comparison {
  background-color: #ffffff;
}

.comparison-col {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.comparison-col:hover {
  box-shadow: var(--shadow-md);
}

.comparison-col.accent-border {
  border-color: rgba(99, 102, 241, 0.25);
  position: relative;
}

.comparison-col h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.comparison-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.comparison-item.negative svg {
  color: #ef4444;
  margin-top: 3px;
}

.comparison-item.positive svg {
  color: #10b981;
  margin-top: 3px;
}

.comparison-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .comparison-col {
    padding: 24px;
  }
}

/* Workflow Flowchart Grid */
.workflow {
  background-color: var(--bg-light);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.workflow-step-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.workflow-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 102, 241, 0.2);
}

.workflow-step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.workflow-step-card:hover .workflow-step-icon {
  background: var(--purple-gradient);
  color: white;
}

.workflow-step-icon svg {
  width: 24px;
  height: 24px;
}

.workflow-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.workflow-step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Connector line between steps */
.workflow-connector {
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 2px;
  background-color: rgba(99, 102, 241, 0.15);
  z-index: 1;
}

@media (max-width: 991px) {
  .workflow-steps {
    grid-template-columns: 1fr;
  }
  .workflow-connector {
    display: none;
  }
}

/* Dual Column Benefits */
.dual-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.benefit-block {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.benefit-block h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-block-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-block-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.benefit-block-item svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .dual-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .benefit-block {
    padding: 24px;
  }
}

/* ==========================================================================
   🌀 KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes float-offset {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-6px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   🔔 PREMIUM GLASSMORPHIC CONTACT MODAL & TOASTS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-card {
  background: linear-gradient(135deg, #0b0f19 0%, #1e1b4b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 480px;
  padding: 40px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.03);
}

.modal-close-btn:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modal-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-header p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-input-group {
  position: relative;
}

.modal-input {
  width: 100%;
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.modal-input:focus {
  border-color: var(--primary-light);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.25);
}

.modal-btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 20px -6px rgba(237, 93, 15, 0.4);
  border: none;
}

.modal-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(237, 93, 15, 0.6);
  opacity: 0.95;
}

.modal-btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #0b0f19 0%, #1e1b4b 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  color: #10b981;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Custom scrollbar for legal modal body */
#legal-modal-body::-webkit-scrollbar {
  width: 6px;
}
#legal-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}
#legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
#legal-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}
