/* Estilos específicos da página Sobre. Mantém o CSS global livre de regras exclusivas desta página. */
.about-hero {
  background-image: radial-gradient(circle at 78% 24%, rgba(82, 193, 64, .20), transparent 30%), linear-gradient(115deg, #041404 0%, #0a2408 48%, #12330d 100%);
}
.about-page .story-section {
  padding-top: 88px;
}
.about-page .story-grid,
.about-page .offer-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.about-page .story-text {
  display: grid;
  gap: 16px;
}
.about-page .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.about-page .pillars-grid article,
.about-page .solution-list a,
.about-page .cta-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(16, 39, 13, .07);
}
.about-page .pillars-grid article {
  padding: 28px;
}
.about-page .pillars-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 900;
}
.about-page .offer-section {
  background: var(--bg);
}
.about-page .solution-list {
  display: grid;
  gap: 14px;
}
.about-page .solution-list a {
  display: grid;
  gap: 6px;
  padding: 22px;
  transition: .25s ease;
}
.about-page .solution-list a:hover {
  transform: translateY(-4px);
  border-color: rgba(82, 193, 64, .35);
}
.about-page .solution-list strong {
  color: var(--title);
}
.about-page .cta-box {
  max-width: 860px;
  text-align: center;
  padding: 44px;
}
.about-page .cta-box .btn {
  margin-top: 22px;
}
@media (max-width: 900px) {
  .about-page .story-grid,
  .about-page .offer-grid,
  .about-page .pillars-grid {
    grid-template-columns: 1fr;
  }
}
