/* --- ACTA.29: ESTILO EDITORIAL REFINADO --- */

body.body-degustacao-editorial {
    background-color: #0d1b2a !important;
    margin: 0;
    padding: 0;
}

.pagina-pergaminho {
    /* Mude a cor do fundo do pergaminho para a cor exata da fusão */
    background-color: #E0D7C6 !important; /* Cor Chapada e Chapada (#E0D7C6) */
    
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    z-index: 5;
    padding: 160px 80px 100px; 
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(140, 109, 49, 0.2);
    border-right: 1px solid rgba(140, 109, 49, 0.2);
}

.body-degustacao-editorial .header-principal {
    background-color: #0d1b2a !important;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.leitura-header { text-align: center; margin-bottom: 60px; }
.leitura-header h1 { font-family: 'Cinzel', serif; color: #8c6d31; font-size: 2.8rem; text-transform: uppercase; letter-spacing: 3px; }

.frase-intro {
    max-width: 650px;
    margin: 0 auto;
    padding: 30px;
    border-top: 1px solid rgba(140, 109, 49, 0.3);
    border-bottom: 1px solid rgba(140, 109, 49, 0.3);
}

.frase-intro p {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

/* CLASSE DE IDENTAÇÃO COM ASPA (CORREDOR DE LEITURA) */
.secao-texto-identado {
    position: relative;
    padding-left: 100px;
    margin-bottom: 60px;
}

.secao-texto-identado::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -45px;
    font-size: 11rem;
    color: rgba(140, 109, 49, 0.25);
    font-family: 'Cinzel', serif;
    font-weight: bold;
}

.texto-corpo-editorial p {
    font-family: 'EB Garamond', serif;
    font-size: 1.45rem;
    line-height: 1.9;
    color: #1a1a1a;
    margin-bottom: 35px;
    text-align: justify;
}

.divisor-pintura {
    width: calc(100% + 160px);
    margin-left: -80px;
    height: 300px;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
    margin-bottom: 70px;
    border-top: 1px solid #8c6d31;
    border-bottom: 1px solid #8c6d31;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.6);
}

.leitura-footer { text-align: center; margin-top: 100px; padding-bottom: 60px; font-style: italic; color: #888; }

/* MOBILE */
@media (max-width: 1024px) {
    .pagina-pergaminho { padding: 130px 25px 60px; max-width: 100%; border: none; }
    .secao-texto-identado { padding-left: 40px; }
    .secao-texto-identado::before { font-size: 6rem; top: -20px; }
    .divisor-pintura { width: calc(100% + 50px); margin-left: -25px; height: 180px; }
}
.divisor-pintura {
    width: calc(100% + 160px); /* Mantém a expansão lateral nobre */
    margin-left: -80px;
    height: auto; /* Deixa a altura ser definida pela proporção da imagem */
    min-height: 350px; /* Garante uma presença mínima imponente */
    background-size: contain; /* Garante que as pinceladas das bordas apareçam inteiras */
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 50px;
    margin-bottom: 50px;
    
    /* Removemos as bordas sólidas e sombras internas para não "sufocar" a pincelada orgânica */
    border: none;
    box-shadow: none; 
}

/* Ajuste para telas menores */
@media (max-width: 1024px) {
    .divisor-pintura {
        width: calc(100% + 40px);
        margin-left: -20px;
        min-height: 200px;
    }
}
/* LINHA DEGRADÊ CENTRALIZADA - VERSÃO ESTÁVEL */
.divisor-final-trecho {
    display: block;
    width: 150px;
    height: 0; /* Linha pura */
    margin: 60px auto; 
    border: 0;
    /* Usamos border-top com degradê para evitar que suma no recarregamento */
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, rgba(140, 109, 49, 0.4), transparent) 1;
    opacity: 0.8;
}

/* Ajuste para o mobile */
@media (max-width: 1024px) {
    .divisor-final-trecho {
        margin: 40px auto;
        width: 100px;
    }
}