section.livros {
    padding: 60px 0;
}

section.livros .livros__destaque {
    margin-bottom: 40px;
}

section.livros .livros__destaque img {
    width: 100%;
    height: auto;
    display: block;
}

section.livros .livros__destaque iframe {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 0;
    aspect-ratio: 16/13;
}

section.livros .livros__destaque h2 {
    font-size: 28px;
    color: var(--azul);
    font-weight: bold;
    margin-bottom: 15px;
}

section.livros .livros__destaque h3 {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 18px;
}

section.livros .livros__destaque-descricao,
section.livros .livros__destaque-descricao p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cinza-escuro);
}



/* Lista de livros */
section.livros .livros__lista {
    position: relative;
}

section.livros .livros__lista .item {
    padding: 40px;
    background: #f4f4f4;
    border-radius: 10px;
}

section.livros .livros__lista h3 {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    font-size: 16px;
}

section.livros .livros__lista a {
    display: block;
    margin: auto;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    margin-top: 15px;
    display: block;
    background: var(--amarelo);
    color: var(--azul);
    padding: 15px;
    font-weight: bold;
    border-radius: 4px;
}

section.livros .livros__lista a:hover {
    color: var(--azul);
}

section.livros .livros__lista .owl-nav {
    position: absolute;
    top: 40%;
    width: calc(100% + 80px);
    left: -40px;
    display: flex;
    justify-content: space-between;
}

section.livros .livros__lista .owl-nav.disabled {
    display: none;
}

section.livros .livros__lista .owl-nav button {
    outline: none;
}

section.livros .livros__lista .owl-nav button span {
    display: flex;
    font-size: 40px;
    color: var(--azul);
    background: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    position: relative;
}

section.livros .livros__lista .owl-nav button span:hover {
    background: var(--azul);
    color: #fff;
}


.mais__aulas {
    margin-top: 60px;
}

.mais__aulas h2 {
    font-size: 28px;
    color: var(--azul);
    font-weight: bold;
    margin-bottom: 30px;
}