header {
    background-image: url("../../imagens/etecMatao.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;    

    width: 100%;
    min-height: 200px;
    margin-top: 33px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cabecario .caixaDestaque {
    background-color: #39555e80;
    text-align: center;
}

.cabecario .caixaDestaque h1 {
    width: 100%;
    margin: 0;
    color: white;
    margin: 10px 0;
    padding: 0 10px;
}

.cabecario .caixaDestaque p {
    font-size: 0.7rem;
}

.cabecario .logos {
    display: none;
}

.botoes {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 10px;

    margin: 30px 0 15px 0;
}

.botao {
    background-color: #AC1019;
    border: solid 1px white;
    color: white !important;
    text-decoration: none;
    width: 40%;
    padding: 15px 20px;
}

.botao:hover {
    cursor: pointer;
    background-color: #d42c35;
}

h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #39555E;
    margin: 50px 0 20px 0;
    padding: 0 80px;
}

#vencedores h2 {
    color: white;
    margin-top: 0;
}

#vencedores img {
    width: 100px;
    height: fit-content;
}

#amostraVencedores {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#vencedores .timeSala {
    background-color: #fde744;
    color: #273a41;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    width: 70px;
    height: 30px;
}

#vencedores .modalidade {
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.conteudo p {
    text-align: justify;
    padding: 0 10px;
}

ul {
    text-align: left;
    list-style: disc;
    margin-left: 50px;
}

::marker {
    font-size: 1rem;
}

@media (min-width: 800px) {/* Para Desktop */
    header {
        height: 23vw;
    }

    .cabecario .caixaDestaque {
        background-color: #39555ee0;
        text-align: center;
        height: 50%;

        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .cabecario .logos {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin-top: 20px;
    }

    .logos img {
        width: 80px;
        height: fit-content;
    }

    main .caixaDestaque {
        width: 50%;
        margin: 20px auto 0 auto;
    }

    #vencedores .timeSala {
        width: 100px;
        height: 30px;
    }
    
    #vencedores .modalidade {
        font-size: 1.4rem;
        font-weight: bold;
    }

    .botao {
        width: 200px;
    }
}