* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #fafafa;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  width: 100%;
}

.logo {
  max-width: 300px;
  width: 100%;
}

.botoes-header {
  display: flex;
  gap: 30px;
  font-size: 20px;
  font-weight: 600;
  color: #eb1405;
  cursor: pointer;
  text-decoration: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.botoes-header a {
  color: #eb1405;
  text-decoration: none;
}

.botoes-header a:hover {
  color: #9d1200;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  margin: auto;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  box-sizing: border-box;
  flex: 1;
}

ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

section {
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}

section:last-child {
  border-bottom: none;
}

h2 {
  color: #eb1405;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.8rem;
  border-left: 6px solid #eb1405;
  padding-left: 12px;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  margin-top: auto;
}

.social-icons img {
  width: 32px;
  height: 32px;
  margin: 0 8px;
  vertical-align: middle;
  transition: opacity 0.3s ease;
  background-color: transparent;
  display: inline-block;
}

.social-icons img:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    max-width: 220px;
    margin-bottom: 10px;
  }

  .botoes-header {
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .container {
    padding: 10px;
    width: 95%;
    margin: auto;
  }
}
