@import url(reset.css);


.pesquisa .btn {
    display: none !important;
}


    /* =====================================================
       PRINCIPAL
    ===================================================== */

    .principal {
        width: 100%;
    }


    /* =====================================================
       ÁREA PRINCIPAL
    ===================================================== */

    .imagemBackground {
        position: relative;

        width: 100%;
        min-height: auto;

        overflow: hidden;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 15px 20px 20px;
    }


    /* =====================================================
       IMAGEM DE FUNDO
    ===================================================== */

    .imagemBackground > img {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        object-fit: cover;

        z-index: 0;
    }


    /* =====================================================
       OVERLAY
    ===================================================== */

    .imagemBackground::before {
        content: "";

        position: absolute;

        inset: 0;

        background: rgba(32, 27, 19, 0.45);

        z-index: 1;
    }


    /* =====================================================
       CONTEÚDOS
    ===================================================== */

    .imagemBackground .conteudos {
        position: relative;

        z-index: 2;

        width: 100%;

        padding: 0;

        display: contents;
    }


    /* =====================================================
       TÍTULO
    ===================================================== */

    .imagemBackground .conteudos h2 {
        position: relative;

        z-index: 3;

        order: 1;

        width: 95%;


        margin: 0 0 25px;

        padding: 0 0 12px;

        color: var(--corBranca);

        font-size: var(--tituloMobile);

        font-weight: var(--peso-2);

        line-height: 1.2;

        text-align: left;
    }


    /* =====================================================
       LINHA DECORATIVA
    ===================================================== */

    .imagemBackground .conteudos h2::before {
        content: "";

        position: absolute;

        left: 45%;
        bottom: 0;

        transform: translateX(-50%);

        width: 90%;
        height: 1px;

        background: linear-gradient(
            to right,
            var(--corPrincipal) 0,
            var(--corPrincipal) 60px,
            color-mix(
                in srgb,
                var(--corPrincipal) 30%,
                transparent
            ) 20px,
            color-mix(
                in srgb,
                var(--corPrincipal) 30%,
                transparent
            ) 100%
        );
    }


    /* =====================================================
       IMAGEM
    ===================================================== */

    .imagemBackground .img {
        position: relative;

        z-index: 2;

        order: 2;

        top: 10px;
        right: auto;

        transform: none;

        width: 95%;
        max-width: 360px;

        height: 290px;

        margin: 0 auto 5px;

        background-color: var(--corSegundaria);
            border-radius: 8px;
    }


    /* =====================================================
       IMAGEM INTERNA
    ===================================================== */

    .imagemBackground .img img {
        position: absolute;

        z-index: 1;

        display: block;

        width: 100%;
        height: 290px;

        object-fit: cover;

        top: -25px;
        right: -20px;
        border-radius: 8px;
    }


    /* =====================================================
       TEXTO
    ===================================================== */

    .imagemBackground .conteudos p {
        position: relative;

        z-index: 3;

        order: 3;

        width: 100%;
        max-width: 500px;

        margin: 15px 0 0 20px;

        padding: 0;

        color: var(--corBranca);

        font-size: var(--esp-6);

        font-weight: var(--peso-4);

        line-height: 1.2;

       
    }




    /* ==========================================
   OBRA EM DESTAQUE — MOBILE
========================================== */
.destaque {
    position: relative;

    width: 90%;
    max-width: 500px;

    height: 600px;

    margin: 15px auto;
    padding: 25px 4% 30px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 20px;

    background-color: rgba(219, 174, 118, 0.10);

    border-radius: 8px;

    margin-bottom: 110px;
}


/* ==========================================
   CAPA DO LIVRO
========================================== */

.destaque .livro {
    position: relative;

    width: 90%;
    max-width: 320px;
    height: 350px;

    z-index: 2;

    margin: 0 auto;
}


.destaque .livro img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 8px;
}


/* ==========================================
   CONTEÚDO
========================================== */

.destaque .conteudo {
    width: 100%;

    align-self: center;

    transform: none;

    text-align: left;

    margin-left: 30px;
}


/* ==========================================
   TÍTULO
========================================== */

.destaque .conteudo h3 {
    position: relative;

    margin: 0 0 8px;
    padding-bottom: 8px;

    color: var(--corBranca);

    font-size: var(--esp-3);
    font-weight: var(--peso-2);

    line-height: 1.2;
}


/* ==========================================
   LINHA DECORATIVA
========================================== */

.destaque .conteudo h3::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 75%;
    height: 1px;

    background: linear-gradient(
        to right,
        var(--corPrincipal) 0,
        var(--corPrincipal) 60px,
        color-mix(
            in srgb,
            var(--corPrincipal) 30%,
            transparent
        ) 60px,
        color-mix(
            in srgb,
            var(--corPrincipal) 30%,
            transparent
        ) 100%
    );
}


/* ==========================================
   DESCRIÇÃO
========================================== */

.destaque .conteudo p {
    margin: 0;

    color: var(--corBranca);

    font-size: var(--esp-7);
    font-weight: var(--peso-4);

    line-height: 1.4;
}


/* ==========================================
   TÍTULO DA OBRA
========================================== */

.destaque .conteudo p span {
    display: block;

    margin-bottom: 5px;

    color: var(--corBranca);

    font-size: var(--esp-4);
    font-weight: var(--peso-4);

    line-height: 1.3;
}


/* ==========================================
   INFORMAÇÕES
========================================== */

.destaque .infromacoes {
    position: relative;

    left: auto;
    bottom: 18px;

    width: 100%;
    max-width: 350px;

    padding: 12px 18px;

    z-index: 5;

    border-radius: 6px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
    background: var(--corPrincipal);
}


/* ==========================================
   TÍTULO INFORMAÇÕES
========================================== */

.destaque .infromacoes h4 {
    margin: 0 0 5px;

    color: var(--corBranca);

    font-size: var(--esp-5);
    font-weight: var(--peso-3);

    line-height: 1.2;
}


/* ==========================================
   DADOS
========================================== */

.destaque .infromacoes p {
    margin: 0 0;

    color: var(--corBranca);

    font-size: var(--esp-7);
    font-weight: 200;

    line-height: 1.3;

      display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}


/* ==========================================
   BOTÕES
========================================== */

.destaque .infromacoes a {
    width: 100%;

    display: flex;
    flex-direction: row;

    gap: 16px;

    margin-top: 12px;

    text-decoration: none;

    background-color: transparent;
}


/* ==========================================
   CADA BOTÃO
========================================== */

.destaque .infromacoes a span {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 7px 5px;

    background-color: var(--corPreta);
    color: var(--corBranca);

    font-size: var(--esp-7);
    font-weight: 200;

    border-radius: 4px;

    transition: .3s ease;
}


/* ==========================================
   HOVER
========================================== */

.destaque .infromacoes a span:hover {
    background-color: var(--corSegundaria);
    transform: translateY(-2px);
}





/* =========================================================
   PESQUISA — MOBILE
========================================================= */

.pesquisa {
    width: 90%;
    margin: 0 auto;
    padding: 30px 0 30px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.pesquisa .conteudo {
    width: 100%;

    text-align: left;
}

.pesquisa .conteudo h3 {
    margin: 0 0 5px;

    color: var(--corBranca);

    font-size: var(--esp-3);
    font-weight: var(--peso-2);

    line-height: 1.2;
}

.pesquisa .conteudo p {
    width: 100%;
    margin: 0;

    color: var(--corBranca);

    font-size: var(--esp-7);
    font-weight: var(--peso-4);

    line-height: 1.3;
}


/* =========================================================
   FORMULÁRIO
========================================================= */

.pesquisa .form {
    width: 100%;
}


/* =========================================================
   ESTRUTURA DO FORMULÁRIO
   INPUT EM CIMA
   DOIS SELECTS EM BAIXO
========================================================= */

.pesquisa .form form {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


/* =========================================================
   CAMPO DE PESQUISA
   OCUPA AS DUAS COLUNAS
========================================================= */

.pesquisa .pesquisa-campo {
    width: 100%;

    grid-column: 1 / -1;

    display: flex;
    flex-direction: column;

    gap: 5px;
}


/* =========================================================
   CAMPO ORDENAR
========================================================= */

.pesquisa .select-campo {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 5px;
}


/* =========================================================
   CAMPO CATEGORIA
========================================================= */

.pesquisa .select-categorias {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 5px;
}


/* =========================================================
   LABELS
========================================================= */

.pesquisa .campo label,
.pesquisa .select-categorias label {
    color: var(--corBranca);

    font-size: var(--esp-7);
    font-weight: var(--peso-4);

    line-height: 1.3;
}


/* =========================================================
   INPUT COM ÍCONE
========================================================= */

.pesquisa .input-icon {
    position: relative;

    width: 100%;
}

.pesquisa .input-icon img {
    position: absolute;

    left: 12px;
    top: 50%;

    width: 13px;
    height: 13px;

    transform: translateY(-50%);

    pointer-events: none;
}

.pesquisa .input-icon input {
    width: 100%;
    height: 35px;

    padding: 0 12px 0 33px;

    border: none;
    outline: none;

    border-radius: 8px;

    background-color: var(--corBranca);
    color: var(--corPreta);

    font-family: inherit;
    font-size: var(--esp-7);
    font-weight: var(--peso-4);

    box-sizing: border-box;
}

.pesquisa .input-icon input::placeholder {
    color: #777;
}


/* =========================================================
   ÁREA DOS SELECTS
========================================================= */

.pesquisa .select-icon {
    position: relative;

    width: 100%;
}


/* =========================================================
   OS DOIS SELECTS
   MESMA ESTILIZAÇÃO
========================================================= */

.pesquisa .select-icon select,
.pesquisa .select-categorias select {
    width: 100%;
    height: 35px;

    padding: 0 35px 0 12px;

    border: none;
    outline: none;

    border-radius: 8px;

    appearance: none;

    background-color: var(--corBranca);
    color: var(--corPreta);

    font-family: inherit;
    font-size: var(--esp-7);
    font-weight: var(--peso-4);

    cursor: pointer;

    box-sizing: border-box;
}


/* =========================================================
   SETA DO SELECT ORDENAR
========================================================= */

.pesquisa .select-icon img {
    position: absolute;

    right: 12px;
    top: 50%;

    width: 12px;
    height: 12px;

    transform: translateY(-50%);

    pointer-events: none;

    transition: transform .3s ease;
}


/* =========================================================
   SETA DO SELECT CATEGORIA
========================================================= */

.pesquisa .select-categorias {
    position: relative;
}

.pesquisa .select-categorias::after {
    content: "";

    position: absolute;

    right: 12px;
    bottom: 11px;

    width: 12px;
    height: 12px;

    background-image: url("../assets/icons/setacategoria.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    pointer-events: none;

    transition: transform .3s ease;
}


/* =========================================================
   ROTAÇÃO DA SETA — ORDENAR
========================================================= */

.pesquisa .select-icon:focus-within img {
    transform: translateY(-50%) rotate(180deg);
}


/* =========================================================
   ROTAÇÃO DA SETA — CATEGORIA
========================================================= */

.pesquisa .select-categorias:focus-within::after {
    transform: rotate(180deg);
}


/* =========================================================
   BOTÕES DE CATEGORIA DESKTOP
   ESCONDIDOS NO MOBILE
========================================================= */

.pesquisa .btn {
    display: none;
}


/* =========================================================
   SELECT DE CATEGORIA MOBILE
========================================================= */

.pesquisa .select-categorias {
    display: flex;
}


/* =========================================================
   AJUSTE FINAL DO FORM
========================================================= */

.pesquisa .form form + .btn {
    display: none;
}





/* =========================================================
   LIVROS — MOBILE
========================================================= */

.livros {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}


/* =========================================================
   TÍTULO
========================================================= */

.livros .conteudo-topo {
    width: 100%;
    margin-bottom: 20px;
}

.livros .conteudo-topo h3 {
    position: relative;

    margin: 0;
    padding-bottom: 5px;

    color: var(--corBranca);

    font-size: var(--esp-4);
    font-weight: var(--peso-4);

    line-height: 1.2;
}


/* =========================================================
   LINHA DECORATIVA
========================================================= */

.livros .conteudo-topo h3::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 90%;
    height: 1px;

    background: linear-gradient(
        to right,
        var(--corPrincipal) 0,
        var(--corPrincipal) 50px,
        color-mix(
            in srgb,
            var(--corPrincipal) 30%,
            transparent
        ) 50px,
        color-mix(
            in srgb,
            var(--corPrincipal) 30%,
            transparent
        ) 100%
    );
}


/* =========================================================
   LISTA DE LIVROS
========================================================= */

.livros .lista-livros {
    width: 90%;
    margin: 0 auto 30px;

    display: grid;

    grid-template-columns: 1fr;

    gap: 18px;
}


/* =========================================================
   CARD DO LIVRO
========================================================= */

.livros .livro {
    width: 100%;

    overflow: hidden;

    background-color: rgba(219, 174, 118, 0.10);

    border-radius: 6px;
}


/* =========================================================
   CAPA
========================================================= */

.livros .livro > img {
    width: 85%;
    height: 300px;

    margin: 10px auto 0;

    display: block;

    object-fit: cover;

    border-radius: 3px;
}


/* =========================================================
   CATEGORIA E ANO
========================================================= */

.livros .categoriaAno {
    width: 100%;

    padding: 5px 20px 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    box-sizing: border-box;
}


.livros .categoriaAno p {
    margin: 0;

    color: var(--corBranca);

    font-size: .62rem;
    font-weight: 200;

    line-height: 1.3;

    font-style: italic;
}


.livros .categoriaAno p span {
    margin-right: 2px;

    color: var(--corBranca);

    font-style: italic;
}


/* =========================================================
   CONTEÚDO DO LIVRO
========================================================= */

.livros .livro .conteudo {
    width: 100%;

    padding: 8px 20px 18px;

    box-sizing: border-box;
}


/* =========================================================
   TÍTULO DO LIVRO
========================================================= */

.livros .livro .conteudo h4 {
    margin: 0 0 7px;

    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 8px;

    color: var(--corBranca);

    font-size: .70rem;
    font-weight: var(--peso-4);

    line-height: 1.4;
}


/* =========================================================
   ONDE COMPRAR
========================================================= */

.livros .livro .conteudo a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 4px;

    color: var(--corBranca);

    text-decoration: none;

    font-size: .70rem;
    font-weight: var(--peso-4);

    border-radius: 4px;

    transition: .3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.livros .livro .conteudo a:hover {
    transform: translateY(-2px);
}


/* =========================================================
   ÍCONE DA SETA
========================================================= */

.livros .livro .conteudo a img {
    width: 10px;
    height: 10px;

    object-fit: contain;
}


/* =========================================================
   OBRA — MOBILE
========================================================= */

.obra {
    width: 100%;
    margin: 15px auto 0;
    padding: 15px 5% 20px;

    background-color: rgba(219, 174, 118, 0.10);
    border-radius: 15px;

    box-sizing: border-box;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.obra .conteudo {
    width: 100%;
    padding: 5px 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =========================================================
   TÍTULO
========================================================= */

.obra .conteudo h3 {
    width: 100%;

    margin: 0 0 5px;

    color: var(--corBranca);

    font-size: var(--esp-4);
    font-weight: var(--peso-4);

    line-height: 1.2;

    text-align: center;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.obra .conteudo > p {
    width: 100%;
    max-width: 500px;

    margin: 0 0 8px;

    color: var(--corBranca);

    font-size: var(--esp-7);
    font-weight: var(--peso-4);

    line-height: 1.4;

    text-align: center;
}


/* =========================================================
   VÍDEO
========================================================= */

.obra .video {
    width: 100%;
    max-width: 500px;

    overflow: hidden;

    background-color: rgba(219, 174, 118, 0.10);

}


/* =========================================================
   YOUTUBE
========================================================= */

.obra .video iframe {
    width: 100%;
    height: 280px;

    display: block;

    border: none;
}





/* =========================================================
   RESPONSIVIDADE — TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {


    /* =====================================================
       PRINCIPAL
    ===================================================== */

    .principal {
        width: 100%;
    }


    /* =====================================================
       ÁREA PRINCIPAL
    ===================================================== */

    .imagemBackground {
        width: 100%;
        min-height: auto;

        padding: 25px 5% 35px;
    }


    /* =====================================================
       TÍTULO
    ===================================================== */

    .imagemBackground .conteudos h2 {
        width: 90%;

        margin: 0 0 30px;
        padding-bottom: 15px;

        font-size: var(--tituloMobile);
        line-height: 1.2;
    }


    /* =====================================================
       LINHA DO TÍTULO
    ===================================================== */

    .imagemBackground .conteudos h2::before {
        left: 45%;

        width: 90%;
        height: 2px;
    }


    /* =====================================================
       IMAGEM
    ===================================================== */

    .imagemBackground .img {
        width: 85%;
        max-width: 600px;

        height: 380px;

        top: 10px;

        margin: 0 auto 10px;

        border-radius: 10px;
    }


    .imagemBackground .img img {
        width: 100%;
        height: 380px;

        top: -30px;
        right: -25px;

        border-radius: 10px;
    }


    /* =====================================================
       TEXTO
    ===================================================== */

    .imagemBackground .conteudos p {
        width: 90%;
        max-width: 700px;

        margin: 20px auto 0;

        font-size: var(--esp-6);
        line-height: 1.4;
    }



    /* =====================================================
       OBRA EM DESTAQUE
    ===================================================== */

    .destaque {
        width: 90%;
        max-width: 750px;

        height: auto;

        margin: 25px auto 80px;
        padding: 35px 6% 40px;

        gap: 25px;

        border-radius: 12px;
    }


    /* =====================================================
       CAPA
    ===================================================== */

    .destaque .livro {
        width: 75%;
        max-width: 400px;

        height: 430px;

        margin: 0 auto;
    }


    .destaque .livro img {
        width: 100%;
        height: 100%;

        border-radius: 8px;
    }


    /* =====================================================
       CONTEÚDO
    ===================================================== */

    .destaque .conteudo {
        width: 90%;
        max-width: 650px;

        margin-left: 0;

        transform: none;

        text-align: left;
    }


    /* =====================================================
       TÍTULO
    ===================================================== */

    .destaque .conteudo h3 {
        margin: 0 0 12px;
        padding-bottom: 12px;

        font-size: var(--esp-3);
    }


    /* =====================================================
       LINHA DECORATIVA
    ===================================================== */

    .destaque .conteudo h3::before {
        width: 75%;
        height: 2px;
    }


    /* =====================================================
       DESCRIÇÃO
    ===================================================== */

    .destaque .conteudo p {
        font-size: var(--esp-6);
        line-height: 1.4;
    }


    .destaque .conteudo p span {
        margin-bottom: 10px;

        font-size: var(--esp-4);
        line-height: 1.3;
    }


    /* =====================================================
       INFORMAÇÕES
    ===================================================== */

    .destaque .infromacoes {
        width: 90%;
        max-width: 500px;

        bottom: auto;

        padding: 18px 25px;

        border-radius: 8px;
    }


    .destaque .infromacoes h4 {
        margin-bottom: 8px;

        font-size: var(--esp-5);
    }


    .destaque .infromacoes p {
        font-size: var(--esp-7);
        line-height: 1.4;
    }


    /* =====================================================
       BOTÕES
    ===================================================== */

    .destaque .infromacoes a {
        gap: 18px;
        margin-top: 15px;
    }


    .destaque .infromacoes a span {
        padding: 9px 8px;

        font-size: var(--esp-7);
    }



    /* =====================================================
       PESQUISA
    ===================================================== */

    .pesquisa {
        width: 90%;

        padding: 45px 0 40px;

        gap: 25px;
    }


    /* =====================================================
       CONTEÚDO DA PESQUISA
    ===================================================== */

    .pesquisa .conteudo h3 {
        margin-bottom: 8px;

        font-size: var(--esp-3);
    }


    .pesquisa .conteudo p {
        width: 75%;
        max-width: 700px;

        font-size: var(--esp-6);
        line-height: 1.4;
    }


    /* =====================================================
       FORMULÁRIO
    ===================================================== */

    .pesquisa .form form {
        gap: 15px;
    }


    /* =====================================================
       LABELS
    ===================================================== */

    .pesquisa .campo label,
    .pesquisa .select-categorias label {
        font-size: var(--esp-6);
    }


    /* =====================================================
       INPUT
    ===================================================== */

    .pesquisa .input-icon input {
        height: 42px;

        padding-left: 40px;

        font-size: var(--esp-7);

        border-radius: 8px;
    }


    .pesquisa .input-icon img {
        left: 14px;

        width: 15px;
        height: 15px;
    }


    /* =====================================================
       SELECTS
    ===================================================== */

    .pesquisa .select-icon select,
    .pesquisa .select-categorias select {
        height: 42px;

        padding: 0 40px 0 15px;

        font-size: var(--esp-7);

        border-radius: 8px;
    }


    .pesquisa .select-icon img {
        right: 14px;

        width: 13px;
        height: 13px;
    }


    .pesquisa .select-categorias::after {
        right: 14px;
        bottom: 14px;

        width: 13px;
        height: 13px;
    }



    /* =====================================================
       LIVROS
    ===================================================== */

    .livros {
        width: 90%;
    }


    /* =====================================================
       TÍTULO DOS LIVROS
    ===================================================== */

    .livros .conteudo-topo {
        margin-bottom: 25px;
    }


    .livros .conteudo-topo h3 {
        font-size: var(--esp-3);

        padding-bottom: 8px;
    }


    .livros .conteudo-topo h3::before {
        width: 50%;
        height: 2px;
    }


    /* =====================================================
       LISTA
       2 LIVROS POR LINHA NO TABLET
    ===================================================== */

    .livros .lista-livros {
        width: 100%;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 25px 20px;

        margin-bottom: 40px;
    }


    /* =====================================================
       CARD
    ===================================================== */

    .livros .livro {
        width: 100%;

        border-radius: 8px;
    }


    /* =====================================================
       CAPA
    ===================================================== */

    .livros .livro > img {
        width: 85%;
        height: 330px;

        margin: 15px auto 0;

        border-radius: 4px;
    }


    /* =====================================================
       CATEGORIA / ANO
    ===================================================== */

    .livros .categoriaAno {
        padding: 7px 25px 0;

        gap: 15px;
    }


    .livros .categoriaAno p {
        font-size: .68rem;
    }


    /* =====================================================
       CONTEÚDO DO LIVRO
    ===================================================== */

    .livros .livro .conteudo {
        padding: 10px 25px 22px;
    }


    .livros .livro .conteudo h4 {
        margin-bottom: 8px;

        font-size: var(--esp-5);
        line-height: 1.3;
    }


    .livros .livro .conteudo p {
        margin-bottom: 10px;

        font-size: var(--esp-7);
        line-height: 1.4;
    }


    .livros .livro .conteudo a {
        font-size: var(--esp-7);
    }


    .livros .livro .conteudo a img {
        width: 11px;
        height: 11px;
    }



    /* =====================================================
       OBRA / VÍDEO
    ===================================================== */

    .obra {
        width: 90%;

        margin: 25px auto 0;

        padding: 25px 5% 30px;

        border-radius: 15px;
    }


    /* =====================================================
       CONTEÚDO
    ===================================================== */

    .obra .conteudo {
        padding: 10px 0;
    }


    /* =====================================================
       TÍTULO
    ===================================================== */

    .obra .conteudo h3 {
        margin-bottom: 8px;

        font-size: var(--esp-3);

        line-height: 1.2;
    }


    /* =====================================================
       DESCRIÇÃO
    ===================================================== */

    .obra .conteudo > p {
        max-width: 700px;

        margin-bottom: 15px;

        font-size: var(--esp-6);

        line-height: 1.4;
    }


    /* =====================================================
       VÍDEO
    ===================================================== */

    .obra .video {
        width: 90%;
        max-width: 750px;

        border-radius: 10px;
    }


    .obra .video iframe {
        width: 100%;
        height: 400px;
    }

}


/* =========================================================
   PAGINAÇÃO — MOBILE
========================================================= */

.paginacao-botoes {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 30px;
}


/* =========================================================
   NÚMEROS
========================================================= */

.paginacao-numeros {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;
}


/* =========================================================
   NÚMERO DA PÁGINA
========================================================= */

.paginacao-numeros a {

    width: 32px;

    height: 32px;

    display: flex;

    justify-content: center;

    align-items: center;

    box-sizing: border-box;

    text-decoration: none;

    font-size: 12px;

    font-weight: 500;

    color: #201b13;

    border: 1px solid #d8ae76;

    border-radius: 50%;

    transition:

        background .3s ease,

        color .3s ease,

        border-color .3s ease;
}


/* =========================================================
   PÁGINA ATUAL
========================================================= */

.paginacao-numeros a.pagina-atual {

    background: #d8ae76;

    color: #ffffff;

    border-color: #d8ae76;
}


/* =========================================================
   HOVER
========================================================= */

.paginacao-numeros a:hover {

    background: #d8ae76;

    color: #ffffff;

    border-color: #d8ae76;
}


/* =========================================================
   SETAS
========================================================= */

.paginacao-botoes .pagina-anterior,
.paginacao-botoes .pagina-proxima {

    width: 34px;

    height: 34px;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-shrink: 0;

    box-sizing: border-box;

    padding: 0;

    background: transparent;

    border: 1px solid #d8ae76;

    border-radius: 50%;

    cursor: pointer;

    transition:

        background .3s ease,

        opacity .3s ease;
}


/* =========================================================
   ÍCONE DAS SETAS
========================================================= */

.paginacao-botoes .pagina-anterior img,
.paginacao-botoes .pagina-proxima img {

    width: 14px;

    height: 14px;

    display: block;
}


/* =========================================================
   INVERTER SETA ANTERIOR
========================================================= */

.paginacao-botoes .pagina-anterior img {

    transform: rotate(180deg);
}


/* =========================================================
   HOVER SETAS
========================================================= */

.paginacao-botoes a.pagina-anterior:hover,
.paginacao-botoes a.pagina-proxima:hover {

    background: #d8ae76;
}


/* =========================================================
   DESATIVADO
========================================================= */

.paginacao-botoes .desativado {

    opacity: .3;

    cursor: not-allowed;

    pointer-events: none;
}


