/*header*/
 section.bloco-blog-posts header {
    text-align: center;
}
section.bloco-blog-posts header h3 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #5c5c5c;
    font-size: 15px;
}
section.bloco-blog-posts header h2, .bloco-texto-post h2 a {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #5c5c5c;
    font-size: 24px;
    text-decoration:none;
}
section.bloco-blog-posts .bloco-texto-post h2 a{
     font-size: 22px;
}
section.bloco-blog-posts .bloco-imagem-post a img {
    max-width: 327px;
    height: auto;
      transition: opacity .3s ease,transform 8s cubic-bezier(.25,.46,.45,.94);
    
}
section.bloco-blog-posts .bloco-imagem-post a img:hover{
    transform: scale(1.2);
    transition: opacity .3s ease,transform 8s cubic-bezier(.25,.46,.45,.94);
}
 
section.bloco-blog-posts .bloco-content {
    display: flex;
    justify-content: center;
    gap: 50px;
}


section.bloco-blog-posts strong {
    font-weight: 400;
}

section.bloco-blog-posts p.resumo-texto {
    font-size: 15px;
     font-family: "Open Sans", sans-serif;
    color: #5c5c5c;
}



section.bloco-blog-posts .botao-saibamais a {
     font-size: 15px;
     font-family: "Open Sans", sans-serif;
    color: #5c5c5c;
        position: relative;
    display: inline-block;
  transition: color .2s ease-in-out,opacity .2s ease-in-out;  
        color: #5c5c5c;
  
    text-decoration: none;
}

section.bloco-blog-posts .botao-saibamais a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: currentColor;
    transform: scale(1);
    transform-origin: left center;
    transition: transform .2s ease-in-out;
}

section.bloco-blog-posts .botao-saibamais a:hover:before {
    transform: scaleX(0);
}

section.bloco-blog-posts button.vertodos {
       position: relative;
    display: inline-block;
    padding: 14px 28px;
    line-height: normal;
    border: 1px solid transparent;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center;
    letter-spacing: .2em;
    font-weight: 400;
    font-style: normal;
    background-color: transparent;
    transition: color .45s cubic-bezier(.785,.135,.15,.86),border .45s cubic-bezier(.785,.135,.15,.86);
    z-index: 1;
    -webkit-tap-highlight-color: initial;

    color: white;
    border-color: #5c5c5c;
      font-size: 13px;
     font-family: "Open Sans", sans-serif;
  

}

section.bloco-blog-posts button.vertodos::before{
    
    background-color: #5c5c5c;
    transition: transform .45s cubic-bezier(.785,.135,.15,.86);
    position: absolute;
    content: "";
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transform-origin: left center;
    z-index: -1;
}

section.bloco-blog-posts .bloco-footer {
    text-align: center;
    margin: 40px 0;
}




section.bloco-blog-posts button.vertodos:hover{
     transition: color .45s cubic-bezier(.785,.135,.15,.86),border .45s cubic-bezier(.785,.135,.15,.86);
        color: #5c5c62;
    background-color: transparent;
    outline: 0;
}
section.bloco-blog-posts button.vertodos:hover:before{
    transform-origin: right center;
    transform: scaleX(0);
  
    
}
   

section.bloco-blog-posts article.bloco-post {
    max-width: 327px;
}
@media (max-width: 1100px)
{
section.bloco-blog-posts .bloco-content {
    gap: 10px;
}

section.bloco-blog-posts article.bloco-post, section.bloco-blog-posts .bloco-imagem-post a img {
    width: 100%;
}
}
@media (max-width: 600px)
{
 section.bloco-blog-posts .bloco-content {
    flex-direction: column;
    align-items: center;
}
section.bloco-blog-posts article.bloco-post {
    max-width: 300px;
}
section.bloco-blog-posts .bloco-imagem-post a img {
    max-width: 300px;
   
}
}