body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  text-align: center;
  padding: 15px;
  background: #232323;
  color: white;
}

header p {
  font-size: 14px;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
}

header h1 a {
  margin: 0;
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
}

header input {
  margin-top: 0px;
  padding: 10px;
  width: 80%;
  max-width: 400px;
  border-radius: 6px;
  border: none;
  outline: none;
}

#results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px;
  gap: 20px;
}

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  width: 250px;
  padding: 15px;
  text-align: center;
}

.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.card h2 {
  margin: 10px 0 5px;
}

.links a {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
  border-radius: 4px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

/* Cores por rede social */
.links a.instagram {
  background: #E1306C; /* Rosa Instagram */
}
.links a.instagram:hover {
  background: #C13584;
}

.links a.facebook {
  background: #1877F2; /* Azul Facebook */
}
.links a.facebook:hover {
  background: #145DBF;
}

.links a.twitter {
  background: #1DA1F2; /* Azul Twitter */
}
.links a.twitter:hover {
  background: #0D95E8;
}

.links a.spotify {
  background: #009933; /* Azul Twitter */
}
.links a.spotify:hover {
  background: #009933;
}

.links a.tiktok {
  background: #333; /* Azul LinkedIn */
}
.links a.tiktok:hover {
  background: #333;
}

.links a.youtube {
  background: #FF0000; /* Vermelho YouTube */
}
.links a.youtube:hover {
  background: #CC0000;
}

