#paginaSingleServicos {
    float: left;
    width: 100%;
    padding: 40px 0;
}

/* Bloco Inicial */

.blocoInicial {
    float: left;
    width: 100%;
    padding: 0 0 50px 0;
}

.blocoInicial .container {
    display: flex;
    align-items: center;
}

.blocoInicial .texto {
    float: left;
    width: 100%;
}

/* Lista de Vantagens */

.listaVantagens {
	float: left;
	width: 100%;
	padding: 70px 0;
	background: url('../../../uploads/2024/02/bg-servicos.jpg') center center no-repeat;
	background-size: cover;
}

.listaVantagens h2 {
	float: left;
    width: 100%;
    margin: 0 0 50px 0;
    font-family: 'sybilla';
    color: #4B7891;
    font-size: 24px;
    position: relative;
    line-height: 34px;
    text-align: center;
    padding-bottom: 25px;
}

.listaVantagens h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 8px;
    background: #4B7891;
    bottom: 0;
    left: calc(50% - 40px);
}

.listaVantagens ul {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px;
}

.listaVantagens ul li {
	list-style: none;
    -webkit-transition: 1s;
	-webkit-transform-style: preserve-3d;
	position: relative;
}

@media (min-width: 900px) {

	.listaVantagens ul li:hover {
        -webkit-transform: rotateY(360deg);
    }

}

.listaVantagens ul li figure {
	float: left;
	width: 100%;
	text-align: center;
}

.listaVantagens ul li h3 {
    float: left;
    width: 100%;
    margin: 20px 0 0 0;
    font-family: 'sybilla';
    color: #4B7891;
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    text-align: center;
}

/* Diferenciais */

.boxDiferenciais {
	float: left;
	width: 100%;
	padding: 70px 0;
}

.boxDiferenciais .container {
	display: flex;
	align-items: center;
}

.boxDiferenciais h2 {
	float: left;
    width: 100%;
    color: #4B7891;
    margin: 0;
    font-size: 24px;
    line-height: 34px;
	font-family: 'sybilla';
	position: relative;
	padding: 0 0 10px 0;
}

.boxDiferenciais h2 strong {
	color: #1E3148;
	font-weight: normal;
	font-family: 'sybilla';
}

.boxDiferenciais h2::after {
	position: absolute;
	content: '';
	width: 30%;
	height: 8px;
	background: #4B7891;
	left: 0;
	bottom: -20px;
}

.boxDiferenciais ul {
	float: left;
	width: 100%;
	margin: 50px 0 20px 0;
	padding: 0 0 0 20px;
}

.boxDiferenciais ul li {
	float: left;
	width: 100%;
	color: #1E3148; 
    font-weight: bold;
}

.boxDiferenciais .boxTexto {
	float: left;
	width: 100%;
}

@media (max-width: 1000px) {

    /* Vantagens */

    .listaVantagens ul {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {

    /* Bloco Inicial */

    .blocoInicial .container {
        flex-direction: column;
    }

    .blocoInicial figure {
        margin-top: 40px;
    }

    /* Vantagens */

    .listaVantagens {
        padding: 40px 0;
    }

    .listaVantagens ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .listaVantagens ul li figure img {
        width: 100px;
    }

    .listaVantagens ul li h3 {
        font-size: 16px;
        line-height: 26px;
    }

    .listaVantagens ul li h3 br {
        display: none;
    }

    /* Diferenciais */

    .boxDiferenciais {
        padding: 40px 0;
    }

    .boxDiferenciais .container {
        flex-direction: column;
    }

    .boxDiferenciais h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .boxDiferenciais h2 br {
        display: none;
    }

    .boxDiferenciais figure {
        margin-top: 30px
    }

}