*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0d0818;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
}

.topo{
    text-align:center;
    padding:35px 20px;
}

.logo{
    width:120px;
    margin-bottom:15px;
}

h1{
    font-size:32px;
    margin-bottom:25px;
    color:#c084fc;
}

#pesquisa{
    width:100%;
    max-width:450px;
    padding:15px;
    border:none;
    border-radius:12px;
    outline:none;
    background:#1b1430;
    color:#fff;
    font-size:16px;
}

.grid{
    max-width:1600px;
    margin:auto;
    padding:25px;
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:22px;
}

.card{
    background:#171129;
    border:1px solid #35225d;
    border-radius:18px;
    overflow:hidden;
    transition:.25s;
}

.card:hover{
    transform:translateY(-6px);
    border-color:#9d4edd;
    box-shadow:0 0 25px rgba(157,78,221,.35);
}

.card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    background:#000;
}

.info{
    padding:15px;
}

.nome{
    text-align:center;
    font-weight:bold;
    margin-bottom:15px;
    font-size:18px;
}

.status{
    text-align:center;
    color:#62ff89;
    font-size:14px;
    margin-bottom:15px;
}

.botoes{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.btn{
    text-decoration:none;
    text-align:center;
    padding:12px;
    border-radius:10px;
    color:#fff;
    font-weight:bold;
}

.painel{
    background:#7b2cff;
}

.painel:hover{
    background:#9547ff;
}

.teste{
    background:#00b894;
}

.teste:hover{
    background:#00d1a6;
}