#paginaTreinamentos {
    float: left;
    width: 100%;
}

/* Bloco Inicial */

.blocoInicial {
    float: left;
    width: 100%;
    background-color: #212121;
    padding: 30px 0 50px 0;
}

.blocoInicial #breadcrumbs {
    padding: 0;
}

.blocoInicial #breadcrumbs span,
.blocoInicial #breadcrumbs a {
    color: #fff!important;
}

.blocoInicial h1 {
    float: left;
    width: 100%;
    text-align: center;
    color: #fff;
    margin: 50px 0 30px 0;
    font-weight: 600;
    font-size: 30px;
}

.blocoInicial .boxTexto {
    float: left;
    width: 100%;
    text-align: center;
    padding: 0 250px;
}

.blocoInicial .boxTexto p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

/* Lista Categorias */

.listaCategorias {
    float: left;
    width: 100%;
    background: #EEEEEE;
}

.listaCategorias ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.listaCategorias ul li {
    list-style: none;
}

.listaCategorias ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s linear;
    padding: 30px 15px;
    min-width: 145px;
}

.listaCategorias ul li a + a {
    border-left: solid 1px #e6e6e6;
}

.listaCategorias ul li.active a,
.listaCategorias ul li a:hover {
    background-color: #FACA08;
}

.listaCategorias ul li a img {
    opacity: 0.4;
    height: 50px;
}

.listaCategorias ul li.active a img,
.listaCategorias ul li a:hover img {
    opacity: 1;
}

.listaCategorias ul li a span {
    color: #000;
    font-weight: 600;
    font-size: 13px;
    margin: 10px 0 0 0;
}

/* Lista Treinamentos */

.listaDeTreinamentos {
    float: left;
    width: 100%;
    padding: 70px 0;
    margin: 0;
}

.listaDeTreinamentos ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}