#cabecalho {
    background: linear-gradient(180deg, #E7454A 0%, #C73B41 23.14%, #B6363C 46.81%, #8B272C 81.49%);
    padding: 30px 0;

    .navegacao{
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;

        li{
            font-weight: 500;
            font-size: 13px;
            line-height: 100%;
            color: #fff;
            list-style-type: none;
            margin-bottom: 10px;
            
            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;
    }
}


#noticia{
    padding: 80px 0;

    h1{
        font-weight: 600;
        font-size: 40px;
        line-height: 120%;
        letter-spacing: 0%;
        color: #A63137;
    }
    h2{
        font-weight: 400;
        font-size: 22px;
        line-height: 155%;
        letter-spacing: 0%;
        color: #3C3C3B;
        margin-bottom: 47px;
    }
    .img-noticia{
        width: 100%;
        object-fit: cover;
        height: 550px;
        border-radius: 10px;
    }
    .the-content{
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        letter-spacing: 0%;

        strong{
            font-weight: 500;
            font-size: 22px;
            color: #A63137;
        }
    }

    .card-noticias {
        background: #FFFFFF;
        border: 1px solid #DEDEDE;
        box-shadow: 0px 4px 12px 0px #0000001A;
        padding: 32px 24px;
        border-radius: 10px;
        position: sticky;
        top: 50px;

        h5{
            font-weight: 600;
            font-size: 16px;
            line-height: 100%;
            color: #A63137;
            margin-bottom: 16px
        }
        .text-card-not {
            font-weight: 400;
            font-size: 16px;
            color: #3C3C3B;
            line-height: 100%;
        }

        .tag-cat {
            font-weight: 500;
            font-size: 16px;
            padding: 15px 20px;
            vertical-align: middle;
            background-color: #E7454A;
            border-radius: 3px;
            display: inline-block;
            color: #FFFFFF;
        }

        
        .link-not-cat {
            display: flex;
            justify-content: flex-start;
            padding: 0;
            margin: 0;

            li {
                list-style-type: none;
                margin-right: 8%;
            }
        }
    }
}



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

    h2{
        font-weight: 500;
        font-size: 36px;
        line-height: 45px;
        letter-spacing: 0%;
        color: #111827;
        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;
            }
        }
    }

    .alinhar-final{
        display: flex;
        align-items: center;
        justify-content: flex-end;

        .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;
            }
        }
    }
}

.ocult-desk {
    display: flex !important;
}
.ocult-mob{
    display: none !important;
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #noticia {
        .img-noticia {
            height: 400px;
        }
    }  

    #blog {
        .card-blog {
            margin-bottom: 30px;
        }
    }
}

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

    #noticia {
        .img-noticia {
            height: 290px;
        }
    }

    #blog {
        .alinhar-final {
            justify-content: center;
        }

        .ocult-desk {
            display: none !important;
        }

        .ocult-mob{
            display: flex !important;
        }
    }

}