
body {
  margin: 0;
  font-family: sans-serif;
}
@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 16px;
  text-align: center;
}
.logo {
  width: 200px;
  margin-top: 20px;
}
.icones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto 20px auto;
  padding: 0 10px;
  box-sizing: border-box;
}
.icones a {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  display: inline-block;
}
.whatsapp { background: #25D366; }
.instagram { background: #E1306C; }
.facebook { background: #1877F2; }
.youtube { background: #FF0000; }
.tiktok { background: #000000; }
.email { background: #D44638; }
.android { background: #A4C639; }
.iphone { background: #007AFF; }
.multi { background: #FFA500; }

.botao {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 5px;
  background: #ff0066;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}
footer {
  margin-top: 30px;
  font-size: 0.9em;
}
