* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 32px;
    font-weight: 500;
}

p {
    font-size: 20px;
}

q {
    font-size: 16px;
    font-style: italic;
    quotes: none;
}

blockquote {
    font-size: 16px;
    font-style: italic;
    width: 400px;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 20px;
}

header nav {
    display: flex;
    align-items: center;
}

header nav ul li {
    margin-right: 20px;
}

header ul {
    display: flex;
}

header li {
    list-style-type: none;
}

header a {
    text-decoration: none;
}

header img {
    width: 200px;
    height: 40px;
}

/* Article */

article {
    background-color: #fefefe;
    padding: 20px;
}

article div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Section */
section {
    width: 500px;
    height: 660px;
    padding: 15px;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

section > div {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

section button {
    margin-top: 20px;
    background-color: #2c3aba;
    padding: 5px;
    border: 1px solid #2c3aba;
    color: #fff;
}


section button:hover {
    background-color: #fff;
    padding: 5px;
    border: 1px solid #2c3aba;
    color: #2c3aba;
}

.filmes {
    display: flex;

    flex-direction: row;
}


ul {
    margin-top: 10px;
    list-style-type: none;
}

/* Carrinho */
.carrinho {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* align-items: center;
    justify-content: space-around; */

}

.finalizar-compra {
    margin-top: 20px;
    background-color: #2c3aba;
    padding: 5px;
    border: 1px solid #2c3aba;
    color: #fff;
}


.finalizar-compra:hover {
    background-color: #fff;
    padding: 5px;
    border: 1px solid #2c3aba;
    color: #2c3aba;
}


.carrinho-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #000;
    width: 600px;
    
}

.carrinho-item input {
    width: 20px;
    height: 20px;
    text-align: center;
}

.carrinho-item button {
    background-color: #e30000;
    border: 1px solid #e30000;
    color: #fefefe;
    border-radius: 5px;
    width: 40px;
    height: 40px;
}

.carrinho-item button:hover {
    background-color: #f70000;
}

