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

  :root {
    --vermelho: #c0392b;
    --vermelho-hover: #a93226;
    --dourado: #ffd700;
    --texto: #1a1a1a;
    --texto-sec: #555;
    --texto-ter: #999;
    --borda: #e5e5e5;
    --fundo: #f4f4f4;
    --branco: #fff;
    --max: 1400px;
    --pad: 20px;
  }

  body { font-family: 'Georgia', serif; background: var(--fundo); color: var(--texto); }
  a { text-decoration: none; color: inherit; }

  /* ===== HEADER ===== */
  .header { background: var(--vermelho); }
  .header-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
  .header-top { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; }
  .logo { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -0.5px; font-family: 'Georgia', serif; }
  .logo span { color: var(--dourado); }
  .header-date { font-size: 12px; color: rgba(255,255,255,0.7); font-family: Arial, sans-serif; }

  /* Hamburger button */
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #fff;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }
  .hamburger span {
    display: block; width: 22px; height: 2px;
    background: #fff; margin: 4px 0;
    transition: all 0.25s;
  }

  /* Nav desktop */
  .nav { border-top: 1px solid rgba(255,255,255,0.2); display: flex; flex-wrap: wrap; overflow-x: auto; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { color: rgba(255,255,255,0.92); font-size: 13px; padding: 11px 15px; display: block; font-family: Arial, sans-serif; font-weight: 600; letter-spacing: 0.3px; transition: background 0.2s; white-space: nowrap; min-height: 44px; display: flex; align-items: center; }
  .nav a:hover { background: rgba(255,255,255,0.15); }

  /* Mobile drawer */
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 300;
    opacity: 0; transition: opacity 0.25s;
  }
  .nav-overlay.open { opacity: 1; }

  .nav-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 80%; max-width: 300px;
    height: 100vh;
    background: var(--vermelho);
    z-index: 301;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    display: flex; flex-direction: column;
    overflow-y: auto;
    padding-top: env(safe-area-inset-top);
  }
  .nav-drawer.open { transform: translateX(0); }

  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
  .drawer-logo { font-size: 20px; font-weight: 700; color: #fff; font-family: 'Georgia', serif; }
  .drawer-logo span { color: var(--dourado); }
  .drawer-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 4px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .drawer-nav { padding: 12px 0; }
  .drawer-nav a { display: flex; align-items: center; padding: 14px 20px; color: rgba(255,255,255,0.92); font-family: Arial, sans-serif; font-weight: 600; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); min-height: 52px; }
  .drawer-nav a:active { background: rgba(255,255,255,0.1); }

  /* Breaking news ticker */
  .ticker-bar {
    background: #1a1a1a;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 34px;
  }
  .ticker-label {
    background: var(--vermelho);
    padding: 0 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 10px;
    height: 100%;
    display: flex; align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .ticker-track { overflow: hidden; flex: 1; }
  .ticker-inner { display: flex; gap: 60px; animation: ticker 30s linear infinite; white-space: nowrap; padding: 0 16px; }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .ticker-inner:hover { animation-play-state: paused; }
  .ticker-item { color: rgba(255,255,255,0.85); }
  .ticker-sep { color: var(--dourado); }

  /* ===== BANNER — responsivo ===== */
  .banner-wrap { max-width: var(--max); margin: 14px auto; padding: 0 var(--pad); }
  .banner-slot {
    background: #e8e8e8;
    border: 1.5px dashed #bbb;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 4px;
    color: #999; font-size: 11px; text-align: center;
    font-family: Arial, sans-serif;
    width: 100%; min-height: 80px;
  }
  .banner-slot .label { background: #d5d5d5; padding: 2px 10px; border-radius: 2px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #888; }
  /* AdSense responsivo — NÃO usar width/height fixos */
  .adsense-responsive { display: block; width: 100%; }

  /* ===== HIGHLIGHTS ===== */
  .highlights-outer { max-width: var(--max); margin: 0 auto; }
  .highlights-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: repeat(4, 120px);
    gap: 3px;
  }
  .hl-main { grid-row: 1 / 5; position: relative; display: flex; align-items: flex-end; overflow: hidden; min-height: 480px; }
  .hl-side { position: relative; display: flex; align-items: flex-end; overflow: hidden; }
  .hl-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s ease; }
  .hl-main:hover .hl-img, .hl-side:hover .hl-img { transform: scale(1.04); }
  .hl-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .hl-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 55%, transparent 100%); }
  .hl-info { position: relative; z-index: 1; padding: 20px; color: #fff; width: 100%; }
  .hl-side-info { position: relative; z-index: 1; padding: 10px 12px; color: #fff; width: 100%; }
  .hl-tag { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 3px; display: inline-block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.6px; color: #fff; font-family: Arial, sans-serif; }
  .hl-main-title { font-size: 22px; font-weight: 700; line-height: 1.35; color: #fff; max-width: 600px; font-family: 'Georgia', serif; }
  .hl-side-title { font-size: 12px; font-weight: 700; line-height: 1.35; color: #fff; font-family: Arial, sans-serif; }
  .hl-time { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 6px; font-family: Arial, sans-serif; }

  /* Placeholder gradients */
  .bg-1 { background: linear-gradient(160deg, #3d0c5e, #1a3a5c); }
  .bg-2 { background: linear-gradient(135deg, #1a5276, #2471a3); }
  .bg-3 { background: linear-gradient(135deg, #6e2f0e, #c0392b); }
  .bg-4 { background: linear-gradient(135deg, #1b5e20, #27ae60); }
  .bg-5 { background: linear-gradient(135deg, #4a0e4e, #8e44ad); }
  .bg-6 { background: linear-gradient(135deg, #8e44ad, #3498db); }
  .bg-7 { background: linear-gradient(135deg, #27ae60, #1abc9c); }
  .bg-8 { background: linear-gradient(135deg, #e74c3c, #c0392b); }
  .bg-9 { background: linear-gradient(135deg, #e67e22, #f39c12); }
  .bg-10 { background: linear-gradient(135deg, #2980b9, #1a6aa0); }

  /* ===== LAYOUT PRINCIPAL ===== */
  .page-body { max-width: var(--max); margin: 0 auto; padding: 20px var(--pad); }
  .main-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; }

  /* ===== SEÇÃO ===== */
  .section-title { font-size: 14px; font-weight: 700; color: var(--texto); border-left: 3px solid var(--vermelho); padding-left: 10px; margin-bottom: 14px; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }

  /* ===== LISTA DE NOTÍCIAS ===== */
  .list-news { background: var(--branco); border-radius: 8px; border: 1px solid var(--borda); overflow: hidden; margin-bottom: 20px; }
  .list-item { display: flex; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--borda); align-items: flex-start; transition: background 0.15s; min-height: 44px; }
  .list-item:last-child { border-bottom: none; }
  .list-item:hover { background: #fafafa; }
  .list-item:active { background: #f5f5f5; }
  .list-thumb { width: 90px; height: 68px; border-radius: 6px; flex: 0 0 90px; overflow: hidden; }
  .list-thumb div, .list-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .list-body { flex: 1; min-width: 0; }
  .list-tag { font-size: 10px; font-weight: 700; color: var(--vermelho); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; font-family: Arial, sans-serif; }
  .list-title { font-size: 14px; font-weight: 700; color: var(--texto); line-height: 1.4; font-family: Arial, sans-serif; }
  .list-time { font-size: 11px; color: var(--texto-ter); margin-top: 4px; font-family: Arial, sans-serif; }

  /* ===== MAIS LIDAS ===== */
  .mais-lidas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
  .ml-card { border-radius: 10px; overflow: hidden; position: relative; min-height: 150px; display: flex; align-items: flex-end; }
  .ml-card .hl-img { transition: transform 0.4s ease; }
  .ml-card:hover .hl-img { transform: scale(1.05); }
  .ml-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.1) 60%, transparent); }
  .ml-info { position: relative; z-index: 1; padding: 12px; color: #fff; width: 100%; }
  .ml-tag { font-size: 10px; background: var(--vermelho); color: #fff; padding: 2px 8px; border-radius: 3px; display: inline-block; margin-bottom: 5px; text-transform: uppercase; font-weight: 700; font-family: Arial, sans-serif; letter-spacing: 0.4px; }
  .ml-title { font-size: 13px; font-weight: 700; line-height: 1.4; color: #fff; font-family: Arial, sans-serif; }

  /* ===== SIDEBAR ===== */
  .sidebar-sticky { position: sticky; top: 16px; }
  .sidebar-widget { background: var(--branco); border: 1px solid var(--borda); border-radius: 10px; padding: 16px; margin-bottom: 16px; }
  .hot-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--borda); align-items: flex-start; min-height: 44px; }
  .hot-item:last-child { border-bottom: none; }
  .hot-num { font-size: 20px; font-weight: 700; color: #ddd; min-width: 28px; line-height: 1.1; font-family: Arial, sans-serif; }
  .hot-title { font-size: 13px; font-weight: 600; color: var(--texto); line-height: 1.4; font-family: Arial, sans-serif; }
  .hot-item:hover .hot-title { color: var(--vermelho); }

  /* ===== FOOTER ===== */
  .footer { background: #1a1a1a; color: #aaa; padding: 28px var(--pad); text-align: center; font-size: 13px; margin-top: 36px; font-family: Arial, sans-serif; }
  .footer-logo { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; font-family: 'Georgia', serif; }
  .footer-logo span { color: var(--dourado); }
  .footer-links { display: flex; justify-content: center; gap: 16px; margin: 10px 0; flex-wrap: wrap; }
  .footer-links a { color: #888; font-size: 12px; padding: 4px 0; min-height: 44px; display: flex; align-items: center; }
  .footer-links a:hover { color: #ccc; }
  .footer-copy { font-size: 11px; color: #666; }

  /* ===== SKELETON LOADER ===== */
  @keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }
  .skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 800px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .main-grid { grid-template-columns: 1fr 280px; gap: 20px; }
  }

  @media (max-width: 900px) {
    .main-grid { grid-template-columns: 1fr; }
    .sidebar-sticky { position: static; }
    .highlights-grid { grid-template-columns: 1fr; grid-template-rows: 280px repeat(4, 90px); }
    .hl-main { grid-row: 1; min-height: 280px; }
  }

  @media (max-width: 768px) {
    :root { --pad: 14px; }
    .hamburger { display: inline-flex; }
    .nav-overlay { display: block; pointer-events: none; }
    .nav-overlay.open { pointer-events: all; }
    .header-date { display: none; }
    .nav { display: none; }
    .highlights-grid { grid-template-rows: 250px repeat(4, 80px); }
    .hl-main-title { font-size: 18px; }
    .mais-lidas-grid { grid-template-columns: 1fr 1fr; }
    .list-thumb { width: 80px; flex: 0 0 80px; height: 60px; }
    .logo { font-size: 22px; }
  }

  @media (max-width: 480px) {
    .highlights-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 200px 90px 90px;
    }
    .hl-main { grid-row: 1; grid-column: 1 / -1; min-height: 200px; }
    .hl-main-title { font-size: 16px; }
    .hl-side-title { font-size: 11px; }
    .mais-lidas-grid { grid-template-columns: 1fr; }
    .ml-card { min-height: 130px; }
    .ticker-bar { font-size: 11px; }
    .list-title { font-size: 13px; }
  }


/* === ARTIGO === */

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

  :root {
    --vermelho: #c0392b;
    --vermelho-hover: #a93226;
    --dourado: #ffd700;
    --texto: #1a1a1a;
    --texto-sec: #444;
    --texto-ter: #999;
    --borda: #e5e5e5;
    --fundo: #f4f4f4;
    --branco: #fff;
    --max: 1400px;
    --pad: 20px;
  }

  body { font-family: 'Georgia', serif; background: var(--fundo); color: var(--texto); }
  a { text-decoration: none; color: inherit; }

  /* ===== HEADER ===== */
  .header { background: var(--vermelho); }
  .header-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
  .header-top { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; gap: 10px; }
  .logo { font-size: 24px; font-weight: 700; color: #fff; letter-spacing: -0.5px; font-family: 'Georgia', serif; }
  .logo span { color: var(--dourado); }
  .header-date { font-size: 12px; color: rgba(255,255,255,0.7); font-family: Arial, sans-serif; }

  .hamburger {
    display: none;
    background: none; border: none;
    cursor: pointer; padding: 8px;
    color: #fff; border-radius: 6px;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }
  .hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: all 0.25s; }

  .nav { border-top: 1px solid rgba(255,255,255,0.2); display: flex; flex-wrap: wrap; overflow-x: auto; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { color: rgba(255,255,255,0.92); font-size: 13px; padding: 11px 15px; display: flex; align-items: center; font-family: Arial, sans-serif; font-weight: 600; letter-spacing: 0.3px; transition: background 0.2s; white-space: nowrap; min-height: 44px; }
  .nav a:hover { background: rgba(255,255,255,0.15); }

  /* Drawer mobile */
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 300; opacity: 0; transition: opacity 0.25s; }
  .nav-overlay.open { opacity: 1; }
  .nav-drawer { position: fixed; top: 0; right: 0; width: 80%; max-width: 300px; height: 100vh; background: var(--vermelho); z-index: 301; transform: translateX(100%); transition: transform 0.25s ease; display: flex; flex-direction: column; overflow-y: auto; }
  .nav-drawer.open { transform: translateX(0); }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .drawer-logo { font-size: 20px; font-weight: 700; color: #fff; font-family: 'Georgia', serif; }
  .drawer-logo span { color: var(--dourado); }
  .drawer-close { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .drawer-nav a { display: flex; align-items: center; padding: 14px 20px; color: rgba(255,255,255,0.92); font-family: Arial, sans-serif; font-weight: 600; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); min-height: 52px; }
  .drawer-nav a:active { background: rgba(255,255,255,0.1); }

  /* ===== BANNER ===== */
  .banner-slot { background: #e8e8e8; border: 1.5px dashed #bbb; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 4px; color: #999; font-size: 11px; text-align: center; font-family: Arial, sans-serif; width: 100%; min-height: 80px; }
  .banner-slot .label { background: #d5d5d5; padding: 2px 10px; border-radius: 2px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #888; }
  .adsense-responsive { display: block; width: 100%; }

  /* ===== CORPO ===== */
  .page-wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

  /* ===== BREADCRUMB ===== */
  .breadcrumb { display: flex; align-items: center; gap: 6px; padding: 12px 0 8px; font-size: 12px; color: var(--texto-ter); font-family: Arial, sans-serif; flex-wrap: wrap; }
  .breadcrumb a { color: var(--texto-sec); min-height: 32px; display: flex; align-items: center; }
  .breadcrumb a:hover { color: var(--vermelho); }

  /* ===== GRID ARTIGO ===== */
  .article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; padding: 0 0 36px; }

  /* ===== ARTIGO ===== */
  .article-col { background: var(--branco); border-radius: 10px; border: 1px solid var(--borda); overflow: hidden; }
  .article-inner { padding: 24px 28px; }

  .article-tag { font-size: 11px; font-weight: 700; background: var(--vermelho); color: #fff; padding: 4px 12px; border-radius: 3px; display: inline-block; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px; font-family: Arial, sans-serif; }
  .article-h1 { font-size: 28px; font-weight: 700; color: var(--texto); line-height: 1.3; margin-bottom: 12px; font-family: 'Georgia', serif; }
  .article-deck { font-size: 16px; color: var(--texto-sec); line-height: 1.65; margin-bottom: 16px; border-left: 3px solid var(--vermelho); padding-left: 14px; font-family: Arial, sans-serif; }

  /* Meta */
  .article-meta { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda); margin-bottom: 20px; flex-wrap: wrap; }
  .avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #c0392b, #8e44ad); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700; flex: 0 0 36px; font-family: Arial, sans-serif; }
  .meta-author { font-size: 13px; font-weight: 700; color: var(--texto); font-family: Arial, sans-serif; }
  .meta-time { font-size: 11px; color: var(--texto-ter); font-family: Arial, sans-serif; }

  /* Botões de share — grandes para mobile */
  .share-btns { display: flex; gap: 7px; margin-left: auto; flex-wrap: wrap; }
  .share-btn { font-size: 13px; font-weight: 700; padding: 10px 16px; border-radius: 6px; border: none; cursor: pointer; color: #fff; font-family: Arial, sans-serif; transition: opacity 0.2s; min-height: 44px; -webkit-tap-highlight-color: transparent; display: flex; align-items: center; gap: 5px; }
  .share-btn:hover { opacity: 0.85; }
  .btn-fb { background: #1877f2; }
  .btn-wpp { background: #25d366; }
  .btn-tw { background: #000; }

  /* Hero image */
  .hero-img { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #3d0c5e, #1a3a5c); margin-bottom: 8px; overflow: hidden; }
  .hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-placeholder { color: rgba(255,255,255,0.3); font-size: 48px; }
  .hero-caption { font-size: 12px; color: var(--texto-ter); margin-bottom: 20px; font-style: italic; font-family: Arial, sans-serif; }

  /* Corpo do artigo */
  .article-body { font-size: 17px; color: var(--texto-sec); line-height: 1.85; font-family: Arial, sans-serif; }
  .article-body p { margin-bottom: 18px; }
  .article-body h2 { font-size: 21px; font-weight: 700; color: var(--texto); margin: 28px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--borda); font-family: 'Georgia', serif; }
  .article-body strong { color: var(--texto); font-weight: 700; }
  .article-body blockquote { border-left: 3px solid var(--vermelho); padding: 14px 18px; background: #fdf5f5; border-radius: 0 8px 8px 0; margin: 22px 0; font-size: 16px; color: var(--texto-sec); line-height: 1.7; font-style: italic; }

  /* Banner inline */
  .banner-in-article { margin: 24px 0; }

  /* Tags */
  .tags-area { display: flex; flex-wrap: wrap; gap: 7px; margin: 22px 0; padding: 16px 0; border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda); font-family: Arial, sans-serif; align-items: center; }
  .tags-label { font-size: 12px; font-weight: 700; color: var(--texto-ter); text-transform: uppercase; letter-spacing: 0.5px; }
  .tag-pill { font-size: 12px; padding: 7px 14px; border-radius: 20px; border: 1px solid var(--borda); color: var(--texto-sec); cursor: pointer; transition: all 0.15s; min-height: 36px; display: flex; align-items: center; -webkit-tap-highlight-color: transparent; }
  .tag-pill:hover { background: var(--vermelho); color: #fff; border-color: var(--vermelho); }

  /* Relacionadas */
  .section-title { font-size: 14px; font-weight: 700; color: var(--texto); border-left: 3px solid var(--vermelho); padding-left: 10px; margin-bottom: 14px; font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.5px; }
  .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
  .rel-card { border-radius: 8px; overflow: hidden; border: 1px solid var(--borda); transition: transform 0.2s; }
  .rel-card:hover { transform: translateY(-2px); }
  .rel-img { aspect-ratio: 16/9; position: relative; overflow: hidden; }
  .rel-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .rel-img img { width: 100%; height: 100%; object-fit: cover; }
  .rel-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
  .rel-tag { font-size: 10px; background: var(--vermelho); color: #fff; padding: 2px 7px; border-radius: 2px; position: absolute; top: 8px; left: 8px; font-weight: 700; font-family: Arial, sans-serif; text-transform: uppercase; }
  .rel-body { padding: 10px 12px; background: var(--branco); }
  .rel-title { font-size: 13px; font-weight: 700; color: var(--texto); line-height: 1.4; font-family: Arial, sans-serif; }

  /* Comentários */
  .comments-area { background: #fafafa; border: 1px solid var(--borda); border-radius: 8px; padding: 20px; font-family: Arial, sans-serif; }
  .comments-placeholder { text-align: center; color: var(--texto-ter); font-size: 13px; padding: 16px 0; }

  /* ===== SIDEBAR ===== */
  .sidebar-sticky { position: sticky; top: 16px; }
  .sidebar-widget { background: var(--branco); border: 1px solid var(--borda); border-radius: 10px; padding: 16px; margin-bottom: 16px; }
  .hot-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--borda); align-items: flex-start; min-height: 44px; }
  .hot-item:last-child { border-bottom: none; }
  .hot-num { font-size: 20px; font-weight: 700; color: #ddd; min-width: 28px; line-height: 1.1; font-family: Arial, sans-serif; }
  .hot-title { font-size: 13px; font-weight: 600; color: var(--texto); line-height: 1.4; font-family: Arial, sans-serif; }
  .hot-item:hover .hot-title { color: var(--vermelho); }

  /* Gradients */
  .bg-1 { background: linear-gradient(160deg, #3d0c5e, #1a3a5c); }
  .bg-2 { background: linear-gradient(135deg, #1a5276, #2471a3); }
  .bg-3 { background: linear-gradient(135deg, #6e2f0e, #c0392b); }
  .bg-4 { background: linear-gradient(135deg, #1b5e20, #27ae60); }
  .bg-5 { background: linear-gradient(135deg, #4a0e4e, #8e44ad); }

  /* ===== FOOTER ===== */
  .footer { background: #1a1a1a; color: #aaa; padding: 28px var(--pad); text-align: center; font-size: 13px; margin-top: 36px; font-family: Arial, sans-serif; }
  .footer-logo { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; font-family: 'Georgia', serif; }
  .footer-logo span { color: var(--dourado); }
  .footer-links { display: flex; justify-content: center; gap: 16px; margin: 10px 0; flex-wrap: wrap; }
  .footer-links a { color: #888; font-size: 12px; min-height: 44px; display: flex; align-items: center; }
  .footer-links a:hover { color: #ccc; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    .article-grid { grid-template-columns: 1fr; }
    .sidebar-sticky { position: static; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .article-h1 { font-size: 24px; }
  }

  @media (max-width: 768px) {
    :root { --pad: 14px; }
    .hamburger { display: inline-flex; }
    .nav-overlay { display: block; pointer-events: none; }
    .nav-overlay.open { pointer-events: all; }
    .header-date { display: none; }
    .nav { display: none; }
    .article-inner { padding: 18px 16px; }
    .article-h1 { font-size: 22px; }
    .share-btns { margin-left: 0; width: 100%; }
    .share-btn { flex: 1; justify-content: center; }
    .article-body { font-size: 16px; }
    .article-body h2 { font-size: 19px; }
  }

  @media (max-width: 480px) {
    .related-grid { grid-template-columns: 1fr; }
    .article-h1 { font-size: 20px; }
    .article-deck { font-size: 15px; }
    .hero-img { aspect-ratio: 4/3; }
  }

/* === PAGINAÇÃO === */
.pagination { display:flex; justify-content:center; gap:6px; margin-top:20px; flex-wrap:wrap; }
.page-btn { padding:8px 14px; border-radius:6px; border:1px solid var(--borda); background:var(--branco); font-size:13px; text-decoration:none; color:var(--texto); font-family:Arial,sans-serif; transition:all .15s; min-height:44px; display:flex; align-items:center; }
.page-btn:hover { border-color:var(--vermelho); color:var(--vermelho); }
.page-btn.active { background:var(--vermelho); color:#fff; border-color:var(--vermelho); }
