.hero{
    background-image: none;
    min-height: 0;
}
.titulo-blog h1{
    width: 90%;
    box-sizing: border-box;
    border-radius: 0 200px 200px 0;
}
.titulo-blog{
    padding-top: 3rem;
}
.titulo-blog p{
    max-width: 1500px;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 1rem;
}
.blog-inst{
    color: white;
    text-align: center;
    border-radius: 50%;
    width: clamp(310px,40vw,390px);
    height: clamp(310px,40vw,390px);
    background-size: 100% 100%;
    background-position: center;
    overflow: hidden;
    transition: 300ms;
    cursor: pointer;
}
.blog-inst:hover{
    background-size: 105% 105%;
}
.blog-menu{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 0 1rem;
    gap: 2rem;
    max-width: 1550px;
    box-sizing: border-box;
    margin: 0 auto;
}
.blog-inst h2{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-menu{
    padding-bottom: 6rem;
}

@media (max-device-width: 600px){
    .blog-inst{
        width: 92vw;
        height: 92vw;
        max-width: 400px;
        max-height: 400px;
        margin-bottom: -4rem;
    }
    .titulo-bgA{
        padding-left: 2rem;
    }
    .blog-menu{
        padding-bottom: 10rem;
    }
}