.main-content {
    padding: 22px var(--body-padding);
}
.main-content .content-header h1 {
    font-weight: 600;
    font-size: 32px;
    line-height: normal;
    margin-bottom: 8px;

}
.main-content .content-header p {
    color: #979797;
    font-size: 20.153px;
    font-style: normal;
    line-height: normal;
}

.main-content .content-header ul,
.main-content .content-header ol {
    color: #979797;
    font-size: 18px;
    font-style: normal;
    line-height: 1.4;
    margin-bottom: 16px;
    padding-left: 24px;
    text-align: justify;
}
.main-content .content-header ul li,
.main-content .content-header ol li {
    text-align: justify;
    margin-bottom: 16px;
    line-height: 1.4;
    font-size: 28px;
}
.main-content .content-header .divisor {
    content: '';
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 50%, var(--transient-color) 100%);
    margin-top: 18px;
    border-radius: 4px;
}

.main-content .content-body {
    margin-top: 14px;
}

.main-content .content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 24px 12px;
}

.main-content .content-body .titulo {
    background: linear-gradient(90deg, var(--primary-color) 50%, rgba(16, 137, 87, 0) 100%);
    color: white;
    width: fit-content;
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 8px 158px 8px 16px;
    font-weight: 800;
    font-size: larger;
}

.main-content .content-body p {
    text-align: justify;
    margin-bottom: 16px;
    line-height: 1.4;
    font-size: 18px;
}

.main-content .content-body .button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    max-width: 50%;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.main-content .content-body .button:hover {
    background-color: var(--secondary-color);
}
.main-content .content-body .button img {
    vertical-align: middle;
    width: 40px;
}