.comentario-feedback {
    min-height: 24px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.comentario-feedback.a-enviar {
    color: #6d625b;
}

.comentario-feedback.sucesso {
    color: #2f7d4a;
}

.comentario-feedback.erro {
    color: #a33a3a;
}

@import url(reset.css);


/* =========================================================
   PRINCIPAL
========================================================= */

.paginacao{
    display: none;
}

.principal {
    width: 100%;
}


/* =========================================================
   IMAGEM DE FUNDO / SEÇÃO PRINCIPAL
========================================================= */

.imagemBackground {
    position: relative;

    width: 100%;
    min-height: 400px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 110px 8% 0;
}


/* =========================================================
   ÁREA DA IMAGEM
========================================================= */

.imagemBackground .img {
    position: relative;

    z-index: 2;

    /* IMAGEM MAIS LARGA */
      width:1150px;
    height: 350px;

    flex-shrink: 0;

    /* CENTRALIZAÇÃO */
    margin: 0 auto;

    background-color: var(--corSegundaria);

    /*
       Pequena elevação
    */
    transform: translateY(-5px);

    /*
       SOMBRA GRANDE
    */
    box-shadow:
        0 45px 80px rgba(0, 0, 0, 0.20),
        0 20px 40px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   SOMBRA EXTRA POR BAIXO
========================================================= */

.imagemBackground .img::after {
    content: "";

    position: absolute;

    z-index: -1;

    left: 5%;
    bottom: -45px;

    width: 100%;
    height: 65px;

    background: rgba(0, 0, 0, 0.22);

    filter: blur(30px);

    border-radius: 50%;
}


/* =========================================================
   IMAGEM
========================================================= */

.imagemBackground .img img {
    position: absolute;

    z-index: 1;

    display: block;

    /* MAIS LARGA */
    width:1150px;
    height: 350px;

    object-fit: cover;

    /*
       Pequeno deslocamento para
       criar profundidade
    */
    top: -10px;
    right: 15px;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.22);
}


.aprenderes {
    background-color: rgba(216, 174, 118, 0.1);
    padding: 20px 0 2px;
}

.aprender {
    width: 90%;
    max-width: 900px;

    margin: 30px auto;
    padding: 25px 40px;

    text-align: center;


     background-color: rgba(216, 174, 118, 0.1);

    border-radius: 15px;

  
}


/* =========================================================
   TÍTULO
========================================================= */

.aprender h3 {
    margin: 0 0 4px;

    color: var(--corBranca);

    font-size: var(--esp-3);
    font-weight: var(--peso-3);

    line-height: 1.3;

    text-align: center;
}


/* =========================================================
   TEXTO
========================================================= */

.aprender p {
    max-width: 900px;

    margin: 0 auto;

    color: var(--corBranca);

    font-size: var(--esp-7);
    font-weight: var(--peso-4);

    line-height: 1.6;

    text-align: center;
}




/* =========================================================
   TÍTULO SOBRE A IMAGEM
========================================================= */

.titulo-artigo {
    position: absolute;

    top: 80%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 70%;

    z-index: 3;

    text-align: center;
}


/* =========================================================
   H1
========================================================= */

.titulo-artigo h1 {
    margin: 0;

    color: var(--corBranca);

    font-size: 2.3rem;

    line-height: 1.2;

    font-weight: 600;

    text-align: center;
}


/* =========================================================
   INFORMAÇÕES DO ARTIGO
========================================================= */

.informacoes-artigo {
    width: 100%;

    margin: 18px auto 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 1px;

    text-align: center;
}


/* =========================================================
   TEXTO DAS INFORMAÇÕES
========================================================= */

.informacoes-artigo span {
    color: var(--corTexto);

    font-size: .95rem;

    font-weight: 300;

    text-align: center;
}


/* =========================================================
   DESTAQUE DAS INFORMAÇÕES
========================================================= */

.informacoes-artigo strong {
    color: var(--azulEscuro);

    font-weight: 600;
}


/* =========================================================
   CORPO DO ARTIGO
========================================================= */

.corpo {
    width: 100%;

    max-width: 1100px;

    margin: 40px auto;

    padding: 0 65px;

    box-sizing: border-box;

    color: var(--corTexto);

    font-family: var(--fonte-principal);

    overflow-wrap: break-word;
}


/* =========================================================
   PARÁGRAFOS
========================================================= */

.corpo p {
    margin: 0 0 25px;

    font-size: var(--esp-6);

    line-height: 1.4;

    font-weight: var(--peso-3);

    text-align: justify;
}


/* =========================================================
   ÚLTIMO PARÁGRAFO
========================================================= */

.corpo p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TÍTULOS DENTRO DO ARTIGO
========================================================= */

.corpo h1,
.corpo h2,
.corpo h3,
.corpo h4,
.corpo h5,
.corpo h6 {
    color: var(--azulEscuro);

    line-height: 1.3;

    font-weight: 600;

    margin-top: 30px;

    margin-bottom: 15px;
}


.corpo h1 {
    font-size: 2rem;
}


.corpo h2 {
    font-size: 1.7rem;
}


.corpo h3 {
    font-size: 1.4rem;
}


.corpo h4 {
    font-size: 1.2rem;
}


.corpo h5 {
    font-size: 1.05rem;
}


.corpo h6 {
    font-size: 1rem;
}


/* =========================================================
   LINKS
========================================================= */

.corpo a {
    color: var(--azulEscuro);

    text-decoration: underline;

    text-underline-offset: 3px;

    transition: color .3s ease;
}


.corpo a:hover {
    color: var(--laranjaForte);
}


/* =========================================================
   TEXTO EM NEGRITO
========================================================= */

.corpo strong,
.corpo b {
    font-weight: 600;
}


/* =========================================================
   TEXTO ITÁLICO
========================================================= */

.corpo em,
.corpo i {
    font-style: italic;
}


/* =========================================================
   IMAGENS DENTRO DO CONTEÚDO
========================================================= */

.corpo img {
    width: 85%;

    max-width: 1000px;

    height: auto;

    display: block;

    margin: 30px auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   IMAGENS PEQUENAS
========================================================= */

.corpo img[width] {
    max-width: 100%;

    height: auto;
}


/* =========================================================
   VÍDEOS DO YOUTUBE / QUILL
========================================================= */

.corpo iframe,
.corpo iframe.ql-video {
    width: 85% !important;

    max-width: 1000px !important;

    aspect-ratio: 16 / 9 !important;

    height: auto !important;

    display: block !important;

    margin: 30px auto !important;

    padding: 0 !important;

    border: none !important;

    border-radius: 10px !important;

    background: #000;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   VÍDEO RESPONSIVO
========================================================= */

.corpo iframe[src*="youtube"],
.corpo iframe[src*="youtu.be"],
.corpo iframe.ql-video {
    width: 85%;

    max-width: 1000px;

    aspect-ratio: 16 / 9;

    height: auto;
}


/* =========================================================
   LISTAS
========================================================= */

.corpo ul,
.corpo ol {
    margin: 0 0 25px;

    padding-left: 35px;

    font-size: .95rem;

    line-height: 1.6;

    font-weight: 300;
}


.corpo li {
    margin-bottom: 8px;
}


/* =========================================================
   CITAÇÕES
========================================================= */

.corpo blockquote {
    margin: 30px 0;

    padding: 20px 25px;

    border-left: 4px solid var(--azulEscuro);

    background: rgba(29, 48, 86, 0.05);

    color: var(--corTexto);

    font-size: 1rem;

    font-style: italic;

    line-height: 1.6;
}


/* =========================================================
   LINHA HORIZONTAL
========================================================= */

.corpo hr {
    margin: 35px 0;

    border: 0;

    border-top: 1px solid #d9dfe8;
}


/* =========================================================
   TABELAS
========================================================= */

.corpo table {
    width: 100%;

    margin: 30px 0;

    border-collapse: collapse;

    font-size: .9rem;
}


.corpo th,
.corpo td {
    padding: 10px 12px;

    border: 1px solid #d9dfe8;

    text-align: left;
}


.corpo th {
    color: #fff;

    background: var(--azulEscuro);

    font-weight: 600;
}


/* =========================================================
   CÓDIGO
========================================================= */

.corpo pre {
    width: 100%;

    margin: 30px 0;

    padding: 20px;

    box-sizing: border-box;

    overflow-x: auto;

    border-radius: 6px;

    background: #f4f5f7;

    color: #333;

    font-family: monospace;

    font-size: .85rem;

    line-height: 1.5;
}


.corpo code {
    font-family: monospace;

    font-size: .9em;
}


/* =========================================================
   ÁREA DE COMENTÁRIO
========================================================= */

.area-comentario {
    width: 100%;

    max-width: 1000px;

    margin: 50px auto 40px;

    padding: 30px 40px;
    border-radius: 20px;

    background-color:  rgba(216, 174, 118, 0.1);;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.formulario-comentario {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 5px;
}


/* =========================================================
   CAMPOS
========================================================= */

.campo-comentario,
.campo {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 4px;
}




/* =========================================================
   TEXTAREA
========================================================= */

.campo-comentario textarea {
    width: 100%;

    min-height: 110px;

    padding: 14px 16px;

    box-sizing: border-box;

    resize: vertical;
     margin-bottom: 8px;
   

    border-radius: 4px;

    outline: none;

    color: var(--corBranca);


background-color: rgba(255, 255, 255, 0.5);
   

    font-size: var(--esp-6);

    font-weight: var(--peso-4);

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


.campo-comentario textarea:focus {
    border-color: #29618c;

    box-shadow:
        0 0 0 3px rgba(41, 97, 140, .10);
}


/* =========================================================
   NOME + E-MAIL
========================================================= */

.linha-dados {
    width: 100%;

    display: flex;

    gap: 20px;
}


.linha-dados .campo {
    flex: 1;
}


/* =========================================================
   INPUTS
========================================================= */

.campo input {
    width: 100%;

    height: 38px;

    padding: 0 16px;

    box-sizing: border-box;

  

    border-radius: 4px;

    outline: none;

color: var(--corBranca);

  background-color: rgba(255, 255, 255, 0.5);

    font-size: var(--esp-6);

    font-weight: var(--peso-4);
    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


.campo input:focus {
    border-color: #29618c;

    box-shadow:
        0 0 0 3px rgba(41, 97, 140, .10);
}


/* =========================================================
   BOTÃO
========================================================= */

.botao-comentario {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    align-self: flex-start;

    padding: 10px 15px;

    margin: 10px 0 0;

    border: none;

    border-radius: 5px;


    color: var(--corBranca);
    background-color: var(--corSegundaria);


 font-size: var(--esp-6);

    font-weight: var(--peso-4);
    line-height: 1;

    cursor: pointer;

    transition:
        background .3s ease,
        transform .2s ease;
}


.botao-comentario:hover {
    background: var(--corPrincipal);

    transform: translateY(-2px);
}






/* =========================================================
   ARTIGOS / LIVROS
========================================================= */

.livros {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

.livros h2{
    text-align: center;
   margin: 0 0 8px;
   font-size: var(--esp-2);
   font-weight: var(--peso-3);

}


/* =========================================================
   TÍTULO
========================================================= */

.livros .conteudo-topo {
    width: 100%;
    margin-bottom: 25px;
}





/* =========================================================
   LISTA DE ARTIGOS
========================================================= */

.livros .lista-livros {
    width: 90%;
    margin: 0 auto 30px;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 5px;
}


/* =========================================================
   CARD DO ARTIGO
========================================================= */

.livros .livro {
    width: 90%;

    overflow: hidden;

    background-color: var(--corSegundaria);

     background-color: rgba(219, 174, 118, 0.10);

    border-radius: 6px;

    transition: .3s ease;
}

.livros .livro:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, .8);
}


/* =========================================================
   IMAGEM / CAPA DO ARTIGO
========================================================= */

.livros .livro > img {
    width: 85%;
    height: 290px;
    border-radius: 8px;

    margin: 10px auto 0;

    display: block;

    object-fit: cover;
}


/* =========================================================
   CATEGORIA
========================================================= */

.livros .categoriaAno {
    width: 100%;

    padding: 2px 25px 0;

    display: flex;
    align-items: center;
    justify-content: flex-start;
}


.livros .categoriaAno p {
    margin: 0;

    color: var(--corBranca);

    font-size: .62rem;
    font-weight: 200;

    line-height: 1.3;

    font-style: italic;
}


/* =========================================================
   CONTEÚDO DO ARTIGO
========================================================= */

.livros .livro .conteudo {
    padding: 8px 25px 20px;
}


/* =========================================================
   TÍTULO DO ARTIGO
========================================================= */

.livros .livro .conteudo h4 {
    margin: 0 0 8px;

    color: var(--corBranca);

    font-size: var(--esp-5);
    font-weight: var(--peso-4);

    line-height: 1.3;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.livros .livro .conteudo p {
    margin: 0 0 12px;

    color: var(--corBranca);

    font-size: .75rem;
    font-weight: var(--peso-4);

    line-height: 1.4;
}


/* =========================================================
   LINK — LER ARTIGO
========================================================= */

.livros .livro .conteudo a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 4px;

    color: var(--corBranca);

    text-decoration: none;

    font-size: .75rem;
    font-weight: var(--peso-4);

    border-radius: 4px;

    transition: .3s ease;
}


/* =========================================================
   SETA
========================================================= */

.livros .livro .conteudo a img {
    width: 10px;
    height: 10px;

    display: block;

    object-fit: contain;
}


/* =========================================================
   HOVER DO LINK
========================================================= */

.livros .livro .conteudo a:hover {
    color: var(--corPrincipal);

    transform: translateY(-2px);
}


.conteudos {
    width: 100%;
    margin: 10px auto;

    text-align: center;
}

.conteudos h3 {
    margin: 0 0 4px;

    color: var(--corBranca);

    font-size: var(--esp-3);
    font-weight: var(--peso-3);

    line-height: 1.3;
    text-align: center;
}

.conteudos p {
    max-width: 950px;
    margin: 0 auto;

    color: var(--corBranca);

    font-size: var(--esp-6);
    font-weight: var(--peso-4);

    line-height: 1.5;
    text-align: center;
}
