* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: #363636;
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 50px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #53C6DB;
}

.container {
    width: 100%;
    height: 100vh;
    margin-top: 50px;
    padding: 20px;
    background-color: #fff;
}

.cont-cart {
    padding: 10px;
}

.cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.div-cart {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card {
    width: 100%;
    height: 200px;
    margin-bottom: 50px;
    border-radius: 15px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    border-radius: 5px;
}

.titulo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.voltar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.btn {
    padding: 5px;
    color: #fff;
    font-size: 18px;
    margin: 0;
    border: none;
    background: none;
}

.btn-voltar .btn {
    width: 40px;
    margin: 5px;
    color: #fff;
}