.container_oitava_pagina {
    background-color: #091430;
    background-size: cover;
    color: #fff;
}

.titulo_oitava_pagina {
    font-size: 2em;
    width: 90%;
    padding: 30px 0;
    margin: auto;
}

.descricao_oitava_pagina {
    font-size: 1.1em;
    width: 90%;
    padding: 30px 0;
    margin: auto;
}

.container_bandeiras_flex {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 90%;
    margin: 0 auto 100px auto;
}

.container_f_tecnica,
.container_f_profissional {
    border-radius: 25px;
    width: 50%;
}
.container_f_tecnica {
    background-color: #031753;
}
.container_f_profissional {
    background-color: #031753;
}

.container_total_bandeiras {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 85%;
    margin: auto;
    margin-bottom: 100px;

    h2 {
        margin-top: 40px;
        margin-bottom: 0px;
    }
}

.container_total_bandeira {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    height: 130px;
    gap: 15px;
}

.container_bandeira {
    width: 80px;
    height: 320px;
    background: #1a2f69;
    color: #657dbe;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    font-size: 2em;

    clip-path: polygon(
        50% 28%,

        100% 20%,
        100% 80%,

        50% 88%,

        0 80%,
        0 20%
    );
}

.container_conteudo_bandeira {
    margin-top: 10px;
    width: 90%;
}

@media (max-width: 1150px) {
    .container_bandeiras_flex {
        flex-direction: column;
    }

    .container_f_tecnica,
    .container_f_profissional {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .container_total_bandeira {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        gap: 0;
        text-align: center;

        & h3 {
            margin-top: 0;
        }
    }
    .container_bandeira {
        width: 80px;
        height: 150px;
        clip-path: polygon(
            50% 30%,
    
            100% 20%,
            100% 80%,
    
            50% 90%,
    
            0 80%,
            0 20%
        );
    }
    .container_total_bandeiras {
        gap: 40px;
    }
}
