/* Estilo automático para o tipo de post: post */

 #cabecalho {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -170px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    h1{
        text-align: center;
        font-size: 51px;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        margin-top: 100px;
    }
    h2{
        letter-spacing: 3px;
        font-size: 14px;
        color: #fff;
        text-align: center;
    }
}

#leitura-blog{
    padding: 60px 0;


    .img-dest-post {
        width: 100%;
        object-fit: cover;
        height: 400px;
        margin-bottom: 30px;
    }
    .the-content{
        color: #555;
        font-size: 16px;
        line-height: 1.7;
    }

    .img-galeria-post {
        width: 100%;
        height: 480px;
        object-fit: cover;
    }

    iframe{
        width: 100%;
        margin: 30px 0;
        height: 480px;
    }


    .box-citacao {
        background-color: #f5f5f5;
        padding: 30px;
        margin: 30px 0;

        p{
            font-size: 17px;
            font-weight: 700;
            font-style: italic;
            color: #777;
            margin: 0;
        }
    }


    .box-compartilhar {
        display: flex;
        justify-content: space-between;

        p{
            font-size: 13px;
            font-weight: 700;
            color: #212529;
            text-transform: uppercase;
        }

        .social-media{
            ul{
                display: flex;

                li{
                    list-style-type: none;
                    font-size: 22px;
                    color: #b1976b;
                                    
                    a{
                        color: #b1976b;

                    }
                }
            }
        }
    }




       .mini-card-blog {
        display: flex;
        align-items: center;
        justify-content: center;
        align-content: center;

        .mini-moldura{
                width: 165px;
                margin-right: 20px;
                overflow: hidden;

            .img-blog {
                width: 120px;
                height: 110px;
                object-fit: cover;
                transition: 300ms all ease-in-out;
            }

        }
        .mini-moldura:hover .img-blog{
            transform: scale(1.1); /* Aumenta 10% */
        }

        .info-blog{
            width: 100%;
            a{
                color: #9f8862;

                &:hover{
                    color: #303030;
                }
            }
    
            h3{
                font-size: 17px;
                font-weight: 700;
                letter-spacing: 0px;
            }
            .data-blog {
                font-weight: 400;
                margin-right: 0;
                font-size: 13px;
                text-transform: none;
                letter-spacing: 0;
                color: #959595;
            }

            .data-autor-catg {
                display: flex;
                justify-content: flex-start;
                flex-direction: column;
                p{
                    color: #959595;
                    font-size: 15px;
                    font-weight: 400;
                    margin: 0;
                    text-transform: capitalize;
                }
            }
        }

    }

     .list-areas {
        margin: 0;
        padding: 0;
        
        a {
            position: relative;
            display: flex;
            align-items: center;
            padding: 0;
            color: #4c4c4c;
            font-size: 16px;
            border-left: solid 5px #ddd;
            margin: 18px 0;
            height: 50px;
            border-bottom: solid 2px #ddd;

            i {
                margin: 0 10px;
                margin-left: -23px;
                transition: 300ms all ease-in-out;
                color: #b1976b;
            }
            
            li {
                list-style-type: none;
                display: flex;
                color: #282828;
                padding-left: 8px;
            }
        }
    }
    .list-areas li:after {
        background-color: #fff;
        background-size: auto;
        display: inline-block;
        width: 20px;
        height: 50px;
        content: "";
        top: 0;
        left: -23px;
        position: absolute;
        z-index: 0;
    }
    .list-areas a:hover {
        border-left: solid 5px #d7b174;
    }
    .list-areas a:hover i{
        margin-left: 8px;
    }
    .list-areas a:hover li{
        color: #b1976b !important;
    }

    h4{
        color: #383838;
        font-size: 16px;
        font-weight: 700;
        margin-top: 40px;
    }
    .text-suporte{
        color: #555;
        font-size: 16px;
        line-height: 1.7;
    }
}



/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    
}

/* MOBILE */
@media all and (max-width: 767px) { 

    #cabecalho {

        padding: 70px 0;
        margin: 0;
        min-height: auto;

        h1 {
            font-size: 32px;
            margin: 0;
        }
        h2 {
            line-height: 22px;
        }
    }

    .page-container {
        padding: 0;
    }

    #leitura-blog {
        .img-galeria-post {
            height: 330px;
        }
        iframe {
            height: 290px;
        }

        .box-compartilhar {
            margin: 40px 0 70px;
        }

    }

 }
