/* Páginas genéricas (ex.: política) — tipografia da marca */
.post-page,
.content-page {
    padding: 48px 0 80px;
    background: var(--cream-section);
    min-height: 60vh;
}

.post-page__inner,
.content-page-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.post-page__header {
    margin-bottom: 32px;
    text-align: center;
}

.post-page__category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.post-page__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--teal-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.post-page__meta {
    font-size: 13px;
    color: var(--text-muted);
}

.post-page__cover {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-md);
}

.post-page__cover img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.post-content,
.text-box {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.post-content h2,
.post-content h3,
.text-box h2,
.text-box h3 {
    font-family: var(--font-serif);
    color: var(--teal-dark);
    margin: 32px 0 16px;
}

.post-content h2,
.text-box h2 {
    font-size: 1.5rem;
}

.post-content p,
.text-box p,
.text-box .body {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.post-content ul,
.text-box ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.post-content li,
.text-box li {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.post-content strong,
.text-box strong {
    color: var(--teal-dark);
    font-weight: 600;
}

.post-page__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    font-size: 14px;
    font-weight: 600;
    color: var(--terracotta);
}

.post-page__back:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .post-page,
    .content-page,
    .blog-post-page {
        padding: 8px 0 48px;
    }
}

/* ========== Posts do blog — tipografia / SEO ========== */
.blog-post-page {
    padding: 12px 0 64px;
    background: #fafafa;
    min-height: 60vh;
}

.blog-post {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 32px;
}

.blog-post-back {
    text-align: left;
    margin-bottom: 16px;
}

.blog-post-back a {
    font-family: Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--terracotta);
}

.blog-post-back a:hover {
    text-decoration: underline;
}

.blog-post-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.blog-post-category {
    display: inline-block;
    font-family: Verdana, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sage-label, #6B8F7A);
    background: rgba(107, 143, 122, 0.12);
    padding: 4px 10px;
    border-radius: 999px;
}

/* H1 — título do post */
.blog-post-page .blog-post-header h1 {
    font-family: Verdana, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-post-page .blog-post-description {
    font-family: Verdana, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.blog-post-page .blog-post-author {
    font-family: Verdana, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.blog-post-page .blog-post-author a {
    color: var(--teal, #2d646d);
}

.blog-post-hero {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-md);
    background: #fff;
}

.blog-post-hero img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.blog-post-figure {
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.blog-post-figure img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Corpo do post */
.blog-post-page .blog-post-content,
.blog-post-page .blog-post-content.text-box {
    font-family: Verdana, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #1a1a1a;
}

/* H2 — subtítulos de seção (mesmo tamanho em todos) */
.blog-post-page .blog-post-content h2 {
    font-family: Verdana, Arial, sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.35;
    margin: 32px 0 16px;
}

/* H3 — subseções (nível abaixo do H2, padrão único) */
.blog-post-page .blog-post-content h3 {
    font-family: Verdana, Arial, sans-serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.35;
    margin: 28px 0 12px;
}

.blog-post-page .blog-post-content h4,
.blog-post-page .blog-post-content h5 {
    font-family: Verdana, Arial, sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0 10px;
}

.blog-post-page .blog-post-content h4 {
    font-size: 18px;
}

.blog-post-page .blog-post-content h5 {
    font-size: 17px;
}

.blog-post-page .blog-post-content p,
.blog-post-page .blog-post-content .body,
.blog-post-page .blog-post-content li {
    color: #1a1a1a;
    font-size: inherit;
    line-height: inherit;
}

.blog-post-page .blog-post-content p,
.blog-post-page .blog-post-content .body {
    margin-bottom: 16px;
}

.blog-post-page .blog-post-content ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.blog-post-page .blog-post-content li {
    margin-bottom: 8px;
}

.blog-post-page .blog-post-content strong {
    color: #1a1a1a;
    font-weight: 700;
}

.blog-post-page .blog-post__author-bio {
    font-family: Verdana, Arial, sans-serif;
    color: #1a1a1a;
}

/* Tablet — posts */
@media (min-width: 768px) {
    .blog-post-page .blog-post-header h1 {
        font-size: 32px;
    }

    .blog-post-page .blog-post-content h2 {
        font-size: 24px !important;
    }

    .blog-post-page .blog-post-content h3 {
        font-size: 20px !important;
    }

    .blog-post-page .blog-post-content,
    .blog-post-page .blog-post-content.text-box {
        font-size: 18px;
    }

    .blog-post-page .blog-post-description {
        font-size: 18px;
    }
}

/* Desktop — posts */
@media (min-width: 1024px) {
    .blog-post-page .blog-post-header h1 {
        font-size: 36px;
    }

    .blog-post-page .blog-post-content h2 {
        font-size: 26px !important;
    }

    .blog-post-page .blog-post-content h3 {
        font-size: 22px !important;
    }

    .blog-post-page .blog-post-content,
    .blog-post-page .blog-post-content.text-box {
        font-size: 19px;
    }

    .blog-post-page .blog-post-description {
        font-size: 19px;
    }
}

.blog-list-page__header h1 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--terracotta);
    font-weight: 500;
}

/* Posts importados com design próprio */
.blog-post-page--rich {
    padding: 0 0 40px;
    background: transparent;
}

.blog-post-back--rich {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 16px 0;
    font-size: 14px;
}

.blog-post-back--rich a {
    color: var(--teal);
    text-decoration: none;
}

.blog-post-back--rich a:hover {
    color: var(--terracotta);
}

.imported-post {
    min-width: 0;
}

.blog-post-engagement {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px 24px;
}

.blog-post-page--rich .blog-post-engagement {
    max-width: 1180px;
}

.blog-post-engagement .post-actions {
    margin-top: 28px;
}

/* Related posts: estilos em related-posts.css */

/* Structured FAQ / HowTo blocks in content */
.psi-schema-faq,
.psi-schema-howto {
    margin: 28px 0;
    padding: 16px 0;
}

.psi-faq-item {
    margin-bottom: 16px;
}

.psi-faq-q {
    font-size: 1.05rem;
    margin: 0 0 8px;
    color: var(--teal-dark);
}

.psi-howto-steps {
    margin: 12px 0 0;
    padding-left: 1.25rem;
}

.psi-howto-step {
    margin-bottom: 10px;
}

/* CTA clínico (Fase 5) */
.psi-cta-clinico {
    margin: 36px 0;
    padding: 24px 22px;
    border-left: 3px solid var(--teal, #2d646d);
    background: linear-gradient(135deg, rgba(45, 100, 109, 0.06), rgba(196, 120, 92, 0.05));
}

.psi-cta-clinico__eyebrow {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--teal-dark, #2d646d);
}

.psi-cta-clinico__text {
    margin: 0 0 16px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text, #1a1a1a);
}

.psi-cta-clinico__actions {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.psi-cta-clinico__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.psi-cta-clinico__btn--wa {
    background: var(--teal-dark, #2d646d);
    color: #fff;
}

.psi-cta-clinico__btn--wa:hover {
    background: var(--terracotta, #c4785c);
    color: #fff;
}

.psi-cta-clinico__btn--schedule {
    background: transparent;
    color: var(--teal-dark, #2d646d);
    border: 1px solid rgba(45, 100, 109, 0.35);
}

.psi-cta-clinico__btn--schedule:hover {
    border-color: var(--terracotta, #c4785c);
    color: var(--terracotta, #c4785c);
}

/* Breadcrumb visual (alinhado ao BreadcrumbList do JSON-LD) */
.blog-post__breadcrumb {
    max-width: var(--container, 1100px);
    margin: 4px auto 8px;
    padding: 0 24px;
}

.blog-post__breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--text-muted, #5c6568);
}

.blog-post__breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    opacity: 0.55;
}

.blog-post__breadcrumb a {
    color: var(--teal, #2d646d);
    text-decoration: none;
}

.blog-post__breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post__author-bio {
    max-width: 720px;
    margin: 28px auto 8px;
    padding: 0 24px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #1a1a1a;
}

.blog-post__author-bio a {
    color: var(--teal, #2d646d);
    font-weight: 600;
}

