/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark:      #0C1B33;
    --bg-mid:       #122541;
    --bg-card:      #1B3358;
    --accent:       #1E8FE0;
    --accent-hover: #1763C6;
    --gold:         #c9a14a; /* OURO (revertido do verde). Verde da marca = #1AB87A; ciano = #2AB7E6. Vale só p/ texto/acento; botões seguem verdes. */
    --text-white:   #ebeef0;
    --text-muted:   #9ba5aa;
    --ink:          #0C1B33;
    --ink-soft:     #5a6670;
    --cream:        #f3f5f6;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 65px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: var(--ink);
    line-height: 1.6;
}

.accent { color: var(--accent); }

/* Skip link (acessibilidade) */
.skip-link {
    position: absolute; left: -999px; top: 0;
    background: var(--accent); color: var(--bg-dark);
    padding: 0.6rem 1rem; z-index: 1100; border-radius: 0 0 8px 0;
    font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* Header, .site-nav, botões e regras mobile do menu vêm de
   ../assets/site-header.css (compartilhado entre todas as páginas). */

/* ===== EYEBROW ===== */
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.65rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: calc(clamp(3rem, 6vw, 5rem) + 60px) 8% clamp(1.8rem, 3.4vw, 2.6rem);
    text-align: center;
    background-color: var(--cream);
    color: var(--ink);
}
.page-header h1 {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0.7rem;
}
.page-header p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== POST LIST (LISTAGEM) ===== */
.post-list {
    padding: clamp(2rem, 3.8vw, 3.4rem) 8%;
    background-color: #ffffff;
}
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.post-card {
    background-color: var(--cream);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(30, 143, 224, 0.22);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.post-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 10px 18px -8px rgba(30, 40, 45, 0.25),
        0 20px 36px -14px rgba(30, 40, 45, 0.18),
        0 2px 4px rgba(30, 40, 45, 0.10);
    border-color: rgba(30, 143, 224, 0.45);
}

.post-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.post-cover {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
}
.post-cover svg { width: 64px; height: 64px; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Variações de capa (gradientes ilustrativos por categoria) */
.post-cover--prevencao {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(30, 143, 224, 0.35) 0%, transparent 60%),
        linear-gradient(135deg, #1B3358 0%, #0C1B33 100%);
}
.post-cover--tratamento {
    background:
        radial-gradient(ellipse at 70% 40%, rgba(30, 143, 224, 0.45) 0%, transparent 65%),
        linear-gradient(135deg, #1B3358 0%, #0C1B33 100%);
}
.post-cover--saude {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(30, 143, 224, 0.30) 0%, transparent 55%),
        linear-gradient(135deg, #5a3018 0%, #3a2510 100%);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.6rem 0.6rem;
    font-size: 0.78rem;
}
.post-category {
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent);
}
.post-readtime {
    color: var(--ink-soft);
    font-weight: 400;
}

.post-card h2 {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: 1.45rem;
    line-height: 1.25;
    padding: 0 1.6rem 0.8rem;
    color: var(--ink);
}
.post-card p {
    padding: 0 1.6rem 1.4rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.7;
    flex: 1;
}
.post-read {
    padding: 0 1.6rem 1.6rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}
.post-card:hover .post-read { color: var(--accent-hover); }

/* ===== ARTICLE (POST INDIVIDUAL) ===== */
.article {
    background-color: #ffffff;
}

.article-hero {
    background-color: var(--cream);
    padding: calc(clamp(3rem, 6vw, 5rem) + 60px) 8% clamp(2rem, 3.6vw, 3rem);
}
.article-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.article-hero-text {
    text-align: left;
}
.article-hero .article-meta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
}
.article-hero .article-meta .post-category {
    font-size: 0.78rem;
}
.article-hero .article-meta .article-date {
    color: var(--ink-soft);
}
.article-hero h1 {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 3.8vw, 3rem);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 0.85rem;
}
.article-hero .article-lead {
    color: var(--ink-soft);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.55;
    margin: 0;
}

.article-hero-image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(30, 143, 224, 0.35) 0%, transparent 60%),
        linear-gradient(135deg, #1B3358 0%, #0C1B33 100%);
    box-shadow:
        0 14px 24px -10px rgba(0, 0, 0, 0.25),
        0 30px 50px -16px rgba(0, 0, 0, 0.18),
        0 2px 6px rgba(0, 0, 0, 0.10);
}
.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.article-hero-image svg {
    width: 30%;
    height: 30%;
    color: rgba(255, 255, 255, 0.7);
}



/* Seções alternadas: imagem + texto */
.article-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    max-width: 1200px;
    margin: clamp(1.6rem, 3.4vw, 2.8rem) auto;
    padding: 0 8%;
}
.article-section--reverse .article-section-image {
    order: -1;
}

.article-section-text h2 {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 0.7rem;
}
.article-section-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}
.article-section-text > * + * { margin-top: 0.7rem; }
.article-section-text p,
.article-section-text li {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--ink-soft);
}
.article-section-text strong { color: var(--ink); font-weight: 600; }
.article-section-text ul,
.article-section-text ol { padding-left: 1.4rem; }
.article-section-text li { margin-top: 0.35rem; }
.article-section-text li::marker { color: var(--accent); }
.article-section-text a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.article-section-text a:hover { color: var(--accent-hover); }

.article-section-image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(30, 143, 224, 0.18) 0%, transparent 60%),
        linear-gradient(135deg, #f3f5f6 0%, #e2e6e9 100%);
}
.article-section-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.article-section-image svg {
    width: 30%; height: 30%;
    color: rgba(168, 106, 46, 0.5);
}

/* Variações de tom (para criar ritmo entre seções) */
.article-section-image--warm {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(30, 143, 224, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, #f5ead8 0%, #e8d4ad 100%);
}
.article-section-image--soft {
    background:
        radial-gradient(ellipse at 50% 20%, rgba(30, 143, 224, 0.12) 0%, transparent 65%),
        linear-gradient(135deg, #f8fafa 0%, #f3f5f6 100%);
}
.article-section-image--deep {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(30, 143, 224, 0.35) 0%, transparent 60%),
        linear-gradient(135deg, #1B3358 0%, #0C1B33 100%);
}
.article-section-image--deep svg { color: rgba(255, 255, 255, 0.5); }

/* Blockquote destacado entre seções */
.article-quote {
    max-width: 880px;
    margin: clamp(2rem, 4vw, 3.4rem) auto;
    padding: 0 8%;
    text-align: center;
}

/* ===================================================
   Layout DIAGRAMADO para páginas de procedimento.
   Faixas alternadas full-width, h2 com barra de cor,
   listas ordenadas com números circulares, callouts
   marcantes. Single-column 720px centralizado.
   =================================================== */
.article--compact .article-section {
    display: block !important;
    grid-template-columns: none !important;
    max-width: 100% !important;
    width: 100%;
    margin: 0 !important;
    padding: clamp(2rem, 3.6vw, 3rem) 1.5rem !important;
    box-sizing: border-box;
}
.article--compact .article-section-image {
    display: none !important;
}
.article--compact .article-section-text {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
}

/* Faixas alternadas: cria ritmo sem cansar (subtle teal wash) */
.article--compact .article-section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(30,143,224,0.04), rgba(30,143,224,0.07));
}
.article--compact .article-section:nth-of-type(odd) {
    background: #ffffff;
}

/* Headings: h2 com barra de acento vertical */
.article--compact .article-section-text h2 {
    font-family: 'Spectral', serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 2.3vw, 1.95rem);
    line-height: 1.22;
    color: #0E2E6E;
    margin: 0 0 1.1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--accent);
}
.article--compact .article-section-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    color: #0E2E6E;
    margin: 1.4rem 0 0.4rem;
    letter-spacing: 0.005em;
}

/* Parágrafos respiráveis */
.article--compact .article-section-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #3a4a4f;
    margin: 0 0 0.9rem;
}
.article--compact .article-section-text p strong { color: #0E2E6E; font-weight: 600; }

/* Listas não ordenadas: bullet teal */
.article--compact .article-section-text ul {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 1rem;
}
.article--compact .article-section-text ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #3a4a4f;
    margin-bottom: 0.55rem;
}
.article--compact .article-section-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
}
.article--compact .article-section-text li strong { color: #0E2E6E; font-weight: 600; }

/* Listas ordenadas: NÚMEROS CIRCULARES grandes (passos do procedimento) */
.article--compact .article-section-text ol {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 1rem 0;
}
.article--compact .article-section-text ol li {
    counter-increment: step;
    position: relative;
    padding-left: 3rem;
    min-height: 2.1rem;
    margin-bottom: 0.95rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #3a4a4f;
}
.article--compact .article-section-text ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: -0.1rem;
    width: 2rem;
    height: 2rem;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Spectral', serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 3px 8px -2px rgba(30,143,224,0.4);
}

/* Callout marcante (Atenção / Importante) */
.article--compact .article-callout {
    background: linear-gradient(135deg, rgba(30,143,224,0.10), rgba(30,143,224,0.04));
    border: 1px solid rgba(30,143,224,0.22);
    border-left: 4px solid var(--accent);
    padding: 1.15rem 1.4rem;
    border-radius: 0 10px 10px 0;
    margin: 1.6rem 0 0.6rem;
    font-size: 0.97rem;
    line-height: 1.6;
    color: #2c3e44;
}
.article--compact .article-callout strong { color: #0E2E6E; font-weight: 700; }
.article--compact .article-quote,
.article--compact .article-cta {
    max-width: 900px;
    padding: 0 1.5rem;
}
.article--compact .article-hero-inner {
    max-width: 1100px;
}

/* CTA final centralizada para páginas de procedimento */
.article-cta {
    max-width: 880px;
    margin: clamp(2rem, 4vw, 3.4rem) auto clamp(2.5rem, 5vw, 4rem);
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}
.article-cta p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 36ch;
    margin: 0;
}
.article-cta .back-to-list {
    margin-top: 0.5rem;
}
.article-quote blockquote {
    font-family: 'Spectral', serif;
    font-weight: 300;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.4;
    color: var(--ink);
    position: relative;
}
.article-quote blockquote::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 1rem;
}

/* Callout integrado na coluna de texto da seção */
.article-callout {
    background-color: var(--cream);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.2rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1rem !important;
    font-size: 0.95rem;
    color: var(--ink-soft);
}
.article-callout strong { color: var(--ink); }

.back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}
.back-to-list:hover { color: var(--accent-hover); }

/* Próximas leituras */
.next-reads {
    background-color: var(--cream);
    padding: clamp(1.8rem, 3.4vw, 2.8rem) 8%;
    border-top: 1px solid rgba(30, 143, 224, 0.18);
}
.next-reads h2 {
    font-family: 'Spectral', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--ink);
    text-align: center;
    margin-bottom: 1.4rem;
}
.next-reads .post-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
}

/* ===== FOOTER (mesmo padrão do index) ===== */
footer {
    background-color: var(--bg-dark);
    color: var(--text-muted);
    padding: 2.4rem 8% 1.6rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto 1.8rem;
}
.footer-col h4 {
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.55rem;
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--text-white); }
.footer-col .footer-brand {
    font-family: 'Spectral', serif;
    color: var(--text-white);
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}
.footer-col .footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.4rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
/* Regras mobile do header (.site-nav, .nav-toggle, .nav-btn-agendar e
   .site-header padding) estão em ../assets/site-header.css */
@media (max-width: 960px) {
    .post-grid { grid-template-columns: repeat(2, 1fr); }
    .next-reads .post-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .article-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .article-section--reverse .article-section-image { order: 0; }

    .article-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .post-grid { grid-template-columns: 1fr; }
    .page-header, .post-list, .article-hero, .article-intro,
    .article-outro, .article-section, .article-quote, .next-reads {
        padding-left: 6%; padding-right: 6%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
    html { scroll-behavior: auto; }
}

/* =====================================================
   CONVERSÃO — componentes para landings de procedimento
   ===================================================== */

/* Hero CTA: botão + selos de confiança logo abaixo do lead */
.hero-cta-block { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero-trust li { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; padding: 0.35rem 0.8rem; background: rgba(30,143,224,0.09); color: var(--accent); border-radius: 100px; font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; letter-spacing: 0.01em; }
.hero-trust li::before { content: '✓'; font-weight: 700; font-size: 0.88rem; line-height: 1; }
@media (max-width: 720px) {
    .hero-cta-block { align-items: stretch; }
    .hero-cta-block .btn-primary { justify-content: center; }
    .hero-trust { justify-content: center; }
}

/* Mid-page CTA: caixa de chamada no meio do artigo */
.mid-cta { background: linear-gradient(135deg, rgba(30,143,224,0.07), rgba(30,143,224,0.02)); border: 1px solid rgba(30,143,224,0.22); border-radius: 14px; padding: 1.9rem 2rem; margin: 2.8rem auto; max-width: 760px; text-align: center; }
.mid-cta p { font-family: 'Spectral', serif; font-size: 1.16rem; line-height: 1.5; margin: 0 0 1.15rem; color: #0E2E6E; font-weight: 500; }
.mid-cta-link { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.85rem 1.6rem; background: var(--accent); color: #fff; border-radius: 100px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.93rem; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.mid-cta-link:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(30,143,224,0.5); }
/* Blindagem do SVG: max-width/height impedem explosão se attrs faltarem */
.mid-cta svg, .mid-cta-link svg { width: 18px; height: 18px; max-width: 18px; max-height: 18px; fill: currentColor; flex-shrink: 0; }

/* Photo CTA v3 — upload real (drop / paste / picker) + Web Share API */
.photo-cta { display: block; background: #fff; border: 1px solid rgba(30,143,224,0.22); border-radius: 16px; padding: 1.8rem 2rem; margin: 2rem auto 2.5rem; max-width: 760px; text-align: center; box-shadow: 0 8px 22px -14px rgba(0,0,0,0.08); }
.photo-cta-title { font-family: 'Spectral', serif; font-size: clamp(1.25rem,2.4vw,1.5rem); color: #0E2E6E; margin: 0 0 0.55rem; font-weight: 500; }
.photo-cta-desc { font-family: 'Spectral', serif; font-size: 1.04rem; line-height: 1.55; color: #4d5b62; margin: 0 0 1.4rem; }
.photo-drop { display: block; border: 2px dashed rgba(30,143,224,0.4); background: rgba(30,143,224,0.04); border-radius: 12px; padding: 1.8rem 1.5rem; cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.15s; outline: none; }
.photo-drop:hover, .photo-drop:focus-visible { border-color: var(--accent); background: rgba(30,143,224,0.07); }
.photo-drop.dragging { border-color: var(--accent); background: rgba(30,143,224,0.12); transform: scale(1.01); }
.photo-drop-empty { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; color: var(--accent); font-family: 'Montserrat', sans-serif; }
.photo-drop-empty svg { width: 36px; height: 36px; max-width: 36px; max-height: 36px; opacity: 0.85; }
.photo-drop-empty strong { font-size: 0.98rem; font-weight: 600; color: #22302f; }
.photo-drop-empty .photo-drop-hint { display: none; font-size: 0.8rem; color: #6d7a82; font-weight: 400; }
/* Hint só em desktop (mouse-driven) — mobile vê só o headline */
@media (hover: hover) and (pointer: fine) {
    .photo-drop-empty .photo-drop-hint { display: inline; }
}
.photo-drop-preview { display: flex; align-items: center; gap: 0.9rem; justify-content: center; }
.photo-drop-preview img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); }
.photo-drop-preview-info { text-align: left; font-family: 'Montserrat', sans-serif; }
.photo-drop-preview-info strong { display: block; font-size: 0.88rem; color: #22302f; }
.photo-drop-preview-info span { display: block; font-size: 0.78rem; color: #6d7a82; }
.photo-drop-remove { background: rgba(0,0,0,0.06); border: none; width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; color: #555; padding: 0; }
.photo-drop-remove:hover { background: rgba(0,0,0,0.12); color: #c0282d; }
.photo-cta .btn-primary { display: inline-flex; margin-top: 1.3rem; }
.photo-cta small { display: block; margin-top: 1rem; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; color: #8a949a; line-height: 1.55; }
.photo-cta-toast { display: none; margin-top: 0.9rem; padding: 0.7rem 1rem; background: rgba(30,143,224,0.08); border-radius: 8px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: #0E2E6E; }
.photo-cta-toast.show { display: block; }

/* FAQ accordion no final do artigo */
/* FAQ - desktop alinha com o resto do article (max-width 1200px, padding 8%).
   Perguntas longas cabem em 1 linha sem quebra forcada. Mobile: ver TODO no worklog. */
.faq-conv { max-width: 1200px; margin: 3rem auto 2.5rem; padding: 0 8%; }
.faq-conv h2 { font-family: 'Spectral', serif; font-size: clamp(1.45rem, 3vw, 1.85rem); color: #0E2E6E; margin: 0 0 1.5rem; text-align: center; font-weight: 500; }
.faq-conv details { background: #fff; border: 1px solid rgba(30,143,224,0.18); border-radius: 10px; padding: 1.1rem 1.6rem; margin-bottom: 0.7rem; transition: border-color 0.2s, box-shadow 0.2s; }
.faq-conv details[open] { border-color: rgba(30,143,224,0.42); box-shadow: 0 8px 22px -10px rgba(0,0,0,0.1); }
.faq-conv summary { font-family: 'Montserrat', sans-serif; font-weight: 600; color: #22302f; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; font-size: 1.02rem; line-height: 1.45; }
.faq-conv summary::-webkit-details-marker { display: none; }
.faq-conv summary::after { content: '+'; color: var(--accent); font-size: 1.5rem; font-weight: 300; line-height: 0.5; transition: transform 0.2s; flex-shrink: 0; }
.faq-conv details[open] summary::after { content: '−'; }
.faq-conv details p { margin: 0.95rem 0 0; font-family: 'Spectral', serif; font-size: 0.97rem; line-height: 1.65; color: #485661; }
