:root {
    --navy: #061226;
    --navy2: #0a1b38;
    --blue: #07589e;
    --purple: #5334d5;
    --purple2: #6b4eff;
    --white: #ffffff;
    --paper: #f7f8fc;
    --ink: #111827;
    --muted: #697386;
    --line: #e6e9f0;
    --radius: 14px;
    --max: 1220px;
}

/* RESET */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* BARRA EM ALTA */

.trendbar {
    position: relative;
    overflow: hidden;
    background: #020a18;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.trendbar-layout {
    display: flex;
    align-items: center;
    min-height: 36px;
}

.trend-label,
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple2), #3420a6);
    color: #ffffff;
    padding: 6px 9px;
    border-radius: 5px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
}

.trend-label {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    margin-right: 22px;
}

.trend-track-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.trend-track-wrapper::before,
.trend-track-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 45px;
    pointer-events: none;
}

.trend-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #020a18 0%, transparent 100%);
}

.trend-track-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #020a18 0%, transparent 100%);
}

.trend-track {
    display: flex;
    width: max-content;
    animation: orbitando-ticker 40s linear infinite;
    will-change: transform;
}

.trend-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.trend-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    min-height: 36px;
    padding-right: 46px;
    color: rgba(255, 255, 255, 0.88);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.trend-item::after {
    content: "•";
    position: absolute;
    right: 20px;
    color: var(--purple2);
    font-size: 14px;
}

.trend-item:hover {
    color: #ffffff;
}

.trendbar:hover .trend-track {
    animation-play-state: paused;
}

@keyframes orbitando-ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* CABEÇALHO */

.nav-wrap {
    position: relative;
    background: var(--navy);
    color: #ffffff;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 34px;
    min-height: 96px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    width: 190px;
    height: auto;
}

.primary-nav {
    margin-left: auto;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.primary-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    background: var(--purple2);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.primary-menu a:hover {
    color: #dcd7ff;
}

.primary-menu a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-toggle,
.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.search-toggle:hover,
.menu-toggle:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle {
    display: none;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 13px 18px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--purple), #6d42e8);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* PESQUISA */

.search-panel {
    display: none;
    padding-bottom: 18px;
}

.search-panel.open {
    display: block;
}

.search-form {
    display: flex;
    width: 100%;
}

.search-field {
    flex: 1;
    min-width: 0;
    padding: 14px;
    border: 0;
    border-radius: 10px 0 0 10px;
    outline: none;
}

.search-submit {
    border: 0;
    border-radius: 0 10px 10px 0;
    background: var(--purple);
    color: #ffffff;
    padding: 0 24px;
    cursor: pointer;
}

/* HERO */

.hero-shell {
    position: relative;
    overflow: hidden;
    padding: 18px 0 30px;
    background: linear-gradient(
        180deg,
        var(--navy) 0,
        var(--navy2) 74%,
        var(--paper) 74%
    );
}

.orbit-line {
    position: absolute;
    top: 80px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(90, 72, 235, 0.38);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-line::before,
.orbit-line::after {
    content: "";
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(90, 72, 235, 0.28);
    border-radius: 50%;
}

.orbit-line::after {
    inset: 85px;
}

.orbit-left {
    left: -180px;
}

.orbit-right {
    right: -180px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.8fr 0.9fr;
    gap: 18px;
}

.hero-main,
.hero-mini,
.quick-card,
.weekly article {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #13213b;
}

.hero-main {
    min-height: 500px;
}

.hero-main > a,
.hero-mini > a,
.quick-card > a,
.weekly article > a {
    position: relative;
    display: block;
    height: 100%;
}

.hero-image,
.hero-main .placeholder {
    height: 500px;
    object-fit: cover;
}

.hero-side {
    display: grid;
    gap: 18px;
}

.hero-mini {
    min-height: 241px;
}

.hero-mini-image,
.hero-mini .placeholder {
    height: 241px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 28%,
        rgba(2, 7, 18, 0.9) 100%
    );
}

.hero-content,
.hero-mini-content,
.quick-card-content,
.weekly-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 28px;
    color: #ffffff;
}

.hero-content h1 {
    max-width: 780px;
    margin: 14px 0 10px;
    font-size: 46px;
    line-height: 1.02;
}

.hero-content p {
    max-width: 700px;
    margin: 0 0 12px;
    color: #e7eaf2;
    line-height: 1.5;
}

.hero-mini h2 {
    margin: 11px 0;
    font-size: 24px;
    line-height: 1.1;
}

/* PAGINAÇÃO DAS CATEGORIAS E ARQUIVOS */

.archive-pagination {
    width: 100%;
    margin-top: 36px;
}

.archive-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.archive-pagination a.page-numbers:hover {
    border-color: var(--purple);
    background: var(--purple);
    color: #ffffff;
    transform: translateY(-1px);
}

.archive-pagination .page-numbers.current {
    border-color: var(--purple);
    background: linear-gradient(
        135deg,
        var(--purple),
        var(--purple2)
    );
    color: #ffffff;
}

.archive-pagination .page-numbers.dots {
    min-width: 30px;
    padding: 0;
    border-color: transparent;
    background: transparent;
}

.archive-pagination .prev,
.archive-pagination .next {
    min-width: auto;
    padding: 0 18px;
}

@media (max-width: 600px) {
    .archive-pagination .nav-links {
        gap: 6px;
    }

    .archive-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 11px;
        font-size: 13px;
    }

    .archive-pagination .prev,
    .archive-pagination .next {
        width: 100%;
        max-width: 150px;
    }
}

/* CARDS RÁPIDOS */

.quick-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.quick-card {
    height: 190px;
}

.quick-card-image,
.quick-card .placeholder {
    height: 190px;
    object-fit: cover;
}

.quick-card h3 {
    margin: 10px 0 4px;
    font-size: 18px;
    line-height: 1.2;
}

/* PLACEHOLDERS */

.placeholder,
.hero-placeholder,
.hero-mini-placeholder,
.quick-placeholder,
.lead-placeholder,
.news-placeholder,
.weekly-placeholder,
.archive-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(107, 78, 255, 0.55),
            transparent 35%
        ),
        linear-gradient(135deg, #19365f, #071426);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-placeholder {
    height: 500px;
}

.hero-mini-placeholder {
    height: 241px;
}

.quick-placeholder {
    height: 190px;
}

.weekly-placeholder {
    height: 245px;
}

/* CONTEÚDO PRINCIPAL */

.content-section {
    padding: 28px 0 45px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-pills a {
    padding: 10px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    font-size: 12px;
    font-weight: 700;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.category-pills a:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.category-pills a.active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--purple), var(--purple2));
    color: #ffffff;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.8fr;
    gap: 34px;
}

.section-title {
    margin: 0 0 20px;
    padding-left: 12px;
    border-left: 4px solid var(--purple);
    font-size: 21px;
    text-transform: uppercase;
}

/* NOTÍCIA PRINCIPAL */

.lead-latest {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background: #ffffff;
}

.lead-latest > a {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
}

.lead-latest-image {
    height: 290px;
    background: var(--navy2);
}

.lead-image,
.lead-placeholder {
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.lead-latest-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 30px;
}

.lead-latest-content h2 {
    width: 100%;
    margin: 12px 0;
    font-size: 31px;
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: normal;
}

.lead-latest-content p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.5;
}

.badge.light {
    background: #eeeaff;
    color: var(--purple);
}

/* LISTA DE NOTÍCIAS */

.news-row {
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.news-row > a {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
}

.news-row-image {
    width: 125px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy2);
}

.news-thumb,
.news-placeholder {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.news-row-content {
    min-width: 0;
}

.news-row-content span {
    color: var(--purple);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-row-content h3 {
    width: 100%;
    margin: 5px 0;
    font-size: 15px;
    line-height: 1.3;
    word-break: normal;
    overflow-wrap: normal;
}

.lead-latest-content small,
.news-row-content small {
    color: var(--muted);
}

/* MAIS LIDAS */

.most-read {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: item;
}

.most-read li {
    position: relative;
    min-height: 65px;
    padding: 15px 0 15px 54px;
    border-bottom: 1px solid var(--line);
    counter-increment: item;
}

.most-read li::before {
    content: counter(item, decimal-leading-zero);
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--purple);
    font-size: 29px;
    font-weight: 900;
}

/* WHATSAPP */

.whatsapp-box {
    margin-top: 25px;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #17125b, #253bba);
    color: #ffffff;
}

.whatsapp-box strong {
    display: block;
    margin-bottom: 12px;
    font-size: 21px;
    line-height: 1.2;
}

.whatsapp-box p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.whatsapp-box a {
    display: inline-block;
    padding: 11px 15px;
    border-radius: 7px;
    background: #ffffff;
    color: #222222;
    font-size: 12px;
    font-weight: 800;
}

/* PUBLICIDADE */

.ad-box {
    margin-top: 18px;
    padding: 25px;
    border-radius: 8px;
    background: #eceef3;
    color: #7b8494;
    text-align: center;
}

/* DESTAQUES DA SEMANA */

.weekly {
    padding-bottom: 55px;
}

.weekly-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.weekly article {
    height: 245px;
}

.weekly-image,
.weekly-placeholder {
    height: 245px;
    object-fit: cover;
}

.weekly h3 {
    font-size: 16px;
    line-height: 1.25;
}

/* RODAPÉ */

.site-footer {
    padding-top: 50px;
    background: #030d20;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
    padding-bottom: 45px;
}

.footer-brand,
.footer-editorias,
.footer-newsletter {
    display: block;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    width: auto;
    margin-bottom: 18px;
}

.footer-logo img,
.footer-logo .custom-logo {
    width: auto;
    max-width: 195px;
    max-height: 75px;
    object-fit: contain;
}

.footer-description {
    max-width: 350px;
    margin: 0;
    color: #aeb7c9;
    font-size: 13px;
    line-height: 1.6;
}

.footer-editorias h3,
.footer-newsletter h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.footer-menu {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #aeb7c9;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-newsletter p {
    margin: 0 0 18px;
    color: #aeb7c9;
    font-size: 13px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 380px;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 15px;
    border: 1px solid #27344c;
    border-right: 0;
    border-radius: 6px 0 0 6px;
    background: transparent;
    color: #ffffff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #7e899d;
}

.newsletter-form input:focus {
    border-color: var(--purple2);
}

.newsletter-form button {
    height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 0 6px 6px 0;
    background: linear-gradient(135deg, var(--purple), var(--purple2));
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.newsletter-form button:hover {
    opacity: 0.92;
}

.footer-bottom {
    margin-top: 0;
    padding: 20px 0;
    border-top: 1px solid #17243d;
    color: #8390a7;
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
    color: #8390a7;
    font-size: 12px;
}

/* ACESSIBILIDADE */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ARQUIVOS E CATEGORIAS */

.archive-page,
.single-wrap,
.not-found {
    padding: 50px 0;
}

.archive-header {
    margin-bottom: 28px;
}

.archive-header .section-title {
    margin-top: 14px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.archive-card {
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
}

.archive-card-image,
.archive-placeholder {
    height: 210px;
    object-fit: cover;
}

.archive-card-content {
    padding: 18px;
}

.archive-card-content h2 {
    margin: 12px 0;
    font-size: 21px;
    line-height: 1.2;
}

.archive-card-content p {
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.5;
}

.archive-card-content small {
    color: var(--muted);
}

.archive-pagination {
    margin-top: 35px;
}

.archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: #ffffff;
}

.archive-pagination .page-numbers.current {
    background: var(--purple);
    color: #ffffff;
}

/* PÁGINA DA NOTÍCIA */

.single-article {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
}

.single-article header {
    text-align: center;
}

.single-article h1 {
    font-size: 50px;
    line-height: 1.05;
}

.subtitle {
    color: var(--muted);
    font-size: 20px;
}

.single-cover {
    margin: 32px 0;
}

.single-cover img {
    border-radius: 14px;
}

.article-body {
    padding: 40px;
    border-radius: 14px;
    background: #ffffff;
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   AJUSTES ESTRUTURAIS
   ========================================================= */

html,
body {
    max-width: 100%;
}

body {
    overflow-x: hidden;
}

.site-main,
.site-header,
.site-footer {
    width: 100%;
    min-width: 0;
}

.mobile-client-access {
    display: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.footer-legal a {
    color: #aeb7c9;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Conteúdo editorial: impede embeds e blocos antigos de estourarem a tela. */
.article-body,
.article-body > *,
.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-block-media-text,
.wp-block-embed,
.wp-block-image,
.wp-caption {
    min-width: 0;
    max-width: 100%;
}

.article-body img,
.article-body video,
.article-body iframe,
.article-body embed,
.article-body object,
.article-body svg,
.article-body canvas,
.article-body .instagram-media,
.article-body .twitter-tweet {
    max-width: 100% !important;
}

.article-body iframe,
.article-body video {
    width: 100%;
}

.article-body pre,
.article-body table {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.article-body pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

/* PÁGINAS LEGAIS */
.orbi-legal-page {
    padding: 52px 0 64px;
}

.orbi-legal-container {
    max-width: 900px;
}

.orbi-legal-header {
    margin-bottom: 26px;
}

.orbi-legal-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 9px;
    border-radius: 6px;
    background: #eeeaff;
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.orbi-legal-header h1 {
    margin: 0 0 14px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.02;
}

.orbi-legal-header p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.orbi-legal-update {
    margin-top: 16px;
    color: var(--muted);
    font-size: 12px;
}

.orbi-legal-content {
    padding: 38px;
    border-radius: 14px;
    background: #ffffff;
}

.orbi-legal-content section + section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.orbi-legal-content h2 {
    margin: 0 0 14px;
    font-size: 25px;
    line-height: 1.2;
}

.orbi-legal-content h3 {
    margin: 24px 0 10px;
    font-size: 19px;
    line-height: 1.3;
}

.orbi-legal-content p,
.orbi-legal-content li {
    color: #3c4658;
    line-height: 1.75;
}

.orbi-legal-content ul,
.orbi-legal-content ol {
    padding-left: 22px;
}

/* =========================================================
   TABLET / MENU RESPONSIVO
   ========================================================= */

@media (max-width: 900px) {
    .container {
        width: calc(100% - 32px);
    }

    .nav-inner {
        position: relative;
        gap: 12px;
        min-height: 82px;
    }

    .brand img {
        width: 165px;
    }

    .menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 100;
        display: none;
        max-height: calc(100vh - 82px);
        padding: 12px 16px 18px;
        overflow-y: auto;
        background: var(--navy);
        border-top: 1px solid rgba(255, 255, 255, 0.09);
        box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
    }

    .primary-nav.open {
        display: block;
    }

    .primary-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
    }

    .primary-menu li {
        width: 100%;
    }

    .primary-menu a {
        width: 100%;
        min-height: 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .primary-menu a::after {
        display: none;
    }

    .mobile-client-access {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        margin-top: 14px;
        padding: 10px 16px;
        border-radius: 9px;
        background: linear-gradient(135deg, var(--purple), var(--purple2));
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        text-align: center;
    }

    .whatsapp-btn {
        display: none;
    }

    .nav-actions {
        flex: 0 0 auto;
        gap: 8px;
    }

    .hero-grid,
    .main-content-grid {
        grid-template-columns: 1fr;
    }

    .hero-main {
        min-height: 430px;
    }

    .hero-image,
    .hero-main .placeholder {
        height: 430px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .weekly-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lead-latest > a {
        grid-template-columns: 1fr;
    }

    .lead-latest-image,
    .lead-image,
    .lead-placeholder {
        height: 300px;
    }

    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {
    :root {
        --radius: 11px;
    }

    .container {
        width: calc(100% - 24px);
        max-width: none;
    }

    .trendbar-layout {
        min-height: 34px;
    }

    .trend-label {
        margin-right: 9px;
        padding: 5px 7px;
        font-size: 9px;
    }

    .trend-track {
        animation-duration: 34s;
    }

    .trend-item {
        min-height: 34px;
        padding-right: 32px;
        font-size: 10px;
    }

    .trend-item::after {
        right: 13px;
    }

    .trend-track-wrapper::before,
    .trend-track-wrapper::after {
        width: 22px;
    }

    /* Cabeçalho */
    .nav-inner {
        min-height: 72px;
        gap: 8px;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 138px;
        max-width: 45vw;
    }

    .menu-toggle,
    .search-toggle {
        min-width: 42px;
        min-height: 42px;
        padding: 9px 10px;
        border-radius: 9px;
        font-size: 12px;
    }

    .primary-nav {
        max-height: calc(100vh - 72px);
        padding: 8px 12px 14px;
    }

    .primary-menu a {
        min-height: 46px;
        font-size: 12px;
    }

    .mobile-client-access {
        margin-top: 10px;
        font-size: 13px;
    }

    .search-panel {
        padding: 0 0 12px;
    }

    .search-panel .container {
        width: calc(100% - 24px);
    }

    .search-field {
        min-width: 0;
        padding: 12px;
        font-size: 16px;
    }

    .search-submit {
        padding: 0 15px;
        font-size: 13px;
    }

    /* Hero */
    .hero-shell {
        padding: 12px 0 24px;
        background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
    }

    .orbit-line {
        display: none;
    }

    .hero-grid {
        display: block;
    }

    .hero-main,
    .hero-image,
    .hero-main .placeholder {
        width: 100%;
        height: 360px;
        min-height: 360px;
    }

    .hero-content {
        padding: 18px;
    }

    .hero-content h1 {
        max-width: 100%;
        margin: 10px 0 8px;
        font-size: clamp(25px, 7.4vw, 31px);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .hero-content p {
        display: none;
    }

    .hero-content small {
        font-size: 10px;
    }

    .hero-side {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .hero-mini,
    .hero-mini-image,
    .hero-mini .placeholder {
        width: 100%;
        height: 205px;
        min-height: 205px;
    }

    .hero-mini-content {
        padding: 16px;
    }

    .hero-mini h2 {
        margin: 8px 0 5px;
        font-size: 18px;
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    .quick-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 12px;
    }

    .quick-card,
    .quick-card-image,
    .quick-card .placeholder {
        width: 100%;
        height: 190px;
    }

    .quick-card-content {
        padding: 16px;
    }

    .quick-card h3 {
        margin: 7px 0 3px;
        font-size: 17px;
        line-height: 1.18;
        overflow-wrap: anywhere;
    }

    /* Conteúdo */
    .content-section {
        padding: 24px 0 36px;
    }

    .category-pills {
        flex-wrap: nowrap;
        gap: 8px;
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-bottom: 24px;
        padding: 0 12px 8px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .category-pills::-webkit-scrollbar {
        display: none;
    }

    .category-pills a {
        flex: 0 0 auto;
        padding: 9px 14px;
        white-space: nowrap;
    }

    .main-content-grid {
        display: block;
    }

    .section-title {
        margin-bottom: 16px;
        padding-left: 10px;
        font-size: 18px;
        line-height: 1.2;
    }

    .lead-latest {
        margin-bottom: 18px;
    }

    .lead-latest > a {
        display: block;
    }

    .lead-latest-image,
    .lead-image,
    .lead-placeholder {
        width: 100%;
        height: 220px;
    }

    .lead-latest-content {
        padding: 18px;
    }

    .lead-latest-content h2 {
        margin: 10px 0;
        font-size: 23px;
        line-height: 1.13;
        overflow-wrap: anywhere;
    }

    .lead-latest-content p {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.5;
    }

    .news-row {
        padding: 12px 0;
    }

    .news-row > a {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
    }

    .news-row-image,
    .news-thumb,
    .news-placeholder {
        width: 96px;
        height: 72px;
    }

    .news-row-content h3 {
        margin: 4px 0;
        font-size: 14px;
        line-height: 1.28;
        overflow-wrap: anywhere;
    }

    .news-row-content small {
        font-size: 10px;
    }

    .sidebar-column {
        margin-top: 32px;
    }

    .most-read li {
        min-height: 60px;
        padding: 13px 0 13px 46px;
    }

    .most-read li::before {
        font-size: 25px;
    }

    .whatsapp-box,
    .ad-box {
        padding: 18px;
    }

    /* Destaques e arquivos */
    .weekly {
        padding-bottom: 38px;
    }

    .weekly-grid,
    .archive-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .weekly article,
    .weekly-image,
    .weekly-placeholder {
        height: 210px;
    }

    .weekly-content {
        padding: 16px;
    }

    .weekly h3 {
        font-size: 17px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .archive-page,
    .single-wrap,
    .not-found {
        padding: 28px 0;
    }

    .archive-header {
        margin-bottom: 18px;
    }

    .archive-card-image,
    .archive-placeholder {
        height: 205px;
    }

    .archive-card-content {
        padding: 16px;
    }

    .archive-card-content h2 {
        font-size: 20px;
        overflow-wrap: anywhere;
    }

    .archive-pagination .nav-links {
        gap: 6px;
    }

    .archive-pagination .page-numbers {
        min-width: 38px;
        min-height: 38px;
        height: 38px;
        padding: 0 11px;
        font-size: 13px;
    }

    .archive-pagination .prev,
    .archive-pagination .next {
        width: 100%;
        max-width: 150px;
    }

    /* Matéria interna */
    .single-article {
        width: calc(100% - 24px);
    }

    .single-article header {
        text-align: left;
    }

    .single-article h1 {
        margin-top: 0;
        font-size: clamp(28px, 8vw, 35px);
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .single-cover {
        margin: 20px 0;
    }

    .single-cover img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .article-body {
        padding: 18px;
        border-radius: 10px;
        font-size: 17px;
        line-height: 1.7;
        overflow: hidden;
    }

    .article-body h2 {
        font-size: 25px;
        line-height: 1.2;
    }

    .article-body h3 {
        font-size: 21px;
        line-height: 1.25;
    }

    .article-body .alignleft,
    .article-body .alignright,
    .article-body .alignwide,
    .article-body .alignfull {
        float: none;
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    /* Páginas legais */
    .orbi-legal-page {
        padding: 30px 0 40px;
    }

    .orbi-legal-header h1 {
        font-size: 34px;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .orbi-legal-header p {
        font-size: 16px;
    }

    .orbi-legal-content {
        padding: 20px 18px;
    }

    .orbi-legal-content h2 {
        font-size: 22px;
    }

    /* Rodapé */
    .site-footer {
        padding-top: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-description,
    .newsletter-form {
        max-width: 100%;
    }

    .footer-logo img,
    .footer-logo .custom-logo {
        max-width: 170px;
    }

    .newsletter-form button {
        flex-shrink: 0;
        padding: 0 13px;
        font-size: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-legal {
        justify-content: flex-start;
        gap: 12px 16px;
    }
}

@media (max-width: 380px) {
    .brand img {
        width: 124px;
    }

    .nav-inner {
        gap: 6px;
    }

    .menu-toggle,
    .search-toggle {
        min-width: 40px;
        min-height: 40px;
        padding: 7px 8px;
    }

    .hero-main,
    .hero-image,
    .hero-main .placeholder {
        height: 335px;
        min-height: 335px;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .news-row > a {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 10px;
    }

    .news-row-image,
    .news-thumb,
    .news-placeholder {
        width: 84px;
        height: 66px;
    }

    .newsletter-form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border: 1px solid #27344c;
        border-radius: 6px;
    }

    .newsletter-form button {
        border-color: transparent;
    }
}
\n\n/* =========================================================\n   ORBITANDO MOBILE V2 — BASE DEFENSIVA\n   ========================================================= */\n@media screen and (max-width: 900px) {\n    html, body {\n        margin: 0 !important;\n        padding: 0 !important;\n        width: 100% !important;\n        max-width: 100% !important;\n        overflow-x: hidden !important;\n    }\n\n    .container {\n        width: calc(100% - 24px) !important;\n        max-width: none !important;\n        margin-left: auto !important;\n        margin-right: auto !important;\n    }\n\n    .nav-inner {\n        min-height: 74px !important;\n    }\n\n    .brand img {\n        width: 138px !important;\n        max-width: 48vw !important;\n    }\n\n    .menu-toggle {\n        display: inline-flex !important;\n        margin-left: auto !important;\n    }\n\n    .primary-nav {\n        position: absolute !important;\n        top: 74px !important;\n        left: 0 !important;\n        right: 0 !important;\n        z-index: 1000 !important;\n        display: none !important;\n        width: 100% !important;\n        margin: 0 !important;\n        padding: 10px 12px 16px !important;\n        background: var(--navy) !important;\n    }\n\n    .primary-nav.open {\n        display: block !important;\n    }\n\n    .primary-menu {\n        display: flex !important;\n        flex-direction: column !important;\n        align-items: stretch !important;\n        gap: 0 !important;\n        width: 100% !important;\n    }\n\n    .primary-menu li,\n    .primary-menu a {\n        width: 100% !important;\n    }\n\n    .whatsapp-btn {\n        display: none !important;\n    }\n\n    .hero-grid,\n    .main-content-grid {\n        display: block !important;\n        grid-template-columns: 1fr !important;\n    }\n\n    .hero-side {\n        display: grid !important;\n        grid-template-columns: 1fr !important;\n        gap: 12px !important;\n        margin-top: 12px !important;\n    }\n\n    .quick-grid,\n    .weekly-grid,\n    .archive-grid,\n    .footer-grid {\n        grid-template-columns: 1fr !important;\n    }\n}\n