/**
 * Block - Hero 
 */

.hero-news .hero-wrapper {
    height: 560px;
    background-size: cover;
    background-position: center top;
}

.hero-news .hero-image {
    display: none;
}

.hero-news .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    padding: 3rem;
    color: black;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;

    height: 440px;
    width: 570px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fade-out {
    transition: opacity 0.2s ease;
    opacity: 0;
}

.fade-in {
    transition: opacity 1s ease;
    opacity: 1;
}

.hero-news .hero-content #hero-title {
    font-size: 40px;
    line-height: 56px;
    font-weight: 500;
    font-family: var(--title-font-family);
    text-decoration: none;
    color: #002820;
}

.hero-news .hero-content #hero-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #002820;
    text-decoration: none;
}

.hero-news #hero-date {
    border: 1px solid #CBD4D8;
    padding: 8px 8px 8px 28px;
    font-size: 10px;
    border-radius: 24px;
    color: #002820;
    text-transform: uppercase;
    width: fit-content;
    margin-top: auto;
    background-repeat: no-repeat;
    background-position: 8px center;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6666 1.83337V4.50004' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.33333 1.83337V4.50004' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 6.49996H14' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.6667 3.16663H3.33333C2.59667 3.16663 2 3.76329 2 4.49996V13.1666C2 13.9033 2.59667 14.5 3.33333 14.5H12.6667C13.4033 14.5 14 13.9033 14 13.1666V4.49996C14 3.76329 13.4033 3.16663 12.6667 3.16663Z' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67544 8.986C4.58344 8.986 4.50878 9.06067 4.50944 9.15267C4.50944 9.24467 4.58411 9.31934 4.67611 9.31934C4.76811 9.31934 4.84278 9.24467 4.84278 9.15267C4.84278 9.06067 4.76811 8.986 4.67544 8.986' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.00869 8.986C7.91669 8.986 7.84203 9.06067 7.84269 9.15267C7.84269 9.24467 7.91736 9.31934 8.00936 9.31934C8.10136 9.31934 8.17603 9.24467 8.17603 9.15267C8.17603 9.06067 8.10136 8.986 8.00869 8.986' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.3422 8.986C11.2502 8.986 11.1755 9.06067 11.1762 9.15267C11.1762 9.24467 11.2509 9.31934 11.3429 9.31934C11.4349 9.31934 11.5095 9.24467 11.5095 9.15267C11.5095 9.06067 11.4349 8.986 11.3422 8.986' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67544 11.6526C4.58344 11.6526 4.50878 11.7273 4.50944 11.8193C4.50944 11.9113 4.58411 11.986 4.67611 11.986C4.76811 11.986 4.84278 11.9113 4.84278 11.8193C4.84278 11.7273 4.76811 11.6526 4.67544 11.6526' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.00869 11.6526C7.91669 11.6526 7.84203 11.7273 7.84269 11.8193C7.84269 11.9113 7.91736 11.986 8.00936 11.986C8.10136 11.986 8.17603 11.9113 8.17603 11.8193C8.17603 11.7273 8.10136 11.6526 8.00869 11.6526' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero-news .hero-dots {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}

.hero-news .hero-dot {
    width: 100%;
    height: 3px;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-news .hero-dot.active {
    background: #0a5;
}

.hero-news .swiper {
    display: none;
}

.hero-news .hero-pagination .container {
    display: flex;
    padding: 3rem;
    gap: 1rem;
}

.hero-news .hero-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.hero-news .hero-footer .hero-pagination {
    display: none;
    gap: 1rem;
}

.hero-news .hero-pagination__button {
    cursor: pointer;
}

@media (max-width: 767px) {
    .hero-news .hero-pagination--outside {
        display: none;
    }

    .hero-news .hero-footer {
        margin-top: auto;
        flex-direction: row-reverse;
    }

    .hero-news .hero-footer .hero-pagination {
        display: flex;
    }

    .hero-news .hero-image {
        display: block;
        height: 300px;
        padding: 24px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .hero-news .hero-wrapper {
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        background-image: unset !important;
        height: 100%;
    }

    .hero-news .hero-content {
        height: 360px;
        width: 100%;
        gap: 1rem;
        padding: 32px 24px;
        position: unset;
    }

    .hero-news .container {
        padding: 0;
        width: 100%;
    }

    .hero-news .hero-content #hero-title {
        line-height: 40px;
        font-size: 32px;
    }

    .hero-news .hero-dots {
        flex-wrap: nowrap;
    }

    .hero-news .hero-dot {
        width: 100%;
    }
}


/**
 * Block - Banner
 */

.good-day-usa {
    background-color: #002218;
    background-repeat: no-repeat;
    background-position: left center;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    height: 100px;
    margin: 64px 0;
}

.good-day-usa__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 164px;
}

.good-day-usa__title h3 {
    font-size: 32px;
    font-weight: 700;
    color: #FAF6F2;
    line-height: 40px;
}

.good-day-usa__title p {
    font-size: 14px;
    font-weight: 400;
    color: #FAF6F2;
}

@media (max-width: 767px) {
    .good-day-usa {
        margin: 64px 24px;
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        height: 310px;
    }

    .good-day-usa__title {
        margin-left: 0;
        margin-top: 110px;
    }

    .good-day-usa .avenue-button--single {
        min-width: 100%;
        justify-content: center;
    }

    .good-day-usa__title h3 {
        font-size: 28px;
        line-height: 32px;
    }
}




/**
 * Block - Grid Posts por Categoria
 */

.block-grid-posts-by-category {
    padding: 64px 0;
}

/* Avenue GRID */

.dot-tag {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    display: inline-block;
    margin-right: 2px;
}

.dot-tag--light-green {
    background-color: #47E57F;
}

.dot-tag--green {
    background-color: #228B5F;
}

.dot-tag--yellow {
    background-color: #F1C94C;
}

.avenue-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.avenue-grid>div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.avenue-grid ul {
    display: flex;
    gap: 8px;
}

.avenue-grid ul li a {
    display: inline-block;
    text-decoration-line: none;
    text-transform: uppercase;
    border: 1px solid #CBD4D8;
    border-radius: 16px;
    padding: 8px;
    font-size: 10px;
    font-weight: 500;
    color: #45565C;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.avenue-grid--medium ul li a,
.avenue-grid--small ul li a {
    max-width: 100px;
}

.avenue-grid figure {
    position: relative;
    filter: brightness(95%);
    will-change: transform;
    transition: filter .3s ease-in;
}

.avenue-grid figure img {
    border-radius: 4px;
}

.avenue-grid figure figcaption {
    position: absolute;
}

.avenue-grid figure figcaption.top-left {
    top: 1rem;
    left: 1rem;
    text-transform: uppercase;
    border: 1px solid #CBD4D8;
    padding: 10px 8px 10px 28px;
    font-size: 10px;
    color: #FAF6F2;
    backdrop-filter: blur(6px);
    background-color: #00000066;
    border-radius: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6666 1.83337V4.50004' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.33333 1.83337V4.50004' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 6.49996H14' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.6667 3.16663H3.33333C2.59667 3.16663 2 3.76329 2 4.49996V13.1666C2 13.9033 2.59667 14.5 3.33333 14.5H12.6667C13.4033 14.5 14 13.9033 14 13.1666V4.49996C14 3.76329 13.4033 3.16663 12.6667 3.16663Z' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67544 8.986C4.58344 8.986 4.50878 9.06067 4.50944 9.15267C4.50944 9.24467 4.58411 9.31934 4.67611 9.31934C4.76811 9.31934 4.84278 9.24467 4.84278 9.15267C4.84278 9.06067 4.76811 8.986 4.67544 8.986' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.00869 8.986C7.91669 8.986 7.84203 9.06067 7.84269 9.15267C7.84269 9.24467 7.91736 9.31934 8.00936 9.31934C8.10136 9.31934 8.17603 9.24467 8.17603 9.15267C8.17603 9.06067 8.10136 8.986 8.00869 8.986' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.3422 8.986C11.2502 8.986 11.1755 9.06067 11.1762 9.15267C11.1762 9.24467 11.2509 9.31934 11.3429 9.31934C11.4349 9.31934 11.5095 9.24467 11.5095 9.15267C11.5095 9.06067 11.4349 8.986 11.3422 8.986' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67544 11.6526C4.58344 11.6526 4.50878 11.7273 4.50944 11.8193C4.50944 11.9113 4.58411 11.986 4.67611 11.986C4.76811 11.986 4.84278 11.9113 4.84278 11.8193C4.84278 11.7273 4.76811 11.6526 4.67544 11.6526' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.00869 11.6526C7.91669 11.6526 7.84203 11.7273 7.84269 11.8193C7.84269 11.9113 7.91736 11.986 8.00936 11.986C8.10136 11.986 8.17603 11.9113 8.17603 11.8193C8.17603 11.7273 8.10136 11.6526 8.00869 11.6526' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 8px center;
    z-index: 999;
}

.avenue-grid figure figcaption.bottom-right-center {
    bottom: 1rem;
    right: 1rem;
    border: 1px solid #CBD4D8;
    padding: 10px 8px 10px 28px;
    font-size: 10px;
    color: #FAF6F2;
    backdrop-filter: blur(6px);
    background-color: #00000066;
    border-radius: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='17' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.6666 1.83337V4.50004' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.33333 1.83337V4.50004' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2 6.49996H14' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.6667 3.16663H3.33333C2.59667 3.16663 2 3.76329 2 4.49996V13.1666C2 13.9033 2.59667 14.5 3.33333 14.5H12.6667C13.4033 14.5 14 13.9033 14 13.1666V4.49996C14 3.76329 13.4033 3.16663 12.6667 3.16663Z' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67544 8.986C4.58344 8.986 4.50878 9.06067 4.50944 9.15267C4.50944 9.24467 4.58411 9.31934 4.67611 9.31934C4.76811 9.31934 4.84278 9.24467 4.84278 9.15267C4.84278 9.06067 4.76811 8.986 4.67544 8.986' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.00869 8.986C7.91669 8.986 7.84203 9.06067 7.84269 9.15267C7.84269 9.24467 7.91736 9.31934 8.00936 9.31934C8.10136 9.31934 8.17603 9.24467 8.17603 9.15267C8.17603 9.06067 8.10136 8.986 8.00869 8.986' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.3422 8.986C11.2502 8.986 11.1755 9.06067 11.1762 9.15267C11.1762 9.24467 11.2509 9.31934 11.3429 9.31934C11.4349 9.31934 11.5095 9.24467 11.5095 9.15267C11.5095 9.06067 11.4349 8.986 11.3422 8.986' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.67544 11.6526C4.58344 11.6526 4.50878 11.7273 4.50944 11.8193C4.50944 11.9113 4.58411 11.986 4.67611 11.986C4.76811 11.986 4.84278 11.9113 4.84278 11.8193C4.84278 11.7273 4.76811 11.6526 4.67544 11.6526' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.00869 11.6526C7.91669 11.6526 7.84203 11.7273 7.84269 11.8193C7.84269 11.9113 7.91736 11.986 8.00936 11.986C8.10136 11.986 8.17603 11.9113 8.17603 11.8193C8.17603 11.7273 8.10136 11.6526 8.00869 11.6526' stroke='%23CBD4D8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 8px center;
    text-transform: uppercase;
    z-index: 999;
}

.avenue-grid figure figcaption.top-right {
    left: unset;
    top: 1rem;
    right: 1rem;
    border: 1px solid #CBD4D8;
    padding: 6px 7px;
    font-size: 10px;
    color: #FAF6F2;
    backdrop-filter: blur(6px);
    background-color: #00000066;
    border-radius: 24px;
    z-index: 999;
}

.avenue-grid figure figcaption.bottom-right {
    bottom: 1rem;
    right: 1rem;
    border: 1px solid #CBD4D8;
    padding: 6px 7px;
    font-size: 10px;
    color: #FAF6F2;
    backdrop-filter: blur(6px);
    background-color: #00000066;
    border-radius: 24px;
    z-index: 999;
}

.avenue-grid figure figcaption.bottom-left {
    left: 1rem;
    bottom: 1rem;
    background-color: white;
    border-radius: 24px;
    padding: 8px 10px;
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;
    color: #45565C;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
}

.avenue-grid figure figcaption.video-title {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    font-size: 20px;
    color: #FAF6F2;
    font-weight: 400;
    line-height: 24px;
    filter: blur(0px);
}

.videos .avenue-grid--big > div {
    position: relative;
}

.videos .avenue-grid--big .shadow-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), transparent);
    height: 33%;
    border-radius: 4px;
}

.videos .avenue-grid--big .shadow-down {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
    border-radius: 4px;
}

.avenue-grid h3 {
    margin-top: 8px;
}

.avenue-grid h3 a {
    font-size: 20px;
    font-weight: 400;
    color: #002820;
    text-decoration: none;
    cursor: pointer;
}

.avenue-grid p {
    font-size: 16px;
    color: #45565C;
}

.avenue-grid--big {
    flex-wrap: nowrap;
}

.avenue-grid--big>div {
    max-width: 580px;
}

.avenue-grid--medium>div {
    max-width: 270px;
}

.avenue-grid--small>div {
    max-width: 270px;
}

@media (max-width: 767px) {
    .block-grid-posts-by-category {
        padding: 32px 0;
    }
    .avenue-grid {
        padding: 0 24px;
        gap: 24px;
    }

    .avenue-grid--big {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .avenue-grid--big>div {
        max-width: 320px;
    }

    .avenue-grid--big figure .avenue-grid--image {
        max-width: 320px;
        min-height: 280px;
        object-fit: cover;
    }

    .avenue-grid--medium,
    .avenue-grid--small {
        flex-direction: column;
    }

    .avenue-grid--medium>div,
    .avenue-grid--small>div {
        max-width: 100%;
    }

    .avenue-grid--medium figure .avenue-grid--image,
    .avenue-grid--small figure .avenue-grid--image {
        min-width: 100%;
        height: 160px;
        object-fit: cover;
    }
}




/**
 * Block - Posts mais lidos
 */
.as-mais-lidas {
    padding: 64px 0;
}

.as-mais-lidas .avenue-section__title {
    margin-bottom: 40px;
}

.as-mais-lidas .avenue-grid {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .as-mais-lidas {
        padding: 32px 0;
    }

    .as-mais-lidas .avenue-section__title {
        padding: 0 24px;
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px;
    }

    .as-mais-lidas .avenue-grid--medium {
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .as-mais-lidas .avenue-grid--medium figure .avenue-grid--image {
        height: 320px;
    }
}




/* Block - Educacional */

.educacional {
    background-color: #002218;
    padding: 64px 0;
}

.educacional .container {
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.educacional a {
    text-decoration: none;
}

.educacional--title {
    align-self: center;
}

.educacional--title h2 {
    font-size: 32px;
    font-weight: 500;
    color: #FAF6F2;
    margin: 0;
}

.educacional--title p {
    font-size: 16px;
    font-weight: 400;
    color: #FAF6F2;
    line-height: 20px;
}

.educacional--title a {
    width: fit-content;
    margin-top: 24px;
}

.educacional h3 {
    font-size: 20px;
    color: #FAF6F2;
    font-weight: 400;
}

.educacional .avenue-grid {
    margin-bottom: 0;
}

.educacional__footer {
    display: none; 
}

@media (max-width: 767px) {
    .educacional {
        padding: 32px 0;
    }

    .educacional__footer {
        display: flex;
        padding: 24px 24px 0 24px;
    }

    .educacional .container {
        flex-direction: column;
    }

    .educacional .avenue-grid--medium .avenue-grid--image {
        height: 320px;
    }

    .educacional .avenue-grid--medium > div {
        min-width: 270px;
    }

    .educacional .avenue-grid--medium {
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .educacional--title .avenue-button--go {
        display: none;
    }
    .educacional__footer .avenue-button--single {
        width: 100%;
        justify-content: center;
    }
}




/* Block - Nossos Autores */

.nossos-autores {
    background-color: #F4F6F7;
    padding: 64px 0;
}

.nossos-autores__description {
    font-size: 16px;
    color: #45565C;
    margin-top: 8px;
    margin-bottom: 64px;
    max-width: 430px;
}

.nossos-autores__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.nossos-autores__card {
    background-color: white;
    border-radius: 4px;
    padding: 16px;
    gap: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration-line: none;
}

.nossos-autores__card > div {
    min-width: 145px;
}

.nossos-autores__card h4 {
    font-size: 20px;
    font-weight: 500;
    color: #002820;
    margin-bottom: 4px;
}

.nossos-autores__card p {
    font-size: 16px;
    font-weight: 400;
    color: #45565C;
}

.nossos-autores__card img {
    width: 64px;
    height: 64px;
    border-radius: 32px;
}

@media (max-width: 768px) {
    .nossos-autores {
        padding: 32px 0;
    }
    .nossos-autores .container {
        padding: 0 24px;
    }
    .nossos-autores__description {
        margin-bottom: 32px;
    }
    .block-categories__wrapper {
        padding: 0 24px;
    }
}




/* Block - Podcast */

.podcast {
    padding: 64px 0;
}

.podcast__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
}

.podcast-image {
    width: 270px;
    height: 270px;
}

@media (max-width: 767px) {
    .podcast {
        padding: 32px 0;
    }

    .podcast__header {
        padding: 0 24px;
        margin-bottom: 32px;
    }

    .podcast .avenue-section__title {
        font-size: 24px;
        line-height: 32px;
    }

    .podcast .avenue-grid--medium {
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .podcast .avenue-grid--medium figure .avenue-grid--image {
        height: 320px;
    }
}




/* Block - newsletter */

.newsletter {
    padding: 64px 0;
}

.newsletter .avenue-section__title {
    margin-bottom: 32px;
}

.newsletter__content {
    display: flex;
    align-items: center;
    background-color: #F4F6F7;
    border-radius: 4px;
    padding: 32px;
    transition: all 0.5s ease-in;
}

.newsletter__first-step, .newsletter__second-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.newsletter__second-step > div {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter__second-step p {
    font-size: 16px;
    line-height: 20px;
    color: #45565C;
}

.newsletter__loading {
    justify-content: center;
    padding: 32px 0;
    display: flex;
    width: 100%;
}

.newsletter__loading .spinner {
    animation: rotate 1.5s linear infinite;
    transform-origin: center;
    will-change: transform;
}

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

.newsletter__heading {
    display: flex;
    align-items: center;
    width: 430px;
}

.newsletter__heading svg {
    width: 100%;
}

.newsletter__heading h5 {
    font-size: 16px;
    font-weight: 400;
    color: #45565C;
    max-width: 290px;
    line-height: 20px;
}

.newsletter__heading h5 p {
    padding: 2px 0;
}

.newsletter__form {
    display: flex;
    width: 630px;
}

.newsletter__form form {
    display: flex;
    align-items: center;
    gap: 16px;
}

.newsletter__form form > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter__form label {
    font-size: 14px;
    font-weight: 500;
    color: #002820;
}

.newsletter__form input[type=text],
.newsletter__form input[type=email] {
    border: 1px solid #8F9FA6;
    background-color: white;
    height: 56px;
    width: 240px;
    border-radius: 8px;
    padding: 16px;
}

.newsletter__form input[type=submit] {
    border: none;
    align-self: center;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .newsletter__main {
        padding: 0 24px;
    }
    .newsletter__first-step, .newsletter__heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        width: 100%;
    }
    .newsletter__second-step {
        flex-direction: column;
    }
    .newsletter__second-step > div {
        gap: 32px;
    }
    .newsletter__second-step svg {
        align-self: flex-start;
    }
    .newsletter__form {
        display: block;
    }
    .newsletter__form form {
        flex-direction: column;
    }
    .newsletter__form, 
    .newsletter__heading, 
    .newsletter__form form > div {
        width: 100%;
    }
    .newsletter__heading svg {
        width: fit-content;
    }
    .newsletter__form input[type=submit],
    .newsletter__form input[type=text], 
    .newsletter__form input[type=email] {
        width: 100%;
    }
}



/* Block - Principais assuntos */

.main-subjects {
    background-color: #F4F6F7;
    padding: 64px 0;
}

.main-subjects .avenue-section__title {
    margin-bottom: 32px;
}

.main-subjects__cards {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    overflow-x: auto;
}

.main-subjects--label {
    background-color: white;
    /* height: 40px; */
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #002820;
    border-radius: 24px;
    white-space: nowrap;
}




/* Block -- Videos */

.videos {
    padding: 64px 0;
}

.videos__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    align-items: center;
}

@media (max-width: 767px) {
    .videos {
        padding: 32px 0;
    }

    .videos__header {
        padding: 0 24px;
        margin-bottom: 32px;
    }

    .videos .avenue-section__title {
        font-size: 24px;
        line-height: 32px;
    }
}



/* Block - Simuladores */

.ferramentas {
    padding: 64px 0;
}

.ferramentas .avenue-grid {
    margin-bottom: 0;
}

.ferramentas .ferramentas__heading {
    margin-bottom: 40px;
}

.ferramentas .ferramentas__heading ul {
    display: flex;
    align-items: center;
}

.ferramentas .ferramentas__heading ul li {
    border-right: 1px solid #DDDDDD;
    padding: 0 32px;
}

.ferramentas .ferramentas__heading ul li:first-child {
    padding-left: 0;
}

.ferramentas .ferramentas__heading ul li:last-child {
    border-right: none;
}

.ferramentas .avenue-section__title {
    font-size: 40px;
    color: #002820;
    font-weight: 500;
}

.ferramentas .avenue-section__title--disabled {
    font-size: 32px;
    color: #8F9FA6 !important;
    line-height: 56px;
}

.ferramentas .avenue-button--go {
    width: fit-content;
    margin-top: 8px;
}




/* Block - Web Stories */

.webstories {
    padding: 64px 0;
    background-color: #002218;
    color: #FAF6F2;
    /* 270x480 */
}

.webstories .avenue-section__title {
    font-family: var(--title-font-family);
    font-size: 32px;
    font-weight: 500;
    color: #FAF6F2;
    margin-bottom: 40px;
}

.webstories .avenue-grid {
    margin-bottom: 0;
}

.webstories p {
    font-size: 16px;
    line-height: 20px;
    color: #FAF6F2;
    font-weight: 400;
}
.webstories figure img {
    border-radius: 4px;
}

.webstories-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  height: 40px;
}

.webstories-navigation .swiper-button-prev,
.webstories-navigation .swiper-button-next {
  position: static;
  width: auto;
  height: auto;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  margin-top: 0;
}

.webstories-navigation .swiper-button-prev::after,
.webstories-navigation .swiper-button-next::after {
  display: none;
}

.webstories-navigation .swiper-button-prev svg,
.webstories-navigation .swiper-button-next svg {
  width: 40px;
  height: 40px;
  transition: stroke 0.3s;
  pointer-events: bounding-box;
}

.webstories-navigation .swiper-pagination {
  flex-grow: 1;
  text-align: center;
  position: static;
}

.webstories-navigation .swiper-pagination-bullet {
  background-color: #d0d0d0;
  opacity: 1;
}

.webstories-navigation .swiper-pagination-bullet-active {
  background-color: #47E57F;
  transform: scale(1.3);
  transition: transform 0.3s ease;
}

.webstories .swiper-slide {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
    .webstories figure img {
        width: 100% !important;
        object-fit: cover;
    }
}


/* 
 * Block - Header Post Detail 
 */
.header-post-detail {
    position: relative;
    height: 685px;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-post-detail__title {
    background-color: white;
    padding: 80px 120px;
    width: 880px;
    position: relative;
    margin-top: -220px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.header-post-detail__title h3 {
    font-size: 40px;
    line-height: 56px;
    font-weight: 500;
    font-family: var(--title-font-family);
    text-decoration: none;
    color: #002820;
}

.header-post-detail__title p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #002820;
    text-decoration: none;
}

.header-post-detail__social-share {
    position: absolute;
    bottom: 40px;
    right: 0;
    display: flex;
    gap: 38px;
    align-items: center;
}

.header-post-detail__social-share .divider {
    border-right: 1px solid var(--section-color-divider-default, #CBD4D8);
    height: 24px;
    width: 1px;
}
.like-button {
    display: flex;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
}
.header-post-detail__social-share .like-count {
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: white;
}

.header_post_detail_vertical_share {
    position: fixed;
    right: 24px;
    flex-direction: column;
    gap: 40px;
    top: 100px;
    align-items: center;
    justify-content: space-around;
    padding: 1rem 8px;
    z-index: 9999;
    /* 
    box-shadow: 0px 4px 4px 0px #0000000A;
    border-radius: 4px 0px 0px 4px;
    border: 1px solid #CBD4D8;
    */
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.header_post_detail_vertical_share.visible {
    opacity: 1;
    visibility: visible;
}
.header_post_detail_vertical_share .divider {
    border-bottom: 1px solid black;
    height: 1px;
    width: 100%;
    margin: -8px 0;
}
.header_post_detail_vertical_share a svg path {
    fill: black;
}

@media (max-width: 767px) {
    .header_post_detail_vertical_share {
        display: none;
    }
    .header-post-detail {
        height: 300px;
        background-position: center center;
    }
    .header-post-detail .container {
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    .header-post-detail__social-share {
        position: relative;
        left: unset;
        bottom: unset;
        right: unset;
        margin-bottom: 32px;
        gap: 32px;
    }
    .header-post-detail__title {
        margin-top: 0;
        padding: 32px 24px;
        width: 100%;
    }
    .header-post-detail__title h3 {
        line-height: 40px;
        font-size: 32px;
    }
}

@media (min-width: 1441px) {
    .header-post-detail__title {
        margin-left: auto;
        margin-right: auto;
        transform: translateX(-270px);
    }
}


/**
 * Block - Audio
 */

.block-audio {
    padding: 64px 0;
}
.block-audio .container {
    height: auto;
}
.block-audio .custom-audio-block {
    background-color: #f4f6f7;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 8px;
    max-width: 640px;
}
.block-audio .audio-header {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}
.audio-summary-header .audio-header {
    margin-bottom: 0;
}
.block-audio .audio-player-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.block-audio .audio-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.block-audio .play-btn, .speed-btn, .toggle-summary {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}
.block-audio .speed-btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    background-color: white;
    border-radius: 4px;
    padding: 8px;
    text-decoration: none;
}
.block-audio .play-btn {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21 12V12C21 16.971 16.971 21 12 21V21C7.029 21 3 16.971 3 12V12C3 7.029 7.029 3 12 3V3C16.971 3 21 7.029 21 12Z' stroke='%23002820' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.941 9.05783L14.823 11.3538C15.314 11.6438 15.314 12.3548 14.823 12.6448L10.941 14.9408C10.441 15.2368 9.80902 14.8758 9.80902 14.2948V9.70383C9.80902 9.12283 10.441 8.76183 10.941 9.05783V9.05783Z' stroke='%23002820' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: white;
    background-position: center center;
}
.block-audio .play-btn.pause {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23000000' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24px' height='24px' viewBox='-47.81 -47.81 573.75 573.75' xml:space='preserve' stroke='%23000000' transform='matrix(1, 0, 0, 1, 0, 0)rotate(0)'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23CCCCCC' stroke-width='4.78125'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath d='M201.654,127.525h-31.9c-10.557,0-19.125,8.645-19.125,19.125v184.9c0,10.558,8.645,19.125,19.125,19.125h31.9 c10.557,0,19.125-8.645,19.125-19.125v-184.9C220.779,136.094,212.211,127.525,201.654,127.525z'%3E%3C/path%3E%3Cpath d='M308.448,127.525h-31.9c-10.558,0-19.125,8.645-19.125,19.125v184.9c0,10.558,8.645,19.125,19.125,19.125h31.9 c10.557,0,19.125-8.645,19.125-19.125v-184.9C327.573,136.094,318.929,127.525,308.448,127.525z'%3E%3C/path%3E%3Cpath d='M239.062,0C107.023,0,0,107.023,0,239.062s107.023,239.062,239.062,239.062s239.062-107.023,239.062-239.062 S371.102,0,239.062,0z M239.292,409.811c-94.171,0-170.519-76.424-170.519-170.519S145.197,68.773,239.292,68.773 c94.095,0,170.519,76.424,170.519,170.519S333.54,409.811,239.292,409.811z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.block-audio .progress-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.block-audio .progress-bar {
    position: relative;
    flex-grow: 1;
    height: 6px;
    background-color: white;
    border-radius: 3px;
    overflow: hidden;
}
.block-audio .progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #47e57f;
    transition: width 0.2s linear;
}
.block-audio .duration-display {
    font-size: 14px;
    line-height: 18px;
    color: black;
    min-width: 40px;
    text-align: right;
    font-weight: 500;
}
.block-audio .audio-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.block-audio .audio-summary-header > div {
    display: flex;
    flex-direction: column;
}
.block-audio .audio-summary-accordion p, .summary-content {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #45565C;
}
.block-audio .toggle-summary {
    font-size: 18px;
    height: 32px;
}
.block-audio .toggle-summary.expanded {
    transform: rotate(45deg);
}
.block-audio .summary-content {
    margin-top: 8px;
    border-radius: 4px;
}
@media (max-width: 767px) {
    .block-audio {
        padding: 24px;
    }
}


/**
 * Block - Team Lead
 */

.team-lead {
    padding: 64px 0;
}

.team-lead .avenue-section__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.team-lead .avenue-section__description {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 80px;
    color: #45565C;
    max-width: 640px;
}

.team-lead .avenue-grid--medium>div {
    max-width: 300px;
}
.team-lead .avenue-grid--medium h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #002820;
}
.team-lead .avenue-grid--medium > div > a {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-decoration-line: none;
}
.team-lead .avenue-grid--medium p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #45565C;
    margin-top: -12px;
}

.team-lead figure {
    height: 330px;
    background-color: #002820;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(100px);
}

.team-lead figure img {
    width: 300px;
    height: 330px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .team-lead .avenue-section__title {
        font-size: 20px;
        line-height: 24px;
        padding: 0 24px;
    }
    .team-lead .avenue-section__description {
        padding: 0 24px;
        margin-bottom: 32px;
    }
    .team-lead .avenue-grid {
        padding: 0px 24px;
    }
    .team-lead .avenue-grid--medium>div {
        gap: 16px;
        flex: 0 0 300px;
    }
    .team-lead .avenue-grid--medium {
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .team-lead .avenue-grid--medium figure .avenue-grid--image {
        height: 100%;
    }

    .team-lead figure img {
        width: auto;
    }
}


/**
 * Block - Big Number
 */

.big-number {
    padding: 64px 0;
}

.big-number .avenue-section__title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.big-number .avenue-section__description {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 80px;
    color: #45565C;
    max-width: 640px;
}

.big-number .avenue-grid--medium>div {
    width: 300px;
}
.big-number .avenue-grid--medium h3 {
    font-family: var(--title-font-family);
    font-size: 92px;
    font-weight: 400;
    line-height: 100%;
    color: #002820;
}
.big-number .avenue-grid--medium p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #45565C;
}

.big-number .avenue-grid:last-child {
    margin-bottom: 0;
} 

@media (max-width: 767px) {
    .big-number {
        padding: 32px 0;
    }
    .big-number .avenue-section__title {
        padding: 0 24px;
    }
    .big-number .avenue-section__description {
        padding: 0 24px;
        margin-bottom: 32px;
    }
    .big-number .avenue-grid {
        padding: 0px 24px;
    }
    .big-number .avenue-grid--medium>div {
        gap: 16px;
    }
}


/**
 * Block - Summary Executive
 */

.block-summary-executive {
    padding: 64px 0;
}
.block-summary-executive .container {
    height: auto;
}
.block-summary-executive__header {
    max-width: 640px;
    margin-bottom: 32px;
}
.block-summary-executive h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 20px;
    color: #002820;
}
.block-summary-executive p, .block-summary-executive__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #45565C;
}

.block-summary-executive__content {
    box-shadow: 0px 4px 4px 0px #0000000A;
    border-radius: 4px;
    max-width: 980px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.block-summary-executive__content {
    display: flex;
    gap: 24px;
}
.block-summary-executive__message {
    display: flex;
}
.block-summary-executive__message > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.block-summary-executive__content h3 {
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 20px;
    color: #002820;
    max-width: 568px;
}
.block-summary-executive__content h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}
.block-summary-executive .separator {
    border-right: 1px solid #CBD4D8;
    padding-left: 24px;
    margin-right: 24px;
}
.block-summary-executive__share {
    display: flex;
    gap: 32px;
    align-items: center;
}
.block-summary-executive__share a svg path {
    fill: black;
}
@media (max-width: 767px) {
    .block-summary-executive {
        padding: 32px;
    }
    .block-summary-executive__message {
        flex-direction: column;
        gap: 24px;
    }
    .block-summary-executive .separator {
        border-right: unset;
        border-bottom: 1px solid #CBD4D8;
        padding-left: unset;
        margin-right: unset;
    }
    .block-summary-executive__content {
        gap: 32px;
    }
    .block-summary-executive__content h3 {
        padding-bottom: 0;
    }
    .block-summary-executive__header {
        margin-bottom: 32px;
    }
    .block-summary-executive__share {
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .block-summary-executive__share {
        gap: 24px;
    }
}


/**
 *  Block - Accordion
 */

.block-accordion {
    padding: 64px 0;
    background-color: #002218;
}

.block-accordion__header {
    display: flex;
    max-width: 780px;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.block-accordion__header h2, .block-accordion__item h3 a {
    font-family: var(--title-font-family);
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
    color: white;
    text-decoration: none;
}

.block-accordion__header p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: white;
}

.block-accordion__items {
    display: flex;
    flex-direction: column;
}

.block-accordion__item {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--section-color-icon-button-icon-overlay-disabled, #45565C);
    padding: 40px 0;
}

.block-accordion__item:last-child {
    border-bottom: 1px solid var(--section-color-icon-button-icon-overlay-disabled, #45565C);
}

.block-accordion__item h3 a {
    display: flex;
    gap: 16px;
    align-items: center;
}

.block-accordion__tab-content {
    /* display: none; */
    color: white;

    display: block !important;
    visibility: hidden;
    opacity: 0;

    transition: 
        max-height 0.3s ease, 
        padding 0.3s ease,
        visibility 0.3s ease,
        opacity 0.3s ease;
    max-height: 0;
    /* overflow: hidden; */
}

.block-accordion__tab-content p, ul {
    padding: 4px 0;
}

.block-accordion__tab-content strong {
    font-weight: 500;
}

.block-accordion__tab-content a {
    color: white;
}

.block-accordion__tab-content.active {
    padding: 24px 0 16px 0;
    max-height: 100%;
    visibility: visible;
    opacity: 1;
}

.block-accordion__item-link svg {
    transition: transform 0.3s ease;
}

.block-accordion__item-link.active svg {
    transform: rotate(45deg);
}

@media (max-width: 767px) {
    .block-accordion {
        padding: 32px 24px;
    }
    .block-accordion__header h2, .block-accordion__item h3 a {
        font-size: 24px;
        line-height: 32px;
    }
    .block-accordion__header {
        margin-bottom: 48px;
    }
}


/**
 * Block - Gallery
 */

.block-gallery {
    padding: 64px 0;
}
.block-gallery .galeria-swiper-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 980px;
    height: 520px;
    overflow: hidden;
}

.block-gallery .galeria-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    user-select: none;
}

.block-gallery .galeria-swiper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.block-gallery .galeria-contador {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-family: sans-serif;
    z-index: 10;
}

.block-gallery .swiper-button-prev,
.block-gallery .swiper-button-next {
    color: #000;
    background: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 4px;
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    bottom: 20px;
    top: auto !important;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.block-gallery .swiper-button-prev {
    left: 20px;
}
.block-gallery .swiper-button-next {
    left: 64px;
}

.block-gallery .swiper-button-prev,
.block-gallery .swiper-button-next {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.block-gallery .swiper-button-next svg, 
.block-gallery .swiper-button-prev svg {
    width: 16px;
    height: 16px;
}

.block-gallery .swiper-button-prev::after,
.block-gallery .swiper-button-next::after {
    font-size: 16px;
    content: '';
}

/* .block-gallery .swiper-button-prev::after {
    content: '←';
}

.block-gallery .swiper-button-next::after {
    content: '→';
} */

@media (max-width: 768px) {
    .block-gallery {
        padding: 16px 24px;
    }
    .block-gallery .galeria-swiper-container {
        height: 250px;
    }

    .block-gallery .galeria-contador {
        bottom: 10px;
        right: 10px;
        font-size: 12px;
    }

    .block-gallery .galeria-swiper img {
        height: 250px;
    }

    .block-gallery .swiper-button-prev,
    .block-gallery .swiper-button-next {
        width: 28px;
        height: 28px;
        font-size: 14px;
        bottom: 10px;
    }

    .block-gallery .swiper-button-prev {
        left: 16px;
    }

    .block-gallery .swiper-button-next {
        left: 58px;
    }
}


/**
 * Block - Text CTA
 */

.text-cta {
    padding: 32px 0;
}

.text-cta .text-cta__content {
    border: 1px solid #CBD4D8;
    border-radius: 4px;
    max-width: 640px;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-cta .text-cta__content p { 
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #45565C;
}

.text-cta .text-cta__content .avenue-button--single {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    padding: 16px 32px;
    color: #002820;
}

@media (max-width: 768px) {
    .text-cta {
        padding: 16px 24px;
    }
    .text-cta .text-cta__content {
        flex-direction: column;
        padding: 24px 32px;
        gap: 16px;
    }
    .text-cta .text-cta__content .avenue-button--single {
        justify-content: center;
        line-height: 18px;
        font-weight: 500;
        font-size: 14px;
        width: 100%;
    }
}


/**
 * Block - Video Full
 */
.video-full {
    margin: 64px 0;
    background-position: center center;
    background-size: cover;
    height: 810px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

@media (max-width: 768px) {
    .video-full {
        margin: 32px 0;
        height: 210px;
    }
}


/**
 * Block - Recomendação
 */
.recommendation {
    background-color: #F4F6F7;
    padding: 64px 0;
}
.recommendation__wrapper {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.recommendation h2 {
    font-weight: 400;
}
.recommendation .avenue-grid {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .recommendation {
        padding: 32px 0;
    }
    .recommendation h2 {
        font-size: 20px;
        line-height: 24px;
        font-weight: 500;
        padding: 0 24px;
    }
    .recommendation__wrapper {
        gap: 32px;
    }
    .recommendation .avenue-grid--medium {
        flex-wrap: nowrap;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .recommendation .avenue-grid--medium figure .avenue-grid--image {
        height: 320px;
    }
}


/**
 * Block - Category/Tag Title
 */
.page-category-heading {
    padding: 64px 0;
}
.page-category-heading__wrapper {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.page-category-heading .page-category-heading__title {
    display: flex;
    gap: 10px;
    align-items: center;
}
.page-category-heading .page-category-heading__title h2 {
    font-family: var(--title-font-family);
    font-size: 56px;
    line-height: 64px;
    font-weight: 500;
    color: #002820;
}
.page-category-heading .page-category-heading__description {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #45565C;
}
.page-category-heading .tag-color {
    background-color: #47E57F;
    width: 8px;
    height: 48px;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .page-category-heading {
        padding: 32px 24px;
    }
    .page-category-heading__wrapper {
        gap: 16px;
    }
    .page-category-heading .page-category-heading__title h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .page-category-heading .page-category-heading__description {
        font-size: 18px;
        line-height: 24px;
    }
    .page-category-heading .tag-color {
        width: 6px;
        height: 32px;
    }
}


/**
 * Block - Related topics
 */
.related-topics {
    padding: 64px 0;
}
.related-topics__wrapper {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.related-topics h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #002820;
}
.related-topics ul {
    display: flex;
    gap: 8px;
}
.related-topics ul li a {
    display: inline-block;
    text-decoration-line: none;
    text-transform: uppercase;
    border: 1px solid #CBD4D8;
    border-radius: 16px;
    padding: 8px;
    font-size: 10px;
    font-weight: 500;
    color: #45565C;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .related-topics {
        padding: 32px 24px;
    }
    .related-topics h2 {
        font-size: 20px;
        line-height: 24px;
    }
}

/*
negocios #4040F4
nvestimentos #2E8657
acoes #D05DD0
*/

/**
 * Block - Header Author
 */
.block-header-author {
    padding: 64px 0;
}
.block-header-author__content {
    display: flex;
    flex-direction: column;
    gap: 24px !important;
}
.block-header-author__title {
  gap: 20px;
  display: flex;
  align-items: center;
}

.block-header-author--sidebar .avenue-grid > div {
    max-width: 640px;
}

.block-header-author__title h4 {
  font-size: 20px;
  font-weight: 500;
  color: #002820;
  margin-bottom: 4px;
}

.block-header-author__description {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #45565C;
  max-width: 95%;
}

.block-header-author--sidebar .block-header-author__description {
    max-width: 100%;
}

.block-header-author__title img {
  width: 64px;
  height: 64px;
  border-radius: 32px;
}

.block-header-author__share {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 8px 0;
}
.block-header-author__share svg path {
    fill: black;
}
.block-header-author__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.block-header-author__footer .author-button {
    border: 1px solid #CBD4D8;
    border-radius: 100px;
    width: 240px;
    padding: 12px 0;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #002820;
    text-decoration: none;
}
.block-header-author .avenue-grid {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .block-header-author {
        padding: 32px 0;
    }
    .block-header-author .avenue-grid--big {
        overflow-x: unset;
        overflow-y: unset;
        scrollbar-width: none;
        flex-direction: column !important;
        gap: 64px;
    }
    .block-header-author .avenue-grid--big>div, 
    .block-header-author .avenue-grid--big figure .avenue-grid--image {
        max-width: 100% !important;
    }
    .block-header-author__description {
        max-width: 100%;
    }
    .block-header-author__footer {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        gap: 16px;
    }
}


/**
 * Block - Banner Grande
 */ 
.block-banner-large {
    /* margin: 64px 0; */
}
.block-banner-large__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.block-banner-large__main {
    display: flex;
    justify-content: space-between;
    gap: 0;
    height: 400px;
    align-items: center;
}
.block-banner-large__heading {
    display: flex;
    flex-direction: column; 
    gap: 16px;
}
.block-banner-large__heading p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #45565C;
    margin-bottom: 16px;
}
.block-banner-large__heading a {
    width: fit-content;
    padding: 16px 24px;
}
.block-banner-large__image {
    display: flex;
    align-self: flex-end;
}
.block-banner-large__image img {
    max-width: 100%;
    height: auto;
    max-height: 370px;
}
@media (max-width: 768px) {
    .block-banner-large__main {
        flex-direction: column;
        padding: 32px 24px;
        align-items: flex-start;
        height: auto;
        gap: 16px;
    }
    .block-banner-large__image img {
        max-height: 286px;
    }
    .block-banner-large__main a {
        min-width: 100%;
        text-align: center;
    }
}


/**
 * Block - Image
 */
.block-image {
    padding: 32px 0;
}
.block-image img {
    border-radius: 4px;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .block-image {
        padding: 32px 24px;
    }
}



/**
 * Bloco - Container
 */
.block-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 0;
}
.block-container-wrapper > .wp-block-heading {
    font-weight: 500;
    color: #002820;
    max-width: 980px;
    padding: 8px 0;
}
.block-container-wrapper > h1 {
    font-size: 32px;
    line-height: 40px;
}
.block-container-wrapper > h2 {
    font-size: 24px;
    line-height: 32px;
}
.block-container-wrapper > h3 {
    font-size: 18px;
    line-height: 20px;
}
.block-container-wrapper > p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #45565C;
    padding: 8px 0;
    max-width: 980px;
}
.block-container-wrapper a {   
    color: #002820;
}
.block-container-wrapper em {
  font-style: italic;
}
.block-container-wrapper ul {
    list-style: initial;
    padding-left: 16px;
}
.block-container-wrapper ul ul {
    list-style: revert;
}

@media (max-width: 768px) {
    .block-container-wrapper {
        padding: 24px;
    }
}


.avenue-grid--big figure img {
    background-color: #002800;
    width: 580px;
    height: 280px;
    display: block;
}



/**
 * Block - Web Stories
 */
.web-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.web-story-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.story-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.web-story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    overflow: hidden;
}

.web-story-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 700px;
    margin: auto;
    background: #000;
}

.web-story-viewport {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.web-story-top-mask {
    background: linear-gradient(180deg,#000 0,rgba(0,0,0,0) 43.75%); 
}
.web-story-bottom-mask {
    background: linear-gradient(0deg,#000 0,rgba(0,0,0,0) 43.75%); 
}
.web-story-center-mask {
    background: linear-gradient(0deg,#000 0,rgba(0,0,0,0) 43.75%);
}

.web-story-slide-text {
    color: white;
    text-align: center;
    display: block;
    text-shadow: 0 1px 0 black;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--title-font-family);
    padding: 0 24px;
}

.web-story-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    color: white;
    display: none;
}

.web-story-slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.web-story-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
}

.web-story-navigation {
    position: absolute;
    top: calc(50% - 48px);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.web-story-navigation button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.web-story-navigation .prev-slide {
    margin-left: -100px;
}

.web-story-navigation .next-slide {
    margin-right: -100px;
}

.web-story-progress-container {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 10000;
    display: flex;
    gap: 5px;
}

.web-story-progress-bar {
    height: 3px;
    background: rgba(255,255,255,0.3);
    flex-grow: 1;
    border-radius: 3px;
    overflow: hidden;
}

.web-story-progress-fill {
    height: 100%;
    width: 0%;
    background: white;
    transition: width linear;
}

.web-story-close {
    top: 25px;
}

.web-story-slide {
    transform: scale(1);
    transition: transform 8s linear;
}

.web-story-slide.zooming {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .block-webstories {
        padding: 32px 24px;
    }
    .webstories .avenue-section__title {
        margin-bottom: 24px;
    }
    .block-webstories .avenue-grid {
        padding: 0;
    }
    .block-webstories .avenue-grid figure img {
        width: 100%;
        object-fit: cover;
    }

    .web-story-navigation .prev-slide {
        margin-left: 0px;
        user-select: none;
    }

    .web-story-navigation .next-slide {
        margin-right: 0px;
        user-select: none;
    }
}