* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

/* HEADER */
.header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  overflow: hidden;

  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.logo img {
  width: 80%;
}

.header h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.header p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* SOCIAL */
.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.socials a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.socials a:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.1);
}

.socials img {
  width: 20px;
}

.search-box {
  margin-top: 25px;
}

.search-box input {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  outline: none;

  background: rgba(255,255,255,0.05);
  color: white;

  font-size: 14px;
}
.search-box input::placeholder {
  color: #94a3b8;
}

.no-results {
  text-align: center;
  margin-top: 20px;
  color: #94a3b8;
  font-size: 14px;
  display: none;
}

/* PRODUTOS */
.product {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  padding: 14px;
  border-radius: 18px;
  text-decoration: none;
  color: white;
  transition: 0.2s ease

  border: 1px solid rgba(255,255,255,0.05);

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-4px) scale(1.01);
}

.product img {
  width: 65px;
  height: 65px;
  border-radius: 12px;
}

.products {
  margin-top: 35px;
  gap: 18px;
}

.text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}