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

a {
    color: #4F4F4F;
    text-decoration: none;
}

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

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

.subtitulo {
    color: #4F4F4F;
    padding: 10px 0;
}

.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 .cont {
    position: absolute;
    top: 10px;
    width: 15px;
    height: 16px;
    right: 8px;
    padding: 3px;
    color: #4F4F4F;
    font-size: x-small;
    background-color: #fff;
    border-radius: 30px;
}

.btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

main {
    margin-top: 50px;
}

.div-hidden {
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.input-search {
    width: 70%;
    height: 28px;
    padding: 5px;
    background-color: #fff;
    border: 0.5px solid #ddd;
    border-radius: 5px;
    font-size: small;
    outline: none;
}

.btn-search {
    width: 28px;
    height: 28px;
    background-color: #fff;
    border: 0.5px solid #ddd;
    border-radius: 5px;
}

.container {
    padding: 10px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    gap: 0.5rem;
}

.cards .card {
    flex: 1 1 100px;
}

.card {
    margin: auto;
    max-width: 300px;
    text-align: center;
    font-family: arial;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.preco {
    padding: 2px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
}

.btn-plus {
    outline: 0;
    border: none;
    padding: 5px;
    color: #04B404;
    text-align: center;
    background: none;
    cursor: pointer;
    font-size: 18px;
}

.btn-plus:hover {
    background: rgba(0, 0, 0, 0.05);
}

.img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

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

.modal-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
    background-color: #fff;
    text-align: center;
    list-style: none;
}

#cart-items {
    list-style: none;
}

#cart-items li {
    width: 100%;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#cart-items li span {
    padding: 10px;
}

.fechar {
    padding: 15px;
    border: none;
    color: #DF0101;
    font-size: 18px;
    background-color: #fff;
    border-radius: 0 5px 5px 0;
}

.fechar:hover {
    border-left: 1px solid #ddd;
    background-color: rgba(0, 0, 0, 0.05);
}

.total {
    padding: 10px;
    margin-bottom: 10px;
}

.btn-comprar {
    width: 100%;
    padding: 10px;
    color: #fff;
    font-size: medium;
    background-color: #04B404;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer {
    width: 100%;
    bottom: 0px;
    padding: 10px;
    margin-top: 50px;
    border-top: 1px solid #ddd;
}

.links {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.links a {
    font-size: small;
}

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

.rede {
    padding: 8px;
    border-radius: 5px;
}

.app {
    padding: 8px;
    font-size: small;
}