/* Estilos gerais */
body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #ffbeb7;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}


.lista-presentes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.item-presente {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}

.item-presente img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.item-presente h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.item-presente p {
    font-size: 0.9rem;
    color: #555;
}

.preco {
    font-weight: bold;
    color: #e67e22;
    font-size: 1.1rem;
    margin: 10px 0;
}

.botao-comprar {
    display: inline-block;
    background-color: #643521;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.botao-comprar:hover {
    background-color: #ffe28f
}