.chamada2 {
    background: #fafafa;
    padding: 50px 100px;
}

.chamada2__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.chamada2__title {
    margin: 0;
    font-size: 40px;
    line-height: 52px;
    font-weight: 600;
    color: #176848;
}

.chamada2__subtitle {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    color: #707070;
    max-width: 796px;
}

.chamada2__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1240px;
    margin: 0 auto;
}

.chamada2__card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chamada2__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #11875c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chamada2__icon img {
    width: 28px;
    height: 28px;
}

.chamada2__card-title {
    margin: 0 0 4px;
    font-weight: 600;
    color: #242424;
}

.chamada2__card-text {
    margin: 0;
    color: #424242;
}

.chamada2__cta {
    margin-top: 24px;
    background: #18593e;
    color: #f0f0f0;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.chamada2__cta img {
    width: 21px;
    height: 21px;
}

@media (max-width: 1200px) {
    .chamada2 {
        padding: 48px 32px;
    }

    .chamada2__cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 799px) {
    .chamada2__heading {
        text-align: left;
        align-items: flex-start;
    }

    .chamada2__subtitle {
        font-size: 12px;
        line-height: 16px;
    }

    .chamada2__title {
        font-size: 20px;
        line-height: 28px;
    }

    .chamada2__cta {
        font-size: 12px;
        line-height: 16px;
    }

    .chamada2__cta img {
        display: none;
    }

    .chamada2__card {
        font-size: 12px;
        line-height: 16px;
    }
}