body {
    margin: 0;
    padding: 40px 0;
    background: #3c0c0c;
    font-family: "Times New Roman", serif;
    color: #f2d59c;
    text-align: center;
}

.titulo {
    font-size: 60px;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.grid {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.item img {
    width: 100%;
    border: 1px solid #b7925a;
    border-radius: 4px;
}

.nome {
    font-size: 24px;
    margin: 10px 0 0;
}

.preco {
    font-size: 22px;
    margin-top: 3px;
    font-weight: 400;
}

.botoes {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 35px;
    border: 1px solid #f2d59c;
    border-radius: 30px;
    color: #f2d59c;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

.btn:hover {
    background: #f2d59c;
    color: #3c0c0c;
}

/* 📱 Mobile */
@media (max-width: 780px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* 📱 Celular pequeno */
@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .titulo {
        font-size: 45px;
    }

    .btn {
        font-size: 18px;
        padding: 10px 28px;
    }
}
