    /* Estilos gerais da página Sobre */
.about-intro {
  padding: 40px 20px;
  text-align: center;
  background-color: #f39d38; /* Define a cor de fundo da seção de introdução */
  /*background-image: url('images/hero-background.jpg'); /* Caminho para a imagem de fundo */
  /*background-size: cover; /* Faz com que a imagem cubra toda a área */
  /*background-position: center; /* Centraliza a imagem no fundo */
  /*background-repeat: no-repeat; /* Evita que a imagem se repita */
  /*color: var(--cor-fundo);
  position: relative; /* Garante que elementos posicionados dentro possam ser ajustados */
}

.about-intro h1 {
  font-size: 36px;
  color: #ffffff;
}

.about-intro p {
  font-size: 18px;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature-section {
  padding: 40px 20px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
}

.feature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1000px;
  gap: 20px;
}

.feature-text {
  flex: 1;
  min-width: 300px;
}

.feature-text h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.feature-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.5;
}

.feature-text ul {
  list-style: disc;
  padding-left: 20px;
  color: #555;
}

.feature-text ul li {
  margin-bottom: 8px;
}

.feature-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.feature-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.feature-image2 {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.feature-image2 img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

