/* === BLOCO SOBRE NÓS === */
.sobre-nos {
  background-color: #141414;
  color: #fff;
  padding: 60px 20px;
}

.container-sobre {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.imagem-sobre {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.imagem-sobre img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.imagem-sobre:hover img {
  transform: scale(1.05);
}

.texto-sobre {
  flex: 1;
  font-family: 'Poppins', sans-serif;
}

.texto-sobre h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.texto-sobre p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ccc;
}



@media (max-width: 768px) {
  .container-sobre {
    flex-direction: column;
  }

  .texto-sobre h2 {
    font-size: 20px;
  }

  .texto-sobre p {
    font-size: 15px;
  }

  .container-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    margin-bottom: 20px;
  }
}
