/* ============================================================
   ARQUIVO CSS UNIFICADO - SITE DE NOTÍCIAS
   ============================================================ */

/* ============================================================
   1. VARIÁVEIS CSS
   ============================================================ */
:root {
    /* === Cores principais === */
    --color-text: #1C1C1C;
    --color-background: #FFFAFA;
    --color-yellow: #0f0059;
    --color-orange: #ff7d25;
    --color-red: #CC0000;
    --color-blue: #0453c9;

    /* === Cores por categoria (navbar) === */
    --color-geral: #D4A017;
    --color-regional: #2E7BFF;
    --color-policial: #444444;
    --color-hall-da-fama: #E63946;
    --color-mural-de-eventos: #A31F6B;
    --color-esporte: #00B84D;
    --color-politica: #A1623A;
    --color-colunista: #00939B;
    --color-deu-na-rede: #8A7C21;
    --color-fale-conosco: #02463b;
    --color-nota-de-falecimento: #6A0DAD;
    --color-documentarios: #0A6633;

    /* === Fontes === */
    --font-family-base: "Noto Sans", sans-serif;
    --font-size-base: 1rem;
    --font-weight-normal: 400;
    --font-weight-light: 300;
    --font-weight-bold: 700;
    --line-height-base: 1.5;

    /* === Espaçamento === */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;

    /* === Sombreamento === */
    --box-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);

    /* === Border Radius === */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;

    /* === Breakpoints === */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}


/* ============================================================
   2. TIPOGRAFIA
   ============================================================ */
@font-face {
    font-family: 'Noto Sans';
    src: url('/assets/templates/fonts/noto-sans/subset-NotoSans-Regular.woff2') format('woff2'),
        url('/assets/templates/fonts/noto-sans/subset-NotoSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('/assets/templates/fonts/noto-sans/subset-NotoSans-Bold.woff2') format('woff2'),
        url('/assets/templates/fonts/noto-sans/subset-NotoSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('/assets/templates/fonts/noto-sans/subset-NotoSans-Light.woff2') format('woff2'),
        url('/assets/templates/fonts/noto-sans/subset-NotoSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

html,
body {
    height: 100%;
    font-family: "Noto Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1C1C1C;
    background-color: #FFFAFA;
}


/* ============================================================
   3. RESET E ESTILOS GLOBAIS
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
}

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

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

i {
    margin-right: 0.5rem;
}

img {
    border-radius: var(--radius-md);
    object-fit: contain;
    width: 100%;
}

section {
    margin-bottom: 2rem;
    margin: 2rem 0;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin-bottom: 2rem;
}


/* ============================================================
   4. LAYOUT PRINCIPAL
   ============================================================ */
.site-container {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1250px;
    box-sizing: border-box;
}

.home-page {
    margin-top: 2rem;
}


/* ============================================================
   5. NAVEGAÇÃO (NAVBAR)
   ============================================================ */
nav {
    width: 100%;
}

.navbar-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
    box-sizing: border-box;
}

.navbar-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: var(--spacing-md);
}

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

.navbar-slogan-text {
    font-weight: var(--font-weight-light);
    letter-spacing: 0.5px;
}

.navbar-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

.navbar-info {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-visit .people-icon {
    color: #006528;
}

.icons {
    display: flex;
    gap: var(--spacing-sm);
}

.language {
    display: flex;
}

.navbar-social {
    display: flex;
    gap: var(--spacing-md);
}

.social-icon {
    transition: all 0.3s ease-in-out;
    font-size: 1.2rem;
}

.youtube:hover i {
    color: var(--color-red);
}

.tik-tok:hover i {
    color: #EE1D52;
}

.instagram:hover i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.facebook:hover i {
    color: #1877F2;
}

.twitter:hover i {
    color: #D9D9D9;
}

.language-icon {
    background-color: none;
    height: 1.6rem;
    width: 1.6rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    transition: filter 0.3s ease;
}

.language-icon:hover {
    filter: brightness(80%);
}

.navbar-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-fibernet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-fibernet p {
    margin-left: 0.5rem;
}

.weather-info {
    max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.weather-card {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease-in-out;
}

.weather-icon {
    height: 2rem;
    vertical-align: middle;
}

.weather-text {
    font-weight: var(--font-weight-bold);
}

.temp-low {
    color: var(--color-blue);
    margin: 0 0.5rem;
}

.temp-high {
    color: var(--color-red);
}

.navbar-search {
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-search i {
    margin-right: 0.5rem;
}

.button-search {
    display: flex;
    color: #565656;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    border: 1px solid;
    border-color: #dcdcdc;
    background-color: #f7f7f7;
    box-shadow: #aeaeae;
}

.button-search:hover {
    background-color: inherit;
}

.button-search i {
    filter: drop-shadow(0 0 0.5px black);
}

.navbar-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-input-wrapper {
    position: relative;
    max-width: 300px;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.4s ease, opacity 0.3s ease;
}

.search-input-wrapper.active {
    width: 300px;
    opacity: 1;
}

.navbar-search-input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    border: 1px solid;
    border-color: var(--color-yellow);
    box-shadow: var(--box-shadow-md);
    box-sizing: border-box;
}

.navbar-search-input:focus {
    outline: none;
}

.search-input-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    filter: drop-shadow(0 0 0.5px black);
}

.search-input-wrapper button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #999;
}

.search-input-wrapper button:hover {
    color: #333;
}

.invisible {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

.navbar-container-fibernet i {
    font-size: 1rem;
    margin: 0 0.2rem;
    color: #8b8b8b;
}

.navbar-container-fibernet strong {
    color: #060606;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
}

.navbar-container-fibernet .bi-caret-up-fill {
    color: var(--color-esporte);
}

.navbar-container-fibernet .bi-caret-down-fill {
    color: var(--color-red);
}

.navbar-container-news {
    display: flex;
    align-items: center;
    width: 100%;
    gap: var(--spacing-sm);
}

.navbar-button-radio {
    color: #dedede;
    flex-shrink: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-yellow);
    background-color: var(--color-yellow);
    box-shadow: var(--box-shadow-md);
}

.navbar-button-radio i {
    margin-right: 0.5rem;
}

.navbar-button-radio:hover {
    background-color: #070054;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.ticker-title {
    font-weight: var(--font-weight-bold);
    padding: var(--spacing-sm) var(--spacing-lg);
    white-space: nowrap;
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    background-color: #e1e100;
}

marquee {
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: #eaeaea;
}

marquee i {
    margin-left: 0.5rem;
}

.navbar-categories {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    width: 100%;
    justify-content: space-between;
}

.align-text-img {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.align-text-img p {
    display: flex;
    flex-direction: row;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    position: absolute;
    top: 2.5rem;
    right: 0;
    font-size: 1.5rem;
    padding: var(--spacing-md);
    background: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    cursor: pointer;
}

.menu-toggle i {
    background-color: var(--color-yellow);
    border-radius: 50%;
    padding: var(--spacing-sm);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle {
    display: none;
    position: absolute;
    top: 2.5rem;
    right: 4rem;
    padding: var(--spacing-md);
    background: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    cursor: pointer;
}

.search-toggle i {
    font-size: 1.5rem;
    background-color: var(--color-yellow);
    border-radius: 50%;
    padding: var(--spacing-sm);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu {
    display: none;
    font-size: 2rem;
    position: absolute;
    top: 0;
    right: 0;
    padding: var(--spacing-md);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.close-menu i {
    background-color: var(--color-yellow);
    border-radius: 1rem;
    display: flex;
    padding: var(--spacing-sm);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background-color: var(--color-background);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: var(--spacing-lg);
    z-index: 9999;
    flex-direction: column;
    gap: var(--spacing-md);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    visibility: hidden;
}

.sidebar.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.close-btn {
    align-self: flex-end;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.navegation-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 4rem;
    gap: var(--spacing-md);
    font-size: 1.3rem;
}

.item-mobile {
    display: flex;
    border-bottom: 0.1rem solid var(--color-text);
}

.item-mobile i {
    align-items: center;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.icons-container-mobile {
    display: none;
}

.icons-mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 1rem;
}

.language-mobile {
    display: flex;
    gap: 1rem;
}

.search-modal {
    display: none;
}


/* ============================================================
   6. HOME - ÚLTIMAS NOTÍCIAS
   ============================================================ */
.lastest-news-container {
    display: flex;
    width: 100%;
    gap: var(--spacing-md);
}

.main-news {
    display: flex;
    flex-direction: column;
    width: 55%;
    gap: var(--spacing-md);
    overflow: hidden;
}

.main-news img {
    max-width: 810px;
    max-height: 500px;
    transition: transform 1.5s ease, filter 1.5s ease;
}

.main-news img:hover {
    transform: scale(1.06);
    filter: brightness(1.05) contrast(1.05);
}

.recent-other-news ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-left: 2rem;
    font-size: 0.9rem;
}

.recent-other-news i {
    font-size: 0.8rem;
}

.info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.info i {
    margin-right: 0.5rem;
    color: var(--color-yellow);
    font-size: 0.5rem !important;
}

.info time {
    font-size: 0.5rem !important;
}

.info .category {
    font-size: 0.8rem;
    font-weight: bold;
}

.secondary-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    width: 45%;
    gap: 1rem;
}

.time-colunist {
    font-size: 0.5rem !important;
}

.time-colunist i {
    font-size: 0.5rem !important;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.news-card h2 {
    font-size: 1rem;
    text-align: center;
}

.news-card h3 a {
    font-size: 0.9rem;
}

.news-card h3 a:hover {
    color: #c8c8c8;
}

.news-card a p {
    font-weight: 700;
}

.news-card time {
    font-size: 0.9rem;
    text-align: center;
}

.news-card time i {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: #c7c7c7;
}

.event img {
    height: 161.76px !important;
}

.button-event {
    font-size: 0.6rem;
    color: #232323;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.news-card .button-event a {
    background-color: #e6e6e6;
    padding: var(--spacing-sm) var(--spacing-sm);
    border-radius: var(--radius-sm);
    border: 1px solid #d6d6d6;
    box-shadow: #d6d6d6;
    font-size: 0.5;
}


/* ============================================================
   7. BANNERS
   ============================================================ */
.banners {
    margin: var(--spacing-lg) 0;
}

.banners img {
    object-fit: cover;
    border-radius: var(--radius-md);
}

.banners-small-container {
    display: flex;
    width: 100%;
    margin-bottom: var(--spacing-lg);
    justify-content: space-between;
}

.banner.small {
    width: 300px;
    height: 168px;
}

.banner.small .glide {
    width: 100%;
    height: 100%;
}

.banner.small .glide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}


/* ============================================================
   8. VÍDEOS YOUTUBE
   ============================================================ */
.youtube-container {
    margin-bottom: 100px;
}

.youtube-container h2 {
    color: red;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
}

.video-youtube {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
}

.video {
    width: 100%;
}

.video iframe {
    border-radius: 10px;
}

.video-youtube h3 {
    font-size: 1.5rem;
    color: #F40049;
    margin-bottom: var(--spacing-sm);
}

.anteriores {
    display: flex;
    flex-direction: column;
}

.videos-pequenos {
    max-height: 400px;
    overflow-y: auto;
}

.video-pequeno {
    width: 390px;
    height: 80px;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: row;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.video-pequeno img {
    width: 100px;
    height: 80px;
    object-fit: contain;
}

.video-title {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
}


/* ============================================================
   9. GRID DE NOTÍCIAS
   ============================================================ */
.news-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.title-more-news {
    font-size: 1.5rem;
    color: rgb(61, 61, 61);
    margin-bottom: 2rem;
}

.title-more-news i {
    margin-right: 0.5rem;
}

.news-card .info time {
    font-size: 0.9rem;
}

.news-card img {
    border-radius: var(--radius-md);
    object-fit: contain;
}

.news-container>.news-card:nth-child(n + 9) {
    display: none;
}

.news-container.show-all .news-card:nth-child(n + 9) {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.button-more-news {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.button-more-news button {
    padding: var(--spacing-sm) 4rem;
    border-radius: var(--radius-sm);
    border: 1px solid #c7c7c7;
    box-shadow: var(--box-shadow-md);
    font-size: 0.5;
}

.button-more-news button:hover {
    box-shadow: #c8c8c8;
    background-color: #fff;
}


/* ============================================================
   10. COLUNISTAS
   ============================================================ */
.columnist-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    margin-bottom: 2rem;
}

.columnist-container .news-card {
    height: 100%;
}

.news-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news-card.columinist img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.news-card time {
    font-size: 0.9rem;
    display: flex;
}

.news-card i {
    margin-right: 0.5rem;
    color: var(--color-yellow);
}

.info-columinist {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    font-size: 1.2rem;
}

.info-columinist .bi-heart {
    color: red;
}

.info-columinist .bi-facebook {
    color: blue;
}

.info-columinist .bi-whatsapp {
    color: green;
}


/* ============================================================
   11. PREÇOS DE CULTURAS
   ============================================================ */
.title-crop-prices {
    color: #00963C;
}

.crop-prices-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.crop-prices-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-top: 2rem;
    padding: 20px 40px;
    border: 1px solid #00963C;
    border-radius: var(--radius-sm);
    box-shadow: var(--box-shadow-md);
}

.crop-prices-card:hover {
    background-color: #00963caf;
    color: #fff;
    transform: translateY(-5%);
}

.crop-prices-card img {
    height: 30px;
    width: 30px;
    align-self: center;
}

.crop-prices-share {
    margin-bottom: 2rem;
}

.crop-prices-share p {
    font-size: 1.5rem;
}

.crop-prices-share i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.crop-prices-share .bi-whatsapp {
    color: #00963C;
}

.crop-prices-share .bi-facebook {
    color: #0453c9;
}


/* ============================================================
   12. ABAS (TABS)
   ============================================================ */
.news-container>.news-card.politics:nth-child(n + 5) {
    display: none;
}

.news-container.show-all>.news-card.politics:nth-child(n + 5) {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tabs {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.tab {
    display: inline-block;
    padding: 1rem 2rem;
    text-align: center;
}

.tab:hover {
    box-shadow:
        0 -4px 6px -4px rgba(0, 0, 0, 0.3),
        -4px 0 6px -4px rgba(0, 0, 0, 0.3),
        4px 0 6px -4px rgba(0, 0, 0, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tabs .active {
    font-weight: bold;
    border-top-left-radius: var(--radius-sm);
    border-top-right-radius: var(--radius-sm);
    color: #fff;
}

.tabs-wrapper.tab-jobs .tab-jobs {
    background-color: #00963C;
}

.tabs-wrapper.tab-recipes .tab-recipes {
    background-color: rgb(0, 0, 116);
}

.tabs-wrapper.tab-lost .tab-lost {
    background-color: orangered;
}

.space-h2 {
    margin-top: 2rem;
}


/* ============================================================
   13. LOTERIA
   ============================================================ */
.lottery-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.card-lottery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 280px;
}

.card-lottery img {
    height: 80px;
    width: 80px;
}

.game-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-lottery time i {
    color: var(--color-yellow);
}

.numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin: 4px;
    border-radius: 50%;
    background-color: #003468;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.game-cash-container {
    display: flex;
    align-items: center;
}

.card-lottery i {
    margin: 0 0.2rem;
}

.invert-x {
    transform: scaleX(-1);
    display: inline-block;
}

.game-cash {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lotofacil {
    color: #881E7D !important;
}

.lotofacil .numbers {
    background-color: #881E7D;
}

.megasena {
    color: #209869 !important;
}

.megasena .numbers {
    background-color: #209869;
}

.quina {
    color: #241A78 !important;
}

.quina .numbers {
    background-color: #241A78;
}

.duplasena {
    color: #A61324 !important;
}

.duplasena .numbers {
    background-color: #A61324;
}

.lotomania {
    color: #EA7933 !important;
}

.lotomania .numbers {
    background-color: #EA7933;
}

.federal {
    color: #241A78 !important;
}

.federal-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
    color: #241A78 !important;
}

.federal-numbers {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.federal-numbers p {
    font-weight: 700;
    letter-spacing: 1px;
}

.number-federal {
    margin-left: 0.5rem;
    padding: 0.5rem;
    color: #fff;
    background-color: #241A78;
    border-radius: var(--spacing-md);
}


/* ============================================================
   14. POPUPS E IMAGENS FLUTUANTES
   ============================================================ */
.image-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    border: none;
    padding: 10px;
    background: none;
}

.image-container img {
    max-width: 150px;
    height: auto;
    display: block;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
}

.image-container-midia {
    position: fixed;
    top: 10vh;
    right: 2vw;
    z-index: 1000;
    border: none;
    padding: 10px;
    background: none;
}

.image-container-midia img {
    max-width: 200px;
    height: auto;
    display: block;
}

#popupFlutuante {
    width: 200px;
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: #030266;
    color: white;
    padding: 20px 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

#popupFlutuante button {
    background: white;
    color: #0a1391;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-weight: bold;
}


/* ============================================================
   15. ESPAÇO DO USUÁRIO E ENQUETE
   ============================================================ */
.container-espaco-usuario {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

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

.enquete-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: 2rem;
}

.enquete-titulo {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.3;
}

.enquete-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.opcao {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 2px solid #e8f2ff;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fafbfc;
}

.opcao:hover {
    border-color: #3498db;
    background: #e8f2ff;
    transform: translateY(-1px);
}

.opcao input[type="radio"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: #3498db;
    cursor: pointer;
}

.opcao label {
    font-size: 14px;
    color: #34495e;
    cursor: pointer;
    font-weight: 500;
    flex: 1;
}

.opcao:has(input:checked) {
    border-color: #3498db;
    background: #e8f2ff;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.btn-enviar {
    margin-top: 15px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-enviar:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-enviar:active {
    transform: translateY(0);
}

.btn-lado-lado {
    display: flex;
}


/* ============================================================
   16. GRID HIGHLIGHTS (DESTAQUES)
   ============================================================ */
.grid-highlights {
    margin: 3rem 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-small-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-card-small {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.grid-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.grid-card-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-card-small:hover img {
    transform: scale(1.05);
}

.grid-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.grid-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.grid-card-tags span {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tag-primary {
    color: #fff;
}

.tag-secondary {
    background-color: #e0e0e0;
    color: #333;
    text-transform: uppercase;
}

.grid-card-small h3 {
    font-size: 1rem;
    line-height: 1.4;
    color: #1C1C1C;
    font-weight: 700;
    transition: color 0.3s ease;
}

.grid-card-small h3:hover {
    color: #0453c9;
}

.grid-card-large {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 500px;
    background-color: #1a1a1a;
}

.grid-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.grid-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 1;
}

.grid-card-large img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    z-index: 2;
}

.grid-card-large:hover img {
    transform: scale(1.08);
}

.grid-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 3;
}

.tag-large {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    width: fit-content;
    text-transform: uppercase;
}

.grid-card-large h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tag-primary.marketing,
.tag-large.marketing {
    background-color: #0066cc;
}

.tag-primary.financas,
.tag-large.financas {
    background-color: #ff6600;
}

.tag-primary.politica,
.tag-large.politica {
    background-color: #8B4513;
}

.tag-primary.tecnologia,
.tag-large.tecnologia {
    background-color: #9333ea;
}

.tag-primary.moda,
.tag-large.moda {
    background-color: #7c3aed;
}


/* ============================================================
   17. BUSCA E RESULTADOS
   ============================================================ */
.search-title {
    margin: 2rem 0;
    font-weight: 500;
}

.pagination {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.pagination a {
    padding: 0.8rem;
    background-color: #100060;
    color: #fff;
    border-radius: var(--radius-md);
}


/* ============================================================
   18. NOTÍCIA INTERNA
   ============================================================ */
.noticia-interna {
    margin-top: 0.5rem;
}

.noticia-interna img {
    width: 350px;
    height: auto;
}

.top-news {
    display: flex;
    flex-direction: row;
    margin-top: 2rem;
    margin-bottom: 100px;
    gap: 1rem;
    justify-content: space-between;
}

.news {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 600px;
}

.listen-button {
    align-self: baseline;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-sm);
    border: #ffffff00;
    color: #fff;
    background-color: #08080800;
    box-shadow: var(--box-shadow-md);
}

.listen-button i {
    margin-right: 0.5rem;
}

.listen-button button {
    background: #020080;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.listen-button {
    box-shadow: none;
}

.listen-button i.pulsando {
    animation: pulse 1s infinite;
}

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

    50% {
        transform: scale(1.25);
        color: #d9534f;
    }

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

.news-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.date i {
    margin-right: 0.5rem;
    color: var(--color-yellow);
}

.image-main {
    width: 700px;
    height: 400px;
}

.title-news {
    font-size: 1rem;
    max-width: 600px;
}

.title-news h1 {
    font-size: 2rem;
}

.share-icons i {
    margin-right: var(--spacing-md);
    font-size: 1.5rem;
}

.share-icons .facebook {
    color: var(--color-blue);
}

.share-icons .whatsapp {
    color: green;
}

.separa-descricao-do-banner {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.banners-small-container-n {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.font {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.gallery-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.gallery-container h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.gallery-container h3 i {
    font-size: 1.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.event-image-main {
    height: max-content;
}

.columinist-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem 0;
    margin-top: 3rem;
    justify-content: space-between;
    border-top: 4px solid #020080;
}

.columinist-item {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.columinist-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.columinist-img {
    height: 80px;
    width: 80px;
    border-radius: 1rem;
    object-fit: cover;
}

.columinist-name {
    color: #070054;
    font-weight: bold;
}

.columinist-perfil {
    font-weight: 300;
}

.preparo {
    margin: 1rem 0;
}

.show-more-news {
    margin-bottom: 50px;
}


/* ============================================================
   19. PÁGINA 404
   ============================================================ */
.page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.card-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 3rem;
}

.card-404 svg {
    width: 80px;
    height: 80px;
    padding: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001f8b, #003cff);
    fill: #ffffff;
}

.number-code {
    font-size: 5rem;
    background: linear-gradient(45deg, #001f8b, #003cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.message-404 {
    font-size: 2rem;
    font-weight: bold;
}

.subtitle-404 {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-home {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.popular-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.popular-links h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.link-item {
    padding: 12px 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.link-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}


/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
    background-color: #ffffff;
    color: #191919;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 300px;
    margin: 20px;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: #000000;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons li {
    list-style: none;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}


/* ============================================================
   21. FORMULÁRIOS
   ============================================================ */
.background-form {
    background-color: #0056b3;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 1rem;
}

.form-container {
    max-width: 600px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    background-color: #ddd;
    padding: 2rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.radio-group {
    margin-bottom: 15px;
}

.radio-group label {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.radio-option {
    margin-bottom: 8px;
}

.radio-option input[type="radio"] {
    margin-right: 8px;
}

.radio-option label {
    font-weight: normal;
    margin-bottom: 0;
    display: inline;
    cursor: pointer;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #0056b3;
}


/* ============================================================
   22. CLASSES DE CATEGORIA
   ============================================================ */
.mural-eventos {
    color: var(--color-mural-de-eventos);
}

.mural-eventos:hover {
    color: #9b639e;
}

.geral {
    color: var(--color-geral);
}

.geral:hover {
    color: #D4A017;
}

.regional {
    color: var(--color-regionals);
}

.regional:hover {
    color: #0f16238e;
}

.policial {
    color: var(--color-policial);
}

.policial:hover {
    color: #434343;
}

.hall-da-fama {
    color: var(--color-hall-da-fama);
}

.hall-da-fama:hover {
    color: #f17397;
}

.esportes {
    color: var(--color-esporte);
}

.esportes:hover {
    color: #59d088;
}

.politica {
    color: var(--color-politica);
}

.politica:hover {
    color: #b482c7;
}

.colunista {
    color: var(--color-colunista);
}

.colunista:hover {
    color: #55abab;
}

.fale-conosco {
    color: var(--color-fale-conosco);
}

.fale-conosco:hover {
    color: #808080;
}

.documentario {
    color: var(--color-documentarios);
}

.nota-falecimento {
    color: var(--color-nota-de-falecimento);
}

.nota-falecimento:hover {
    color: #8a25d2;
}

.na-rede {
    color: var(--color-deu-na-rede);
}

.na-rede:hover {
    color: #a8982d;
}


/* ============================================================
   23. GOOGLE TRANSLATE (OCULTAR)
   ============================================================ */
#google_translate_element {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate {
    display: none !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.skiptranslate iframe,
#goog-gt-tt,
.goog-te-spinner-pos,
.goog-te-balloon-frame {
    display: none !important;
    color: transparent;
}


/* ============================================================
   24. MEDIA QUERIES - RESPONSIVIDADE (max-width: 1129px)
   ============================================================ */
@media (max-width: 1129px) {

    /* Home */
    .lastest-news-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-news {
        width: 100%;
    }

    .secondary-news {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, auto);
    }

    .banners-small-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .youtube-container {
        display: flex;
        flex-direction: column;
    }

    .video {
        height: 220px;
    }

    .video-youtube {
        display: flex;
        flex-direction: column;
    }

    .crop-prices-container {
        flex-direction: column;
    }

    .tabs {
        font-size: 1rem;
    }

    .tab {
        padding: 1rem;
        align-self: center;
        flex: 1;
        padding: 12px 8px;
        text-align: center;
        cursor: pointer;
        background: transparent;
        border: none;
        font-size: 14px;
        font-weight: 500;
        color: #6c757d;
        transition: all 0.3s ease;
        white-space: nowrap;
        text-transform: capitalize;
        min-width: 0;
    }

    .lottery-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .hr-lottery {
        display: none;
    }

    .news-card.event img {
        object-fit: contain;
    }

    .image-container-midia {
        top: 15vh;
        right: 2vw;
    }

    .container-espaco-usuario {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .space-user {
        grid-template-columns: 1fr;
    }

    .enquete-container {
        max-width: 270px;
        padding: 20px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

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

    .grid-small-cards {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .grid-card-large img {
        min-height: 400px;
    }

    .grid-card-large h2 {
        font-size: 1.5rem;
    }

    /* Navbar */
    .navbar-button-radio {
        width: 100%;
    }

    .search-toggle {
        display: block;
    }

    .search-toggle i {
        color: rgb(90, 90, 90);
        background-color: aliceblue;
    }

    .menu-toggle i {
        color: rgb(22, 22, 22);
        background-color: rgb(252, 252, 4);
    }

    .close-menu i {
        color: rgb(228, 228, 228);
        background-color: rgb(27, 27, 27);
    }

    .sidebar {
        background-color: rgb(255, 242, 4);
    }

    .navbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-midia {
        height: 80px;
    }

    .navbar-visit {
        display: block;
    }

    .weather-info {
        max-width: 100%;
        white-space: unset;
        height: 3rem;
    }

    .weather-card {
        gap: 0;
    }

    .weather-icon {
        height: 32px;
        width: 32px;
    }

    .navbar-search {
        display: none;
    }

    .icons {
        display: none;
    }

    .icons-container-mobile {
        display: block;
        color: #fff;
        background-color: #000000;
    }

    .side-bar {
        background-color: #000000;
        display: block;
    }

    .navbar-wrapper {
        padding: var(--spacing-xs) 0;
    }

    .navbar-info {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .close-menu {
        display: block;
    }

    .navbar-details {
        display: block;
    }

    .people-icon {
        display: none;
    }

    .navbar-container-fibernet {
        display: block;
    }

    .navbar-fibernet {
        flex-direction: column;
        align-items: flex-start;
    }

    .align-text-img p {
        display: flex;
    }

    .navbar-container-news {
        display: block;
    }

    .navbar-container-categories {
        display: none;
    }

    .navbar-slogan-text {
        display: none;
    }

    .align-text-img {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .ticker-wrapper {
        display: none;
    }

    .search-modal {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .search-modal.active {
        display: flex;
    }

    .search-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .search-box {
        position: relative;
        background: white;
        padding: 1rem;
        border-radius: var(--radius-md, 8px);
        z-index: 1;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .search-input {
        flex: 1;
        padding: 0.5rem 1rem;
        border: 1px solid #ccc;
        border-radius: var(--radius-sm, 4px);
    }

    .search-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
    }

    /* Notícia interna */
    .top-news {
        display: flex;
        flex-direction: column;
    }

    .image-main {
        width: 100%;
        height: 200px;
    }

    .separa-descricao-do-banner {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

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

    /* News Container */
    .news-container {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, auto);
        gap: 1rem;
    }

    .news-card img {
        width: 100%;
        object-fit: fill;
        height: 220px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin: 10px 0;
        text-align: center;
    }
}


/* ============================================================
   25. MEDIA QUERIES - RESPONSIVIDADE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    .grid-small-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .grid-card-small img {
        height: 200px;
    }

    .grid-card-large img {
        min-height: 350px;
    }

    .grid-card-overlay {
        padding: 1.5rem;
    }

    .grid-card-large h2 {
        font-size: 1.25rem;
    }

    .tag-large {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}


/* ============================================================
   26. MEDIA QUERIES - RESPONSIVIDADE (max-width: 600px)
   ============================================================ */
@media (max-width: 600px) {
    #popupFlutuante {
        font-size: 16px;
        padding: 15px 20px;
    }
}


/* Fonte global */
body,
button,
a,
p,
span,
li {
    font-family: "Poppins", sans-serif;
}

/* ----------------- HEADER ----------------- */
.ms-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

/* ======== TOPBAR ======== */
.ms-topbar {
    background: #030266;
    color: #fff;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.ms-top-left,
.ms-top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-btn img {
    width: 22px;
    transition: .2s;
}

.lang-btn img:hover {
    transform: scale(1.15);
}

.ms-icon {
    color: #F9E100;
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
}

.ms-icon:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ======== MIDBAR ======== */
.ms-midbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.ms-logo img {
    height: 60px;
    transition: .3s;
}

.ms-logo img:hover {
    transform: scale(1.04);
}

.ms-menu-btn {
    font-size: 28px;
    background: none;
    border: none;
    display: none;
    color: #303030;
}

/* ======== WEATHER ======== */
.ms-weather {
    font-size: 15px;
    color: #303030;
}

/* ======== SEARCH ======== */
.ms-search-btn {
    background: #F9E100;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 20px;
    transition: .3s;
}

.ms-search-btn:hover {
    background: #d9c200;
    transform: scale(1.05);
}

/* ======== FIBERNET LINE ======== */
.ms-fibernet {
    background: #303030;
    color: #fff;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 14px;
}

/* ======== NEWS TICKER ======== */
.ms-newsbar {
    background: #F9E100;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ms-radio {
    background: #030266;
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.ms-radio:hover {
    background: #02014f;
}

.ms-ticker a {
    margin: 0 20px;
    color: #030266;
    font-weight: 600;
}

/* ======== CATEGORIES ======== */
.ms-categories {
    background: #ffffff;
    border-top: 1px solid #eee;
}

.ms-categories ul {
    display: flex;
    padding: 10px 20px;
    overflow-x: auto;
    gap: 20px;
}

.ms-categories a {
    font-weight: 600;
    color: #303030;
    transition: .3s;
}

.ms-categories a:hover {
    color: #030266;
    border-bottom: 2px solid #F9E100;
}

/* ======== MOBILE ======== */
@media (max-width: 900px) {

    .ms-menu-btn {
        display: block;
    }

    .ms-topbar {
        display: none;
    }

    .ms-weather {
        display: none;
    }

    .ms-logo img {
        height: 48px;
    }

    .ms-fibernet {
        flex-wrap: wrap;
    }

    .ms-midbar {
        padding: 12px 15px;
    }
}