/* Regras */
.regras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.regra-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.regra-card h3 {
    color: #ff6600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff6600;
    padding-bottom: 0.5rem;
}

.pontos-lista {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ponto-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
}

.ponto-item.positivo {
    background: #d4edda;
}

.ponto-item.negativo {
    background: #f8d7da;
}

.ponto-item .valor {
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 40px;
}

.positivo .valor {
    color: #27ae60;
}

.negativo .valor {
    color: #e74c3c;
}

.desempate-lista, .regulamento-lista {
    padding-left: 1.5rem;
}

.desempate-lista li, .regulamento-lista li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.posicoes-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.posicao {
    padding: 0.75rem;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}

.posicao.verde {
    background: #27ae60;
    color: white;
}

.posicao.amarela {
    background: #f39c12;
    color: white;
}

.posicao.vermelha {
    background: #e74c3c;
    color: white;
}