/* landing-page/css/ecosystem.css */
#ecossistema {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.ecosystem__eyebrow {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 48px;
}

/* Horizontal logo row with gold dividers */
.ecosystem__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.ecosystem__brand {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.ecosystem__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: default;
  display: block;
}

.ecosystem__brand-name:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.ecosystem__brand-name--ai {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ecosystem__brand-name--ai em {
  font-style: italic;
  color: var(--color-accent);
}

.ecosystem__divider {
  width: 1px;
  height: 64px;
  background: var(--color-accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.ecosystem__logo-img {
  max-width: 160px;
  height: auto;
  display: inline-block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.ecosystem__logo-img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .ecosystem__row {
    flex-direction: column;
    gap: 0;
  }
  .ecosystem__divider {
    width: 64px;
    height: 1px;
    margin: 4px 0;
  }
  .ecosystem__brand {
    padding: 16px 0;
  }
}
