/* 🌐 Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
  color: rgb(0, 0, 0);
}

/* 🧭 Cabeçalho */
header {
  background-color: orange;
  color: white;
  text-align: center;
  padding: 15px;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

nav {
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  color: white;
  margin: 0 12px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* ✍️ Título da seção */
h2 {
  text-align: center;
  margin: 30px 0 10px;
  font-size: 1.8rem;
  color: #444;
}

/* 📝 Texto principal */
.texto {
  padding: 0 5%;
  line-height: 1.6;
  max-width: 800px;
  margin: auto;
  text-align: justify;
}

.texto p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* 🖼 Imagens */
.texto img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 15px auto;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

/* 🔗 Redes sociais */
#redesSociais {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.icone {
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
}

.icone:hover {
  transform: scale(1.1);
}

/* 📱 Responsividade */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 1.5rem;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav a {
    margin: 6px 0;
  }

  h2 {
    font-size: 1.5rem;
  }

  .texto {
    padding: 0 3%;
    font-size: 1rem;
  }
}
