/* ======================= */
/* CSS Sessão Torneio      */
/* ======================= */

#torneio-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.confronto-bloco {
    border: 2px solid #007bff;
    border-radius: 10px;
    background-color: #f0f8ff;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.confronto-bloco:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.confronto-bloco p {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.confronto-bloco .agregado {
    font-size: 12px;
    font-weight: 400;
    color: #555;
    margin-top: 8px;
}
/* Reset básico */



/* Container principal */
#torneio-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Cabeçalhos de fase */
#torneio-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0b4a6f;
    margin-bottom: 12px;
    border-bottom: 2px solid #e6eef6;
    padding-bottom: 4px;
}

/* Bloco de confronto */
.resumo-confronto {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(15,23,42,0.06);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* Equipa */
.resumo-equipa {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 120px;
}

.logo-simples {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #312e81;
    font-weight: 700;
    font-size: 16px;
}

.nome-equipa {
    font-weight: 700;
    font-size: 16px;
}

/* Placar agregado */
.placar-resumo {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
}

.estado-resumo {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
    text-align: center;
}

/* Resultados por mão */
.resumo-confronto p {
    font-size: 14px;
    margin-top: 6px;
    color: #374151;
}

/* Responsividade */
@media (max-width: 640px) {
    .resumo-confronto {
        flex-direction: column;
        align-items: flex-start;
    }
    .resumo-equipa {
        justify-content: flex-start !important;
    }
    .estado-resumo {
        text-align: left;
    }
}

