.sobre-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 300px;
  gap: 60px;
  background-color: #fff;
  color: #111;
}

/* Texto */
.sobre-texto {
  flex: 1;
}

.sobre-texto h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.sobre-texto a {
  color: #b88b38;
  text-decoration: none;
  font-weight: 500;
}
.sobre-texto b {
  color: #b88b38;
  text-decoration: none;
  font-weight: 500;
}

.sobre-texto a:hover {
  text-decoration: underline;
}

.sobre-texto button {
  background-color: #b89c63;
  color: #fff;
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.sobre-texto button:hover {
  background-color: #a98b55;
}

/* Imagem */
.sobre-imagem {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sobre-imagem img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.sobre-texto-2 {
  background-color: #f4f4f4;
  padding: 80px 300px;
  color: #111;
}

/* ===== Cabeçalho da seção ===== */
.sobre-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.sobre-header .titulo h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.sobre-header .descricao {
  flex: 1;
  max-width: 700px;
}

.sobre-header .descricao p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* ===== Cards ===== */
.sobre-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border: 3px solid #b89c63;
  padding: 40px 30px;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  background-color: #b88b38;
  transform: translateY(-6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.card .numero {
  border: 3px solid #b89c63;
  color: #b89c63;

  font-size: 2rem;
  font-weight: 700;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.card:hover .numero {
  border-color: #fff;
  color: #fff;
}
.card:hover h3,p{
  color: #fff;
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsividade ===== */
@media (max-width: 950px) {
  .sobre-texto-2 {
    padding: 50px 50px;
  }

  .sobre-header {
    flex-direction: column;
  }

  .sobre-header .titulo h2 {
    font-size: 2.2rem;
  }

  .sobre-cards {
    flex-direction: column;
    gap: 25px;
  }
}


/* Responsividade */
@media (max-width: 950px) {
  .sobre-container {
    flex-direction: column;
    padding: 40px 50px;
  }

  .sobre-imagem {
    margin-top: 30px;
  }

  .sobre-texto h1 {
    font-size: 2.2rem;
  }
}
