/* Estilo automático para a página: blog */
 #cabecalho {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -150px;
    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;
    }
}


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

    .moldura{
        overflow: hidden;

        .img-blog {
            object-fit: cover;
            width: 100%;
            height: 440px;
            transition: 300ms all ease-in-out;
        }
    }
    .moldura:hover .img-blog{
        transform: scale(1.1); /* Aumenta 10% */
    }

    .info-card-blog {
        padding: 50px 50px 40px;
        background-color: #fff;
        
        .link-titulo{
            color: #000;
            h2{
                font-size: 27px;
                font-weight: 700;
                letter-spacing: 0px;
                transition: 300ms all ease-in-out;
    
                &:hover{
                    color: #b1976b;
                }
            }
        }

        .resumo-blog {
            color: #555;
            font-size: 16px;
            line-height: 1.7;
        }

        .data-autor-catg {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 23px;

            p{
                color: #959595;
                margin-right: 24px;
                font-size: 15px;
                font-weight: 400;
                text-transform: capitalize;
            }
        }

        .btn-ler-mais{
            font-size: 12px;
            letter-spacing: 2px;
            padding: 13px 23px 14px;
            -webkit-border-radius: 2px;
            color: #fff;
            background-color: #b1976b;
            transition: 300ms all ease-in-out;

            &:hover{
                background-color: #2F2F2F;
            }
        }
    }



       .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: #e6e6e6;
        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;
    }
}




.pagination-container {
    margin: 40px 0;
    text-align: center;
}

.pagination-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
}

.pagination-container li {
    margin: 0 5px;
    display: inline-block;
}

.pagination-container a,
.pagination-container span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-container a {
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

.pagination-container a:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.pagination-container .current {
    color: #fff;
    background-color: #b1976b;
    border: 1px solid #b1976b;
}

.pagination-container .pagination-arrow {
    font-size: 18px;
}

.pagination-container .dots {
    background-color: transparent;
    border: none;
    color: #6c757d;
}

@media (max-width: 576px) {
    .pagination-container li {
        margin: 0 2px;
    }
    
    .pagination-container a,
    .pagination-container span {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}




/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    
}

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

    #cabecalho {

        min-height: 440px;

        h1 {
            font-size: 32px;
            line-height: 2.2;
        }
        h2 {
            line-height: 22px;
        }
    }

    #listagem-blog {
        .info-card-blog {
            padding: 30px;
            background-color: #fff;
        }

        .data-autor-catg {
            flex-wrap: wrap;

            p{
                margin: 0;
                margin-right: 6px;
            }
        }
    }

 }