body {
    align-items: center;
    background-color: #ccc;
    box-sizing: border-box;
    color: #333;
    display: flex;
    font-family: "BryantProRegular", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.2;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}
body > * {
   box-sizing: border-box;
}
a,
a:hover,
a:active {
    color: #333;
    border: none;
    text-decoration: none;
}
b {
    font-family: "BryantProMedium", sans-serif;
    font-weight: normal;
}
.contentor {
    align-items: stretch;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    position: relative;
    text-align: center;
    width: 280px;
    height: 440px;
}
.contentor.capa {
    background-image: url("https://www.wook.pt/img/20181226-saldos-fundo.jpg");
    background-position: center center;
    background-size: cover;
}
.anterior,
.seguinte {
    align-content: center;
    align-items: center;
    color: #333;
    display: flex;
    font-family: "WookIcones";
    font-size: 50px;
    justify-content: center;
    line-height: 1;
    text-align: center;
    width: 50px;
}
.anterior {
    cursor: pointer;
}
.seguinte {
    cursor: pointer;
}
.anterior:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-width: 25px 25px 25px 25px;
    border-style: solid;
    border-color: transparent;
    background-color: transparent;
    transition: border 250ms ease-out 300ms;
} 
.anterior:hover:before {
    border-color: #ccc #eee #eee #ccc;
} 
.seguinte:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-width: 25px 25px 25px 25px;
    border-style: solid;
    border-color: transparent;
    background-color: transparent;
    transition: border 250ms ease-out 300ms;
} 
.seguinte:hover:before {
    border-color: #eee #ccc #ccc #eee;
} 
.pagina {
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 0 0;
    text-align: center;
} 
.conteudo {
    align-self: center;
    height: calc(100% - 40px);
}
.rodape-pagina {
    font-size: 12px;
    height: 40px;
}
.rodape-pagina span {
    display: none;
}
.rodape-pagina a,
.rodape-pagina a:hover,
.rodape-pagina a:active {
    color: #333;
    display: none;
    text-decoration: underline;
}
.menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 20px;
}
.imprimir,
.descarregar, 
.comprar {
    background-color: #ccc;
    box-sizing: border-box;
    font-family: WookIcones;
    font-size: 50px;
    line-height: 1;
    height: 50px;
    text-align: center;
    width: 50px;
    transition: border 300ms ease-in;
    transition: font-family 300ms ease-in;
}
.imprimir {
    margin-right: 10px;
}
.descarregar {
    margin-left: 10px;
    margin-right: 10px;
}
.comprar {
    margin-left: 10px;
}
.imprimir:hover,
.descarregar:hover, 
.comprar:hover {
    border-top: 3px solid #999;
    border-right: 3px solid #ddd;
    border-bottom: 3px solid #ddd;
    border-left: 3px solid #999;
    font-size: 44px;
}
a, 
a:hover,
a:visited, 
a:focus {
    text-decoration: none;
    outline: none;
}
b {
   font-family: "BryantProMedium";
   font-weight: normal;
}
/* temas */
.preço {
    font-family: "BryantProRegular", sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 10px 10px 0 0;
    text-align: left;
}
.preço span {
    text-decoration: line-through;
}
.preço b {
    font-family: "BryantProBold", sans-serif;
    text-decoration: none;
}
.produtos p a {
    color: #333;
    text-decoration: underline;
}
.sinopse {
    color: #333;
    display: none;
    font-family: "BryantProRegular", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}
@media (min-width: 1200px) {
    body {
        padding: 30px;
    } 
    .pagina {
        padding: 30px 0 0 0;
    }
    .rodape-pagina {
        height: 30px;
    }
    .rodape-pagina span,
    .rodape-pagina a,
    .rodape-pagina a:hover,
    .rodape-pagina a:active {
        display: initial;
    }
    .menu {
        padding-bottom: 30px;
    }
    .contentor {
        width: 1140px;
        height: 540px;
    }
    .anterior,
    .seguinte {
        width: 100px;
    }
    .anterior:before {
        border-width: 50px 50px 50px 50px;
    } 
    .seguinte:before {
        border-width: 50px 50px 50px 50px;
    } 
    /* tema */
    .sinopse {
        display: flex;
        font-size: 16px;
        padding: 20px 0;
    }
    .preço {
        font-size: 16px;
    }
}