body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  color: #333;
}
.topnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /*Quebra de linhas*/
  background-color: #0465aa;
  padding: 10px 20px;
}
.topnav a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.topnav a:hover {
  background-color: rgba(255,255,255,0.2);
  border-radius: 8px;
}
.topnav .active {
  background-color: #023e73;
  border-radius: 8px;
}
.logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0465aa;
}
main {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}
#Sobre {
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0465aa;
}
.texto {
  font-size: 18px;
  line-height: 1.6;
}
.card {
  margin-top: 30px;
  padding: 20px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

figure {
  margin: 0;
}

.img-redonda {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #0465aa;
}
figcaption {
  font-style: italic;
  font-size: 14px;
  color: #777;
}
@media (max-width: 600px) {
  .title {
    font-size: 24px;
  }
  .texto {
    font-size: 16px;
  }
  .topnav {
    justify-content: center;
  }
  .card {
    gap: 20px;
  }
  .img-redonda {
    width: 100px;
    height: 100px;
  }
}