#cabecalho{
    padding: 24px !important;
    min-height: auto !important;
}

#leitura{
    background: #F8FCFF;
    padding: 80px 0;

    h1{
        color: var(--azul-tercirio);
        font-size: 48px;
        font-weight: 700;
        line-height: 66px; 
    }

    h3{
        color: #525F6F;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .img-dest{
        width: 100%;
        height: 400px;
        border-radius: 20px;
        object-fit: cover;
    }

    .data-cat-tempo {
        display: flex;
        justify-content: space-between;

        .data-categoria{
            display: flex;

        }

        .data-blog, .categoria-blog {
            color: var(--azul-tercirio);
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            margin: 16px 28px 16px 0;
            display: flex;
            align-items: center;

            img{
                margin-right: 4px;
            }
        }
        .tempo-blog{
            color: var(--azul-tercirio);
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            margin: 16px 0 ;
            display: flex;
            align-items: center;

            img{
                margin-right: 4px;
            }
        }
    }

    hr{
        color: #CAD9F0;
        margin: 0.5rem 0 1rem;
    }

    .text-leitura{
        color: var(--azul-texto);
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        
        b, strong {
            font-weight: bolder;
            font-size: 18px;
        }
    }










    .box-compartilhar{
        border-radius: 20px;
        border: 1px solid var(--traado, #CAD9F0);
        background: rgb(255, 255, 255);
        padding: 14px 0 0 0;

        ul{
            display: flex;
            margin: 0;
            padding: 0;

            li{
                list-style-type: none;
                margin-left: 20px;
            }
        }

        h4{
            color: var(--azul-texto);
            font-size: 24px;
            font-weight: 500;
            line-height: 28px;
            margin: 16px 24px;
        }

        .card-blog{
            .info-card-blog {
                padding: 20px 24px;

                .data-categoria {
                    display: flex;
                    justify-content: space-between;
    
                    .data-blog, .categoria-blog {
                        color: var(--azul-tercirio);
                        font-size: 16px;
                        font-weight: 400;
                        line-height: 28px;
                        margin: 0;
                        display: flex;
                        align-items: center;

                        img{
                            margin-right: 4px;
                        }
                    }
                }

                .titulo-blog {
                    color: var(--azul-texto);
                    font-size: 20px;
                    font-weight: 600;
                    line-height: 28px;
                    margin: 8px 0px 8px 0;
                }

                .resumo-blog {
                    color: var(--azul-texto);
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 24px;
                }
            }
            .btn-link-blog {
                font-size: 16px;
                font-style: normal;
                font-weight: 600;
                line-height: 28px;
                color: var(--azul-secundrio);
                display: flex;
                align-items: center;

                img{
                    margin-right: 4px;
                }
            }
        }

        .list-card-blog{
            .card-blog{

                hr{
                    color: #CAD9F0;
                }

                &:last-child hr {
                    display: none;

                }
            }
        }

    }

}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #leitura{
        padding: 60px 0;

        h1{
            font-size: 38px;
            line-height: 50px;
        }

        .img-dest{
            height: 300px;
        }

        .box-compartilhar {
            h4{
                text-align: center;
            }
            ul {
                margin: 0 0 20px 0;
                justify-content: center;
            }
        }

        .text-leitura{
            margin-bottom: 30px;
        }
        
    }

}

/* MOBILE */
@media all and (max-width: 767px) {
    #leitura{
        padding: 40px 0;

        h1{
            font-size: 30px;
            line-height: 40px;
        }

        .img-dest{
            height: 310px;
            margin-bottom: 20px;
        }

        .data-cat-tempo{
            flex-wrap: wrap;
            gap: 8px;

            .data-categoria{
                flex-wrap: wrap;
                width: 100%;
                display: flex;
                justify-content: space-between;
            }

            .data-blog, .categoria-blog, .tempo-blog{
                margin: 0;
            }
        }

        .text-leitura{
            margin-bottom: 30px;
        }

        .box-compartilhar{
            margin-top: 24px;

            .btn-link-blog {
                margin-bottom: 20px;
            }
           
            h4{
                text-align: center;
            }
            ul {
                margin: 0 0 20px 0;
                justify-content: center;

                li{
                    margin-left: 16px;
                    margin-right: 16px;
                }
            }
        }
    
        .passadores{
            position: absolute;
            top: 240px;
            width: 100%;
            display: flex;
            justify-content: space-between;

            .swiper-button-prev {
                right: var(--swiper-navigation-sides-offset, 10px) !important;
                left: var(--swiper-navigation-sides-offset, 10px) !important;
            }
            .swiper-button-next{
                right: var(--swiper-navigation-sides-offset, 10px) !important;
            }

            .swiper-button-prev {
                width: 40px;
                height: 40px;
                border: solid 1px var(--azul-texto);
                border-radius: 40px;
            }
            .swiper-button-next {
                width: 40px;
                height: 40px;
                border: solid 1px var(--azul-texto);
                border-radius: 40px;
            }
            .swiper-button-next:after, .swiper-button-prev:after{
                font-size: 14px;
                color: var(--azul-texto);
            }
        }

    }
}