/* ═══════════════════════════════════════════════════════════════
   Copa 2026 — Barra de Agenda
   ═══════════════════════════════════════════════════════════════ */

.copa-bar {
    background: #fff;
    border-bottom: 2px solid #e6e6e6;
    max-width: var(--publisher-site-width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.3;
    box-sizing: border-box;
}

/* ── Cabeçalho ────────────────────────────────────────────────── */

.copa-bar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 16px 6px;
    flex-wrap: wrap;
}

.copa-bar-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.copa-bar-title {
    font-weight: 700;
    font-size: 13px;
    color: #1a5f2e;
    white-space: nowrap;
}

.copa-bar-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #1a5f2e;
    border: 1.5px solid #1a5f2e;
    border-radius: 4px;
    padding: 3px 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.copa-bar-link:hover {
    background: #1a5f2e;
    color: #fff;
    text-decoration: none;
}

.copa-bar-brasil-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #1a5f2e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
    padding: 5px 13px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s;
}
.copa-bar-brasil-btn:hover {
    background: #145026;
    color: #fff;
    text-decoration: none;
}

/* ── Trilho horizontal ────────────────────────────────────────── */

.copa-bar-track-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: 1px solid #ececec;
}
.copa-bar-track-wrap::-webkit-scrollbar {
    display: none;
}

.copa-bar-track {
    display: flex;
    align-items: stretch;
    min-width: max-content;
}

/* ── Card de partida ──────────────────────────────────────────── */

.copa-bar-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 14px 7px;
    border-right: 1px solid #ececec;
    min-width: 165px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background .12s;
    box-sizing: border-box;
}
.copa-bar-card:hover {
    background: #f6f6f6;
    text-decoration: none;
}
.copa-bar-card:last-child {
    border-right: none;
}

/* Destaque — próxima partida do Brasil */
.copa-bar-card.featured {
    border-top: 3px solid #C8A951;
    background: #fffbf0;
}
.copa-bar-card.featured:hover {
    background: #fff6e0;
}

/* Ao vivo */
.copa-bar-card.live {
    background: #fff5f5;
}
.copa-bar-card.live:hover {
    background: #ffefef;
}

/* ── Topo do card: hora + badge ───────────────────────────────── */

.copa-bar-card-top {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 5px;
}

.copa-bar-card-time {
    font-size: 11px;
    font-weight: 700;
    color: #444;
    white-space: nowrap;
}

.copa-bar-live-badge {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: #e03030;
    padding: 2px 5px;
    border-radius: 3px;
    letter-spacing: .3px;
    white-space: nowrap;
}

/* ── Times + placar ───────────────────────────────────────────── */

.copa-bar-teams {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.copa-bar-team {
    display: flex;
    align-items: center;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.copa-bar-team--r {
    justify-content: flex-end;
}
.copa-bar-team--r .copa-bar-tname {
    text-align: right;
}

.copa-bar-tname {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 58px;
}

.copa-bar-mid {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-shrink: 0;
}

.copa-bar-score {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    min-width: 14px;
    text-align: center;
    line-height: 1;
}

.copa-bar-vsep,
.copa-bar-vs {
    font-size: 11px;
    color: #bbb;
    line-height: 1;
}

/* ── Rodada ───────────────────────────────────────────────────── */

.copa-bar-round {
    font-size: 10px;
    color: #888;
    white-space: nowrap;
    line-height: 1.2;
}

/* ── Bandeiras ────────────────────────────────────────────────── */

.copa-bar .bandeira img {
    width: 16px !important;
    height: 16px !important;
    vertical-align: middle;
}

/* ── Responsivo ───────────────────────────────────────────────── */

@media (max-width: 600px) {
    .copa-bar-header {
        padding: 6px 12px 4px;
        gap: 6px;
    }
    .copa-bar-title {
        font-size: 12px;
    }
    .copa-bar-card {
        min-width: 145px;
        padding: 6px 10px;
    }
    .copa-bar-tname {
        max-width: 46px;
    }
}
