*{
    margin: 0;
    padding: 0;
}
.container{
    width: 100%;
    height: auto;
    padding-bottom:10px ;
}
.cabecalho{
    width: 100%;
    height: 300px;
    background-image: url('imagens/banner.png');
    background-size:contain;
    background-repeat: no-repeat;
}
.conteudo{
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}
.rodape{
    width: 100%;
    height: 50px;
    background-color: black;
    line-height: 50px;
}

.card{
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
   display: flex;
   justify-content: left;
   flex-wrap: wrap;

}
.capa{
    width: 150px;
    height: auto;
    margin-left:20px ;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #ccc;


}
.capa img{
    width: 150px;
    height: auto;
}

.rodape p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: center;
    color: white;
}

@media only screen and (max-width: 520px) {
    html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.cabecalho{
    width: 100%;
    height: 300px;
    background-image: url('imagens/bannermobile.png');
    background-size:contain;
    background-repeat: no-repeat;
    
}


.card{
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;

}
.capa{
    width: 43%;
    height: auto;
    margin-left:10px ;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #ccc;
    margin-bottom: 10px;


}
.capa img{
    width: 100%;
    height: auto;
}

}