#paginaSobreNos {
    float: left;
    width: 100%;
    padding: 0 0 50px 0;
}

/* Bloco Inicial */

.blocoInicial {
    float: left;
    width: 100%;
    padding: 50px 0;
}

.blocoInicial h1 {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0 0 50px 0;
    color: #3B3663;
    font-size: 30px;
}

.blocoInicial .boxBaixo {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
}

.blocoInicial .boxBaixo .subtitulo {
    float: left;
    width: 100%;
    text-align: center;
    color: #3B3663;
    font-size: 20px;
}

.blocoInicial .boxBaixo .subtitulo strong {
    color: #DC0456;
}

.blocoInicial .boxBaixo figure {
    text-align: center;
}

/* Premiação e Reconhecimentos */

.premiacaoEReconhecimentos {
    float: left;
    width: 100%;
    padding: 70px 0;
}

.premiacaoEReconhecimentos h2 {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0 0 50px 0;
    color: #3B3663;
    font-size: 30px;
}

.premiacaoEReconhecimentos ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premiacaoEReconhecimentos ul li {
    list-style: none;
    padding: 0 15px;
}

.premiacaoEReconhecimentos ul li figure {
    float: left;
    width: 100%;
    text-align: center;
}

/* Linhas do Tempo */

.linhaDoTempo {
	float: left;
	width: 100%;
	padding: 90px 0 0 0;
	background: url('../../../uploads/2023/03/bg-linha-do-tempo.png') center center no-repeat;
}

.linhaDoTempo .boxList {
	float: left;
	width: 100%;
	border-top: solid 3px #726F8E;
	margin: 50px 0;
	position: relative;
	display: flex;
    justify-content: center;
}

.linhaDoTempo .boxList::before {
	content: '';
    background: #565662;
    width: 15px;
    height: 15px;
    position: absolute;
    border-radius: 50px;
	top: -9px;
    left: 0px;
}

.linhaDoTempo .boxList::after {
	content: '';
    position: absolute;
    right: -9px;
    top: -1px;
    display: block;
    border-right: 3px solid #726F8E;
    border-bottom: 3px solid #726F8E;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.linhaDoTempo .list2::after {
	top: -2px;
}

.linhaDoTempo .boxList .item {
	text-align: center;
	margin-top: -77px;
}

.linhaDoTempo .boxList .item .ano {
	color: #3B3663;
	font-size: 18px;
	font-weight: bold;
}

.linhaDoTempo .boxList .item .marcador {
	width: 46px;
	height: 46px;
	border-radius: 120px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px auto;
	background: #726F8E;
	transition: all 0.2s linear 0s;
}

.linhaDoTempo .boxList .item .marcador::before {
	content: '';
    background: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50px;	
}

.linhaDoTempo .boxList .item .conteudo p {
	margin: 0;
}

.linhaDoTempo .boxList .item:hover .marcador {
	background: #F96680;
}

.linhaDoTempo .boxList .item:hover .marcador::before {
    background: #fff;	
}

@media (max-width: 768px) {

    /* Bloco Inicial */

    .blocoInicial {
        padding: 30px 0;
    }

    .blocoInicial h1 {
        margin: 0 0 30px 0;
        font-size: 24px;
        line-height: 34px;
    }

    .blocoInicial .boxBaixo {
        flex-direction: column;
    }

    .blocoInicial .boxBaixo figure {
        margin-top: 30px;
    }

    /* Premiação e Reconhecimentos */

    .premiacaoEReconhecimentos {
        padding: 40px 0;
    }

    .premiacaoEReconhecimentos h2 {
        font-size: 24px;
        line-height: 34px;
        margin: 0px 0 35px 0;
    }

    /* Linha do Tempo */
	
	.linhaDoTempo {
		padding: 30px 0 0 0;
	}
	
	.linhaDoTempo .boxList {
		display: inline-block;
		border: 0;
		margin: 0;
	}
	
	.linhaDoTempo .boxList::before, 
	.linhaDoTempo .boxList::after {
		display: none;
	}
	
	.linhaDoTempo .boxList .item {
		float: left;
		width: 100%;
		margin: 0 0 30px 0;
	}
	
	.linhaDoTempo .boxList .item.oculta {
		display: none;
	}

}

@media (max-width: 400px) {

    /* Premiação e Reconhecimentos */

    .premiacaoEReconhecimentos ul {
        flex-direction: column;
    }

    .premiacaoEReconhecimentos ul li + li {
        margin-top: 25px;
    }

}