main{
    flex: 1;
}

.cabecalho{
    margin: 2em 0 0 0;
}

.migalhas{
    margin: 2em 0 0 0;
}
.migalhas li{
    display: inline-block;
    font-size: 0.8em;
}
.migalhas li:not(:last-child)::after{
    content: " » ";
}

.blog_detalhes{

}
.blog_detalhes .conteudo{
    margin: 3em 0 2em 0;
}

.blog{
    padding: 2em 0 2em 0;
    text-align: center;
    border-top: 2px solid #2d7d9a;
}
.blog .posts{
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    margin: 3em 0 0 0;
}
.blog .posts .post{
    flex: 0 0 calc(25% - 2em);
}
.blog .posts .post a{
    display: block;
    padding: 1em;
    background: #fff;
    border-radius: 10px;
    border: 2px solid transparent;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.25);
}
.blog .posts .post a:hover{
    text-decoration: none;
    border: 2px solid var(--preto);
}
.blog .posts .post img{
    display: block;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 320/180;
    margin: 0 auto 1em auto;
}
.blog .posts .post h3{
    font-size: 1em;
    font-weight: bold;
}
.blog .posts .post p{
    font-size: 0.8em;
}

.contato{
    padding: 2em 0 2em 0;
    text-align: center;
    border-top: 2px solid #2d7d9a;
}
.contato .obs{
    font-size: 0.8em;
    color: #d22a2a;
}
.contato .numero{
    display: inline-block;
    padding: 0.5em 2em 0.5em 2em;
    font-size: 1.2em;
    color: white;
    background: var(--azul);
    border-radius: 20px;
}
.contato .numero:hover{
    text-decoration: none;
    background: var(--azul_hover);
}
.contato .qr{
    width: 100%;
    max-width: 200px;
    aspect-ratio: 200/200;
}