#paginaEbooks {
    float: left;
    width: 100%;
}

/* Bloco Inicial */

.blocoInicial {
    float: left;
    width: 100%;
    background: url('../images/bg-topo.jpg') center center no-repeat;
    background-size: cover;
    padding: 100px 0 20px 0;
}

.blocoInicial .container {
    display: flex;
    align-items: center;
}

.blocoInicial .col-sm-6 {
    padding: 0 15px;
}

.blocoInicial .boxTextos .preTitulo {
    color: #AAAAAA;
    float: left;
    width: 100%;
    font-size: 13px;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    font-weight: 500;
}

.blocoInicial .boxTextos h1 {
    background: linear-gradient(120deg, hsl(358deg 85% 58%) 0%, hsl(354deg 70% 46%) 34%, hsl(345deg 55% 34%) 56%, hsl(310deg 35% 28%) 65%, hsl(275deg 35% 34%) 74%, hsl(255deg 38% 42%) 88%, hsl(240deg 38% 49%) 100%);;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
    font-size: 30px;
    line-height: 42px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.blocoInicial .boxTextos p {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 10px 0;
	color: #474747;
}

/* Lista Ebooks */

.listaEbooks {
    float: left;
    width: 100%;
    padding: 70px 0;
}

.listaEbooks h2 {
    float: left;
	width: 100%;
	color: #474747;
    font-weight: 600;
    font-size: 26px;
    line-height: 38px;
    margin: 0 0 40px 0;
    text-align: center;
}

.listaEbooks ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
}

.listaEbooks ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.listaEbooks ul li figure {
    float: left;
    width: 100%;
    margin: 0;
}

.listaEbooks ul li figure img {
    width: 100%;
    height: auto;
}

.listaEbooks ul li h3 {
    color: #474747;
    float: left;
    width: 100%;
    font-weight: 600;
    font-size: 17px;
    line-height: 27px;
    margin: 10px 0 30px 0;
    text-align: center;
}

.listaEbooks ul li a {
    color: #061021;
    border-radius: 10px;
    padding: 12px 30px;
    border: solid 1px #061021;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.1s linear;
    font-weight: 600;
}

.listaEbooks ul li a:hover {
    transform: scale(1.03);
}

@media screen and (max-width: 1000px) {

    #paginaEbooks .container {
        width: 100%;
        max-width: 100%;
    }

    /* Bloco Inicial */

    .blocoInicial .container {
        padding: 0 10px;
    }

    .blocoInicial .col-sm-6 {
        float: left;
        width: 100%;
    }

}

@media screen and (max-width: 768px) {

    /* Bloco Inicial */

    .blocoInicial {
        padding: 100px 0 20px 0;
    }

    .blocoInicial .container {
        flex-direction: column;
    }

    .blocoInicial .col-sm-6 {
        float: left;
        width: 100%;
    }

    .blocoInicial .col-sm-6 + .col-sm-6 {
        margin-top: 10px;
    }

    .blocoInicial .boxTextos h1 {
        font-size: 24px;
        line-height: 34px;
        margin: 0 0 20px 0;
    }

    /* Listagem */

    .listaEbooks {
        padding: 50px 0;
    }

    .listaEbooks h2 {
        font-size: 24px;
        line-height: 34px;
        margin: 0px 0 30px 0;
    }

    .listaEbooks ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .listaEbooks ul li h3 {
        font-size: 15px;
        line-height: 25px;
        margin: 10px 0 25px 0;
    }

    .listaEbooks ul li a {
        width: 100%;
        text-align: center;
    }

}

@media screen and (max-width: 500px) {

    /* Listagem */

    .listaEbooks ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px 30px;
    }

}