section.title-page {
	display: table;
	width: 100%;
	background: url(../img/bg-title.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 90px 0;
	color: #fff;
}

section.title-page .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

section.title-page h2 {
	font-size: 18px;
	font-weight: 300;
}

section.title-page h1 {
	font-size: 48px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

section.title-page p {
	font-size: 20px;
	line-height: 120%;
}

section.title-page a {
	display: table;
	border: 3px solid var(--vermelho);
	color: #fff;
	text-transform: uppercase;
	border-radius: 4px;
	font-weight: bold;
	padding: 15px;
	padding-left: 95px;
    position: relative;
    transition: all .5s;
}

section.title-page a::after {
    content: '';
    width: 65px;
    height: 70px;
    display: block;
    background: url(../img/icone-orcamento.png) center center no-repeat var(--azul);
    border-radius: 4px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

section.title-page a:hover {
    background: var(--vermelho);
}

.page-conteudo {
	padding: 90px 0;
}

.page-conteudo .content {
	border-radius: 5px;
}

.page-conteudo .content h1 {
	font-size: 42px;
	font-weight: bold;
	border-bottom: 1px #dedede solid;
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.page-conteudo .content h2 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 15px;
}

.page-conteudo .content h3 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 15px;
}

.page-conteudo .content h4 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
}

.page-conteudo .content h5 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}

.page-conteudo .content h6 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}

.page-conteudo .content p {
	line-height: 24px;
	margin-bottom: 30px;
}

.page-conteudo .content p a,
.page-conteudo .content ul a {
	border-bottom: 1px #550073 dotted;
	color: #69088b;
	font-weight: bold;
}

.page-conteudo .content ul {
	margin-bottom: 30px;
}

.page-conteudo .content ul li {
	position: relative;
	margin-bottom: 20px;
	padding-left: 30px;
}

.page-conteudo .content ul li:before {
	content: "";
	width: 8px;
	height: 8px;
	background: #550073;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.page-conteudo .content img {
	display: block;
	margin: 15px auto;
}