/* ==================== CONFIGURAÇÕES GERAIS ==================== */
:root {
    --brand-red: #D32F2F; 
    --brand-red-dark: #B71C1C;
    --brand-red-light: #FFEBEE;
    --bg-body: #F4F5F7;
    --bg-card: #FFFFFF;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --link-blue: #0056b3;
    --border-color: #E0E0E0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.1);
    
    --container-width: 1400px; 
    --header-height: 75px;
    --radius: 6px; 
    --spacing: 20px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* FIX: Garante que nada no site ultrapasse a largura da janela */
html {
    width: 100%;
    overflow-x: clip;
    overflow-y: scroll;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: clip; /* clip não quebra sticky */
    position: relative;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition);
}

ul { list-style: none; }

img { 
    max-width: 100%; 
    display: block; 
    border-radius: var(--radius);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==================== LAZY LOADING ==================== */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Placeholder enquanto carrega */
img[data-src] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==================== BADGES ==================== */
.badge { 
    font-size: 11px; 
    font-weight: 900; 
    text-transform: uppercase; 
    margin-bottom: 5px; 
    display: inline-block;
    letter-spacing: 0.5px;
}

.cat-cotidiano { color: #1565C0; }
.cat-policial { color: #C62828; }
.cat-esporte { color: #2E7D32; }
.cat-variedades { color: #EF6C00; }
.cat-patrocinado { 
    color: #888; 
    font-size: 10px;
    padding: 4px 8px;
    background: #f5f5f5;
    border-radius: 3px;
}

/* ==================== HEADER ==================== */
.main-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky; 
    top: 0; 
    z-index: 1000;
    height: var(--header-height);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: var(--container-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 var(--spacing);
    gap: 35px;
}

.logo { 
    font-weight: 900; 
    font-size: 28px; 
    font-style: italic; 
    color: #222; 
    letter-spacing: -1.5px;
    white-space: nowrap;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    border-radius: 0;
}

/* ==================== BREAKING NEWS BAR ==================== */
.breaking-news-bar {
    background: linear-gradient(135deg, #FF0000 0%, #E60000 100%); /* Vermelho VIVO */
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center; /* CENTRALIZADO */
    gap: 15px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.breaking-label {
    background: rgba(0, 0, 0, 0.25);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
    flex-shrink: 0;
}

.breaking-content {
    flex: 0 1 auto; /* Não cresce demais */
    overflow: hidden;
}

.breaking-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.2s ease;
}

.breaking-title:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* Breaking News Mobile - mostrada por padrão */
.breaking-news-mobile {
    display: block;
    margin: 0 0 20px 0;
}

.breaking-news-mobile .breaking-news-bar {
    background: linear-gradient(135deg, #FF0000 0%, #E60000 100%);
    color: white;
    padding: 12px 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
    border-radius: 8px;
}

.breaking-news-mobile .breaking-label {
    background: rgba(0, 0, 0, 0.25);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-top: 2px;
}

.breaking-news-mobile .breaking-content {
    flex: 1;
    min-width: 0;
}

.breaking-news-mobile .breaking-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: initial;
}

/* Esconder no DESKTOP (min-width 993px) */
@media (min-width: 993px) {
    .breaking-news-mobile {
        display: none;
    }
}

.top-nav { 
    display: flex; 
    gap: 20px;
    align-items: center;
    flex: 1;
}

.top-nav a { 
    font-size: 13px; 
    font-weight: 600; 
    color: #444; 
    text-transform: uppercase;
    padding: 8px 10px;
    border-radius: 6px;
    position: relative;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.top-nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: var(--brand-red);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.top-nav a:hover {
    color: var(--brand-red);
    background: rgba(211, 47, 47, 0.05);
}

.top-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.search-box {
    background: #f5f5f5; 
    padding: 10px 16px; 
    border-radius: 25px;
    display: flex; 
    align-items: center; 
    width: 220px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    background: #fff;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.search-box input { 
    border: none; 
    background: transparent; 
    outline: none; 
    width: 100%; 
    font-size: 14px; 
    color: #333;
}

.search-box input::placeholder {
    color: #999;
}

.search-btn {
    color: #999;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.search-box:focus-within .search-btn {
    color: var(--brand-red);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 24px;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Mobile Nav - escondido no desktop */
.mobile-nav-wrapper {
    display: none;
}

/* ==================== MAIN GRID ==================== */
.main-grid {
    display: grid;
    grid-template-columns: 230px 1fr 340px; 
    gap: 30px;
    max-width: var(--container-width);
    margin: 30px auto;
    padding: 0 var(--spacing);
    align-items: start;
}

/* ==================== COLUNA ESQUERDA ==================== */
.col-left {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    align-self: start;
    height: fit-content;
    transition: top 0.1s ease;
}

.col-left.sticky-bottom {
    top: auto;
    bottom: 20px;
    align-self: end;
}

/* Data Display */
.date-display { 
    margin-bottom: 30px; 
    line-height: 1;
    background: #fff;
    padding: 18px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.date-display .weekday { 
    font-size: 10px; 
    color: #999; 
    margin-bottom: 6px; 
    font-weight: 600;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-display .day { 
    font-size: 36px; 
    font-weight: 900; 
    color: #222; 
    letter-spacing: -1px;
    display: block;
    line-height: 1;
}

.date-display .month { 
    color: var(--brand-red); 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 12px; 
    margin-top: 5px; 
    display: block;
    letter-spacing: 1px;
}

/* Nav Menu Box */
.nav-menu-box {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 10px;
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
    box-shadow: var(--shadow-sm);
}

.nav-menu-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    padding: 0 10px 10px 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #f5f5f5;
    display: block;
    letter-spacing: 0.5px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    transition: background-color 0.2s, color 0.2s;
}

.nav-item:hover {
    background-color: var(--brand-red-light);
    color: var(--brand-red);
}

.nav-item svg {
    width: 18px;
    height: 18px;
    fill: #999;
    flex-shrink: 0;
    transition: fill 0.2s;
}

.nav-item:hover svg {
    fill: var(--brand-red);
}

.nav-icon-emoji {
    width: 18px;
    text-align: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* Expediente */
.expediente-box { 
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: var(--shadow-sm);
}

.expediente-box h4 { 
    font-size: 14px; 
    color: #222; 
    margin-bottom: 12px; 
    font-weight: 700;
}

.expediente-links a { 
    display: block; 
    padding: 6px 0; 
    font-size: 12px; 
    color: var(--text-light);
}

/* ==================== COLUNA CENTRAL ==================== */
main {
    min-height: 80vh;
    overflow: hidden;
}

/* Featured Card */
.featured-card {
    background: var(--bg-card); 
    border-radius: var(--radius); 
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.featured-card img { 
    width: 100%; 
    aspect-ratio: 16 / 9; 
    object-fit: cover;
    border-radius: 0;
}

.featured-card .content { 
    padding: 25px;
}

.featured-card h1 { 
    font-size: 28px; 
    font-weight: 800; 
    line-height: 1.25; 
    color: #111; 
    margin-bottom: 12px;
}

.meta-line { 
    font-size: 12px; 
    color: var(--text-light); 
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.separator {
    color: #ddd;
}

/* News Feed */
.news-feed { 
    display: flex; 
    flex-direction: column; 
    gap: 20px;
    margin-bottom: 30px;
}

.news-card-horizontal {
    background: var(--bg-card); 
    border-radius: var(--radius); 
    display: flex;
    overflow: hidden; 
    box-shadow: var(--shadow-sm);
    min-height: 140px;
    padding: 12px;
    gap: 15px;
}

.news-card-horizontal .thumb { 
    width: 140px; 
    height: 140px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.news-card-horizontal .thumb img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: var(--radius);
}

.news-card-horizontal .info { 
    padding: 5px 0; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    flex: 1;
}

.news-card-horizontal h3 { 
    font-size: 19px; 
    font-weight: 700; 
    line-height: 1.4; 
    color: #222; 
    margin-bottom: 10px;
}

/* ==================== GRID DE NOTÍCIAS PEQUENAS ==================== */
.bottom-news-grid { 
    margin-top: 40px; 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.card-vertical {
    background: var(--bg-card); 
    border-radius: var(--radius); 
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex; 
    flex-direction: column;
}

.card-vertical .img-wrap { 
    aspect-ratio: 1 / 1; 
    position: relative;
    overflow: hidden;
}

.card-vertical .img-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 0;
}

.card-vertical .txt-wrap { 
    padding: 15px; 
    flex: 1; 
    display: flex; 
    flex-direction: column;
}

.card-vertical h4 { 
    font-size: 15px; 
    font-weight: 700; 
    line-height: 1.35; 
    margin-bottom: 10px; 
    color: #333;
}

/* ==================== COMPONENTES - NOTÍCIAS ==================== */

/* Carrossel de Notícias */
.noticias-carrossel {
    margin: 20px 0;
}

.noticias-carrossel .carrossel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.noticias-carrossel .carrossel-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.noticias-carrossel .ver-mais {
    color: var(--brand-red);
    font-size: 13px;
    font-weight: 600;
}

.noticias-carrossel .carrossel-track {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.noticias-carrossel .carrossel-track::-webkit-scrollbar {
    display: none;
}

.noticias-carrossel .carrossel-item {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.noticias-carrossel .carrossel-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

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

.noticias-carrossel .carrossel-item:hover .carrossel-thumb img {
    transform: scale(1.05);
}

.noticias-carrossel .carrossel-info {
    padding: 12px;
}

.noticias-carrossel .carrossel-info h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticias-carrossel .carrossel-info .badge {
    margin-bottom: 8px;
}

/* Grid de Notícias */
.noticias-grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

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

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

.noticias-grid .grid-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.noticias-grid .grid-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.noticias-grid .grid-info {
    padding: 15px;
}

.noticias-grid .grid-info h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticias-grid .grid-info .badge {
    margin-bottom: 10px;
}

.noticias-grid .grid-info .meta-line {
    font-size: 12px;
    color: #888;
}

/* Grid responsivo */
@media (max-width: 768px) {
    .noticias-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .noticias-grid.grid-2,
    .noticias-grid.grid-3 {
        gap: 12px;
    }
    
    .noticias-grid .grid-thumb {
        height: 140px;
    }
    
    .noticias-grid .grid-info {
        padding: 12px;
    }
    
    .noticias-grid .grid-info h3 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .noticias-grid.grid-2,
    .noticias-grid.grid-3 {
        grid-template-columns: 1fr;
    }
    
    .noticias-carrossel .carrossel-item {
        flex: 0 0 85%;
    }
}

/* ==================== COLUNA DIREITA ==================== */
.col-right {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

/* Classes de visibilidade */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 992px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}

.widget {
    background: var(--bg-card); 
    border-radius: var(--radius); 
    padding: 20px;
    margin-bottom: 25px; 
    box-shadow: var(--shadow-sm);
}

.widget-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: baseline; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 12px; 
    margin-bottom: 15px;
}

.widget-header h3 { 
    font-size: 18px; 
    font-weight: 800; 
    color: #222;
}

.widget-header a { 
    font-size: 11px; 
    font-weight: 700; 
    color: var(--link-blue); 
    text-transform: uppercase;
}

/* Comércio Local */
.comercio-item { 
    display: flex; 
    gap: 12px; 
    margin-bottom: 15px; 
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 15px;
    transition: all 0.2s ease;
    border-radius: 6px;
    padding: 10px;
    margin: 0 -10px 10px -10px;
}

.comercio-item:hover {
    background: #f8f9fa;
    border-color: transparent;
}

.comercio-item:last-child { 
    border: none; 
    padding-bottom: 10px; 
    margin-bottom: 0;
}

.comercio-img { 
    width: 80px; 
    height: 80px; 
    flex-shrink: 0; 
    border-radius: 6px; 
    overflow: hidden;
    transition: transform 0.2s ease;
}

.comercio-item:hover .comercio-img {
    transform: scale(1.03);
}

.comercio-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 6px;
}

/* Comércio Local Mobile - escondido no desktop */
.comercio-mobile-widget {
    display: none;
}

.comercio-info h4 { 
    font-size: 14px; 
    font-weight: 700; 
    line-height: 1.3; 
    margin-bottom: 5px; 
    color: #333;
    transition: color 0.2s ease;
}

.comercio-item:hover .comercio-info h4 {
    color: var(--brand-red);
}

.comercio-info span {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: block;
}

/* Widget Highlight (Muito acessada) */
.widget-highlight {
    padding: 0;
    overflow: hidden;
}

.widget-highlight .widget-header {
    padding: 15px 20px;
    margin: 0;
    border-bottom: 1px solid #eee;
}

.highlight-img-wrapper {
    padding: 15px 20px 10px;
    position: relative;
}

.highlight-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.highlight-link {
    display: block;
    transition: opacity 0.2s ease;
}

.highlight-link:hover {
    opacity: 0.9;
}

.highlight-link:hover .highlight-title {
    color: var(--brand-red);
}

.highlight-views {
    position: absolute;
    bottom: 20px;
    right: 28px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.highlight-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    padding: 10px 20px 5px;
    color: #333;
}

.widget-highlight .meta-line {
    padding: 0 20px 15px;
}

/* Cotações */
.cotacoes-moedas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.cotacao-moeda {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.cotacao-moeda .cotacao-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cotacao-moeda .cotacao-valor {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.cotacoes-agro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cotacao-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 10px;
    border-radius: 6px;
}

.cotacao-icon {
    font-size: 16px;
}

.cotacao-item .cotacao-label {
    font-size: 11px;
    color: #666;
    flex: 1;
}

.cotacao-item .cotacao-valor {
    font-size: 12px;
    font-weight: 700;
    color: #27ae60;
}

.cotacoes-updated {
    font-size: 10px;
    color: #999;
    text-align: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Feira */
.feirinha-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feira-card {
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid;
}

.feira-card.feira-hoje {
    background: #e8f5e9;
    border-left-color: #4caf50;
}

.feira-card.feira-nao {
    background: #f5f5f5;
    border-left-color: #bbb;
}

.feira-card.feira-proxima {
    background: #fff8e1;
    border-left-color: #ffc107;
}

.feira-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #555;
}

.feira-card p {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* Vagas */
.vagas-list li { 
    padding: 10px 0; 
    border-bottom: 1px solid #eee; 
    position: relative; 
    padding-left: 20px;
    transition: padding-left 0.2s ease;
}

.vagas-list li:last-child {
    border-bottom: none;
}

.vagas-list li::before { 
    content: '›'; 
    color: var(--brand-red); 
    font-size: 20px; 
    font-weight: 700; 
    position: absolute; 
    left: 0; 
    top: 6px;
}

.vagas-list li:hover {
    padding-left: 24px;
}

.vagas-list li a { 
    font-size: 15px; 
    color: #444; 
    font-weight: 500;
    transition: color 0.2s ease;
}

.vagas-list li:hover a {
    color: var(--brand-red);
}

.vagas-list li a small {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}

.badge-nova {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
    text-transform: uppercase;
}

.widget-link-full {
    display: block;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    background: #f5f5f5;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.widget-link-full:hover {
    background: #eee;
    color: #333;
    border-color: #ccc;
}

/* Pets */
.pets-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 8px;
}

.pet-pic { 
    aspect-ratio: 1/1; 
    border-radius: 12px; 
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.pet-pic:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

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

.pet-pic:hover img {
    transform: scale(1.1);
}

.pet-icon {
    position: absolute;
    bottom: 4px;
    right: 4px;
    font-size: 14px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Eventos */
.eventos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eventos-list li {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--brand-red);
    cursor: pointer;
    transition: all 0.3s ease;
}

.eventos-list li:hover {
    background: #fff;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.evento-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--brand-red);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    min-width: 50px;
    flex-shrink: 0;
}

.evento-dia {
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
}

.evento-mes {
    font-size: 10px;
    font-weight: 700;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.evento-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.evento-info a {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin-bottom: 4px;
}

.evento-local {
    font-size: 11px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.evento-local::before {
    content: '📍';
    font-size: 10px;
}

/* Cinema */
.cinema-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cinema-list li {
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--brand-red);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cinema-list li:hover {
    background: #fff;
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cinema-list li a {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cinema-list li strong {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.cinema-info {
    font-size: 11px;
    color: #999;
}

/* Achados e Perdidos */
.achados-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.achado-item {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 6px;
    overflow: hidden;
}

.achado-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achado-label {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #2E7D32;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achado-label.perdido {
    background: var(--brand-red);
}

/* ==================== PÁGINA DE EMPREGOS ==================== */

/* Header da página */
.empregos-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--brand-red);
}

.empregos-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 6px 0;
}

.empregos-total {
    font-size: 13px;
    color: #666;
}

/* CTA Anunciar */
.empregos-cta {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.empregos-cta-texto {
    color: #fff;
}

.empregos-cta-texto h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.empregos-cta-texto p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.empregos-cta-btn {
    background: #fff;
    color: #2E7D32;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}

.empregos-cta-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .empregos-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .empregos-cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* Lista de vagas */
.empregos-lista {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

@media (max-width: 575px) {
    .empregos-lista {
        gap: 20px;
    }
}

.empregos-vazio {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: var(--radius);
    color: #666;
}

/* Card da vaga */
.vaga-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.vaga-item:hover {
    box-shadow: var(--shadow-md);
}

.vaga-item.expandido {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-left: 4px solid var(--brand-red);
    background: #fffdf5;
}

.vaga-item.vaga-patrocinada.expandido {
    /* Igual às demais vagas */
}

/* Topo da vaga */
.vaga-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tempo-badge {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: -5px;
}

.tempo-badge.nova {
    background: #e8f5e9;
    color: #2e7d32;
}

.tempo-badge.patrocinada {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
}

/* Card patrocinado - igual às demais vagas */
.vaga-item.vaga-patrocinada {
    /* Sem destaque */
}

.vaga-item.vaga-patrocinada:hover {
    /* Sem destaque */
}

.vaga-compartilhar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s;
}

.vaga-compartilhar:hover {
    background: #25D366;
    color: white;
}

/* Título */
.vaga-titulo {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

/* Empresa */
.vaga-empresa {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

/* Info em lista vertical */
.vaga-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
}

.vaga-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

.vaga-info-item svg {
    flex-shrink: 0;
    color: var(--brand-red);
    margin-top: 2px;
}

.vaga-info-item span {
    flex: 1;
}

/* Botão ver detalhes */
.vaga-btn-detalhes {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    border: 2px solid #e0e0e0;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.vaga-btn-detalhes:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
}

/* Detalhes expandíveis */
.vaga-detalhes {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    animation: fadeIn 0.3s ease;
}

.vaga-detalhes.aberto {
    display: block;
}

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

.vaga-secao {
    margin-bottom: 20px;
}

.vaga-secao h4 {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
}

.vaga-texto {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Área de contato */
.vaga-contato {
    margin: 20px 0;
}

.vaga-contato-texto {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    text-align: center;
}

.vaga-btn-whatsapp {
    display: flex;
    align-items: center;
    width: 100%;
    background: #128C7E;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.vaga-btn-whatsapp:hover {
    background: #0d7367;
    color: white;
}

.vaga-btn-whatsapp svg {
    flex-shrink: 0;
}

.vaga-btn-whatsapp-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 26px;
}

.vaga-btn-whatsapp .whats-titulo {
    font-size: 14px;
    font-weight: 700;
}

.vaga-btn-whatsapp .whats-numero {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
}

.vaga-whatsapp-numero {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: #666;
}

.vaga-whatsapp-numero strong {
    color: #333;
}

.vaga-btn-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #1976d2;
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    word-break: break-all;
}

.vaga-btn-email:hover {
    background: #1565c0;
    color: white;
}

.vaga-btn-externo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #ff9800;
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.vaga-btn-externo:hover {
    background: #f57c00;
    color: white;
}

/* Botão recolher */
.vaga-btn-recolher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: none;
    border: none;
    color: #999;
    padding: 10px;
    font-size: 13px;
    cursor: pointer;
}

.vaga-btn-recolher:hover {
    color: #333;
}

/* Publicidade mobile */
.empregos-pub-mobile {
    margin: 25px 0;
}

/* Publicidade desktop na página de empregos */
.empregos-pub-desktop {
    margin: 15px 0;
}

/* ==================== FOOTER ==================== */
.site-footer { 
    background: #1a1a1a;
    color: #ccc;
    margin-top: 50px;
}

.footer-main {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 50px var(--spacing) 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-slogan {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.social-btn:hover {
    background: var(--brand-red);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--brand-red);
    display: inline-block;
}

.footer-col a {
    display: block;
    color: #999;
    font-size: 13px;
    padding: 6px 0;
    transition: all 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    background: #111;
    padding: 20px var(--spacing);
    text-align: center;
    font-size: 12px;
    color: #666;
}

.footer-bottom p {
    margin: 3px 0;
}

.footer-bottom a {
    color: var(--brand-red);
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==================== RESPONSIVIDADE ==================== */
@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 200px 1fr 300px;
        gap: 20px;
    }
    
    .search-box {
        width: 200px;
    }
    
    .bottom-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    body {
        overflow-x: hidden;
    }
    
    /* FIX: GRID MOBILE 100% de largura sem estouro */
    .main-grid { 
        display: grid;
        grid-template-columns: 100%;
        padding: 0 15px;
        margin-top: 100px; /* Volta para 100px - espaço do header+menu fixo */
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    /* Quando o banner superior existe, main-grid não precisa de margin */
    .main-grid.com-super-banner {
        margin-top: 0 !important;
    }
    
    .col-left { 
        display: none;
    }
    
    /* Col-right escondida no mobile (widgets estão no main) */
    .col-right {
        display: none;
    }
    
    /* Esconder título "Comércio Local" dos cards no mobile */
    main .mobile-only > .widget > .widget-header {
        display: none;
    }
    
    /* Widgets inline no mobile */
    .widgets-mobile-block {
        margin: 20px 0;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    .widgets-mobile-block .widget {
        margin-bottom: 15px;
    }
    
    /* Estilos dos widgets no mobile */
    .mobile-only .widget-header h3,
    .widgets-mobile-block .widget-header h3 {
        font-size: 16px;
    }
    
    .mobile-only .vagas-list li a,
    .widgets-mobile-block .vagas-list li a {
        padding: 10px 0;
    }
    
    .mobile-only .pets-grid,
    .widgets-mobile-block .pets-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .mobile-only .eventos-list li,
    .widgets-mobile-block .eventos-list li {
        padding: 10px;
        gap: 10px;
    }
    
    .mobile-only .evento-date,
    .widgets-mobile-block .evento-date {
        padding: 6px 10px;
        min-width: 42px;
    }
    
    .mobile-only .evento-dia,
    .widgets-mobile-block .evento-dia {
        font-size: 16px;
    }
    
    .mobile-only .evento-info a,
    .widgets-mobile-block .evento-info a {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .mobile-only .evento-local,
    .widgets-mobile-block .evento-local {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
    }
    
    .mobile-only .cinema-list li a,
    .widgets-mobile-block .cinema-list li a {
        padding: 8px 0;
    }
    
    /* Cotações: 3 colunas no mobile */
    .mobile-only .cotacoes-agro,
    .widgets-mobile-block .cotacoes-agro {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Espaçamento uniforme entre news-feed */
    .news-feed {
        margin-bottom: 15px;
    }
    
    .news-feed .news-card-horizontal {
        margin-bottom: 15px;
    }
    
    .news-feed .news-card-horizontal:last-child {
        margin-bottom: 0;
    }
    
    /* Página de Empregos - Mobile */
    .empregos-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .empregos-header h1 {
        font-size: 20px;
    }
    
    .vaga-item {
        padding: 15px;
    }
    
    .vaga-titulo {
        font-size: 15px;
    }
    
    .vaga-info-list {
        padding: 10px;
    }
    
    .vaga-info-item {
        font-size: 12px;
    }
    
    .vaga-btn-detalhes {
        padding: 11px 16px;
        font-size: 13px;
    }
    
    .vaga-btn-whatsapp,
    .vaga-btn-externo {
        padding: 10px 12px;
    }
    
    .vaga-btn-whatsapp .whats-titulo {
        font-size: 13px;
    }
    
    .vaga-btn-whatsapp .whats-numero {
        font-size: 11px;
    }
    
    .top-nav { 
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Header Mobile FIXO - FUNDO PRETO */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        width: 100%;
        max-width: 100vw;
        background: #1a1a1a; /* PRETO */
        border-bottom: none;
        box-shadow: none; /* Removendo sombra para colar perfeitamente */
        height: 45px;
        margin: 0;
        padding: 0;
    }
    
    .header-content {
        justify-content: center;
        padding: 8px 15px;
        gap: 0;
        width: 100%;
        max-width: 100%;
        height: 45px;
        margin: 0;
    }
    
    .logo-img {
        height: 18px !important; /* Logo MENOR */
        content: url('https://www.toledonews.com.br/assets/imgs/logo-mini.png');
        max-height: 18px !important;
    }
    
    .header-actions {
        display: none;
    }
    
    /* Breaking News escondida no topo do mobile */
    .breaking-news-bar {
        display: none;
    }
    
    /* Menu Mobile - CINZA ESCURO - VOLTA PARA POSIÇÃO ORIGINAL */
    .mobile-nav-wrapper {
        display: block;
        background: #2d2d2d; /* CINZA ESCURO */
        border-bottom: 1px solid #3a3a3a;
        border-top: none; /* Sem borda em cima */
        padding: 10px 0;
        overflow: hidden;
        position: fixed;
        top: 45px; /* Header 45px - POSIÇÃO ORIGINAL */
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        max-width: 100vw;
        margin: 0; /* Zero margin */
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    
    .mobile-nav {
        display: flex;
        gap: 10px;
        padding: 0 15px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .mobile-nav::-webkit-scrollbar {
        display: none;
    }
    
    .mobile-nav a {
        flex-shrink: 0;
        padding: 8px 14px;
        background: rgba(255, 255, 255, 0.08); /* Fundo semi-transparente */
        border-radius: 18px;
        font-size: 11px;
        font-weight: 600;
        color: #e0e0e0; /* Texto claro */
        text-transform: uppercase;
        white-space: nowrap;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav a:active {
        background: var(--brand-red);
        color: white;
        transform: scale(0.95);
        border-color: var(--brand-red);
    }
    
    .mobile-nav a.menu-all {
        background: var(--brand-red);
        color: white;
        border-color: var(--brand-red);
    }
    
    /* Ajustes de cards mobile */
    .featured-card {
        margin-bottom: 15px; /* Menos espaço antes da breaking */
    }
    
    .featured-card h1 {
        font-size: 20px;
    }
    
    .news-feed {
        gap: 15px;
    }
    
    .news-card-horizontal {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    
    .news-card-horizontal > a {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .news-card-horizontal .thumb {
        width: 100%;
        height: 200px;
        border-radius: var(--radius) var(--radius) 0 0;
    }
    
    .news-card-horizontal .thumb img {
        border-radius: var(--radius) var(--radius) 0 0;
    }
    
    .news-card-horizontal .info {
        padding: 15px;
        background: var(--bg-card);
        display: flex;
        flex-direction: column;
    }
    
    .news-card-horizontal h3 {
        font-size: 16px;
        margin-bottom: 8px;
        color: #222;
    }
    
    /* Esconder widget mobile duplicado - col-right agora aparece */
    .comercio-mobile-widget {
        display: none;
    }
    
    .bottom-news-grid { 
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }
    
    /* Cards verticais viram lista compacta no mobile */
    .card-vertical {
        display: flex;
        flex-direction: row;
        padding: 10px;
        min-height: auto;
    }
    
    .card-vertical .img-wrap {
        width: 90px;
        height: 90px;
        aspect-ratio: 1/1;
        flex-shrink: 0;
        border-radius: 6px;
        overflow: hidden;
    }
    
    .card-vertical .img-wrap img {
        border-radius: 6px;
    }
    
    .card-vertical .txt-wrap {
        padding: 0 0 0 12px;
        flex: 1;
    }
    
    .card-vertical h4 {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .card-vertical .meta-line {
        font-size: 11px;
        margin-top: auto;
    }
}

@media (max-width: 768px) {
    .main-grid {
        padding: 0 12px;
    }
    
    .header-content {
        padding: 0 12px;
    }
    
    .mobile-nav {
        padding: 0 12px;
    }
    
    .featured-card h1 {
        font-size: 18px;
    }
    
    .news-card-horizontal .thumb {
        height: 180px;
    }
    
    .bottom-news-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px 30px;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-col h4 {
        display: block;
        border-bottom: none;
        margin-bottom: 15px;
        padding-bottom: 0;
    }
    
    .footer-col a:hover {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .main-grid {
        margin-top: 100px; /* Mantém 100px - quando não tem banner */
        padding: 0 10px;
    }
    
    /* Quando o banner superior existe, main-grid não precisa de margin */
    .main-grid.com-super-banner {
        margin-top: 0 !important;
    }
    
    .header-content {
        padding: 0 10px;
    }
    
    .mobile-nav {
        padding: 0 10px;
    }
    
    .featured-card .content {
        padding: 15px;
    }
    
    .featured-card h1 {
        font-size: 20px;
    }
    
    .mobile-nav a {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .news-card-horizontal {
        padding: 0;
    }
    
    .news-card-horizontal .info {
        padding: 12px;
    }
}

/* ==================== ACESSIBILIDADE ==================== */
*:focus-visible {
    outline: 2px solid var(--brand-red);
    outline-offset: 2px;
}

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



/* =========================================================
   FIX DEFINITIVO - SCROLL HORIZONTAL MOBILE
   ========================================================= */

/* Blindagem geral */
@media (max-width: 992px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        position: relative;
    }

    main,
    .main-grid,
    .news-feed,
    .featured-card,
    .bottom-news-grid {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* =========================================================
   CARDS E IMAGENS - ANTI ESTOURO
   ========================================================= */

@media (max-width: 992px) {

    .news-card-horizontal,
    .news-card-horizontal *,
    .featured-card,
    .featured-card *,
    .card-vertical,
    .card-vertical * {
        max-width: 100%;
    }

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

/* =========================================================
   GRID MOBILE - GARANTIA
   ========================================================= */

@media (max-width: 992px) {
    .main-grid {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}



/* =========================================================
   MOBILE - HEADER PRETO E COMPACTO
   ========================================================= */
@media (max-width: 992px) {

    .main-header {
        background: #000;
        border-bottom: 1px solid #111;
        height: 50px; /* diminui altura */
    }

    .header-content {
        padding: 0 12px;
        height: 50px;
        align-items: center;
    }

    /* Logo menor e sem excesso de espaço */
    .logo-img {
        height: 30px;
        margin: 0;
        padding: 0;
    }
}



/* =========================================================
   MOBILE NAV - PRETO SOFISTICADO
   ========================================================= */
@media (max-width: 992px) {

    .mobile-nav-wrapper {
        background: #111;
        border-bottom: 1px solid #1a1a1a;
        padding: 8px 0;
    }

    .mobile-nav {
        padding: 0 12px;
    }

    .mobile-nav a {
        background: #1e1e1e;
        color: #e0e0e0;
        border: 1px solid #222;
        font-weight: 600;
    }

    .mobile-nav a.menu-all {
        background: var(--brand-red);
        color: #fff;
        border: none;
    }

    .mobile-nav a:active {
        background: var(--brand-red-dark);
        color: #fff;
        transform: scale(0.96);
    }
}

/* ==================== HOVER SUTIL ==================== */

/* Fix: Link dentro do card horizontal */
.news-card-horizontal > a {
    display: flex;
    gap: 15px;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

@media (max-width: 992px) {
    .news-card-horizontal > a {
        flex-direction: column;
        gap: 0;
    }
}

/* Link na manchete */
.featured-card > a {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Hover - blur leve na imagem */
.news-card-horizontal .thumb img,
.featured-card img,
.card-vertical .img-wrap img {
    transition: filter 0.2s ease;
}

.news-card-horizontal:hover .thumb img,
.featured-card:hover img,
.card-vertical:hover .img-wrap img {
    filter: brightness(0.92);
}

/* Hover - cor do título */
.news-card-horizontal h3,
.featured-card h1,
.card-vertical h4 {
    transition: color 0.2s ease;
}

.news-card-horizontal:hover h3,
.featured-card:hover h1,
.card-vertical:hover h4 {
    color: #555;
}

/* Footer Tablet */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}