:root {
  --bg-dark: #000000;
  --bg-card: #111;
  --bg-icon: #2f2e2e;
  --text-light: #f4f5f8;
  --accent: #fd4f00;
  --accent-hover: #d8681d;
  --card-hover: #181818;
  --section-bg: #111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  padding: 0 2rem 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.back-button {
  padding: 1.5rem 0 1rem 0;
}

.go-back {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background-color: #222;
}

.go-back i {
  margin-right: 0.5rem;
}

.go-back:hover {
  color: var(--accent);
  background-color: #333;
}

.business-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  margin-bottom: 3rem;
  text-align: center;
}

.business-icon {
  width: 120px;
  height: 120px;
  background-color: var(--bg-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.business-icon i {
  font-size: 60px;
  color: var(--text-light);
}

.business-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.business-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.business-tag {
  background-color: var(--accent);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
}

.business-investment {
  background-color: #222;
  color: #59b473;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
}

.business-description {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.9;
  text-align: center;
}

.content-section {
  background-color: var(--section-bg);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 1rem;
  color: var(--accent);
}

.section-content {
  color: var(--text-light);
  opacity: 0.85;
  line-height: 1.7;
}

.section-content p {
  margin-bottom: 1rem;
}

.section-content ul,
.section-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.section-content li {
  margin-bottom: 0.5rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  background-color: #222;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-light);
  opacity: 0.8;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content {
  padding-top: 0.5rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.step-description {
  color: var(--text-light);
  opacity: 0.85;
}

.related-businesses {
  margin-top: 4rem;
}

.related-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}

.card-icon-container {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card-hover);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card-icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-icon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-icon i {
  font-size: 36px;
  color: var(--text-light);
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.card-description {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: center;
  min-height: 4.5rem;
}
.card-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.tag {
  background-color: var(--accent);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.investment {
  color: #59b473;
  font-weight: 600;
}

.saiba-mais {
  display: inline-block;
  color: var(--text-light);
  font-weight: 500;
  text-decoration: none;
  margin-top: 1rem;
  transition: color 0.2s ease;
}

.saiba-mais:hover {
  color: var(--accent);
  text-decoration: underline;
}

.cta-section {
  text-align: center;
  margin: 4rem 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--accent-hover);
}

.footer {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid #222;
  color: var(--text-light);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .business-header {
    padding: 1.5rem 0;
  }

  .business-title {
    font-size: 2rem;
  }

  .content-section {
    padding: 1.5rem;
  }

  .step-item {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 0.5rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}
