:root {
    --portal-primary: #001b72;
    --portal-primary-dark: #000c45;
    --portal-primary-light: #123ee1;
    --portal-accent: #cd252a;
    --portal-accent-dark: #a9151b;
    --portal-blue: #0067b1;
    --portal-green: #237b32;
    --portal-ink: #111827;
    --portal-muted: #64748b;
    --portal-line: #e2e8f0;
    --portal-soft: #f5f7fb;
    --portal-white: #fff;
    --portal-shadow: 0 16px 40px rgba(15, 23, 42, .1);
    --portal-radius: 14px;
    --portal-container: 1200px;
    --portal-transition: 180ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--portal-ink);
    background: var(--portal-white);
    font-family: "Roboto", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: var(--portal-accent);
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.container--narrow {
    max-width: 900px;
}

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

.screen-reader-text:focus,
.skip-link:focus {
    z-index: 100000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    clip: auto;
    color: var(--portal-white);
    background: var(--portal-primary);
    border-radius: 8px;
}

.site-main {
    min-height: 48vh;
}

.button,
button[type="submit"],
input[type="submit"] {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: var(--portal-white);
    background: var(--portal-accent);
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--portal-transition), background var(--portal-transition);
}

.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    color: var(--portal-white);
    background: var(--portal-accent-dark);
    transform: translateY(-1px);
}

/* Cabeçalho */
.site-header {
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .08);
}

.header-main {
    position: relative;
    padding: 15px 0;
    background:
        radial-gradient(circle at 16% 0%, rgba(18, 62, 225, .7), transparent 32%),
        linear-gradient(125deg, var(--portal-primary-dark), var(--portal-primary));
}

.header-main::after {
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
}

.header-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    gap: 24px;
}

.site-branding {
    grid-column: 2;
    justify-self: center;
    line-height: 0;
}

.site-branding img {
    display: block;
    width: min(300px, 32vw);
    max-height: 76px;
    object-fit: contain;
}

.custom-logo-link {
    display: block;
}

.header-search--desktop {
    grid-column: 3;
    justify-self: end;
    width: min(100%, 290px);
}

.search-form {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 4px 5px 4px 16px;
    background: var(--portal-white);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
}

.search-form label {
    flex: 1;
}

.search-field {
    width: 100%;
    padding: 7px 0;
    color: var(--portal-ink);
    background: transparent;
    border: 0;
    outline: 0;
}

.search-field::placeholder {
    color: #7b8799;
}

.search-submit {
    width: 38px;
    min-height: 38px !important;
    padding: 8px !important;
    color: var(--portal-primary) !important;
    background: transparent !important;
    border-radius: 50% !important;
    transform: none !important;
}

.search-submit:hover {
    color: var(--portal-accent) !important;
    background: #f1f5f9 !important;
}

.search-submit svg,
.icon-button svg,
.footer-social svg,
.share-links svg,
.empty-state svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.icon-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: var(--portal-white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    cursor: pointer;
}

.icon-button:hover {
    background: rgba(255, 255, 255, .2);
}

.close-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
    display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
    display: block;
}

.site-navigation {
    color: var(--portal-white);
    background: linear-gradient(90deg, var(--portal-accent-dark), var(--portal-accent), #e22e35);
}

.site-navigation .menu {
    display: flex;
    min-height: 44px;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-navigation .menu-item {
    position: relative;
}

.site-navigation .menu-item > a {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 10px 14px;
    color: var(--portal-white);
    font-family: "Albert Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: background var(--portal-transition);
}

.site-navigation .menu-item > a:hover,
.site-navigation .current-menu-item > a,
.site-navigation .current-menu-ancestor > a {
    color: var(--portal-white);
    background: rgba(0, 0, 0, .15);
}

.site-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    display: none;
    min-width: 220px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: var(--portal-white);
    border-radius: 0 0 12px 12px;
    box-shadow: var(--portal-shadow);
}

.site-navigation .menu-item:hover > .sub-menu,
.site-navigation .menu-item:focus-within > .sub-menu {
    display: block;
}

.site-navigation .sub-menu a {
    padding: 10px 12px;
    color: var(--portal-ink);
    border-radius: 8px;
}

.site-navigation .sub-menu a:hover {
    color: var(--portal-accent);
    background: var(--portal-soft);
}

.mobile-search {
    padding: 12px 0;
    background: var(--portal-primary-dark);
}

.mobile-search .search-form {
    max-width: 540px;
    margin-inline: auto;
}

.news-ticker {
    background: var(--portal-white);
    border-bottom: 1px solid var(--portal-line);
}

.ticker-inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}

.ticker-inner > strong {
    flex: 0 0 auto;
    padding: 4px 10px;
    color: var(--portal-white);
    background: var(--portal-primary);
    border-radius: 6px;
    font-family: "Albert Sans", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
}

.ticker-items {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

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

.ticker-items:hover .ticker-track,
.ticker-items:focus-within .ticker-track {
    animation-play-state: paused;
}

.ticker-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
}

.ticker-group a {
    position: relative;
    color: #334155;
    font-size: 13px;
    font-weight: 500;
}

.ticker-group a::after {
    position: absolute;
    top: 50%;
    right: -18px;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--portal-accent);
    border-radius: 50%;
    transform: translateY(-50%);
}

@keyframes portal-ticker {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Componentes de notícias */
.home-main {
    padding-top: 32px;
}

.story-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #e9eef8, #d7deec);
    border-radius: var(--portal-radius);
}

.story-media a,
.story-media img,
.image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
}

.story-media img {
    object-fit: cover;
    transition: transform 420ms ease, filter 420ms ease;
}

.story-card:hover .story-media img,
.story-row:hover .story-media img,
.hero-feature:hover .hero-media img {
    filter: saturate(1.05);
    transform: scale(1.035);
}

.image-placeholder {
    display: grid;
    place-items: center;
    color: #8ea0be;
}

.image-placeholder svg {
    width: 48px;
    height: 48px;
    fill: currentColor;
}

.story-category,
.eyebrow {
    display: inline-flex;
    margin-bottom: 7px;
    color: var(--portal-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.story-title {
    margin: 0;
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.27;
}

.story-title a:hover {
    color: var(--portal-accent);
}

.story-excerpt {
    margin-top: 10px;
    color: var(--portal-muted);
    font-size: 14px;
}

.story-excerpt p {
    margin: 0;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    color: var(--portal-muted);
    font-size: 12px;
}

.entry-meta--full {
    display: grid;
    gap: 4px;
    color: #55637a;
    font-size: 13px;
}

.entry-meta__primary,
.entry-meta__secondary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.entry-meta__primary strong {
    color: var(--portal-ink);
}

.entry-meta--full a {
    color: var(--portal-primary);
    font-weight: 600;
}

.entry-meta--full a:hover {
    color: var(--portal-accent);
}

.story-grid {
    display: grid;
    gap: 28px 20px;
}

.story-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-news {
    padding-bottom: 36px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(310px, .95fr);
    align-items: start;
    gap: 34px;
}

.hero-media {
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    border-radius: 18px;
    box-shadow: 0 15px 34px rgba(15, 23, 42, .12);
}

.hero-body h1 {
    max-width: 930px;
    margin: 0;
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.hero-body h1 a:hover {
    color: var(--portal-accent);
}

.hero-excerpt {
    max-width: 800px;
    margin: 14px 0 0;
    color: var(--portal-muted);
    font-size: 17px;
}

.headline-list {
    display: grid;
    gap: 7px;
    padding-top: 24px;
}

.headline-list article {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding: 11px 14px;
    background: var(--portal-soft);
    border: 1px solid transparent;
    border-radius: 10px;
    transition: border var(--portal-transition), transform var(--portal-transition);
}

.headline-list article:hover {
    border-color: #d8deeb;
    transform: translateX(2px);
}

.headline-list h2 {
    margin: 1px 0 0;
    font-family: "Albert Sans", sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

.headline-plus {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: var(--portal-white);
    background: var(--portal-primary);
    border-radius: 50%;
    font-weight: 700;
    line-height: 1;
}

.hero-sidebar {
    position: sticky;
    top: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--portal-line);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-heading h2 {
    flex: 0 0 auto;
    margin: 0;
    color: var(--portal-accent);
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(23px, 2.4vw, 30px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.section-heading h2 a:hover {
    color: var(--portal-primary);
}

.section-heading--compact {
    margin-bottom: 16px;
}

.section-heading--compact h2 {
    font-size: 23px;
}

.section-rule {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--portal-accent), rgba(205, 37, 42, .08));
}

.sidebar-stories {
    display: grid;
    gap: 14px;
}

.story-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--portal-line);
}

.story-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.story-row__media {
    aspect-ratio: 4 / 3;
    margin: 0;
    border-radius: 10px;
}

.story-row h3 {
    margin: 0;
    font-family: "Albert Sans", sans-serif;
    font-size: 15px;
    letter-spacing: -.02em;
    line-height: 1.27;
}

.news-section {
    padding: 32px 0 38px;
    border-top: 1px solid var(--portal-line);
}

.news-section--blue,
.news-section--green {
    margin: 18px 0;
    padding: 34px 0 38px;
    color: var(--portal-white);
    border-top: 0;
}

.news-section--blue {
    background:
        radial-gradient(circle at 12% 0%, rgba(68, 174, 255, .28), transparent 30%),
        linear-gradient(135deg, #004a8a, var(--portal-blue));
}

.news-section--green {
    background:
        radial-gradient(circle at 88% 0%, rgba(155, 255, 159, .2), transparent 32%),
        linear-gradient(135deg, #135d26, var(--portal-green));
}

.news-section--blue .section-heading h2,
.news-section--green .section-heading h2,
.news-section--blue .story-category,
.news-section--green .story-category {
    color: var(--portal-white);
}

.news-section--blue .section-rule,
.news-section--green .section-rule {
    background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,.08));
}

.news-section--blue .story-media,
.news-section--green .story-media {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.news-section--blue .story-title a:hover,
.news-section--green .story-title a:hover {
    color: #fff8b5;
}

.news-section--advertising .story-category {
    color: var(--portal-accent);
}

/* Horóscopo e publicidade */
.horoscope-section {
    padding: 18px 0 30px;
}

.horoscope-card {
    display: grid;
    grid-template-columns: minmax(210px, .45fr) minmax(0, 1.55fr);
    align-items: stretch;
    overflow: hidden;
    color: var(--portal-white);
    background: var(--portal-accent);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(205, 37, 42, .2);
}

.horoscope-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 24px;
    background: rgba(0, 0, 0, .12);
}

.horoscope-intro span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.horoscope-intro strong {
    font-family: "Albert Sans", sans-serif;
    font-size: 21px;
    line-height: 1.17;
}

.horoscope-widget {
    min-width: 0;
    padding: 14px;
    overflow-x: auto;
}

.ad-slot {
    margin-bottom: 28px;
    text-align: center;
}

.ad-slot img {
    display: block;
    width: 100%;
    max-height: 220px;
    margin-inline: auto;
    object-fit: cover;
    border-radius: var(--portal-radius);
}

.ad-slot .widget {
    margin: 0;
}

/* Página Últimas Notícias */
.latest-news-page {
    padding-bottom: 68px;
    background: linear-gradient(180deg, #f8faff 0, #fff 320px);
}

.latest-news-header {
    max-width: 940px;
    padding: 20px 0 34px;
}

.latest-news-header h1 {
    margin: 0;
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.03;
}

.latest-news-header p {
    max-width: 680px;
    margin: 14px 0 0;
    color: var(--portal-muted);
    font-size: 17px;
}

.latest-news-feed {
    display: grid;
    max-width: 1080px;
    gap: 18px;
}

.latest-news-card {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    align-items: center;
    column-gap: 30px;
    row-gap: 18px;
    padding: 14px;
    background: var(--portal-white);
    border: 1px solid var(--portal-line);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition:
        border-color var(--portal-transition),
        box-shadow var(--portal-transition),
        transform var(--portal-transition);
}

.latest-news-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .1);
    transform: translateY(-2px);
}

.latest-news-card__media {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 16 / 10;
    align-self: center;
    margin: 0;
    border-radius: 13px;
}

.latest-news-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 7px 12px 7px 2px;
}

.latest-news-card__body h2 {
    margin: 0;
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 750;
    letter-spacing: -.025em;
    line-height: 1.18;
}

.latest-news-card__body h2 a:hover {
    color: var(--portal-accent);
}

.latest-news-card__excerpt {
    display: -webkit-box;
    margin: 10px 0 18px;
    overflow: hidden;
    color: var(--portal-muted);
    font-size: 14px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.latest-news-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.latest-news-card__footer .entry-meta {
    margin: 0;
}

.latest-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--portal-primary);
    font-size: 13px;
    font-weight: 700;
}

.latest-news-card__link span {
    transition: transform var(--portal-transition);
}

.latest-news-card__link:hover span {
    transform: translateX(3px);
}

/* Listagens */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 22px 0;
    color: var(--portal-muted);
    font-size: 12px;
}

.breadcrumbs > span:last-child {
    max-width: 580px;
    overflow: hidden;
    color: #334155;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listing-main {
    padding-bottom: 64px;
}

.listing-header {
    max-width: 840px;
    padding: 18px 0 30px;
}

.listing-header h1,
.page-header h1 {
    margin: 0;
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: -.045em;
    line-height: 1.02;
}

.archive-description {
    margin-top: 12px;
    color: var(--portal-muted);
}

.archive-description p {
    margin: 0;
}

.listing-grid {
    row-gap: 38px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding-top: 42px;
}

.page-numbers {
    display: grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    padding: 0 13px;
    color: var(--portal-primary);
    background: var(--portal-soft);
    border-radius: 9px;
    font-weight: 700;
}

.page-numbers.current,
.page-numbers:hover {
    color: var(--portal-white);
    background: var(--portal-primary);
}

/* Notícia individual */
.single-main {
    padding-bottom: 64px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px) minmax(280px, 1fr);
    align-items: start;
    gap: 48px;
}

.article-header h1 {
    max-width: 820px;
    margin: 4px 0 0;
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(34px, 3.2vw, 46px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.article-lead {
    margin: 18px 0 0;
    color: #4b5a70;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
}

.article-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0 0;
}

.article-meta-row .entry-meta {
    margin: 0;
}

.share-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    color: var(--portal-muted);
    font-size: 12px;
    font-weight: 700;
}

.share-links__fallback,
.share-links__addtoany,
.share-links__addtoany .a2a_kit {
    display: flex;
    align-items: center;
    gap: 7px;
}

.share-links__addtoany .a2a_svg {
    border-radius: 50% !important;
}

.share-links__fallback a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    padding: 8px;
    color: var(--portal-white);
    border-radius: 50%;
    transition: transform var(--portal-transition);
}

.share-links__fallback a:hover {
    color: var(--portal-white);
    transform: translateY(-2px);
}

.share-whatsapp {
    background: #25d366;
}

.share-facebook {
    background: #1877f2;
}

.share-x {
    background: #111;
}

.article-featured,
.page-featured {
    overflow: hidden;
    margin: 28px 0;
    border-radius: 18px;
}

.article-featured img,
.page-featured img {
    display: block;
    width: 100%;
}

.article-featured figcaption {
    padding: 8px 4px 0;
    color: var(--portal-muted);
    font-size: 12px;
}

.entry-content {
    color: #202938;
    font-size: 19px;
    line-height: 1.82;
}

.entry-content > *:first-child {
    margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--portal-ink);
    font-family: "Albert Sans", sans-serif;
    line-height: 1.2;
}

.entry-content h2 {
    margin-top: 1.7em;
    font-size: 32px;
}

.entry-content h3 {
    margin-top: 1.5em;
    font-size: 25px;
}

.entry-content a {
    color: var(--portal-primary-light);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.entry-content blockquote {
    padding: 4px 0 4px 24px;
    margin: 32px 0;
    color: #334155;
    border-left: 5px solid var(--portal-accent);
    font-family: "Albert Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
}

.entry-content iframe,
.entry-content video {
    max-width: 100%;
}

.entry-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.entry-content th,
.entry-content td {
    padding: 10px;
    border: 1px solid var(--portal-line);
}

.wp-caption,
.entry-content figure {
    max-width: 100%;
}

.post-source {
    padding: 14px 0;
    color: var(--portal-muted);
    border-top: 1px solid var(--portal-line);
    border-bottom: 1px solid var(--portal-line);
    font-size: 12px;
}

.post-source a {
    color: var(--portal-primary);
}

.article-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--portal-muted);
    font-size: 13px;
}

.post-tags a {
    padding: 5px 9px;
    color: var(--portal-primary);
    background: #edf2ff;
    border-radius: 999px;
}

.single-sidebar {
    position: sticky;
    top: 24px;
}

.single-sidebar .widget,
.popular-box,
.sidebar-latest {
    padding: 20px;
    margin-bottom: 24px;
    background: var(--portal-white);
    border: 1px solid var(--portal-line);
    border-radius: var(--portal-radius);
}

.single-sidebar .story-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
}

.single-sidebar .story-row h3 {
    font-size: 14px;
}

.widget-title {
    margin: 0 0 15px;
    color: var(--portal-accent);
    font-family: "Albert Sans", sans-serif;
    font-size: 22px;
}

.widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.widget li {
    padding: 9px 0;
    border-bottom: 1px solid var(--portal-line);
}

.widget li:last-child {
    border-bottom: 0;
}

.popular-box ol {
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: popular;
}

.popular-box li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 13px 0;
    border-top: 1px solid var(--portal-line);
    counter-increment: popular;
}

.popular-box li::before {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    content: counter(popular);
    color: var(--portal-white);
    background: var(--portal-primary);
    border-radius: 10px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 800;
}

.popular-box li a {
    font-family: "Albert Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.related-posts {
    padding-top: 52px;
}

.after-content-widgets {
    padding-top: 20px;
}

/* Páginas, comentários e estados vazios */
.page-main {
    padding-bottom: 64px;
}

.page-header {
    padding: 15px 0 28px;
}

.page-article .entry-content {
    max-width: 820px;
}

.comments-area {
    max-width: 820px;
    padding-top: 48px;
}

.comments-title,
.comment-reply-title {
    font-family: "Albert Sans", sans-serif;
    font-size: 26px;
}

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

.comment-list .children {
    list-style: none;
}

.comment-body {
    padding: 18px;
    margin-bottom: 16px;
    background: var(--portal-soft);
    border-radius: 12px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
    width: 100%;
    padding: 12px;
    background: var(--portal-white);
    border: 1px solid #cbd5e1;
    border-radius: 9px;
}

.error-main {
    display: grid;
    min-height: 65vh;
    place-items: center;
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(180deg, #f5f7fc, #fff);
}

.error-404 {
    max-width: 680px;
    margin-inline: auto;
}

.error-code {
    display: block;
    color: var(--portal-primary);
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(86px, 18vw, 180px);
    font-weight: 800;
    letter-spacing: -.08em;
    line-height: .8;
    text-shadow: 7px 7px 0 rgba(205, 37, 42, .12);
}

.error-404 h1,
.empty-state h2 {
    margin: 28px 0 8px;
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(28px, 4vw, 44px);
}

.error-404 p,
.empty-state p {
    color: var(--portal-muted);
}

.error-404 .search-form,
.empty-state .search-form {
    max-width: 520px;
    margin: 24px auto 16px;
    border-color: var(--portal-line);
}

.empty-state {
    max-width: 640px;
    padding: 60px 0;
    margin-inline: auto;
    text-align: center;
}

.empty-state__icon {
    display: block;
    width: 72px;
    height: 72px;
    padding: 15px;
    margin-inline: auto;
    color: var(--portal-primary);
    background: #edf2ff;
    border-radius: 20px;
}

/* Shortcodes antigos */
.portal-shortcode {
    margin: 24px 0 38px;
}

.portal-shortcode .container {
    width: 100%;
}

.latest-list {
    display: grid;
    gap: 14px;
}

.latest-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    padding: 14px;
    background: var(--portal-white);
    border: 1px solid var(--portal-line);
    border-radius: 16px;
    box-shadow: 0 7px 22px rgba(15, 23, 42, .05);
    transition: border-color var(--portal-transition), transform var(--portal-transition);
}

.latest-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.latest-item .story-media {
    margin: 0;
    border-radius: 12px;
}

.latest-item h3 {
    margin: 0;
    font-family: "Albert Sans", sans-serif;
    font-size: 22px;
    letter-spacing: -.02em;
    line-height: 1.22;
}

.shortcode-feature h2 {
    margin: 0;
    font-family: "Albert Sans", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.shortcode-feature .headline-list {
    padding-top: 18px;
}

/* Rodapé */
.site-footer {
    margin-top: 30px;
    color: var(--portal-white);
    background:
        radial-gradient(circle at 84% 0%, rgba(18, 62, 225, .5), transparent 35%),
        linear-gradient(135deg, #00082f, var(--portal-primary));
}

.footer-main {
    padding: 44px 0 36px;
}

.footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand img {
    display: block;
    width: min(100%, 300px);
}

.footer-widgets {
    display: grid;
    width: min(100%, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-column h2,
.footer-column .widget-title {
    margin: 0 0 14px;
    color: var(--portal-white);
    font-family: "Albert Sans", sans-serif;
    font-size: 17px;
}

.footer-menu,
.footer-column ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-menu a,
.footer-column a {
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.footer-menu a:hover,
.footer-column a:hover {
    color: var(--portal-white);
}

.footer-column .widget,
.footer-column li {
    padding: 0;
    margin: 0;
    border: 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
}

.footer-social a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 9px;
    color: var(--portal-white);
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--portal-white);
    background: var(--portal-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom-inner {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.footer-bottom a {
    color: #ff7d82;
    font-weight: 700;
}

@media (max-width: 1080px) {
    .site-navigation .menu-item > a {
        padding-inline: 9px;
        font-size: 12px;
    }

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

    .content-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 32px;
    }

}

@media (max-width: 900px) {
    .header-main {
        padding: 10px 0;
    }

    .header-grid {
        grid-template-columns: 48px 1fr 48px;
        gap: 12px;
    }

    .site-branding {
        grid-column: 2;
    }

    .site-branding img {
        width: min(260px, 56vw);
        max-height: 62px;
    }

    .icon-button {
        display: flex;
    }

    .menu-toggle {
        grid-column: 1;
        grid-row: 1;
    }

    .search-toggle {
        grid-column: 3;
        grid-row: 1;
    }

    .header-search--desktop {
        display: none;
    }

    .site-navigation {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: min(86vw, 380px);
        height: 100dvh;
        padding: 92px 20px 30px;
        overflow-y: auto;
        background: linear-gradient(155deg, var(--portal-primary-dark), var(--portal-primary));
        box-shadow: 20px 0 60px rgba(0, 0, 0, .28);
        transform: translateX(-105%);
        transition: transform 260ms ease;
    }

    .site-navigation::before {
        position: absolute;
        top: 28px;
        left: 24px;
        content: "MENU";
        color: rgba(255, 255, 255, .65);
        font-family: "Albert Sans", sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .12em;
    }

    .site-navigation.is-open {
        transform: translateX(0);
    }

    .site-navigation .container {
        width: 100%;
    }

    .site-navigation .menu {
        display: grid;
        min-height: auto;
        justify-content: stretch;
        gap: 2px;
    }

    .site-navigation .menu-item > a {
        padding: 12px 10px;
        color: var(--portal-white);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        font-size: 15px;
    }

    .site-navigation .sub-menu {
        position: static;
        display: grid;
        padding: 0 0 5px 14px;
        background: transparent;
        box-shadow: none;
    }

    .site-navigation .sub-menu a {
        color: rgba(255, 255, 255, .76);
    }

    .site-navigation .sub-menu a:hover {
        color: var(--portal-white);
        background: rgba(255, 255, 255, .08);
    }

    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 998;
        display: none;
        background: rgba(0, 5, 30, .62);
        backdrop-filter: blur(3px);
    }

    body.menu-open .menu-backdrop {
        display: block;
    }

    body.menu-open .menu-toggle {
        position: fixed;
        top: 22px;
        left: calc(min(86vw, 380px) - 62px);
        z-index: 1000;
        background: var(--portal-accent);
        border-color: rgba(255, 255, 255, .3);
    }

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

    .hero-sidebar,
    .single-sidebar {
        position: static;
    }

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

    .story-row {
        grid-template-columns: 110px minmax(0, 1fr);
    }

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

    .content-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .single-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .single-sidebar .widget,
    .popular-box,
    .sidebar-latest {
        margin: 0;
    }

}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--portal-container));
    }

    .home-main {
        padding-top: 22px;
    }

    .ticker-inner {
        gap: 10px;
    }

    .ticker-items {
        -webkit-mask-image: none;
        mask-image: none;
    }

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

    .hero-news {
        padding-bottom: 26px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-body h1 {
        font-size: clamp(29px, 8.4vw, 44px);
    }

    .hero-excerpt {
        font-size: 15px;
    }

    .sidebar-stories {
        grid-template-columns: minmax(0, 1fr);
    }

    .story-row {
        grid-template-columns: 126px minmax(0, 1fr);
    }

    .story-grid--four,
    .story-grid--three {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-section {
        padding: 27px 0 30px;
    }

    .story-card {
        display: grid;
        grid-template-columns: 142px minmax(0, 1fr);
        align-items: start;
        gap: 14px;
    }

    .story-card .story-media {
        aspect-ratio: 4 / 3;
        margin: 0;
        border-radius: 10px;
    }

    .story-title {
        font-size: 17px;
    }

    .story-excerpt {
        display: none;
    }

    .news-section--blue .story-card,
    .news-section--green .story-card {
        display: block;
    }

    .news-section--blue .story-card .story-media,
    .news-section--green .story-card .story-media {
        aspect-ratio: 16 / 9;
        margin-bottom: 12px;
    }

    .horoscope-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .horoscope-intro {
        padding: 16px 18px;
    }

    .horoscope-intro strong {
        font-size: 18px;
    }

    .article-meta-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-featured {
        margin-inline: -14px;
        border-radius: 0;
    }

    .entry-content {
        font-size: 18px;
        line-height: 1.75;
    }

    .single-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }

    .latest-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 12px;
    }

    .latest-item .story-media {
        aspect-ratio: 16 / 9;
    }

    .latest-item h3 {
        font-size: 20px;
    }

    .footer-widgets {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 14px 0;
    }

    .latest-news-card {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        padding: 12px;
    }

    .latest-news-card__media {
        max-width: none;
        aspect-ratio: 16 / 9;
    }

    .latest-news-card__body {
        padding: 2px 4px 5px;
    }

    .latest-news-card__body h2 {
        font-size: 23px;
    }

    .latest-news-card__excerpt {
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .header-grid {
        grid-template-columns: 42px 1fr 42px;
        gap: 8px;
    }

    .icon-button {
        width: 40px;
        height: 40px;
        padding: 9px;
    }

    .site-branding img {
        width: min(225px, 56vw);
    }

    .hero-media {
        margin-inline: -14px;
        border-radius: 0;
        box-shadow: none;
    }

    .headline-list article {
        padding: 10px;
    }

    .hero-sidebar {
        padding: 15px;
    }

    .story-row {
        grid-template-columns: 108px minmax(0, 1fr);
    }

    .story-row h3 {
        font-size: 14px;
    }

    .story-card {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 12px;
    }

    .story-title {
        font-size: 15px;
    }

    .story-category {
        font-size: 10px;
    }

    .article-header h1 {
        font-size: 35px;
    }

    .article-lead {
        font-size: 17px;
    }

    .article-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .breadcrumbs > span:last-child {
        max-width: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .ticker-track {
        animation: none !important;
    }
}
