/* =========================================================
   =========================================================
   NOTÍCIAS — INDEX + SHOW
   DESIGN INSTITUCIONAL / RESPONSIVO
   =========================================================
========================================================= */


/* =========================================================
   VARIÁVEIS
========================================================= */

:root {

    --news-red: #b00000;
    --news-red-dark: #850000;
    --news-red-light: #d71920;

    --news-black: #181818;
    --news-text: #333333;
    --news-gray: #707070;
    --news-light-gray: #f5f5f5;

    --news-border: #e4e4e4;

}


/* =========================================================
   RESET
========================================================= */

.news-page *,
.news-show-page * {

    box-sizing: border-box;

}


/* =========================================================
   =========================================================
   INDEX
   =========================================================
========================================================= */


/* =========================================================
   PÁGINA
========================================================= */

.news-page {

    width: 100%;

    min-height: 100vh;

    padding: 38px 0 80px;

    background: #ffffff;

}


/* =========================================================
   CONTAINER
========================================================= */

.news-container {

    width: min(
        1440px,
        92%
    );

    margin: 0 auto;

}


/* =========================================================
   BREADCRUMB
========================================================= */

.news-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 44px;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    color: #777;

}


.news-breadcrumb a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #555;

    text-decoration: none;

}


.news-breadcrumb a span {

    color: var(--news-red-light);

    font-size: 16px;

}


.breadcrumb-arrow {

    color: #aaa;

    font-size: 17px;

}


/* =========================================================
   CABEÇALHO
========================================================= */

.news-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 28px;

}


.news-eyebrow {

    display: block;

    margin-bottom: 8px;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .8px;

    color: var(--news-red-light);

}


.news-header h1 {

    margin: 0 0 9px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 46px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: -.02em;

    color: var(--news-black);

}


.news-header p {

    max-width: 620px;

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.6;

    color: #666;

}


/* =========================================================
   CATEGORIAS
========================================================= */

.news-category-box {

    width: 245px;

    flex-shrink: 0;

}


.news-category-box label {

    display: block;

    margin-bottom: 8px;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .4px;

    color: #222;

}


.news-category-box select {

    width: 100%;

    height: 42px;

    padding: 0 13px;

    border: 1px solid #dddddd;

    border-radius: 3px;

    background: #ffffff;

    color: #333;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    outline: none;

}


/* =========================================================
   FILTROS
========================================================= */

.news-filters {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 27px;

}


.news-filter {

    min-width: 95px;

    height: 38px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 18px;

    border: 1px solid #e3e3e3;

    border-radius: 3px;

    background: #fff;

    color: #222;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;

}


.news-filter:hover,
.news-filter.active {

    background: var(--news-red-light);

    border-color: var(--news-red-light);

    color: #fff;

}


/* =========================================================
   BLOCO PRINCIPAL
========================================================= */

.news-featured-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(320px, 1fr);

    gap: 18px;

    margin-bottom: 18px;

}


/* =========================================================
   NOTÍCIA PRINCIPAL
========================================================= */

.news-featured {

    overflow: hidden;

    border: 1px solid var(--news-border);

    background: #ffffff;

    transition:
        box-shadow .25s ease,
        transform .25s ease;

}


.news-featured:hover {

    box-shadow:
        0 12px 30px rgba(0,0,0,.07);

    transform: translateY(-2px);

}


/* =========================================================
   IMAGEM PRINCIPAL
   DESKTOP — IMAGEM COMPLETA
========================================================= */

.news-featured-image {

    width: 100%;

    height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #f5f5f5;

}


.news-featured-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center center;

    background: #f5f5f5;

    transition: transform .35s ease;

}


.news-featured:hover
.news-featured-image img {

    transform: scale(1.015);

}


/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */

.news-featured-body {

    position: relative;

    padding: 20px 23px 22px;

}


.news-featured-body time,
.news-secondary-body time,
.news-card-body time {

    display: block;

    margin-bottom: 9px;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: .25px;

    text-transform: uppercase;

    color: #888;

}


.news-featured-body h2 {

    margin: 0 0 12px;

    font-family: "Poppins", sans-serif;

    font-size: 21px;

    line-height: 1.35;

    font-weight: 700;

}


.news-featured-body h2 a,
.news-secondary-body h3 a,
.news-card-body h3 a {

    color: #181818;

    text-decoration: none;

    transition: color .2s ease;

}


.news-featured-body h2 a:hover,
.news-secondary-body h3 a:hover,
.news-card-body h3 a:hover {

    color: var(--news-red);

}


.news-featured-body p {

    max-width: 850px;

    margin: 0 0 15px;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.7;

    color: #666;

}


/* =========================================================
   LER MAIS
========================================================= */

.news-read-more {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--news-red-light);

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 800;

    text-decoration: none;

    text-transform: uppercase;

}


.news-read-more span {

    font-size: 15px;

    line-height: 1;

    transition: transform .2s ease;

}


.news-read-more:hover span {

    transform: translateX(4px);

}


/* =========================================================
   PARTILHA
========================================================= */

.news-share {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 17px;

}


.news-share > span {

    margin-right: 4px;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    color: #333;

}


/* =========================================================
   BOTÕES DE PARTILHA
========================================================= */

.news-share .share-btn {

    width: 29px;

    height: 29px;

    padding: 0;

    margin: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.news-share .share-btn i {

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    color: #fff;

}


/* =========================================================
   CORES
========================================================= */

.news-share .whatsapp {

    background: #25D366;

}


.news-share .facebook {

    background: #1877F2;

}


.news-share .instagram {

    background:
        radial-gradient(
            circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%
        );

}


.news-share .twitter {

    background: #000000;

}


.news-share .linkedin {

    background: #0A66C2;

}


.news-share .copy {

    background: #707070;

}


.news-share .share-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(0,0,0,.16);

}


/* =========================================================
   SECUNDÁRIAS
========================================================= */

.news-secondary-column {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.news-secondary {

    display: grid;

    grid-template-columns: 43% 57%;

    min-height: 215px;

    overflow: hidden;

    border: 1px solid var(--news-border);

    background: #ffffff;

    transition:
        box-shadow .25s ease,
        transform .25s ease;

}


.news-secondary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);

}


/* =========================================================
   IMAGEM SECUNDÁRIA
   DESKTOP — IMAGEM COMPLETA
========================================================= */

.news-secondary-image {

    width: 100%;

    height: 215px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #f5f5f5;

}


.news-secondary-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center center;

    background: #f5f5f5;

    transition: transform .35s ease;

}


.news-secondary:hover
.news-secondary-image img {

    transform: scale(1.015);

}


.news-secondary-body {

    padding: 17px;

}


.news-secondary-body h3 {

    margin: 0 0 17px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.45;

    font-weight: 700;

}


/* =========================================================
   GRELHA
========================================================= */

.news-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


/* =========================================================
   CARD
========================================================= */

.news-card {

    overflow: hidden;

    border: 1px solid var(--news-border);

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.news-card:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);

}


/* =========================================================
   IMAGEM CARD
   DESKTOP — IMAGEM COMPLETA
========================================================= */

.news-card-image {

    width: 100%;

    height: 205px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #f5f5f5;

}


.news-card-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center center;

    background: #f5f5f5;

    transition: transform .35s ease;

}


.news-card:hover
.news-card-image img {

    transform: scale(1.015);

}


/* =========================================================
   CARD BODY
========================================================= */

.news-card-body {

    padding: 17px 17px 18px;

}


.news-card-body h3 {

    margin: 0 0 10px;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.5;

    font-weight: 700;

}


.news-card-body p {

    margin: 0 0 15px;

    font-family: "Poppins", sans-serif;

    font-size: 10.5px;

    line-height: 1.6;

    color: #666;

}


.news-card-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

}


.news-card-footer .news-share {

    margin: 0;

}


/* =========================================================
   PLACEHOLDER
========================================================= */

.news-image-placeholder {

    width: 100%;

    height: 100%;

    background:
        linear-gradient(
            135deg,
            #eeeeee,
            #dddddd
        );

}


/* =========================================================
   PAGINAÇÃO
========================================================= */

.news-pagination {

    width: 100%;

    margin-top: 65px;

    padding-top: 25px;

    border-top: 1px solid #e6e6e6;

}


.news-pagination-inner {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

}


.pagination-pages {

    display: flex;

    align-items: center;

    gap: 5px;

}


.pagination-page,
.pagination-arrow {

    width: 36px;

    height: 36px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-family: "Poppins", sans-serif;

    text-decoration: none;

}


.pagination-page {

    color: #555;

    font-size: 10px;

    font-weight: 500;

    border: 1px solid transparent;

}


.pagination-page.active {

    background: var(--news-red);

    border-color: var(--news-red);

    color: #fff;

    font-weight: 600;

}


.pagination-page:not(.active):hover {

    border-color: #ddd;

    background: #fafafa;

    color: var(--news-red);

}


.pagination-arrow {

    border: 1px solid #ddd;

    background: #fff;

    color: #333;

    transition: .2s ease;

}


.pagination-arrow:hover {

    background: var(--news-red);

    border-color: var(--news-red);

    color: #fff;

}


.pagination-arrow.disabled {

    background: #f8f8f8;

    border-color: #eee;

    color: #c7c7c7;

    cursor: default;

}


.pagination-arrow i {

    font-size: 9px;

}


/* =========================================================
   EMPTY
========================================================= */

.news-empty {

    padding: 100px 20px;

    text-align: center;

    border: 1px solid #eee;

}


.news-empty h3 {

    margin: 0 0 8px;

    font-family: "Poppins", sans-serif;

    font-size: 17px;

}


.news-empty p {

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    color: #777;

}


/* =========================================================
   =========================================================
   SHOW — NOTÍCIA
   =========================================================
========================================================= */


/* =========================================================
   PÁGINA
========================================================= */

.news-show-page {

    width: 100%;

    min-height: 100vh;

    padding: 38px 0 80px;

    background: #ffffff;

}


.news-show-container {

    width: min(
        1440px,
        92%
    );

    margin: 0 auto;

}


/* =========================================================
   LAYOUT
========================================================= */

.news-show-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    gap: 45px;

    align-items: start;

}


/* =========================================================
   ARTIGO
========================================================= */

.news-article {

    min-width: 0;

    max-width: 920px;

}


.news-article-category {

    display: inline-block;

    margin-bottom: 10px;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .5px;

    color: var(--news-red-light);

}


.news-article h1 {

    margin: 0 0 18px;

    font-family: "Poppins", sans-serif;

    font-size: 36px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -.02em;

    color: #181818;

}


.news-article-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 22px;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    color: #777;

}


/* =========================================================
   PARTILHA SHOW
========================================================= */

.news-article-share {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 25px;

}


.news-article-share > span {

    margin-right: 4px;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    color: #333;

}


.news-article-share .share-btn {

    width: 29px;

    height: 29px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: none;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


.news-article-share .share-btn i {

    font-size: 11px;

}


.news-article-share .whatsapp {

    background: #25D366;

}


.news-article-share .facebook {

    background: #1877F2;

}


.news-article-share .instagram {

    background:
        radial-gradient(
            circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%
        );

}


.news-article-share .twitter {

    background: #000000;

}


.news-article-share .linkedin {

    background: #0A66C2;

}


.news-article-share .copy {

    background: #707070;

}


.news-article-share .share-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 5px 12px rgba(0,0,0,.16);

}


/* =========================================================
   IMAGEM SHOW
   DESKTOP — IMAGEM COMPLETA
========================================================= */

.news-article-image {

    width: 100%;

    height: 430px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    margin-bottom: 27px;

    background: #f5f5f5;

}


.news-article-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center center;

    background: #f5f5f5;

}


/* =========================================================
   CONTEÚDO
========================================================= */

.news-article-content {

    width: 100%;

    margin-top: 28px;

}


.news-article-content p {

    margin: 0 0 23px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;

    line-height: 1.9;

    color: #222;

    text-align: justify;

}


.news-article-content p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   NAVEGAÇÃO
========================================================= */

.news-article-navigation {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 50px;

    padding-top: 23px;

    border-top: 1px solid #e5e5e5;

}


.news-nav-item {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.news-nav-item span {

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .5px;

    color: #888;

}


.news-nav-item a {

    color: #222;

    font-family: "Poppins", sans-serif;

    font-size: 10.5px;

    font-weight: 600;

    line-height: 1.5;

    text-decoration: none;

}


.news-nav-item a:hover {

    color: var(--news-red);

}


.news-nav-next {

    text-align: right;

}


/* =========================================================
   SIDEBAR
========================================================= */

.news-sidebar {

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.news-sidebar-box {

    padding: 18px;

    border: 1px solid #eeeeee;

    background: #f8f8f8;

}


.news-sidebar-box h2 {

    position: relative;

    margin: 0 0 18px;

    padding-bottom: 12px;

    border-bottom: 1px solid #ddd;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 800;

    color: #222;

}


.news-sidebar-box h2::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 30px;

    height: 2px;

    background: var(--news-red-light);

}


/* =========================================================
   ÚLTIMAS
========================================================= */

.news-latest {

    display: grid;

    grid-template-columns: 65px 1fr;

    gap: 10px;

    padding: 11px 0;

    border-bottom: 1px solid #e1e1e1;

}


.news-latest:first-child {

    padding-top: 0;

}


.news-latest-image {

    width: 65px;

    height: 55px;

    display: block;

    overflow: hidden;

    background: #ffffff;

}


.news-latest-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    background: #f5f5f5;

}


.news-latest time {

    display: block;

    margin-bottom: 4px;

    font-family: "Poppins", sans-serif;

    font-size: 7.5px;

    text-transform: uppercase;

    color: #999;

}


.news-latest h3 {

    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.4;

}


.news-latest h3 a {

    color: #222;

    text-decoration: none;

}


.news-sidebar-button {

    height: 34px;

    margin-top: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #ddd;

    background: #fff;

    color: var(--news-red);

    font-family: "Poppins", sans-serif;

    font-size: 8px;

    font-weight: 800;

    text-decoration: none;

}


/* =========================================================
   CATEGORIAS SIDEBAR
========================================================= */

.news-sidebar-categories {

    background: #fff;

}


.news-sidebar-categories select {

    width: 100%;

    height: 37px;

    margin-bottom: 12px;

    padding: 0 10px;

    border: 1px solid #ddd;

    background: #fff;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    outline: none;

}


.news-sidebar-categories ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.news-sidebar-categories li {

    padding: 9px 0;

    border-bottom: 1px solid #eee;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    color: #333;

}


/* =========================================================
   =========================================================
   MOBILE — DESIGN INSTITUCIONAL
   NOTÍCIAS INDEX + SHOW
   =========================================================
========================================================= */

@media (max-width: 650px) {

    /* =====================================================
       BASE DA PÁGINA
    ===================================================== */

    .news-page,
    .news-show-page {

        width: 100%;

        min-height: 100vh;

        padding:
            24px 0
            calc(55px + env(safe-area-inset-bottom));

        background: #fafafa;

    }


    .news-container,
    .news-show-container {

        width: calc(100% - 28px);

        max-width: 100%;

        margin: 0 auto;

    }


    /* =====================================================
       BREADCRUMB
    ===================================================== */

    .news-breadcrumb {

        display: flex;

        align-items: center;

        flex-wrap: nowrap;

        gap: 7px;

        width: 100%;

        margin-bottom: 30px;

        overflow: hidden;

        white-space: nowrap;

        font-family: "Poppins", sans-serif;

        font-size: 9px;

        line-height: 1.4;

        color: #8a8a8a;

    }


    .news-breadcrumb a {

        display: inline-flex;

        align-items: center;

        gap: 5px;

        flex-shrink: 0;

        color: #555;

        text-decoration: none;

    }


    .news-breadcrumb a:first-child {

        font-weight: 500;

    }


    .news-breadcrumb a span {

        color: #b00000;

        font-size: 13px;

    }


    .breadcrumb-arrow {

        flex-shrink: 0;

        color: #b8b8b8;

        font-size: 12px;

    }


    /* =====================================================
       CABEÇALHO
    ===================================================== */

    .news-header {

        display: block;

        margin-bottom: 25px;

    }


    .news-eyebrow {

        display: inline-block;

        margin-bottom: 9px;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 700;

        letter-spacing: 1px;

        color: #b00000;

    }


    .news-header h1 {

        margin: 0 0 11px;

        font-family:
            "Playfair Display",
            Georgia,
            serif;

        font-size: 34px;

        font-weight: 600;

        line-height: 1.05;

        letter-spacing: -.025em;

        color: #181818;

    }


    .news-header h1::after {

        content: "";

        display: block;

        width: 38px;

        height: 2px;

        margin-top: 13px;

        background: #b00000;

    }


    .news-header p {

        max-width: 100%;

        margin: 0;

        font-family: "Poppins", sans-serif;

        font-size: 10.5px;

        font-weight: 400;

        line-height: 1.7;

        color: #6d6d6d;

    }


    /* =====================================================
       CATEGORIAS
    ===================================================== */

    .news-category-box {

        width: 100%;

        margin-top: 23px;

        padding: 14px;

        border: 1px solid #e5e5e5;

        border-left: 3px solid #b00000;

        background: #ffffff;

    }


    .news-category-box label {

        display: block;

        margin-bottom: 7px;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 700;

        letter-spacing: .8px;

        text-transform: uppercase;

        color: #333;

    }


    .news-category-box select {

        width: 100%;

        height: 40px;

        padding: 0 12px;

        border: 1px solid #dedede;

        border-radius: 2px;

        outline: none;

        background: #fff;

        color: #333;

        font-family: "Poppins", sans-serif;

        font-size: 9px;

        font-weight: 500;

        cursor: pointer;

    }


    .news-category-box select:focus {

        border-color: #b00000;

    }


    /* =====================================================
       FILTROS
    ===================================================== */

    .news-filters {

        display: flex;

        align-items: center;

        gap: 7px;

        width: 100%;

        margin:
            0 0 20px;

        padding:
            2px 0 8px;

        overflow-x: auto;

        overflow-y: hidden;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;

    }


    .news-filters::-webkit-scrollbar {

        display: none;

    }


    .news-filter {

        flex: 0 0 auto;

        height: 35px;

        min-width: auto;

        padding: 0 15px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        border: 1px solid #dedede;

        border-radius: 2px;

        background: #fff;

        color: #333;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 700;

        letter-spacing: .2px;

        text-decoration: none;

        transition: .2s ease;

    }


    .news-filter.active {

        background: #b00000;

        border-color: #b00000;

        color: #fff;

        box-shadow:
            0 4px 10px rgba(176, 0, 0, .13);

    }


    /* =====================================================
       NOTÍCIA PRINCIPAL
    ===================================================== */

    .news-featured-grid {

        display: block;

        width: 100%;

        margin-bottom: 16px;

    }


    .news-featured {

        width: 100%;

        overflow: hidden;

        border: 1px solid #e1e1e1;

        background: #fff;

        box-shadow:
            0 5px 18px rgba(0, 0, 0, .045);

    }


    /* =====================================================
       IMAGEM PRINCIPAL
    ===================================================== */

    .news-featured-image {

        position: relative;

        width: 100%;

        height: 245px;

        display: flex;

        align-items: center;

        justify-content: center;

        overflow: hidden;

        background: #f1f1f1;

    }


    .news-featured-image img {

        width: 100%;

        height: 100%;

        display: block;

        object-fit: cover;

        object-position: center;

        transition: transform .5s ease;

    }


    .news-featured:hover
    .news-featured-image img {

        transform: scale(1.015);

    }


    /* =====================================================
       CORPO DA NOTÍCIA PRINCIPAL
    ===================================================== */

    .news-featured-body {

        padding:
            18px
            17px
            19px;

    }


    .news-featured-body time {

        display: block;

        margin-bottom: 9px;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 600;

        letter-spacing: .4px;

        text-transform: uppercase;

        color: #8b8b8b;

    }


    .news-featured-body h2 {

        margin: 0 0 11px;

        font-family: "Poppins", sans-serif;

        font-size: 18px;

        font-weight: 700;

        line-height: 1.42;

        letter-spacing: -.01em;

    }


    .news-featured-body h2 a {

        color: #191919;

        text-decoration: none;

    }


    .news-featured-body p {

        margin: 0 0 15px;

        font-family: "Poppins", sans-serif;

        font-size: 10.5px;

        line-height: 1.72;

        color: #686868;

    }


    /* =====================================================
       LER MAIS
    ===================================================== */

    .news-read-more {

        display: inline-flex;

        align-items: center;

        gap: 7px;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 800;

        letter-spacing: .35px;

        text-transform: uppercase;

        color: #b00000;

        text-decoration: none;

    }


    .news-read-more span {

        font-size: 14px;

        transition: transform .2s ease;

    }


    .news-read-more:hover span {

        transform: translateX(4px);

    }


    /* =====================================================
       PARTILHA
    ===================================================== */

    .news-share {

        display: flex;

        align-items: center;

        flex-wrap: wrap;

        gap: 7px;

        margin-top: 17px;

        padding-top: 13px;

        border-top: 1px solid #eeeeee;

    }


    .news-share > span {

        margin-right: 3px;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 600;

        color: #555;

    }


    .news-share .share-btn {

        width: 28px;

        height: 28px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        padding: 0;

        border: none;

        border-radius: 50%;

        color: #fff;

    }


    .news-share .share-btn i {

        font-size: 10px;

        color: #fff;

    }


    /* =====================================================
       NOTÍCIAS SECUNDÁRIAS
    ===================================================== */

    .news-secondary-column {

        display: flex;

        flex-direction: column;

        gap: 12px;

        margin-top: 14px;

    }


    .news-secondary {

        display: grid;

        grid-template-columns: 38% 62%;

        min-height: 145px;

        overflow: hidden;

        border: 1px solid #e2e2e2;

        background: #fff;

        box-shadow:
            0 3px 12px rgba(0, 0, 0, .035);

    }


    .news-secondary-image {

        width: 100%;

        min-height: 145px;

        overflow: hidden;

        background: #f1f1f1;

    }


    .news-secondary-image img {

        width: 100%;

        height: 100%;

        display: block;

        object-fit: cover;

        object-position: center;

    }


    .news-secondary-body {

        min-width: 0;

        padding:
            14px
            13px;

    }


    .news-secondary-body time {

        display: block;

        margin-bottom: 7px;

        font-family: "Poppins", sans-serif;

        font-size: 7px;

        font-weight: 600;

        text-transform: uppercase;

        color: #8d8d8d;

    }


    .news-secondary-body h3 {

        margin: 0 0 12px;

        font-family: "Poppins", sans-serif;

        font-size: 11px;

        font-weight: 700;

        line-height: 1.48;

    }


    .news-secondary-body h3 a {

        color: #202020;

        text-decoration: none;

    }


    .news-secondary .news-read-more {

        font-size: 7.5px;

    }


    /* =====================================================
       GRID DAS RESTANTES
    ===================================================== */

    .news-grid {

        display: grid;

        grid-template-columns: 1fr;

        gap: 13px;

        margin-top: 15px;

    }


    .news-card {

        display: grid;

        grid-template-columns: 38% 62%;

        min-width: 0;

        overflow: hidden;

        border: 1px solid #e1e1e1;

        background: #fff;

        box-shadow:
            0 3px 12px rgba(0, 0, 0, .035);

    }


    .news-card-image {

        width: 100%;

        height: 150px;

        overflow: hidden;

        background: #f1f1f1;

    }


    .news-card-image img {

        width: 100%;

        height: 100%;

        display: block;

        object-fit: cover;

        object-position: center;

    }


    .news-card-body {

        min-width: 0;

        padding:
            14px
            13px;

    }


    .news-card-body time {

        margin-bottom: 7px;

        font-size: 7px;

        font-weight: 600;

    }


    .news-card-body h3 {

        margin: 0 0 9px;

        font-size: 11px;

        line-height: 1.48;

    }


    .news-card-body p {

        display: none;

    }


    .news-card-footer {

        display: block;

    }


    .news-card-footer .news-share {

        margin-top: 11px;

        padding-top: 10px;

    }


    .news-card-footer .news-share > span {

        display: none;

    }


    /* =====================================================
       PAGINAÇÃO
    ===================================================== */

    .news-pagination {

        width: 100%;

        margin-top: 42px;

        padding-top: 20px;

        border-top: 1px solid #e3e3e3;

    }


    .news-pagination-inner {

        width: 100%;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 7px;

    }


    .pagination-pages {

        display: flex;

        align-items: center;

        gap: 3px;

        max-width: calc(100% - 70px);

        overflow: hidden;

    }


    .pagination-page,
    .pagination-arrow {

        width: 32px;

        height: 32px;

        flex: 0 0 32px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        border-radius: 2px;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 600;

        text-decoration: none;

    }


    .pagination-page {

        border: 1px solid transparent;

        color: #555;

        background: transparent;

    }


    .pagination-page.active {

        border-color: #b00000;

        background: #b00000;

        color: #fff;

        box-shadow:
            0 4px 9px rgba(176, 0, 0, .14);

    }


    .pagination-arrow {

        border: 1px solid #dcdcdc;

        background: #fff;

        color: #333;

    }


    .pagination-arrow.disabled {

        border-color: #eeeeee;

        background: #f5f5f5;

        color: #c8c8c8;

    }


    .pagination-arrow i {

        font-size: 8px;

    }


    /* =====================================================
       EMPTY
    ===================================================== */

    .news-empty {

        padding:
            60px 20px;

        border: 1px solid #e5e5e5;

        background: #fff;

        text-align: center;

    }


    .news-empty h3 {

        margin: 0 0 8px;

        font-family: "Playfair Display", Georgia, serif;

        font-size: 20px;

        font-weight: 600;

        color: #222;

    }


    .news-empty p {

        margin: 0;

        font-family: "Poppins", sans-serif;

        font-size: 10px;

        line-height: 1.6;

        color: #777;

    }


    /* =====================================================
       SHOW — LAYOUT
    ===================================================== */

    .news-show-layout {

        display: block;

    }


    .news-article {

        width: 100%;

        max-width: none;

    }


    /* =====================================================
       CATEGORIA SHOW
    ===================================================== */

    .news-article-category {

        display: inline-block;

        margin-bottom: 9px;

        padding-left: 9px;

        border-left: 2px solid #b00000;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 800;

        letter-spacing: .7px;

        color: #b00000;

    }


    /* =====================================================
       TÍTULO SHOW
    ===================================================== */

    .news-article h1 {

        width: 100%;

        margin: 0 0 14px;

        font-family:
            "Playfair Display",
            Georgia,
            serif;

        font-size: 20px;

        font-weight: 600;

        line-height: 1.2;

        letter-spacing: -.018em;

        color: #181818;

        overflow-wrap: break-word;

    }


    /* =====================================================
       META SHOW
    ===================================================== */

    .news-article-meta {

        display: flex;

        align-items: center;

        flex-wrap: wrap;

        gap: 7px;

        margin-bottom: 18px;

        padding-bottom: 15px;

        border-bottom: 1px solid #ededed;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        line-height: 1.5;

        color: #888;

    }


    /* =====================================================
       PARTILHA SHOW
    ===================================================== */

    .news-article-share {

        display: flex;

        align-items: center;

        flex-wrap: wrap;

        gap: 7px;

        margin-bottom: 20px;

    }


    .news-article-share > span {

        margin-right: 3px;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 600;

        color: #555;

    }


    .news-article-share .share-btn {

        width: 29px;

        height: 29px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        border: none;

        border-radius: 50%;

    }


    .news-article-share .share-btn i {

        font-size: 10px;

    }


    /* =====================================================
       IMAGEM SHOW
    ===================================================== */

    .news-article-image {

        width: 100%;

        height: 255px;

        display: flex;

        align-items: center;

        justify-content: center;

        overflow: hidden;

        margin-bottom: 22px;

        background: #eeeeee;

    }


    .news-article-image img {

        width: 100%;

        height: 100%;

        display: block;

        object-fit: cover;

        object-position: center;

    }


    /* =====================================================
       CONTEÚDO DA NOTÍCIA
    ===================================================== */

    .news-article-content {

        width: 100%;

        margin-top: 0;

    }


    .news-article-content p {

        margin: 0 0 20px;

        font-family:
            Georgia,
            "Times New Roman",
            serif;

        font-size: 16px;

        font-weight: 400;

        line-height: 1.85;

        color: #292929;
text-align: justify;

        text-justify: inter-word;

    }


    .news-article-content p:first-child::first-letter {

        font-size: 34px;

        font-weight: 600;

        line-height: .8;

        float: left;

        margin:
            5px
            5px
            0
            0;

        color: #b00000;

    }


    /* =====================================================
       NAVEGAÇÃO ENTRE NOTÍCIAS
    ===================================================== */

    .news-article-navigation {

        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 38px;

        padding-top: 20px;

        border-top: 1px solid #dedede;

    }


    .news-nav-item {

        min-height: 76px;

        padding:
            14px
            15px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 7px;

        border: 1px solid #e3e3e3;

        border-left: 2px solid #b00000;

        background: #fff;

        box-shadow:
            0 3px 10px rgba(0, 0, 0, .025);

    }


    .news-nav-item span {

        font-family: "Poppins", sans-serif;

        font-size: 7px;

        font-weight: 800;

        letter-spacing: .7px;

        color: #999;

    }


    .news-nav-item a {

        display: flex;

        align-items: flex-start;

        gap: 7px;

        font-family: "Poppins", sans-serif;

        font-size: 9.5px;

        font-weight: 600;

        line-height: 1.5;

        color: #252525;

        text-decoration: none;

    }


    .news-nav-item a:hover {

        color: #b00000;

    }


    .news-nav-next {

        text-align: left;

        border-left: 2px solid #b00000;

    }


    /* =====================================================
       SIDEBAR
    ===================================================== */

    .news-sidebar {

        display: flex;

        flex-direction: column;

        gap: 15px;

        margin-top: 38px;

        padding-top: 25px;

        border-top: 2px solid #e6e6e6;

    }


    .news-sidebar-box {

        padding:
            17px
            15px;

        border: 1px solid #e3e3e3;

        background: #fff;

        box-shadow:
            0 3px 12px rgba(0, 0, 0, .025);

    }


    .news-sidebar-box h2 {

        position: relative;

        margin: 0 0 15px;

        padding-bottom: 10px;

        border-bottom: 1px solid #dedede;

        font-family: "Poppins", sans-serif;

        font-size: 10px;

        font-weight: 800;

        letter-spacing: .4px;

        color: #222;

    }


    .news-sidebar-box h2::after {

        content: "";

        position: absolute;

        left: 0;

        bottom: -1px;

        width: 28px;

        height: 2px;

        background: #b00000;

    }


    /* =====================================================
       ÚLTIMAS NOTÍCIAS
    ===================================================== */

    .news-latest {

        display: grid;

        grid-template-columns: 68px 1fr;

        gap: 11px;

        padding: 11px 0;

        border-bottom: 1px solid #ededed;

    }


    .news-latest:first-child {

        padding-top: 0;

    }


    .news-latest:last-child {

        border-bottom: none;

    }


    .news-latest-image {

        width: 68px;

        height: 55px;

        overflow: hidden;

        background: #eeeeee;

    }


    .news-latest-image img {

        width: 100%;

        height: 100%;

        display: block;

        object-fit: cover;

    }


    .news-latest time {

        display: block;

        margin-bottom: 4px;

        font-family: "Poppins", sans-serif;

        font-size: 7px;

        text-transform: uppercase;

        color: #999;

    }


    .news-latest h3 {

        margin: 0;

        font-family: "Poppins", sans-serif;

        font-size: 9px;

        line-height: 1.45;

        font-weight: 600;

    }


    .news-latest h3 a {

        color: #252525;

        text-decoration: none;

    }


    .news-sidebar-button {

        height: 35px;

        margin-top: 15px;

        display: flex;

        align-items: center;

        justify-content: center;

        border: 1px solid #b00000;

        background: #fff;

        color: #b00000;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        font-weight: 800;

        letter-spacing: .3px;

        text-decoration: none;

        transition: .2s ease;

    }


    .news-sidebar-button:hover {

        background: #b00000;

        color: #fff;

    }


    /* =====================================================
       CATEGORIAS SIDEBAR
    ===================================================== */

    .news-sidebar-categories select {

        width: 100%;

        height: 37px;

        margin-bottom: 11px;

        padding: 0 10px;

        border: 1px solid #ddd;

        background: #fff;

        color: #333;

        font-family: "Poppins", sans-serif;

        font-size: 8px;

        outline: none;

    }


    .news-sidebar-categories ul {

        margin: 0;

        padding: 0;

        list-style: none;

    }


    .news-sidebar-categories li {

        padding: 8px 0;

        border-bottom: 1px solid #eeeeee;

        font-family: "Poppins", sans-serif;

        font-size: 8.5px;

        color: #444;

    }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 390px) {

    .news-container,
    .news-show-container {

        width: calc(100% - 22px);

    }


    .news-page,
    .news-show-page {

        padding-top: 20px;

    }


    .news-header h1 {

        font-size: 31px;

    }


    .news-header p {

        font-size: 10px;

    }


    .news-featured-image {

        height: 225px;

    }


    .news-featured-body {

        padding:
            16px
            14px
            18px;

    }


    .news-featured-body h2 {

        font-size: 17px;

        line-height: 1.42;

    }


    .news-featured-body p {

        font-size: 10px;

    }


    .news-secondary {

        grid-template-columns: 40% 60%;

        min-height: 135px;

    }


    .news-secondary-image {

        min-height: 135px;

    }


    .news-secondary-body {

        padding: 12px;

    }


    .news-secondary-body h3 {

        font-size: 10px;

    }


    .news-card {

        grid-template-columns: 40% 60%;

    }


    .news-card-image {

        height: 140px;

    }


    .news-card-body {

        padding: 12px;

    }


    .news-card-body h3 {

        font-size: 10px;

    }


    .news-article h1 {

        font-size: 25px;

        line-height: 1.22;

    }


    .news-article-image {

        height: 230px;

    }


    .news-article-content p {

        font-size: 15.5px;

        line-height: 1.85;

    }


    .news-pagination-inner {

        gap: 5px;

    }


    .pagination-page,
    .pagination-arrow {

        width: 30px;

        height: 30px;

        flex-basis: 30px;

    }

}


/* =========================================================
   IPHONE MUITO PEQUENO
========================================================= */

@media (max-width: 360px) {

    .news-container,
    .news-show-container {

        width: calc(100% - 20px);

    }


    .news-header h1 {

        font-size: 29px;

    }


    .news-featured-image {

        height: 210px;

    }


    .news-article h1 {

        font-size: 23px;

    }


    .news-article-image {

        height: 215px;

    }


    .news-article-content p {

        font-size: 15px;

        line-height: 1.82;

    }

}