body {
  margin: 0;
  padding: 0;
  background-image: url(fundoo.png);
  font-family: 'Arial', sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
}

/* Container para a página sobre */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* Logo maior e estilizado */
.logo {
  width: 250px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

/* Imagem grande do site */
.site-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  margin: 30px 0;
}

/* Estilo para a seção de informações de contato */
.info {
  text-align: left;
  margin: 30px 0;
}

.info h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.info p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

/* Estilo para links de redes sociais */
.social-links {
  margin: 30px 0;
}

.social-links a {
  margin: 0 10px;
}

.social-links img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.1);
}

/* Estilo para a seção "Sobre o Site" */
.about-section {
  background-image: url(fundoo.png);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.about-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.2em;
  line-height: 1.6;
}

/* Rodapé */
footer {
  margin-top: 30px;
  font-size: 1em;
  color: #888;
}