.modern-news {
    display: flex;
    align-items: center;
    background: #18181d;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 8px 16px;
    transition: box-shadow 0.2s;
}
.modern-news:hover {
    box-shadow: 0 4px 16px rgba(97,224,58,0.08);
}
.modern-news .img {
    flex: 0 0 90px;
    margin-right: 18px;
}
.modern-news .img img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}
.modern-news .text {
    flex: 1;
}
.modern-news .title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.modern-news .description {
    color: #b5b5c0;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.modern-news .meta {
    font-size: 0.85rem;
    color: #61e03a;
}
.newsCard .text .title a h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    text-decoration: none;
    background: linear-gradient(90deg, #61e03a 0%, #3ad29f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 0.2s, text-shadow 0.2s;
    line-height: 1.2;
    word-break: break-word;
    text-shadow: 0 2px 8px rgba(97,224,58,0.10);
}
.newsCard .text .title a h3:hover {
    filter: brightness(1.2) drop-shadow(0 2px 8px #3ad29f88);
    text-decoration: underline;
}
.tabs-section {
    margin-top: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.tab-btn {
    background: #23232a;
    color: #fff;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
}
.tab-btn.active, .tab-btn:hover {
    background: linear-gradient(90deg, #61e03a 0%, #3ad29f 100%);
    color: #18181d;
}
.tab-content {
    width: 100%;
    min-height: 120px;
}
.tab-news-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.tabCard {
    border: 2px solid #3ad29f;
    background: linear-gradient(135deg, #18181d 80%, #3ad29f22 100%);
    box-shadow: 0 4px 24px #3ad29f22;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
}
.tabCard:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px #3ad29f44;
}
.tabCard .img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 8px #0002;
}
.tabCard .title h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #61e03a;
    margin-bottom: 6px;
    margin-top: 8px;
    text-shadow: 0 2px 8px #3ad29f33;
}
.tabCard .description p {
    color: #eaffea;
    font-size: 1.01rem;
    margin-bottom: 0;
}
.tabCard .tags {
    margin-bottom: 4px;
}
.tab-news-row .newsCard {
    flex: 1 1 320px;
    max-width: 350px;
    min-width: 260px;
}
.noticia-extra {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: rgba(34, 34, 44, 0.97);
    border-radius: 18px;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px #0002;
}
.noticia-tags {
    width: 100%;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 8px 0;
    justify-content: flex-start;
    background: none;
    padding: 0;
    border-radius: 0;
}
.noticia-tags .tag {
    background: linear-gradient(90deg, #3ad29f 0%, #61e03a 100%);
    color: #fff;
    font-size: 0.92em;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 4px #0001;
    text-transform: uppercase;
    opacity: 0.95;
    transition: background 0.2s, color 0.2s;
}
.noticia-tags .tag:hover {
    background: #3ad29f;
    color: #fff;
}
.btn-compartilhar {
    background: linear-gradient(90deg, #61e03a 60%, #3ad29f 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    padding: 10px 28px;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 2px 8px #0002;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-top: 8px;
    text-decoration: none;
}
.btn-compartilhar:hover {
    background: #3ad29f;
    color: #fff;
    box-shadow: 0 8px 24px #3ad29f33;
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
    .noticia-extra {
        border-radius: 0 0 18px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 6vw 12px 6vw;
    }
}
@media (max-width: 600px) {
    .noticia-extra {
        border-radius: 0 0 18px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 4vw 10px 4vw;
    }
}
.noticia-avaliacao {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 1.08rem;
    margin: 8px 0 0 0;
    box-shadow: none;
}
.noticia-avaliacao .estrelas {
    color: #ffe066;
    font-size: 1.15em;
    letter-spacing: 1px;
    filter: drop-shadow(0 1px 2px #0002);
}
.noticia-avaliacao .nota {
    color: #3ad29f;
    font-weight: 700;
    margin-left: 6px;
    font-size: 1.1em;
}
.noticia-avaliacao .avaliacoes {
    color: #aaa;
    font-size: 0.98em;
    margin-left: 8px;
}

.noticia-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(90deg, #61e03a 60%, #3ad29f 100%);
    color: #181818;
    font-size: 1rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 16px;
    box-shadow: 0 2px 8px #0003;
    letter-spacing: 1px;
    z-index: 2;
    text-transform: uppercase;
    animation: fadeInTag 1.1s 0.2s backwards cubic-bezier(.4,0,.2,1);
}

@keyframes fadeInTag {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.topHeadlines .left .img, .page2 .news .newsBox .newsCard .img {
    position: relative;
}

.topHeadlines, .page2 {
    animation: fadeInBg 1.2s cubic-bezier(.4,0,.2,1);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 50px;
    background-color: #0b0b11;
    transition: 0.3s;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
}

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

.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.05rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #61e03a;
    background: rgba(97, 224, 58, 0.1);
}

.nav-link i {
    font-size: 0.95em;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f0f15;
    min-width: 180px;
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

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

.dropdown-content a {
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    display: block;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: rgba(97, 224, 58, 0.1);
    color: #61e03a;
}


.theme-toggle {
    color: #fff;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(97, 224, 58, 0.1);
    color: #61e03a;
}

.topHeadlines {
    width: 90%;
    margin: 100px auto 50px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.topHeadlines .left, .topHeadlines .right {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    height: 700px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topHeadlines .left:hover, .topHeadlines .right:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.topHeadlines .left .title h2, .topHeadlines .right .title h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(97, 224, 58, 0.5);
}

.topHeadlines .right .topNews {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-top: 10px;
}

.topHeadlines .right .topNews .news {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.topHeadlines .right .topNews .news:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(97, 224, 58, 0.15);
}

.topHeadlines .right .topNews .news .img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.topHeadlines .right .topNews .news .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.topHeadlines .right .topNews .news:hover .img img {
    transform: scale(1.05);
}

.topHeadlines .right .topNews .news .text {
    padding: 12px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.topHeadlines .right .topNews .news .text .title a {
    text-decoration: none;
}

.topHeadlines .right .topNews .news .text .title a h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topHeadlines .right .topNews .news .text .title a h3:hover {
    color: #61e03a;
}

.topHeadlines .right .topNews .news .text .description {
    color: #a8a8b3;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.otherNews {
    width: 90%;
    margin: 0 auto 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.otherNews .title h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(97, 224, 58, 0.5);
}

.newsContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.newsCard {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.newsCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.newsCard .img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.newsCard .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newsCard:hover .img img {
    transform: scale(1.05);
}

.newsCard:hover .img img {
    transform: scale(1.05);
}

.newsCard .text {
    padding: 15px;
}

.newsCard .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.news-tag {
    background: rgba(97, 224, 58, 0.2);
    color: #61e03a;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.news-tag:hover {
    background: rgba(97, 224, 58, 0.3);
}
.topHeadlines .right .topNews .news .img img:hover,
.page2 .news .newsBox .newsCard .img img:hover {
    transform: scale(1.06) rotate(-1deg);
}
.topHeadlines .left .title h2,
.topHeadlines .right > .title h2,
.page2 .news > .title h2 {
    animation: fadeInTitle 1.1s 0.3s backwards cubic-bezier(.4,0,.2,1);
}

.topHeadlines .left .text .title a h2,
.topHeadlines .right .topNews .news .text .title a p,
.page2 .news .newsBox .newsCard .text .title a p {
    transition: color 0.3s;
}
.topHeadlines .left .text .title a h2:hover,
.topHeadlines .right .topNews .news .text .title a p:hover,
.page2 .news .newsBox .newsCard .text .title a p:hover {
    color: #b5ffb5;
}

.topHeadlines .left .text .description,
.page2 .news .newsBox .newsCard .text {
    animation: fadeInText 1.2s 0.7s backwards cubic-bezier(.4,0,.2,1);
}

@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeInTitle {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInText {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.topHeadlines {
    margin-top: 90px;
}

@media (max-width: 900px) {
    .topHeadlines {
        margin-top: 90px;
    }
}
@media (max-width: 600px) {
    .topHeadlines {
        margin-top: 80px;
    }
}

.noticia-destaque {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(120deg, #23232a 60%, #1a1a22 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 40px 0;
    animation: fadeInBg 1.2s cubic-bezier(.4,0,.2,1);
    box-sizing: border-box;
}

@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}

.noticia-container {
    background: rgba(20,20,30,0.98);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25), 0 1.5px 0 #61e03a inset;
    display: grid;
    grid-template-columns: minmax(320px, 420px) 1fr;
    gap: 20px;
    max-width: 1200px;
    width: 95%;
    overflow: hidden;
    animation: slideUp 1.1s cubic-bezier(.4,0,.2,1);
}

@keyframes slideUp {
    from { transform: translateY(60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.noticia-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.noticia-img {
    width: 100%;
    background: #61e03a;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
}

.noticia-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 18px;
    filter: brightness(0.93) contrast(1.08) saturate(1.1);
    transition: transform 0.7s cubic-bezier(.4,0,.2,1), filter 0.5s;
    display: block;
}
.noticia-img img:hover {
    transform: scale(1.06) rotate(-1deg);
    filter: brightness(1.05) contrast(1.15) saturate(1.2);
}

.noticia-conteudo {
    padding: 38px 38px 32px 38px;
    display: flex;
    flex-direction: column;
    animation: fadeInContent 1.3s 0.2s backwards cubic-bezier(.4,0,.2,1);
}

@keyframes fadeInContent {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.noticia-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #61e03a;
    margin-bottom: 18px;
    letter-spacing: 1px;
    line-height: 1.15;
    text-shadow: 0 2px 12px #000a;
    animation: fadeInTitle 1.1s 0.3s backwards cubic-bezier(.4,0,.2,1);
}

@keyframes fadeInTitle {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.noticia-meta {
    font-size: 1.05rem;
    color: #b5ffb5;
    margin-bottom: 22px;
    margin-top: 8px;
    opacity: 0.85;
    letter-spacing: 0.5px;
    animation: fadeInMeta 1.1s 0.5s backwards cubic-bezier(.4,0,.2,1);
    display: block;
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) {
    .noticia-destaque {
        padding-top: 110px;
    }
    .noticia-img {
        max-width: 100vw;
        min-width: 100%;
        height: 220px;
    }
    .noticia-img img {
        height: 100%;
        min-height: 120px;
        max-height: 40vh;
    }
}
@media (max-width: 600px) {
    .noticia-destaque {
        padding-top: 90px;
    }
    .noticia-img {
        height: 140px;
    }
    .noticia-img img {
        height: 100%;
        min-height: 80px;
        max-height: 30vh;
    }
}

@keyframes fadeInMeta {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.noticia-texto {
    font-size: 1.18rem;
    color: #e6e6e6;
    line-height: 1.7;
    letter-spacing: 0.2px;
    animation: fadeInText 1.2s 0.7s backwards cubic-bezier(.4,0,.2,1);
}
.noticia-texto p {
    margin-bottom: 18px;
    transition: color 0.3s;
}
.noticia-texto p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #25252a;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    body.light-theme .nav-menu {
        background-color: #f5f5f7;
    }

    .nav-menu.active {
        display: block;
        transform: translateX(0);
    }

    .nav-menu .nav-item {
        display: block;
        margin: 0.5rem 0;
    }

    .nav-menu .nav-link {
        padding: 1rem;
        display: block;
        width: 100%;
        text-align: left;
        border-radius: 8px;
    }

    .nav-menu .dropdown-content {
        position: static;
        display: none;
        padding-left: 1rem;
        background: transparent;
        box-shadow: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu .nav-item.active .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle:hover {
        background: rgba(97, 224, 58, 0.1);
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .search-box {
        display: none;
    }
}
.noticia-texto strong {
    color: #61e03a;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.noticia-texto p:hover {
    color: #b5ffb5;
}

@media (max-width: 900px) {
    .noticia-container {
        flex-direction: column;
        max-width: 98vw;
    }
    .noticia-img {
        max-width: 100vw;
        min-width: 100%;
        border-radius: 18px 18px 0 0;
    }
    .noticia-img img {
        border-radius: 18px 18px 0 0;
    }
    .noticia-conteudo {
        padding: 28px 18px 24px 18px;
    }
}
@media (max-width: 600px) {
    .noticia-titulo {
        font-size: 1.5rem;
    }
    .noticia-conteudo {
        padding: 16px 6vw 16px 6vw;
    }
    .noticia-texto {
        font-size: 1rem;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
    background-color: #25252a;
    font-family: 'Ubuntu', sans-serif;
    width: 100%;
    min-height: 100vh;
    color: #fff;
    overflow-y: overlay;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.light-theme {
    background-color: #f5f5f7;
    color: #1a1a22;
}

body.light-theme .tab-btn {
    background: #e6f9ee;
    color: #1a1a22;
    border: 1px solid #b5ffe0;
}
body.light-theme .tab-btn.active, body.light-theme .tab-btn:hover {
    background: linear-gradient(90deg, #61e03a 0%, #3ad29f 100%);
    color: #fff;
    border: 1px solid #61e03a;
}
body.light-theme .newsCard, body.light-theme .modern-news {
    background: #fff;
    color: #1a1a22;
    box-shadow: 0 2px 8px rgba(58,210,159,0.08);
}
body.light-theme .newsCard .text .title a h3,
body.light-theme .modern-news .title h3 {
    background: none;
    color: #3ad29f;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}
body.light-theme .newsCard .text .title a h3:hover,
body.light-theme .modern-news .title h3:hover {
    color: #61e03a;
    filter: none;
    text-decoration: underline;
}
body.light-theme .newsCard .description,
body.light-theme .modern-news .description {
    color: #444;
}
body.light-theme .newsCard .tags .news-tag {
    background: #e6f9ee;
    color: #3ad29f;
    border: 1px solid #b5ffe0;
}
body.light-theme .newsCard .tags .news-tag:hover {
    background: #3ad29f;
    color: #fff;
}
body.light-theme .btn-compartilhar {
    background: linear-gradient(90deg, #3ad29f 0%, #61e03a 100%);
    color: #fff;
}
body.light-theme .btn-compartilhar:hover {
    background: #61e03a;
    color: #fff;
}
body.light-theme .tabs-section {
    background: #f8f8fa;
}
body.light-theme .noticia-tags .tag {
    background: #e6f9ee;
    color: #3ad29f;
    border: 1px solid #b5ffe0;
}
body.light-theme .noticia-tags .tag:hover {
    background: #3ad29f;
    color: #fff;
}

body.light-theme .page2 {
    background-color: #ffffff;
}

body.light-theme .topHeadlines {
    min-height: auto;
    padding-bottom: 30px;
}

body.light-theme .noticia-destaque {
    background: #f5f5f7;
}

body.light-theme .header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
}

body.light-theme .nav-link {
    color: #1a1a22;
}

body.light-theme .nav-link:hover {
    background: rgba(97, 224, 58, 0.1);
    color: #3ad29f;
}

body.light-theme .dropdown-content {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

body.light-theme .dropdown-content a {
    color: #1a1a22;
}

body.light-theme .dropdown-content a:hover {
    background: rgba(97, 224, 58, 0.1);
    color: #3ad29f;
}


body.light-theme .theme-toggle {
    color: #1a1a22;
    background: rgba(0,0,0,0.05);
}

body.light-theme .theme-toggle:hover {
    background: rgba(97, 224, 58, 0.1);
    color: #3ad29f;
}

body.light-theme .bar {
    color: #1a1a22;
}

body.light-theme .noticia-destaque {
    background: #f5f5f7;
}

body.light-theme .noticia-container {
    background: #ffffff;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.08);
}

body.light-theme .noticia-titulo {
    color: #3ad29f;
    text-shadow: none;
}

body.light-theme .noticia-meta {
    color: #61e03a;
    opacity: 1;
}

body.light-theme .noticia-texto {
    color: #1a1a22;
}

body.light-theme .noticia-extra {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

body.light-theme .noticia-tags {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

body.light-theme .noticia-avaliacao {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

body.light-theme .page2 .news {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

body.light-theme .topNews {
    border: 1px solid rgba(0,0,0,0.1);
    background: #ffffff;
}

body.light-theme .topHeadlines .right .topNews .news .text .title a p {
    color: #1a1a22;
}

body.light-theme .topHeadlines .left .text .title a h2 {
    color: #1a1a22;
}

body.light-theme .page2 .news > .title h2 {
    color: #1a1a22;
}

body.light-theme .page2 .news .newsBox .newsCard .text .title a p {
    color: #1a1a22;
}

body.light-theme .footer {
    background: #f5f5f7;
    color: #1a1a22;
}

body.light-theme .footer .box {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

body.light-theme .footer .categories > p,
body.light-theme .footer .contact p,
body.light-theme .footer .newsletter p {
    color: #3ad29f;
}

body.light-theme .footer .box {
    background: rgba(255, 255, 255, 0.2);
}

body.light-theme .footer .categories div p {
    color: #222 !important;
    background: rgba(58, 210, 159, 0.13) !important;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

body.light-theme .footer .categories div p:hover {
        color: #3ad29f !important;
        background: rgba(58, 210, 159, 0.22) !important;
        transform: translateX(8px);
}

body.light-theme .footer .contact div {
    color: #1a1a22;
}

body.light-theme .footer .contact div i {
    color: #3ad29f;
}

body.light-theme .footer .contact div span {
    color: #1a1a22;
}

body.light-theme .footer .icon i {
    color: #1a1a22;
    background: rgba(97, 224, 58, 0.05);
}

body.light-theme .footer .icon i:hover {
    background: rgba(97, 224, 58, 0.1);
    color: #3ad29f;
}

body.light-theme .footer .newsletter .email input {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    color: #1a1a22;
}

body.light-theme .footer .newsletter .email input:focus {
    border-color: #3ad29f;
    box-shadow: 0 0 0 3px rgba(58, 210, 159, 0.1);
}

body.light-theme .footer .newsletter .email input::placeholder {
    color: rgba(0,0,0,0.4);
}

body.light-theme .footer .newsletter .email button {
    background: linear-gradient(90deg, #3ad29f 0%, #61e03a 100%);
    color: #ffffff;
}

body.light-theme .footer .newsletter .email button:hover {
    box-shadow: 0 4px 12px rgba(58, 210, 159, 0.2);
}

body.light-theme .footer .copyrights {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a22;
    border-top: 1px solid rgba(0,0,0,0.05);
}

::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-track{
    background-color: transparent;
}
::-webkit-scrollbar-thumb{
    background-color: #999;
    border-radius: 100px;
}
.topHeadlines .right .topNews::-webkit-scrollbar{
    width: 6px;
}
.topHeadlines .right .topNews::-webkit-scrollbar-thumb{
    background-color: #777;
}


.header{
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 50px;
    background-color: #0b0b11;
    transition: 0.3s;
}
.header.sticky{
    padding-block: 10px;
    box-shadow: inset 0 -1.5px 3px rgba(255,255,255,0.3);
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #61e03a;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.logo-text {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
}

.logo:hover .logo-text {
    transform: scale(1.1);
    color: #b5ffb5;
}

.logo::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #61e03a 0%, #3ad29f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    font-size: 45px;
    font-weight: 700;
    cursor: pointer;
    color: #61e03a;
}
nav ul{
    display: flex;
}
nav div.bar{
    display: none;
    position: absolute;
    right: 80px;
    margin-top: -10px;
    font-size: 25px;
    cursor: pointer;
}
nav div.bar.active .open{
    display: none;
}
nav div.bar .close{
    display: none;
}
nav div.bar.active .close{
    display: initial;
}

nav ul li{
    list-style: none;
    margin: 0 15px;
    padding: 0 10px;
    border-left: 1px solid #fff0;
    border-right: 1px solid #fff0;
    transition: 0.3s;
}
nav ul li:hover{
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
}
.topHeadlines{
    padding: 100px 50px 50px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}
.topHeadlines .left{
    padding: 10px 30px;
}
.topHeadlines .left > .title{
    font-size: 20px;
    padding: 15px;
    text-align: center;
}
.topHeadlines .left .img{
    width: 100%;
    height: 400px;
}
.topHeadlines .left .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;       
    object-position: center; 
    border-radius: 16px;  
}
.topHeadlines .left .text{
    padding: 20px 15px 10px;
}
.topHeadlines .left .text .title a{
    text-decoration: none;
}
.topHeadlines .left .text .title a h2{
    font-size: 20px;
    color: #fff;
    letter-spacing: 1px;
    display: inline;
    cursor: pointer;
}
.topHeadlines .left .text .title a h2:hover{
    text-decoration: underline;
}
.topHeadlines .left .text .description{
    font-size: 15px;
    margin-top: 10px;
    color: #aaa;
    letter-spacing: 1px;
}
.topHeadlines .right{
    padding: 10px;
    width: 1920;
    height: 500px;
}
.topHeadlines .right > .title{
    font-size: 20px;
    padding: 15px;
    text-align: center;
}
.topHeadlines .right .topNews {
    padding: 8px;
    max-height: 670px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    overflow-y: auto;
    background: rgba(15, 15, 21, 0.5);
}
.topHeadlines .right .topNews .news{
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    margin-bottom: 20px;
}
.topHeadlines .right .topNews .news .img{
    width: 170px;
    height: 100%;
    max-height: 120px;
    min-height: 90px;
    background-color: #61e03a;
}
.topHeadlines .right .topNews .news .img img{
    width: 100%;
    height: 100%;
}
.topHeadlines .right .topNews .news .text{
    margin-inline: 10px;
    display: flex;
    align-items: center;
}
.topHeadlines .right .topNews .news .text .title a{
    text-decoration: none;
}
.topHeadlines .right .topNews .news .text .title a p{
    color: #fff;
    display: inline;
}
.topHeadlines .right .topNews .news .text .title a p:hover{
    text-decoration: underline;
}
.page2 {
    width: 100%;
    background-color: #16161d;
    padding: 50px;
    margin-bottom: 50px;
}
.page2 .news{
    padding: 30px 0;
    border-bottom: 1px solid #555;
}
.page2 .news:last-child{
    padding: 30px 0;
    border-bottom: none;
}
.page2 .news > .title h2{
    font-size: 40px;
    cursor: pointer;
    display: inline;
}
.page2 .news > .title h2:hover{
    text-decoration: underline;
}
.page2 .news .newsBox{
    width: 100%;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
}
.page2 .news .newsBox .newsCard {
    background: #18181f;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border: 1.5px solid #ededed22;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
    position: relative;
}

.page2 .news .newsBox .newsCard:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(58,210,159,0.13);
}

body.light-theme .page2 .news .newsBox .newsCard {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.page2 .news .newsBox .newsCard .img{
    width: 100%;
    height: 180px;
    background-color: #61e03a;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}
.page2 .news .newsBox .newsCard .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    transition: transform 0.4s;
    display: block;
}
.page2 .news .newsBox .newsCard:hover .img img {
    transform: scale(1.06) rotate(-1deg);
}
.page2 .news .newsBox .newsCard .text{
    padding: 22px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.page2 .news .newsBox .newsCard .text .title a{
    text-decoration: none;
}
.page2 .news .newsBox .newsCard .text .title a p{
    font-size: 1.18rem;
    color: #61e03a;
    font-weight: 700;
    display: block;
    cursor: pointer;
    margin-bottom: 8px;
    line-height: 1.2;
    transition: color 0.2s;
}
.page2 .news .newsBox .newsCard .title a p:hover{
    color: #3ad29f;
    text-decoration: underline;
}

.footer {
    width: 100%;
    padding: 60px 50px 0;
    background-color: #0a0a18;
    min-height: 200px;
    color: #fff;
}

.footer .box {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: rgba(15, 15, 25, 0.5);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 30px;
}

.footer .box .left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer .box .left .categories > p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #61e03a;
}

.footer .box .left .categories div {
    margin-bottom: 12px;
}

.footer .box .left .categories div p {
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    width: fit-content;
}

.footer .box .left .categories div p:hover {
    background: rgba(97, 224, 58, 0.1);
    color: #61e03a;
    transform: translateX(5px);
}

.footer .contact p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #61e03a;
}

.footer .contact div {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .contact div span {
    color: #3ad29f;
    font-weight: 500;
}

.footer .icon {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.footer .icon i {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.footer .icon i:hover {
    background: rgba(97, 224, 58, 0.1);
    color: #61e03a;
    transform: translateY(-3px);
}

.footer .newsletter p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #61e03a;
}

.footer .newsletter .email {
    display: flex;
    gap: 16px;
}

.footer .newsletter .email input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    outline: none;
    font-size: 15px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.footer .newsletter .email input:focus {
    border-color: #61e03a;
    background: rgba(255,255,255,0.08);
}

.footer .newsletter .email input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer .newsletter .email button {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(90deg, #61e03a 60%, #3ad29f 100%);
    border: none;
    color: #0a0a18;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer .newsletter .email button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(97, 224, 58, 0.2);
}

.footer .copyrights {
    font-size: 15px;
    text-align: center;
    padding: 24px;
    letter-spacing: 0.5px;
    background: rgba(15, 15, 25, 0.5);
    color: rgba(255,255,255,0.8);
    border-radius: 16px 16px 0 0;
}

@media (max-width:1024px) {
    .topHeadlines .right .topNews .news .img {
        width: 150px;
    }
    .topHeadlines .right .topNews .news .text .title a p {
        font-size: 14px;
    }
    .page2 .news .newsBox .newsCard .img {
        height: 120px;
    }
    .page2 .news .newsBox .newsCard .text {
        padding: 5px;
    }
    .page2 .news .newsBox .newsCard .text .title a p {
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 30px 0;
    }
    
    .footer .box {
        padding: 30px;
    }
    
    .footer .newsletter .email {
        flex-direction: column;
    }
    
    .footer .newsletter .email input {
        width: 100%;
    }
    
    .footer .newsletter .email button {
        width: 100%;
    }
    
    .footer .box .left .categories > p,
    .footer .contact p,
    .footer .newsletter p {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .footer .box {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer .box .left {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer .icon {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 20px 0;
    }
    
    .footer .box {
        padding: 20px;
    }
    
    .footer .box .left .categories > p,
    .footer .contact p,
    .footer .newsletter p {
        font-size: 20px;
    }
    
    .footer .box .left .categories div p {
        font-size: 15px;
    }
    
    .footer .contact div {
        font-size: 15px;
    }
    
    .footer .copyrights {
        font-size: 14px;
        padding: 20px;
    }
}
    .footer .newsletter .email button {
        padding: 10px 20px;
        font-size: 14px;
    }
    .footer .box .left .categories div p {
        font-size: 18px;
    }
    .footer .contact div {
        font-size: 15px;
    }
@media (max-width:768px) {
    nav div.bar{
        display: block;
    }
    nav ul {
        opacity: 0;
        position: absolute;
        background-color: #0b0b11;
        flex-direction: column;
        right: 0px;
        padding: 30px 30px 10px;
        text-align: center;
        pointer-events: none;
        border-radius: 10px;
    }
    nav ul.activeMenu {
        opacity: 1;
        pointer-events: all;
    }
    nav ul li{
        margin: 10px 0;
    }
    .topHeadlines {
        display: block;
    }
    .topHeadlines .right .topNews .news .img {
        width: 220px;
    }
    .topHeadlines .right .topNews .news .text .title a p {
        font-size: 18px;
    }
    .page2 .news .newsBox .newsCard {
        width: calc(100% / 3 - 20px);
    }
    .footer .box {
        grid-template-columns: none;
    }
    .footer .box .right{
        grid-row-start: 1;
        margin-bottom: 40px;
    }
    .footer .newsletter .email input {
        width: 400px;
    }
    .footer .box .left {
        justify-content: space-between;
    }
}
@media (max-width:600px) {
    .logo {
        font-size: 35px;
    }
    .topHeadlines .left {
        padding: 10px 0px;
    }
    .topHeadlines .right .topNews .news .img {
        width: 150px;
    }
    .topHeadlines .right .topNews .news .text .title a p {
        font-size: 14px;
    }
    .page2 .news .newsBox .newsCard {
        width: calc(100% / 2 - 20px);
    }
    .footer .newsletter .email input {
        width: 300px;
        font-size: 14px;
    }
    .footer .newsletter .email button {
        padding: 8px 15px;
        font-size: 14px;
    }
    .footer .newsletter p {
        font-size: 22px;
    }
    .footer .box .left .categories > p {
        font-size: 22px;
    }
    .footer .contact p {
        font-size: 22px;
    }
    .footer .copyrights {
        font-size: 14px;
    }
}
@media (max-width:425px) {
    nav div.bar {
        right: 50px;
    }
    nav ul {
        padding: 30px 10px 10px;
    }
    nav ul li {
        margin: 5px 0px;
    }
    nav ul li a {
        font-size: 14px;
    }
    .topHeadlines {
        padding: 100px 20px 50px;
    }
    .page2 {
        padding: 50px 20px;
    }
    .page2 .news .newsBox .newsCard {
        width: 100%;
        display: grid;
    }
    .page2 .news > .title h2 {
        font-size: 30px;
    }
    .page2 .news .newsBox .newsCard .img{
        height: 100%;
        min-height: 150px;
    }
    .page2 .news .newsBox .newsCard .text .title a p {
        font-size: 16px;
    }
    .footer .newsletter .email {
        display: block;
    }
    .footer .newsletter .email button {
        margin-top: 15px;
    }
}