body{

font-family: Arial, Helvetica, sans-serif;
background:#f4f6f9;
margin:0;
padding:0;

}

.container{

max-width:800px;
margin:auto;
padding:40px;

}

h1{

text-align:center;
color:#0a58ca;
font-size:40px;
margin-bottom:10px;

}

.subtitulo{

text-align:center;
color:#555;
margin-bottom:40px;

}

#busca{

width:100%;
padding:15px;
font-size:16px;
border-radius:8px;
border:1px solid #ccc;
box-sizing:border-box;

}

#resultados{

margin-top:30px;

}

.resultado{

background:white;
padding:20px;
margin-bottom:15px;
border-radius:8px;
box-shadow:0 2px 6px rgba(0,0,0,0.08);

}

.resultado h3{

margin:0;
color:#333;

}

.resultado p{

color:#666;

}

.acoes{

margin-top:40px;
text-align:center;

}

.botao{

background:#0a58ca;
color:white;
padding:15px 25px;
text-decoration:none;
border-radius:8px;
font-weight:bold;

}

.botao:hover{

background:#084298;

}
.lista-categorias{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:12px;
margin-top:10px;
}

.lista-categorias a{
background:#f2f2f2;
padding:10px 16px;
border-radius:8px;
text-decoration:none;
color:#333;
font-weight:600;
transition:0.2s;
}

.lista-categorias a:hover{
background:#e0e0e0;
}