/* Seção Sobre Nós */
/* Seção Sobre Nós */
.about-us {
  padding: 60px 20px;
  text-align: center;
  background-color: #f1f1f1;
  border-bottom: 3px solid #ddd;
}

.about-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-us .about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  text-align: left;
}

/* Inverte a ordem em telas maiores */
.about-us .about-content.reverse-order {
  flex-direction: column-reverse; /* Coloca a imagem acima do texto */
}

/* Texto da seção */
.about-us .text {
  flex: 1;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* Imagem da seção */
.about-us .image {
  flex: 1;
  text-align: center;
}

.about-us .image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  /* No caso de telas menores, imagem vai para o lado da descrição */
  .about-us .about-content {
    flex-direction: column; /* Coloca imagem e texto em colunas */
  }
}

@media (min-width: 769px) {
  /* Em telas maiores (acima de 768px), a imagem fica acima do texto */
  .about-us .about-content.reverse-order {
    flex-direction: column-reverse; /* Inverte para imagem acima do texto */
  }
}


/* Seção Equipe */
.team-grid {
  padding: 60px 20px;
  background-color: #fff;
}

.team-grid .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.card {
  width: 200px;
  height: 250px; /* Aumentando um pouco para mais informações */
  background-color: #f4f4f4;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  margin: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.card p {
  font-size: 14px;
  color: #777;
}

.card:hover {
  transform: translateY(-10px); /* Efeito de hover para levantar o card */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}



/* Rodapé */
footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
}

footer p {
  margin: 0;
}

/* Efeito no rodapé */
footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}
