body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f0f0f0;
  color: #0e2a47;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.logos img {
  max-width: 200px;
  height: auto;
}

h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.mensagem {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
}

.mensagem a {
  color: #0e2a47;
  font-weight: bold;
  text-decoration: none;
}

.mensagem a:hover {
  text-decoration: underline;
}

.redes-sociais {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.redes-sociais img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
}

.redes-sociais img:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 600px) {
  .logos img {
    max-width: 150px;
  }

  .redes-sociais {
    gap: 20px;
  }

  .redes-sociais img {
    width: 32px;
    height: 32px;
  }
}


@media (max-width: 600px) {
  .logos {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .logos img {
    max-width: 120px;
  }
}