/* =========================
   BASE
========================= */

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: linear-gradient(180deg, #000000, #0f172a);
  color: #ffffff;
}

/* =========================
   CONTAINER
========================= */

.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

/* =========================
   PERFIL (FOTO TIKTOK)
========================= */

.profile {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.profile-pic {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid #22c55e;
  margin-bottom: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.15);
}

.profile h1 {
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: -0.5px;
}

.profile p {
  font-size: 0.9rem;
  color: #a1a1aa;
}

/* =========================
   CARD PADRÃO
========================= */

.card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #111827;
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.card:hover {
  transform: scale(1.02);
  background: #1f2937;
}

/* =========================
   IMAGEM DO PRODUTO
========================= */

.thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: #000;
  flex-shrink: 0;
}

/* =========================
   INFORMAÇÕES DO CARD
========================= */

.info {
  flex: 1;
}

.info h2 {
  font-size: 0.95rem;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.info p {
  font-size: 0.8rem;
  margin: 0 0 8px 0;
  color: #d1d5db;
}

.info a {
  display: inline-block;
  padding: 6px 12px;
  background: #22c55e;
  color: #022c22;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
  animation: bounce 0.9s infinite; 
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.info a::after {
  content: " ➡️";
  font-weight: 900;
}

.info a:hover {
  background: #16a34a;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.45);
}

/* =========================
   CATEGORIA (ATTACK ON TITAN)
========================= */

.category {
  cursor: pointer;
}

.cta {
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
}

/* =========================
   SUBCATEGORIA
========================= */

.subcategory {
  display: none;
  margin-bottom: 16px;
}

.subcategory.open {
  display: block;
}

.subcard {
  position: relative;
  background: linear-gradient(145deg, #020617, #020617);
  border: 1px solid rgba(255,255,255,0.04);
}

.subcard::before {
  position: absolute;
  top: -6px;
  left: 12px;
  font-size: 0.55rem;
  font-weight: 800;
  background: #22c55e;
  color: #022c22;
  padding: 2px 6px;
  border-radius: 999px;
}

/* =========================
   FOOTER
========================= */

footer {
  text-align: center;
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 24px;
}

.highlight {
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: linear-gradient(145deg, #0b1220, #020617);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
  background: #22c55e;
  color: #022c22;
  animation: bounce 1s infinite;
}

.badge::after {
  font-weight: 900;
}

.badge:hover {
  background: #16a34a;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.45);
}

.category:hover .cta {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}

