/*
Theme Name: News Brasil
Theme URI: https://folhago.com.br
Author: FolhaGO
Description: Portal de notícias com design editorial e ramificações SVG animadas
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: news-brasil
*/

/* ═══════════════════════════════════
   RESET & BASE
═══════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red: #CC0000;
    --red-dark: #A30000;
    --red-glow: rgba(204,0,0,0.35);
    --dark-bg: #0E0E0E;
    --dark-surface: #161616;
    --dark-card: #1C1C1C;
    --dark-border: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    --accent-blue: #1DA1F2;
    --accent-yellow: #FFD600;
    --branch: #2A2A2A;
    --branch-active: #CC0000;
    --font-sans: 'Encode Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.site-header {
    background: var(--dark-bg);
    border-bottom: 1px solid var(--dark-border);
    position: sticky; top: 0; z-index: 100;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 0;
}
.header-left { display: flex; align-items: center; gap: 20px; }
.hamburger { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 4px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); }
.logo { display: flex; align-items: baseline; gap: 3px; }
.logo-main { font-weight: 800; font-size: 28px; letter-spacing: -1px; color: var(--red); line-height: 1; }
.logo-sub { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-secondary); }
.header-right { display: flex; align-items: center; gap: 14px; }
.search-btn { background: none; border: none; cursor: pointer; color: var(--text-secondary); transition: color 0.2s; }
.search-btn:hover { color: #fff; }
.live-btn {
    display: flex; align-items: center; gap: 6px;
    background: var(--red); color: #fff; padding: 6px 14px; border-radius: 4px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    border: none; cursor: pointer; transition: background 0.2s;
}
.live-btn:hover { background: var(--red-dark); }
.live-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: blink 1.4s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.main-nav { border-top: 1px solid var(--dark-border); overflow-x: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.main-nav ul { display: flex; white-space: nowrap; }
.main-nav a {
    display: block; padding: 10px 16px; font-size: 12px; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px;
    transition: color 0.2s; position: relative;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a.active::after { content:''; position: absolute; bottom:0; left:16px; right:16px; height:3px; background: var(--red); }

/* WordPress nav menu overrides — manter classes idênticas */
.main-nav .menu { display: flex; white-space: nowrap; }
.main-nav .menu-item a {
    display: block; padding: 10px 16px; font-size: 12px; font-weight: 600;
    color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px;
    transition: color 0.2s; position: relative;
}
.main-nav .menu-item a:hover, .main-nav .current-menu-item a { color: #fff; }
.main-nav .current-menu-item a::after { content:''; position: absolute; bottom:0; left:16px; right:16px; height:3px; background: var(--red); }

/* ═══════════════════════════════════
   TOP HEADLINES — CNN Brasil style
═══════════════════════════════════ */
.headlines-section {
    background: var(--dark-surface);
    border-bottom: 1px solid var(--dark-border);
    padding: 32px 0 28px;
}
.headlines-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}
.headline-main {}
.headline-main__tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--red); margin-bottom: 12px;
}
.headline-main__tag::before {
    content:''; width: 8px; height: 8px; background: var(--red); border-radius: 50%;
    animation: blink 1.4s ease infinite;
}
.headline-main__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400; line-height: 1.12;
    margin-bottom: 20px;
    cursor: pointer;
    transition: color 0.2s;
}
.headline-main__title:hover { color: var(--red); }
.headline-main__title a { color: inherit; text-decoration: none; }
.headline-main__title a:hover { color: var(--red); }
.headline-bullets { display: flex; flex-direction: column; gap: 14px; }
.headline-bullet {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 15px; line-height: 1.4;
    cursor: pointer; transition: color 0.2s;
}
.headline-bullet:hover { color: var(--red); }
.headline-bullet__icon {
    flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px;
    background: var(--red); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
}
.headline-bullet__icon svg { fill: #fff; width: 10px; height: 10px; }
.headline-bullet__author {
    font-weight: 700; text-transform: uppercase; font-size: 12px;
    letter-spacing: 0.5px; color: var(--text-primary);
}
.headline-bullet__text { color: var(--text-secondary); }

/* Right side — Ao Vivo card */
.headline-live {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}
.headline-live:hover { border-color: var(--red); }
.headline-live__video {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}
.headline-live__video .placeholder-img {
    width:100%; height:100%;
}
.headline-live__badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--red); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 3px;
    display: flex; align-items: center; gap: 5px;
}
.headline-live__play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.3);
    transition: background 0.3s, border-color 0.3s;
}
.headline-live:hover .headline-live__play { background: var(--red); border-color: var(--red); }
.headline-live__play svg { fill: #fff; width: 18px; height: 18px; margin-left: 2px; }
.headline-live__info { padding: 14px 16px; }
.headline-live__program { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.headline-live__desc { font-size: 13px; color: var(--text-muted); }
.headline-live__time {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--text-muted); margin-top: 8px;
}
.headline-live__time::before {
    content:''; width:6px; height:6px; background: var(--red); border-radius:50%;
    animation: blink 1.4s ease infinite;
}

/* ═══════════════════════════════════
   COLUNISTAS — Integrated in headlines
═══════════════════════════════════ */

/* Inline columnist avatar in bullet */
.headline-bullet__avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--dark-border);
    transition: border-color 0.3s;
}
.headline-bullet:hover .headline-bullet__avatar { border-color: var(--red); }
.headline-bullet__avatar img, .headline-bullet__avatar .placeholder-img {
    width:100%; height:100%; object-fit:cover;
}

.headline-bullet__col-tag {
    font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 2px 7px; border-radius: 2px; margin-left: 6px;
    display: inline-flex; vertical-align: middle;
}
.headline-bullet__col-tag--economia { background: #00C853; color: #0a0a0a; }
.headline-bullet__col-tag--politica { background: var(--accent-blue); color: #fff; }
.headline-bullet__col-tag--tech { background: #AB47BC; color: #fff; }

/* Columnists bar below headlines */
.columnists-bar {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--dark-border);
    position: relative;
}

.columnists-bar__label {
    font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 14px;
}

.columnists-bar__list {
    display: flex;
    gap: 0;
    position: relative;
}

/* SVG micro-branch connecting the 3 chips */
.columnists-bar__branch-svg {
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 2px;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.col-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--dark-card);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    flex: 1;
    border: 1px solid var(--dark-border);
}

.col-chip + .col-chip { margin-left: 12px; }

.col-chip:hover {
    background: #242424;
    border-color: var(--red);
    transform: translateY(-2px);
}

.col-chip__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--dark-border);
    transition: border-color 0.3s;
    position: relative;
}

.col-chip:hover .col-chip__avatar { border-color: var(--red); }

/* Mini glow ring on hover */
.col-chip__avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid var(--red);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
}
.col-chip:hover .col-chip__avatar::after { opacity: 0.5; transform: scale(1); }

.col-chip__avatar img, .col-chip__avatar .placeholder-img {
    width:100%;height:100%;object-fit:cover;
}

.col-chip__info { flex: 1; min-width: 0; }

.col-chip__name {
    font-weight: 700; font-size: 13px;
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 2px;
}

.col-chip__tag {
    font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 2px 6px; border-radius: 2px;
    display: inline-flex;
}
.col-chip__tag--economia { background: #00C853; color: #0a0a0a; }
.col-chip__tag--politica { background: var(--accent-blue); color: #fff; }
.col-chip__tag--tech { background: #AB47BC; color: #fff; }

.col-chip__title {
    font-size: 12px; color: var(--text-secondary);
    line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}

/* Micro branch connector dots between chips */
.col-chip__connector {
    position: absolute;
    left: -8px; top: 50%;
    width: 5px; height: 5px;
    background: var(--dark-border);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: background 0.3s;
    z-index: 2;
}
.col-chip:hover .col-chip__connector { background: var(--red); }

.col-chip__connector-line {
    position: absolute;
    left: -14px; top: 50%;
    width: 14px; height: 1.5px;
    background: var(--dark-border);
    transform: translateY(-50%);
    z-index: 0;
    transition: background 0.3s;
}
.col-chip:hover .col-chip__connector-line { background: var(--red); }

@keyframes branchFlow { to { stroke-dashoffset: -32; } }

/* ═══════════════════════════════════
   BRANCH CONNECTORS (between sections)
═══════════════════════════════════ */
.branch-svg {
    display: block; width: 100%; height: 100px;
    overflow: visible; position: relative; z-index: 1;
    margin: -4px 0; pointer-events: none;
}
.branch-svg.tall { height: 130px; }
.branch-line { fill:none; stroke: var(--branch); stroke-width:1.5; stroke-linecap:round; }
.branch-glow { fill:none; stroke: var(--red); stroke-width:2; stroke-linecap:round; opacity:0.25; filter:blur(4px); }
.branch-active { fill:none; stroke: var(--red); stroke-width:2; stroke-linecap:round; stroke-dasharray:6 12; animation: branchFlow 2.5s linear infinite; }
.branch-dot { fill: var(--dark-bg); stroke: var(--branch); stroke-width:2; }
.branch-dot-active { fill: var(--red); stroke:none; }
.branch-ring { fill:none; stroke: var(--red); stroke-width:1.5; }

.branch-svg .reveal-el {
    opacity: 0;
    transition: opacity 0.8s var(--ease);
}
.branch-svg.visible .reveal-el { opacity: 1; }
.branch-svg.visible .reveal-el:nth-child(2) { transition-delay: 0.15s; }
.branch-svg.visible .reveal-el:nth-child(3) { transition-delay: 0.25s; }
.branch-svg.visible .reveal-el:nth-child(4) { transition-delay: 0.35s; }
.branch-svg.visible .reveal-el:nth-child(5) { transition-delay: 0.45s; }

.reveal-draw {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset 1s var(--ease);
}
.branch-svg.visible .reveal-draw { stroke-dashoffset: 0; }

/* Branch label pill */
.branch-label {
    display: flex; justify-content: center; margin: -16px 0 20px; position: relative; z-index: 2;
}
.branch-label__pill {
    background: var(--dark-surface); border: 1px solid var(--dark-border);
    border-radius: 100px; padding: 5px 18px;
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); display: flex; align-items: center; gap: 8px;
}
.branch-label__dot { width:6px; height:6px; background: var(--red); border-radius:50%; }
.branch-label__dot--pulse { animation: blink 1.4s ease infinite; }

/* ═══════════════════════════════════
   MARKET STRIP
═══════════════════════════════════ */
.market-strip {
    background: var(--dark-surface); border: 1px solid var(--dark-border); border-radius: 6px;
    padding: 14px 24px; display: flex; align-items: center; gap: 28px; overflow-x: auto;
    margin: 20px 0; scrollbar-width: none;
}
.market-strip::-webkit-scrollbar { display: none; }
.market-item { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.market-item__name { font-size:11px; font-weight:700; color:var(--text-muted); letter-spacing:0.5px; }
.market-item__val { font-size:13px; font-weight:600; }
.market-item__chg { font-size:12px; font-weight:600; }
.market-item__chg.up { color:#00C853; }
.market-item__chg.down { color:#FF1744; }
.market-div { width:1px; height:18px; background: var(--dark-border); flex-shrink:0; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero { padding: 20px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 16px; }
.hero-main { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; min-height: 460px; }
.hero-main__img { width:100%;height:100%;object-fit:cover;position:absolute;inset:0;transition:transform 0.6s ease; }
.hero-main:hover .hero-main__img { transform: scale(1.03); }
.hero-main__overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.95) 0%,rgba(0,0,0,.35) 45%,rgba(0,0,0,.05) 75%);display:flex;flex-direction:column;justify-content:flex-end;padding:28px; }
.tag { display:inline-flex;align-items:center;background:var(--red);color:#fff;font-size:10px;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:4px 10px;border-radius:3px;margin-bottom:10px;width:fit-content; }
.tag--blue { background:var(--accent-blue); }
.tag--yellow { background:var(--accent-yellow);color:#111; }
.hero-main__title { font-family:var(--font-serif);font-size:34px;font-weight:400;line-height:1.12;margin-bottom:8px;max-width:580px; }
.hero-main__title a { color: inherit; text-decoration: none; }
.hero-main__excerpt { font-size:14px;color:var(--text-secondary);max-width:500px;line-height:1.5; }
.hero-sidebar { display:flex;flex-direction:column;gap:12px; }
.hero-card { position:relative;border-radius:8px;overflow:hidden;cursor:pointer;flex:1;min-height:140px; }
.hero-card__img { width:100%;height:100%;object-fit:cover;position:absolute;inset:0;transition:transform 0.5s ease; }
.hero-card:hover .hero-card__img { transform:scale(1.05); }
.hero-card__overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.9) 0%,rgba(0,0,0,.15) 65%);display:flex;flex-direction:column;justify-content:flex-end;padding:16px; }
.hero-card__title { font-family:var(--font-serif);font-size:18px;line-height:1.2; }
.hero-card__title a { color: inherit; text-decoration: none; }
.hero-card__meta { font-size:11px;color:var(--text-muted);margin-top:4px; }

/* ═══════════════════════════════════
   SECTION PATTERNS
═══════════════════════════════════ */
.section-header { display:flex;align-items:center;justify-content:space-between;margin-bottom:18px;padding-bottom:10px;border-bottom:2px solid var(--red); }
.section-header__title { font-size:16px;font-weight:700;text-transform:uppercase;letter-spacing:1px; }
.section-header__link { font-size:12px;color:var(--text-muted);font-weight:600;transition:color 0.2s; }
.section-header__link:hover { color:var(--red); }
.news-section { margin-bottom: 12px; }

/* News grid */
.news-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:16px; }
.news-card { background:var(--dark-card);border-radius:8px;overflow:hidden;cursor:pointer;transition:transform 0.3s,box-shadow 0.3s; }
.news-card:hover { transform:translateY(-4px);box-shadow:0 12px 32px rgba(0,0,0,.4); }
.news-card__img-wrap { position:relative;aspect-ratio:16/9;overflow:hidden; }
.news-card__img-wrap img { width:100%;height:100%;object-fit:cover;transition:transform 0.5s; }
.news-card__img-wrap .placeholder-img { width:100%;height:100%;transition:transform 0.5s; }
.news-card:hover .news-card__img-wrap img { transform:scale(1.06); }
.news-card:hover .news-card__img-wrap .placeholder-img { transform:scale(1.06); }
.news-card__img-wrap .tag { position:absolute;bottom:8px;left:8px;margin:0; }
.news-card__body { padding:14px; }
.news-card__title { font-family:var(--font-serif);font-size:16px;line-height:1.25;margin-bottom:6px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden; }
.news-card__title a { color: inherit; text-decoration: none; }
.news-card__meta { font-size:11px;color:var(--text-muted); }

/* Featured row */
.featured-row { display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:12px; }
.featured-card { position:relative;border-radius:8px;overflow:hidden;cursor:pointer;min-height:300px; }
.featured-card__img { width:100%;height:100%;object-fit:cover;position:absolute;inset:0;transition:transform 0.6s; }
.featured-card:hover .featured-card__img { transform:scale(1.04); }
.featured-card__overlay { position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.9) 0%,rgba(0,0,0,.15) 55%);display:flex;flex-direction:column;justify-content:flex-end;padding:24px; }
.featured-card__title { font-family:var(--font-serif);font-size:24px;line-height:1.2;margin-bottom:6px; }
.featured-card__title a { color: inherit; text-decoration: none; }
.featured-card__excerpt { font-size:13px;color:var(--text-secondary);max-width:400px; }

/* Latest + Sidebar */
.content-with-sidebar { display:grid;grid-template-columns:1fr 320px;gap:28px;margin-bottom:12px; }
.latest-item { display:grid;grid-template-columns:44px 1fr;gap:14px;padding:16px 0;border-bottom:1px solid var(--dark-border);cursor:pointer;transition:opacity 0.2s; }
.latest-item:hover { opacity:.8; }
.latest-item__num { font-family:var(--font-serif);font-size:32px;color:var(--red);line-height:1; }
.latest-item__tag { font-size:10px;font-weight:700;color:var(--red);text-transform:uppercase;letter-spacing:.5px;margin-bottom:3px; }
.latest-item__title { font-size:14px;font-weight:500;line-height:1.35; }
.latest-item__title a { color: inherit; text-decoration: none; }
.latest-item__time { font-size:11px;color:var(--text-muted);margin-top:3px; }
.sidebar-widget { background:var(--dark-card);border-radius:8px;padding:18px; }
.sidebar-widget + .sidebar-widget { margin-top:16px; }
.sidebar-widget__title { font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:14px;padding-bottom:8px;border-bottom:2px solid var(--red); }
.most-read-item { display:flex;gap:10px;padding:10px 0;border-bottom:1px solid var(--dark-border);cursor:pointer;transition:opacity 0.2s; }
.most-read-item:last-child { border-bottom:none; }
.most-read-item:hover { opacity:.75; }
.most-read-item__rank { font-family:var(--font-serif);font-size:26px;color:var(--red);line-height:1;flex-shrink:0;width:26px; }
.most-read-item__title { font-size:13px;font-weight:500;line-height:1.35; }

/* Newsletter */
.newsletter-bar { background:linear-gradient(135deg,var(--red) 0%,#8B0000 100%);border-radius:8px;padding:32px 36px;display:flex;align-items:center;justify-content:space-between;gap:28px;margin-bottom:12px; }
.newsletter-bar h3 { font-size:18px;font-weight:700;margin-bottom:3px; }
.newsletter-bar p { font-size:13px;color:rgba(255,255,255,.8); }
.newsletter-form { display:flex;gap:8px;flex-shrink:0; }
.newsletter-input { padding:10px 16px;border:2px solid rgba(255,255,255,.3);border-radius:4px;background:rgba(255,255,255,.1);color:#fff;font-family:var(--font-sans);font-size:13px;width:260px;outline:none;transition:border-color 0.3s; }
.newsletter-input::placeholder { color:rgba(255,255,255,.45); }
.newsletter-input:focus { border-color:#fff; }
.newsletter-btn { padding:10px 22px;background:#fff;color:var(--red);font-family:var(--font-sans);font-weight:700;font-size:13px;border:none;border-radius:4px;cursor:pointer;transition:background 0.2s; }
.newsletter-btn:hover { background:#f0f0f0; }

/* Video */
.video-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:16px; }
.video-card { cursor:pointer;transition:transform 0.3s; }
.video-card:hover { transform:translateY(-3px); }
.video-card__thumb { position:relative;aspect-ratio:16/9;border-radius:8px;overflow:hidden;margin-bottom:10px; }
.video-card__thumb img { width:100%;height:100%;object-fit:cover; }
.video-card__thumb .placeholder-img { width:100%;height:100%; }
.video-card__play { position:absolute;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.25);opacity:0;transition:opacity 0.3s; }
.video-card:hover .video-card__play { opacity:1; }
.video-card__play-icon { width:44px;height:44px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center; }
.video-card__play-icon svg { fill:#fff;width:16px;height:16px; }
.video-card__duration { position:absolute;bottom:6px;right:6px;background:rgba(0,0,0,.8);padding:2px 7px;border-radius:3px;font-size:11px;font-weight:600; }
.video-card__title { font-family:var(--font-serif);font-size:15px;line-height:1.3;margin-bottom:3px; }
.video-card__title a { color: inherit; text-decoration: none; }
.video-card__meta { font-size:11px;color:var(--text-muted); }

/* Placeholder */
.placeholder-img { background:var(--dark-border);display:flex;align-items:center;justify-content:center;color:var(--text-muted);font-size:12px;font-weight:500; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer { background:var(--dark-surface);border-top:1px solid var(--dark-border);padding:44px 0 20px;margin-top:40px; }
.footer-grid { display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:36px;margin-bottom:32px; }
.footer-brand .logo { margin-bottom:12px; }
.footer-brand p { font-size:13px;color:rgba(255,255,255,0.65);line-height:1.6;max-width:260px; }
.footer-social { display:flex;gap:12px;margin-top:14px; }
.footer-social a { width:44px;height:44px;background:var(--dark-border);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:15px;color:rgba(255,255,255,0.6);transition:all 0.2s; }
.footer-social a:hover { background:var(--red);color:#fff; }
.footer-col h4 { font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:14px; }
.footer-col a { display:block;font-size:13px;color:rgba(255,255,255,0.6);padding:3px 0;transition:color 0.2s; }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid var(--dark-border);padding-top:18px;display:flex;align-items:center;justify-content:space-between;font-size:12px;color:rgba(255,255,255,0.55); }
.footer-links { display:flex;gap:18px; }
.footer-links a:hover { color:#fff; }

/* WordPress footer menu overrides */
.footer-col .menu { list-style: none; padding: 0; margin: 0; }
.footer-col .menu-item a { display:block;font-size:13px;color:rgba(255,255,255,0.6);padding:3px 0;transition:color 0.2s; }
.footer-col .menu-item a:hover { color:#fff; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width:1024px) {
    .headlines-grid { grid-template-columns:1fr; }
    .headline-live { max-width:500px; }
    .hero-grid { grid-template-columns:1fr; }
    .hero-sidebar { flex-direction:row; }
    .columnists-bar__list { flex-wrap:wrap; }
    .col-chip + .col-chip { margin-left:0; margin-top:8px; }
    .col-chip__connector, .col-chip__connector-line { display:none; }
    .news-grid { grid-template-columns:repeat(2,1fr); }
    .content-with-sidebar { grid-template-columns:1fr; }
    .video-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
    .hero-main { min-height:320px; }
    .hero-main__title { font-size:26px; }
    .hero-sidebar { flex-direction:column; }
    .news-grid { grid-template-columns:1fr; }
    .featured-row { grid-template-columns:1fr; }
    .featured-card { min-height:220px; }
    .newsletter-bar { flex-direction:column;text-align:center; }
    .newsletter-form { flex-direction:column;width:100%; }
    .newsletter-input { width:100%; }
    .video-grid { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; }
    .footer-bottom { flex-direction:column;gap:10px;text-align:center; }
    .branch-svg { height:60px; }
    .branch-svg.tall { height:80px; }
}

/* ═══════════════════════════════════
   ACESSIBILIDADE — Focus visible + Touch targets
═══════════════════════════════════ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/** Share buttons — min touch target 44x44 */
.share-btn {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/** Main nav links — min touch target 44px height */
.main-nav a,
.main-nav .menu-item a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/** Skip to content link (hidden til focus) */
.skip-to-content {
    position: absolute; left: -9999px; top: 0;
    padding: 10px 16px; background: var(--red); color: #fff;
    font-weight: 700; z-index: 999;
}
.skip-to-content:focus { left: 0; }
