/* Estilo automático para a página: blog */
#cabecalho {
    background: linear-gradient(180deg, #E7454A 0%, #C73B41 23.14%, #B6363C 46.81%, #8B272C 81.49%);
    padding: 100px 0;
    text-align: center;

    .navegacao{
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        margin-bottom: 18px;

        li{
            font-weight: 500;
            font-size: 13px;
            line-height: 100%;
            color: #fff;
            list-style-type: none;
            
            img{
                margin: 0 12px;
            }
            
            span{
                
                color: #fff;
                font-weight: 600;
                font-size: 13px;
                line-height: 100%;
                text-align: right;

            }
        }
    }
    h1{
        font-weight: 800;
        font-size: 42px;
        line-height: 160%;
        text-align: center;
        color: #fff;
    }
}


#blog {
    background-color: #F6F6F6;
    padding: 60px 0;

    h2{
        font-weight: 500;
        font-size: 36px;
        line-height: 45px;
        letter-spacing: 0%;
        color: #111827;
        text-align: center;
        margin-bottom: 30px;
        
        span{
            font-weight: 600;
            color: #E7454A;
        }
    }

    h3{
        font-weight: 400;
        font-size: 18px;
        line-height: 160%;
        letter-spacing: 0%;
        text-align: center;
        color: #3C3C3B;
    }

    .moldura-blog {
        position: relative;
        overflow: hidden;

        .img-capa-blog {
            border-radius: 16px 16px 0 0;
            width: 100%;
            object-fit: cover;
            height: 247px;
        }
        .cat-blog {
            position: absolute;
            top: 30px;
            left: 0;
            background-color: #E7454A;
            font-weight: 500;
            font-size: 16px;
            line-height: 120%;
            padding: 12px 32px;
            border-radius: 0 3px 3px 0;
            color: #fff;
        }
    }
    
    .card-blog{
        .moldura-blog{
            border-radius: 16px 16px 0 0;
            .img-capa-blog{
                transition: 300ms all ease-in-out;
            }
        }
        
        &:hover{
            .moldura-blog{
                .img-capa-blog{
                    scale: 1.1;
                }
            }
        }
    }

    .card-blog{
        .btn-leia-mais{
            transition: 300ms all ease-in-out;
            font-weight: 500;
            font-size: 16px;
            text-decoration: underline;
            color: #E7454A;
            margin-bottom: 30px;

            
            img{
                margin-left: 8px;
                transition: transform 300ms ease-in-out;
            }
        }
        
        &:hover{
            .btn-leia-mais{
                transition: 300ms all ease-in-out;

                img{
                    transform: rotate(45deg);
                }
            }
        }
    }

    .info-blog {
        background: #FFFFFF;
        border: 1px solid #DEDEDE;
        border-radius: 0 0 10px 10px;
        padding: 30px 22px;
        box-shadow: 0px 4px 8px 0px #00000014;


        h4{
            font-weight: 500;
            font-size: 20px;
            line-height: 28px;
            color: #111827;
        }

        .resumo-blog {
            font-weight: 400;
            font-size: 17px;
            line-height: 24px;
            color: #3C3C3B;
        }
        
        .data-autor {
            display: flex;
            justify-content: space-between;
            
            .data{
                font-weight: 400;
                font-size: 16px;
                line-height: 25px;
                color: #3C3C3B;
            }
            .autor{
                font-weight: 400;
                font-size: 16px;
                line-height: 25px;
                color: #3C3C3B;
            }
        }
    }

    .btn-padrao-1{
        font-weight: 500;
        font-size: 16px;
        color: #fff;
        line-height: 100%;
        padding: 20px 24px;
        background-color: #E7454A;
        border-radius: 8px;
        margin: 0 30px 0 32px;
        transition: 300ms all ease-in-out;

        &:hover {
            background-color: #A63137;
        }
    }


    
    .nav-pills {
        display: flex;
        justify-content: center;

        .nav-link {
            font-weight: 400;
            font-size: 18px;
            color: #706F6F;
            margin: 0 24px;
        }
    }

    .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
        color: #E7454A;
        background-color: transparent;
        border-bottom: solid 2px #E7454A;
        border-radius: 0;
        padding-bottom: 14px;
    }

    .page-numbers {
        display: flex;

        li{
            margin: 0px 8px;
            list-style-type: none;

            .page-numbers {
                border: 2px solid #E7454A;
                border-radius: 60px;
                font-weight: 500;
                font-size: 18px;
                line-height: 100%;
                color: #A63137;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 10px 15px;
            }
            .current{
                background-color: #A63137;
                color: #fff;
            }
        }
    }
}



/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #blog {
        .info-blog {
            .data-autor {
                flex-direction: column;
                .data {
                    margin: 0;
                }
            }
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 

    
}