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

:root {
  --primary-color: #0b0f19;
  --primary-dark: #070a10;
  --accent-green: #10b981;
  --accent-green-bright: #34d399;
  --accent-green-hover: #059669;
  --accent-blue: #2563eb;
  --accent-blue-hover: #1d4ed8;
  --bg-light: #030712;
  --bg-offset: #090d16;
  --bg-dark: #030712;
  --bg-dark-secondary: #070a10;
  --text-dark: #ffffff;
  --text-medium: #e2e8f0;
  --text-muted: #94a3b8;
  --text-light: #ffffff;
  --text-light-muted: #94a3b8;

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;

  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.15);
}

/* Base resets & typography */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-medium);
  background-color: var(--bg-light);
  /* Global high-tech grid design */
  background-image:
    radial-gradient(
      circle at 50% 15%,
      rgba(16, 185, 129, 0.06),
      transparent 55%
    ),
    radial-gradient(
      circle at 10% 75%,
      rgba(37, 99, 235, 0.04),
      transparent 45%
    ),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size:
    100% 100%,
    100% 100%,
    40px 40px,
    40px 40px;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  text-align: justify;
  text-justify: inter-word;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-light-muted {
  color: var(--text-medium) !important;
}

/* Global text justification rules */
.hero-subtitle,
.module-details-display p,
.plan-card p,
.tree-node-details p,
.details-features-list li span,
.lead {
  text-align: justify;
  text-justify: inter-word;
}

/* Subtítulos de seções e cartões centralizados */
.section-subtitle,
.text-center p,
.feature-card.text-center p,
.pricing-card-custom p {
  text-align: center !important;
}

.section-subtitle {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Preço e período dos cartões de planos */
.price-tag {
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 4px !important;
}

.price-period {
  white-space: nowrap !important;
  display: inline-block !important;
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
}

.bg-offset {
  background-color: var(--bg-offset);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size:
    40px 40px,
    40px 40px;
}

.bg-dark-section {
  background-color: var(--bg-dark-secondary);
}

.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
  color: var(--text-light);
}

.bg-dark-section p {
  color: var(--text-light-muted);
}

/* Section tags & headers */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.25rem);
  margin-bottom: 20px;
  color: #fff;
}

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

/* Glassmorphism Panel core styles */
.glass-panel-custom {
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  will-change: transform, box-shadow;
}

.glass-panel-custom:hover {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.08);
}

/* Buttons with glowing borders */
.btn-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  will-change: transform, box-shadow;
}

.btn-green {
  background-color: var(--accent-green);
  color: #fff;
  border: 1px solid var(--accent-green);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.btn-green:hover {
  background-color: var(--accent-green-hover);
  border-color: var(--accent-green-bright);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.btn-blue {
  background-color: var(--accent-blue);
  color: #fff;
  border: 1px solid var(--accent-blue);
}

.btn-blue:hover {
  background-color: var(--accent-blue-hover);
  border-color: #60a5fa;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.btn-outline-custom {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-custom:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(4, 9, 7, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.form-textarea {
  resize: vertical;
}

/* Sticky Navbar Overrides */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
  transition: var(--transition);
}

.navbar-custom.scrolled {
  padding: 12px 0;
  background-color: rgba(3, 7, 18, 0.98);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}

.navbar-custom .navbar-brand {
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.4rem;
}

.navbar-custom .logo-accent {
  color: var(--accent-green);
}

.navbar-custom .nav-link {
  color: var(--text-light-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-item.active .nav-link {
  color: #fff;
}

.navbar-custom .nav-item.active .nav-link {
  border-bottom: 2px solid var(--accent-green);
}

.navbar-toggler-custom {
  color: #fff;
  border: none;
  background: none;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-wrapper {
  padding-top: 160px;
  padding-bottom: 100px;
  background:
    radial-gradient(
      circle at top right,
      rgba(16, 185, 129, 0.08),
      transparent 45%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(37, 99, 235, 0.05),
      transparent 40%
    );
  background-color: var(--bg-dark);
  color: #fff;
}

.hero-wrapper h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  line-height: 1.25;
  margin-bottom: 24px;
  color: #fff;
}

.hero-wrapper p.lead {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.15rem);
  color: var(--text-light-muted);
  margin-bottom: 32px;
}

/* Interactive Telemetry Dashboard in Hero */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard-mockup {
  width: 100%;
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-align: left;
}

.console-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.console-title {
  color: var(--text-light-muted);
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-green);
  font-weight: 700;
  font-size: 0.65rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-green);
  border-radius: 50%;
  animation: nodePulse 1.5s infinite;
}

.console-body {
  padding: 16px;
  color: #fff;
}

.console-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.console-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 10px;
}

.console-stat-card h5 {
  font-size: 0.6rem;
  color: var(--text-light-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.console-stat-card .val {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.console-feed {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 12px;
  height: 110px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.console-line {
  color: var(--text-light-muted);
  font-size: 0.65rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.console-line.success {
  color: var(--accent-green-bright);
}

.console-line.info {
  color: var(--accent-blue);
}

/* Grid Dashboard Mockup for platform page */
.dashboard-mockup {
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-family: var(--font-mono);
}

.mockup-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-address {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 16px;
  border-radius: 4px;
  width: 250px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.mockup-body {
  padding: 24px;
  background: transparent;
  color: #f8fafc;
}

.mockup-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding-right: 20px;
}

.mockup-nav-item {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.mockup-nav-item.active {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  font-weight: 600;
}

.mockup-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.mockup-card h5 {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mockup-card .value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

/* Feature Cards (Home, Solutions, Sobre) */
.feature-card {
  padding: 40px;
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  will-change: transform, box-shadow;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.25);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-wrapper.green {
  background: rgba(16, 185, 129, 0.08);
  color: var(--accent-green);
}

.feature-icon-wrapper.blue {
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-blue);
}

/* Industry Cards in page Solucoes */
.industry-card {
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  will-change: transform, box-shadow;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.25);
}

.industry-card-img-wrapper {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.industry-card-img {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) grayscale(0.2);
  transition: var(--transition);
}

.industry-card:hover .industry-card-img {
  filter: brightness(0.8);
  transform: scale(1.06);
}

.industry-card-title {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
  z-index: 10;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.industry-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
  background: transparent;
}

.industry-card-body p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.industry-details-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.industry-card.expanded .industry-details-collapse {
  max-height: 500px;
}

.expand-indicator {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-blue);
  gap: 6px;
  margin-top: auto;
  transition: var(--transition);
}

.expand-indicator svg {
  transition: transform 0.3s ease;
}

.industry-card:hover .expand-indicator {
  color: var(--accent-green);
}

.industry-card:hover .expand-indicator svg {
  transform: translateX(4px);
}

.industry-card.expanded .expand-indicator {
  color: var(--accent-green);
}

.industry-card.expanded .expand-indicator svg {
  transform: rotate(180deg);
}

/* Team Profile Cards */
.team-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.25);
}

.team-img-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.05);
  background-size: cover;
  background-position: center;
}

.team-card h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Contact Page Form styling */
.contact-card-form {
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-floating-custom {
  position: relative;
  margin-bottom: 20px;
}

.form-control-custom {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  background-color: rgba(0, 0, 0, 0.3) !important;
  color: #fff !important;
  font-size: 1rem;
  min-height: 48px;
  transition: var(--transition);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--accent-green) !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3) !important;
}

.form-control-custom.error {
  border-color: #ef4444;
}

.form-control-custom.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-error-msg {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

/* Corporate Clients Section & Social Proof Section */
.client-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  filter: grayscale(1) opacity(0.3);
  transition: var(--transition);
}

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

.client-placeholder-logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-muted);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}

.social-proof-section {
  background-color: transparent;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.social-proof-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.social-proof-logo-item {
  font-weight: 800;
  font-size: 1.4rem;
  color: #475569;
  filter: grayscale(1) opacity(0.45);
  transition: var(--transition);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}

.social-proof-logo-item:hover {
  filter: grayscale(0) opacity(1);
}

.social-proof-logo-item.green:hover {
  color: var(--accent-green);
}

.social-proof-logo-item.blue:hover {
  color: var(--accent-blue);
}

/* Solutions Specific Hero Overlay Design */
.hero-solutions {
  padding-top: 170px;
  padding-bottom: 110px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.8) 100%),
    url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1200&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-solutions h1 {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.25;
}

.hero-solutions p.lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-light-muted);
}

.hero-mobile-cta {
  display: none;
}

/* 🌳 The Growth Tree Styling */
.growth-tree-section {
  background: rgba(9, 13, 22, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-md);
  padding: 50px 30px;
}

.tree-interactive-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.tree-hotspot {
  cursor: pointer;
  transition: var(--transition);
}

/* --- NEW CIRCUIT TREE STYLING --- */

.circuit-tree .trace-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  transition: all 0.4s ease;
}

.circuit-tree .node {
  fill: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.circuit-tree .cpu-core {
  fill: #1e293b;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1.5;
  transition: all 0.4s ease;
}

.circuit-tree .cpu-pin {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1.5;
  transition: all 0.4s ease;
}

.circuit-tree .cpu-dot {
  fill: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

/* 1. Raiz (Root - Green) */
.active-plan-root .part-root .trace-path,
.part-root:hover .trace-path {
  stroke: var(--accent-green) !important;
  filter: drop-shadow(0 0 6px var(--accent-green));
}
.active-plan-root .part-root .node,
.part-root:hover .node {
  fill: var(--accent-green-bright) !important;
  filter: drop-shadow(0 0 8px var(--accent-green));
}

/* 2. Tronco (Growth - Amber/Gold) */
.active-plan-growth .part-stem .trunk-path,
.part-stem:hover .trunk-path,
.active-plan-growth .part-stem .cpu-pin,
.part-stem:hover .cpu-pin {
  stroke: #f59e0b !important;
  filter: drop-shadow(0 0 6px #f59e0b);
}
.active-plan-growth .part-stem .cpu-core,
.part-stem:hover .cpu-core {
  stroke: #fbbf24 !important;
  fill: rgba(245, 158, 11, 0.15) !important;
}
.active-plan-growth .part-stem .cpu-dot,
.part-stem:hover .cpu-dot {
  fill: #fbbf24 !important;
}

/* 3. Galhos (Stem - Blue) */
.active-plan-stem .part-stem-branch .stem-path,
.part-stem-branch:hover .stem-path {
  stroke: var(--accent-blue) !important;
  filter: drop-shadow(0 0 6px var(--accent-blue));
}
.active-plan-stem .part-stem-branch .stem-node,
.part-stem-branch:hover .stem-node {
  fill: #60a5fa !important;
  filter: drop-shadow(0 0 8px var(--accent-blue));
}

/* 4. Copa (Canopy - Cyan) */
.active-plan-canopy .part-canopy .canopy-path,
.part-canopy:hover .canopy-path {
  stroke: #06b6d4 !important;
  filter: drop-shadow(0 0 6px #06b6d4);
}
.active-plan-canopy .part-canopy .canopy-node,
.part-canopy:hover .canopy-node {
  fill: #22d3ee !important;
  filter: drop-shadow(0 0 6px #06b6d4);
}

/* 5. Floresta (Forest - Purple/Pink) */
.active-plan-forest .part-forest .forest-path,
.part-forest:hover .forest-path {
  stroke: #c084fc !important;
  filter: drop-shadow(0 0 6px #a855f7);
}
.active-plan-forest .part-forest .forest-node,
.part-forest:hover .forest-node {
  fill: #e879f9 !important;
  filter: drop-shadow(0 0 6px #d946ef);
}

/* Data Pulse Animation */
@keyframes dataPulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
    filter: brightness(1.5);
  }
  100% {
    opacity: 0.3;
  }
}

.tree-interactive-svg.active-plan-root .part-root .node,
.tree-interactive-svg.active-plan-growth .part-stem .cpu-dot,
.tree-interactive-svg.active-plan-stem .part-stem-branch .stem-node,
.tree-interactive-svg.active-plan-canopy .part-canopy .canopy-node,
.tree-interactive-svg.active-plan-forest .part-forest .forest-node {
  animation: dataPulse 2s infinite ease-in-out;
}
.tree-interactive-svg .node:nth-child(odd),
.tree-interactive-svg .cpu-dot:nth-child(odd) {
  animation-delay: 0.5s;
}
.tree-interactive-svg .node:nth-child(even),
.tree-interactive-svg .cpu-dot:nth-child(even) {
  animation-delay: 1s;
}
.tree-interactive-svg .node:nth-child(3n) {
  animation-delay: 1.5s;
}

/* Tree Details Sidebar Box */
.tree-details-card {
  padding: 40px;
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transition:
    opacity 0.25s ease-in-out,
    transform 0.25s ease-in-out;
}

.tree-details-card.fade-transition {
  opacity: 0;
  transform: translateY(8px);
}

.details-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.details-badge.root {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green-bright);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.details-badge.growth {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.details-badge.stem {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.details-badge.canopy {
  background: rgba(6, 180, 212, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(6, 180, 212, 0.3);
}
.details-badge.forest {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.details-features-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.details-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.details-features-list li svg {
  flex-shrink: 0;
}

.tree-nav-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.tree-nav-btn {
  padding: 10px 20px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light-muted);
  cursor: pointer;
  transition: var(--transition);
}

.tree-nav-btn.active,
.tree-nav-btn:hover {
  background: var(--accent-green);
  color: #fff;
  border-color: var(--accent-green);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

/* Footer styling */
.footer-custom {
  background-color: var(--bg-dark-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
}

.footer-custom a {
  color: var(--text-light-muted);
  text-decoration: none;
  transition: var(--transition);
  padding: 8px 0;
  display: inline-block;
}

.footer-custom a:hover {
  color: #fff;
}

.footer-logo {
  font-weight: 800;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-logo .logo-accent {
  color: var(--accent-green);
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin: 40px 0 20px;
}

/* Alert notifications style */
.alert-overlay {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  max-width: 380px;
  animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
  }
  to {
    transform: translateX(0);
  }
}

/* SVG Line paths drawing animation */
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.draw-path-anim {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 4s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-mobile-cta {
    display: block;
    margin-top: 24px;
  }
  .hero-solutions h1 {
    font-size: 1.85rem;
  }
}

/* 💳 Pricing Page Styles */
.pricing-section-container {
  padding-top: 140px;
  padding-bottom: 100px;
  background: radial-gradient(
    circle at top,
    rgba(16, 185, 129, 0.05) 0%,
    transparent 60%
  );
}

.pricing-grid-custom {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 1399px) {
  .pricing-grid-custom {
    max-width: 100%;
  }
}

@media (max-width: 1200px) {
  .pricing-grid-custom {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .pricing-grid-custom {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}

.pricing-card-custom {
  position: relative;
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius-md);
  padding: 36px 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  transition: var(--transition);
  overflow: hidden;
}

.pricing-card-custom:hover {
  transform: translateY(-8px);
}

/* Individual card colors and glows */
/* Root (Green) */
.card-root {
  border: 1px solid rgba(16, 185, 129, 0.15);
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.03) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size:
    100% 100%,
    15px 15px,
    15px 15px;
}
.card-root:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

/* Stem (Blue) */
.card-stem {
  border: 2px solid rgba(59, 130, 246, 0.5);
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size:
    100% 100%,
    15px 15px,
    15px 15px;
  box-shadow: 0 15px 45px rgba(59, 130, 246, 0.06);
}
.card-stem:hover {
  border-color: rgba(59, 130, 246, 0.85);
  box-shadow: 0 15px 45px rgba(59, 130, 246, 0.25);
}

/* Growth (Amber) */
.card-growth {
  border: 1px solid rgba(245, 158, 11, 0.15);
  background-image:
    linear-gradient(rgba(245, 158, 11, 0.03) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size:
    100% 100%,
    15px 15px,
    15px 15px;
}
.card-growth:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

/* Canopy (Cyan) */
.card-canopy {
  border: 1px solid rgba(6, 180, 212, 0.15);
  background-image:
    linear-gradient(rgba(6, 180, 212, 0.03) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size:
    100% 100%,
    15px 15px,
    15px 15px;
}
.card-canopy:hover {
  border-color: rgba(6, 180, 212, 0.5);
  box-shadow: 0 10px 40px rgba(6, 180, 212, 0.15);
}

/* Forest (Gold) */
.card-forest {
  border: 1px solid rgba(234, 179, 8, 0.15);
  background-image:
    linear-gradient(rgba(234, 179, 8, 0.03) 0%, transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size:
    100% 100%,
    15px 15px,
    15px 15px;
}
.card-forest:hover {
  border-color: rgba(234, 179, 8, 0.5);
  box-shadow: 0 10px 40px rgba(234, 179, 8, 0.15);
}

/* Badge plans */
.plan-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-badge.root {
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.plan-badge.stem {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.plan-badge.growth {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.plan-badge.canopy {
  color: #22d3ee;
  background: rgba(6, 180, 212, 0.1);
  border: 1px solid rgba(6, 180, 212, 0.2);
}
.plan-badge.forest {
  color: #facc15;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

/* Illustrations */
.pricing-illustration {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pricing-illustration svg {
  max-height: 100%;
  max-width: 100%;
  filter: drop-shadow(0 0 8px currentColor);
}

/* Prices */
.price-tag {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card-custom p.small.text-muted.mb-0 {
  min-height: 65px;
}

/* Feature list */
.plan-features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.plan-features-list li {
  font-size: 0.85rem;
  color: var(--text-medium);
}

/* Buttons */
.btn-pricing {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 15px;
  cursor: pointer;
}

.btn-pricing.root {
  background: rgba(16, 185, 129, 0.08);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.btn-pricing.root:hover {
  background: var(--accent-green);
  color: #fff;
  border-color: var(--accent-green-bright);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.btn-pricing.stem {
  background: var(--accent-blue);
  color: #fff;
  border: 1px solid var(--accent-blue);
}
.btn-pricing.stem:hover {
  background: var(--accent-blue-hover);
  border-color: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.btn-pricing.growth {
  background: rgba(245, 158, 11, 0.08);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}
.btn-pricing.growth:hover {
  background: #d97706;
  color: #fff;
  border-color: #fbbf24;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.btn-pricing.canopy {
  background: rgba(6, 180, 212, 0.08);
  color: #22d3ee;
  border: 1px solid rgba(6, 180, 212, 0.3);
}
.btn-pricing.canopy:hover {
  background: #0891b2;
  color: #fff;
  border-color: #22d3ee;
  box-shadow: 0 0 15px rgba(6, 180, 212, 0.4);
}

.btn-pricing.forest {
  background: rgba(234, 179, 8, 0.08);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.3);
}
.btn-pricing.forest:hover {
  background: #ca8a04;
  color: #fff;
  border-color: #facc15;
  box-shadow: 0 0 15px rgba(234, 179, 8, 0.4);
}

/* Captions */
.card-caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 12px;
}

.card-sub-footer {
  font-size: 0.65rem;
  color: var(--text-light-muted);
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 🎛️ Platform Module Explorer Styling */
.module-nav-sidebar {
  background: rgba(9, 13, 22, 0.45);
  padding: 15px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 185, 129, 0.3) rgba(255, 255, 255, 0.02);
}

/* Custom Scrollbar Styling */
.module-nav-sidebar::-webkit-scrollbar {
  width: 5px;
}
.module-nav-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}
.module-nav-sidebar::-webkit-scrollbar-thumb {
  background: rgba(16, 185, 129, 0.3);
  border-radius: 4px;
}
.module-nav-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

.module-nav-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  min-height: 48px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text-light-muted);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
}

.module-nav-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #fff;
}

.module-nav-btn.active {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--accent-green-bright);
}

.module-nav-btn .module-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.5;
}

.module-nav-btn.active .module-num {
  opacity: 1;
}

.module-display-card {
  background: rgba(9, 13, 22, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 40px;
  min-height: 480px;
  transition:
    opacity 0.25s ease-in-out,
    transform 0.25s ease-in-out;
}

/* Accent badges for display panel */
.details-badge.manager {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.details-badge.datalake {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(34, 211, 238, 0.3);
}
.details-badge.docs {
  background: rgba(6, 180, 212, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(6, 180, 212, 0.3);
}
.details-badge.supply {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green-bright);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.details-badge.hr {
  background: rgba(234, 179, 8, 0.15);
  color: #facc15;
  border: 1px solid rgba(234, 179, 8, 0.3);
}
.details-badge.crm {
  background: rgba(244, 63, 94, 0.15);
  color: #fda4af;
  border: 1px solid rgba(244, 63, 94, 0.3);
}
.details-badge.billing {
  background: rgba(168, 85, 247, 0.15);
  color: #d8b4fe;
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.details-badge.cx {
  background: rgba(236, 72, 153, 0.15);
  color: #fbcfe8;
  border: 1px solid rgba(236, 72, 153, 0.3);
}
.details-badge.safety {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.details-badge.legal {
  background: rgba(99, 102, 241, 0.15);
  color: #c7d2fe;
  border: 1px solid rgba(99, 102, 241, 0.3);
}
.details-badge.esg {
  background: rgba(20, 184, 166, 0.15);
  color: #99f6e4;
  border: 1px solid rgba(20, 184, 166, 0.3);
}
.details-badge.master {
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.3);
}
.details-badge.alerts {
  background: rgba(249, 115, 22, 0.15);
  color: #fdba74;
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.details-badge.stock {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.details-badge.capex {
  background: rgba(20, 184, 166, 0.15);
  color: #22d3ee;
  border: 1px solid rgba(20, 184, 166, 0.3);
}
.details-badge.meets {
  background: rgba(217, 70, 239, 0.15);
  color: #f5d0fe;
  border: 1px solid rgba(217, 70, 239, 0.3);
}

.sidebar-pillar-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  opacity: 0.9;
  padding: 6px 10px;
  background: rgba(16, 185, 129, 0.04);
  border-left: 3px solid var(--accent-green);
  border-radius: 0 4px 4px 0;
  margin-top: 15px;
  margin-bottom: 8px;
}

/* Premium Language Selector */
.lang-selector-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light-muted) !important;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lang-selector-btn:hover,
.lang-selector-btn:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff !important;
}

.lang-selector-btn::after {
  display: none !important; /* Remove bootstrap default caret */
}

.dropdown-menu-lang {
  background: rgba(7, 10, 16, 0.95) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5) !important;
  padding: 6px 0 !important;
  min-width: 130px !important;
  margin-top: 8px !important;
}

.dropdown-menu-lang .dropdown-item {
  color: var(--text-light-muted) !important;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-menu-lang .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
}

.dropdown-menu-lang .dropdown-item.active {
  background: rgba(16, 185, 129, 0.1) !important;
  color: var(--accent-green) !important;
  font-weight: 600;
}

.max-width-md {
  max-width: 800px;
}

p.max-width-md {
  text-align: justify;
}
