:root {
    --font-body: 'Manrope';
    --theme-color: var(--ghost-accent-color);
    --logo-header-height: 24px;
    --white: #ffffff;
    --black: #000000;
    --success-color: #96ea8c;
    --error-color: #ff9b84;
    --radius-4: 4px;
    --radius-8: 8px;
    --radius-12: 12px;
    --radius-16: 16px;
    --radius-20: 20px;
    --radius-full: 50%;
    --radius-999: 999px;
    --twitter: #1da1f2;
    --facebook: #1877f2;
    --instagram: #c13584;
    --github: #333333;
    --linkedin: #0077b5;
    --pinterest: #e60023;
    --whatsapp: #075e54;
    --behance: #1769ff;
    --dribbble: #ea4c89;
    --medium: #292929;
    --youtube: #ff0000;
    --discord: #5865f2;
    --mail: var(--text-color-main);
    --body-background-color: #f9f9ff;
    --card-background-color: #ffffff;
    --text-color-main: #2d3350;
    --text-color-dark: #090c1e;
    --text-color-light: #808495;
    --gray-1: #eff1f4;
    --gray-2: #e8eaee;
    --gray-3: #cfd0d4;
    --border-color: #dadce5;
    --button-text-color: var(--white);
    --shadow: 0 3px 10px -2px rgba(4, 9, 14, 0.1), 0 10px 25px -30px rgba(0, 0, 0, 0.1);
}
html {
    box-sizing: border-box;
}
*,
::after,
::before {
    box-sizing: inherit;
}
.container {
    max-width: 1320px;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9 {
    width: 100%;
    min-height: 1px;
    padding-right: 20px;
    padding-left: 20px;
}
.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
}
.col-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}
.col-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}
.col-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
}
.col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
}
.col-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
@media screen and (min-width: 576px) {
    .col-sm-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .col-sm-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .col-sm-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .col-md-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media screen and (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }
    .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .col-lg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 1320px) and (min-width: 558px) {
    .container {
        width: calc(100vw - 64px);
    }
}
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.justify-space-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center;
}
.align-center {
    align-items: center;
}
.block {
    display: block;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.vertical-center > * {
    vertical-align: middle;
}
.object-fit-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
html {
    box-sizing: border-box;
    font-size: 100%;
}
*,
::after,
::before {
    box-sizing: inherit;
}
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color-main);
    background-color: var(--body-background-color);
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.heading-large {
    font-size: 3.25rem;
}
.text-s {
    font-size: 0.875rem;
}
@media (max-width: 991px) {
    .heading-large {
        font-size: 3.75rem;
    }
}
@media (max-width: 767px) {
    .heading-large {
        font-size: 2.5rem;
    }
}
a {
    text-decoration: none;
    color: var(--theme-color);
    transition: all 0.25s;
}
a:hover {
    color: var(--theme-color);
}
figure {
    margin-left: 0;
    margin-right: 0;
}
figcaption {
    font-size: 0.875rem;
    text-align: center;
}
svg {
    width: auto;
    height: auto;
}
hr {
    text-align: center;
    border: none;
    border-bottom: 1px solid var(--border-color);
    margin: 5rem 0;
}
table {
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    overflow: auto;
    font-size: 1rem;
}
table,
td,
th {
    border: 1px solid var(--border-color);
}
th {
    color: var(--c-text-main);
}
td,
th {
    padding: 8px 16px;
}
dd,
dt {
    line-height: 24px;
}
dl,
ol,
ul {
    padding-left: 1.3rem;
}
pre {
    overflow: auto;
    background-color: var(--c-gray-lighter);
    border-radius: var(--size-2);
    border: 1px solid var(--c-border-light);
    padding: 1rem;
    margin: 2.5rem 0;
    overflow: auto;
    font-size: 1rem;
    line-height: 1.5;
}
code {
    font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace;
    font-size: 1.125rem;
}
:not(pre) > code {
    font-size: 1.125rem;
    background-color: var(--c-gray-light);
    padding: 2px 8px;
    border-radius: var(--size-1);
}
.btn {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    padding: 0 2rem;
    height: 48px;
    line-height: 48px;
    border-radius: var(--radius-999);
    border: none;
    background: var(--theme-color);
    color: var(--white);
    transition: all 0.25s;
    outline: 0;
    align-items: center;
    opacity: 1;
}
.btn:not(:disabled):not(.diabled) {
    cursor: pointer;
}
.btn:focus,
.btn:hover {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}
.btn svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.btn-sm {
    height: 40px;
    line-height: 40px;
    padding: 0 1rem;
}
.btn-lg {
    height: 56px;
    line-height: 56px;
    font-size: 1.125rem;
}
.btn-block {
    width: 100%;
}
.btn-link {
    line-height: 1.7;
    padding: 0;
    border: none;
    background: 0 0;
    color: var(--text-color-dark);
    text-decoration: underline;
    text-decoration-color: transparent;
}
.btn-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.btn-link:hover {
    text-decoration-color: var(--theme-color);
    background: 0 0;
}
.btn-blog-load-more {
    display: flex;
    height: 48px;
    padding: 0px 32px;
    justify-content: center;
    align-items: flex-start;
    border-radius: 4px;
    background: var(--marca-primrio-azul-tone, #234F8B);
    color: #FFF;
    text-align: center;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    width: 144px;
    cursor: pointer;
}
.blog-widget-container.blog-widget-categories.blog-widget-categories-mobile {
    margin-bottom: 25px;
}
.blog-widget-categories-mobile .blog-widget-title {
    display: flex;
    flex-direction: row;
    padding: 0 0 10px;
    justify-content: space-between;
    border-bottom: 1px solid #234F8B;
    cursor: pointer;
}
.blog-widget-categories-mobile .blog-widget-content {
    display: none;
}
.blog-widget-categories-container-mobile {
    display: none;
}
@media(max-width: 767px) {
    .blog-widget-categories-container-mobile {
        display: block;
        margin-top: 0;
    }
}
blockquote {
    font-size: 1.25rem;
    margin: 2.5rem 0;
    padding: 0 1rem 0 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    border-radius: var(--size-4);
    border-left: 4px solid var(--theme-color);
}
.site-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: clip;
}
@media (min-width: 768px) {
    .main {
        flex-grow: 1;
        padding: 0 20px;
    }
}
.no-header-footer .main {
    padding: 0;
}
@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}
.site-header {
    margin-top: 40px;
    margin-bottom: 40px;
}
.header-inner {
    background-color: var(--card-background-color);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-20);
    box-shadow: var(--shadow);
    align-items: center;
}
.header-logo .logo-text {
    color: var(--text-color-dark);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.header-logo .logo-image img {
    max-height: var(--logo-header-height);
    max-width: 100%;
}
.nav-wrap {
    display: flex;
    align-items: center;
}
.nav-left,
.nav-right {
    align-items: center;
}
.nav-left .nav-item,
.nav-right .nav-item {
    margin: 0 40px 0 0;
}
.nav-left .nav-item:last-child,
.nav-right .nav-item:last-child {
    margin-right: 0;
}
.nav-left .nav-item .nav-link,
.nav-right .nav-item .nav-link {
    color: var(--text-color-main);
    position: relative;
}
.nav-left .nav-item .nav-link::after,
.nav-right .nav-item .nav-link::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--theme-color);
    border-radius: var(--radius-4);
    position: absolute;
    bottom: -2px;
    left: 0;
    opacity: 0;
    transition: opacity 0.25s;
}
.nav-left .nav-item .nav-link.nav-current::after,
.nav-left .nav-item .nav-link:hover::after,
.nav-right .nav-item .nav-link.nav-current::after,
.nav-right .nav-item .nav-link:hover::after {
    opacity: 1;
}
.nav-right {
    margin-left: 20px;
}
.nav-right .nav-item {
    margin: 0 20px 0 0;
}
@media screen and (min-width: 1150px) {
    .more-link {
        display: flex;
        align-items: center;
    }
    .more-link svg {
        width: 18px;
        height: 20px;
    }
}
@media screen and (max-width: 1150px) {
    .header-inner {
        position: relative;
    }
}
.intro-title {
    margin-top: 0;
    margin-bottom: 0;
}
.intro-description {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
}
@media screen and (max-width: 991px) {
    .carousel-featured-slider article .row {
/*        flex-direction: column-reverse;*/
    }
}
@media screen and (min-width: 992px) {
    .intro-title {
        font-size: 3.5rem;
    }
}
.featured-slider {
    margin-top: 2rem;
}
.hero-post-card .post-img-container {
    width: 100%;
    background: var(--card-background-color);
    box-shadow: var(--shadow);
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-16);
}
.hero-post-card .post-img-container .post-img-wrap {
    aspect-ratio: 16/9;
    border-radius: var(--radius-8);
}
.hero-post-card[aria-hidden="true"] .post-img-container {
    box-shadow: none;
}
.hero-post-card .post-excerpt {
    font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
    .hero-post-card .post-img-container {
        margin-right: 2rem;
    }
}
.post-card {
    background-color: var(--card-background-color);
    padding: 2rem;
    border-radius: var(--radius-20);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
    will-change: transform;
}
.post-img-container {
    width: 272px;
    margin-right: 2rem;
}
.post-img-container .post-img-wrap {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-16);
}
.post-img-container .post-img-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.3s ease;
    transform-origin: center;
    will-change: transform;
}
.post-img-container .post-img-wrap:hover img {
    transform: scale(1.03);
}
.post-info-wrap {
    flex: 1 1 300px;
}
.post-info-wrap .post-title {
    margin-top: 0;
    margin-bottom: 1.25rem;
}
.post-info-wrap .post-title a {
    color: #234F8B;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.post-info-wrap .post-title a:hover {
    text-decoration-color: #234F8B;
}
.line-green {
    width: 72px;
    height: 2px;
    background: var(--marca-primrio-verde-400, #8DBCAA);
    margin-top: 10px;
    margin-bottom: 10px;
}
.col-sidebar {
    background-color: #fff;
    border-radius: 20px;
    padding-top: 16px;
    padding-bottom: 16px;
}
@media(max-width: 767px) {
    .col-sidebar {
        margin-top: 50px;
    }
}
.post-info-wrap .post-excerpt {
    color: #2D3350;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 1.25rem;
    height: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.tag-list {
    margin-bottom: 4px;
    display: flex;
    flex-wrap: wrap;
}
.tag-list a {
    color: var(--text-color-main);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 8px 12px 0;
    background-color: var(--gray-1);
    display: flex;
    align-items: center;
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
    border-radius: var(--radius-20);
    position: relative;
}
.tag-list a .tag-accent {
    width: 8px;
    height: 8px;
    margin-right: 6px;
    border-radius: var(--radius-full);
    background: var(--theme-color);
}
.tag-list a:hover {
    background-color: var(--gray-2);
}
.post-meta {
    display: flex;
    color: #808495;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}
.post-meta > :not(:last-child) {
    margin-right: 16px;
}
.post-meta .read-time {
    display: flex;
}
.post-meta svg {
    width: auto;
    height: auto;
    color: var(--gray-3);
    margin-right: 0.25rem;
    display: inline-flex;
    vertical-align: middle;
    margin-top: -2px;
}
.post-meta p {
    margin-bottom: 0;
}
.post-meta a {
    color: var(--text-color-light);
    text-decoration: underline;
    text-decoration-color: transparent;
}
.post-meta a:hover {
    text-decoration-color: var(--theme-color);
}
.post-card-vertical .post-img-container {
    width: 100%;
    margin-bottom: 2rem;
}
.post-card-vertical .post-img-container .post-img-wrap {
    aspect-ratio: 5/4;
}
.post-card-vertical .post-info-wrap {
    margin-left: 0;
}
.post-card-vertical .post-info-wrap .post-excerpt {
    -webkit-line-clamp: 4;
}
.post-load-button {
    margin-top: 3rem;
}
.blog-widget-container {
    margin-bottom: 56px;
}
.blog-widget-container .blog-widget-title {
    color: var(--marca-primrio-azul-tone, #234F8B);
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
    .post-img-container {
        width: 200px;
    }
    .post-info-wrap {
        flex: 1 1 200px;
    }
}
@media screen and (max-width: 575px) {
    .post-card {
        padding: 1.5rem;
    }
    .post-img-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    .post-info-wrap {
        flex: 1 1 200px;
    }
}
.sidebar-wrap {
    background-color: var(--card-background-color);
    padding: 2rem;
    border-radius: var(--radius-20);
    box-shadow: var(--shadow);
    position: sticky;
}
.sidebar-wrap .widget:first-child {
    margin-top: 0;
}
@media screen and (max-width: 991px) {
    .sidebar {
        margin-top: 2.5rem;
    }
    .sidebar-wrap {
        padding: 1.5rem;
    }
}
.widget {
    margin-top: 1.5rem;
}
.widget-tags {
    margin-bottom: 2.75rem;
}
.widget-title {
    margin-top: 0;
    margin-bottom: 2rem;
}
.social-links a {
    background: var(--gray-1);
    color: var(--text-color-main);
    margin: 0 8px 8px 0;
    height: 40px;
    width: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}
.social-links a svg {
    width: 24px;
    height: 24px;
}
.social-links a:hover {
    background: var(--gray-2);
}
.social-links .twitter {
    color: var(--twitter);
}
.social-links .facebook {
    color: var(--facebook);
}
.social-links .linkedin {
    color: var(--linkedin);
}
.social-links .instagram {
    color: var(--instagram);
}
.social-links .github {
    color: var(--github);
}
.post-small {
    margin-bottom: 2rem;
}
.post-small .post-img-container {
    width: 80px;
    margin-right: 1rem;
}
.post-small .post-img-wrap {
    border-radius: var(--radius-8);
    overflow: hidden;
}
.post-small .post-info-wrap {
    flex: 1 1 120px;
}
.post-small .post-title {
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.site-footer {
    background-color: var(--card-background-color);
    padding: 3rem 0;
    margin-top: 5rem;
}
.single-post-card {
    background-color: var(--card-background-color);
    box-shadow: var(--shadow);
    padding: 2rem;
    border-radius: var(--radius-16);
}
.single-post-img-container {
    width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
}
.single-post-img-container.ratio-16-9 {
    aspect-ratio: 16/9;
}
.single-post-img-container.ratio-16-6 {
    aspect-ratio: 16/6;
}
.single-post-img-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--radius-16);
}
.single-post-img-container a {
    text-decoration: underline;
    color: var(--text-color-main);
}
.single-post-img-container a:hover {
    color: var(--theme-color);
}
.single-post-header {
    max-width: 700px;
    margin: 0 auto 2rem;
}
.single-post-header .post-title {
    margin-top: 0;
    margin-bottom: 1.25rem;
}
.single-post-content-title {
    color: var(--marca-primrio-azul-tone, #234F8B);
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;  
}

.single-post-content-text,
.single-post-content-text ul,
.single-post-content-text ul li,
.single-post-content-text ol,
.single-post-content-text ol li,
.single-post-content-text p,
.single-post-content-text p span {
    color: var(--marca-primrio-azul-tone, #234F8B);
    font-family: Manrope;
    font-weight: 400;
    line-height: 180%;
}

.single-post .row.main-content .single-post-content-text h2.elementor-heading-title,
.single-post .row.main-content .single-post-content-text h2,
.single-post .row.main-content .single-post-content-text h3.elementor-heading-title,
.single-post .row.main-content .single-post-content-text h3 {
/*    color: var(--marca-primrio-azul-tone, #234F8B);*/
/*    font-family: Manrope;*/
}

.single-post .prev-next-wrap .nav-text {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
}

.single-post .prev-next-wrap .nav-text,
.single-post .prev-next-wrap .nav-text {
    color: var(--marca-primrio-azul-tone, #234F8B);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.single-post .related-post-wrap .section-title {
    color: var(--marca-primrio-azul-tone, #234F8B);
    text-align: center;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.full-width .single-post-img-container {
    background: var(--card-background-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius-16);
    padding: 1rem;
    margin-bottom: 2.5rem;
}
.full-width .single-post-img-container img {
    border-radius: var(--radius-8);
}
.single-post .author-card {
    margin-top: 2.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
}
.single-post-content {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}
.single-post-content > * {
    margin-top: 2.5rem;
}
.single-post-content > :first-child {
    margin-top: 0;
}
.single-post-content p {
    margin-bottom: 2rem;
}
.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
    margin-bottom: 1rem;
}
.single-post-content a:not(.btn) {
    text-decoration: underline;
    color: var(--text-color-main);
}
.single-post-content a:not(.btn):hover {
    color: var(--theme-color);
}
.single-post-content li {
    margin-bottom: 0.25rem;
}
.single-post-content blockquote {
    margin: 4rem 0;
}
.content-preview {
    position: relative;
}
.content-preview::after {
    content: "";
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0, var(--card-background-color) 100%);
    position: absolute;
    bottom: 0;
}
.share-wrap {
    background-color: var(--card-background-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius-16);
    margin-top: 2.5rem;
    padding: 2rem;
}
.share-title {
    margin-bottom: 1.5rem;
}
.share-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    background: var(--gray-1);
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-full);
    color: var(--theme-color);
}
.share-links a svg {
    width: 24px;
    height: 24px;
}
.share-links a.twitter {
    color: var(--twitter);
}
.share-links a.facebook {
    color: var(--facebook);
}
.share-links a.pinterest {
    color: var(--pinterest);
}
.share-links a.whatsapp {
    color: var(--whatsapp);
}
.share-links a.linkedin {
    color: var(--linkedin);
}
.share-links a.mail {
    color: var(--mail);
}
.comment-wrap {
    background: var(--card-background-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius-16);
    padding: 2rem;
    margin-top: 2.5rem;
}
.comment-container {
    max-width: 700px;
    margin: 0 auto;
}
.related-post-wrap {
    background: var(--card-background-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius-16);
    padding: 2rem;
    margin-top: 2.5rem;
}
.related-post-wrap .section-title {
    margin-top: 0;
    margin-bottom: 0;
}
.related-post-card {
    margin-top: 2rem;
}
.related-post-card .post-img-container {
    width: 100%;
}
.related-post-card .post-img-wrap {
    aspect-ratio: 5/4;
}
.related-post-card .post-info-wrap {
    margin-left: 0;
    margin-top: 1rem;
}
.related-post-card .post-title {
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.page-header.has-image {
    background: var(--card-background-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius-16);
    padding: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
}
.page-header.has-image .page-header-inner-wrap {
    margin: 8rem auto;
    padding: 1.5rem;
    background-color: var(--card-background-color);
    border-radius: var(--radius-16);
}
.page-header .cover-image {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
}
.page-header .cover-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--radius-8);
}
.page-header .page-header-inner-wrap {
    position: relative;
    z-index: 1;
}
.page-header .page-title {
    margin-top: 0;
    margin-bottom: 0;
}
.page-header.no-image {
    margin: 1rem 0 3rem;
}
.no-page-header {
    box-shadow: none;
    background-color: transparent;
    border-radius: 0;
    padding-top: 0;
}
.custom-page-header {
    margin-bottom: 4rem;
}
.custom-page-header .post-title {
    margin-bottom: 0;
}
.custom-page-header .custom-post-excerpt {
    font-size: 1.125rem;
    line-height: 1.8rem;
    margin-top: 2rem;
}
.tag-card {
    background: var(--card-background-color);
    padding: 1.5rem 1.5rem 1.25rem;
    margin-bottom: 2.5rem;
    border-radius: var(--radius-16);
    box-shadow: var(--shadow);
}
.tag-image-wrap {
    overflow: hidden;
    display: block;
    border-radius: var(--radius-8);
    margin-bottom: 1rem;
}
.tag-image-wrap img {
    aspect-ratio: 5/4;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--radius-8);
    transition: all 0.3s ease;
    transform-origin: center;
}
.tag-image-wrap:hover img {
    transform: scale(1.03);
}
.tag-info-wrap .tag-name {
    margin: 0 0 0.5rem;
}
.tag-info-wrap .tag-name a {
    color: var(--text-color-dark);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.tag-info-wrap .tag-name a:hover {
    text-decoration-color: var(--theme-color);
}
.tag-info-wrap .post-count {
    font-size: 0.875rem;
    color: var(--text-color-light);
}
.tag-card-style-two .tag-info-wrap {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.tag-card-style-two .post-count {
    background-color: var(--gray-1);
    padding: 0 8px;
    height: 28px;
    line-height: 28px;
    min-width: 28px;
    border-radius: 16px;
    margin-left: 8px;
    text-align: center;
}
.tag-cover-card {
    background: var(--card-background-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius-16);
    margin-bottom: 2.5rem;
    padding: 1rem;
    position: relative;
}
.tag-cover-card .cover-image {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: var(--radius-16);
}
.tag-cover-card .cover-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--radius-8);
}
.tag-cover-card.has-image {
    width: 100%;
    padding: 0 2rem;
}
.tag-cover-card.has-image .tag-cover-content-wrap {
    margin: 3rem auto;
    padding: 1.5rem;
}
.tag-cover-card.has-image .tag-cover-content-wrap:before {
    content: "";
    background-color: var(--card-background-color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 90%;
    border-radius: var(--radius-16);
}
.tag-cover-card.no-image {
    max-width: 880px;
    background: 0 0;
    box-shadow: none;
}
.tag-cover-card .tag-title {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0;
}
.tag-cover-card .tag-description {
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
}
.tag-cover-content-wrap {
    max-width: 848px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 1rem;
}
@media screen and (min-width: 992px) {
    .tag-cover-card.has-image {
        padding: 1rem;
    }
}
.author-card {
    background: var(--card-background-color);
    padding: 1.5rem 1.5rem 1.25rem;
    margin-bottom: 2.5rem;
    border-radius: var(--radius-16);
    box-shadow: var(--shadow);
}
.author-card .cover-wrap img {
    aspect-ratio: 7/3;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--radius-8);
    transition: all 0.3s ease;
    transform-origin: center;
}
.author-card .avatar-wrap {
    width: 160px;
}
.author-card .avatar-wrap .avatar-link {
    overflow: hidden;
    display: block;
    border-radius: var(--radius-8);
    background-color: var(--gray-1);
}
.author-card .avatar-wrap .avatar-link.no-image {
    aspect-ratio: 1/1;
}
.author-card .avatar-wrap .avatar-link.no-image svg {
    height: 50%;
    width: 50%;
    color: var(--gray-3);
    margin-left: 25%;
    margin-top: 25%;
}
.author-card .avatar-wrap img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--radius-8);
    transition: all 0.3s ease;
    transform-origin: center;
}
.author-card .avatar-wrap:hover img {
    transform: scale(1.03);
}
.author-card .author-info {
    flex: 1 1 200px;
    margin-left: 1.5rem;
}
.author-info h2.name {
    color: var(--marca-primrio-azul-tone, #234F8B);
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
.author-card .name {
    margin-top: 0;
}
.author-card .name a {
    color: var(--text-color-dark);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.author-card .name a:hover {
    text-decoration-color: var(--theme-color);
}
.author-card .author-social {
    font-size: 0;
}
.author-card .author-social .icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}
/*.author-card .author-social .icon-wrap svg {
    width: auto;
    height: auto;
}
.author-card .author-social .icon-wrap:hover {
    background: var(--gray-2);
}
.author-card .author-social .icon-wrap.facebook svg {
    color: var(--facebook);
}
.author-card .author-social .icon-wrap.twitter svg {
    color: var(--twitter);
}*/
.author-card .bio {
    margin-top: 1rem;
}
@media(min-width: 767px) {
    .col-12.related-post-card-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
    }
    .related-post-card {
        margin-top: 2rem;
        width: 31%;
    }
}
.author-card-2,
.author-card-3 {
    text-align: center;
}
.author-card-2 .avatar-wrap,
.author-card-3 .avatar-wrap {
    margin: -6.5rem auto 0;
    padding: 4px;
    background: var(--card-background-color);
    border-radius: var(--radius-8);
}
.author-card-2 .avatar-wrap .avatar-link.no-image svg,
.author-card-3 .avatar-wrap .avatar-link.no-image svg {
    margin-left: 0;
}
.author-card-2 .author-info,
.author-card-3 .author-info {
    margin-left: 0;
    margin-top: 16px;
}
.author-card-2 .author-social,
.author-card-3 .author-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.25rem 0;
}
.author-card-2 .author-social .social,
.author-card-3 .author-social .social {
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    margin: 0 0.5rem;
    color: var(--text-color-dark);
}
.author-card-2 .author-social .social svg,
.author-card-3 .author-social .social svg {
    width: 20px;
    height: 20px;
    margin-right: 0.25rem;
    color: var(--theme-color);
}
.author-card-2 .author-social .social.facebook svg,
.author-card-3 .author-social .social.facebook svg {
    color: var(--facebook);
}
.author-card-2 .author-social .social.twitter svg,
.author-card-3 .author-social .social.twitter svg {
    color: var(--twitter);
}
.author-card-2 .author-social a.social,
.author-card-3 .author-social a.social {
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.author-card-2 .author-social a.social:hover,
.author-card-3 .author-social a.social:hover {
    text-decoration-color: var(--theme-color);
}
.author-card-2 {
    margin-top: 4.75rem;
}
.author-card-3 .avatar-wrap {
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 991px) {
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    .author-card .avatar-wrap {
        margin: 0 auto;
    }
    .author-card .avatar-wrap .avatar-link.no-image svg {
        margin-left: 0;
    }
    .author-card .author-info {
        margin-left: 0;
        margin-top: 1rem;
    }
}
.author-cover-card {
    background: var(--card-background-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius-16);
    margin-bottom: 2.5rem;
    padding: 1rem;
    position: relative;
}
.author-cover-card .cover-image {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    border-radius: var(--radius-16);
}
.author-cover-card .cover-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: var(--radius-8);
}
.author-cover-card.has-image {
    width: 100%;
}
.author-cover-card.has-image .author-card {
    margin: 3rem 1rem;
    box-shadow: none;
}
.author-cover-card.no-image {
    max-width: 848px;
    padding: 0;
}
.author-cover-card.no-image .author-card {
    margin-bottom: 0;
    box-shadow: none;
    width: 100%;
}
.author-cover-card .author-card {
    position: relative;
    max-width: 848px;
    position: relative;
    z-index: 1;
}
.author-cover-card .author-card .avatar-wrap:hover img {
    transform: scale(1);
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .author-cover-card .author-card {
        min-width: 432px;
    }
}
@media screen and (min-width: 991px) {
    .author-cover-card.has-image .author-card {
        margin: 5rem auto;
    }
}
.sign-card {
    background: var(--card-background-color);
    box-shadow: var(--shadow);
    padding: 3rem;
    border-radius: var(--radius-16);
    max-width: 448px;
    margin: 0 auto;
}
.sign-card .post-title {
    margin-bottom: 1rem;
}
.sign-card .description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.sign-card .alternate-option {
    font-size: 0.875rem;
}
.info-label {
    color: var(--text-color-light);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.info-content {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}
.btn-subs-cancel.loading::after {
    position: relative;
    display: inline-block;
    left: auto;
    top: 5px;
}
.archive-wrap {
    background-color: var(--card-background-color);
    box-shadow: var(--shadow);
    border-radius: var(--radius-16);
    padding: 0 2.5rem 2.5rem;
    margin-bottom: 0;
}
.archive-wrap .pm,
.archive-wrap .py {
    padding-bottom: 8px;
    padding-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.archive-post-card {
    max-width: 780px;
    margin: 0 auto;
}
.archive-post {
    position: relative;
}
.archive-post .inner {
    padding: 12px 0;
    display: flex;
}
.archive-post .post-date {
    color: var(--text-color-light);
    font-size: 0.875rem;
    white-space: nowrap;
    min-width: 58px;
    line-height: 24px;
    margin-right: 0.25rem;
}
.archive-post .title {
    margin: 0;
    font-size: 1.125rem;
}
.archive-post .title a {
    color: var(--text-color-dark);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.archive-post .title a:hover {
    color: var(--c-text-main);
    text-decoration-color: var(--theme-color);
}