/* Seção geral "Sobre Nós" */
.about-section {
  background: transparent;
}

/* Layout em duas colunas:
   esquerda = texto
   direita = bullets/cards */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: 28px;
}

/* Garante que o conteúdo textual não force quebra estranha */
.about-content {
  min-width: 0;
}

/* Limita a largura do título principal */
.about-content h2 {
  max-width: 820px;
}

/* Texto de destaque/logo abaixo do título */
.about-lead {
  margin: 20px 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.8;
}

/* Parágrafos do lado esquerdo */
.about-content p {
  max-width: 760px;
  margin-bottom: 16px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* Espaçamento do badge "Sobre Nós" */
.about-content .badge {
  margin-top: 48px;
  margin-bottom: 28px;
}

/* Coluna da direita com os cards */
.about-side {
  display: grid;
  gap: 16px;
  margin-top: 120px;
}

/* Card individual de cada bullet */
.about-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  cursor: pointer;
}

/* Efeito ao passar o mouse */
.about-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(22, 112, 214, 0.22);
  box-shadow: 0 18px 40px rgba(22, 112, 214, 0.10);
}

/* Barra azul lateral */
.about-line {
  display: block;
  min-height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(22, 112, 214, 0.95),
    rgba(22, 112, 214, 0.15)
  );
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

/* Ao passar o mouse no card,
   a barra cresce um pouco e ganha brilho */
.about-item:hover .about-line {
  transform: scaleY(1.06);
  box-shadow: 0 0 18px rgba(22, 112, 214, 0.22);
  background: linear-gradient(
    180deg,
    rgba(22, 112, 214, 1),
    rgba(29, 78, 137, 0.35)
  );
}

/* Título de cada card */
.about-item h3 {
  margin-bottom: 6px;
  transition: color 0.28s ease;
}

/* Título muda para azul no hover */
.about-item:hover h3 {
  color: var(--accent);
}

/* Texto descritivo de cada card */
.about-item p {
  color: var(--muted);
  line-height: 1.7;
  transition: color 0.28s ease;
}

/* Texto ganha um pouco mais de contraste no hover */
.about-item:hover p {
  color: var(--text-soft);
}

/* HERO DA PÁGINA SOBRE */
.page-hero {
  background: transparent;
  border-bottom: 1px solid rgba(142, 148, 146, 0.14);
}

.page-hero::after {
  display: none;
}

.page-hero-inner {
  min-height: 420px;
  display: block;
  padding: 56px 0;
  position: relative;
  z-index: 1;
}

/* Badge do hero */
.page-hero-inner .badge {
  display: inline-flex;
  margin-bottom: 36px;
}

/* Título principal do hero */
.page-hero-inner h1 {
  max-width: 1024px;
  margin: 0;
  font-size: clamp(38px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

/* Texto de apoio do hero */
.page-hero-inner .lead {
  max-width: 900px;
  margin-top: 24px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
}

/* =========================
   RESPONSIVO - TABLET
   ========================= */
@media (max-width: 980px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-side {
    margin-top: 12px;
  }

  .page-hero-inner {
    min-height: auto;
    padding: 46px 0;
  }

  .page-hero-inner h1 {
    max-width: 100%;
  }

  .page-hero-inner .lead {
    max-width: 100%;
  }
}

/* =========================
   RESPONSIVO - MOBILE
   ========================= */
@media (max-width: 760px) {
  .about-lead {
    font-size: 16px;
  }

  .about-item {
    padding: 18px;
    border-radius: 20px;
  }

  .page-hero-inner {
    padding: 38px 0;
  }

  .page-hero-inner .badge {
    margin-bottom: 18px;
  }

  .page-hero-inner h1 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.1;
  }

  .page-hero-inner .lead {
    margin-top: 18px;
    font-size: 16px;
  }
}