/* === REVISTA ELAS NO PODER – 6ª EDIÇÃO === */
:root {
    --creme:      #F5EFE6;
    --rosa:       #C4788A;
    --rosa-claro: #EDD5DB;
    --navy:       #2C3564;
    --texto:      #2A2A2A;
    --texto-sec:  #5A5A5A;
}

* { box-sizing: border-box; }
body {
    background: var(--creme);
    color: var(--texto);
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 10px;
}

/* Faixa rosa fixa */
.faixa-topo {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 10px;
    background: var(--rosa);
    z-index: 9999;
}

/* Mini-header das subpáginas */
.subpage-header {
    background: var(--creme);
    padding: 32px 0 20px;
    border-bottom: 2px solid var(--rosa-claro);
}
.subpage-header img { max-height: 70px; filter: drop-shadow(0 3px 6px rgba(100,100,100,0.35)) drop-shadow(0 1px 3px rgba(100,100,100,0.22)); }
.btn-voltar {
    color: var(--navy);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-voltar:hover { color: var(--rosa); text-decoration: none; }
.btn-voltar::before { content: '←'; font-size: 18px; }

/* Tag de seção */
.tag-secao {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* Títulos serifados */
.titulo-serif {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.titulo-grande  { font-size: 34pt; }
.titulo-medio   { font-size: 24pt; }
.subtitulo-serif {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    color: var(--navy);
    font-size: 14pt;
    margin-bottom: 20px;
}

/* Texto corrido */
.corpo-texto p {
    font-size: 14px;
    line-height: 24px;
    color: var(--texto);
    text-align: justify;
    margin-bottom: 18px;
}
.pergunta {
    color: var(--navy);
    font-weight: bold;
    font-size: 14px;
    margin-top: 28px;
    margin-bottom: 8px;
}

/* Caixa de destaque / citação */
.destaque {
    border-left: 5px solid var(--rosa);
    background: #fff;
    padding: 18px 24px;
    margin: 28px 0;
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: 15px;
    color: var(--navy);
    border-radius: 0 6px 6px 0;
}

/* Foto com sombra */
.foto-sombra {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    overflow: hidden;
}
.foto-sombra img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

/* Divisor */
.divisor-rosa { width: 100%; height: 6px; background: var(--rosa); }

/* Área de conteúdo */
.conteudo {
    background: var(--creme);
    padding: 60px 0 72px;
}

/* Rodapé */
.rodape {
    background: var(--navy);
    color: #fff;
    padding: 48px 20px;
    text-align: center;
}
.rodape img { max-height: 55px; margin: 0 16px; filter: brightness(0) invert(1); }
.rodape p { font-size: 13pt; margin-top: 24px; line-height: 26px; }
.rodape a { color: var(--rosa-claro); }

@media (max-width: 767px) {
    .titulo-grande { font-size: 22pt; }
    .titulo-medio  { font-size: 18pt; }
}
