/*
Theme Name: Jumper Brasil 10.0 (2026)
Theme URI: https://jumperbrasil.com.br
Author: Tiago de Vasconcelos e Felipe Silva
Author URI: https://jumperbrasil.com.br
Description: Tema oficial do Jumper Brasil com design clean e alta performance
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: jumperbrasil10
*/

/* ==========================================================================
   FONTES LOCAIS (Performance)
   ========================================================================== */

/* Source Serif 4 - 500 (Medium) */
@font-face {
    font-display: swap;
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/source-serif-4-v14-latin-500.woff2') format('woff2');
}

/* Source Serif 4 - 700 (Bold) */
@font-face {
    font-display: swap;
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/source-serif-4-v14-latin-700.woff2') format('woff2');
}

/* Source Serif 4 - 800 (ExtraBold) */
@font-face {
    font-display: swap;
    font-family: 'Source Serif 4';
    font-style: normal;
    font-weight: 800;
    src: url('fonts/source-serif-4-v14-latin-800.woff2') format('woff2');
}

/* ==========================================================================
VARIÁVEIS GLOBAIS (:root)
========================================================================== */
:root {
    /* Cores do Tema Base */
    --color-background: #ffffff;
    --color-text: #222222;
    --color-accent: rgb(21, 25, 29);

    /* Tipografia */
    --font-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', 'Open Sans', Arial, sans-serif;
    --font-destaque: "Source Serif 4", serif;

    /* Medidas de Layout */
    --main__content_width: 1320px;
    --post__header__title__width: 750px;
    --post__thumb__width: 1200px;
    --post__content__width: 640px;

    /* Variáveis Específicas do Novo Header (Clean) */
    --nav-bg-color: #ffffff;
    --nav-text-main: #111827;
    --nav-text-muted: #6b7280;
    --nav-accent: #db3021;
    /* Laranja Jumper */
    --nav-border-light: #f3f4f6;
}

/* ==========================================================================
RESET E CONFIGURAÇÕES BASE
========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 12px;
}

body {
    font-family: var(--font-base);
    background: var(--color-background);
    color: var(--color-text);
}

/* Esconde o título das seções aria-labelledby */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Imagem responsiva */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Reduzir gutter em telas menores para evitar overflow horizontal */
@media (max-width: 991.98px) {
    .g-5 {
        --bs-gutter-x: 1rem;
    }
}

@media (max-width: 575.98px) {
    .g-5 {
        --bs-gutter-x: 0.5rem;
    }
}

/* ==========================================================================
HEADER E NAVEGAÇÃO
========================================================================== */
.header-clean {
    background-color: var(--nav-bg-color);
    border-bottom: 1px solid var(--nav-border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: var(--font-base);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    background-color: var(--nav-bg-color);
    position: relative;
    z-index: 101;
}

.logo-clean {
    font-size: 24px;
    font-weight: 800;
    color: var(--nav-text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-clean span {
    color: var(--nav-accent);
}

/* Navegação Desktop */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop>a,
.dropbtn-clean {
    color: var(--nav-text-muted);
    text-decoration: none;
    font-family: var(--font-base);
    font-size: 15px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 24px 0;
    transition: color 0.2s;
}

.nav-desktop>a:hover,
.dropbtn-clean:hover {
    color: var(--nav-text-main);
}

/* Dropdown de Equipes */
.dropdown-clean {
    position: relative;
}

.dropdown-content-clean {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--nav-bg-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid var(--nav-border-light);
}

.dropdown-clean:hover .dropdown-content-clean {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.conferencia {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
}

.conferencia span {
    font-size: 12px;
    font-weight: 700;
    color: var(--nav-text-main);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.conferencia a {
    font-size: 14px;
    color: var(--nav-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.conferencia a:hover {
    color: var(--nav-accent);
}

/* Ícones de Ação (Busca e Mobile) */
.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--nav-text-main);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.icon-btn:hover {
    color: var(--nav-accent);
}

.menu-icon {
    display: none;
}

/* Gaveta de Busca Deslizante */
.search-overlay-clean {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg-color);
    border-bottom: 1px solid var(--nav-border-light);
    padding: 24px 20px;
    box-sizing: border-box;
    z-index: 98;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
}

.search-overlay-clean.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-form-clean {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
}

.search-input-clean {
    flex: 1;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    background: transparent;
    padding: 12px 0;
    font-size: 20px;
    color: var(--nav-text-main);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input-clean:focus {
    border-color: var(--nav-accent);
}

.search-input-clean::placeholder {
    color: #9ca3af;
    font-weight: 300;
}

.search-submit-clean {
    background-color: var(--nav-text-main);
    color: var(--nav-bg-color);
    border: none;
    padding: 0 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-submit-clean:hover {
    background-color: var(--nav-accent);
}

/* Menu Mobile (Overlay Tela Cheia) */
.mobile-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--nav-bg-color);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 20px 5%;
    box-sizing: border-box;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
}

.mobile-menu-content a {
    font-size: 22px;
    font-weight: 600;
    color: var(--nav-text-main);
    text-decoration: none;
}

.mobile-section {
    font-size: 13px;
    font-weight: 700;
    color: var(--nav-accent);
    text-transform: uppercase;
    margin-top: 24px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--nav-border-light);
    padding-bottom: 8px;
}

.mobile-menu-content .sub-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--nav-text-muted);
    padding-left: 10px;
    margin-top: 4px;
}

/* Responsividade Header */
@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .search-form-clean {
        flex-direction: column;
    }

    .search-submit-clean {
        padding: 12px;
    }
}

/* ==========================================================================
BANNERS E ANÚNCIOS
========================================================================== */
.banner__top {
    background: #fcfcfc;
    min-height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.banner__home__mid {
    background: #fcfcfc;
    min-height: 260px;
    text-align: center;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.banner_side {
    text-align: center;
    min-height: 260px;
}

.ads_single_content {
    text-align: center;
    margin: 2.5rem 0;
}

.ads_single_content_title {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.ads_float_bottom2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 9998;
    line-height: 0;
}

@media (max-width: 900px) {
    .banner__top {
        min-height: 120px;
    }

    .banner_side {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
}

/* ==========================================================================
COMPONENTES: JUMPER BRASIL CARDS
========================================================================== */
article.jb-card {
    font-family: var(--font-base);
    cursor: pointer;
}

article.jb-card a {
    color: initial;
    text-decoration: none;
}

article.jb-card h3 {
    font-family: var(--font-destaque);
    font-optical-sizing: auto;
    font-weight: bold;
    display: inline;
    vertical-align: middle;
    margin: 0;
}

article.jb-card:hover .img-fluid {
    filter: brightness(80%);
    transition: filter 0.3s ease;
}

article.jb-card:hover h3,
article.jb-card:hover h3 a {
    color: #666;
    text-decoration: none;
}

article.jb-card span.opinion {
    background-color: #c51809;
    padding: 3rem;
    font-size: 0.8rem;
}

article.jb-card span.category {
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 0.75rem;
    padding-bottom: 0.6rem;
}

article.jb-card span.post__comments_number {
    display: block;
    padding-top: 1rem;
    font-weight: bold;
    font-size: 1.0rem;
    color: #c51809;
}

article.jb-card span.post__comment__svg {
    font-family: var(--font-base);
    font-size: 1.2rem;
    color: #c51809;
    display: inline-flex;
    align-items: flex-end;
    gap: 0.2rem;
    vertical-align: middle;
    margin-left: 0.5rem;
}

article.jb-card span.post__comment__svg svg {
    fill: #c51809;
    width: 1em;
    height: 1em;
    display: inline-block;
}

article.jb-card time.human_time_diff {
    color: #555;
    padding-top: 0.3rem;
    padding-bottom: 0.6rem;
    display: block;
}

@media (max-width: 900px) {
    article.jb-card span.category {
        padding-top: 0.0rem;
    }

    article.jb-card time.human_time_diff {
        display: none;
    }
}

/* ==========================================================================
   7. PÁGINA: HOME
   ========================================================================== */
.home__container {
    max-width: var(--main__content_width);
}

.home__container h2 {
    font-family: var(--font-destaque);
    font-size: 2.5rem;
    padding-bottom: 1.5rem;
}

/* Destaque Principal */
.post__featured {
    margin-bottom: 3rem;
}

.post__featured h3 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 4.3rem;
}

.post__featured span.excerpt {
    display: block;
    padding-top: 1rem;
    font-size: 1.4rem;
    line-height: 2rem;
}

@media (max-width: 767.98px) {
    .post__featured h3 {
        font-size: 3.0rem;
        line-height: 3.5rem;
    }

    .post__featured__title {
        margin-top: 1rem;
    }

    .post__featured span.excerpt {
        font-size: 1.35rem;
        line-height: 1.8rem;
    }

    .post__featured__title__excerpt {
        margin-top: 0;
    }
}

/* Blocos Secundários Home */
.post__featured__bottom h3 {
    font-weight: 600 !important;
    font-size: 1.7rem;
    line-height: 2.3rem;
}

.post__featured__bottom img {
    display: block;
}

@media (max-width: 767.98px) {
    .post__featured__bottom h3 {
        padding-top: 0;
        line-height: 2.0rem;
        font-weight: 500;
    }
}

.post__featured__right {
    margin-top: 2rem;
}

.post__featured__right h3 {
    font-weight: 500 !important;
    font-size: 1.4rem;
    line-height: 2.0rem;
}

/* Últimas Notícias */
.last__news__01 h3 {
    font-weight: 500 !important;
    font-size: 1.7rem;
    line-height: 2.3rem;
}

.last__news__01__card__second__line {
    margin-top: 2rem;
}

.last__news__02 {
    margin-bottom: 4.0rem;
}

.last__news__02 time.human_time_diff {
    padding-top: 0 !important;
}

.last__news__02 h3 {
    font-family: var(--font-destaque) !important;
    font-optical-sizing: auto;
    font-weight: 500 !important;
    font-size: 2.10rem;
    line-height: 2.60rem;
}

.last__news__02 span.excerpt {
    margin-top: 0.4em;
    display: block;
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: #444;
}

.last__news__02 .post__comments_number {
    display: block;
    color: #c51809;
    font-weight: bold;
    font-size: 1.0rem;
}

@media (max-width: 767.98px) {
    .post__featured__right h3 {
        font-size: 1.65rem;
        line-height: 2.0rem;
    }

    .last__news__01__card__second__line {
        margin-top: 2.0rem;
        border-top: 1px solid #ececec;
        padding-top: 1.5rem;
    }

    .last__news__02 h3 {
        font-size: 1.65rem;
        line-height: 2.0rem;
        margin-bottom: 0.3rem;
    }

    .last__news__02 .excerpt {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }

    .last__news__02 {
        padding-left: 0.5rem;
    }

    .last__news__02 .human_time_diff {
        display: block;
        color: #777;
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
}

/* As Mais Lidas */
.most__read__sec {
    background-color: #f7f7f7;
    padding: 2rem;
    margin-top: 2rem;
}

article.most__read__card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

article.most__read__card figure {
    width: 100%;
    margin: 0;
}

article.most__read__card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    filter: grayscale(100%) brightness(1.2);
}

article.most__read__card h3 {
    font-family: var(--font-base);
    font-optical-sizing: auto;
    font-size: 1.40rem;
    font-weight: 400;
}

article.most__read__card span.post__comments_number,
article.most__read__card span.post__comment__svg {
    color: #000;
}

article.most__read__card span.post__comment__svg svg {
    fill: #000;
}

/* ==========================================================================
PÁGINA: SINGLE POST
========================================================================== */
header.post__header {
    max-width: 900px;
    margin: 0 auto;
}

.post__header__title {
    max-width: var(--post__header__title__width);
    margin: 0 auto;
}

.post__header__title h1.post__title {
    font-size: 4.5rem;
    line-height: 4.8rem;
    font-weight: bold;
    font-family: var(--font-destaque);
}

.post__header__title span.post__excerpt {
    display: inline-block;
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
    font-size: 1.7rem;
}

.post__meta {
    max-width: var(--post__header__title__width);
    margin: 0 auto;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .4vw;
}

.post__meta span.post__author {
    color: #333;
    font-style: normal;
    font-size: 1.15rem;
}

.post__meta span.post__author a {
    color: inherit;
    font-weight: bold;
    text-decoration: none;
}

.post__meta time {
    color: #333;
    font-size: 1.15rem;
}

/* Redes Sociais do Post */
nav.post__share__social {
    max-width: var(--post__header__title__width);
    margin: 0 auto;
    padding-bottom: 2.5vw;
    display: flex;
}

nav.post__share__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.0rem;
    width: 3.0rem;
    background-color: #d62b2b;
    border-radius: 30px;
}

nav.post__share__social .button__share {
    margin-right: 1.0rem;
}

nav.post__share__social .share__whatsapp {
    background-color: #65cd72;
}

nav.post__share__social .share__x__tt {
    background-color: #000;
}

nav.post__share__social .share__fb {
    background-color: #3678ea;
}

nav.post__share__social .share__tele {
    background-color: #31a4df;
}

figure.post__figure img.post__thumbnail {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 8px;
}

figure.post__figure figcaption {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.8rem;
    text-align: right;
    font-style: italic;
}

/* Conteúdo da Notícia */
.post__content {
    margin: 0 auto;
    max-width: var(--post__content__width);
    margin-top: 3rem;
}

.post__content p {
    padding-bottom: 1.5rem;
    font-size: 1.55rem;
    line-height: 1.8;
    text-align: justify;
}

.post__content h2,
.post__content h3,
.post__content h4 {
    font-family: var(--font-destaque);
    color: var(--color-accent);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post__content h2 {
    font-size: 2.6rem;
}

.post__content h3 {
    font-size: 2.2rem;
}

.post__content h4 {
    font-size: 1.9rem;
}

.post__content a {
    text-decoration: none;
    font-weight: bold;
    color: #c31305;
}

.post__content ul {
    padding-top: 1.0rem;
    padding-bottom: 1rem;
}

.post__content ul li {
    list-style: inside;
    font-size: 1.55rem;
    padding-bottom: 0.85rem;
    color: #000;
}

.post__content ul li a {
    font-weight: 500;
}

.post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 2.5rem 0;
}

.post__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    font-size: 1.4rem;
}

.post__content th,
.post__content td {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.post__content th {
    background-color: #f9fafb;
    font-weight: bold;
    color: #111827;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

/* Inscrição e Meta Footer */
aside.post__subscribe {
    padding: 20px;
    background-color: #fede33;
    margin: 30px auto;
    max-width: var(--post__content__width);
}

aside.post__subscribe span.highligh__follow {
    font-size: 1.85rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.2rem;
    display: inline-block;
}

aside.post__subscribe p {
    font-size: 1.30rem;
    color: #333;
    padding-bottom: 1rem;
    line-height: 2rem;
}

aside.post__subscribe ul {
    list-style-type: none;
}

aside.post__subscribe ul li {
    margin-bottom: .8rem;
    margin-right: .8rem;
    display: inline-block;
    border: 1px solid #333533;
    border-radius: 3px;
    padding: 10px;
    font-size: 1.2rem;
}

aside.post__subscribe ul li a {
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.post__footer {
    margin: 30px auto;
    max-width: var(--post__content__width);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.post__footer ul.post__categories {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.post__footer ul.post__categories li {
    display: inline-block;
    padding: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: #eee;
    font-size: 1.05rem;
}

.post__footer ul.post__categories li a {
    color: #333;
    text-decoration: none;
}

.post__author__bio {
    margin: 30px auto;
    max-width: var(--post__content__width);
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 30px;
    font-size: 1.2rem;
    text-align: justify;
}

.post__author__bio h2 {
    font-size: 2rem;
    padding-bottom: 2rem;
    font-weight: normal;
    color: #333;
}

.post__author__bio .avatar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.post__author__bio h3.author__bio__name {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c51809;
    margin-bottom: 0.5rem;
}

.post__author__bio h3.author__bio__name a {
    color: inherit;
    text-decoration: none;
}

.post__related {
    margin: 30px auto;
    max-width: var(--post__content__width);
}

.post__related h2 {
    font-size: 2rem;
    padding-bottom: 2rem;
    font-weight: normal;
    color: #333;
}

.post__related figure img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 6px;
}

.post__related .related-post-item {
    display: block;
    color: #222;
    font-size: 1.50rem;
    font-family: var(--font-base);
    font-weight: normal;
    margin-top: 0.7rem;
    margin-bottom: 1.2rem;
    text-decoration: none;
}

.post__comments {
    margin: 30px auto;
    max-width: var(--post__content__width);
}

.post__comments h2 {
    font-size: 2rem;
    padding-bottom: 2rem;
    font-weight: normal;
    color: #333;
}

#disqus_thread {
    min-height: 300px;
}

/* Responsivo Single.php */
@media (max-width: 767.98px) {
    .post__header__title h1.post__title {
        font-size: 3.2rem;
        line-height: 3.8rem;
    }

    .post__header__title span.post__excerpt {
        font-size: 1.4rem;
    }

    figure.post__figure {
        padding-top: 2.0rem;
    }

    .post__content p {
        font-size: 1.40rem;
    }

    .post__content ul li {
        font-size: 1.35rem;
    }

    .post__subscribe span.highligh__follow {
        font-size: 1.55rem;
    }

    .post__subscribe p {
        font-size: 1.10rem;
    }

    .post__subscribe ul li {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .post__content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border: 1px solid #e5e7eb;
    }
}

@media (min-width: 768px) {
    .post__content table {
        display: table;
        table-layout: auto;
    }
}

/* ==========================================================================
   9. PÁGINA: CATEGORY
   ========================================================================== */
.category__container {
    max-width: var(--main__content_width);
    margin-top: 3rem;
}

/* Estilo do Cabeçalho da Editoria */
.category__container header.page-header {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.category__container header h1 {
    font-family: var(--font-destaque);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--nav-text-main, #111827);
}

.category-description {
    font-size: 1.4rem;
    color: #4b5563;
    font-weight: 500;
}

/* Alinhamento do Anúncio (Sidebar) */
.category__container .col-md-3 {
    text-align: center;
    /* Centraliza o banner no celular */
}

article.category__featured h3 {
    display: inline-block;
    padding-top: 1.2rem;
    padding-bottom: 0.6rem;
}

.pagination-wrapper {
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: center;
}

.pagination-wrapper h2.screen-reader-text {
    display: none;
    /* Esconde o título "Navegação de posts" do visual */
}

.pagination-wrapper .nav-links {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 0.8rem 1.4rem;
    background-color: #f3f4f6;
    /* Fundo cinza clarinho */
    color: #111827;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s;
}

/* O botão da página atual ou quando passa o mouse */
.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
    background-color: #db3021;
    /* Cor de destaque (Vermelho/Laranja Jumper) */
    color: #ffffff;
}

@media (max-width: 767px) {
    .category__container header.page-header {
        margin-bottom: 2rem;
    }

    .category__container header h1 {
        font-size: 2.6rem;
        /* Encolhe o título "NBA" ou "NBB" para caber bem */
    }

    .category-description {
        font-size: 1.15rem;
    }

    /* Dá um respiro para o anúncio não colar na notícia de cima e na de baixo */
    .category__container .col-md-3 {
        margin-top: 2.5rem;
        margin-bottom: 3rem;
    }

    article.category__featured h3 {
        font-size: 2.3rem;
        line-height: 3.0rem;
    }

    /* Ajuste fino dos botões de paginação para dedos (Touch Target) */
    .pagination-wrapper .page-numbers {
        padding: 1rem 1.2rem;
    }
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.site-footer {
    background: #212529;
    color: #fff;
    padding: 25px 0 20px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-widgets-area {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.footer-widget {
    flex: 1 1 250px;
    min-width: 200px;
}

.widget-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
}

.footer-menu,
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.social-links li {
    margin-bottom: 10px;
    display: inline-block;
    margin-right: 8px;
}

.footer-menu a,
.social-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-menu a:hover,
.social-links a:hover {
    color: #fff;
}

.site-info {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 15px;
}

.copyright {
    margin-bottom: 5px;
}

@media (max-width: 800px) {
    .footer-widgets-area {
        gap: 20px;
    }

    .footer-widget {
        min-width: 0;
    }
}

/* ==========================================================================
   11. PÁGINA: AUTOR (author.php)
   ========================================================================== */
.author__header {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #f8f9fa;
    /* Fundo cinza bem suave */
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    border: 1px solid #e5e7eb;
}

.author__avatar img {
    border-radius: 50%;
    width: 130px;
    height: 130px;
    object-fit: cover;
    border: 3px solid var(--nav-accent, #db3021);
    /* Borda laranja Jumper */
    padding: 4px;
    /* Efeito de anel ao redor da foto */
    background: #fff;
}

.author__info {
    flex: 1;
}

.author__name {
    font-family: var(--font-destaque);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--nav-text-main);
}

.author__bio {
    font-size: 1.45rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0;
}

/* Responsividade do Perfil do Autor */
@media (max-width: 767px) {
    .author__header {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }

    .author__avatar img {
        width: 100px;
        height: 100px;
    }

    .author__name {
        font-size: 2.6rem;
    }

    .author__bio {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
AVISO DE COOKIES (LGPD)
========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3c3c3c;
    /* Fundo escuro */
    color: #ffffff;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem 0;
    font-family: var(--font-base);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: #ffffff;
}

.cookie-actions {
    flex-shrink: 0;
}

.btn-cookie {
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-accept {
    background-color: #b42615;
    /* Verde conversão */
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #16a34a;
}

/* Responsividade do Banner */
@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .btn-cookie {
        width: 100%;
        padding: 1.2rem;
    }
}

/* ==========================================================================
ESTRUTURA GLOBAL DE PÁGINAS (Padrão para qualquer template)
========================================================================== */

/* Container Mestre da Página */
.page__container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 5rem;
}

/* Cabeçalho Padrão das Páginas */
.page__header {
    text-align: left;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

/* Título H1 Mestre */
.page__title {
    font-family: var(--font-base, serif);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--nav-text-main, #111827);
    margin-bottom: 1.5rem;
}

/* Área de Texto Padrão (Semelhante ao post__content, mas para páginas) */
.page__content {
    margin: 0 auto;
    max-width: 850px;
    /* Largura ideal para leitura de páginas institucionais/guias */
}

.page__content p {
    font-size: 1.55rem;
    line-height: 1.6;
    color: #4b5563;
    text-align: justify;
    margin-bottom: 1.5rem;
}

/* Responsividade Global de Páginas */
@media (max-width: 767px) {
    .page__header {
        margin-top: 2.5rem;
        margin-bottom: 2rem;
    }

    .page__title {
        font-size: 2.5rem;
    }

    .page__content p {
        font-size: 1.15rem;
    }
}

/* ==========================================================================
PÁGINA: CLASSIFICAÇÃO DA NBA
========================================================================== */

/* Como a tabela de classificação tem muitas colunas (10), 
   nós forçamos o container desta página específica a ser mais largo */
.page-classificacao .page__container {
    max-width: 1100px;
}

/* Filtros (Botões Liga, Leste, Oeste) */
.page-classificacao .standings-filters {
    margin-bottom: 2.5rem;
}

.page-classificacao .filter-btn {
    font-family: var(--font-base);
    letter-spacing: 0.5px;
    padding: 0.8rem 1.3rem;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

/* Container da Tabela */
.page-classificacao .table-responsive {
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.page-classificacao .standings-table {
    margin-bottom: 0;
    /* Remove margem extra do Bootstrap na base da div */
    font-size: 1.15rem;
    white-space: nowrap;
    /* Impede que textos quebrem de linha e amassem a tabela */
    width: 100% !important;
}

/* Cabeçalho da Tabela */
.page-classificacao .table-dark {
    background-color: transparent;
}

.page-classificacao .table-dark th {
    background-color: transparent;
    color: #333;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 1.2rem 0.5rem;
    border-bottom: none;
    text-align: center;
}

/* Alinhamento Específico: Nome do time fica à esquerda, o resto centralizado */
.page-classificacao .table-dark th:nth-child(2) {
    text-align: left;
    padding-left: 1rem;
}

/* Células da Tabela (td) */
.page-classificacao .standings-table td {
    padding: 1rem 0.5rem;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

/* Célula Específica do Nome do Time e Logo */
.page-classificacao .standings-table td:nth-child(2) {
    text-align: left;
    font-weight: 700;
    color: #111827;
    padding-left: 1rem;
    display: flex;
    align-items: center;
}

/* Destaque para as colunas mais importantes (Vitórias e %) */
.page-classificacao .standings-table td:nth-child(3),
.page-classificacao .standings-table td:nth-child(5) {
    font-weight: 800;
    color: #111827;
}

/* Cores Elegantes das Zonas de Classificação 
   (Sobrescrevendo as cores berrantes nativas do Bootstrap) */
.page-classificacao .table-success td {
    background-color: #f0fdf4 !important;
}

.page-classificacao .table-warning td {
    background-color: #fefce8 !important;
}

.page-classificacao .table-danger td {
    background-color: #fef2f2 !important;
    color: #9ca3af;
}

/* Times eliminados ficam meio apagados */

/* Hover na Tabela Interativa */
.page-classificacao .table-success:hover td {
    background-color: #dcfce7 !important;
}

.page-classificacao .table-warning:hover td {
    background-color: #fef08a !important;
}

.page-classificacao .table-danger:hover td {
    background-color: #fee2e2 !important;
}

/* Box do Glossário */
.page-classificacao .glossary-box {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
    font-size: 1.15rem;
}

@media (max-width: 991px) {

    /* 1. Ajustes de Tipografia e Espaçamento para caber mais dados */
    .page-classificacao .standings-table {
        font-size: 1rem;
        /* Reduz de 1.15rem para 1rem */
    }

    .page-classificacao .standings-table td,
    .page-classificacao .table-dark th {
        padding: 0.8rem 0.5rem;
        /* Aperta um pouco as células */
    }

    /* 2. Fixando o Nome do Time e garantindo legibilidade absoluta */
    .page-classificacao .standings-table th:nth-child(2),
    .page-classificacao .standings-table td:nth-child(2) {
        position: sticky;
        left: 0;
        z-index: 2;
        color: #111827;
        /* Força o texto a ser escuro */
    }

    /* Fundo branco sólido para as células do time */
    .page-classificacao .standings-table td:nth-child(2) {
        background-color: #ffffff;
        white-space: normal;
        /* Permite que o nome do time quebre linha */
        min-width: 120px;
    }

    /* Fundo cinza bem claro para o cabeçalho do time (Adeus, fundo preto!) */
    .page-classificacao .standings-table th:nth-child(2) {
        background-color: #f9fafb;
    }

    /* 3. Recuperando as cores de fundo na coluna fixada */
    .page-classificacao .table-success td:nth-child(2) {
        background-color: #f0fdf4 !important;
    }

    .page-classificacao .table-warning td:nth-child(2) {
        background-color: #fefce8 !important;
    }

    .page-classificacao .table-danger td:nth-child(2) {
        background-color: #fef2f2 !important;
    }

    /* 4. Sombra para indicar que há conteúdo escondido rolando por baixo */
    .page-classificacao .standings-table td:nth-child(2)::after,
    .page-classificacao .standings-table th:nth-child(2)::after {
        content: '';
        position: absolute;
        top: 0;
        right: -5px;
        /* Empurra a sombra para fora da célula */
        bottom: 0;
        width: 5px;
        box-shadow: inset 5px 0 5px -5px rgba(0, 0, 0, 0.2);
    }

    /* 5. Esconde colunas menos importantes no mobile para a tabela respirar */
    /* 6=GB, 7=CASA, 8=FORA, 9=U10 */
    .page-classificacao .standings-table th:nth-child(6),
    .page-classificacao .standings-table td:nth-child(6),
    .page-classificacao .standings-table th:nth-child(7),
    .page-classificacao .standings-table td:nth-child(7),
    .page-classificacao .standings-table th:nth-child(8),
    .page-classificacao .standings-table td:nth-child(8),
    .page-classificacao .standings-table th:nth-child(9),
    .page-classificacao .standings-table td:nth-child(9) {
        display: none;
    }

    /* 6. Scrollbar Customizada */
    .page-classificacao .table-responsive::-webkit-scrollbar {
        height: 6px;
    }

    .page-classificacao .table-responsive::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 4px;
    }

    .page-classificacao .table-responsive::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 4px;
    }

    .page-classificacao .table-responsive::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }
}

/* ==========================================================================
PÁGINA: ONDE ASSISTIR (AGENDA DE JOGOS)
========================================================================== */

/* Títulos dos Dias da Semana */
.page-onde-assistir .weekday-title {
    font-family: var(--font-destaque, sans-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nav-text-main, #111827);
    margin-top: 3rem !important;
    margin-bottom: 1.5rem;
    /* Linha decorativa embaixo do dia. Altere a cor hexadecimal para a cor primária do Jumper se desejar */
    border-bottom: 3px solid #f26522 !important;
    padding-bottom: 0.5rem !important;
    display: inline-block;
}

/* Container da Tabela (Placar) */
.page-onde-assistir .table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    /* Bordas arredondadas */
    overflow: hidden;
    /* Impede que o fundo do th vase pelas bordas */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Sombra 3D suave */
    background: #ffffff;
    margin-bottom: 0;
    table-layout: fixed;
    width: 100%;
}

/* Cabeçalho da Tabela */
.page-onde-assistir .table-dark {
    background-color: var(--nav-text-main, #111827);
}

.page-onde-assistir .table-dark th {
    background-color: transparent;
    color: #ffffff;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 1.2rem 1rem;
    border-bottom: none;
}

/* Células da Tabela (td) */
.page-onde-assistir .table td {
    padding: 1.2rem 1rem;
    vertical-align: middle;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1.25rem;
}

/* Zebrado suave (Melhor legibilidade) */
.page-onde-assistir .table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: #f8fafc;
}

/* Efeito ao passar o mouse */
.page-onde-assistir .table-hover>tbody>tr:hover>* {
    background-color: #f1f5f9;
}

/* Destaque para a Hora */
.page-onde-assistir td strong {
    color: #111827;
    font-weight: 800;
}

/* Etiqueta da Liga (Badge) */
.page-onde-assistir .badge.bg-secondary {
    background-color: #f26522 !important;
    /* Laranja estilo NBA/Basquete */
    color: #ffffff;
    font-size: 1.00rem;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(242, 101, 34, 0.2);
}

/* Coluna dos Times (Confronto) */
.page-onde-assistir td:nth-child(4) {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

/* O "VS" entre os times */
.page-onde-assistir td:nth-child(4) strong {
    color: #9ca3af;
    font-size: 1.0rem;
    margin: 0 0.5rem;
    text-transform: uppercase;
}

/* Fallback / Alerta de Erro */
.page-onde-assistir .alert-warning {
    background-color: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 8px;
}

/* Scrollbar Customizada para a Tabela no Celular (Toque de classe) */
.page-onde-assistir .table-responsive::-webkit-scrollbar {
    height: 6px;
}

.page-onde-assistir .table-responsive::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.page-onde-assistir .table-responsive::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.page-onde-assistir .table-responsive::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (max-width: 991px) {

    .page-onde-assistir .table {
        table-layout: auto;
        font-size: 1.05rem;
        /* Fonte um pouco menor para acomodar as 4 colunas */
    }

    /* 1. Esconde APENAS a coluna "Dia" (1) no telemóvel */
    .page-onde-assistir .table th:nth-child(1),
    .page-onde-assistir .table td:nth-child(1) {
        display: none;
    }

    /* 2. Reduz o tamanho do Badge (Etiqueta da Liga) para poupar espaço */
    .page-onde-assistir .badge.bg-secondary {
        font-size: 0.75rem;
        padding: 0.3rem 0.4rem;
    }

    /* 3. Distribuição milimétrica do espaço para telas de ~400px */
    .page-onde-assistir .table th:nth-child(2) {
        /* Hora */
        min-width: 60px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .page-onde-assistir .table th:nth-child(3) {
        /* Liga */
        min-width: 60px;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
        text-align: center;
    }

    .page-onde-assistir .table th:nth-child(4) {
        /* Jogo */
        min-width: 140px;
        white-space: normal;
        /* Permite que o nome dos times quebre linha */
    }

    .page-onde-assistir .table th:nth-child(5) {
        /* Transmissão */
        min-width: 110px;
        white-space: normal;
    }

    /* 4. Ajuste geral de padding nas células */
    .page-onde-assistir .table td {
        padding: 0.8rem 0.2rem;
    }

    /* 5. Melhora o visual do "VS" no mobile para poupar espaço horizontal */
    .page-onde-assistir td:nth-child(4) strong {
        display: block;
        margin: 0.5rem 0 0.3rem 0;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   PÁGINA DE AFILIADOS (GUIAS)
   ========================================================================== */
.page-affiliate {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.affiliate__card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.affiliate__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card__rating {
    font-weight: bold;
    font-size: 1.4rem;
    margin-top: 1rem;
    color: #444;
}

.card__rating span {
    color: #facc15;
}

/* Estrela Dourada */

.card__bonus {
    font-size: 2rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.card__obs {
    color: #db3021;
    /* Cor de destaque Jumper */
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.card__pros {
    list-style: none;
    padding: 0;
}

.card__pros li {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.btn__apostar {
    display: inline-block;
    background-color: #22c55e;
    /* Verde Conversão */
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    margin-bottom: 0.8rem;
    transition: filter 0.2s;
}

.btn__apostar:hover {
    filter: brightness(1.1);
    color: #fff;
}

.card__terms {
    font-size: 1rem;
    color: #9ca3af;
    display: block;
}

/* Responsividade */
@media (max-width: 767px) {

    .card__identity,
    .card__info {
        margin-bottom: 2rem;
    }
}