/*
Theme Name: Jornal Falando Serio
Author: Seu Nome
Version: 1.0
*/
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f4f4f4;
    color: #111;
}
/* CONTAINER */
.container {
    width: 1200px;
    max-width: 95%;
    margin: 30px auto;
}
/* MANCHETE */
.manchete-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.manchete-box img {
    width: 100%;
    height: auto;
    display: block;
}

.manchete-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
}

.manchete-overlay h2 {
    font-size: 32px;
    margin: 0;
}

.manchete-overlay a {
    color: #fff;
    text-decoration: none;
}

.manchete-sem-imagem {
    background: #c40000;
    color: #fff;
    padding: 60px 40px;
}

.manchete-sem-imagem h2 {
    font-size: 32px;
    margin: 0 0 15px;
}

.manchete-sem-imagem a {
    color: #fff;
    text-decoration: none;
}
.mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.mini-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.mini-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.mini-card h3 {
    font-size: 16px;
    padding: 15px;
    margin: 0;
}

.mini-card a {
    text-decoration: none;
    color: #111;
}

.mini-card:hover {
    transform: translateY(-5px);
}
@media(max-width: 1024px) {
    .mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .mini-grid {
        grid-template-columns: 1fr;
    }
}

/* GRID */
.grid-principal {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}
.col-esquerda {
    flex: 2;
}
.sidebar {
    flex: 1;
}
/* SEÇÕES */
.secao-titulo {
    border-left: 5px solid #c40000;
    padding-left: 10px;
    margin: 40px 0 15px;
    font-size: 20px;
}
.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.card img {
    border-radius: 6px;
}

.card h4 {
    font-size: 18px;
    font-weight: 700;
}

.card:hover {
    transform: translateY(-6px);
}
/* SIDEBAR */
.widget {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.widget h3 {
    border-left: 4px solid #c40000;
    padding-left: 10px;
}
/* RESPONSIVO */
@media(max-width: 1000px) {
    .grid-principal {
        flex-direction: column;
    }
}

.topo {
    background: #c40000;
    padding: 20px 0;
    width: 100%;
}


/* TOPBAR PRETA */
.topbar {
    background: #111;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.topbar-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.top-links a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}
.top-links a:hover {
    text-decoration: underline;
}
    .manchete-box {
        
    position: relative;
}
.manchete-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.manchete-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.manchete-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
}

.manchete-overlay h2 {
    font-size: 36px;
    font-weight: 900;
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    z-index: 9999;
}
.site-footer {
    background: #c40000 !important;
    color: #ffffff !important;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    clear: both;
}
body {
    display: block;
}

.footer-container {
    width: 1000px;
    max-width: 95%;
    margin: 0 auto;
}

.footer-container p {
    margin: 0;
    white-space: nowrap;
}

footer.site-footer {
    background: #c40000 !important;
    color: #fff !important;
    padding: 15px 0 !important;
    text-align: center !important;
}
.breaking-news {
    background: #000;
    color: #fff;
    overflow: hidden;
}

.breaking-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
}

.breaking-label {
    background: #c40000;
    padding: 10px 15px;
    font-weight: bold;
    margin-right: 20px;
}

.breaking-scroll {
    overflow: hidden;
}

.breaking-track {
    display: inline-flex;
    gap: 40px;
    white-space: nowrap;
    animation: scrollNoticias 30s linear infinite;
}

.breaking-track a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.breaking-track a:hover {
    text-decoration: underline;
}

.breaking-scroll:hover .breaking-track {
    animation-play-state: paused;
}

@keyframes scrollNoticias {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.menu-bar {
    background: #b30000;
    border-top: 3px solid #8f0000;
    border-bottom: 3px solid #8f0000;
}

.menu-lista {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    width: 1200px;
    max-width: 95%;
}

.menu-lista li {
    margin: 0;
}

.menu-lista a {
    display: block;
    padding: 14px 0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.menu-lista a:hover {
    opacity: 0.75;
}
/* FORÇA MENU HORIZONTAL DEFINITIVO */

nav.menu-bar ul {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    margin: 0 auto !important;
    padding: 0 !important;
    gap: 30px !important;
    width: 1200px !important;
    max-width: 95% !important;
}

nav.menu-bar li {
    display: block !important;
    margin: 0 !important;
}

nav.menu-bar a {
    display: block !important;
    padding: 14px 0 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

nav.menu-bar {
    background: #c40000 !important;
    border-top: 3px solid #8f0000 !important;
    border-bottom: 3px solid #8f0000 !important;
}
.menu-bar {
    background: #b30000;
    width: 100%;
}

.menu-bar ul {
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
}

/* HEADER ESTRUTURA CORRETA */

.topo-container {
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topo-esquerda {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.logo-wrap img {
    height: 70px;
    width: auto;
    display: block;
}
.logo-area img {
    max-height: 70px;
    transition: 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-title {
    margin: 0;
    font-size: 30px;
    font-weight: 900;
    color: #fff;
}

.slogan {
    font-size: 13px;
    color: #ffeaea;
    margin-top: 4px;
}

.topo-direita {
    display: flex;
    align-items: center;
}
/* FIXAR TODO O TOPO */

.header-geral {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Compensação do espaço do header fixo */
body {
    padding-top: 220px;
}
/* HEADER REDUZIDO AO ROLAR */

.header-geral.shrink .topo {
    padding: 10px 0;
    transition: 0.3s ease;
}

.header-geral.shrink .logo-area img {
    max-height: 45px;
    transition: 0.3s ease;
}

.header-geral.shrink .logo-area h1 {
    font-size: 22px;
    transition: 0.3s ease;
}
/* CAPA IMPACTO */

.capa-impacto {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.manchete-principal {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.manchete-principal img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.overlay-principal {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.overlay-principal h2 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.overlay-principal a {
    color: #fff;
    text-decoration: none;
}

.secundarias {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.noticia-secundaria {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.noticia-secundaria img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.noticia-secundaria h3 {
    font-size: 18px;
    padding: 15px;
    margin: 0;
}

.noticia-secundaria a {
    text-decoration: none;
    color: #111;
}
.categoria-destaque {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    font-weight: 900;
    padding: 6px 12px;
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.selo {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selo.urgente {
    background: #ff0000;
    animation: piscar 1s infinite;
}

.selo.exclusivo {
    background: #000;
}

@keyframes piscar {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}
.mais-lidas {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.mais-lidas h3 {
    border-left: 5px solid #c40000;
    padding-left: 10px;
    font-size: 18px;
    margin-bottom: 15px;
}

.item-mais-lida {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.item-mais-lida a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
}

.item-mais-lida a:hover {
    color: #c40000;
}
.titulo-em-alta {
    border-left: 5px solid #c40000;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
}

/* RANKING ESTILO IMPACTO */

.ranking-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
    transition: 0.3s ease;
}

.ranking-item:hover {
    transform: translateX(6px);
}

.ranking-numero {
    font-size: 32px;
    font-weight: 900;
    color: #c40000;
    min-width: 35px;
    transition: 0.3s ease;
}

.ranking-item:hover .ranking-numero {
    color: #000;
}

.ranking-conteudo a {
    text-decoration: none;
    color: #111;
    font-weight: 800;
    display: block;
    transition: 0.3s ease;
}

.ranking-item:hover .ranking-conteudo a {
    color: #c40000;
}

.ranking-views {
    font-size: 12px;
    color: #777;
    display: block;
    margin-top: 5px;
}
.banner-topo {
    width: 1200px;
    max-width: 95%;
    margin: 20px auto;
    text-align: center;
}

.banner-topo img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}
.banner-lateral {
    margin-bottom: 25px;
    text-align: center;
}

.banner-lateral img {
    width: 100%;
    border-radius: 6px;
}
.banner-interno {
    margin: 30px 0;
    text-align: center;
}

.banner-interno img {
    max-width: 100%;
    border-radius: 6px;
}
.materia-container {
    width: 800px;
    max-width: 95%;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.materia-categoria {
    color: #c40000;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
}

.materia-titulo {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

.materia-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 25px;
}

.materia-imagem img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 25px;
}

.materia-conteudo p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.leia-tambem {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.leia-tambem h3 {
    font-size: 20px;
    font-weight: 900;
    border-left: 5px solid #c40000;
    padding-left: 10px;
    margin-bottom: 20px;
}

.leia-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.leia-thumb img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.leia-info a {
    text-decoration: none;
    font-weight: 700;
    color: #111;
    transition: 0.3s ease;
}

.leia-info a:hover {
    color: #c40000;
}
.compartilhar-whatsapp {
    margin: 20px 0;
}

.compartilhar-whatsapp a {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.compartilhar-whatsapp a:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}
.bloco-compartilhar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
    align-items: center;
}

.compartilhar-label {
    font-weight: 700;
    margin-right: 10px;
}

.btn-share {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 14px;
}

.btn-share.whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-share.facebook {
    background: #1877F2;
    color: #fff;
}

.btn-share.copiar-link {
    background: #111;
    color: #fff;
}

.btn-share:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.share-flutuante {
    position: fixed;
    top: 40%;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.flutuante {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.flutuante.whatsapp {
    background: #25D366;
}

.flutuante.facebook {
    background: #1877F2;
}

.flutuante:hover {
    transform: scale(1.1);
}
.contador-share {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}
.page-id-jornalfalandoserio.com.br/anuncie-conosco/ {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.site-footer {
    background: #c40000 !important;
    color: #fff !important;
}

.links-rodape a {
    color: #111 !important;
}
.bloco-tv {
    background: linear-gradient(135deg, #000, #222);
    color: #fff;
    padding: 50px 0;
    margin: 50px 0;
}

.tv-container {
    width: 1200px;
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
}

.tv-texto h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}

.tv-texto p {
    font-size: 16px;
    margin-bottom: 25px;
}

.btn-tv {
    display: inline-block;
    background: #c40000;
    color: #fff;
    padding: 14px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-tv:hover {
    background: #a00000;
}
.contador-tv {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #c40000;
}
/* SIDEBAR TV PREMIUM */

.widget-tv-premium {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 35px;
    padding-bottom: 20px;
}

.tv-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px;
    border-bottom: 1px solid #eee;
}

.tv-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.ao-vivo-badge {
    background: #c40000;
    color: #fff;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
}

.tv-video iframe {
    width: 100%;
    height: 200px;
    display: block;
}

.tv-info {
    padding: 12px 18px;
    font-size: 14px;
    color: #666;
}

.tv-viewers strong {
    color: #c40000;
}

.tv-btn {
    display: block;
    margin: 0 18px;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.tv-btn:hover {
    background: #c40000;
}

.tv-box {
    background: #111;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.tv-header {
    background: #c40000;
    padding: 12px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

.tv-live-dot {
    height: 10px;
    width: 10px;
    background: #00ff00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: piscar 1s infinite;
}

@keyframes piscar {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.tv-video {
    background: #000;
}

.tv-contador {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    background: #1a1a1a;
}

.tv-patrocinador {
    background: #222;
    text-align: center;
    padding: 15px;
    border-top: 1px solid #333;
}

.tv-patrocinador span {
    font-size: 11px;
    letter-spacing: 1px;
    color: #aaa;
}

.patrocinador-nome {
    font-size: 16px;
    font-weight: 900;
    margin-top: 5px;
    color: #00ff88;
}
.hero-premium {
    width: 1200px;
    max-width: 95%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.hero-principal {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.hero-principal img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
}

.hero-overlay h2 {
    font-size: 36px;
    font-weight: 900;
    margin: 0;
}

.hero-secundario {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sec-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sec-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.sec-card h3 {
    font-size: 15px;
    padding: 10px;
}

.sec-card:hover {
    transform: translateY(-4px);
}
.bloco-editoria {
    width: 1200px;
    max-width: 95%;
    margin: 50px auto;
}

.editoria-titulo {
    font-size: 22px;
    padding-left: 10px;
    margin-bottom: 20px;
    font-weight: 900;
}

.editoria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.editoria-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.editoria-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.editoria-card h3 {
    font-size: 15px;
    padding: 12px;
    margin: 0;
}

.editoria-card:hover {
    transform: translateY(-5px);
}
/* POLÍCIA */
.policia-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* ===== BLOCO POLÍCIA ===== */

.editoria-titulo {
    color: #000 !important;
    border: none !important;
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 20px 0;
}

.policia-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.policia-principal {
    position: relative;
}

.policia-principal img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.overlay-titulo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.overlay-titulo h3 {
    margin: 0;
    font-size: 18px;
}

.overlay-titulo h3 a {
    color: #fff !important;
    text-decoration: none;
}

.policia-secundarias {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.policia-secundaria img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}

.policia-secundaria h4 {
    margin: 5px 0 0 0;
    font-size: 14px;
}

.policia-secundaria a {
    color: #000 !important;
    text-decoration: none;
}


/* ESPORTE */
.esporte-layout {
    display: block;
}

.esporte-principal {
    position: relative;
    margin-bottom: 20px;
}

.esporte-principal img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
}

.esporte-secundaria {
    width: 32%;
    display: inline-block;
    vertical-align: top;
}

.esporte-secundaria img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

/* ===== ESPORTE ===== */

.esporte-layout {
    margin-bottom: 30px;
}

.esporte-principal {
    position: relative;
    margin-bottom: 20px;
}

.esporte-principal img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.esporte-secundaria {
    display: inline-block;
    width: 31%;
    margin-right: 1%;
    vertical-align: top;
}

.esporte-secundaria img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.esporte-secundaria h4 {
    font-size: 14px;
    margin: 5px 0 0 0;
}

.esporte-secundaria a {
    color: #000 !important;
    text-decoration: none;
}

.banner-home {
    text-align: center;
    margin: 40px 0;
}
.editoria-titulo {
    color: #000 !important;
    border: none !important;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
}
/* ===== COMUNIDADE PREMIUM ===== */

.comunidade-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.comunidade-principal {
    position: relative;
}

.comunidade-principal img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.overlay-titulo {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.overlay-titulo h3 {
    margin: 0;
    font-size: 18px;
}

.overlay-titulo a {
    color: #fff !important;
    text-decoration: none;
}

.comunidade-secundarias {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comunidade-secundaria img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}

.comunidade-secundaria h4 {
    margin: 5px 0 0 0;
    font-size: 14px;
}

.comunidade-secundaria a {
    color: #000 !important;
    text-decoration: none;
}
