@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');
@import url('footer.css');


* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Manrope', sans-serif;
}

.artigo-topo {
    border-bottom: 1px solid #2e2e2e;
    background:
        radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 35%),
        linear-gradient(160deg, #101010 0%, #171717 100%);
    padding: clamp(32px, 6vw, 56px) 16px;
}

.topo-conteudo {
    max-width: 1100px;
    margin: 0 auto;
}

.topo-voltar {
    display: inline-flex;
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    padding-bottom: 2px;
}

.topo-voltar:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.65);
}

.topo-kicker {
    margin: 16px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #d4af37;
}

.artigo-topo h1 {
    margin: 10px 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.1;
    color: #ffffff;
}

.topo-subtitulo {
    margin: 12px 0 0;
    max-width: 68ch;
    line-height: 1.55;
    color: #d7d7d7;
}

.topo-acoes {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topo-acoes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    padding: 11px 16px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.acao-principal {
    background: #1b1b1b;
    color: #d4af37;
    border: 1px solid #8b6a2f;
}

.acao-principal:hover {
    transform: translateY(-1px);
    background: #262014;
}

.acao-secundaria {
    background: #121212;
    color: #f1f1f1;
    border: 1px solid #3d3d3d;
}

.acao-secundaria:hover {
    transform: translateY(-1px);
    background: #1e1e1e;
}

.artigo-main {
    padding: clamp(26px, 5vw, 40px) 16px clamp(34px, 5vw, 56px);
}

.leitor-wrap {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(165deg, #131313 0%, #1a1a1a 100%);
    border: 1px solid #2f2f2f;
    border-radius: 16px;
    padding: clamp(16px, 3vw, 24px);
}

.leitor-wrap h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2.3vw, 1.8rem);
    color: #ffffff;
}

.leitor-wrap p {
    margin: 10px 0 0;
    line-height: 1.55;
    color: #d6d6d6;
}

.leitor-wrap p a {
    color: #d4af37;
    font-weight: 700;
}

.leitor-pdf {
    margin-top: 14px;
    width: 100%;
    min-height: 120vh;
    border: 1px solid #3b3b3b;
    border-radius: 12px;
    background: #0a0a0a;
}

@media (max-width: 768px) {
    .artigo-topo {
        padding: 28px 14px;
    }

    .artigo-main {
        padding: 20px 14px 28px;
    }

    .topo-acoes {
        flex-direction: column;
    }

    .topo-acoes a {
        width: 100%;
    }

    .leitor-pdf {
        min-height: 80vh;
    }
}
