.page-home {
    width: 100%;
}

.page-home_container {
    width: 100%;
}

.page-home_hero-section {
    width: 100%;
    height: 757px;
    position: relative;
    background-color: var(--cor-fundo-secundario);
}

.page-home_hero-section-text {
    width: 100%;
    max-width: var(--largura-container);
    padding: 182px 20px 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-home_hero-section-tag {
    padding: 8px 25px;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--cor-primaria);
}

.page-home_hero-section-tag p {
    color: var(--cor-texto-claro);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

.page-home_hero-section-texts {
    max-width: 553px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 10px;
}

.page-home_hero-section-texts h1 {
    color: var(--cor-texto-principal);
    font-size: 48px;
    font-weight: 500;
    line-height: 58px;
}

.page-home_hero-section-texts h1 b {
    color: var(--cor-primaria);
    font-weight: 500;
}

.page-home_hero-section-texts p {
    color: var(--cor-texto-secundario);
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
}

.page-home_hero-section-links {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-home_hero-section-links a {
    padding: 11px 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--cor-texto-claro);
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 22px;
    transition: all .3s ease-in-out;
}

.link-posts {
    background-color: var(--cor-primaria);
    border: 1px solid var(--cor-primaria);
}

.link-posts:hover {
    background-color: transparent;
    color: var(--cor-primaria);
}

.link-services {
    background-color: var(--cor-secundaria);
    border: 1px solid var(--cor-secundaria);
}

.link-services:hover {
    background-color: transparent;
    color: var(--cor-secundaria);
}

.page-home_hero-section-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    max-width: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-home_hero-section-image img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.page-home_content {
    width: 100%;
    max-width: var(--largura-container);
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 20px;
}

.page-home_content-posts {
    width: 100%;
    max-width: 840px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-home_content-title {
    width: 100%;
    display: flex;
    align-items: center;
}

.page-home_content-title h2 {
    color: var(--cor-texto-principal);
    font-size: 22px;
    font-weight: 500;
    line-height: 21px;
}

.page-home_featured-post {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-home_latest-posts {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.page-home_content-sidebar {
    width: 300px;
    height: 100%;
}

.page-home_more-posts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-home_more-posts-loader {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;

    display: none;
}

.page-home_more-posts.is-loading
.page-home_more-posts-loader {
    display: block;
}

.page-home_more-posts.is-loading {
    pointer-events: none;
}

.page-home_more-posts.is-loading
.page-home_more-posts-text {
    opacity: .7;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.page-home_more-posts-loader {
    animation: spinner .8s linear infinite;
}

/* Responsividade */
@media screen and (max-width: 1220px) {
    .post_container-complementary-data:last-child {
        display: none;
    }
}

@media screen and (max-width: 1100px) {
    .page-home_hero-section-image {
        max-width: 40%;
    }

    .page-home_content-sidebar {
        width: 250px;
    }
}

@media screen and (max-width: 991px) {
    .page-home_hero-section {
        height: auto;
    }

    .page-home_hero-section-image {
        display: none;
    }

    .page-home_hero-section-text {
        justify-content: center;
        padding: 182px 20px 40px 20px;
        align-items: center;
    }

    .page-home_hero-section-texts {
        text-align: center;
        max-width: 90%;
    }

    .page-home_hero-section-links {
        justify-content: center;
    }

    .page-home_content {
        flex-direction: column;
    }

    .page-home_content-posts {
        max-width: 100%;
        padding: 10px 0;
    }

    .page-home_content-sidebar {
        width: 100%;
    }
}


@media screen and (max-width: 700px) {
    .page-home_latest-posts {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .page-home_hero-section-links {
        flex-direction: column;
    }

    .sidebar_banners {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}