:root {
    --blue: #004aad;
    --blue-strong: #0057d9;
    --blue-dark: #002f73;
    --blue-deep: #071f45;
    --red: #c51612;
    --red-dark: #9f100d;
    --green: #16a34a;
    --black: #101114;
    --text: #101828;
    --muted: #667085;
    --border: #e4e7ec;
    --soft: #f5f7fa;
    --white: #ffffff;
    --shadow-sm: 0 8px 22px rgba(16, 24, 40, .06);
    --shadow-md: 0 16px 36px rgba(16, 24, 40, .10);
    --shadow-lg: 0 24px 60px rgba(16, 24, 40, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0, 74, 173, .08), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 34px));
    margin: 0 auto;
}

/* Topbar */
.topbar {
    background:
        linear-gradient(90deg, #070707, #151515);
    color: #fff;
    font-size: 13px;
    position: relative;
    z-index: 20;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar a {
    font-weight: 800;
    opacity: .95;
}

.topbar a:hover {
    color: #dbeafe;
}

.sep {
    opacity: .45;
}

.weather {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
}

.social {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0057d9, #003b95);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(0, 74, 173, .35);
}

/* Brand */
.brand-area {
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    padding: 30px 0 26px;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.brand-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 58px;
    align-items: center;
}

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

.brand-logo img {
    width: 470px;
    max-width: 100%;
    filter: drop-shadow(0 10px 18px rgba(16, 24, 40, .10));
}

.brand-logo p {
    margin: 13px 0 0;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
    color: #151922;
    letter-spacing: -.4px;
}

.top-ad {
    height: 100px;
    display: grid;
    grid-template-columns: 1fr 155px;
    background:
        linear-gradient(135deg, rgba(7, 31, 69, .98), rgba(0, 74, 173, .92)),
        radial-gradient(circle at right, rgba(255, 255, 255, .18), transparent 34%);
    color: #fff;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.top-ad::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 52%, rgba(255, 255, 255, .16) 52% 58%, transparent 58% 100%);
    pointer-events: none;
}

.top-ad > div:first-child {
    padding: 21px 30px;
    position: relative;
    z-index: 1;
}

.top-ad strong {
    display: block;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -.2px;
}

.top-ad span {
    display: block;
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
}

.top-ad b {
    color: #ff4438;
}

.top-ad-side {
    background: rgba(0, 35, 90, .42);
    display: grid;
    place-items: center;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .18);
    position: relative;
    z-index: 1;
}

.top-ad-side small {
    background: var(--red);
    padding: 6px 9px;
    border-radius: 3px;
    font-weight: 900;
    font-size: 11px;
}

/* Menu */
.main-menu {
    background: var(--blue);
    color: #fff;
    border-bottom: 4px solid var(--red);
    position: sticky;
    top: 0;
    z-index: 30;
    box-shadow: 0 12px 22px rgba(0, 74, 173, .18);
}

.menu-inner {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.menu-inner::-webkit-scrollbar {
    display: none;
}

.menu-inner a {
    padding: 17px 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: .2px;
    transition: background .2s ease, transform .2s ease;
}

.menu-inner a:hover,
.home-icon {
    background: var(--blue-dark);
}

.menu-inner a:hover {
    transform: translateY(-1px);
}

.home-icon {
    font-size: 23px !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
}

/* Page */
.page {
    padding: 30px 0 42px;
}

/* Hero */
.hero-grid {
    display: grid;
    grid-template-columns: 1.52fr .9fr .82fr;
    gap: 18px;
    align-items: stretch;
}

.main-headline {
    min-height: 545px;
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(to bottom, rgba(3, 8, 23, .04), rgba(3, 8, 23, .94)),
        radial-gradient(circle at 24% 12%, rgba(0, 87, 217, .64), transparent 34%),
        linear-gradient(135deg, #1f5f99, #05090f);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.main-headline::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 24%),
        linear-gradient(0deg, rgba(0, 0, 0, .2), transparent 54%);
    pointer-events: none;
}

.headline-copy {
    position: relative;
    z-index: 1;
}

.headline-copy h1 {
    margin: 14px 0 12px;
    font-size: clamp(30px, 3.2vw, 41px);
    line-height: 1.04;
    letter-spacing: -1.25px;
    text-wrap: balance;
}

.headline-copy p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .92);
    max-width: 94%;
}

.headline-copy small {
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

.tag {
    display: inline-flex;
    width: fit-content;
    padding: 5px 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 2px;
    letter-spacing: .2px;
}

.tag.red {
    background: var(--red);
}

.tag.blue {
    background: var(--blue);
}

/* Cards base */
.side-news,
.most-read,
.section-block,
.whatsapp-card,
.opinion-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.side-news {
    overflow: hidden;
}

.side-news article {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    padding: 14px;
    border-bottom: 1px solid var(--border);
    transition: background .2s ease;
}

.side-news article:hover {
    background: #f8fbff;
}

.side-news article:last-child {
    border-bottom: 0;
}

.side-news h2 {
    margin: 8px 0 9px;
    font-size: 17px;
    line-height: 1.24;
    letter-spacing: -.2px;
}

.side-news small {
    color: var(--muted);
    font-weight: 700;
}

.side-thumb {
    min-height: 128px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}

.photo-1,
.photo-2,
.photo-3,
.card-img,
.city-img,
.avatar {
    background:
        linear-gradient(135deg, rgba(0, 74, 173, .18), rgba(197, 22, 18, .10)),
        linear-gradient(135deg, #e4e7ec, #98a2b3);
}

.photo-1 {
    background:
        linear-gradient(135deg, rgba(0, 74, 173, .22), rgba(0, 0, 0, .05)),
        linear-gradient(135deg, #d7dce5, #9aa4b2);
}

.photo-2 {
    background:
        linear-gradient(135deg, rgba(197, 22, 18, .14), rgba(0, 74, 173, .12)),
        linear-gradient(135deg, #eef2f7, #9aa4b2);
}

.photo-3 {
    background:
        linear-gradient(135deg, rgba(7, 31, 69, .14), rgba(0, 0, 0, .08)),
        linear-gradient(135deg, #d1d5db, #667085);
}

/* Most read */
.most-read {
    overflow: hidden;
}

.most-read h3 {
    margin: 0;
    padding: 17px 18px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: -.2px;
}

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

.most-read li {
    counter-increment: ranking;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
    transition: background .2s ease;
}

.most-read li:hover {
    background: #fff7f7;
}

.most-read li::before {
    content: counter(ranking);
    color: var(--red);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.most-read strong {
    display: block;
    font-size: 15px;
    line-height: 1.3;
}

.most-read span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
}

/* Latest */
.latest-bar {
    margin-top: 24px;
    background: #fff;
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 145px 1fr;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.latest-title {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    padding: 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-size: 19px;
    line-height: 1.08;
    font-weight: 900;
}

.latest-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.latest-list article {
    padding: 16px;
    border-right: 1px solid var(--border);
    transition: background .2s ease;
}

.latest-list article:hover {
    background: #f8fbff;
}

.latest-list time {
    color: var(--blue);
    font-weight: 900;
    font-size: 13px;
}

.latest-list p {
    margin: 7px 0 0;
    font-size: 13px;
    line-height: 1.35;
}

.latest-all {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 900;
    text-align: center;
}

/* Main content */
.content-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}

.section-block {
    padding: 18px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--blue);
    margin-bottom: 18px;
}

.section-title h2 {
    margin: 0 0 10px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: -.5px;
}

.section-title a {
    color: var(--blue);
    font-weight: 900;
    font-size: 13px;
}

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

.news-card {
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden;
    padding-bottom: 11px;
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.news-card:hover,
.city-grid article:hover,
.power-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 74, 173, .22);
}

.card-img {
    height: 112px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
}

.news-card .tag,
.news-card h3,
.news-card small {
    margin-left: 10px;
    margin-right: 10px;
}

.news-card h3 {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: -.15px;
}

.news-card small {
    color: var(--muted);
    font-size: 12px;
}

/* Power */
.power-section {
    margin-top: 24px;
    background:
        radial-gradient(circle at top left, rgba(0, 74, 173, .22), transparent 32%),
        #090909;
    color: #fff;
    padding: 20px;
    border-top: 5px solid var(--red);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.power-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.power-header h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: -.4px;
}

.power-header a {
    font-size: 13px;
    color: #fff;
    font-weight: 800;
}

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

.power-grid article {
    min-height: 220px;
    padding: 16px;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.16), rgba(0,0,0,.94)),
        radial-gradient(circle at top left, rgba(0, 74, 173, .28), transparent 36%),
        linear-gradient(135deg, #25344a, #08090b);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255,255,255,.06);
    transition: transform .22s ease, box-shadow .22s ease;
}

.power-grid span {
    width: fit-content;
    background: var(--red);
    color: #fff;
    padding: 5px 8px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 2px;
}

.power-grid h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.power-grid p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,.8);
}

/* Sidebar */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.whatsapp-card {
    padding: 22px;
    border-top: 5px solid var(--green);
    background:
        radial-gradient(circle at right top, rgba(22, 163, 74, .12), transparent 35%),
        #fff;
}

.whatsapp-card strong {
    display: block;
    color: var(--green);
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.15;
}

.whatsapp-card p {
    font-size: 14px;
    line-height: 1.45;
}

.whatsapp-card a {
    display: block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    text-align: center;
    padding: 13px;
    border-radius: 7px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(22, 163, 74, .22);
}

.opinion-card {
    overflow: hidden;
}

.opinion-card h3 {
    margin: 0;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    text-transform: uppercase;
    padding: 16px;
    font-size: 20px;
}

.opinion-card article {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    transition: background .2s ease;
}

.opinion-card article:hover {
    background: #f8fbff;
}

.avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.opinion-card h4 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.28;
}

.opinion-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.all-columns {
    display: block;
    padding: 16px;
    color: var(--blue);
    font-weight: 900;
    text-align: center;
    font-size: 13px;
}

/* Cities */
.municipalities {
    margin-top: 24px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

.city-grid article {
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden;
    padding-bottom: 11px;
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.city-img {
    height: 86px;
    background-size: cover;
    background-position: center;
}

.city-grid strong,
.city-grid h3,
.city-grid small {
    margin-left: 10px;
    margin-right: 10px;
}

.city-grid strong {
    display: block;
    margin-top: 10px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 11px;
}

.city-grid h3 {
    font-size: 13px;
    line-height: 1.28;
    margin-top: 7px;
    margin-bottom: 9px;
}

.city-grid small {
    color: var(--muted);
    font-size: 11px;
}

/* Footer */
.footer {
    background: #fff;
    border-top: 6px solid var(--red);
}

.footer-grid {
    padding: 34px 0;
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr 1fr;
    gap: 40px;
}

.footer img {
    width: 230px;
    max-width: 100%;
    display: block;
    margin-bottom: 12px;
}

.footer p {
    margin: 0 0 9px;
    color: #374151;
    font-size: 14px;
    line-height: 1.45;
}

.footer h4 {
    margin: 0 0 14px;
    text-transform: uppercase;
    font-size: 15px;
}

.footer a {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social span {
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.copyright {
    background: var(--blue);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 13px;
}

/* Floating CTA */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    padding: 13px 16px;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(22, 163, 74, .34);
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(22, 163, 74, .42);
}

.floating-whatsapp span {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1100px) {
    .brand-grid,
    .hero-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

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

    .top-ad {
        display: none;
    }

    .latest-bar {
        grid-template-columns: 1fr;
    }

    .latest-list,
    .news-grid,
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .power-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .right-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .topbar-inner {
        min-height: auto;
        padding: 9px 0;
        flex-direction: column;
        gap: 8px;
    }

    .topbar-left,
    .topbar-right {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .topbar {
        font-size: 12px;
    }

    .social:nth-of-type(n+4),
    .topbar-right .sep {
        display: none;
    }

    .brand-area {
        padding: 28px 0 24px;
    }

    .brand-logo img {
        width: min(440px, 86vw);
    }

    .brand-logo p {
        font-size: clamp(22px, 5vw, 30px);
    }

    .menu-inner a {
        padding: 17px 20px;
        font-size: 13px;
    }

    .page {
        padding-top: 22px;
    }

    .main-headline {
        min-height: 520px;
        border-radius: 10px;
    }

    .headline-copy h1 {
        font-size: clamp(32px, 9vw, 44px);
        line-height: 1.04;
    }

    .headline-copy p {
        max-width: 100%;
        font-size: 19px;
    }

    .side-news article {
        grid-template-columns: 120px 1fr;
    }

    .latest-list,
    .news-grid,
    .city-grid,
    .power-grid,
    .footer-grid,
    .right-column {
        grid-template-columns: 1fr;
    }

    .latest-list article {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .section-title h2 {
        font-size: 21px;
    }

    .news-card h3 {
        font-size: 16px;
    }

    .card-img {
        height: 160px;
    }

    .city-img {
        height: 150px;
    }

    .footer-grid {
        gap: 22px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 12px 14px;
    }

    .floating-whatsapp strong {
        display: none;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 18px, 1180px);
    }

    .main-headline {
        min-height: 500px;
        padding: 16px;
    }

    .headline-copy h1 {
        font-size: 29px;
    }

    .headline-copy p {
        font-size: 16px;
    }

    .side-news article {
        grid-template-columns: 98px 1fr;
    }

    .side-thumb {
        min-height: 100px;
    }

    .most-read li {
        padding: 15px;
    }

    .latest-title {
        padding: 16px;
    }
}

/* SVG icons */
.social-icon {
    width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    transition: transform .2s ease, filter .2s ease;
}

.social-icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.06);
    filter: brightness(1.08);
}

.inline-icon {
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
    filter: invert(1);
}

.home-icon {
    display: grid !important;
    place-items: center;
    min-width: 50px;
}

.home-icon img {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

/* Editorial quick strip */
.editorial-strip {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.editorial-strip article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.editorial-strip article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 74, 173, .25);
}

.editorial-strip img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.editorial-strip strong {
    display: block;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 4px;
}

.editorial-strip span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.3;
}

/* Footer SVG social */
.footer-social a {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    transition: transform .2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.footer-social img {
    width: 24px;
    height: 24px;
}

/* Floating WhatsApp with real icon */
.floating-whatsapp img {
    width: 24px;
    height: 24px;
}

@media (max-width: 1100px) {
    .editorial-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .editorial-strip {
        grid-template-columns: 1fr;
    }

    .editorial-strip article {
        grid-template-columns: 42px 1fr;
        padding: 14px;
    }

    .editorial-strip img {
        width: 42px;
        height: 42px;
    }

    .topbar-right .social-icon:nth-of-type(n+4) {
        display: none;
    }
}


/* =========================================================
   PRO PATCH v6 - Bem Roraima
   ========================================================= */

/* Header mais compacto e editorial */
.brand-area {
    padding: 22px 0 20px;
}

.brand-grid {
    grid-template-columns: 455px 1fr;
    gap: 52px;
}

.brand-logo img {
    width: 420px;
}

.brand-logo p {
    margin-top: 10px;
    font-size: 23px;
    letter-spacing: -.35px;
}

.top-ad {
    height: 88px;
    border-radius: 7px;
}

.top-ad > div:first-child {
    padding: 17px 26px;
}

.top-ad strong {
    font-size: 20px;
}

.top-ad span {
    font-size: 16px;
}

/* Menu mais firme */
.main-menu {
    box-shadow: 0 10px 24px rgba(0, 74, 173, .22);
}

.menu-inner a {
    position: relative;
}

.menu-inner a.active::after,
.menu-inner a:hover::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    background: #fff;
    border-radius: 99px 99px 0 0;
}

.home-icon {
    width: 58px;
    min-width: 58px;
    padding: 0 !important;
    height: 50px;
    background: var(--blue-dark) !important;
    border-left: 1px solid rgba(255,255,255,.12);
    border-right: 1px solid rgba(255,255,255,.12);
}

.home-icon::after {
    display: none !important;
}

.home-icon img {
    width: 25px;
    height: 25px;
    filter: none !important;
    object-fit: contain;
}

/* Faixa Agora em Roraima */
.now-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 22px rgba(16, 24, 40, .04);
}

.now-inner {
    min-height: 46px;
    display: grid;
    grid-template-columns: 178px 1fr;
    align-items: center;
    gap: 18px;
}

.now-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.now-label span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(197, 22, 18, .12);
    animation: pulse-live 1.4s infinite;
}

@keyframes pulse-live {
    0% { transform: scale(.9); opacity: .75; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(.9); opacity: .75; }
}

.now-ticker {
    display: flex;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.now-ticker::-webkit-scrollbar {
    display: none;
}

.now-ticker a {
    position: relative;
    color: #1f2937;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: color .2s ease;
}

.now-ticker a:hover {
    color: var(--blue);
}

.now-ticker a:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -12px;
    color: var(--muted);
}

/* Respiro melhor da página */
.page {
    padding-top: 24px;
}

/* Hero mais premium */
.hero-grid {
    gap: 20px;
}

.main-headline {
    border-radius: 10px;
    min-height: 530px;
    box-shadow: 0 24px 60px rgba(0, 33, 80, .18);
}

.main-headline::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.12), transparent 20%),
        linear-gradient(135deg, rgba(0,74,173,.35), transparent 50%);
    pointer-events: none;
}

.headline-copy h1 {
    max-width: 760px;
}

.headline-copy p {
    max-width: 720px;
}

/* Laterais mais bonitas */
.side-news,
.most-read {
    border-radius: 10px;
    overflow: hidden;
}

.side-news article {
    min-height: 170px;
}

.side-thumb {
    border-radius: 7px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}

/* Mais lidas com destaque no primeiro item */
.most-read li:first-child {
    background: linear-gradient(135deg, rgba(197, 22, 18, .09), rgba(255,255,255,1));
}

.most-read li:first-child::before {
    transform: scale(1.12);
}

.most-read li {
    min-height: 91px;
}

/* Faixa editorial com mais cara de produto */
.editorial-strip {
    margin-top: 20px;
}

.editorial-strip article {
    border-radius: 12px;
    background:
        radial-gradient(circle at top right, rgba(0,74,173,.08), transparent 34%),
        #fff;
}

.editorial-strip strong {
    letter-spacing: .2px;
}

/* Últimas notícias mais compacta */
.latest-bar {
    margin-top: 20px;
    border-radius: 10px;
}

.latest-title {
    font-size: 18px;
}

.latest-list article {
    min-height: 78px;
}

/* Blocos principais */
.section-block {
    border-radius: 10px;
}

.section-title {
    align-items: flex-end;
}

.section-title h2 {
    position: relative;
    padding-left: 0;
}

.section-title h2::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 4px;
    background: var(--red);
    border-radius: 99px;
    margin-left: 12px;
    vertical-align: middle;
}

.news-card,
.city-grid article {
    border-radius: 9px;
}

.news-card:hover h3,
.city-grid article:hover h3 {
    color: var(--blue);
}

.card-img,
.city-img {
    position: relative;
    overflow: hidden;
}

.card-img::after,
.city-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.16), transparent 45%);
}

/* Poder em Roraima mais forte */
.power-section {
    border-radius: 10px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, .18);
}

.power-header {
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding-bottom: 14px;
}

.power-header h2::after {
    content: "";
    display: inline-block;
    width: 62px;
    height: 4px;
    background: var(--red);
    border-radius: 99px;
    margin-left: 14px;
    vertical-align: middle;
}

.power-grid article {
    border-radius: 8px;
}

/* Sidebar */
.whatsapp-card,
.opinion-card {
    border-radius: 10px;
}

.whatsapp-card {
    box-shadow: 0 18px 34px rgba(22, 163, 74, .10);
}

.whatsapp-card a:hover {
    transform: translateY(-2px);
}

/* Footer mais premium */
.footer {
    margin-top: 8px;
    box-shadow: 0 -12px 30px rgba(16, 24, 40, .04);
}

.footer-grid {
    align-items: start;
}

.footer img {
    width: 210px;
}

/* WhatsApp flutuante mais discreto */
.floating-whatsapp {
    right: 20px;
    bottom: 20px;
    padding: 11px 15px;
    box-shadow: 0 14px 34px rgba(22, 163, 74, .28);
}

.floating-whatsapp img {
    width: 22px;
    height: 22px;
}

/* Mobile PRO */
@media (max-width: 760px) {
    .topbar-inner {
        padding: 7px 0;
        gap: 6px;
    }

    .topbar-left {
        font-size: 12px;
    }

    .topbar-right {
        gap: 8px;
    }

    .topbar-right a:nth-last-child(2) {
        display: none;
    }

    .topbar-right a {
        font-size: 12px;
    }

    .brand-area {
        padding: 22px 0 18px;
    }

    .brand-logo img {
        width: min(360px, 82vw);
    }

    .brand-logo p {
        font-size: 21px;
    }

    .main-menu {
        top: 0;
    }

    .menu-inner {
        scroll-snap-type: x mandatory;
    }

    .menu-inner a {
        scroll-snap-align: start;
        padding: 16px 18px;
    }

    .home-icon {
        height: 49px;
        width: 54px;
        min-width: 54px;
    }

    .now-inner {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 10px 0;
    }

    .now-label {
        font-size: 12px;
    }

    .now-ticker {
        gap: 16px;
    }

    .now-ticker a {
        font-size: 12px;
    }

    .page {
        padding-top: 18px;
    }

    .main-headline {
        min-height: 430px;
        padding: 18px;
        border-radius: 12px;
    }

    .headline-copy h1 {
        font-size: clamp(27px, 7.8vw, 36px);
        letter-spacing: -.8px;
    }

    .headline-copy p {
        font-size: 15px;
        line-height: 1.42;
    }

    .side-news article {
        min-height: auto;
        grid-template-columns: 105px 1fr;
    }

    .side-thumb {
        min-height: 105px;
    }

    .most-read li {
        min-height: auto;
        grid-template-columns: 36px 1fr;
    }

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

    .editorial-strip {
        margin-top: 18px;
    }

    .latest-bar {
        margin-top: 18px;
    }

    .latest-list {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .latest-list article {
        min-width: 210px;
        scroll-snap-align: start;
        border-right: 1px solid var(--border);
        border-bottom: 0;
    }

    .latest-all {
        min-width: 150px;
    }

    .content-grid {
        margin-top: 18px;
    }

    .section-block {
        padding: 14px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title h2::after {
        width: 28px;
        height: 3px;
        margin-left: 8px;
    }

    .news-grid {
        gap: 12px;
    }

    .card-img {
        height: 150px;
    }

    .power-section {
        padding: 16px;
    }

    .power-header {
        align-items: flex-start;
        gap: 8px;
    }

    .power-header h2 {
        font-size: 20px;
    }

    .power-header a {
        font-size: 11px;
    }

    .power-grid article {
        min-height: 180px;
    }

    .right-column {
        gap: 18px;
    }

    .city-img {
        height: 145px;
    }

    .footer {
        margin-top: 0;
    }

    .footer-grid {
        padding: 26px 0;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 18px, 1180px);
    }

    .brand-logo img {
        width: min(320px, 84vw);
    }

    .brand-logo p {
        font-size: 19px;
    }

    .headline-copy h1 {
        font-size: 26px;
    }

    .headline-copy p {
        font-size: 14px;
    }

    .main-headline {
        min-height: 410px;
    }

    .side-news article {
        grid-template-columns: 92px 1fr;
        gap: 11px;
    }

    .side-news h2 {
        font-size: 14px;
    }

    .tag {
        font-size: 9px;
    }
}

/* CTA denúncia WhatsApp */
.floating-whatsapp {
    min-height: 48px;
    padding: 12px 18px;
    gap: 10px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
}

.floating-whatsapp img {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.floating-whatsapp strong {
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
        padding: 10px 14px;
        max-width: calc(100vw - 24px);
    }

    .floating-whatsapp strong {
        display: inline !important;
        font-size: 12px;
        white-space: normal;
        line-height: 1.2;
    }

    .floating-whatsapp img {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
    }
}

/* Article page */
.article-page {
    padding: 34px 0 42px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

.article-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 34px;
    box-shadow: var(--shadow-sm);
}

.article-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.article-kicker strong {
    color: var(--red);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}

.article-card h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -1.5px;
    color: #0f172a;
    text-wrap: balance;
}

.article-subtitle {
    margin: 18px 0 0;
    font-size: 21px;
    line-height: 1.45;
    color: #475467;
}

.article-meta {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.article-cover {
    margin: 28px 0;
}

.article-cover img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.article-cover figcaption {
    margin-top: 9px;
    color: #667085;
    font-size: 12px;
    line-height: 1.4;
}

.article-cover figcaption span {
    display: block;
    margin-top: 3px;
    font-weight: 800;
}

.article-content {
    font-size: 19px;
    line-height: 1.78;
    color: #1f2937;
}

.article-content p {
    margin: 0 0 22px;
}

.article-source {
    margin-top: 28px;
    padding: 16px;
    border-left: 4px solid var(--blue);
    background: #f8fbff;
    color: #475467;
    font-size: 14px;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 76px;
}

@media (max-width: 960px) {
    .article-page {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .article-card {
        padding: 24px;
    }

    .article-subtitle {
        font-size: 18px;
    }

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

@media (max-width: 520px) {
    .article-page {
        padding-top: 22px;
    }

    .article-card {
        padding: 18px;
        border-radius: 12px;
    }

    .article-card h1 {
        font-size: 30px;
        letter-spacing: -.9px;
    }

    .article-subtitle {
        font-size: 16px;
    }

    .article-content {
        font-size: 16px;
        line-height: 1.68;
    }
}

/* Patch v8 - distribuição real da home */
.news-mini-thumb {
    background-size: cover;
    background-position: center;
    display: block;
}

.main-headline,
.side-thumb,
.card-img {
    background-size: cover;
    background-position: center;
}

.news-card .card-img:not([style]),
.side-thumb:not([style]) {
    background:
        linear-gradient(135deg, rgba(0, 74, 173, .18), rgba(197, 22, 18, .10)),
        linear-gradient(135deg, #e4e7ec, #98a2b3);
}

.most-read li strong a,
.side-news h2 a,
.news-card h3 a,
.latest-list p a,
.now-ticker a {
    transition: color .2s ease;
}

.most-read li strong a:hover,
.side-news h2 a:hover,
.news-card h3 a:hover,
.latest-list p a:hover,
.now-ticker a:hover {
    color: var(--blue);
}

.opinion-card .news-mini-thumb {
    border-radius: 10px;
}

@media (max-width: 760px) {
    .opinion-card .news-mini-thumb {
        border-radius: 8px;
    }
}

/* Patch v9 - Bloco Municipios no fim da home */
.municipalities {
    margin-top: 24px;
    border-radius: 10px;
}

.municipalities .section-title {
    margin-bottom: 18px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

.city-grid article {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 9px;
    overflow: hidden;
    padding-bottom: 11px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.city-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 74, 173, .22);
}

.city-img {
    height: 90px;
    display: block;
    background-size: cover;
    background-position: center;
    background:
        linear-gradient(135deg, rgba(0, 74, 173, .18), rgba(197, 22, 18, .10)),
        linear-gradient(135deg, #e4e7ec, #98a2b3);
}

.city-grid strong,
.city-grid h3,
.city-grid small {
    margin-left: 10px;
    margin-right: 10px;
}

.city-grid strong {
    display: block;
    margin-top: 10px;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
}

.city-grid h3 {
    margin-top: 7px;
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 1.28;
}

.city-grid h3 a:hover {
    color: var(--blue);
}

.city-grid small {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

@media (max-width: 1100px) {
    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .municipalities {
        margin-top: 18px;
        padding: 14px;
    }

    .city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .city-img {
        height: 120px;
    }
}

@media (max-width: 420px) {
    .city-grid {
        grid-template-columns: 1fr;
    }

    .city-img {
        height: 150px;
    }
}

/* Patch v10 - redes sociais no menu */
.menu-with-social {
    justify-content: space-between;
    gap: 18px;
}

.menu-links {
    display: flex;
    align-items: center;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.menu-links::-webkit-scrollbar {
    display: none;
}

.menu-links > a {
    padding: 17px 20px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: .2px;
    transition: background .2s ease, transform .2s ease;
    position: relative;
}

.menu-links > a:hover,
.menu-links > a.active {
    background: var(--blue-dark);
}

.menu-links > a.active::after,
.menu-links > a:hover::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 3px;
    background: #fff;
    border-radius: 99px 99px 0 0;
}

.menu-social {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.18);
}

.menu-social a {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    transition: transform .2s ease, filter .2s ease;
}

.menu-social a:hover {
    transform: translateY(-2px) scale(1.06);
    filter: brightness(1.08);
}

.menu-social img {
    width: 24px;
    height: 24px;
    display: block;
}

.menu-with-social .home-icon {
    width: 58px;
    min-width: 58px;
    padding: 0 !important;
    height: 50px;
    background: var(--blue-dark) !important;
    border-left: 1px solid rgba(255,255,255,.12);
    border-right: 1px solid rgba(255,255,255,.12);
}

.menu-with-social .home-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: none !important;
}

.menu-with-social .home-icon::after {
    display: none !important;
}

/* Evita conflito com regra antiga do menu */
.menu-with-social > a {
    padding: 0;
}

@media (max-width: 1100px) {
    .menu-with-social {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .menu-with-social::-webkit-scrollbar {
        display: none;
    }

    .menu-links {
        flex: 0 0 auto;
    }

    .menu-social {
        padding-right: 4px;
    }
}

@media (max-width: 760px) {
    .menu-with-social {
        width: 100%;
        gap: 12px;
    }

    .menu-links > a {
        padding: 16px 18px;
        font-size: 13px;
    }

    .menu-social {
        gap: 7px;
        padding-left: 14px;
    }

    .menu-social a,
    .menu-social img {
        width: 22px;
        height: 22px;
    }
}


/* Patch v11 - corrige redes no menu principal */
.main-menu .menu-with-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

.menu-links {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.menu-links::-webkit-scrollbar {
    display: none;
}

.menu-links > a {
    flex: 0 0 auto;
}

.menu-social {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    flex: 0 0 auto;
    margin-left: 18px;
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.22);
}

.menu-social a {
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    display: inline-grid !important;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    background: transparent !important;
    position: relative;
}

.menu-social a::after {
    display: none !important;
}

.menu-social img {
    width: 24px !important;
    height: 24px !important;
    display: block;
    object-fit: contain;
}

.menu-social a:hover {
    transform: translateY(-2px) scale(1.06);
}

@media (max-width: 1100px) {
    .main-menu .menu-with-social {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .main-menu .menu-with-social::-webkit-scrollbar {
        display: none;
    }

    .menu-links {
        flex: 0 0 auto;
    }

    .menu-social {
        margin-left: 12px;
        padding-left: 12px;
        padding-right: 8px;
    }
}

@media (max-width: 760px) {
    .menu-social {
        gap: 7px;
    }

    .menu-social a,
    .menu-social img {
        width: 22px !important;
        height: 22px !important;
    }
}

/* Patch v12 - ajuste fino do menu com redes */
.main-menu .container {
    width: min(1240px, calc(100% - 28px));
}

.main-menu .menu-with-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.menu-links {
    flex: 1 1 auto;
    min-width: 0;
}

.menu-links > a {
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-size: 12.5px !important;
}

.menu-links > a.active::after,
.menu-links > a:hover::after {
    left: 14px;
    right: 14px;
}

.menu-with-social .home-icon {
    width: 52px !important;
    min-width: 52px !important;
    padding: 0 !important;
}

.menu-social {
    gap: 8px;
    margin-left: 10px;
    padding-left: 12px;
}

.menu-social a,
.menu-social img {
    width: 22px !important;
    height: 22px !important;
}

/* Em larguras intermediárias, economiza espaço sem quebrar */
@media (max-width: 1180px) {
    .menu-links > a {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 12px !important;
    }

    .menu-social {
        gap: 7px;
        padding-left: 10px;
    }

    .menu-social a,
    .menu-social img {
        width: 21px !important;
        height: 21px !important;
    }
}

/* Tablet/mobile: vira barra rolável */
@media (max-width: 980px) {
    .main-menu .menu-with-social {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .main-menu .menu-with-social::-webkit-scrollbar {
        display: none;
    }

    .menu-links {
        flex: 0 0 auto;
    }

    .menu-links > a {
        padding-left: 16px !important;
        padding-right: 16px !important;
        font-size: 12.5px !important;
    }

    .menu-social {
        flex: 0 0 auto;
        padding-right: 8px;
    }
}


/* Patch v13 - reduz respiro da logo */
.brand-area {
    padding: 16px 0 12px !important;
}

.brand-logo img {
    width: 390px !important;
}

.brand-logo p {
    margin-top: 6px !important;
    font-size: 21px !important;
    line-height: 1.05 !important;
}

.brand-grid {
    align-items: center;
}

@media (max-width: 760px) {
    .brand-area {
        padding: 16px 0 12px !important;
    }

    .brand-logo img {
        width: min(320px, 82vw) !important;
    }

    .brand-logo p {
        margin-top: 6px !important;
        font-size: 18px !important;
    }
}

/* Patch v14 - ticker Agora em Roraima */
.now-inner {
    overflow: hidden;
}

.now-marquee {
    min-width: 0;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.now-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 28px;
    animation: now-marquee-scroll 42s linear infinite;
    will-change: transform;
}

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

.now-track a {
    position: relative;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    transition: color .2s ease;
}

.now-track a:hover {
    color: var(--blue);
}

.now-track a::after {
    content: "•";
    position: absolute;
    right: -18px;
    color: #7b8794;
}

@keyframes now-marquee-scroll {
    from {
        transform: translateX(0);
    }

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

/* Desliga regras antigas do ticker horizontal */
.now-ticker {
    display: none !important;
}

@media (max-width: 760px) {
    .now-inner {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .now-marquee {
        width: 100%;
    }

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

    .now-track a {
        font-size: 12px;
    }
}

/* Patch v15 - header com banner, logo clicavel e topbar institucional */
.topbar-right {
    font-weight: 800;
}

.topbar-right a {
    white-space: nowrap;
}

.brand-logo {
    text-decoration: none;
    color: inherit;
}

.brand-logo:hover img {
    transform: translateY(-1px);
}

.brand-logo img {
    transition: transform .2s ease, filter .2s ease;
}

.brand-grid {
    grid-template-columns: 430px 1fr !important;
    gap: 42px !important;
}

.banner-placeholder {
    height: 92px;
    border-radius: 10px;
    border: 1px dashed rgba(0, 74, 173, .35);
    background:
        linear-gradient(135deg, rgba(0, 74, 173, .08), rgba(197, 22, 18, .05)),
        #f8fbff !important;
    color: #0f172a !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(16, 24, 40, .06);
    overflow: hidden;
}

.banner-placeholder > div {
    width: 100%;
    padding: 16px 26px !important;
    text-align: center;
}

.banner-placeholder small {
    display: inline-flex;
    width: fit-content;
    margin: 0 auto 5px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 74, 173, .10);
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.banner-placeholder strong {
    color: #0f172a !important;
    font-size: 22px !important;
    line-height: 1.1;
}

.banner-placeholder span {
    color: #475467 !important;
    font-size: 14px !important;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .brand-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .banner-placeholder {
        display: flex !important;
        max-width: 728px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .topbar-right {
        gap: 8px;
    }

    .topbar-right .sep {
        display: inline;
    }

    .topbar-right a {
        font-size: 12px;
    }

    .banner-placeholder {
        height: 76px;
        border-radius: 8px;
    }

    .banner-placeholder strong {
        font-size: 17px !important;
    }

    .banner-placeholder span {
        font-size: 12px !important;
    }
}
