/*
Theme Name: Jogo Na TV
Theme URI: https://jogonatv.com.br
Author: JogoNaTV
Description: Portal profissional de futebol na TV. Estilo moderno tipo ESPN e SoccerNews.
Version: 3.0.0
Text Domain: jogonatv
*/

/* ============================================
   RESET
   ============================================ */

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

:root {
    --green: #2f8f5b;
    --green-hover: #26774c;
    --green-light: #dff3e8;
    --green-text: #1a6b3a;
    --text: #1a1a1a;
    --text-secondary: #6b6b6b;
    --bg: #f5f5f5;
    --white: #ffffff;
    --border: #eeeeee;
    --border-medium: #e0e0e0;
    --overlay: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
    --shadow: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 20px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 6px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1240px;
    --transition: 0.2s ease-in-out;
    --red: #D32F2F;
    --dark: #1e1e1e;
    --sidebar-width: 320px;
}

[data-theme="dark"] {
    --text: #e0e0e0;
    --text-secondary: #999999;
    --bg: #111111;
    --white: #1e1e1e;
    --border: #2a2a2a;
    --border-medium: #333333;
    --green-light: #1a3328;
    --green-text: #6fcf97;
    --shadow: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-hover: 0 8px 20px rgba(0,0,0,0.4);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font);
    cursor: pointer;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--green);
    height: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.top-bar-text {
    color: #ffffff;
    font-size: 11px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    opacity: 0.9;
}

.top-bar-text a {
    color: #ffffff;
    text-decoration: underline;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    background: var(--white);
    height: 72px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo .logo-green {
    color: var(--green);
}

.logo .logo-ball {
    font-size: 1.2rem;
    margin-right: 4px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    padding: 0 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    transition: color var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--green);
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-menu a:hover {
    color: var(--green);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--green);
}

.nav-arrow {
    font-size: 0.6rem;
    opacity: 0.5;
    margin-left: 2px;
}

/* Navbar Right */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-dark-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border-medium);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.btn-dark-toggle:hover {
    border-color: var(--green);
    color: var(--green);
}

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

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--green);
    border-color: var(--green);
    color: #ffffff;
}

/* Hamburger */
.btn-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    padding: 4px;
}

/* ============================================
   AD BANNER
   ============================================ */

.ad-banner {
    background: var(--white);
    border: 1px dashed var(--border-medium);
    border-radius: var(--radius);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 0;
    color: #999999;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ad-banner-sm {
    height: 100px;
    margin: 16px 0;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.hero-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.hero-card-main {
    height: 380px;
}

.hero-card-side {
    height: 180px;
}

.hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.hero-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.hero-card-side .hero-card-overlay {
    padding: 16px;
}

.hero-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-text);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    align-self: flex-start;
    position: absolute;
    top: 16px;
    left: 16px;
}

.hero-card-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-card-side .hero-card-title {
    font-size: 1rem;
    font-weight: 700;
}

.hero-card-meta {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    margin-top: 6px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============================================
   PAGE LAYOUT
   ============================================ */

.page-layout {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 28px;
    padding-bottom: 40px;
}

.main-col {
    min-width: 0;
}

.side-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.sec-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sec-header h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sec-header .see-all {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    transition: color var(--transition);
}

.sec-header .see-all:hover {
    color: var(--green-hover);
}

/* ============================================
   POPULAR GRID
   ============================================ */

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.popular-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    display: block;
    color: inherit;
}

.popular-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.popular-card-img {
    height: 130px;
    overflow: hidden;
}

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

.popular-card:hover .popular-card-img img {
    transform: scale(1.06);
}

.popular-card-body {
    padding: 12px 14px;
}

.popular-card-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-text);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.popular-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   MATCH BLOCKS (jogos)
   ============================================ */

.matches-section {
    margin-bottom: 32px;
}

.comp-block {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 14px;
}

.comp-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--green-light);
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green-text);
}

.comp-head img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.game-row {
    display: grid;
    grid-template-columns: 65px 1fr 90px;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    text-decoration: none;
    color: inherit;
}

.game-row:last-child {
    border-bottom: none;
}

.game-row:hover {
    background: var(--bg);
}

.game-row.is-live {
    background: #fff5f5;
    border-left: 3px solid var(--red);
}

[data-theme="dark"] .game-row.is-live {
    background: #2a1515;
}

.game-time {
    text-align: center;
}

.game-time .hour {
    font-size: 1rem;
    font-weight: 800;
    display: block;
}

.game-time .sub-text {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: block;
}

.live-tag {
    display: inline-block;
    background: var(--red);
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.55; }
}

.game-teams {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 14px;
}

.team-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.team-line img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
}

.team-line .t-name {
    font-weight: 600;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-line .t-score {
    font-weight: 800;
    font-size: 1.05rem;
    min-width: 18px;
    text-align: center;
}

.game-channel {
    text-align: center;
}

.ch-badge {
    display: inline-block;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.no-matches {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 48px 20px;
    text-align: center;
}

.no-matches .emoji {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.no-matches p {
    color: var(--text-secondary);
    margin-top: 6px;
}

/* ============================================
   NEWS FEED
   ============================================ */

.feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.feed-date {
    font-size: 1.05rem;
    font-weight: 800;
}

.feed-filters {
    display: flex;
    gap: 6px;
}

.feed-filter {
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-medium);
    background: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.feed-filter:hover {
    border-color: var(--green);
    color: var(--green);
}

.feed-filter.active {
    background: var(--green);
    color: #ffffff;
    border-color: var(--green);
}

.feed-list {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 28px;
}

.feed-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    text-decoration: none;
    color: inherit;
    gap: 12px;
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-item:hover {
    background: var(--bg);
}

.feed-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.feed-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-text);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.feed-title {
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feed-item-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.feed-time {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.feed-count {
    background: var(--green);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
}

/* ============================================
   NEWS LIST (with images)
   ============================================ */

.news-list {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.news-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    text-decoration: none;
    color: inherit;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: var(--bg);
}

.news-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg);
}

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

.news-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--bg);
}

.news-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.news-cat {
    color: var(--green);
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.news-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.news-time {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

/* ============================================
   HERO NEWS (big featured)
   ============================================ */

.news-hero {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    display: block;
    transition: transform var(--transition), box-shadow var(--transition);
}

.news-hero:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-hover);
}

.news-hero-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark);
}

.news-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-hero:hover .news-hero-img img {
    transform: scale(1.04);
}

.news-hero-over {
    position: absolute;
    inset: 0;
    background: var(--overlay);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.news-hero-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-text);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    align-self: flex-start;
}

.news-hero-title {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.news-hero-meta {
    color: rgba(255,255,255,0.65);
    font-size: 0.78rem;
    margin-top: 6px;
}

/* ============================================
   VIDEOS SECTION
   ============================================ */

.videos-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin-bottom: 28px;
}

.videos-scroll::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex-shrink: 0;
    width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: block;
    color: inherit;
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.video-card-img {
    position: relative;
    height: 130px;
    overflow: hidden;
}

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform var(--transition);
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-body {
    padding: 10px 12px;
}

.video-card-title {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   SIDEBAR WIDGETS
   ============================================ */

.widget-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.w-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.w-head h3 {
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.w-head a {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
}

.w-body {
    padding: 0;
}

/* Social card */
.social-card {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 24px;
    color: #ffffff;
    text-align: center;
}

.social-card h3 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.social-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.social-card-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffffff;
    transition: background var(--transition);
}

.social-card-icon:hover {
    background: var(--green);
}

/* Sidebar match list */
.side-match {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    font-size: 0.82rem;
}

.side-match:last-child {
    border-bottom: none;
}

.side-match:hover {
    background: var(--bg);
}

.side-hour {
    background: var(--green);
    color: #ffffff;
    padding: 3px 7px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 42px;
    text-align: center;
    flex-shrink: 0;
}

.side-hour.live {
    background: var(--red);
    animation: pulse 1.5s infinite;
}

.side-info {
    flex: 1;
    min-width: 0;
}

.side-teams {
    font-weight: 700;
    font-size: 0.82rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.side-channel {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Standings */
.stbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.stbl thead th {
    padding: 8px 5px;
    text-align: center;
    font-size: 0.68rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.stbl thead th.t-team {
    text-align: left;
}

.stbl tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.stbl tbody tr:last-child {
    border-bottom: none;
}

.stbl tbody tr:hover {
    background: var(--bg);
}

.stbl td {
    padding: 7px 5px;
    text-align: center;
}

.stbl td.t-team {
    text-align: left;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stbl td.t-team img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.stbl td.t-pts {
    font-weight: 800;
}

.stbl tr.zl td:first-child { border-left: 3px solid #1565C0; }
.stbl tr.zs td:first-child { border-left: 3px solid #F57C00; }
.stbl tr.zr td:first-child { border-left: 3px solid var(--red); }

/* ============================================
   SINGLE POST
   ============================================ */

.article-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.article-hero {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-inner {
    padding: 24px;
}

.article-tag {
    display: inline-block;
    background: var(--green);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.article-title {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.article-content {
    font-size: 1.02rem;
    line-height: 1.8;
}

.article-content p { margin-bottom: 18px; }
.article-content h2 { font-size: 1.4rem; margin: 28px 0 14px; }
.article-content h3 { font-size: 1.15rem; margin: 22px 0 10px; }
.article-content img { border-radius: var(--radius); margin: 18px 0; }

.article-content blockquote {
    border-left: 4px solid var(--green);
    padding: 14px 20px;
    margin: 18px 0;
    background: var(--green-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

.article-content ul, .article-content ol {
    margin: 14px 0;
    padding-left: 24px;
    list-style: disc;
}

.article-content li { margin-bottom: 6px; }

.article-tags {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.article-tags a {
    display: inline-block;
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.article-tags a:hover {
    background: var(--green-light);
    color: var(--green);
    border-color: var(--green);
}

/* Share */
.share-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.share-card h4 {
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.share-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.share-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.82rem;
    transition: opacity var(--transition);
}

.share-link:hover { opacity: 0.85; color: #ffffff; }
.share-link.wa { background: #25D366; }
.share-link.tw { background: #1DA1F2; }
.share-link.tg { background: #0088cc; }
.share-link.fb { background: #1877F2; }

/* ============================================
   MATCH DETAIL
   ============================================ */

.match-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
}

.match-card-top {
    background: var(--green);
    color: #ffffff;
    padding: 14px 16px;
    text-align: center;
    font-size: 0.82rem;
}

.match-board {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px 16px;
}

.match-team-col {
    text-align: center;
    flex: 1;
}

.match-team-col img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 8px;
}

.match-team-col .label {
    font-weight: 700;
    font-size: 1rem;
}

.match-score-col {
    font-size: 2.4rem;
    font-weight: 900;
    min-width: 90px;
    text-align: center;
}

.match-score-col .vs-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.match-card-info {
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.match-card-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   COOKIE BUTTON
   ============================================ */

.cookie-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: var(--green);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform var(--transition);
}

.cookie-btn:hover {
    transform: scale(1.1);
}

/* ============================================
   PAGINATION
   ============================================ */

.pag-wrap {
    text-align: center;
    margin: 28px 0;
}

.pag-wrap .nav-links {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.pag-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background: var(--white);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.pag-wrap .page-numbers:hover {
    background: var(--green-light);
    border-color: var(--green);
    color: var(--green);
}

.pag-wrap .page-numbers.current {
    background: var(--green);
    border-color: var(--green);
    color: #ffffff;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 44px 0 0;
    margin-top: 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 0.92rem;
    margin-bottom: 14px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-card-main {
        height: 300px;
    }

    .hero-right {
        flex-direction: row;
    }

    .hero-card-side {
        flex: 1;
    }

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

    .side-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .navbar { height: 60px; }

    .nav-menu { display: none; }
    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-hover);
        z-index: 999;
        gap: 0;
    }

    .nav-menu.open a {
        padding: 14px 20px;
        border-bottom: 1px solid var(--border);
        height: auto;
    }

    .nav-menu.open a::after { display: none; }

    .btn-hamburger { display: block; }

    .social-icons { display: none; }

    .hero-card-main { height: 240px; }
    .hero-right { flex-direction: column; }
    .hero-card-side { height: 160px; }
    .hero-card-title { font-size: 1.2rem; }

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

    .game-row { grid-template-columns: 55px 1fr; }
    .game-channel { display: none; }

    .news-item { grid-template-columns: 100px 1fr; }

    .side-col { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }

    .article-title { font-size: 1.3rem; }

    .match-board { gap: 14px; padding: 20px 12px; }
    .match-team-col img { width: 48px; height: 48px; }
    .match-score-col { font-size: 1.9rem; min-width: 70px; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }

    .logo { font-size: 1.3rem; }

    .hero-card-main { height: 200px; }
    .hero-card-title { font-size: 1rem; }
    .hero-card-side .hero-card-title { font-size: 0.85rem; }

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

    .feed-filters { flex-wrap: wrap; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

    .share-row { flex-direction: column; }
}

/* ============================================
   WIDGET AGENDA ESTILO GLOBO
   ============================================ */

.agenda-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.agenda-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.agenda-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.agenda-header h3 a {
    color: inherit;
}

.agenda-subtitle {
    background: var(--bg);
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Card de jogo individual */
.agenda-game {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    text-decoration: none;
    color: inherit;
}

.agenda-game:last-of-type {
    border-bottom: none;
}

.agenda-game:hover {
    background: var(--bg);
}

/* Nome do campeonato */
.agenda-comp {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.agenda-comp img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* Container do placar */
.agenda-board {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
}

/* Time (esquerda e direita) */
.agenda-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.agenda-team.is-right {
    flex-direction: row-reverse;
    text-align: right;
}

.agenda-team-shield {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.agenda-team-shield img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.agenda-team-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.agenda-team-abbr {
    display: none;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

/* Placar central */
.agenda-score {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    flex-shrink: 0;
    min-width: 80px;
    justify-content: center;
}

.agenda-score-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text);
    min-width: 20px;
    text-align: center;
}

.agenda-score-sep {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Quando é horário (não começou) */
.agenda-score-time {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
    min-width: 50px;
    text-align: center;
}

/* Status abaixo do placar */
.agenda-status {
    text-align: center;
    margin-top: 6px;
}

.agenda-status-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agenda-status-tag.live {
    background: var(--red);
    color: #ffffff;
    animation: pulse 1.5s infinite;
}

.agenda-status-tag.finished {
    background: var(--bg);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.agenda-status-tag.scheduled {
    background: var(--green-light);
    color: var(--green-text);
}

.agenda-status-tag.halftime {
    background: #FFF3E0;
    color: #E65100;
}

/* Canal de transmissão */
.agenda-channel {
    text-align: center;
    margin-top: 4px;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Separador entre jogos */
.agenda-divider {
    height: 1px;
    background: var(--border);
    margin: 0 16px;
}

/* Footer do widget */
.agenda-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--green);
    transition: all var(--transition);
    text-decoration: none;
}

.agenda-footer:hover {
    background: var(--green-light);
    color: var(--green-hover);
}

.agenda-footer-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition);
}

.agenda-footer:hover .agenda-footer-arrow {
    transform: translateX(4px);
}

/* Responsivo */
@media (max-width: 480px) {
    .agenda-team-name {
        display: none;
    }
    .agenda-team-abbr {
        display: block;
    }
    .agenda-team-shield {
        width: 28px;
        height: 28px;
    }
    .agenda-score-num {
        font-size: 1.1rem;
    }
}