.sobre-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.sobre-container {
  max-width: 1300px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.sobre-container h1,
h2 {
  font-size: 36px;
  color: #003087;
  margin-bottom: 20px;
  text-align: center;
}

.sobre-container p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

.sobre-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.texto-sobre {
  flex: 1 1 60%;
}

.imagem-mascote {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imagem-mascote img {
  max-width: 100%;
  height: auto;
}

@keyframes subirMascote {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.imagem-mascote img {
  width: 300px;
  animation: subirMascote 1s ease-out forwards;
}