/* ===== Post Advantages Block ===== */

.post-advantages {
    background: #fff;
}

.post-advantages__title,
.post-advantages .post-advantages__title {
    font-size: 26px !important;
    font-weight: 700;
    margin: 0 0 1.25rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.post-advantages__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.post-advantages__list li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.post-advantages__list li::before {
    display: none;
    content: none;
}

.post-advantages__item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 16px 18px;
}

.post-advantages__icon {
    flex-shrink: 0;
    line-height: 0;
}

.post-advantages__text {
    font-size: 15px;
    line-height: 1.5;
    color: #1a1a1a;
}

.post-advantages__cta {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.post-advantages__cta-btn,
.post-advantages .post-advantages__cta-btn,
.post-advantages .post-advantages__cta-btn:visited {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
}

.post-advantages .post-advantages__cta-btn:hover {
    opacity: 0.9;
    color: #fff !important;
}

.post-advantages__cta-subtitle,
.post-advantages .post-advantages__cta-subtitle {
    font-size: 11px !important;
    color: #000;
    margin: 0;
    text-align: center;
}

/* ===== Post CTA Options Block [opcoes] ===== */

.post-cta-options {
    margin: 0;
}

.post-cta-options__title {
    font-size: 15px !important;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin: 0 0 1rem !important;
}

.post-cta-options__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.post-cta-options__item,
.post-cta-options .post-cta-options__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.post-cta-options .post-cta-options__item:hover {
    transform: scale(1.03);
    color: #fff !important;
}

.post-cta-options .post-cta-options__item:active {
    transform: scale(0.98);
}

.post-cta-options__label {
    flex: 1;
    text-transform: uppercase;
}

.post-cta-options__arrow {
    flex-shrink: 0;
    line-height: 0;
    margin-left: 1rem;
}

.post-cta-options__subtitle {
    font-size: 11px !important;
    color: #888;
    text-align: center;
    margin: 0.75rem 0 0 !important;
}

/* ===== Post FAQ Block [duvidas] ===== */

.post-faq {
    margin: 0;
}

.post-faq .post-faq__title {
    font-size: 26px !important;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem !important;
    line-height: 1.3;
}

.post-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 0;
}

.post-faq__item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.post-faq__item--open {
    background: #f5f5f5;
    border-color: #f5f5f5;
}

.post-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    gap: 1.5rem;
    line-height: 1.35;
}

.post-faq__question:hover {
    color: #333;
}

.post-faq__toggle {
    flex-shrink: 0;
    color: #bbb;
    line-height: 0;
    transition: transform 0.3s ease;
}

.post-faq__item--open .post-faq__toggle {
    transform: rotate(180deg);
}

.post-faq__answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
}

.post-faq__item--open .post-faq__answer {
    display: block;
}

.post-faq__answer p {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.7;
    color: #555;
}

.post-faq__cta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.post-faq .post-faq__cta-btn,
.post-faq .post-faq__cta-btn:visited {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
}

.post-faq .post-faq__cta-btn:hover {
    opacity: 0.9;
    color: #fff !important;
}

.post-faq__cta-subtitle {
    font-size: 11px !important;
    color: #000;
    margin: 0 !important;
    text-align: center;
}

/* ===== Post Searches Block [pesquisas] ===== */

.post-searches {
    margin: 0;
}

.post-searches .post-searches__title {
    font-size: 22px !important;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1.25rem !important;
    line-height: 1.3;
}

.post-searches__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem;
}

.post-searches__item,
.post-searches .post-searches__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #f5f5f5;
    border-radius: 12px;
    text-decoration: none !important;
    color: #1a1a1a !important;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s ease;
    margin-top: 0 !important;
}

.post-searches .post-searches__item:hover {
    background: #eee;
    color: #1a1a1a !important;
}

.post-searches__label {
    flex: 1;
}

.post-searches__icon {
    flex-shrink: 0;
    line-height: 0;
    margin-left: 0.75rem;
}

@media (max-width: 768px) {
    .post-searches__grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== Responsivo Mobile - Todos os Blocos ===== */
@media (max-width: 768px) {
    .post-advantages .post-advantages__title {
        font-size: 22px !important;
    }

    .post-advantages__text {
        font-size: 13px;
    }

    .post-advantages__item {
        padding: 12px 14px;
    }

    .post-cta-options__item,
    .post-cta-options .post-cta-options__item {
        padding: 0.875rem 1rem;
        font-size: 13px;
        margin-top: 0 !important;
    }

    .post-cta-options__list {
        gap: 0.375rem;
    }

    .post-faq .post-faq__title {
        font-size: 20px !important;
    }

    .post-faq__question {
        font-size: 15px;
        padding: 1rem 1.125rem;
        gap: 1rem;
    }

    .post-faq__answer {
        padding: 0 1.125rem 1rem;
    }

    .post-faq__answer p {
        font-size: 13px !important;
    }

    .post-faq .post-faq__cta-btn,
    .post-faq .post-faq__cta-btn:visited {
        font-size: 14px;
        padding: 1rem;
    }

    .post-searches .post-searches__title {
        font-size: 18px !important;
    }

    .post-searches__item,
    .post-searches .post-searches__item {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* ===== Description Block [description] ===== */

.post-description {
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center !important;
}

.post-description__text {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #888 !important;
    font-style: italic !important;
    background: none !important;
    border: none !important;
    text-align: center !important;
}

/* ===== Banner CTA Block [banner] ===== */

.post-banner *,
.post-banner *::before,
.post-banner *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.post-banner {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.post-banner__body {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
}

.post-banner__image {
    width: 100%;
    margin-left: 20px;
    padding-right: 20px;
}

.post-banner__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.post-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

.post-banner__content {
    padding: 26px 28px 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.post-banner__label {
    font-size: 10px !important;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #6b7280;
    text-transform: uppercase;
}

.post-banner__title {
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.35 !important;
    color: #111827;
    margin: 0 !important;
    max-width: 640px;
}

.post-banner__title a {
    color: inherit !important;
    text-decoration: none !important;
}

.post-banner__title a:hover {
    text-decoration: underline !important;
}

.post-banner .post-banner__btn,
.post-banner .post-banner__btn:visited {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 28px;
    min-width: 260px;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.25s ease;
}

.post-banner .post-banner__btn:hover {
    opacity: 0.9;
    color: #fff !important;
}

.post-banner .post-banner__btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.25s ease;
}

.post-banner .post-banner__btn:hover svg {
    transform: translateX(6px);
}

.post-banner__subtitle {
    margin-top: 4px !important;
    font-size: 12px !important;
    line-height: 1.35;
    color: #6b7280;
    text-align: center;
    max-width: 520px;
}

@media (max-width: 768px) {
    .post-banner__body {
        grid-template-columns: 1fr;
    }

    .post-banner__image {
        margin: 20px 0 0 20px;
        width: auto;
        padding-right: 20px;
    }

    .post-banner__content {
        padding: 16px 18px 20px;
        text-align: center;
        align-items: center;
    }

    .post-banner__title {
        font-size: 20px !important;
    }

    .post-banner .post-banner__btn {
        width: 100%;
        min-width: 0;
        font-size: 15px;
        padding: 14px 22px;
    }

    .post-banner__subtitle {
        max-width: 100%;
    }
}
