/* ============================================================================
   MOGIANA FC – HOME CSS
   Hero + Match Bar Real (JoomSport)
============================================================================ */

/* ============================
   MATCH BAR – REAL MADRID STYLE
============================ */

.mf-match-bar {
    width: 100%;
    background: #041354;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #fff;
    position: relative;
    z-index: 50;
}

/* Limita largura */
.mf-match-bar .calendario-campeonato-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 12px 24px;
}

/* Remove tudo que não pertence à barra */
.mf-match-bar .rodada-header,
.mf-match-bar .rodape-partida-profissional,
.mf-match-bar .pagination-controls,
.mf-match-bar .calendario-pagination,
.mf-match-bar .vs-profissional,
.mf-match-bar .info-fase,
.mf-match-bar .badge-status {
    display: none !important;
}

/* Card vira barra horizontal */
.mf-match-bar .partida-card-profissional {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Conteúdo em linha */
.mf-match-bar .conteudo-partida-profissional {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Times */
.mf-match-bar .nome-time-destaque {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* Escudos */
.mf-match-bar .escudo-grande {
    width: 34px;
    height: 34px;
}

/* Placar */
.mf-match-bar .placar-grande {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

/* Data / estádio */
.mf-match-bar .cabecalho-partida,
.mf-match-bar .info-data,
.mf-match-bar .info-hora {
    font-size: 12px;
    color: rgba(255,255,255,.75);
}

/* Ao vivo */
.mf-match-bar .ao-vivo {
    animation: pulse-live 1.6s infinite;
}

@keyframes pulse-live {
    0% { opacity: 1; }
    50% { opacity: .6; }
    100% { opacity: 1; }
}

/* ============================
   RESPONSIVO
============================ */
@media (max-width: 900px) {
    .mf-match-bar .conteudo-partida-profissional {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}
