
/* ==========================
   ESTILO GERAL - DESKTOP
   ========================== */
.jogo {
    display: flex;
    flex-direction: row; /* horizontal */
    align-items: center;
    justify-content: space-between;
    gap: 10px;          
    padding: 5px 10px;  
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 6px;
    margin-bottom: 8px;
}

.data-horario-jogo {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 6px;
    font-weight: bold;
}

.data-horario-jogo .data,
.data-horario-jogo .hora {
    color: #0033cc; /* azul da bandeira da França */
    font-size: 14px;
}

.times-placar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.times {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 40%;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.times img {
    width: 25px;
    height: 25px;
}

.placar {
    font-size: 16px;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

/* Cores para time da casa e visitante */
.times.casa { color: #cc0000; }      
.times.visitante { color: #0033cc; } 

/* ==========================
   RESPONSIVIDADE MOBILE
   ========================== */
@media(max-width:600px){
    .jogo {
        flex-direction: row !important;
        align-items: center !important;
        padding: 6px;
        gap: 4px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .data-horario-jogo {
        flex-direction: column;
        gap: 2px;
        font-size: 12px;
    }

    .times-placar {
        flex-direction: row !important;
        gap: 4px !important;
        width: 100%;
        justify-content: space-between;
        min-width: 0;
    }

    .times {
        max-width: 40%;
        font-size: 12px;
    }

    .placar {
        min-width: 36px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .jogo img {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
}

/* ===== Símbolos de Resultado ===== */
.symbol {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    color: #fff;
    line-height: 1;
    margin-left: 4px;
}

.symbol.win { background-color: #0033cc; }   
.symbol.draw { background-color: #666666; }  
.symbol.lose { background-color: #cc0000; }  

@media (max-width: 600px) {
  .symbol {
    width: 16px;
    height: 16px;
    font-size: 10px;
    margin-left: 3px;
  }
}

/* ==========================
   ANÚNCIOS
   ========================== */
.ad-left, .ad-right {
    position: fixed;
    top: 0;
    width: 160px;
    height: 600px;
    display: block;
    z-index: 9999;}

.ad-left ins, .ad-right ins {
    width: 160px !important;   /* largura do bloco */
    height: 600px !important;  /* altura do formato escolhido */
    display: block !important; /* garante visibilidade */
}

.ad-left { left: 0; }
.ad-right { right: 0; }

.ad-mobile {
    display: none;        /* padrão desktop */
    width: 100%;
    max-width: 760px;
    min-width: 200px;
    min-height: 50px;     /* garante altura mínima */
    margin: 12px auto;
    clear: both;
    position: relative;
    text-align: center;
    margin: 10px auto !important;
}

/* Responsivo mobile */
@media(max-width:768px){
    .ad-left, .ad-right { display: none; }
    .ad-mobile { display: block; }
}
/* ===== Anúncios lado a lado no mobile (AdSense + SeuBet) ===== */

/* ==========================
   MOBILE: exibe apenas em telas pequenas
   ========================== */
.ads-mobile-duplo {
  display: none !important;  /* padrão: escondido no desktop */
}

@media screen and (max-width: 768px) {
  .ads-mobile-duplo {
    display: flex !important;
    flex-direction: row !important;
    justify-content: right !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .ads-mobile-duplo .ad-bloco {
    width: 48% !important;
    text-align: center !important;
  }

  .ads-mobile-duplo img,
  .ads-mobile-duplo ins {
    width: 100% !important;
    height: 120px !important;
    display: block !important;
    border-radius: 8px !important;
    object-fit: cover !important;
  }
}

/* ==========================
   PADDING NO MAIN PARA DESKTOP
   ========================== */
@media(min-width:769px){
    main {
        padding-left: 140px;   /* espaço para ad-left */
        padding-right: 140px;  /* espaço para ad-right */
    }
}




