@font-face {
    font-family: Nunito;
    src: url("outros/Nunito.ttf");
}

* {
    box-sizing: border-box;
}

body {
    font-family: Nunito;
}

/******************** TABELA ********************/
.tabelaClassificacao {
    left: 0px;
    width: 100%;
    height: 210px;
    overflow-x: auto;
    overflow-y: hidden;
}

table {
    border-collapse: collapse;
    min-width: 730px;
    width: 730px;
    max-width: 730px;
}

th, td {
    border: 1px solid #ccc;
    padding: 10px;
    min-width: 50px;
    width: 50px;
    max-width: 50px;
    text-align: center;
}

th {
    font-weight: bold;
}

th:nth-child(2) {
    background-color: #fafafa;
}

td:nth-child(2) {
    background-color: #fafafa;
}

.fixa {
    border: 1px solid #ccc;
    position: sticky;
    left: 0;
    background: white;
    min-width: 180px;
    width: 180px;
    max-width: 180px;
    text-align: left;
}

.largura60 {
    border: 1px solid #ccc;
    padding: 10px;
    min-width: 60px;
    width: 60px;
    max-width: 60px;
    text-align: center;
}

.largura90 {
    border: 1px solid #ccc;
    padding: 10px;
    min-width: 90px;
    width: 90px;
    max-width: 90px;
    text-align: center;
}

@media (min-width: 730px) {
    .tabelaClassificacao {
        display: flex;
        justify-content: center;
    }
}

/******************** OUTROS ********************/
.icone {
    width: 25px;
}

#fundoTitulo {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #007a55 0%, #f0b100 50%, #2b7fff 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

#titulo {
    position: absolute;
    left: 10px;
    top: 20px;
    width: calc(100% - 10px);
    color: white;
    font-size: large;
    font-weight: bold;
    line-height: 25px;
}

#lista {
    position: absolute;
    top: 15px;
    left: calc(100% - 40px);
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.jogos {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
}

.data {
    display: grid;
    grid-template-columns: auto;
    font-size: small;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.jogo {
    display: grid;
    grid-template-columns: 1fr 25px 20px 10px 20px 25px 1fr;
    font-size: small;
    align-items: center;
    margin-top: 20px;
}

.divisao {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 1px;
    background: #cccccc; 
    margin-top: 20px;
}

.subtitulo {
    display: grid;
    grid-template-columns: auto;
    font-size: x-large;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    line-height: 45px;
    background-color: #f3f4f6;
    color: #62606B;
}

.tituloJogos {
    display: grid;
    grid-template-columns: auto;
    color: #333333;
    font-size: medium;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.campeoes {
    display: grid;
    grid-template-columns: 25px 1fr;
    font-size: small;
    align-items: center;
    margin-top: 20px;
}

/******************** APARELHO GRANDE ********************/
@media (min-width: 730px) {
    .campeoes {
        display: grid;
        grid-template-columns: 1fr 25px 705px 1fr;
        font-size: small;
        align-items: center;
        margin-top: 20px;
    }

    #primeiroImagem {
        grid-row: 1; grid-column: 2;
    }

    #primeiroTexto {
        grid-row: 1; grid-column: 3;
    }

    #segundoImagem {
        grid-row: 2; grid-column: 2;
    }

    #segundoTexto {
        grid-row: 2; grid-column: 3;
    }

    #terceiroImagem {
        grid-row: 3; grid-column: 2;
    }

    #terceiroTexto {
        grid-row: 3; grid-column: 3;
    }

    #quartoImagem {
        grid-row: 4; grid-column: 2;
    }

    #quartoTexto {
        grid-row: 4; grid-column: 3;
    }
}