/* =============================================================
   AmorimWS — Páginas internas (blog, post, sobre, termos)
   Reusa os tokens/classes da landing.css (navy + esmeralda)
   ============================================================= */

.inner_page { position: relative; z-index: 1; }
.inner_hero { text-align: center; }
.inner_hero.landing_section_head { margin-bottom: 48px; }

/* ----- Busca do blog ----- */
.blog_search {
    max-width: 480px;
    margin: 26px auto 0;
    display: flex;
    gap: 10px;
}
.blog_search input {
    flex: 1;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    color: var(--white-90);
    font-size: 15px;
    font-family: inherit;
}
.blog_search input::placeholder { color: var(--white-40); }
.blog_search input:focus { outline: none; border-color: var(--green-500); }
.blog_search button {
    padding: 13px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: var(--gradient-green);
    color: #04241a;
    font-weight: 600;
    font-family: inherit;
    transition: transform .2s, box-shadow .2s;
}
.blog_search button:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }

/* ----- Paginação ----- */
.paginator {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 48px;
    padding: 0;
    list-style: none;
}
.paginator a, .paginator span {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 10px;
    background: var(--white-05);
    border: 1px solid var(--white-10);
    color: var(--white-70);
    font-size: 14px;
    transition: .2s;
}
.paginator a:hover { border-color: var(--green-500); color: var(--white); }
.paginator .active { background: var(--gradient-green); color: #04241a; border-color: transparent; font-weight: 600; }

/* ----- Empty state ----- */
.inner_empty { text-align: center; padding: 30px 0 10px; }
.inner_empty h3 { font-size: 22px; color: var(--white-90); margin: 0 0 8px; }
.inner_empty p { color: var(--white-60); }

/* ----- Post (artigo) ----- */
.post_hero { max-width: 820px; margin: 0 auto; text-align: center; }
.post_hero h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    margin: 0 0 22px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.post_meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--white-60);
    font-size: 14px;
}
.post_author { display: inline-flex; align-items: center; gap: 10px; }
.post_author img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1px solid var(--white-10); }
.post_author b { color: var(--white-90); font-weight: 600; }
.post_meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--white-40); display: inline-block; }
.post_cover { width: 100%; max-height: 460px; object-fit: cover; border-radius: 18px; border: 1px solid var(--white-10); }

.post_body {
    max-width: 760px;
    margin: 40px auto 0;
    color: var(--white-70);
    font-size: 17px;
    line-height: 1.78;
}
.post_body > h2 {
    color: var(--green-400);
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 26px;
    line-height: 1.25;
}
.post_body h2, .post_body h3, .post_body h4 { color: var(--white-90); margin: 36px 0 14px; line-height: 1.3; }
.post_body p { margin: 0 0 20px; }
.post_body a { color: var(--green-400); text-decoration: underline; }
.post_body img { border-radius: 12px; margin: 26px auto; border: 1px solid var(--white-10); }
.post_body ul, .post_body ol { margin: 0 0 20px; padding-left: 22px; }
.post_body li { margin-bottom: 8px; }
.post_body blockquote {
    margin: 26px 0;
    padding: 14px 22px;
    border-left: 3px solid var(--green-500);
    background: var(--white-05);
    border-radius: 0 10px 10px 0;
    color: var(--white-90);
}

.post_share {
    max-width: 760px;
    margin: 46px auto 0;
    padding-top: 28px;
    border-top: 1px solid var(--white-10);
}
.post_share h3 { font-size: 15px; color: var(--white-70); margin: 0 0 14px; font-weight: 500; }
.post_share_medias { display: flex; gap: 10px; flex-wrap: wrap; }

/* ----- Sobre ----- */
.about_intro { max-width: 720px; margin-left: auto; margin-right: auto; }

/* ----- FAQ ----- */
.faq_list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq_item { background: var(--white-05); border: 1px solid var(--white-10); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.faq_item.open { border-color: rgba(16, 185, 129, 0.4); }
.faq_q {
    width: 100%;
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--white-90);
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
}
.faq_q::after { content: "+"; font-size: 22px; color: var(--green-400); transition: transform .25s; flex-shrink: 0; }
.faq_item.open .faq_q::after { transform: rotate(45deg); }
.faq_a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 22px; color: var(--white-60); line-height: 1.7; }
.faq_item.open .faq_a { max-height: 800px; padding: 0 22px 20px; }

/* ----- Termos ----- */
.terms_body { max-width: 820px; margin: 0 auto; color: var(--white-70); font-size: 16px; line-height: 1.8; }
.terms_body p { margin: 0 0 16px; }
.terms_body strong { color: var(--white-90); display: inline-block; margin-top: 10px; }

/* ----- responsivo ----- */
@media (max-width: 620px) {
    .blog_search { flex-direction: column; }
    .blog_search input, .blog_search button { border-radius: 14px; }
    .post_meta { gap: 8px 12px; }
}
