*{margin:0;padding:0;box-sizing:border-box}

body{
  font-family: var(--font, sans-serif);
  background:#0f1115;
  color:white;
}

/* HEADER COM FOTO */

.header{
  position:relative;
  height:360px;
  overflow:hidden;
}

.header-bg{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  filter:brightness(.6);
}

.header-overlay{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.header h1{
  font-size:28px;
  margin-bottom:8px;
}

.header p{
  opacity:.9;
  margin-bottom:14px;
}

/* DESCRIÇÃO-TOPO (ENTRE O BOTÂO E O HEADER ) */
.descricao-topo{
  text-align:center;
  padding:20px 20px 0;
  max-width:800px;
  margin:0 auto;
  transform:translateY(-45px); /* sobe visualmente */
  font-size:15px;
  opacity:.85;
}
/*
.descricao-topo{
  text-align:center;
  padding:20px 20px 0;
  max-width:800px;
  margin:0 auto; 
  font-size:15px;
  opacity:.85;
}*/

/* ICONES */

.socials{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.socials a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(6px);
  transition:.25s;
}

.socials a:hover{
  transform:scale(1.15);
  background:rgba(255,255,255,.3);
}

.socials img{
  width:22px;
  height:22px;
}

/* CURVA */

.curve{
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:120px;
  background:#0f1115;
  border-top-left-radius:100% 60px;
  border-top-right-radius:100% 60px;
}

/* CATEGORIA */

.categoria{
  margin:40px 20px 10px;
  font-weight:bold;
  border-left:4px solid #ffcc00;
  padding-left:10px;
}

/* SCROLL LINKS */

.scroll{
  display:flex;
  overflow-x:auto;
  gap:18px;
  padding:20px;
}

/* CARD */

.card{
  min-width:230px;
  background:linear-gradient(145deg,#1a1d26,#11141b);
  border-radius:18px;
  padding:14px;
  box-shadow:0 0 18px rgba(0,0,0,.5);
  transition:.25s;
}

.card:hover{
  transform:translateY(-6px) scale(1.02);
}

.card img{
  width:100%;
  height:130px;
  border-radius:12px;
  object-fit:cover;
}

.card h3{text-align:center;margin:10px 0 6px}
.card p{text-align:center;font-size:14px;opacity:.8;margin-bottom:10px}

.tags{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:6px;
}

.tag{
  background:#ffcc00;
  color:black;
  font-size:12px;
  padding:3px 8px;
  border-radius:8px;
}



/* LINHA SEPARADORA ( NOVO DAQUI PRA BAIXO ) */
.sep{
  height:1px;
  background:rgba(255,255,255,.12);
  margin:8px 0;
}

/* BRILHOS */

.card.vip{
  box-shadow:0 0 12px rgba(255,215,0,.6), 0 0 24px rgba(255,215,0,.25);
}

.card.oficial{
  box-shadow:0 0 10px rgba(255,255,255,.35);
}

/* FILTROS */

/* DROPDOWNS */

.filtros{
  display:flex;
  justify-content:center;
  gap:14px;
  padding:20px 10px 0;
}

.dropdown{
  position:relative;
}

.dropbtn{
  padding:8px 18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.05);
  cursor:pointer;
  transition:.25s;
}

.dropbtn:hover{
  transform:translateY(-2px);
}

.dropdown-content{
  position:absolute;
  top:44px;
  left:0;
  min-width:220px;
  background:#11141b;
  border-radius:14px;
  padding:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.5);
  display:none;
  flex-direction:column;
  gap:6px;
  z-index:10;
}

.dropdown.open .dropdown-content{
  display:flex;
  animation:fade .2s ease;
}

@keyframes fade{
  from{opacity:0;transform:translateY(-5px)}
  to{opacity:1;transform:translateY(0)}
}

.opt{
  padding:6px 10px;
  border-radius:10px;
  cursor:pointer;
  font-size:13px;
  transition:.2s;
}

.opt:hover{background:rgba(255,255,255,.08)}

.opt.ativo{
  background:#ffcc00;
  color:black;
}

/* APENAS ADICIONANDO TESTE */
/* ============================= */
/* DESTAQUE DO CONTEÚDO INTERNO */
/* ============================= */

/* ICONES INTERNOS MAIS VISIVEIS */

.socials img{
  filter: brightness(0) invert(1);
  filter: brightness(0) invert(1)
          drop-shadow(0 0 3px rgba(255,255,255,.8))
          drop-shadow(0 0 6px rgba(255,255,255,.4));
}

/* TEXTO DOS BOTÕES DROPDOWN */

.dropbtn{
  font-weight:600;
  text-shadow:
    0 0 2px rgba(255,255,255,.8),
    0 0 4px rgba(255,255,255,.4);
}

/* TEXTO DAS OPÇÕES INTERNAS */

.opt{
  font-weight:500;
  text-shadow:
    0 0 2px rgba(255,255,255,.6);
}

.opt.ativo{
  text-shadow:none;
}

/*
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: var(--font, sans-serif);
  background:#0f1115;
  color:white;
}

/* HEADER * /

.header{
  background: linear-gradient(135deg,#1d2671,#c33764);
  padding:80px 20px 120px;
  text-align:center;
  position:relative;
}

.header-content{
  position:relative;
  z-index:2;
}

.avatar{
  width:120px;
  height:120px;
  border-radius:50%;
  border:4px solid white;
  object-fit:cover;
  margin-bottom:15px;
}

.curve{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:120px;
  background:#0f1115;
  border-top-left-radius:100% 60px;
  border-top-right-radius:100% 60px;
}

/* CATEGORIAS * /

.categoria{
  margin:40px 20px 10px;
  font-weight:bold;
  border-left:4px solid #ffcc00;
  padding-left:10px;
}

/* LISTA DE LINKS * /

.scroll{
  display:flex;
  overflow-x:auto;
  gap:18px;
  padding:20px;
}

/* CARD ESTILO POKEMON * /

.card{
  min-width:230px;
  background:linear-gradient(145deg,#1a1d26,#11141b);
  border-radius:18px;
  padding:14px;
  box-shadow:0 0 18px rgba(0,0,0,0.5);
  transition:.25s;
}

.card:hover{
  transform:translateY(-6px) scale(1.02);
}

.card img{
  width:100%;
  height:130px;
  border-radius:12px;
  object-fit:cover;
}

.card h3{
  text-align:center;
  margin:10px 0 6px;
}

.card p{
  text-align:center;
  font-size:14px;
  opacity:.8;
  margin-bottom:10px;
}

.tags{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:6px;
}

.tag{
  background:#ffcc00;
  color:black;
  font-size:12px;
  padding:3px 8px;
  border-radius:8px;
} */