
:root {
    --buttercup: #f5c421;
    --frost: #9fbde1;
    --spicy: #ea6903;

    --orange: #ea6903;
    --orange-dark: #b84e00;
    --yellow: #f5c421;

    --cream: #fff4cf;
    --blue-soft: #d9e8f7;
    --blue-border: rgba(159, 189, 225, .35);

    --dark: #2b1707;
    --text: #3d2a1b;
    --muted: #715c4d;

    --white: #ffffff;

    --bg:
        linear-gradient(
            180deg,
            #fff4cf 0%,
            #f6e3c4 38%,
            #dbe8f6 100%
        );

    --line: rgba(43, 23, 7, .10);

    --shadow: 0 18px 50px rgba(234, 105, 3, .10);
    --shadow-strong: 0 28px 80px rgba(234, 105, 3, .18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    font-family: 'Inter', Arial, Helvetica, sans-serif;

    background:
        radial-gradient(circle at top left, rgba(245, 196, 33, .28), transparent 380px),
        radial-gradient(circle at top right, rgba(159, 189, 225, .45), transparent 430px),
        linear-gradient(180deg, #fff4cf 0%, #f8e1c2 45%, #dbe8f6 100%);

    color: var(--text);
}

.site-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-grow,
.home-wrapper,
.news-article-shell {
    flex: 1;
}

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

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

button,
input,
textarea {
    font-family: inherit;
}

::selection {
    background: var(--yellow);
    color: #2a1600;
}

/* =========================================
   NAVBAR PREMIUM
========================================= */

.top-header{
    width:100%;
    height:78px;

    position:sticky;
    top:0;
    z-index:9999;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 5%;

    background:
        rgba(255,248,236,.82);

    backdrop-filter:blur(18px);

    border-bottom:
        1px solid rgba(234,105,3,.08);

    box-shadow:
        0 10px 35px rgba(16,24,40,.05);
}

/* =========================================
   PÁGINA EQUIPE
========================================= */

.team-wrapper{
    width:min(1180px,92%);
    margin:0 auto;
}

.team-hero{
    margin:40px 0 50px;

    padding:42px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,248,236,.96),
            rgba(159,189,225,.18)
        );

    border:1px solid var(--blue-border);

    box-shadow:var(--shadow);
}

.team-kicker,
.team-role{
    display:inline-block;

    padding:9px 14px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--yellow)
        );

    color:#2a1600;

    font-size:12px;
    font-weight:900;

    text-transform:uppercase;
}

.team-hero h1{
    margin:20px 0 14px;

    font-size:clamp(36px,4vw,60px);

    line-height:1;

    letter-spacing:-2px;

    color:var(--dark);
}

.team-hero p{
    max-width:700px;

    color:var(--muted);

    line-height:1.8;

    font-size:17px;

    font-weight:600;
}

.team-section{
    margin-bottom:70px;
}

.team-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.team-card{
    background:
        rgba(255,248,236,.96);

    border:1px solid var(--blue-border);

    border-radius:28px;

    padding:28px;

    text-align:center;

    box-shadow:
        0 18px 45px rgba(16,24,40,.06);

    transition:.25s ease;
}

.team-card:hover{
    transform:translateY(-5px);
}

.team-avatar{
    width:110px;
    height:110px;

    margin:0 auto 22px;

    border-radius:24px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--yellow)
        );

    padding:4px;
}

.team-avatar img{
    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:20px;

    background:#fff;
}

.team-info h3{
    margin:16px 0 10px;

    color:var(--dark);

    font-size:24px;

    letter-spacing:-1px;
}

.team-info p{
    color:var(--muted);

    line-height:1.7;

    font-size:15px;

    font-weight:600;
}

/* =========================================
   RESPONSIVO
========================================= */

@media(max-width:1000px){

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

}

@media(max-width:760px){

    .team-hero{
        padding:30px;
    }

    .team-grid{
        grid-template-columns:1fr;
    }

}

/* LOGO */

.mini-brand{
    position:relative;

    width:58px;
    height:58px;

    min-width:58px;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            #ea6903,
            #f5c421
        );

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    box-shadow:
        0 18px 40px rgba(234,105,3,.22);
}

.mini-brand::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.35),
            transparent
        );
}

.mini-brand span{
    position:relative;
    z-index:2;

    color:#2a1600;

    font-size:22px;
    font-weight:900;

    letter-spacing:-1px;
}

/* NAV */

.desktop-nav{
    display:flex;
    align-items:center;
    gap:10px;

    padding:8px;

    border-radius:999px;

    background:
        rgba(255,255,255,.52);

    border:
        1px solid rgba(234,105,3,.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.45);
}

.nav-item{
    position:relative;

    display:flex;
    align-items:center;
    gap:9px;

    padding:13px 18px;

    border-radius:999px;

    color:var(--dark);

    font-size:14px;
    font-weight:800;

    transition:.25s ease;

    overflow:hidden;
}

.nav-item span{
    font-size:15px;
}

.nav-item::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(245,196,33,.18),
            rgba(234,105,3,.08)
        );

    opacity:0;

    transition:.25s ease;
}

.nav-item:hover{
    transform:translateY(-2px);

    color:#ea6903;
}

.nav-item:hover::before{
    opacity:1;
}

/* ITEM ATIVO */

.nav-item.active{
    background:
        linear-gradient(
            135deg,
            #ea6903,
            #f5c421
        );

    color:#2a1600;

    box-shadow:
        0 12px 25px rgba(234,105,3,.22);
}

/* BOTÃO ADMIN */

.admin-nav-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:14px 22px;

    border-radius:18px;

    background:
        #2b1707;

    color:#fff;

    font-size:14px;
    font-weight:900;

    transition:.25s ease;

    box-shadow:
        0 14px 30px rgba(43,23,7,.18);
}

.admin-nav-btn:hover{
    transform:translateY(-2px);

    background:#ea6903;

    color:#fff;
}

/* =========================================
   NAVBAR MOBILE / RESPONSIVO
========================================= */

@media(max-width:1100px){

    .top-header{
        gap:16px;
        padding:0 4%;
    }

    .desktop-nav{
        max-width:calc(100vw - 190px);
        overflow-x:auto;
        scrollbar-width:none;
    }

    .desktop-nav::-webkit-scrollbar{
        display:none;
    }

    .nav-item{
        white-space:nowrap;
        padding:12px 16px;
    }
}

@media(max-width:760px){

    .top-header{
        height:auto;
        padding:14px 4%;
        gap:14px;
        flex-direction:column;
        align-items:stretch;
    }

    .mini-brand{
        width:54px;
        height:54px;
        min-width:54px;
        align-self:center;
    }

    .desktop-nav{
        width:100%;
        max-width:100%;
        justify-content:flex-start;
        overflow-x:auto;
        padding:8px;
        border-radius:22px;
    }

    .nav-item{
        flex:0 0 auto;
        padding:12px 15px;
        font-size:13px;
    }

    .admin-nav-btn{
        width:100%;
        padding:13px 18px;
        border-radius:16px;
    }
}

@media(max-width:480px){

    .nav-item{
        padding:11px 14px;
        font-size:12px;
    }

    .nav-item span{
        font-size:14px;
    }

    .mini-brand span{
        font-size:20px;
    }
}

/* LOGO */

.brand-hero {
    position: relative;
    min-height: 150px;
    background: linear-gradient(90deg, #ea6903, #f5c421 48%, #9fbde1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 40%, rgba(255,255,255,.35), transparent 250px),
        radial-gradient(circle at 80% 26%, rgba(255,255,255,.30), transparent 280px),
        linear-gradient(120deg, rgba(255,138,0,.86), rgba(255,209,102,.72), rgba(234,245,255,.78));
}

.brand-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .45;
}

.main-logo-wrap {
    position: relative;
    z-index: 2;
    width: min(400px, 82vw);
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo {
    max-width: 100%;
    max-height: 155px;
    object-fit: contain;
    filter:
        drop-shadow(0 18px 30px rgba(0,0,0,.20))
        drop-shadow(0 8px 18px rgba(255,138,0,.28));
}

/* FAIXA DE NOTÍCIA */

.breaking-news {
    width: min(1180px, 92%);
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #ea6903, #b84e00);
    color: white;
    font-weight: 800;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(16, 24, 40, .16);
}

.breaking-news strong {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #2a1600;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 900;
}

.breaking-news-urgent strong {
    background: linear-gradient(135deg, #ff2b2b, #b80000);
    color: #fff;
}

.breaking-news span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* HOME */

.home-wrapper {
    width: min(1180px, 92%);
    max-width: 1180px;
    margin: 0 auto;
}

.home-hero-new {
    margin: 34px 0;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 470px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--blue-border);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.home-hero-image {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: var(--dark);
}

.home-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 45%, rgba(16,24,40,.18)),
        linear-gradient(0deg, rgba(16,24,40,.18), transparent 55%);
}

.home-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(159,189,225,.45), transparent 260px),
        linear-gradient(135deg, rgba(255,247,223,.95), #ffffff);
}

.category,
.article-category {
    display: inline-block;
    width: fit-content;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #321b00;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.home-hero-content h1 {
    margin: 20px 0 16px;
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: .98;
    letter-spacing: -2.8px;
    color: var(--dark);
    font-weight: 900;
}

.home-hero-content p {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 600;
}

.home-hero-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-read-btn,
.hero a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #2a1600;
    padding: 15px 22px;
    border-radius: 16px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(255, 138, 0, .25);
    transition: .25s;
}

.primary-read-btn:hover,
.hero a:hover {
    transform: translateY(-2px);
}

.hero-like-info {
    background: #fff8ec;
    border: 1px solid var(--blue-border);
    color: var(--dark);
    padding: 13px 16px;
    border-radius: 16px;
    font-weight: 900;
}

.home-empty-hero {
    margin: 34px 0;
    min-height: 390px;
    border-radius: 34px;
    border: 1px solid var(--blue-border);
    background:
        radial-gradient(circle at top left, rgba(255,209,102,.34), transparent 330px),
        radial-gradient(circle at bottom right, rgba(159,189,225,.45), transparent 360px),
        #ffffff;
    box-shadow: var(--shadow);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-empty-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
    color: var(--dark);
}

.home-empty-hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* HERO ANTIGO - COMPATIBILIDADE */

.hero {
    width: 100%;
    min-height: 500px;
    margin: 34px 0;
    border-radius: 34px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(120deg, rgba(16, 24, 40, .82), rgba(16, 24, 40, .22)),
        url("https://images.unsplash.com/photo-1504711434969-e33886168f5c?q=80&w=1600&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-strong);
}

.hero-glass {
    margin: 42px;
    max-width: 780px;
    padding: 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .26);
    color: white;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -3px;
    margin: 22px 0;
    font-weight: 900;
}

.hero p {
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* HOME - CARDS */

.headline-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0 0 34px;
}

.mini-news {
    background: rgba(255, 248, 236, .96);
    border: 1px solid var(--blue-border);
    border-radius: 22px;
    padding: 20px;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 14px 42px rgba(16,24,40,.06);
    transition: .25s;
}

.mini-news:hover {
    transform: translateY(-5px);
    background: var(--cream);
}

.mini-news span {
    color: var(--orange-dark);
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
}

.mini-news strong {
    margin-top: 10px;
    color: var(--dark);
    line-height: 1.35;
    font-size: 15px;
}

.search-panel {
    margin: 0 0 42px;
    border-radius: 30px;
    padding: 30px;
    background:
        linear-gradient(135deg, rgba(255,247,223,.96), rgba(159,189,225,.30));
    border: 1px solid var(--blue-border);
    box-shadow: 0 16px 45px rgba(16,24,40,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.search-label {
    display: inline-block;
    color: var(--orange-dark);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 8px;
}

.search-panel h2 {
    font-size: 32px;
    color: var(--dark);
    letter-spacing: -1px;
}

.search-panel p {
    color: var(--muted);
    margin-top: 6px;
    font-weight: 700;
}

.search-panel form {
    display: flex;
    gap: 12px;
    width: min(520px, 100%);
}

.search-panel input {
    flex: 1;
    border: 1px solid var(--blue-border);
    background: #fff8ec;
    padding: 15px 16px;
    border-radius: 16px;
    outline: none;
    font-weight: 700;
    color: var(--text);
}

.search-panel input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 138, 0, .12);
}

.search-panel button {
    border: none;
    background: var(--dark);
    color: white;
    padding: 15px 22px;
    border-radius: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s;
}

.search-panel button:hover {
    background: var(--orange);
    color: #2a1600;
}

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

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

.section-heading span {
    width: 12px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--orange), var(--yellow));
}

.section-heading h2 {
    font-size: 38px;
    color: var(--dark);
    letter-spacing: -1.5px;
}

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

.card {
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 248, 236, .97);
    border: 1px solid var(--blue-border);
    box-shadow: var(--shadow);
    transition: .28s;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 75px rgba(16, 24, 40, .13);
}

.card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.card:hover .card-image img {
    transform: scale(1.06);
}

.card-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 247, 223, .96);
    color: #7a3d00;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 24px;
    line-height: 1.18;
    color: var(--dark);
    letter-spacing: -.8px;
    margin-bottom: 12px;
}

.card-body p {
    color: var(--muted);
    line-height: 1.7;
    font-weight: 500;
}

.card-footer {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.card-footer small {
    color: var(--muted);
    font-weight: 800;
}

.card-footer a {
    background: var(--blue-soft);
    color: var(--dark);
    padding: 11px 16px;
    border-radius: 14px;
    font-weight: 900;
    transition: .25s;
}

.card-footer a:hover {
    background: var(--orange);
    color: #2a1600;
}

.empty-state {
    grid-column: 1 / -1;
    min-height: 260px;
    background:
        radial-gradient(circle at top right, rgba(159,189,225,.35), transparent 260px),
        #ffffff;
    border: 1px solid var(--blue-border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--muted);
    font-weight: 800;
}

.empty-state h3 {
    font-size: 30px;
    color: var(--dark);
    letter-spacing: -1px;
}

.empty-state p {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

/* PÁGINA DA NOTÍCIA */

.news-article-shell {
    width: 100%;
}

.article-featured {
    width: min(1180px, 92%);
    min-height: 500px;
    margin: 34px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow-strong);
    background: #111827;
}

.article-featured img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.article-featured-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(16,24,40,.92) 0%, rgba(16,24,40,.70) 45%, rgba(16,24,40,.18) 100%),
        linear-gradient(0deg, rgba(16,24,40,.65), transparent 55%);
}

.article-featured-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    min-height: 500px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: var(--yellow);
}

.article-tags {
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.article-featured h1 {
    font-size: clamp(38px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -3px;
    margin: 18px 0 16px;
    color: white;
}

.article-featured p {
    max-width: 780px;
    font-size: 19px;
    line-height: 1.65;
    color: rgba(255,255,255,.86);
}

.article-meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-meta span {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    color: white;
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    backdrop-filter: blur(12px);
}

.article-layout {
    width: min(1180px, 92%);
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 32px;
    align-items: start;
}

.article-page {
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--blue-border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-toolbar {
    padding: 24px 34px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255,247,223,.92), rgba(234,245,255,.70));
}

.article-toolbar strong {
    display: block;
    color: var(--dark);
    font-size: 18px;
}

.article-toolbar small {
    display: block;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 700;
}

.share-btn {
    border: none;
    background: var(--dark);
    color: white;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: .25s ease;
    white-space: nowrap;
}

.share-btn:hover {
    transform: translateY(-2px);
    background: var(--orange);
    color: #2a1600;
}

.article-content {
    padding: 42px 54px 34px;
    font-size: 19px;
    line-height: 1.95;
    color: var(--text);
}

.article-actions {
    padding: 0 54px 44px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.article-actions form {
    padding: 0;
}

.like-btn,
.comment-open-btn {
    position: relative;
    overflow: hidden;
    border: none;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #2a1600;
    padding: 15px 22px;
    border-radius: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(255,138,0,.22);
    transition: .25s;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.comment-open-btn {
    background: #fff8ec;
    color: var(--dark);
    border: 1px solid var(--blue-border);
    box-shadow: 0 12px 30px rgba(16,24,40,.07);
}

.like-btn:hover,
.comment-open-btn:hover {
    transform: translateY(-2px);
}

.like-btn.liked {
    animation: likedPulse .5s ease;
}

.like-btn.liked .heart {
    animation: heartPop .6s ease;
}

.heart {
    display: inline-block;
}

@keyframes likedPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes heartPop {
    0% { transform: scale(1); }
    30% { transform: scale(1.6) rotate(-10deg); }
    60% { transform: scale(.9); }
    100% { transform: scale(1); }
}

/* SIDEBAR */

.article-sidebar,
.sidebar {
    position: sticky;
    top: 88px;
}

.sidebar-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--blue-border);
    padding: 24px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 22px;
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.sidebar-title span {
    width: 8px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--orange), var(--yellow));
}

.sidebar-card h3 {
    font-size: 24px;
    color: var(--dark);
}

.trend-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--dark);
    transition: .22s ease;
}

.trend-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trend-item:hover {
    transform: translateX(4px);
}

.trend-item span {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--cream);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
}

.trend-item strong {
    display: block;
    line-height: 1.35;
    font-size: 15px;
}

.trend-item small {
    display: block;
    color: var(--muted);
    margin-top: 5px;
    font-weight: 700;
}

.latest-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,247,223,.72));
}

.latest-item {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.latest-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.latest-item small {
    display: inline-block;
    color: var(--orange-dark);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 7px;
}

.latest-item strong {
    display: block;
    color: var(--dark);
    line-height: 1.35;
}

.latest-item:hover strong {
    color: var(--orange-dark);
}

.sidebar-empty {
    background: #fff8ec;
    border-radius: 20px;
    padding: 18px;
    color: var(--muted);
    font-weight: 800;
}

/* STATUS / DESTAQUES */

.breaking-badge {
    background: linear-gradient(135deg, #ff2b2b, #b80000);
    color:white;
    font-weight:900;
    font-size:13px;
    padding:10px 16px;
    border-radius:999px;
    letter-spacing:.5px;
    text-transform:uppercase;
    box-shadow: 0 0 25px rgba(255,0,0,.35);
}

.special-badge {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color:#3a2500;
    font-weight:900;
    font-size:13px;
    padding:10px 16px;
    border-radius:999px;
    letter-spacing:.4px;
    box-shadow: 0 0 25px rgba(255,193,7,.28);
}

.pulse {
    animation:pulseUrgente 1.2s infinite;
}

@keyframes pulseUrgente {
    0% { transform:scale(1); box-shadow: 0 0 0 rgba(255,0,0,.5); }
    50% { transform:scale(1.06); box-shadow: 0 0 35px rgba(255,0,0,.75); }
    100% { transform:scale(1); box-shadow: 0 0 0 rgba(255,0,0,.5); }
}

.featured-urgente {
    position:relative;
    overflow:hidden;
}

.featured-urgente::before {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(135deg, rgba(255,0,0,.22), rgba(0,0,0,.55));
    z-index:1;
}

.featured-urgente .article-featured-overlay {
    background:
        linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.82)) !important;
}

.featured-urgente img {
    transform:scale(1.03);
    filter: saturate(1.15) contrast(1.08);
}

.featured-urgente h1 {
    color:#fff;
    text-shadow: 0 5px 30px rgba(0,0,0,.45);
}

.featured-urgente p {
    color:rgba(255,255,255,.92);
}

.featured-especial {
    position:relative;
    overflow:hidden;
}

.featured-especial::before {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(135deg, rgba(255,193,7,.18), rgba(255,255,255,.02));
    z-index:1;
}

.featured-especial img {
    filter: saturate(1.08) contrast(1.03);
}

.featured-especial h1 {
    text-shadow: 0 4px 20px rgba(0,0,0,.28);
}

/* MODAL DE COMENTÁRIOS */

.comment-modal-toggle {
    display: none;
}

.comment-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16,24,40,.64);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.comment-modal-toggle:checked ~ .comment-modal-overlay {
    display: flex;
}

.comment-modal {
    width: min(760px, 100%);
    max-height: 88vh;
    background: #fff8ec;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 35px 100px rgba(0,0,0,.30);
    display: grid;
    grid-template-rows: auto minmax(0,1fr) auto;
    animation: modalUp .22s ease;
}

@keyframes modalUp {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.comment-modal-header {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255,247,223,.94), rgba(234,245,255,.70));
}

.comment-modal-header h2 {
    color: var(--dark);
    font-size: 24px;
}

.comment-modal-header p {
    color: var(--muted);
    font-weight: 700;
    margin-top: 4px;
}

.comment-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff8ec;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(16,24,40,.10);
    transition: .22s ease;
}

.comment-close-btn:hover {
    background: var(--dark);
    color: white;
}

.comment-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    display: grid;
    gap: 16px;
}

.insta-comment {
    display: flex;
    gap: 13px;
}

.insta-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #2a1600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.insta-bubble {
    background: #f8fbff;
    border: 1px solid var(--blue-border);
    border-radius: 20px;
    padding: 13px 15px;
    width: 100%;
}

.insta-bubble strong {
    color: var(--dark);
    font-size: 14px;
}

.insta-bubble p {
    color: var(--text);
    line-height: 1.55;
    margin-top: 5px;
    font-size: 15px;
}

.insta-bubble small {
    display: block;
    color: var(--muted);
    font-weight: 700;
    margin-top: 8px;
    font-size: 12px;
}

.no-comments {
    background: var(--cream);
    border: 1px solid rgba(255, 138, 0, .18);
    color: var(--dark);
    padding: 20px;
    border-radius: 18px;
    font-weight: 800;
    text-align: center;
}

.comment-modal-form {
    padding: 18px 24px 24px;
    border-top: 1px solid var(--line);
    background: #fff8ec;
    display: grid;
    gap: 12px;
}

.comment-modal-form input,
.comment-modal-form textarea {
    width: 100%;
    border: 1px solid var(--blue-border);
    background: #fffaf1;
    padding: 14px 15px;
    border-radius: 16px;
    outline: none;
    color: var(--text);
}

.comment-modal-form input:focus,
.comment-modal-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 138, 0, .12);
}

.comment-modal-form textarea {
    min-height: 90px;
    resize: vertical;
}

.comment-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.comment-form-footer small {
    color: var(--muted);
    font-weight: 800;
}

.comment-modal-form button {
    border: none;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #2a1600;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: .22s ease;
}

.comment-modal-form button:hover {
    transform: translateY(-2px);
}

.comment-owner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.comment-owner-actions summary {
    list-style: none;
    cursor: pointer;
    background: #fff8ec;
    border: 1px solid var(--blue-border);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
    user-select: none;
}

.comment-owner-actions summary::-webkit-details-marker {
    display: none;
}

.comment-owner-actions summary:hover {
    background: var(--orange);
    color: #2a1600;
    border-color: transparent;
    transform: translateY(-2px);
}

.delete-comment-btn {
    background: rgba(239,68,68,0.10);
    border: 1px solid rgba(239,68,68,0.25);
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.delete-comment-btn:hover {
    background: #ef4444;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239,68,68,0.25);
}

.edit-comment-form {
    margin-top: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.edit-comment-form textarea {
    width: 100%;
    min-height: 90px;
    resize: vertical;
    outline: none;
    padding: 14px;
    border-radius: 16px;
    background: #fff8ec;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid var(--blue-border);
    transition: .25s ease;
}

.edit-comment-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255,138,0,0.14);
}

.edit-comment-form button {
    align-self: flex-start;
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: .25s ease;
}

.edit-comment-form button:hover {
    background: var(--orange);
    color: #2a1600;
    transform: translateY(-2px);
}

.comment-toast {
    position: fixed;
    top: 82px;
    right: 22px;
    z-index: 3000;
    background: var(--dark);
    color: white;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 800;
    box-shadow: 0 18px 50px rgba(16,24,40,.22);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: .25s ease;
}

.comment-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   FOOTER MODERNA
========================================= */

.footer-modern{
    position:relative;

    margin-top:90px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #b84e00 0%,
            #ea6903 45%,
            #f5c421 140%
        );

    color:#fff;
}

.footer-overlay{
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.12),
            transparent 280px
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255,255,255,.08),
            transparent 320px
        );

    pointer-events:none;
}

.footer-content{
    position:relative;
    z-index:2;

    padding:70px 0 45px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;

    gap:60px;
}

.footer-brand{
    max-width:700px;
}

.footer-logo-row{
    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:24px;
}

.footer-logo-icon{
    width:68px;
    height:68px;

    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            #fff,
            rgba(255,255,255,.75)
        );

    color:#ea6903;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    font-weight:900;

    box-shadow:
        0 18px 40px rgba(0,0,0,.18);
}

.footer-logo-row h2{
    font-size:40px;

    letter-spacing:-2px;

    margin-bottom:4px;
}

.footer-logo-row span{
    color:rgba(255,255,255,.82);

    font-size:14px;
    font-weight:700;
}

.footer-description{
    color:rgba(255,255,255,.88);

    font-size:16px;

    line-height:1.9;

    max-width:620px;

    margin-bottom:28px;
}

.footer-tags{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.footer-tags span{
    background:
        rgba(255,255,255,.14);

    border:1px solid rgba(255,255,255,.16);

    backdrop-filter:blur(10px);

    padding:11px 16px;

    border-radius:999px;

    font-size:13px;
    font-weight:800;
}

.footer-links-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:30px;
}

.footer-column h3{
    margin-bottom:18px;

    font-size:22px;

    letter-spacing:-1px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-links a{
    width:fit-content;

    color:rgba(255,255,255,.84);

    font-size:15px;
    font-weight:700;

    transition:.22s ease;
}

.footer-links a:hover{
    transform:translateX(4px);

    color:#fff;
}

.footer-bottom{
    position:relative;
    z-index:2;

    border-top:1px solid rgba(255,255,255,.12);

    padding:20px 5%;

    text-align:center;

    background:
        rgba(0,0,0,.08);
}

.footer-bottom p{
    color:rgba(255,255,255,.75);

    font-size:13px;
    font-weight:700;
}

/* =========================================
   RESPONSIVO
========================================= */

@media(max-width:950px){

    .footer-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .footer-content{
        padding:50px 0 35px;
    }

    .footer-links-wrapper{
        grid-template-columns:1fr;
    }

    .footer-logo-row{
        align-items:flex-start;
    }

    .footer-logo-row h2{
        font-size:34px;
    }

    .footer-description{
        font-size:15px;
    }

}

/* Espaço antes do footer na home */
.content-layout {
    margin-bottom: 90px;
}

/* Quando não tiver notícia, deixa o bloco vazio mais bonito */
.empty-state {
    min-height: 300px;
    padding: 52px 40px;
}

/* Garante que o footer fique no fim e não grudado */
footer {
    margin-top: auto;
}

/* =========================================
   INSTITUCIONAL
========================================= */

.institutional-section{
    margin-top:90px;
}

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

.institution-card{
    position:relative;

    overflow:hidden;

    padding:34px;

    border-radius:30px;

    background:
        radial-gradient(
            circle at top right,
            rgba(159,189,225,.45),
            transparent 240px
        ),
        linear-gradient(
            135deg,
            rgba(255,247,223,.96),
            rgba(255,255,255,.98)
        );

    border:1px solid var(--blue-border);

    box-shadow:
        0 18px 50px rgba(16,24,40,.06);
}

.institution-tag{
    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 14px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--yellow)
        );

    color:#2a1600;

    font-size:12px;

    font-weight:900;

    text-transform:uppercase;

    letter-spacing:.4px;
}

.institution-card h2{
    margin:22px 0 14px;

    font-size:30px;

    line-height:1.08;

    letter-spacing:-1.5px;

    color:var(--dark);
}

.institution-card p{
    color:var(--muted);

    line-height:1.8;

    font-size:15px;

    font-weight:600;
}

/* =========================================
   PARCEIROS
========================================= */

.partners-section{
    margin-top:90px;
    margin-bottom:80px;
}

.partners-heading{
    margin-bottom:30px;
}

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

.partner-card{
    background:rgba(255,255,255,.96);

    border:1px solid var(--blue-border);

    border-radius:30px;

    overflow:hidden;

    transition:.25s ease;

    box-shadow:
        0 18px 50px rgba(16,24,40,.06);
}

.partner-card:hover{
    transform:translateY(-6px);
}

.partner-logo{
    height:180px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,247,223,.95),
            rgba(159,189,225,.45)
        );

    border-bottom:1px solid var(--blue-border);
}

.partner-logo img{
    max-width:100%;

    max-height:150px;

    object-fit:contain;

    filter:
        drop-shadow(0 10px 20px rgba(0,0,0,.08));
}

.partner-content{
    padding:28px;
}

.partner-content h3{
    color:var(--dark);

    font-size:24px;

    margin-bottom:12px;

    letter-spacing:-1px;
}

.partner-content p{
    color:var(--muted);

    line-height:1.7;

    font-size:15px;

    font-weight:600;
}

.article-layout-improved {
    margin-top: 42px;
    align-items: start;
}

.article-page-improved {
    border-radius: 32px;
}

.article-toolbar-label {
    display: inline-block;
    color: var(--orange-dark);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 7px;
}

.article-content-improved {
    max-width: 860px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 2;
}

.article-actions-improved {
    max-width: 860px;
    margin: 0 auto;
}

.article-sidebar-improved {
    display: grid;
    gap: 22px;
}

.sidebar-highlight-card {
    background:
        radial-gradient(circle at top right, rgba(159,189,225,.35), transparent 220px),
        linear-gradient(135deg, rgba(255,247,223,.88), #ffffff);
}

.sidebar-summary {
    color: var(--muted);
    line-height: 1.7;
    font-weight: 700;
    margin-bottom: 18px;
}

.sidebar-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-info-list span {
    background: #fffaf1;
    border: 1px solid var(--blue-border);
    padding: 11px 13px;
    border-radius: 14px;
    color: var(--dark);
    font-weight: 900;
    font-size: 13px;
}

.article-partners-section {
    width: min(1350px, 90%);
    margin: 90px auto 0;
}

@media(max-width: 1050px) {
    .article-sidebar-improved {
        display: none;
    }

    .article-content-improved,
    .article-actions-improved {
        max-width: 100%;
    }
}

/* Espaçamento dos parceiros antes da footer */
.article-partners-section,
.partners-section {
    margin-bottom: 100px !important;
}

/* Evita footer grudada em qualquer página */
footer {
    margin-top: 70px;
}

/* =========================================
   ESTILO JORNAL / PORTAL
========================================= */

.news-top-strip{
    width:100%;
    padding:12px 5%;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;

    background:
        linear-gradient(
            135deg,
            rgba(234,105,3,.95),
            rgba(181,72,0,.96)
        );

    color:#fff;

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 10px 30px rgba(234,105,3,.16);
}

.news-top-left{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:13px;
    font-weight:900;

    letter-spacing:.6px;
}

.news-top-center,
.news-top-right{
    font-size:13px;
    font-weight:700;

    color:rgba(255,255,255,.86);
}

.live-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#ff2b2b;

    box-shadow:
        0 0 18px rgba(255,0,0,.75);

    animation:pulseLive 1s infinite;
}

@keyframes pulseLive{
    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.25);
        opacity:.5;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }
}

/* =========================================
   EDITORIAS
========================================= */

.editorial-strip{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;

    margin:28px 0 8px;
}

.editorial-item{
    position:relative;

    padding:13px 18px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            rgba(255,248,236,.96),
            rgba(245,196,33,.18)
        );

    border:1px solid rgba(234,105,3,.10);

    color:var(--dark);

    font-size:14px;
    font-weight:800;

    transition:.25s ease;

    overflow:hidden;
}

.editorial-item::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(245,196,33,.12),
            transparent
        );

    opacity:0;

    transition:.25s ease;
}

.editorial-item:hover{
    transform:translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #ea6903,
            #f5c421
        );

    color:#fff;

    box-shadow:
        0 16px 35px rgba(234,105,3,.22);
}

.editorial-item:hover::before{
    opacity:1;
}

/* =========================================
   HERO MAIS JORNAL
========================================= */

.newspaper-hero{
    position:relative;
}

.newspaper-hero::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            120deg,
            rgba(245,196,33,.05),
            transparent 40%
        );

    pointer-events:none;
}

.hero-image-badge{
    position:absolute;

    top:20px;
    left:20px;

    z-index:4;

    background:
        linear-gradient(
            135deg,
            #ea6903,
            #c45300
        );

    color:#fff;

    padding:10px 15px;

    border-radius:14px;

    font-size:12px;
    font-weight:900;

    letter-spacing:.5px;

    box-shadow:
        0 14px 35px rgba(234,105,3,.35);
}

.hero-news-meta{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;

    margin-bottom:22px;
}

.hero-news-meta span{
    background:
        rgba(255,255,255,.72);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.5);

    padding:9px 13px;

    border-radius:999px;

    color:#5f452f;

    font-size:12px;
    font-weight:800;
}

/* =========================================
   HEADLINES
========================================= */

.newspaper-headlines .mini-news{
    position:relative;

    border-left:4px solid #ea6903;
}

.newspaper-headlines .mini-news small{
    display:block;

    margin-top:12px;

    color:var(--muted);

    font-size:12px;
    font-weight:700;
}

/* =========================================
   DESTAQUE URGENTE
========================================= */

.urgent-highlight{
    margin:36px 0;

    display:flex;
    align-items:center;
    gap:26px;

    padding:30px;

    border-radius:32px;

    background:
        linear-gradient(
            135deg,
            rgba(234,105,3,.10),
            rgba(245,196,33,.14),
            rgba(159,189,225,.18)
        );

    border:1px solid rgba(234,105,3,.12);

    box-shadow:
        0 20px 50px rgba(234,105,3,.08);
}

.urgent-highlight h3{
    color:var(--dark);

    font-size:28px;

    letter-spacing:-1px;

    margin-bottom:8px;
}

.urgent-highlight p{
    color:var(--muted);

    line-height:1.7;

    font-weight:600;
}

.urgent-badge{
    min-width:130px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:16px 20px;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            #ea6903,
            #c45300
        );

    color:#fff;

    font-size:13px;
    font-weight:900;

    letter-spacing:.8px;

    animation:urgentPulse 1.5s infinite;

    box-shadow:
        0 18px 40px rgba(234,105,3,.28);
}

@keyframes urgentPulse{
    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.04);
    }

    100%{
        transform:scale(1);
    }
}

/* =========================================
   SECTION HEADING
========================================= */

.newspaper-section-heading{
    margin-bottom:30px;
}

.newspaper-section-heading small{
    display:block;

    margin-bottom:6px;

    color:#ea6903;

    text-transform:uppercase;

    font-size:12px;
    font-weight:900;

    letter-spacing:.8px;
}

/* =========================================
   CARD JORNAL
========================================= */

.newspaper-card{
    position:relative;
}

.newspaper-card::before{
    content:"";

    position:absolute;
    inset:0;

    border-radius:28px;

    background:
        linear-gradient(
            180deg,
            rgba(245,196,33,.04),
            transparent
        );

    pointer-events:none;
}

.card-date{
    margin-bottom:12px;

    color:#ea6903;

    font-size:12px;
    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.5px;
}

/* =========================================
   SIDEBAR EDITORIAL
========================================= */

.sidebar-editorial-card{
    background:
        linear-gradient(
            135deg,
            rgba(255,248,236,.98),
            rgba(245,196,33,.10),
            rgba(159,189,225,.14)
        );
}

.sidebar-summary{
    color:var(--muted);

    line-height:1.8;

    font-weight:600;

    margin-bottom:20px;
}

.sidebar-info-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.sidebar-info-list span{
    background:
        rgba(255,255,255,.75);

    border:1px solid rgba(234,105,3,.08);

    padding:13px 15px;

    border-radius:16px;

    color:var(--dark);

    font-size:13px;
    font-weight:800;

    transition:.22s ease;
}

.sidebar-info-list span:hover{
    transform:translateX(4px);

    background:#fff;
}

/* =========================================
   RESPONSIVO
========================================= */

@media(max-width:900px){

    .urgent-highlight{
        flex-direction:column;
        align-items:flex-start;
    }

}

@media(max-width:760px){

    .news-top-strip{
        align-items:flex-start;
        flex-direction:column;
    }

    .hero-news-meta{
        gap:8px;
    }

    .hero-news-meta span{
        width:100%;
    }

    .editorial-strip{
        gap:10px;
    }

    .editorial-item{
        width:100%;
        text-align:center;
    }

    .urgent-highlight{
        padding:24px;
    }

    .urgent-highlight h3{
        font-size:24px;
    }

}

/* =========================================
   RESPONSIVO
========================================= */

@media(max-width:1000px){

    .institutional-grid,
    .partners-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:760px){

    .institution-card,
    .partner-content{
        padding:24px;
    }

    .institution-card h2{
        font-size:26px;
    }

}

/* RESPONSIVO */

@media (max-width: 1050px) {
    .desktop-nav {
        gap: 0;
    }

    .desktop-nav a {
        font-size: 13px;
        padding: 11px 10px;
    }

    .home-hero-new,
    .content-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .home-hero-image {
        min-height: 330px;
    }

    .sidebar,
    .article-sidebar {
        position: static;
    }

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

@media (max-width: 760px) {
    .top-header {
        height: auto;
        min-height: 58px;
        padding: 10px 4%;
        flex-direction: column;
        gap: 10px;
    }

    .mini-brand {
        display: none;
    }

    .desktop-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .desktop-nav a {
        white-space: nowrap;
        font-size: 13px;
        padding: 10px 13px;
    }

    .brand-hero {
        min-height: 150px;
    }

    .main-logo-wrap {
        width: min(360px, 88vw);
        height: 120px;
    }

    .main-logo {
        max-height: 120px;
    }

    .home-wrapper,
    .breaking-news,
    .article-layout,
    .article-featured,
    .footer-content {
        width: 94%;
    }

    .breaking-news {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 18px;
    }

    .home-hero-new {
        border-radius: 26px;
    }

    .home-hero-content,
    .home-empty-hero {
        padding: 30px;
    }

    .home-hero-content h1,
    .home-empty-hero h1 {
        letter-spacing: -1.4px;
    }

    .search-panel {
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
    }

    .search-panel form {
        width: 100%;
        flex-direction: column;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .article-featured,
    .article-featured img,
    .article-featured-content {
        min-height: 520px;
    }

    .article-featured-content {
        padding: 28px;
    }

    .article-featured h1 {
        letter-spacing: -1.6px;
    }

    .article-featured p {
        font-size: 17px;
    }

    .article-toolbar {
        padding: 22px;
        align-items: flex-start;
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
    }

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

    .article-actions {
        padding: 0 24px 30px;
        flex-direction: column;
        align-items: stretch;
    }

    .like-btn,
    .comment-open-btn {
        width: 100%;
        text-align: center;
    }

    .comment-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .comment-modal {
        width: 100%;
        max-height: 92vh;
        border-radius: 26px 26px 0 0;
    }

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

@media (max-width: 560px) {
    .brand-hero {
        min-height: 135px;
    }

    .main-logo-wrap {
        width: 92vw;
        height: 108px;
    }

    .main-logo {
        max-height: 108px;
    }

    .headline-row {
        grid-template-columns: 1fr;
    }

    .home-hero-image {
        min-height: 260px;
    }

    .home-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-read-btn,
    .hero-like-info {
        width: 100%;
        text-align: center;
    }

    .search-panel h2 {
        font-size: 26px;
    }

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

    .card-image {
        height: 210px;
    }

    .card-body {
        padding: 20px;
    }

    .card-body h3 {
        font-size: 22px;
    }

    .card-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .card-footer a {
        text-align: center;
    }

    .article-featured {
        border-radius: 24px;
        margin-top: 22px;
    }

    .article-featured,
    .article-featured img,
    .article-featured-content {
        min-height: 500px;
    }

    .breadcrumb {
        font-size: 13px;
    }

    .article-meta span,
    .breaking-badge,
    .special-badge {
        font-size: 11px;
        padding: 8px 12px;
    }

    .comment-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .comment-modal-form button {
        width: 100%;
    }
}

/* =========================================
   CORREÇÕES FINAIS - FOOTER / ALINHAMENTO
   Mantém a footer centralizada e evita bug lateral
========================================= */

html,
body{
    width:100%;
    overflow-x:hidden;
}

.footer-modern{
    width:100%;
    margin-top:90px !important;
    padding:0 !important;
}

.footer-modern .footer-content{
    width:min(1180px, 92%);
    max-width:1180px;
    margin:0 auto;
    padding:70px 0 45px;
}

.footer-modern .footer-grid{
    display:grid !important;
    grid-template-columns:minmax(0, 1.25fr) minmax(320px, .75fr);
    align-items:start;
    gap:70px;
}

.footer-modern .footer-brand{
    max-width:680px;
    min-width:0;
}

.footer-modern .footer-description{
    max-width:640px;
    margin:0 0 28px;
    color:rgba(255,255,255,.90);
    line-height:1.85;
    font-size:16px;
    font-weight:600;
}

.footer-modern .footer-links-wrapper{
    display:grid;
    grid-template-columns:repeat(2, minmax(120px, 1fr));
    gap:34px;
    justify-content:end;
}

.footer-modern .footer-links{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:13px;
}

.footer-modern .footer-links a{
    padding:0 !important;
    border-radius:0 !important;
    color:rgba(255,255,255,.88);
}

.footer-modern .footer-links a:hover{
    background:transparent !important;
    color:#fff;
    transform:translateX(5px);
}

.footer-modern .footer-bottom{
    width:100%;
}

.footer-modern .footer-bottom p{
    margin:0;
}

footer.footer-modern{
    background:
        linear-gradient(
            135deg,
            #b84e00 0%,
            #ea6903 48%,
            #f5c421 145%
        ) !important;
}

.partners-section{
    margin-bottom:70px !important;
}

.article-partners-section{
    margin-bottom:70px !important;
}

/* =========================================
   RESPONSIVO FINAL DA FOOTER
========================================= */

@media(max-width:950px){

    .footer-modern .footer-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .footer-modern .footer-links-wrapper{
        justify-content:start;
        max-width:520px;
    }

}

@media(max-width:700px){

    .footer-modern .footer-content{
        width:92%;
        padding:48px 0 34px;
    }

    .footer-modern .footer-logo-row{
        align-items:center;
    }

    .footer-modern .footer-logo-icon{
        width:58px;
        height:58px;
        min-width:58px;
        border-radius:18px;
        font-size:20px;
    }

    .footer-modern .footer-logo-row h2{
        font-size:32px;
        letter-spacing:-1.4px;
    }

    .footer-modern .footer-links-wrapper{
        grid-template-columns:1fr;
        gap:28px;
    }

    .footer-modern .footer-tags{
        gap:10px;
    }

    .footer-modern .footer-tags span{
        width:100%;
        justify-content:center;
        text-align:center;
    }

}
