/* ==========================================
   SEÇÃO HERO
========================================== */
.sobre-hero {
  position: relative;
  background: linear-gradient(rgba(27, 40, 62, 0.7), rgba(27, 40, 62, 0.7)),
              url('qual-melhor-inteligencia-artificial-advocacia.jpg') center/cover no-repeat;
  color: var(--branco);
  text-align: center;
  padding: 7rem 1rem;
}

.sobre-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.sobre-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ==========================================
   CONTEÚDO SOBRE
========================================== */
.sobre {
  background: var(--branco);
  padding: 5rem 1rem;
  text-align: center;
}

.sobre h2 {
  color: var(--azul-escuro);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.sobre .intro {
  max-width: 850px;
  margin: 0 auto 3rem;
  color: var(--azul-cinza);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Cards Missão, Visão e Valores */
.sobre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}

.sobre-card {
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 1s forwards;
}

.sobre-card h3 {
  color: var(--bege);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.sobre-card ul {
  list-style: none;
  padding: 0;
}

.sobre-card li {
  margin-bottom: 0.5rem;
}

.sobre-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Informações */
.sobre-info {
  max-width: 850px;
  margin: 0 auto;
  color: var(--azul-cinza);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: left;
}

.sobre-info h3 {
  color: var(--azul-escuro);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* ==========================================
   ANIMAÇÕES
========================================== */
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

/* ==========================================
   RESPONSIVIDADE
========================================== */
@media (max-width: 768px) {
  .sobre-hero h1 {
    font-size: 2rem;
  }

  .sobre-info {
    text-align: center;
  }
}
