* {
    font-family: 'Bebas Neue', sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.imagem-fundo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mascara {
    height: 140%;
    width: 100%;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    position: fixed;
    top: 0;
    z-index: -1;
}


.caixa {
    margin-top: 20px;
}

.caixa,
.caixa2,
.caixa3,
.caixa4 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding: 40px;
}

.jogadoresh2 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: red;
    text-align: center;
    height: 20px;
}

.comissaoh2 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: yellow;
    text-align: center;
    height: 20px;
}

.patrocinioh2 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: green;
    text-align: center;
    height: 20px;
}

.imagem1,
.imagem2,
.imagem3 {
    border-radius: 50px;
    transition: transform 0.3s ease;
    width: 360px;
}

.imagem1:hover,
.imagem2:hover,
.imagem3:hover {
    transform: scale(1.1);
}

.camisash2 {
    margin-top: 100px;
    margin-bottom: 50px;
    color: red;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.camisash2 h3 {
    margin-top: 5px;
    color: white;
}

.camisash2 a {
    margin-bottom: 20px;
    margin-top: 20px;
    color: white;
    text-decoration: underline;
}

.caixa3 {
    display: flex;
    justify-content: center;
}

.caixa4 {
    display: flex;
    justify-content: center;
}

/* Media Queries */
@media (min-width: 1700px) {
 
    .caixa>div:nth-child(3) {
        flex: 0 0 100%;
        /* A terceira imagem ocupa toda a largura */
        display: flex;
        justify-content: center;
        /* Centraliza a terceira imagem */
    }

    .caixa,
    .caixa2,
    .caixa3,
    .caixa4 {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 1215px) {
    .imagem-container {
        flex: 0 0 100%;
    }

    .caixa,
    .caixa2,
    .caixa3,
    .caixa4 {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .jogadoresh2,
    .comissaoh2,
    .patrocinioh2 {
        margin-bottom: 50px;
    }

    .imagem1,
    .imagem2,
    .imagem3 {
        width: 300px;
    }

}

@media (max-width: 800px) {
    .imagem-container {
        flex: 0 0 100%;
    }

    .div-texto {
        width: 100%;
    }

    .caixa,
    .caixa2,
    .caixa3,
    .caixa4 {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .jogadoresh2,
    .comissaoh2,
    .patrocinioh2 {
        margin-bottom: 50px;
    }

    .imagem1,
    .imagem2,
    .imagem3 {
        width: 300px;
    }
}